LCOV - code coverage report
Current view: top level - src/drivers - driver_nl80211.c (source / functions) Hit Total Coverage
Test: hostapd hwsim test run 1388613141 Lines: 2175 5566 39.1 %
Date: 2014-01-02 Functions: 162 287 56.4 %
Branches: 1005 3549 28.3 %

           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                 :        425 : static struct nl_handle * nl_create_handle(struct nl_cb *cb, const char *dbg)
     124                 :            : {
     125                 :            :         struct nl_handle *handle;
     126                 :            : 
     127                 :        425 :         handle = nl80211_handle_alloc(cb);
     128         [ -  + ]:        425 :         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         [ -  + ]:        425 :         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                 :        425 :         return handle;
     142                 :            : }
     143                 :            : 
     144                 :            : 
     145                 :        425 : static void nl_destroy_handles(struct nl_handle **handle)
     146                 :            : {
     147         [ -  + ]:        425 :         if (*handle == NULL)
     148                 :        425 :                 return;
     149                 :        425 :         nl80211_handle_destroy(*handle);
     150                 :        425 :         *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                 :        424 : static void nl80211_register_eloop_read(struct nl_handle **handle,
     161                 :            :                                         eloop_sock_handler handler,
     162                 :            :                                         void *eloop_data)
     163                 :            : {
     164                 :        424 :         nl_socket_set_nonblocking(*handle);
     165                 :        424 :         eloop_register_read_sock(nl_socket_get_fd(*handle), handler,
     166                 :            :                                  eloop_data, *handle);
     167                 :        424 :         *handle = (void *) (((intptr_t) *handle) ^ ELOOP_SOCKET_INVALID);
     168                 :        424 : }
     169                 :            : 
     170                 :            : 
     171                 :        424 : static void nl80211_destroy_eloop_handle(struct nl_handle **handle)
     172                 :            : {
     173                 :        424 :         *handle = (void *) (((intptr_t) *handle) ^ ELOOP_SOCKET_INVALID);
     174                 :        424 :         eloop_unregister_read_sock(nl_socket_get_fd(*handle));
     175                 :        424 :         nl_destroy_handles(handle);
     176                 :        424 : }
     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                 :       5701 : static const char * nl80211_command_to_string(enum nl80211_commands cmd)
     397                 :            : {
     398                 :            : #define C2S(x) case x: return #x;
     399   [ -  -  -  -  :       5701 :         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                 :        313 :         C2S(NL80211_CMD_NEW_STATION)
     420                 :        299 :         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                 :         24 :         C2S(NL80211_CMD_TRIGGER_SCAN)
     434                 :         19 :         C2S(NL80211_CMD_NEW_SCAN_RESULTS)
     435                 :          0 :         C2S(NL80211_CMD_SCAN_ABORTED)
     436                 :        254 :         C2S(NL80211_CMD_REG_CHANGE)
     437                 :          0 :         C2S(NL80211_CMD_AUTHENTICATE)
     438                 :          0 :         C2S(NL80211_CMD_ASSOCIATE)
     439                 :          0 :         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                 :          0 :         C2S(NL80211_CMD_JOIN_IBSS)
     444                 :          0 :         C2S(NL80211_CMD_LEAVE_IBSS)
     445                 :          0 :         C2S(NL80211_CMD_TESTMODE)
     446                 :          0 :         C2S(NL80211_CMD_CONNECT)
     447                 :          0 :         C2S(NL80211_CMD_ROAM)
     448                 :          0 :         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                 :          0 :         C2S(NL80211_CMD_REMAIN_ON_CHANNEL)
     456                 :          0 :         C2S(NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL)
     457                 :          0 :         C2S(NL80211_CMD_SET_TX_BITRATE_MASK)
     458                 :          0 :         C2S(NL80211_CMD_REGISTER_FRAME)
     459                 :       3152 :         C2S(NL80211_CMD_FRAME)
     460                 :       1640 :         C2S(NL80211_CMD_FRAME_TX_STATUS)
     461                 :          0 :         C2S(NL80211_CMD_SET_POWER_SAVE)
     462                 :          0 :         C2S(NL80211_CMD_GET_POWER_SAVE)
     463                 :          0 :         C2S(NL80211_CMD_SET_CQM)
     464                 :          0 :         C2S(NL80211_CMD_NOTIFY_CQM)
     465                 :          0 :         C2S(NL80211_CMD_SET_CHANNEL)
     466                 :          0 :         C2S(NL80211_CMD_SET_WDS_PEER)
     467                 :          0 :         C2S(NL80211_CMD_FRAME_WAIT_CANCEL)
     468                 :          0 :         C2S(NL80211_CMD_JOIN_MESH)
     469                 :          0 :         C2S(NL80211_CMD_LEAVE_MESH)
     470                 :          0 :         C2S(NL80211_CMD_UNPROT_DEAUTHENTICATE)
     471                 :          0 :         C2S(NL80211_CMD_UNPROT_DISASSOCIATE)
     472                 :          0 :         C2S(NL80211_CMD_NEW_PEER_CANDIDATE)
     473                 :          0 :         C2S(NL80211_CMD_GET_WOWLAN)
     474                 :          0 :         C2S(NL80211_CMD_SET_WOWLAN)
     475                 :          0 :         C2S(NL80211_CMD_START_SCHED_SCAN)
     476                 :          0 :         C2S(NL80211_CMD_STOP_SCHED_SCAN)
     477                 :          0 :         C2S(NL80211_CMD_SCHED_SCAN_RESULTS)
     478                 :          0 :         C2S(NL80211_CMD_SCHED_SCAN_STOPPED)
     479                 :          0 :         C2S(NL80211_CMD_SET_REKEY_OFFLOAD)
     480                 :          0 :         C2S(NL80211_CMD_PMKSA_CANDIDATE)
     481                 :          0 :         C2S(NL80211_CMD_TDLS_OPER)
     482                 :          0 :         C2S(NL80211_CMD_TDLS_MGMT)
     483                 :          0 :         C2S(NL80211_CMD_UNEXPECTED_FRAME)
     484                 :          0 :         C2S(NL80211_CMD_PROBE_CLIENT)
     485                 :          0 :         C2S(NL80211_CMD_REGISTER_BEACONS)
     486                 :          0 :         C2S(NL80211_CMD_UNEXPECTED_4ADDR_FRAME)
     487                 :          0 :         C2S(NL80211_CMD_SET_NOACK_MAP)
     488                 :          0 :         C2S(NL80211_CMD_CH_SWITCH_NOTIFY)
     489                 :          0 :         C2S(NL80211_CMD_START_P2P_DEVICE)
     490                 :          0 :         C2S(NL80211_CMD_STOP_P2P_DEVICE)
     491                 :          0 :         C2S(NL80211_CMD_CONN_FAILED)
     492                 :          0 :         C2S(NL80211_CMD_SET_MCAST_RATE)
     493                 :          0 :         C2S(NL80211_CMD_SET_MAC_ACL)
     494                 :          0 :         C2S(NL80211_CMD_RADAR_DETECT)
     495                 :          0 :         C2S(NL80211_CMD_GET_PROTOCOL_FEATURES)
     496                 :          0 :         C2S(NL80211_CMD_UPDATE_FT_IES)
     497                 :          0 :         C2S(NL80211_CMD_FT_EVENT)
     498                 :          0 :         C2S(NL80211_CMD_CRIT_PROTOCOL_START)
     499                 :          0 :         C2S(NL80211_CMD_CRIT_PROTOCOL_STOP)
     500                 :          0 :         C2S(NL80211_CMD_GET_COALESCE)
     501                 :          0 :         C2S(NL80211_CMD_SET_COALESCE)
     502                 :          0 :         C2S(NL80211_CMD_CHANNEL_SWITCH)
     503                 :          0 :         C2S(NL80211_CMD_VENDOR)
     504                 :          0 :         C2S(NL80211_CMD_SET_QOS_MAP)
     505                 :            :         default:
     506                 :       5701 :                 return "NL80211_CMD_UNKNOWN";
     507                 :            :         }
     508                 :            : #undef C2S
     509                 :            : }
     510                 :            : 
     511                 :            : 
     512                 :            : /* Converts nl80211_chan_width to a common format */
     513                 :          0 : static enum chan_width convert2width(int width)
     514                 :            : {
     515   [ #  #  #  #  :          0 :         switch (width) {
                #  #  # ]
     516                 :            :         case NL80211_CHAN_WIDTH_20_NOHT:
     517                 :          0 :                 return CHAN_WIDTH_20_NOHT;
     518                 :            :         case NL80211_CHAN_WIDTH_20:
     519                 :          0 :                 return CHAN_WIDTH_20;
     520                 :            :         case NL80211_CHAN_WIDTH_40:
     521                 :          0 :                 return CHAN_WIDTH_40;
     522                 :            :         case NL80211_CHAN_WIDTH_80:
     523                 :          0 :                 return CHAN_WIDTH_80;
     524                 :            :         case NL80211_CHAN_WIDTH_80P80:
     525                 :          0 :                 return CHAN_WIDTH_80P80;
     526                 :            :         case NL80211_CHAN_WIDTH_160:
     527                 :          0 :                 return CHAN_WIDTH_160;
     528                 :            :         }
     529                 :          0 :         return CHAN_WIDTH_UNKNOWN;
     530                 :            : }
     531                 :            : 
     532                 :            : 
     533                 :       3319 : static int is_ap_interface(enum nl80211_iftype nlmode)
     534                 :            : {
     535 [ +  + ][ -  + ]:       3319 :         return (nlmode == NL80211_IFTYPE_AP ||
     536                 :            :                 nlmode == NL80211_IFTYPE_P2P_GO);
     537                 :            : }
     538                 :            : 
     539                 :            : 
     540                 :       1932 : static int is_sta_interface(enum nl80211_iftype nlmode)
     541                 :            : {
     542 [ +  - ][ -  + ]:       1932 :         return (nlmode == NL80211_IFTYPE_STATION ||
     543                 :            :                 nlmode == NL80211_IFTYPE_P2P_CLIENT);
     544                 :            : }
     545                 :            : 
     546                 :            : 
     547                 :        423 : static int is_p2p_net_interface(enum nl80211_iftype nlmode)
     548                 :            : {
     549 [ +  - ][ -  + ]:        423 :         return (nlmode == NL80211_IFTYPE_P2P_CLIENT ||
     550                 :            :                 nlmode == NL80211_IFTYPE_P2P_GO);
     551                 :            : }
     552                 :            : 
     553                 :            : 
     554                 :          0 : static void nl80211_mark_disconnected(struct wpa_driver_nl80211_data *drv)
     555                 :            : {
     556         [ #  # ]:          0 :         if (drv->associated)
     557                 :          0 :                 os_memcpy(drv->prev_bssid, drv->bssid, ETH_ALEN);
     558                 :          0 :         drv->associated = 0;
     559                 :          0 :         os_memset(drv->bssid, 0, ETH_ALEN);
     560                 :          0 : }
     561                 :            : 
     562                 :            : 
     563                 :            : struct nl80211_bss_info_arg {
     564                 :            :         struct wpa_driver_nl80211_data *drv;
     565                 :            :         struct wpa_scan_results *res;
     566                 :            :         unsigned int assoc_freq;
     567                 :            :         u8 assoc_bssid[ETH_ALEN];
     568                 :            : };
     569                 :            : 
     570                 :            : static int bss_info_handler(struct nl_msg *msg, void *arg);
     571                 :            : 
     572                 :            : 
     573                 :            : /* nl80211 code */
     574                 :      11431 : static int ack_handler(struct nl_msg *msg, void *arg)
     575                 :            : {
     576                 :      11431 :         int *err = arg;
     577                 :      11431 :         *err = 0;
     578                 :      11431 :         return NL_STOP;
     579                 :            : }
     580                 :            : 
     581                 :        429 : static int finish_handler(struct nl_msg *msg, void *arg)
     582                 :            : {
     583                 :        429 :         int *ret = arg;
     584                 :        429 :         *ret = 0;
     585                 :        429 :         return NL_SKIP;
     586                 :            : }
     587                 :            : 
     588                 :       3185 : static int error_handler(struct sockaddr_nl *nla, struct nlmsgerr *err,
     589                 :            :                          void *arg)
     590                 :            : {
     591                 :       3185 :         int *ret = arg;
     592                 :       3185 :         *ret = err->error;
     593                 :       3185 :         return NL_SKIP;
     594                 :            : }
     595                 :            : 
     596                 :            : 
     597                 :      51096 : static int no_seq_check(struct nl_msg *msg, void *arg)
     598                 :            : {
     599                 :      51096 :         return NL_OK;
     600                 :            : }
     601                 :            : 
     602                 :            : 
     603                 :      15045 : static int send_and_recv(struct nl80211_global *global,
     604                 :            :                          struct nl_handle *nl_handle, struct nl_msg *msg,
     605                 :            :                          int (*valid_handler)(struct nl_msg *, void *),
     606                 :            :                          void *valid_data)
     607                 :            : {
     608                 :            :         struct nl_cb *cb;
     609                 :      15045 :         int err = -ENOMEM;
     610                 :            : 
     611                 :      15045 :         cb = nl_cb_clone(global->nl_cb);
     612         [ -  + ]:      15045 :         if (!cb)
     613                 :          0 :                 goto out;
     614                 :            : 
     615                 :      15045 :         err = nl_send_auto_complete(nl_handle, msg);
     616         [ -  + ]:      15045 :         if (err < 0)
     617                 :          0 :                 goto out;
     618                 :            : 
     619                 :      15045 :         err = 1;
     620                 :            : 
     621                 :      15045 :         nl_cb_err(cb, NL_CB_CUSTOM, error_handler, &err);
     622                 :      15045 :         nl_cb_set(cb, NL_CB_FINISH, NL_CB_CUSTOM, finish_handler, &err);
     623                 :      15045 :         nl_cb_set(cb, NL_CB_ACK, NL_CB_CUSTOM, ack_handler, &err);
     624                 :            : 
     625         [ +  + ]:      15045 :         if (valid_handler)
     626                 :       3834 :                 nl_cb_set(cb, NL_CB_VALID, NL_CB_CUSTOM,
     627                 :            :                           valid_handler, valid_data);
     628                 :            : 
     629         [ +  + ]:      32613 :         while (err > 0) {
     630                 :      17568 :                 int res = nl_recvmsgs(nl_handle, cb);
     631         [ -  + ]:      17568 :                 if (res) {
     632                 :          0 :                         wpa_printf(MSG_INFO,
     633                 :            :                                    "nl80211: %s->nl_recvmsgs failed: %d",
     634                 :            :                                    __func__, res);
     635                 :            :                 }
     636                 :            :         }
     637                 :            :  out:
     638                 :      15045 :         nl_cb_put(cb);
     639                 :      15045 :         nlmsg_free(msg);
     640                 :      15045 :         return err;
     641                 :            : }
     642                 :            : 
     643                 :            : 
     644                 :          4 : static int send_and_recv_msgs_global(struct nl80211_global *global,
     645                 :            :                                      struct nl_msg *msg,
     646                 :            :                                      int (*valid_handler)(struct nl_msg *, void *),
     647                 :            :                                      void *valid_data)
     648                 :            : {
     649                 :          4 :         return send_and_recv(global, global->nl, msg, valid_handler,
     650                 :            :                              valid_data);
     651                 :            : }
     652                 :            : 
     653                 :            : 
     654                 :      13078 : static int send_and_recv_msgs(struct wpa_driver_nl80211_data *drv,
     655                 :            :                               struct nl_msg *msg,
     656                 :            :                               int (*valid_handler)(struct nl_msg *, void *),
     657                 :            :                               void *valid_data)
     658                 :            : {
     659                 :      13078 :         return send_and_recv(drv->global, drv->global->nl, msg,
     660                 :            :                              valid_handler, valid_data);
     661                 :            : }
     662                 :            : 
     663                 :            : 
     664                 :            : struct family_data {
     665                 :            :         const char *group;
     666                 :            :         int id;
     667                 :            : };
     668                 :            : 
     669                 :            : 
     670                 :       4728 : static int nl80211_set_iface_id(struct nl_msg *msg, struct i802_bss *bss)
     671                 :            : {
     672         [ -  + ]:       4728 :         if (bss->wdev_id_set)
     673         [ #  # ]:          0 :                 NLA_PUT_U64(msg, NL80211_ATTR_WDEV, bss->wdev_id);
     674                 :            :         else
     675         [ +  - ]:       4728 :                 NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
     676                 :       4728 :         return 0;
     677                 :            : 
     678                 :            : nla_put_failure:
     679                 :       4728 :         return -1;
     680                 :            : }
     681                 :            : 
     682                 :            : 
     683                 :          4 : static int family_handler(struct nl_msg *msg, void *arg)
     684                 :            : {
     685                 :          4 :         struct family_data *res = arg;
     686                 :            :         struct nlattr *tb[CTRL_ATTR_MAX + 1];
     687                 :          4 :         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
     688                 :            :         struct nlattr *mcgrp;
     689                 :            :         int i;
     690                 :            : 
     691                 :          4 :         nla_parse(tb, CTRL_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
     692                 :            :                   genlmsg_attrlen(gnlh, 0), NULL);
     693         [ -  + ]:          4 :         if (!tb[CTRL_ATTR_MCAST_GROUPS])
     694                 :          0 :                 return NL_SKIP;
     695                 :            : 
     696         [ +  - ]:         14 :         nla_for_each_nested(mcgrp, tb[CTRL_ATTR_MCAST_GROUPS], i) {
     697                 :            :                 struct nlattr *tb2[CTRL_ATTR_MCAST_GRP_MAX + 1];
     698                 :         14 :                 nla_parse(tb2, CTRL_ATTR_MCAST_GRP_MAX, nla_data(mcgrp),
     699                 :            :                           nla_len(mcgrp), NULL);
     700 [ +  - ][ +  - ]:         14 :                 if (!tb2[CTRL_ATTR_MCAST_GRP_NAME] ||
     701         [ +  + ]:         14 :                     !tb2[CTRL_ATTR_MCAST_GRP_ID] ||
     702                 :         14 :                     os_strncmp(nla_data(tb2[CTRL_ATTR_MCAST_GRP_NAME]),
     703                 :            :                                res->group,
     704                 :            :                                nla_len(tb2[CTRL_ATTR_MCAST_GRP_NAME])) != 0)
     705                 :         10 :                         continue;
     706                 :          4 :                 res->id = nla_get_u32(tb2[CTRL_ATTR_MCAST_GRP_ID]);
     707                 :          4 :                 break;
     708                 :            :         };
     709                 :            : 
     710                 :          4 :         return NL_SKIP;
     711                 :            : }
     712                 :            : 
     713                 :            : 
     714                 :          4 : static int nl_get_multicast_id(struct nl80211_global *global,
     715                 :            :                                const char *family, const char *group)
     716                 :            : {
     717                 :            :         struct nl_msg *msg;
     718                 :          4 :         int ret = -1;
     719                 :          4 :         struct family_data res = { group, -ENOENT };
     720                 :            : 
     721                 :          4 :         msg = nlmsg_alloc();
     722         [ -  + ]:          4 :         if (!msg)
     723                 :          0 :                 return -ENOMEM;
     724                 :          4 :         genlmsg_put(msg, 0, 0, genl_ctrl_resolve(global->nl, "nlctrl"),
     725                 :            :                     0, 0, CTRL_CMD_GETFAMILY, 0);
     726         [ +  - ]:          4 :         NLA_PUT_STRING(msg, CTRL_ATTR_FAMILY_NAME, family);
     727                 :            : 
     728                 :          4 :         ret = send_and_recv_msgs_global(global, msg, family_handler, &res);
     729                 :          4 :         msg = NULL;
     730         [ +  - ]:          4 :         if (ret == 0)
     731                 :          4 :                 ret = res.id;
     732                 :            : 
     733                 :            : nla_put_failure:
     734                 :          4 :         nlmsg_free(msg);
     735                 :          4 :         return ret;
     736                 :            : }
     737                 :            : 
     738                 :            : 
     739                 :      15041 : static void * nl80211_cmd(struct wpa_driver_nl80211_data *drv,
     740                 :            :                           struct nl_msg *msg, int flags, uint8_t cmd)
     741                 :            : {
     742                 :      15041 :         return genlmsg_put(msg, 0, 0, drv->global->nl80211_id,
     743                 :            :                            0, flags, cmd, 0);
     744                 :            : }
     745                 :            : 
     746                 :            : 
     747                 :            : struct wiphy_idx_data {
     748                 :            :         int wiphy_idx;
     749                 :            :         enum nl80211_iftype nlmode;
     750                 :            :         u8 *macaddr;
     751                 :            : };
     752                 :            : 
     753                 :            : 
     754                 :        626 : static int netdev_info_handler(struct nl_msg *msg, void *arg)
     755                 :            : {
     756                 :            :         struct nlattr *tb[NL80211_ATTR_MAX + 1];
     757                 :        626 :         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
     758                 :        626 :         struct wiphy_idx_data *info = arg;
     759                 :            : 
     760                 :        626 :         nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
     761                 :            :                   genlmsg_attrlen(gnlh, 0), NULL);
     762                 :            : 
     763         [ +  - ]:        626 :         if (tb[NL80211_ATTR_WIPHY])
     764                 :        626 :                 info->wiphy_idx = nla_get_u32(tb[NL80211_ATTR_WIPHY]);
     765                 :            : 
     766         [ +  - ]:        626 :         if (tb[NL80211_ATTR_IFTYPE])
     767                 :        626 :                 info->nlmode = nla_get_u32(tb[NL80211_ATTR_IFTYPE]);
     768                 :            : 
     769 [ +  - ][ -  + ]:        626 :         if (tb[NL80211_ATTR_MAC] && info->macaddr)
     770                 :          0 :                 os_memcpy(info->macaddr, nla_data(tb[NL80211_ATTR_MAC]),
     771                 :            :                           ETH_ALEN);
     772                 :            : 
     773                 :        626 :         return NL_SKIP;
     774                 :            : }
     775                 :            : 
     776                 :            : 
     777                 :        220 : static int nl80211_get_wiphy_index(struct i802_bss *bss)
     778                 :            : {
     779                 :            :         struct nl_msg *msg;
     780                 :        220 :         struct wiphy_idx_data data = {
     781                 :            :                 .wiphy_idx = -1,
     782                 :            :                 .macaddr = NULL,
     783                 :            :         };
     784                 :            : 
     785                 :        220 :         msg = nlmsg_alloc();
     786         [ -  + ]:        220 :         if (!msg)
     787                 :          0 :                 return NL80211_IFTYPE_UNSPECIFIED;
     788                 :            : 
     789                 :        220 :         nl80211_cmd(bss->drv, msg, 0, NL80211_CMD_GET_INTERFACE);
     790                 :            : 
     791         [ -  + ]:        220 :         if (nl80211_set_iface_id(msg, bss) < 0)
     792                 :          0 :                 goto nla_put_failure;
     793                 :            : 
     794         [ +  - ]:        220 :         if (send_and_recv_msgs(bss->drv, msg, netdev_info_handler, &data) == 0)
     795                 :        220 :                 return data.wiphy_idx;
     796                 :          0 :         msg = NULL;
     797                 :            : nla_put_failure:
     798                 :          0 :         nlmsg_free(msg);
     799                 :        220 :         return -1;
     800                 :            : }
     801                 :            : 
     802                 :            : 
     803                 :        406 : static enum nl80211_iftype nl80211_get_ifmode(struct i802_bss *bss)
     804                 :            : {
     805                 :            :         struct nl_msg *msg;
     806                 :        406 :         struct wiphy_idx_data data = {
     807                 :            :                 .nlmode = NL80211_IFTYPE_UNSPECIFIED,
     808                 :            :                 .macaddr = NULL,
     809                 :            :         };
     810                 :            : 
     811                 :        406 :         msg = nlmsg_alloc();
     812         [ -  + ]:        406 :         if (!msg)
     813                 :          0 :                 return -1;
     814                 :            : 
     815                 :        406 :         nl80211_cmd(bss->drv, msg, 0, NL80211_CMD_GET_INTERFACE);
     816                 :            : 
     817         [ -  + ]:        406 :         if (nl80211_set_iface_id(msg, bss) < 0)
     818                 :          0 :                 goto nla_put_failure;
     819                 :            : 
     820         [ +  - ]:        406 :         if (send_and_recv_msgs(bss->drv, msg, netdev_info_handler, &data) == 0)
     821                 :        406 :                 return data.nlmode;
     822                 :          0 :         msg = NULL;
     823                 :            : nla_put_failure:
     824                 :          0 :         nlmsg_free(msg);
     825                 :        406 :         return NL80211_IFTYPE_UNSPECIFIED;
     826                 :            : }
     827                 :            : 
     828                 :            : 
     829                 :          0 : static int nl80211_get_macaddr(struct i802_bss *bss)
     830                 :            : {
     831                 :            :         struct nl_msg *msg;
     832                 :          0 :         struct wiphy_idx_data data = {
     833                 :          0 :                 .macaddr = bss->addr,
     834                 :            :         };
     835                 :            : 
     836                 :          0 :         msg = nlmsg_alloc();
     837         [ #  # ]:          0 :         if (!msg)
     838                 :          0 :                 return NL80211_IFTYPE_UNSPECIFIED;
     839                 :            : 
     840                 :          0 :         nl80211_cmd(bss->drv, msg, 0, NL80211_CMD_GET_INTERFACE);
     841         [ #  # ]:          0 :         if (nl80211_set_iface_id(msg, bss) < 0)
     842                 :          0 :                 goto nla_put_failure;
     843                 :            : 
     844                 :          0 :         return send_and_recv_msgs(bss->drv, msg, netdev_info_handler, &data);
     845                 :            : 
     846                 :            : nla_put_failure:
     847                 :          0 :         nlmsg_free(msg);
     848                 :          0 :         return NL80211_IFTYPE_UNSPECIFIED;
     849                 :            : }
     850                 :            : 
     851                 :            : 
     852                 :        203 : static int nl80211_register_beacons(struct wpa_driver_nl80211_data *drv,
     853                 :            :                                     struct nl80211_wiphy_data *w)
     854                 :            : {
     855                 :            :         struct nl_msg *msg;
     856                 :        203 :         int ret = -1;
     857                 :            : 
     858                 :        203 :         msg = nlmsg_alloc();
     859         [ -  + ]:        203 :         if (!msg)
     860                 :          0 :                 return -1;
     861                 :            : 
     862                 :        203 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_REGISTER_BEACONS);
     863                 :            : 
     864         [ +  - ]:        203 :         NLA_PUT_U32(msg, NL80211_ATTR_WIPHY, w->wiphy_idx);
     865                 :            : 
     866                 :        203 :         ret = send_and_recv(drv->global, w->nl_beacons, msg, NULL, NULL);
     867                 :        203 :         msg = NULL;
     868         [ -  + ]:        203 :         if (ret) {
     869                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Register beacons command "
     870                 :            :                            "failed: ret=%d (%s)",
     871                 :            :                            ret, strerror(-ret));
     872                 :          0 :                 goto nla_put_failure;
     873                 :            :         }
     874                 :        203 :         ret = 0;
     875                 :            : nla_put_failure:
     876                 :        203 :         nlmsg_free(msg);
     877                 :        203 :         return ret;
     878                 :            : }
     879                 :            : 
     880                 :            : 
     881                 :       1225 : static void nl80211_recv_beacons(int sock, void *eloop_ctx, void *handle)
     882                 :            : {
     883                 :       1225 :         struct nl80211_wiphy_data *w = eloop_ctx;
     884                 :            :         int res;
     885                 :            : 
     886                 :       1225 :         wpa_printf(MSG_EXCESSIVE, "nl80211: Beacon event message available");
     887                 :            : 
     888                 :       1225 :         res = nl_recvmsgs(handle, w->nl_cb);
     889         [ -  + ]:       1225 :         if (res) {
     890                 :          0 :                 wpa_printf(MSG_INFO, "nl80211: %s->nl_recvmsgs failed: %d",
     891                 :            :                            __func__, res);
     892                 :            :         }
     893                 :       1225 : }
     894                 :            : 
     895                 :            : 
     896                 :       1225 : static int process_beacon_event(struct nl_msg *msg, void *arg)
     897                 :            : {
     898                 :       1225 :         struct nl80211_wiphy_data *w = arg;
     899                 :            :         struct wpa_driver_nl80211_data *drv;
     900                 :       1225 :         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
     901                 :            :         struct nlattr *tb[NL80211_ATTR_MAX + 1];
     902                 :            :         union wpa_event_data event;
     903                 :            : 
     904                 :       1225 :         nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
     905                 :            :                   genlmsg_attrlen(gnlh, 0), NULL);
     906                 :            : 
     907         [ -  + ]:       1225 :         if (gnlh->cmd != NL80211_CMD_FRAME) {
     908                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Unexpected beacon event? (%d)",
     909                 :          0 :                            gnlh->cmd);
     910                 :          0 :                 return NL_SKIP;
     911                 :            :         }
     912                 :            : 
     913         [ -  + ]:       1225 :         if (!tb[NL80211_ATTR_FRAME])
     914                 :          0 :                 return NL_SKIP;
     915                 :            : 
     916         [ +  + ]:       2450 :         dl_list_for_each(drv, &w->drvs, struct wpa_driver_nl80211_data,
     917                 :            :                          wiphy_list) {
     918                 :       1225 :                 os_memset(&event, 0, sizeof(event));
     919                 :       1225 :                 event.rx_mgmt.frame = nla_data(tb[NL80211_ATTR_FRAME]);
     920                 :       1225 :                 event.rx_mgmt.frame_len = nla_len(tb[NL80211_ATTR_FRAME]);
     921                 :       1225 :                 wpa_supplicant_event(drv->ctx, EVENT_RX_MGMT, &event);
     922                 :            :         }
     923                 :            : 
     924                 :       1225 :         return NL_SKIP;
     925                 :            : }
     926                 :            : 
     927                 :            : 
     928                 :            : static struct nl80211_wiphy_data *
     929                 :        220 : nl80211_get_wiphy_data_ap(struct i802_bss *bss)
     930                 :            : {
     931                 :            :         static DEFINE_DL_LIST(nl80211_wiphys);
     932                 :            :         struct nl80211_wiphy_data *w;
     933                 :        220 :         int wiphy_idx, found = 0;
     934                 :            :         struct i802_bss *tmp_bss;
     935                 :            : 
     936         [ -  + ]:        220 :         if (bss->wiphy_data != NULL)
     937                 :          0 :                 return bss->wiphy_data;
     938                 :            : 
     939                 :        220 :         wiphy_idx = nl80211_get_wiphy_index(bss);
     940                 :            : 
     941         [ +  + ]:        240 :         dl_list_for_each(w, &nl80211_wiphys, struct nl80211_wiphy_data, list) {
     942         [ +  + ]:         37 :                 if (w->wiphy_idx == wiphy_idx)
     943                 :         17 :                         goto add;
     944                 :            :         }
     945                 :            : 
     946                 :            :         /* alloc new one */
     947                 :        203 :         w = os_zalloc(sizeof(*w));
     948         [ -  + ]:        203 :         if (w == NULL)
     949                 :          0 :                 return NULL;
     950                 :        203 :         w->wiphy_idx = wiphy_idx;
     951                 :        203 :         dl_list_init(&w->bsss);
     952                 :        203 :         dl_list_init(&w->drvs);
     953                 :            : 
     954                 :        203 :         w->nl_cb = nl_cb_alloc(NL_CB_DEFAULT);
     955         [ -  + ]:        203 :         if (!w->nl_cb) {
     956                 :          0 :                 os_free(w);
     957                 :          0 :                 return NULL;
     958                 :            :         }
     959                 :        203 :         nl_cb_set(w->nl_cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM, no_seq_check, NULL);
     960                 :        203 :         nl_cb_set(w->nl_cb, NL_CB_VALID, NL_CB_CUSTOM, process_beacon_event,
     961                 :            :                   w);
     962                 :            : 
     963                 :        203 :         w->nl_beacons = nl_create_handle(bss->drv->global->nl_cb,
     964                 :            :                                          "wiphy beacons");
     965         [ -  + ]:        203 :         if (w->nl_beacons == NULL) {
     966                 :          0 :                 os_free(w);
     967                 :          0 :                 return NULL;
     968                 :            :         }
     969                 :            : 
     970         [ -  + ]:        203 :         if (nl80211_register_beacons(bss->drv, w)) {
     971                 :          0 :                 nl_destroy_handles(&w->nl_beacons);
     972                 :          0 :                 os_free(w);
     973                 :          0 :                 return NULL;
     974                 :            :         }
     975                 :            : 
     976                 :        203 :         nl80211_register_eloop_read(&w->nl_beacons, nl80211_recv_beacons, w);
     977                 :            : 
     978                 :        203 :         dl_list_add(&nl80211_wiphys, &w->list);
     979                 :            : 
     980                 :            : add:
     981                 :            :         /* drv entry for this bss already there? */
     982         [ +  + ]:        220 :         dl_list_for_each(tmp_bss, &w->bsss, struct i802_bss, wiphy_list) {
     983         [ +  - ]:         17 :                 if (tmp_bss->drv == bss->drv) {
     984                 :         17 :                         found = 1;
     985                 :         17 :                         break;
     986                 :            :                 }
     987                 :            :         }
     988                 :            :         /* if not add it */
     989         [ +  + ]:        220 :         if (!found)
     990                 :        203 :                 dl_list_add(&w->drvs, &bss->drv->wiphy_list);
     991                 :            : 
     992                 :        220 :         dl_list_add(&w->bsss, &bss->wiphy_list);
     993                 :        220 :         bss->wiphy_data = w;
     994                 :        220 :         return w;
     995                 :            : }
     996                 :            : 
     997                 :            : 
     998                 :        220 : static void nl80211_put_wiphy_data_ap(struct i802_bss *bss)
     999                 :            : {
    1000                 :        220 :         struct nl80211_wiphy_data *w = bss->wiphy_data;
    1001                 :            :         struct i802_bss *tmp_bss;
    1002                 :        220 :         int found = 0;
    1003                 :            : 
    1004         [ -  + ]:        220 :         if (w == NULL)
    1005                 :          0 :                 return;
    1006                 :        220 :         bss->wiphy_data = NULL;
    1007                 :        220 :         dl_list_del(&bss->wiphy_list);
    1008                 :            : 
    1009                 :            :         /* still any for this drv present? */
    1010         [ +  + ]:        220 :         dl_list_for_each(tmp_bss, &w->bsss, struct i802_bss, wiphy_list) {
    1011         [ +  - ]:         17 :                 if (tmp_bss->drv == bss->drv) {
    1012                 :         17 :                         found = 1;
    1013                 :         17 :                         break;
    1014                 :            :                 }
    1015                 :            :         }
    1016                 :            :         /* if not remove it */
    1017         [ +  + ]:        220 :         if (!found)
    1018                 :        203 :                 dl_list_del(&bss->drv->wiphy_list);
    1019                 :            : 
    1020         [ +  + ]:        220 :         if (!dl_list_empty(&w->bsss))
    1021                 :         17 :                 return;
    1022                 :            : 
    1023                 :        203 :         nl80211_destroy_eloop_handle(&w->nl_beacons);
    1024                 :            : 
    1025                 :        203 :         nl_cb_put(w->nl_cb);
    1026                 :        203 :         dl_list_del(&w->list);
    1027                 :        220 :         os_free(w);
    1028                 :            : }
    1029                 :            : 
    1030                 :            : 
    1031                 :          0 : static int wpa_driver_nl80211_get_bssid(void *priv, u8 *bssid)
    1032                 :            : {
    1033                 :          0 :         struct i802_bss *bss = priv;
    1034                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    1035         [ #  # ]:          0 :         if (!drv->associated)
    1036                 :          0 :                 return -1;
    1037                 :          0 :         os_memcpy(bssid, drv->bssid, ETH_ALEN);
    1038                 :          0 :         return 0;
    1039                 :            : }
    1040                 :            : 
    1041                 :            : 
    1042                 :          0 : static int wpa_driver_nl80211_get_ssid(void *priv, u8 *ssid)
    1043                 :            : {
    1044                 :          0 :         struct i802_bss *bss = priv;
    1045                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    1046         [ #  # ]:          0 :         if (!drv->associated)
    1047                 :          0 :                 return -1;
    1048                 :          0 :         os_memcpy(ssid, drv->ssid, drv->ssid_len);
    1049                 :          0 :         return drv->ssid_len;
    1050                 :            : }
    1051                 :            : 
    1052                 :            : 
    1053                 :        457 : static void wpa_driver_nl80211_event_link(struct wpa_driver_nl80211_data *drv,
    1054                 :            :                                           char *buf, size_t len, int del)
    1055                 :            : {
    1056                 :            :         union wpa_event_data event;
    1057                 :            : 
    1058                 :        457 :         os_memset(&event, 0, sizeof(event));
    1059         [ -  + ]:        457 :         if (len > sizeof(event.interface_status.ifname))
    1060                 :          0 :                 len = sizeof(event.interface_status.ifname) - 1;
    1061                 :        457 :         os_memcpy(event.interface_status.ifname, buf, len);
    1062                 :        457 :         event.interface_status.ievent = del ? EVENT_INTERFACE_REMOVED :
    1063                 :            :                 EVENT_INTERFACE_ADDED;
    1064                 :            : 
    1065 [ -  + ][ -  + ]:        457 :         wpa_printf(MSG_DEBUG, "RTM_%sLINK, IFLA_IFNAME: Interface '%s' %s",
    1066                 :            :                    del ? "DEL" : "NEW",
    1067                 :            :                    event.interface_status.ifname,
    1068                 :            :                    del ? "removed" : "added");
    1069                 :            : 
    1070         [ +  + ]:        457 :         if (os_strcmp(drv->first_bss->ifname, event.interface_status.ifname) ==
    1071                 :            :             0) {
    1072         [ -  + ]:        423 :                 if (del) {
    1073         [ #  # ]:          0 :                         if (drv->if_removed) {
    1074                 :          0 :                                 wpa_printf(MSG_DEBUG, "nl80211: if_removed "
    1075                 :            :                                            "already set - ignore event");
    1076                 :          0 :                                 return;
    1077                 :            :                         }
    1078                 :          0 :                         drv->if_removed = 1;
    1079                 :            :                 } else {
    1080         [ -  + ]:        423 :                         if (if_nametoindex(drv->first_bss->ifname) == 0) {
    1081                 :          0 :                                 wpa_printf(MSG_DEBUG, "nl80211: Interface %s "
    1082                 :            :                                            "does not exist - ignore "
    1083                 :            :                                            "RTM_NEWLINK",
    1084                 :          0 :                                            drv->first_bss->ifname);
    1085                 :          0 :                                 return;
    1086                 :            :                         }
    1087         [ +  - ]:        423 :                         if (!drv->if_removed) {
    1088                 :        423 :                                 wpa_printf(MSG_DEBUG, "nl80211: if_removed "
    1089                 :            :                                            "already cleared - ignore event");
    1090                 :        423 :                                 return;
    1091                 :            :                         }
    1092                 :          0 :                         drv->if_removed = 0;
    1093                 :            :                 }
    1094                 :            :         }
    1095                 :            : 
    1096                 :        457 :         wpa_supplicant_event(drv->ctx, EVENT_INTERFACE_STATUS, &event);
    1097                 :            : }
    1098                 :            : 
    1099                 :            : 
    1100                 :          0 : static int wpa_driver_nl80211_own_ifname(struct wpa_driver_nl80211_data *drv,
    1101                 :            :                                          u8 *buf, size_t len)
    1102                 :            : {
    1103                 :            :         int attrlen, rta_len;
    1104                 :            :         struct rtattr *attr;
    1105                 :            : 
    1106                 :          0 :         attrlen = len;
    1107                 :          0 :         attr = (struct rtattr *) buf;
    1108                 :            : 
    1109                 :          0 :         rta_len = RTA_ALIGN(sizeof(struct rtattr));
    1110 [ #  # ][ #  # ]:          0 :         while (RTA_OK(attr, attrlen)) {
                 [ #  # ]
    1111         [ #  # ]:          0 :                 if (attr->rta_type == IFLA_IFNAME) {
    1112         [ #  # ]:          0 :                         if (os_strcmp(((char *) attr) + rta_len,
    1113                 :            :                                       drv->first_bss->ifname) == 0)
    1114                 :          0 :                                 return 1;
    1115                 :            :                         else
    1116                 :          0 :                                 break;
    1117                 :            :                 }
    1118                 :          0 :                 attr = RTA_NEXT(attr, attrlen);
    1119                 :            :         }
    1120                 :            : 
    1121                 :          0 :         return 0;
    1122                 :            : }
    1123                 :            : 
    1124                 :            : 
    1125                 :       1683 : static int wpa_driver_nl80211_own_ifindex(struct wpa_driver_nl80211_data *drv,
    1126                 :            :                                           int ifindex, u8 *buf, size_t len)
    1127                 :            : {
    1128         [ +  + ]:       1683 :         if (drv->ifindex == ifindex)
    1129                 :        429 :                 return 1;
    1130                 :            : 
    1131 [ -  + ][ #  # ]:       1254 :         if (drv->if_removed && wpa_driver_nl80211_own_ifname(drv, buf, len)) {
    1132                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Update ifindex for a removed "
    1133                 :            :                            "interface");
    1134                 :          0 :                 wpa_driver_nl80211_finish_drv_init(drv, NULL, 0);
    1135                 :          0 :                 return 1;
    1136                 :            :         }
    1137                 :            : 
    1138                 :       1683 :         return 0;
    1139                 :            : }
    1140                 :            : 
    1141                 :            : 
    1142                 :            : static struct wpa_driver_nl80211_data *
    1143                 :       2422 : nl80211_find_drv(struct nl80211_global *global, int idx, u8 *buf, size_t len)
    1144                 :            : {
    1145                 :            :         struct wpa_driver_nl80211_data *drv;
    1146         [ +  + ]:       3608 :         dl_list_for_each(drv, &global->interfaces,
    1147                 :            :                          struct wpa_driver_nl80211_data, list) {
    1148   [ +  +  +  + ]:       2937 :                 if (wpa_driver_nl80211_own_ifindex(drv, idx, buf, len) ||
    1149                 :       1254 :                     have_ifidx(drv, idx))
    1150                 :        497 :                         return drv;
    1151                 :            :         }
    1152                 :       2422 :         return NULL;
    1153                 :            : }
    1154                 :            : 
    1155                 :            : 
    1156                 :       2382 : static void wpa_driver_nl80211_event_rtm_newlink(void *ctx,
    1157                 :            :                                                  struct ifinfomsg *ifi,
    1158                 :            :                                                  u8 *buf, size_t len)
    1159                 :            : {
    1160                 :       2382 :         struct nl80211_global *global = ctx;
    1161                 :            :         struct wpa_driver_nl80211_data *drv;
    1162                 :            :         int attrlen, rta_len;
    1163                 :            :         struct rtattr *attr;
    1164                 :       2382 :         u32 brid = 0;
    1165                 :            :         char namebuf[IFNAMSIZ];
    1166                 :            : 
    1167                 :       2382 :         drv = nl80211_find_drv(global, ifi->ifi_index, buf, len);
    1168         [ +  + ]:       2382 :         if (!drv) {
    1169                 :       1885 :                 wpa_printf(MSG_DEBUG, "nl80211: Ignore event for foreign "
    1170                 :            :                            "ifindex %d", ifi->ifi_index);
    1171                 :       1885 :                 return;
    1172                 :            :         }
    1173                 :            : 
    1174 [ -  + ][ +  + ]:        497 :         wpa_printf(MSG_DEBUG, "RTM_NEWLINK: operstate=%d ifi_flags=0x%x "
         [ +  + ][ +  + ]
    1175                 :            :                    "(%s%s%s%s)",
    1176                 :            :                    drv->operstate, ifi->ifi_flags,
    1177                 :        497 :                    (ifi->ifi_flags & IFF_UP) ? "[UP]" : "",
    1178                 :        497 :                    (ifi->ifi_flags & IFF_RUNNING) ? "[RUNNING]" : "",
    1179                 :        497 :                    (ifi->ifi_flags & IFF_LOWER_UP) ? "[LOWER_UP]" : "",
    1180                 :        497 :                    (ifi->ifi_flags & IFF_DORMANT) ? "[DORMANT]" : "");
    1181                 :            : 
    1182 [ +  - ][ +  + ]:        497 :         if (!drv->if_disabled && !(ifi->ifi_flags & IFF_UP)) {
    1183   [ +  -  +  - ]:         80 :                 if (if_indextoname(ifi->ifi_index, namebuf) &&
    1184                 :         40 :                     linux_iface_up(drv->global->ioctl_sock,
    1185                 :         40 :                                    drv->first_bss->ifname) > 0) {
    1186                 :         40 :                         wpa_printf(MSG_DEBUG, "nl80211: Ignore interface down "
    1187                 :            :                                    "event since interface %s is up", namebuf);
    1188                 :         40 :                         return;
    1189                 :            :                 }
    1190                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Interface down");
    1191         [ #  # ]:          0 :                 if (drv->ignore_if_down_event) {
    1192                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Ignore interface down "
    1193                 :            :                                    "event generated by mode change");
    1194                 :          0 :                         drv->ignore_if_down_event = 0;
    1195                 :            :                 } else {
    1196                 :          0 :                         drv->if_disabled = 1;
    1197                 :          0 :                         wpa_supplicant_event(drv->ctx,
    1198                 :            :                                              EVENT_INTERFACE_DISABLED, NULL);
    1199                 :            :                 }
    1200                 :            :         }
    1201                 :            : 
    1202 [ -  + ][ #  # ]:        457 :         if (drv->if_disabled && (ifi->ifi_flags & IFF_UP)) {
    1203   [ #  #  #  # ]:          0 :                 if (if_indextoname(ifi->ifi_index, namebuf) &&
    1204                 :          0 :                     linux_iface_up(drv->global->ioctl_sock,
    1205                 :          0 :                                    drv->first_bss->ifname) == 0) {
    1206                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Ignore interface up "
    1207                 :            :                                    "event since interface %s is down",
    1208                 :            :                                    namebuf);
    1209         [ #  # ]:          0 :                 } else if (if_nametoindex(drv->first_bss->ifname) == 0) {
    1210                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Ignore interface up "
    1211                 :            :                                    "event since interface %s does not exist",
    1212                 :          0 :                                    drv->first_bss->ifname);
    1213         [ #  # ]:          0 :                 } else if (drv->if_removed) {
    1214                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Ignore interface up "
    1215                 :            :                                    "event since interface %s is marked "
    1216                 :          0 :                                    "removed", drv->first_bss->ifname);
    1217                 :            :                 } else {
    1218                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Interface up");
    1219                 :          0 :                         drv->if_disabled = 0;
    1220                 :          0 :                         wpa_supplicant_event(drv->ctx, EVENT_INTERFACE_ENABLED,
    1221                 :            :                                              NULL);
    1222                 :            :                 }
    1223                 :            :         }
    1224                 :            : 
    1225                 :            :         /*
    1226                 :            :          * Some drivers send the association event before the operup event--in
    1227                 :            :          * this case, lifting operstate in wpa_driver_nl80211_set_operstate()
    1228                 :            :          * fails. This will hit us when wpa_supplicant does not need to do
    1229                 :            :          * IEEE 802.1X authentication
    1230                 :            :          */
    1231 [ +  + ][ +  + ]:        457 :         if (drv->operstate == 1 &&
    1232         [ -  + ]:        213 :             (ifi->ifi_flags & (IFF_LOWER_UP | IFF_DORMANT)) == IFF_LOWER_UP &&
    1233                 :        213 :             !(ifi->ifi_flags & IFF_RUNNING))
    1234                 :          0 :                 netlink_send_oper_ifla(drv->global->netlink, drv->ifindex,
    1235                 :            :                                        -1, IF_OPER_UP);
    1236                 :            : 
    1237                 :        457 :         attrlen = len;
    1238                 :        457 :         attr = (struct rtattr *) buf;
    1239                 :        457 :         rta_len = RTA_ALIGN(sizeof(struct rtattr));
    1240 [ +  + ][ +  - ]:       8226 :         while (RTA_OK(attr, attrlen)) {
                 [ +  - ]
    1241         [ +  + ]:       7769 :                 if (attr->rta_type == IFLA_IFNAME) {
    1242                 :        457 :                         wpa_driver_nl80211_event_link(
    1243                 :            :                                 drv,
    1244                 :        457 :                                 ((char *) attr) + rta_len,
    1245                 :        457 :                                 attr->rta_len - rta_len, 0);
    1246         [ -  + ]:       7312 :                 } else if (attr->rta_type == IFLA_MASTER)
    1247                 :          0 :                         brid = nla_get_u32((struct nlattr *) attr);
    1248                 :       7769 :                 attr = RTA_NEXT(attr, attrlen);
    1249                 :            :         }
    1250                 :            : 
    1251 [ -  + ][ #  # ]:        457 :         if (ifi->ifi_family == AF_BRIDGE && brid) {
    1252                 :            :                 /* device has been added to bridge */
    1253                 :          0 :                 if_indextoname(brid, namebuf);
    1254                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Add ifindex %u for bridge %s",
    1255                 :            :                            brid, namebuf);
    1256                 :       2382 :                 add_ifidx(drv, brid);
    1257                 :            :         }
    1258                 :            : }
    1259                 :            : 
    1260                 :            : 
    1261                 :         40 : static void wpa_driver_nl80211_event_rtm_dellink(void *ctx,
    1262                 :            :                                                  struct ifinfomsg *ifi,
    1263                 :            :                                                  u8 *buf, size_t len)
    1264                 :            : {
    1265                 :         40 :         struct nl80211_global *global = ctx;
    1266                 :            :         struct wpa_driver_nl80211_data *drv;
    1267                 :            :         int attrlen, rta_len;
    1268                 :            :         struct rtattr *attr;
    1269                 :         40 :         u32 brid = 0;
    1270                 :            : 
    1271                 :         40 :         drv = nl80211_find_drv(global, ifi->ifi_index, buf, len);
    1272         [ +  - ]:         40 :         if (!drv) {
    1273                 :         40 :                 wpa_printf(MSG_DEBUG, "nl80211: Ignore dellink event for "
    1274                 :            :                            "foreign ifindex %d", ifi->ifi_index);
    1275                 :         40 :                 return;
    1276                 :            :         }
    1277                 :            : 
    1278                 :          0 :         attrlen = len;
    1279                 :          0 :         attr = (struct rtattr *) buf;
    1280                 :            : 
    1281                 :          0 :         rta_len = RTA_ALIGN(sizeof(struct rtattr));
    1282 [ #  # ][ #  # ]:          0 :         while (RTA_OK(attr, attrlen)) {
                 [ #  # ]
    1283         [ #  # ]:          0 :                 if (attr->rta_type == IFLA_IFNAME) {
    1284                 :          0 :                         wpa_driver_nl80211_event_link(
    1285                 :            :                                 drv,
    1286                 :          0 :                                 ((char *) attr) + rta_len,
    1287                 :          0 :                                 attr->rta_len - rta_len, 1);
    1288         [ #  # ]:          0 :                 } else if (attr->rta_type == IFLA_MASTER)
    1289                 :          0 :                         brid = nla_get_u32((struct nlattr *) attr);
    1290                 :          0 :                 attr = RTA_NEXT(attr, attrlen);
    1291                 :            :         }
    1292                 :            : 
    1293 [ #  # ][ #  # ]:          0 :         if (ifi->ifi_family == AF_BRIDGE && brid) {
    1294                 :            :                 /* device has been removed from bridge */
    1295                 :            :                 char namebuf[IFNAMSIZ];
    1296                 :          0 :                 if_indextoname(brid, namebuf);
    1297                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Remove ifindex %u for bridge "
    1298                 :            :                            "%s", brid, namebuf);
    1299                 :          0 :                 del_ifidx(drv, brid);
    1300                 :            :         }
    1301                 :            : }
    1302                 :            : 
    1303                 :            : 
    1304                 :          0 : static void mlme_event_auth(struct wpa_driver_nl80211_data *drv,
    1305                 :            :                             const u8 *frame, size_t len)
    1306                 :            : {
    1307                 :            :         const struct ieee80211_mgmt *mgmt;
    1308                 :            :         union wpa_event_data event;
    1309                 :            : 
    1310                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Authenticate event");
    1311                 :          0 :         mgmt = (const struct ieee80211_mgmt *) frame;
    1312         [ #  # ]:          0 :         if (len < 24 + sizeof(mgmt->u.auth)) {
    1313                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Too short association event "
    1314                 :            :                            "frame");
    1315                 :          0 :                 return;
    1316                 :            :         }
    1317                 :            : 
    1318                 :          0 :         os_memcpy(drv->auth_bssid, mgmt->sa, ETH_ALEN);
    1319                 :          0 :         os_memset(drv->auth_attempt_bssid, 0, ETH_ALEN);
    1320                 :          0 :         os_memset(&event, 0, sizeof(event));
    1321                 :          0 :         os_memcpy(event.auth.peer, mgmt->sa, ETH_ALEN);
    1322                 :          0 :         event.auth.auth_type = le_to_host16(mgmt->u.auth.auth_alg);
    1323                 :          0 :         event.auth.auth_transaction =
    1324                 :          0 :                 le_to_host16(mgmt->u.auth.auth_transaction);
    1325                 :          0 :         event.auth.status_code = le_to_host16(mgmt->u.auth.status_code);
    1326         [ #  # ]:          0 :         if (len > 24 + sizeof(mgmt->u.auth)) {
    1327                 :          0 :                 event.auth.ies = mgmt->u.auth.variable;
    1328                 :          0 :                 event.auth.ies_len = len - 24 - sizeof(mgmt->u.auth);
    1329                 :            :         }
    1330                 :            : 
    1331                 :          0 :         wpa_supplicant_event(drv->ctx, EVENT_AUTH, &event);
    1332                 :            : }
    1333                 :            : 
    1334                 :            : 
    1335                 :          0 : static unsigned int nl80211_get_assoc_freq(struct wpa_driver_nl80211_data *drv)
    1336                 :            : {
    1337                 :            :         struct nl_msg *msg;
    1338                 :            :         int ret;
    1339                 :            :         struct nl80211_bss_info_arg arg;
    1340                 :            : 
    1341                 :          0 :         os_memset(&arg, 0, sizeof(arg));
    1342                 :          0 :         msg = nlmsg_alloc();
    1343         [ #  # ]:          0 :         if (!msg)
    1344                 :          0 :                 goto nla_put_failure;
    1345                 :            : 
    1346                 :          0 :         nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_SCAN);
    1347         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
    1348                 :            : 
    1349                 :          0 :         arg.drv = drv;
    1350                 :          0 :         ret = send_and_recv_msgs(drv, msg, bss_info_handler, &arg);
    1351                 :          0 :         msg = NULL;
    1352         [ #  # ]:          0 :         if (ret == 0) {
    1353                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Operating frequency for the "
    1354                 :            :                            "associated BSS from scan results: %u MHz",
    1355                 :            :                            arg.assoc_freq);
    1356         [ #  # ]:          0 :                 if (arg.assoc_freq)
    1357                 :          0 :                         drv->assoc_freq = arg.assoc_freq;
    1358                 :          0 :                 return drv->assoc_freq;
    1359                 :            :         }
    1360                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Scan result fetch failed: ret=%d "
    1361                 :            :                    "(%s)", ret, strerror(-ret));
    1362                 :            : nla_put_failure:
    1363                 :          0 :         nlmsg_free(msg);
    1364                 :          0 :         return drv->assoc_freq;
    1365                 :            : }
    1366                 :            : 
    1367                 :            : 
    1368                 :          0 : static void mlme_event_assoc(struct wpa_driver_nl80211_data *drv,
    1369                 :            :                             const u8 *frame, size_t len)
    1370                 :            : {
    1371                 :            :         const struct ieee80211_mgmt *mgmt;
    1372                 :            :         union wpa_event_data event;
    1373                 :            :         u16 status;
    1374                 :            : 
    1375                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Associate event");
    1376                 :          0 :         mgmt = (const struct ieee80211_mgmt *) frame;
    1377         [ #  # ]:          0 :         if (len < 24 + sizeof(mgmt->u.assoc_resp)) {
    1378                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Too short association event "
    1379                 :            :                            "frame");
    1380                 :          0 :                 return;
    1381                 :            :         }
    1382                 :            : 
    1383                 :          0 :         status = le_to_host16(mgmt->u.assoc_resp.status_code);
    1384         [ #  # ]:          0 :         if (status != WLAN_STATUS_SUCCESS) {
    1385                 :          0 :                 os_memset(&event, 0, sizeof(event));
    1386                 :          0 :                 event.assoc_reject.bssid = mgmt->bssid;
    1387         [ #  # ]:          0 :                 if (len > 24 + sizeof(mgmt->u.assoc_resp)) {
    1388                 :          0 :                         event.assoc_reject.resp_ies =
    1389                 :          0 :                                 (u8 *) mgmt->u.assoc_resp.variable;
    1390                 :          0 :                         event.assoc_reject.resp_ies_len =
    1391                 :          0 :                                 len - 24 - sizeof(mgmt->u.assoc_resp);
    1392                 :            :                 }
    1393                 :          0 :                 event.assoc_reject.status_code = status;
    1394                 :            : 
    1395                 :          0 :                 wpa_supplicant_event(drv->ctx, EVENT_ASSOC_REJECT, &event);
    1396                 :          0 :                 return;
    1397                 :            :         }
    1398                 :            : 
    1399                 :          0 :         drv->associated = 1;
    1400                 :          0 :         os_memcpy(drv->bssid, mgmt->sa, ETH_ALEN);
    1401                 :          0 :         os_memcpy(drv->prev_bssid, mgmt->sa, ETH_ALEN);
    1402                 :            : 
    1403                 :          0 :         os_memset(&event, 0, sizeof(event));
    1404         [ #  # ]:          0 :         if (len > 24 + sizeof(mgmt->u.assoc_resp)) {
    1405                 :          0 :                 event.assoc_info.resp_ies = (u8 *) mgmt->u.assoc_resp.variable;
    1406                 :          0 :                 event.assoc_info.resp_ies_len =
    1407                 :          0 :                         len - 24 - sizeof(mgmt->u.assoc_resp);
    1408                 :            :         }
    1409                 :            : 
    1410                 :          0 :         event.assoc_info.freq = drv->assoc_freq;
    1411                 :            : 
    1412                 :          0 :         wpa_supplicant_event(drv->ctx, EVENT_ASSOC, &event);
    1413                 :            : }
    1414                 :            : 
    1415                 :            : 
    1416                 :          0 : static void mlme_event_connect(struct wpa_driver_nl80211_data *drv,
    1417                 :            :                                enum nl80211_commands cmd, struct nlattr *status,
    1418                 :            :                                struct nlattr *addr, struct nlattr *req_ie,
    1419                 :            :                                struct nlattr *resp_ie)
    1420                 :            : {
    1421                 :            :         union wpa_event_data event;
    1422                 :            : 
    1423         [ #  # ]:          0 :         if (drv->capa.flags & WPA_DRIVER_FLAGS_SME) {
    1424                 :            :                 /*
    1425                 :            :                  * Avoid reporting two association events that would confuse
    1426                 :            :                  * the core code.
    1427                 :            :                  */
    1428                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Ignore connect event (cmd=%d) "
    1429                 :            :                            "when using userspace SME", cmd);
    1430                 :          0 :                 return;
    1431                 :            :         }
    1432                 :            : 
    1433         [ #  # ]:          0 :         if (cmd == NL80211_CMD_CONNECT)
    1434                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Connect event");
    1435         [ #  # ]:          0 :         else if (cmd == NL80211_CMD_ROAM)
    1436                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Roam event");
    1437                 :            : 
    1438                 :          0 :         os_memset(&event, 0, sizeof(event));
    1439   [ #  #  #  # ]:          0 :         if (cmd == NL80211_CMD_CONNECT &&
    1440                 :          0 :             nla_get_u16(status) != WLAN_STATUS_SUCCESS) {
    1441         [ #  # ]:          0 :                 if (addr)
    1442                 :          0 :                         event.assoc_reject.bssid = nla_data(addr);
    1443         [ #  # ]:          0 :                 if (resp_ie) {
    1444                 :          0 :                         event.assoc_reject.resp_ies = nla_data(resp_ie);
    1445                 :          0 :                         event.assoc_reject.resp_ies_len = nla_len(resp_ie);
    1446                 :            :                 }
    1447                 :          0 :                 event.assoc_reject.status_code = nla_get_u16(status);
    1448                 :          0 :                 wpa_supplicant_event(drv->ctx, EVENT_ASSOC_REJECT, &event);
    1449                 :          0 :                 return;
    1450                 :            :         }
    1451                 :            : 
    1452                 :          0 :         drv->associated = 1;
    1453         [ #  # ]:          0 :         if (addr) {
    1454                 :          0 :                 os_memcpy(drv->bssid, nla_data(addr), ETH_ALEN);
    1455                 :          0 :                 os_memcpy(drv->prev_bssid, drv->bssid, ETH_ALEN);
    1456                 :            :         }
    1457                 :            : 
    1458         [ #  # ]:          0 :         if (req_ie) {
    1459                 :          0 :                 event.assoc_info.req_ies = nla_data(req_ie);
    1460                 :          0 :                 event.assoc_info.req_ies_len = nla_len(req_ie);
    1461                 :            :         }
    1462         [ #  # ]:          0 :         if (resp_ie) {
    1463                 :          0 :                 event.assoc_info.resp_ies = nla_data(resp_ie);
    1464                 :          0 :                 event.assoc_info.resp_ies_len = nla_len(resp_ie);
    1465                 :            :         }
    1466                 :            : 
    1467                 :          0 :         event.assoc_info.freq = nl80211_get_assoc_freq(drv);
    1468                 :            : 
    1469                 :          0 :         wpa_supplicant_event(drv->ctx, EVENT_ASSOC, &event);
    1470                 :            : }
    1471                 :            : 
    1472                 :            : 
    1473                 :          0 : static void mlme_event_disconnect(struct wpa_driver_nl80211_data *drv,
    1474                 :            :                                   struct nlattr *reason, struct nlattr *addr,
    1475                 :            :                                   struct nlattr *by_ap)
    1476                 :            : {
    1477                 :            :         union wpa_event_data data;
    1478                 :          0 :         unsigned int locally_generated = by_ap == NULL;
    1479                 :            : 
    1480         [ #  # ]:          0 :         if (drv->capa.flags & WPA_DRIVER_FLAGS_SME) {
    1481                 :            :                 /*
    1482                 :            :                  * Avoid reporting two disassociation events that could
    1483                 :            :                  * confuse the core code.
    1484                 :            :                  */
    1485                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Ignore disconnect "
    1486                 :            :                            "event when using userspace SME");
    1487                 :          0 :                 return;
    1488                 :            :         }
    1489                 :            : 
    1490         [ #  # ]:          0 :         if (drv->ignore_next_local_disconnect) {
    1491                 :          0 :                 drv->ignore_next_local_disconnect = 0;
    1492         [ #  # ]:          0 :                 if (locally_generated) {
    1493                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Ignore disconnect "
    1494                 :            :                                    "event triggered during reassociation");
    1495                 :          0 :                         return;
    1496                 :            :                 }
    1497                 :          0 :                 wpa_printf(MSG_WARNING, "nl80211: Was expecting local "
    1498                 :            :                            "disconnect but got another disconnect "
    1499                 :            :                            "event first");
    1500                 :            :         }
    1501                 :            : 
    1502                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Disconnect event");
    1503                 :          0 :         nl80211_mark_disconnected(drv);
    1504                 :          0 :         os_memset(&data, 0, sizeof(data));
    1505         [ #  # ]:          0 :         if (reason)
    1506                 :          0 :                 data.deauth_info.reason_code = nla_get_u16(reason);
    1507                 :          0 :         data.deauth_info.locally_generated = by_ap == NULL;
    1508                 :          0 :         wpa_supplicant_event(drv->ctx, EVENT_DEAUTH, &data);
    1509                 :            : }
    1510                 :            : 
    1511                 :            : 
    1512                 :          0 : static void mlme_event_ch_switch(struct wpa_driver_nl80211_data *drv,
    1513                 :            :                                  struct nlattr *ifindex, struct nlattr *freq,
    1514                 :            :                                  struct nlattr *type, struct nlattr *bw,
    1515                 :            :                                  struct nlattr *cf1, struct nlattr *cf2)
    1516                 :            : {
    1517                 :            :         struct i802_bss *bss;
    1518                 :            :         union wpa_event_data data;
    1519                 :          0 :         int ht_enabled = 1;
    1520                 :          0 :         int chan_offset = 0;
    1521                 :            :         int ifidx;
    1522                 :            : 
    1523                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Channel switch event");
    1524                 :            : 
    1525         [ #  # ]:          0 :         if (!freq)
    1526                 :          0 :                 return;
    1527                 :            : 
    1528                 :          0 :         ifidx = nla_get_u32(ifindex);
    1529         [ #  # ]:          0 :         for (bss = drv->first_bss; bss; bss = bss->next)
    1530         [ #  # ]:          0 :                 if (bss->ifindex == ifidx)
    1531                 :          0 :                         break;
    1532                 :            : 
    1533         [ #  # ]:          0 :         if (bss == NULL) {
    1534                 :          0 :                 wpa_printf(MSG_WARNING, "nl80211: Unknown ifindex (%d) for channel switch, ignoring",
    1535                 :            :                            ifidx);
    1536                 :          0 :                 return;
    1537                 :            :         }
    1538                 :            : 
    1539         [ #  # ]:          0 :         if (type) {
    1540   [ #  #  #  #  :          0 :                 switch (nla_get_u32(type)) {
                      # ]
    1541                 :            :                 case NL80211_CHAN_NO_HT:
    1542                 :          0 :                         ht_enabled = 0;
    1543                 :          0 :                         break;
    1544                 :            :                 case NL80211_CHAN_HT20:
    1545                 :          0 :                         break;
    1546                 :            :                 case NL80211_CHAN_HT40PLUS:
    1547                 :          0 :                         chan_offset = 1;
    1548                 :          0 :                         break;
    1549                 :            :                 case NL80211_CHAN_HT40MINUS:
    1550                 :          0 :                         chan_offset = -1;
    1551                 :          0 :                         break;
    1552                 :            :                 }
    1553                 :            :         }
    1554                 :            : 
    1555                 :          0 :         os_memset(&data, 0, sizeof(data));
    1556                 :          0 :         data.ch_switch.freq = nla_get_u32(freq);
    1557                 :          0 :         data.ch_switch.ht_enabled = ht_enabled;
    1558                 :          0 :         data.ch_switch.ch_offset = chan_offset;
    1559         [ #  # ]:          0 :         if (bw)
    1560                 :          0 :                 data.ch_switch.ch_width = convert2width(nla_get_u32(bw));
    1561         [ #  # ]:          0 :         if (cf1)
    1562                 :          0 :                 data.ch_switch.cf1 = nla_get_u32(cf1);
    1563         [ #  # ]:          0 :         if (cf2)
    1564                 :          0 :                 data.ch_switch.cf2 = nla_get_u32(cf2);
    1565                 :            : 
    1566                 :          0 :         bss->freq = data.ch_switch.freq;
    1567                 :            : 
    1568                 :          0 :         wpa_supplicant_event(drv->ctx, EVENT_CH_SWITCH, &data);
    1569                 :            : }
    1570                 :            : 
    1571                 :            : 
    1572                 :          0 : static void mlme_timeout_event(struct wpa_driver_nl80211_data *drv,
    1573                 :            :                                enum nl80211_commands cmd, struct nlattr *addr)
    1574                 :            : {
    1575                 :            :         union wpa_event_data event;
    1576                 :            :         enum wpa_event_type ev;
    1577                 :            : 
    1578         [ #  # ]:          0 :         if (nla_len(addr) != ETH_ALEN)
    1579                 :          0 :                 return;
    1580                 :            : 
    1581                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: MLME event %d; timeout with " MACSTR,
    1582                 :          0 :                    cmd, MAC2STR((u8 *) nla_data(addr)));
    1583                 :            : 
    1584         [ #  # ]:          0 :         if (cmd == NL80211_CMD_AUTHENTICATE)
    1585                 :          0 :                 ev = EVENT_AUTH_TIMED_OUT;
    1586         [ #  # ]:          0 :         else if (cmd == NL80211_CMD_ASSOCIATE)
    1587                 :          0 :                 ev = EVENT_ASSOC_TIMED_OUT;
    1588                 :            :         else
    1589                 :          0 :                 return;
    1590                 :            : 
    1591                 :          0 :         os_memset(&event, 0, sizeof(event));
    1592                 :          0 :         os_memcpy(event.timeout_event.addr, nla_data(addr), ETH_ALEN);
    1593                 :          0 :         wpa_supplicant_event(drv->ctx, ev, &event);
    1594                 :            : }
    1595                 :            : 
    1596                 :            : 
    1597                 :       1576 : static void mlme_event_mgmt(struct wpa_driver_nl80211_data *drv,
    1598                 :            :                             struct nlattr *freq, struct nlattr *sig,
    1599                 :            :                             const u8 *frame, size_t len)
    1600                 :            : {
    1601                 :            :         const struct ieee80211_mgmt *mgmt;
    1602                 :            :         union wpa_event_data event;
    1603                 :            :         u16 fc, stype;
    1604                 :       1576 :         int ssi_signal = 0;
    1605                 :       1576 :         int rx_freq = 0;
    1606                 :            : 
    1607                 :       1576 :         wpa_printf(MSG_MSGDUMP, "nl80211: Frame event");
    1608                 :       1576 :         mgmt = (const struct ieee80211_mgmt *) frame;
    1609         [ -  + ]:       1576 :         if (len < 24) {
    1610                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Too short management frame");
    1611                 :       1576 :                 return;
    1612                 :            :         }
    1613                 :            : 
    1614                 :       1576 :         fc = le_to_host16(mgmt->frame_control);
    1615                 :       1576 :         stype = WLAN_FC_GET_STYPE(fc);
    1616                 :            : 
    1617         [ +  - ]:       1576 :         if (sig)
    1618                 :       1576 :                 ssi_signal = (s32) nla_get_u32(sig);
    1619                 :            : 
    1620                 :       1576 :         os_memset(&event, 0, sizeof(event));
    1621         [ +  - ]:       1576 :         if (freq) {
    1622                 :       1576 :                 event.rx_mgmt.freq = nla_get_u32(freq);
    1623                 :       1576 :                 rx_freq = drv->last_mgmt_freq = event.rx_mgmt.freq;
    1624                 :            :         }
    1625                 :       1576 :         wpa_printf(MSG_DEBUG,
    1626                 :            :                    "nl80211: RX frame freq=%d ssi_signal=%d stype=%u len=%u",
    1627                 :            :                    rx_freq, ssi_signal, stype, (unsigned int) len);
    1628                 :       1576 :         event.rx_mgmt.frame = frame;
    1629                 :       1576 :         event.rx_mgmt.frame_len = len;
    1630                 :       1576 :         event.rx_mgmt.ssi_signal = ssi_signal;
    1631                 :       1576 :         wpa_supplicant_event(drv->ctx, EVENT_RX_MGMT, &event);
    1632                 :            : }
    1633                 :            : 
    1634                 :            : 
    1635                 :        820 : static void mlme_event_mgmt_tx_status(struct wpa_driver_nl80211_data *drv,
    1636                 :            :                                       struct nlattr *cookie, const u8 *frame,
    1637                 :            :                                       size_t len, struct nlattr *ack)
    1638                 :            : {
    1639                 :            :         union wpa_event_data event;
    1640                 :            :         const struct ieee80211_hdr *hdr;
    1641                 :            :         u16 fc;
    1642                 :            : 
    1643                 :        820 :         wpa_printf(MSG_DEBUG, "nl80211: Frame TX status event");
    1644         [ -  + ]:        820 :         if (!is_ap_interface(drv->nlmode)) {
    1645                 :            :                 u64 cookie_val;
    1646                 :            : 
    1647         [ #  # ]:          0 :                 if (!cookie)
    1648                 :          0 :                         return;
    1649                 :            : 
    1650                 :          0 :                 cookie_val = nla_get_u64(cookie);
    1651         [ #  # ]:          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Action TX status:"
    1652                 :            :                            " cookie=0%llx%s (ack=%d)",
    1653                 :            :                            (long long unsigned int) cookie_val,
    1654                 :          0 :                            cookie_val == drv->send_action_cookie ?
    1655                 :            :                            " (match)" : " (unknown)", ack != NULL);
    1656         [ #  # ]:          0 :                 if (cookie_val != drv->send_action_cookie)
    1657                 :          0 :                         return;
    1658                 :            :         }
    1659                 :            : 
    1660                 :        820 :         hdr = (const struct ieee80211_hdr *) frame;
    1661                 :        820 :         fc = le_to_host16(hdr->frame_control);
    1662                 :            : 
    1663                 :        820 :         os_memset(&event, 0, sizeof(event));
    1664                 :        820 :         event.tx_status.type = WLAN_FC_GET_TYPE(fc);
    1665                 :        820 :         event.tx_status.stype = WLAN_FC_GET_STYPE(fc);
    1666                 :        820 :         event.tx_status.dst = hdr->addr1;
    1667                 :        820 :         event.tx_status.data = frame;
    1668                 :        820 :         event.tx_status.data_len = len;
    1669                 :        820 :         event.tx_status.ack = ack != NULL;
    1670                 :        820 :         wpa_supplicant_event(drv->ctx, EVENT_TX_STATUS, &event);
    1671                 :            : }
    1672                 :            : 
    1673                 :            : 
    1674                 :          0 : static void mlme_event_deauth_disassoc(struct wpa_driver_nl80211_data *drv,
    1675                 :            :                                        enum wpa_event_type type,
    1676                 :            :                                        const u8 *frame, size_t len)
    1677                 :            : {
    1678                 :            :         const struct ieee80211_mgmt *mgmt;
    1679                 :            :         union wpa_event_data event;
    1680                 :          0 :         const u8 *bssid = NULL;
    1681                 :          0 :         u16 reason_code = 0;
    1682                 :            : 
    1683         [ #  # ]:          0 :         if (type == EVENT_DEAUTH)
    1684                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Deauthenticate event");
    1685                 :            :         else
    1686                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Disassociate event");
    1687                 :            : 
    1688                 :          0 :         mgmt = (const struct ieee80211_mgmt *) frame;
    1689         [ #  # ]:          0 :         if (len >= 24) {
    1690                 :          0 :                 bssid = mgmt->bssid;
    1691                 :            : 
    1692 [ #  # ][ #  # ]:          0 :                 if ((drv->capa.flags & WPA_DRIVER_FLAGS_SME) &&
    1693         [ #  # ]:          0 :                     !drv->associated &&
    1694         [ #  # ]:          0 :                     os_memcmp(bssid, drv->auth_bssid, ETH_ALEN) != 0 &&
    1695         [ #  # ]:          0 :                     os_memcmp(bssid, drv->auth_attempt_bssid, ETH_ALEN) != 0 &&
    1696                 :          0 :                     os_memcmp(bssid, drv->prev_bssid, ETH_ALEN) == 0) {
    1697                 :            :                         /*
    1698                 :            :                          * Avoid issues with some roaming cases where
    1699                 :            :                          * disconnection event for the old AP may show up after
    1700                 :            :                          * we have started connection with the new AP.
    1701                 :            :                          */
    1702                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Ignore deauth/disassoc event from old AP " MACSTR " when already authenticating with " MACSTR,
    1703                 :          0 :                                    MAC2STR(bssid),
    1704                 :          0 :                                    MAC2STR(drv->auth_attempt_bssid));
    1705                 :          0 :                         return;
    1706                 :            :                 }
    1707                 :            : 
    1708 [ #  # ][ #  # ]:          0 :                 if (drv->associated != 0 &&
    1709         [ #  # ]:          0 :                     os_memcmp(bssid, drv->bssid, ETH_ALEN) != 0 &&
    1710                 :          0 :                     os_memcmp(bssid, drv->auth_bssid, ETH_ALEN) != 0) {
    1711                 :            :                         /*
    1712                 :            :                          * We have presumably received this deauth as a
    1713                 :            :                          * response to a clear_state_mismatch() outgoing
    1714                 :            :                          * deauth.  Don't let it take us offline!
    1715                 :            :                          */
    1716                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Deauth received "
    1717                 :            :                                    "from Unknown BSSID " MACSTR " -- ignoring",
    1718                 :          0 :                                    MAC2STR(bssid));
    1719                 :          0 :                         return;
    1720                 :            :                 }
    1721                 :            :         }
    1722                 :            : 
    1723                 :          0 :         nl80211_mark_disconnected(drv);
    1724                 :          0 :         os_memset(&event, 0, sizeof(event));
    1725                 :            : 
    1726                 :            :         /* Note: Same offset for Reason Code in both frame subtypes */
    1727         [ #  # ]:          0 :         if (len >= 24 + sizeof(mgmt->u.deauth))
    1728                 :          0 :                 reason_code = le_to_host16(mgmt->u.deauth.reason_code);
    1729                 :            : 
    1730         [ #  # ]:          0 :         if (type == EVENT_DISASSOC) {
    1731                 :          0 :                 event.disassoc_info.locally_generated =
    1732                 :          0 :                         !os_memcmp(mgmt->sa, drv->first_bss->addr, ETH_ALEN);
    1733                 :          0 :                 event.disassoc_info.addr = bssid;
    1734                 :          0 :                 event.disassoc_info.reason_code = reason_code;
    1735         [ #  # ]:          0 :                 if (frame + len > mgmt->u.disassoc.variable) {
    1736                 :          0 :                         event.disassoc_info.ie = mgmt->u.disassoc.variable;
    1737                 :          0 :                         event.disassoc_info.ie_len = frame + len -
    1738                 :            :                                 mgmt->u.disassoc.variable;
    1739                 :            :                 }
    1740                 :            :         } else {
    1741                 :          0 :                 event.deauth_info.locally_generated =
    1742                 :          0 :                         !os_memcmp(mgmt->sa, drv->first_bss->addr, ETH_ALEN);
    1743                 :          0 :                 event.deauth_info.addr = bssid;
    1744                 :          0 :                 event.deauth_info.reason_code = reason_code;
    1745         [ #  # ]:          0 :                 if (frame + len > mgmt->u.deauth.variable) {
    1746                 :          0 :                         event.deauth_info.ie = mgmt->u.deauth.variable;
    1747                 :          0 :                         event.deauth_info.ie_len = frame + len -
    1748                 :            :                                 mgmt->u.deauth.variable;
    1749                 :            :                 }
    1750                 :            :         }
    1751                 :            : 
    1752                 :          0 :         wpa_supplicant_event(drv->ctx, type, &event);
    1753                 :            : }
    1754                 :            : 
    1755                 :            : 
    1756                 :          0 : static void mlme_event_unprot_disconnect(struct wpa_driver_nl80211_data *drv,
    1757                 :            :                                          enum wpa_event_type type,
    1758                 :            :                                          const u8 *frame, size_t len)
    1759                 :            : {
    1760                 :            :         const struct ieee80211_mgmt *mgmt;
    1761                 :            :         union wpa_event_data event;
    1762                 :          0 :         u16 reason_code = 0;
    1763                 :            : 
    1764         [ #  # ]:          0 :         if (type == EVENT_UNPROT_DEAUTH)
    1765                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Unprot Deauthenticate event");
    1766                 :            :         else
    1767                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Unprot Disassociate event");
    1768                 :            : 
    1769         [ #  # ]:          0 :         if (len < 24)
    1770                 :          0 :                 return;
    1771                 :            : 
    1772                 :          0 :         mgmt = (const struct ieee80211_mgmt *) frame;
    1773                 :            : 
    1774                 :          0 :         os_memset(&event, 0, sizeof(event));
    1775                 :            :         /* Note: Same offset for Reason Code in both frame subtypes */
    1776         [ #  # ]:          0 :         if (len >= 24 + sizeof(mgmt->u.deauth))
    1777                 :          0 :                 reason_code = le_to_host16(mgmt->u.deauth.reason_code);
    1778                 :            : 
    1779         [ #  # ]:          0 :         if (type == EVENT_UNPROT_DISASSOC) {
    1780                 :          0 :                 event.unprot_disassoc.sa = mgmt->sa;
    1781                 :          0 :                 event.unprot_disassoc.da = mgmt->da;
    1782                 :          0 :                 event.unprot_disassoc.reason_code = reason_code;
    1783                 :            :         } else {
    1784                 :          0 :                 event.unprot_deauth.sa = mgmt->sa;
    1785                 :          0 :                 event.unprot_deauth.da = mgmt->da;
    1786                 :          0 :                 event.unprot_deauth.reason_code = reason_code;
    1787                 :            :         }
    1788                 :            : 
    1789                 :          0 :         wpa_supplicant_event(drv->ctx, type, &event);
    1790                 :            : }
    1791                 :            : 
    1792                 :            : 
    1793                 :       2396 : static void mlme_event(struct i802_bss *bss,
    1794                 :            :                        enum nl80211_commands cmd, struct nlattr *frame,
    1795                 :            :                        struct nlattr *addr, struct nlattr *timed_out,
    1796                 :            :                        struct nlattr *freq, struct nlattr *ack,
    1797                 :            :                        struct nlattr *cookie, struct nlattr *sig)
    1798                 :            : {
    1799                 :       2396 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    1800                 :            :         const u8 *data;
    1801                 :            :         size_t len;
    1802                 :            : 
    1803 [ -  + ][ #  # ]:       2396 :         if (timed_out && addr) {
    1804                 :          0 :                 mlme_timeout_event(drv, cmd, addr);
    1805                 :          0 :                 return;
    1806                 :            :         }
    1807                 :            : 
    1808         [ -  + ]:       2396 :         if (frame == NULL) {
    1809                 :          0 :                 wpa_printf(MSG_DEBUG,
    1810                 :            :                            "nl80211: MLME event %d (%s) without frame data",
    1811                 :            :                            cmd, nl80211_command_to_string(cmd));
    1812                 :          0 :                 return;
    1813                 :            :         }
    1814                 :            : 
    1815                 :       2396 :         data = nla_data(frame);
    1816                 :       2396 :         len = nla_len(frame);
    1817         [ -  + ]:       2396 :         if (len < 4 + 2 * ETH_ALEN) {
    1818                 :          0 :                 wpa_printf(MSG_MSGDUMP, "nl80211: MLME event %d (%s) on %s("
    1819                 :            :                            MACSTR ") - too short",
    1820                 :          0 :                            cmd, nl80211_command_to_string(cmd), bss->ifname,
    1821                 :          0 :                            MAC2STR(bss->addr));
    1822                 :          0 :                 return;
    1823                 :            :         }
    1824                 :       2396 :         wpa_printf(MSG_MSGDUMP, "nl80211: MLME event %d (%s) on %s(" MACSTR
    1825                 :            :                    ") A1=" MACSTR " A2=" MACSTR, cmd,
    1826                 :       2396 :                    nl80211_command_to_string(cmd), bss->ifname,
    1827                 :      28752 :                    MAC2STR(bss->addr), MAC2STR(data + 4),
    1828                 :      14376 :                    MAC2STR(data + 4 + ETH_ALEN));
    1829 [ +  + ][ +  + ]:       2396 :         if (cmd != NL80211_CMD_FRAME_TX_STATUS && !(data[4] & 0x01) &&
                 [ -  + ]
    1830         [ #  # ]:          0 :             os_memcmp(bss->addr, data + 4, ETH_ALEN) != 0 &&
    1831                 :          0 :             os_memcmp(bss->addr, data + 4 + ETH_ALEN, ETH_ALEN) != 0) {
    1832                 :          0 :                 wpa_printf(MSG_MSGDUMP, "nl80211: %s: Ignore MLME frame event "
    1833                 :          0 :                            "for foreign address", bss->ifname);
    1834                 :          0 :                 return;
    1835                 :            :         }
    1836                 :       2396 :         wpa_hexdump(MSG_MSGDUMP, "nl80211: MLME event frame",
    1837                 :       2396 :                     nla_data(frame), nla_len(frame));
    1838                 :            : 
    1839   [ -  -  -  -  :       2396 :         switch (cmd) {
             +  +  -  -  
                      - ]
    1840                 :            :         case NL80211_CMD_AUTHENTICATE:
    1841                 :          0 :                 mlme_event_auth(drv, nla_data(frame), nla_len(frame));
    1842                 :          0 :                 break;
    1843                 :            :         case NL80211_CMD_ASSOCIATE:
    1844                 :          0 :                 mlme_event_assoc(drv, nla_data(frame), nla_len(frame));
    1845                 :          0 :                 break;
    1846                 :            :         case NL80211_CMD_DEAUTHENTICATE:
    1847                 :          0 :                 mlme_event_deauth_disassoc(drv, EVENT_DEAUTH,
    1848                 :          0 :                                            nla_data(frame), nla_len(frame));
    1849                 :          0 :                 break;
    1850                 :            :         case NL80211_CMD_DISASSOCIATE:
    1851                 :          0 :                 mlme_event_deauth_disassoc(drv, EVENT_DISASSOC,
    1852                 :          0 :                                            nla_data(frame), nla_len(frame));
    1853                 :          0 :                 break;
    1854                 :            :         case NL80211_CMD_FRAME:
    1855                 :       1576 :                 mlme_event_mgmt(drv, freq, sig, nla_data(frame),
    1856                 :       1576 :                                 nla_len(frame));
    1857                 :       1576 :                 break;
    1858                 :            :         case NL80211_CMD_FRAME_TX_STATUS:
    1859                 :        820 :                 mlme_event_mgmt_tx_status(drv, cookie, nla_data(frame),
    1860                 :        820 :                                           nla_len(frame), ack);
    1861                 :        820 :                 break;
    1862                 :            :         case NL80211_CMD_UNPROT_DEAUTHENTICATE:
    1863                 :          0 :                 mlme_event_unprot_disconnect(drv, EVENT_UNPROT_DEAUTH,
    1864                 :          0 :                                              nla_data(frame), nla_len(frame));
    1865                 :          0 :                 break;
    1866                 :            :         case NL80211_CMD_UNPROT_DISASSOCIATE:
    1867                 :          0 :                 mlme_event_unprot_disconnect(drv, EVENT_UNPROT_DISASSOC,
    1868                 :          0 :                                              nla_data(frame), nla_len(frame));
    1869                 :          0 :                 break;
    1870                 :            :         default:
    1871                 :       2396 :                 break;
    1872                 :            :         }
    1873                 :            : }
    1874                 :            : 
    1875                 :            : 
    1876                 :          0 : static void mlme_event_michael_mic_failure(struct i802_bss *bss,
    1877                 :            :                                            struct nlattr *tb[])
    1878                 :            : {
    1879                 :            :         union wpa_event_data data;
    1880                 :            : 
    1881                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: MLME event Michael MIC failure");
    1882                 :          0 :         os_memset(&data, 0, sizeof(data));
    1883         [ #  # ]:          0 :         if (tb[NL80211_ATTR_MAC]) {
    1884                 :          0 :                 wpa_hexdump(MSG_DEBUG, "nl80211: Source MAC address",
    1885                 :          0 :                             nla_data(tb[NL80211_ATTR_MAC]),
    1886                 :          0 :                             nla_len(tb[NL80211_ATTR_MAC]));
    1887                 :          0 :                 data.michael_mic_failure.src = nla_data(tb[NL80211_ATTR_MAC]);
    1888                 :            :         }
    1889         [ #  # ]:          0 :         if (tb[NL80211_ATTR_KEY_SEQ]) {
    1890                 :          0 :                 wpa_hexdump(MSG_DEBUG, "nl80211: TSC",
    1891                 :          0 :                             nla_data(tb[NL80211_ATTR_KEY_SEQ]),
    1892                 :          0 :                             nla_len(tb[NL80211_ATTR_KEY_SEQ]));
    1893                 :            :         }
    1894         [ #  # ]:          0 :         if (tb[NL80211_ATTR_KEY_TYPE]) {
    1895                 :          0 :                 enum nl80211_key_type key_type =
    1896                 :          0 :                         nla_get_u32(tb[NL80211_ATTR_KEY_TYPE]);
    1897                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Key Type %d", key_type);
    1898         [ #  # ]:          0 :                 if (key_type == NL80211_KEYTYPE_PAIRWISE)
    1899                 :          0 :                         data.michael_mic_failure.unicast = 1;
    1900                 :            :         } else
    1901                 :          0 :                 data.michael_mic_failure.unicast = 1;
    1902                 :            : 
    1903         [ #  # ]:          0 :         if (tb[NL80211_ATTR_KEY_IDX]) {
    1904                 :          0 :                 u8 key_id = nla_get_u8(tb[NL80211_ATTR_KEY_IDX]);
    1905                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Key Id %d", key_id);
    1906                 :            :         }
    1907                 :            : 
    1908                 :          0 :         wpa_supplicant_event(bss->ctx, EVENT_MICHAEL_MIC_FAILURE, &data);
    1909                 :          0 : }
    1910                 :            : 
    1911                 :            : 
    1912                 :          0 : static void mlme_event_join_ibss(struct wpa_driver_nl80211_data *drv,
    1913                 :            :                                  struct nlattr *tb[])
    1914                 :            : {
    1915         [ #  # ]:          0 :         if (tb[NL80211_ATTR_MAC] == NULL) {
    1916                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: No address in IBSS joined "
    1917                 :            :                            "event");
    1918                 :          0 :                 return;
    1919                 :            :         }
    1920                 :          0 :         os_memcpy(drv->bssid, nla_data(tb[NL80211_ATTR_MAC]), ETH_ALEN);
    1921                 :            : 
    1922                 :          0 :         drv->associated = 1;
    1923                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: IBSS " MACSTR " joined",
    1924                 :          0 :                    MAC2STR(drv->bssid));
    1925                 :            : 
    1926                 :          0 :         wpa_supplicant_event(drv->ctx, EVENT_ASSOC, NULL);
    1927                 :            : }
    1928                 :            : 
    1929                 :            : 
    1930                 :          0 : static void mlme_event_remain_on_channel(struct wpa_driver_nl80211_data *drv,
    1931                 :            :                                          int cancel_event, struct nlattr *tb[])
    1932                 :            : {
    1933                 :            :         unsigned int freq, chan_type, duration;
    1934                 :            :         union wpa_event_data data;
    1935                 :            :         u64 cookie;
    1936                 :            : 
    1937         [ #  # ]:          0 :         if (tb[NL80211_ATTR_WIPHY_FREQ])
    1938                 :          0 :                 freq = nla_get_u32(tb[NL80211_ATTR_WIPHY_FREQ]);
    1939                 :            :         else
    1940                 :          0 :                 freq = 0;
    1941                 :            : 
    1942         [ #  # ]:          0 :         if (tb[NL80211_ATTR_WIPHY_CHANNEL_TYPE])
    1943                 :          0 :                 chan_type = nla_get_u32(tb[NL80211_ATTR_WIPHY_CHANNEL_TYPE]);
    1944                 :            :         else
    1945                 :          0 :                 chan_type = 0;
    1946                 :            : 
    1947         [ #  # ]:          0 :         if (tb[NL80211_ATTR_DURATION])
    1948                 :          0 :                 duration = nla_get_u32(tb[NL80211_ATTR_DURATION]);
    1949                 :            :         else
    1950                 :          0 :                 duration = 0;
    1951                 :            : 
    1952         [ #  # ]:          0 :         if (tb[NL80211_ATTR_COOKIE])
    1953                 :          0 :                 cookie = nla_get_u64(tb[NL80211_ATTR_COOKIE]);
    1954                 :            :         else
    1955                 :          0 :                 cookie = 0;
    1956                 :            : 
    1957         [ #  # ]:          0 :         wpa_printf(MSG_DEBUG, "nl80211: Remain-on-channel event (cancel=%d "
    1958                 :            :                    "freq=%u channel_type=%u duration=%u cookie=0x%llx (%s))",
    1959                 :            :                    cancel_event, freq, chan_type, duration,
    1960                 :            :                    (long long unsigned int) cookie,
    1961                 :          0 :                    cookie == drv->remain_on_chan_cookie ? "match" : "unknown");
    1962                 :            : 
    1963         [ #  # ]:          0 :         if (cookie != drv->remain_on_chan_cookie)
    1964                 :          0 :                 return; /* not for us */
    1965                 :            : 
    1966         [ #  # ]:          0 :         if (cancel_event)
    1967                 :          0 :                 drv->pending_remain_on_chan = 0;
    1968                 :            : 
    1969                 :          0 :         os_memset(&data, 0, sizeof(data));
    1970                 :          0 :         data.remain_on_channel.freq = freq;
    1971                 :          0 :         data.remain_on_channel.duration = duration;
    1972         [ #  # ]:          0 :         wpa_supplicant_event(drv->ctx, cancel_event ?
    1973                 :            :                              EVENT_CANCEL_REMAIN_ON_CHANNEL :
    1974                 :            :                              EVENT_REMAIN_ON_CHANNEL, &data);
    1975                 :            : }
    1976                 :            : 
    1977                 :            : 
    1978                 :          0 : static void mlme_event_ft_event(struct wpa_driver_nl80211_data *drv,
    1979                 :            :                                 struct nlattr *tb[])
    1980                 :            : {
    1981                 :            :         union wpa_event_data data;
    1982                 :            : 
    1983                 :          0 :         os_memset(&data, 0, sizeof(data));
    1984                 :            : 
    1985         [ #  # ]:          0 :         if (tb[NL80211_ATTR_IE]) {
    1986                 :          0 :                 data.ft_ies.ies = nla_data(tb[NL80211_ATTR_IE]);
    1987                 :          0 :                 data.ft_ies.ies_len = nla_len(tb[NL80211_ATTR_IE]);
    1988                 :            :         }
    1989                 :            : 
    1990         [ #  # ]:          0 :         if (tb[NL80211_ATTR_IE_RIC]) {
    1991                 :          0 :                 data.ft_ies.ric_ies = nla_data(tb[NL80211_ATTR_IE_RIC]);
    1992                 :          0 :                 data.ft_ies.ric_ies_len = nla_len(tb[NL80211_ATTR_IE_RIC]);
    1993                 :            :         }
    1994                 :            : 
    1995         [ #  # ]:          0 :         if (tb[NL80211_ATTR_MAC])
    1996                 :          0 :                 os_memcpy(data.ft_ies.target_ap,
    1997                 :            :                           nla_data(tb[NL80211_ATTR_MAC]), ETH_ALEN);
    1998                 :            : 
    1999                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: FT event target_ap " MACSTR,
    2000                 :          0 :                    MAC2STR(data.ft_ies.target_ap));
    2001                 :            : 
    2002                 :          0 :         wpa_supplicant_event(drv->ctx, EVENT_FT_RESPONSE, &data);
    2003                 :          0 : }
    2004                 :            : 
    2005                 :            : 
    2006                 :         19 : static void send_scan_event(struct wpa_driver_nl80211_data *drv, int aborted,
    2007                 :            :                             struct nlattr *tb[])
    2008                 :            : {
    2009                 :            :         union wpa_event_data event;
    2010                 :            :         struct nlattr *nl;
    2011                 :            :         int rem;
    2012                 :            :         struct scan_info *info;
    2013                 :            : #define MAX_REPORT_FREQS 50
    2014                 :            :         int freqs[MAX_REPORT_FREQS];
    2015                 :         19 :         int num_freqs = 0;
    2016                 :            : 
    2017         [ -  + ]:         19 :         if (drv->scan_for_auth) {
    2018                 :          0 :                 drv->scan_for_auth = 0;
    2019                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Scan results for missing "
    2020                 :            :                            "cfg80211 BSS entry");
    2021                 :          0 :                 wpa_driver_nl80211_authenticate_retry(drv);
    2022                 :         19 :                 return;
    2023                 :            :         }
    2024                 :            : 
    2025                 :         19 :         os_memset(&event, 0, sizeof(event));
    2026                 :         19 :         info = &event.scan_info;
    2027                 :         19 :         info->aborted = aborted;
    2028                 :            : 
    2029         [ +  - ]:         19 :         if (tb[NL80211_ATTR_SCAN_SSIDS]) {
    2030         [ -  + ]:         19 :                 nla_for_each_nested(nl, tb[NL80211_ATTR_SCAN_SSIDS], rem) {
    2031                 :          0 :                         struct wpa_driver_scan_ssid *s =
    2032                 :          0 :                                 &info->ssids[info->num_ssids];
    2033                 :          0 :                         s->ssid = nla_data(nl);
    2034                 :          0 :                         s->ssid_len = nla_len(nl);
    2035                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Scan probed for SSID '%s'",
    2036                 :            :                                    wpa_ssid_txt(s->ssid, s->ssid_len));
    2037                 :          0 :                         info->num_ssids++;
    2038         [ #  # ]:          0 :                         if (info->num_ssids == WPAS_MAX_SCAN_SSIDS)
    2039                 :          0 :                                 break;
    2040                 :            :                 }
    2041                 :            :         }
    2042         [ +  - ]:         19 :         if (tb[NL80211_ATTR_SCAN_FREQUENCIES]) {
    2043                 :            :                 char msg[200], *pos, *end;
    2044                 :            :                 int res;
    2045                 :            : 
    2046                 :         19 :                 pos = msg;
    2047                 :         19 :                 end = pos + sizeof(msg);
    2048                 :         19 :                 *pos = '\0';
    2049                 :            : 
    2050         [ +  + ]:        216 :                 nla_for_each_nested(nl, tb[NL80211_ATTR_SCAN_FREQUENCIES], rem)
    2051                 :            :                 {
    2052                 :        197 :                         freqs[num_freqs] = nla_get_u32(nl);
    2053                 :        197 :                         res = os_snprintf(pos, end - pos, " %d",
    2054                 :            :                                           freqs[num_freqs]);
    2055 [ +  - ][ +  - ]:        197 :                         if (res > 0 && end - pos > res)
    2056                 :        197 :                                 pos += res;
    2057                 :        197 :                         num_freqs++;
    2058         [ -  + ]:        197 :                         if (num_freqs == MAX_REPORT_FREQS - 1)
    2059                 :          0 :                                 break;
    2060                 :            :                 }
    2061                 :         19 :                 info->freqs = freqs;
    2062                 :         19 :                 info->num_freqs = num_freqs;
    2063                 :         19 :                 wpa_printf(MSG_DEBUG, "nl80211: Scan included frequencies:%s",
    2064                 :            :                            msg);
    2065                 :            :         }
    2066                 :         19 :         wpa_supplicant_event(drv->ctx, EVENT_SCAN_RESULTS, &event);
    2067                 :            : }
    2068                 :            : 
    2069                 :            : 
    2070                 :          0 : static int get_link_signal(struct nl_msg *msg, void *arg)
    2071                 :            : {
    2072                 :            :         struct nlattr *tb[NL80211_ATTR_MAX + 1];
    2073                 :          0 :         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
    2074                 :            :         struct nlattr *sinfo[NL80211_STA_INFO_MAX + 1];
    2075                 :            :         static struct nla_policy policy[NL80211_STA_INFO_MAX + 1] = {
    2076                 :            :                 [NL80211_STA_INFO_SIGNAL] = { .type = NLA_U8 },
    2077                 :            :                 [NL80211_STA_INFO_SIGNAL_AVG] = { .type = NLA_U8 },
    2078                 :            :         };
    2079                 :            :         struct nlattr *rinfo[NL80211_RATE_INFO_MAX + 1];
    2080                 :            :         static struct nla_policy rate_policy[NL80211_RATE_INFO_MAX + 1] = {
    2081                 :            :                 [NL80211_RATE_INFO_BITRATE] = { .type = NLA_U16 },
    2082                 :            :                 [NL80211_RATE_INFO_MCS] = { .type = NLA_U8 },
    2083                 :            :                 [NL80211_RATE_INFO_40_MHZ_WIDTH] = { .type = NLA_FLAG },
    2084                 :            :                 [NL80211_RATE_INFO_SHORT_GI] = { .type = NLA_FLAG },
    2085                 :            :         };
    2086                 :          0 :         struct wpa_signal_info *sig_change = arg;
    2087                 :            : 
    2088                 :          0 :         nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
    2089                 :            :                   genlmsg_attrlen(gnlh, 0), NULL);
    2090   [ #  #  #  # ]:          0 :         if (!tb[NL80211_ATTR_STA_INFO] ||
    2091                 :          0 :             nla_parse_nested(sinfo, NL80211_STA_INFO_MAX,
    2092                 :            :                              tb[NL80211_ATTR_STA_INFO], policy))
    2093                 :          0 :                 return NL_SKIP;
    2094         [ #  # ]:          0 :         if (!sinfo[NL80211_STA_INFO_SIGNAL])
    2095                 :          0 :                 return NL_SKIP;
    2096                 :            : 
    2097                 :          0 :         sig_change->current_signal =
    2098                 :          0 :                 (s8) nla_get_u8(sinfo[NL80211_STA_INFO_SIGNAL]);
    2099                 :            : 
    2100         [ #  # ]:          0 :         if (sinfo[NL80211_STA_INFO_SIGNAL_AVG])
    2101                 :          0 :                 sig_change->avg_signal =
    2102                 :          0 :                         (s8) nla_get_u8(sinfo[NL80211_STA_INFO_SIGNAL_AVG]);
    2103                 :            :         else
    2104                 :          0 :                 sig_change->avg_signal = 0;
    2105                 :            : 
    2106         [ #  # ]:          0 :         if (sinfo[NL80211_STA_INFO_TX_BITRATE]) {
    2107         [ #  # ]:          0 :                 if (nla_parse_nested(rinfo, NL80211_RATE_INFO_MAX,
    2108                 :            :                                      sinfo[NL80211_STA_INFO_TX_BITRATE],
    2109                 :            :                                      rate_policy)) {
    2110                 :          0 :                         sig_change->current_txrate = 0;
    2111                 :            :                 } else {
    2112         [ #  # ]:          0 :                         if (rinfo[NL80211_RATE_INFO_BITRATE]) {
    2113                 :          0 :                                 sig_change->current_txrate =
    2114                 :          0 :                                         nla_get_u16(rinfo[
    2115                 :          0 :                                              NL80211_RATE_INFO_BITRATE]) * 100;
    2116                 :            :                         }
    2117                 :            :                 }
    2118                 :            :         }
    2119                 :            : 
    2120                 :          0 :         return NL_SKIP;
    2121                 :            : }
    2122                 :            : 
    2123                 :            : 
    2124                 :          0 : static int nl80211_get_link_signal(struct wpa_driver_nl80211_data *drv,
    2125                 :            :                                    struct wpa_signal_info *sig)
    2126                 :            : {
    2127                 :            :         struct nl_msg *msg;
    2128                 :            : 
    2129                 :          0 :         sig->current_signal = -9999;
    2130                 :          0 :         sig->current_txrate = 0;
    2131                 :            : 
    2132                 :          0 :         msg = nlmsg_alloc();
    2133         [ #  # ]:          0 :         if (!msg)
    2134                 :          0 :                 return -ENOMEM;
    2135                 :            : 
    2136                 :          0 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_STATION);
    2137                 :            : 
    2138         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
    2139         [ #  # ]:          0 :         NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, drv->bssid);
    2140                 :            : 
    2141                 :          0 :         return send_and_recv_msgs(drv, msg, get_link_signal, sig);
    2142                 :            :  nla_put_failure:
    2143                 :          0 :         nlmsg_free(msg);
    2144                 :          0 :         return -ENOBUFS;
    2145                 :            : }
    2146                 :            : 
    2147                 :            : 
    2148                 :          0 : static int get_link_noise(struct nl_msg *msg, void *arg)
    2149                 :            : {
    2150                 :            :         struct nlattr *tb[NL80211_ATTR_MAX + 1];
    2151                 :          0 :         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
    2152                 :            :         struct nlattr *sinfo[NL80211_SURVEY_INFO_MAX + 1];
    2153                 :            :         static struct nla_policy survey_policy[NL80211_SURVEY_INFO_MAX + 1] = {
    2154                 :            :                 [NL80211_SURVEY_INFO_FREQUENCY] = { .type = NLA_U32 },
    2155                 :            :                 [NL80211_SURVEY_INFO_NOISE] = { .type = NLA_U8 },
    2156                 :            :         };
    2157                 :          0 :         struct wpa_signal_info *sig_change = arg;
    2158                 :            : 
    2159                 :          0 :         nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
    2160                 :            :                   genlmsg_attrlen(gnlh, 0), NULL);
    2161                 :            : 
    2162         [ #  # ]:          0 :         if (!tb[NL80211_ATTR_SURVEY_INFO]) {
    2163                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: survey data missing!");
    2164                 :          0 :                 return NL_SKIP;
    2165                 :            :         }
    2166                 :            : 
    2167         [ #  # ]:          0 :         if (nla_parse_nested(sinfo, NL80211_SURVEY_INFO_MAX,
    2168                 :            :                              tb[NL80211_ATTR_SURVEY_INFO],
    2169                 :            :                              survey_policy)) {
    2170                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: failed to parse nested "
    2171                 :            :                            "attributes!");
    2172                 :          0 :                 return NL_SKIP;
    2173                 :            :         }
    2174                 :            : 
    2175         [ #  # ]:          0 :         if (!sinfo[NL80211_SURVEY_INFO_FREQUENCY])
    2176                 :          0 :                 return NL_SKIP;
    2177                 :            : 
    2178         [ #  # ]:          0 :         if (nla_get_u32(sinfo[NL80211_SURVEY_INFO_FREQUENCY]) !=
    2179                 :          0 :             sig_change->frequency)
    2180                 :          0 :                 return NL_SKIP;
    2181                 :            : 
    2182         [ #  # ]:          0 :         if (!sinfo[NL80211_SURVEY_INFO_NOISE])
    2183                 :          0 :                 return NL_SKIP;
    2184                 :            : 
    2185                 :          0 :         sig_change->current_noise =
    2186                 :          0 :                 (s8) nla_get_u8(sinfo[NL80211_SURVEY_INFO_NOISE]);
    2187                 :            : 
    2188                 :          0 :         return NL_SKIP;
    2189                 :            : }
    2190                 :            : 
    2191                 :            : 
    2192                 :          0 : static int nl80211_get_link_noise(struct wpa_driver_nl80211_data *drv,
    2193                 :            :                                   struct wpa_signal_info *sig_change)
    2194                 :            : {
    2195                 :            :         struct nl_msg *msg;
    2196                 :            : 
    2197                 :          0 :         sig_change->current_noise = 9999;
    2198                 :          0 :         sig_change->frequency = drv->assoc_freq;
    2199                 :            : 
    2200                 :          0 :         msg = nlmsg_alloc();
    2201         [ #  # ]:          0 :         if (!msg)
    2202                 :          0 :                 return -ENOMEM;
    2203                 :            : 
    2204                 :          0 :         nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_SURVEY);
    2205                 :            : 
    2206         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
    2207                 :            : 
    2208                 :          0 :         return send_and_recv_msgs(drv, msg, get_link_noise, sig_change);
    2209                 :            :  nla_put_failure:
    2210                 :          0 :         nlmsg_free(msg);
    2211                 :          0 :         return -ENOBUFS;
    2212                 :            : }
    2213                 :            : 
    2214                 :            : 
    2215                 :          4 : static int get_noise_for_scan_results(struct nl_msg *msg, void *arg)
    2216                 :            : {
    2217                 :            :         struct nlattr *tb[NL80211_ATTR_MAX + 1];
    2218                 :          4 :         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
    2219                 :            :         struct nlattr *sinfo[NL80211_SURVEY_INFO_MAX + 1];
    2220                 :            :         static struct nla_policy survey_policy[NL80211_SURVEY_INFO_MAX + 1] = {
    2221                 :            :                 [NL80211_SURVEY_INFO_FREQUENCY] = { .type = NLA_U32 },
    2222                 :            :                 [NL80211_SURVEY_INFO_NOISE] = { .type = NLA_U8 },
    2223                 :            :         };
    2224                 :          4 :         struct wpa_scan_results *scan_results = arg;
    2225                 :            :         struct wpa_scan_res *scan_res;
    2226                 :            :         size_t i;
    2227                 :            : 
    2228                 :          4 :         nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
    2229                 :            :                   genlmsg_attrlen(gnlh, 0), NULL);
    2230                 :            : 
    2231         [ -  + ]:          4 :         if (!tb[NL80211_ATTR_SURVEY_INFO]) {
    2232                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Survey data missing");
    2233                 :          0 :                 return NL_SKIP;
    2234                 :            :         }
    2235                 :            : 
    2236         [ -  + ]:          4 :         if (nla_parse_nested(sinfo, NL80211_SURVEY_INFO_MAX,
    2237                 :            :                              tb[NL80211_ATTR_SURVEY_INFO],
    2238                 :            :                              survey_policy)) {
    2239                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Failed to parse nested "
    2240                 :            :                            "attributes");
    2241                 :          0 :                 return NL_SKIP;
    2242                 :            :         }
    2243                 :            : 
    2244         [ -  + ]:          4 :         if (!sinfo[NL80211_SURVEY_INFO_NOISE])
    2245                 :          0 :                 return NL_SKIP;
    2246                 :            : 
    2247         [ -  + ]:          4 :         if (!sinfo[NL80211_SURVEY_INFO_FREQUENCY])
    2248                 :          0 :                 return NL_SKIP;
    2249                 :            : 
    2250         [ -  + ]:          4 :         for (i = 0; i < scan_results->num; ++i) {
    2251                 :          0 :                 scan_res = scan_results->res[i];
    2252         [ #  # ]:          0 :                 if (!scan_res)
    2253                 :          0 :                         continue;
    2254         [ #  # ]:          0 :                 if ((int) nla_get_u32(sinfo[NL80211_SURVEY_INFO_FREQUENCY]) !=
    2255                 :          0 :                     scan_res->freq)
    2256                 :          0 :                         continue;
    2257         [ #  # ]:          0 :                 if (!(scan_res->flags & WPA_SCAN_NOISE_INVALID))
    2258                 :          0 :                         continue;
    2259                 :          0 :                 scan_res->noise = (s8)
    2260                 :          0 :                         nla_get_u8(sinfo[NL80211_SURVEY_INFO_NOISE]);
    2261                 :          0 :                 scan_res->flags &= ~WPA_SCAN_NOISE_INVALID;
    2262                 :            :         }
    2263                 :            : 
    2264                 :          4 :         return NL_SKIP;
    2265                 :            : }
    2266                 :            : 
    2267                 :            : 
    2268                 :          4 : static int nl80211_get_noise_for_scan_results(
    2269                 :            :         struct wpa_driver_nl80211_data *drv,
    2270                 :            :         struct wpa_scan_results *scan_res)
    2271                 :            : {
    2272                 :            :         struct nl_msg *msg;
    2273                 :            : 
    2274                 :          4 :         msg = nlmsg_alloc();
    2275         [ -  + ]:          4 :         if (!msg)
    2276                 :          0 :                 return -ENOMEM;
    2277                 :            : 
    2278                 :          4 :         nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_SURVEY);
    2279                 :            : 
    2280         [ +  - ]:          4 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
    2281                 :            : 
    2282                 :          4 :         return send_and_recv_msgs(drv, msg, get_noise_for_scan_results,
    2283                 :            :                                   scan_res);
    2284                 :            :  nla_put_failure:
    2285                 :          0 :         nlmsg_free(msg);
    2286                 :          4 :         return -ENOBUFS;
    2287                 :            : }
    2288                 :            : 
    2289                 :            : 
    2290                 :          0 : static void nl80211_cqm_event(struct wpa_driver_nl80211_data *drv,
    2291                 :            :                               struct nlattr *tb[])
    2292                 :            : {
    2293                 :            :         static struct nla_policy cqm_policy[NL80211_ATTR_CQM_MAX + 1] = {
    2294                 :            :                 [NL80211_ATTR_CQM_RSSI_THOLD] = { .type = NLA_U32 },
    2295                 :            :                 [NL80211_ATTR_CQM_RSSI_HYST] = { .type = NLA_U8 },
    2296                 :            :                 [NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT] = { .type = NLA_U32 },
    2297                 :            :                 [NL80211_ATTR_CQM_PKT_LOSS_EVENT] = { .type = NLA_U32 },
    2298                 :            :         };
    2299                 :            :         struct nlattr *cqm[NL80211_ATTR_CQM_MAX + 1];
    2300                 :            :         enum nl80211_cqm_rssi_threshold_event event;
    2301                 :            :         union wpa_event_data ed;
    2302                 :            :         struct wpa_signal_info sig;
    2303                 :            :         int res;
    2304                 :            : 
    2305   [ #  #  #  # ]:          0 :         if (tb[NL80211_ATTR_CQM] == NULL ||
    2306                 :          0 :             nla_parse_nested(cqm, NL80211_ATTR_CQM_MAX, tb[NL80211_ATTR_CQM],
    2307                 :            :                              cqm_policy)) {
    2308                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Ignore invalid CQM event");
    2309                 :          0 :                 return;
    2310                 :            :         }
    2311                 :            : 
    2312                 :          0 :         os_memset(&ed, 0, sizeof(ed));
    2313                 :            : 
    2314         [ #  # ]:          0 :         if (cqm[NL80211_ATTR_CQM_PKT_LOSS_EVENT]) {
    2315         [ #  # ]:          0 :                 if (!tb[NL80211_ATTR_MAC])
    2316                 :          0 :                         return;
    2317                 :          0 :                 os_memcpy(ed.low_ack.addr, nla_data(tb[NL80211_ATTR_MAC]),
    2318                 :            :                           ETH_ALEN);
    2319                 :          0 :                 wpa_supplicant_event(drv->ctx, EVENT_STATION_LOW_ACK, &ed);
    2320                 :          0 :                 return;
    2321                 :            :         }
    2322                 :            : 
    2323         [ #  # ]:          0 :         if (cqm[NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT] == NULL)
    2324                 :          0 :                 return;
    2325                 :          0 :         event = nla_get_u32(cqm[NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT]);
    2326                 :            : 
    2327         [ #  # ]:          0 :         if (event == NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH) {
    2328                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Connection quality monitor "
    2329                 :            :                            "event: RSSI high");
    2330                 :          0 :                 ed.signal_change.above_threshold = 1;
    2331         [ #  # ]:          0 :         } else if (event == NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW) {
    2332                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Connection quality monitor "
    2333                 :            :                            "event: RSSI low");
    2334                 :          0 :                 ed.signal_change.above_threshold = 0;
    2335                 :            :         } else
    2336                 :          0 :                 return;
    2337                 :            : 
    2338                 :          0 :         res = nl80211_get_link_signal(drv, &sig);
    2339         [ #  # ]:          0 :         if (res == 0) {
    2340                 :          0 :                 ed.signal_change.current_signal = sig.current_signal;
    2341                 :          0 :                 ed.signal_change.current_txrate = sig.current_txrate;
    2342                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Signal: %d dBm  txrate: %d",
    2343                 :            :                            sig.current_signal, sig.current_txrate);
    2344                 :            :         }
    2345                 :            : 
    2346                 :          0 :         res = nl80211_get_link_noise(drv, &sig);
    2347         [ #  # ]:          0 :         if (res == 0) {
    2348                 :          0 :                 ed.signal_change.current_noise = sig.current_noise;
    2349                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Noise: %d dBm",
    2350                 :            :                            sig.current_noise);
    2351                 :            :         }
    2352                 :            : 
    2353                 :          0 :         wpa_supplicant_event(drv->ctx, EVENT_SIGNAL_CHANGE, &ed);
    2354                 :            : }
    2355                 :            : 
    2356                 :            : 
    2357                 :        313 : static void nl80211_new_station_event(struct wpa_driver_nl80211_data *drv,
    2358                 :            :                                       struct nlattr **tb)
    2359                 :            : {
    2360                 :            :         u8 *addr;
    2361                 :            :         union wpa_event_data data;
    2362                 :            : 
    2363         [ -  + ]:        313 :         if (tb[NL80211_ATTR_MAC] == NULL)
    2364                 :          0 :                 return;
    2365                 :        313 :         addr = nla_data(tb[NL80211_ATTR_MAC]);
    2366                 :        313 :         wpa_printf(MSG_DEBUG, "nl80211: New station " MACSTR, MAC2STR(addr));
    2367                 :            : 
    2368 [ +  - ][ -  + ]:        313 :         if (is_ap_interface(drv->nlmode) && drv->device_ap_sme) {
    2369                 :          0 :                 u8 *ies = NULL;
    2370                 :          0 :                 size_t ies_len = 0;
    2371         [ #  # ]:          0 :                 if (tb[NL80211_ATTR_IE]) {
    2372                 :          0 :                         ies = nla_data(tb[NL80211_ATTR_IE]);
    2373                 :          0 :                         ies_len = nla_len(tb[NL80211_ATTR_IE]);
    2374                 :            :                 }
    2375                 :          0 :                 wpa_hexdump(MSG_DEBUG, "nl80211: Assoc Req IEs", ies, ies_len);
    2376                 :          0 :                 drv_event_assoc(drv->ctx, addr, ies, ies_len, 0);
    2377                 :          0 :                 return;
    2378                 :            :         }
    2379                 :            : 
    2380         [ +  - ]:        313 :         if (drv->nlmode != NL80211_IFTYPE_ADHOC)
    2381                 :        313 :                 return;
    2382                 :            : 
    2383                 :          0 :         os_memset(&data, 0, sizeof(data));
    2384                 :          0 :         os_memcpy(data.ibss_rsn_start.peer, addr, ETH_ALEN);
    2385                 :        313 :         wpa_supplicant_event(drv->ctx, EVENT_IBSS_RSN_START, &data);
    2386                 :            : }
    2387                 :            : 
    2388                 :            : 
    2389                 :        299 : static void nl80211_del_station_event(struct wpa_driver_nl80211_data *drv,
    2390                 :            :                                       struct nlattr **tb)
    2391                 :            : {
    2392                 :            :         u8 *addr;
    2393                 :            :         union wpa_event_data data;
    2394                 :            : 
    2395         [ -  + ]:        299 :         if (tb[NL80211_ATTR_MAC] == NULL)
    2396                 :          0 :                 return;
    2397                 :        299 :         addr = nla_data(tb[NL80211_ATTR_MAC]);
    2398                 :        299 :         wpa_printf(MSG_DEBUG, "nl80211: Delete station " MACSTR,
    2399                 :       1794 :                    MAC2STR(addr));
    2400                 :            : 
    2401 [ +  - ][ -  + ]:        299 :         if (is_ap_interface(drv->nlmode) && drv->device_ap_sme) {
    2402                 :          0 :                 drv_event_disassoc(drv->ctx, addr);
    2403                 :          0 :                 return;
    2404                 :            :         }
    2405                 :            : 
    2406         [ +  - ]:        299 :         if (drv->nlmode != NL80211_IFTYPE_ADHOC)
    2407                 :        299 :                 return;
    2408                 :            : 
    2409                 :          0 :         os_memset(&data, 0, sizeof(data));
    2410                 :          0 :         os_memcpy(data.ibss_peer_lost.peer, addr, ETH_ALEN);
    2411                 :        299 :         wpa_supplicant_event(drv->ctx, EVENT_IBSS_PEER_LOST, &data);
    2412                 :            : }
    2413                 :            : 
    2414                 :            : 
    2415                 :          0 : static void nl80211_rekey_offload_event(struct wpa_driver_nl80211_data *drv,
    2416                 :            :                                         struct nlattr **tb)
    2417                 :            : {
    2418                 :            :         struct nlattr *rekey_info[NUM_NL80211_REKEY_DATA];
    2419                 :            :         static struct nla_policy rekey_policy[NUM_NL80211_REKEY_DATA] = {
    2420                 :            :                 [NL80211_REKEY_DATA_KEK] = {
    2421                 :            :                         .minlen = NL80211_KEK_LEN,
    2422                 :            :                         .maxlen = NL80211_KEK_LEN,
    2423                 :            :                 },
    2424                 :            :                 [NL80211_REKEY_DATA_KCK] = {
    2425                 :            :                         .minlen = NL80211_KCK_LEN,
    2426                 :            :                         .maxlen = NL80211_KCK_LEN,
    2427                 :            :                 },
    2428                 :            :                 [NL80211_REKEY_DATA_REPLAY_CTR] = {
    2429                 :            :                         .minlen = NL80211_REPLAY_CTR_LEN,
    2430                 :            :                         .maxlen = NL80211_REPLAY_CTR_LEN,
    2431                 :            :                 },
    2432                 :            :         };
    2433                 :            :         union wpa_event_data data;
    2434                 :            : 
    2435         [ #  # ]:          0 :         if (!tb[NL80211_ATTR_MAC])
    2436                 :          0 :                 return;
    2437         [ #  # ]:          0 :         if (!tb[NL80211_ATTR_REKEY_DATA])
    2438                 :          0 :                 return;
    2439         [ #  # ]:          0 :         if (nla_parse_nested(rekey_info, MAX_NL80211_REKEY_DATA,
    2440                 :          0 :                              tb[NL80211_ATTR_REKEY_DATA], rekey_policy))
    2441                 :          0 :                 return;
    2442         [ #  # ]:          0 :         if (!rekey_info[NL80211_REKEY_DATA_REPLAY_CTR])
    2443                 :          0 :                 return;
    2444                 :            : 
    2445                 :          0 :         os_memset(&data, 0, sizeof(data));
    2446                 :          0 :         data.driver_gtk_rekey.bssid = nla_data(tb[NL80211_ATTR_MAC]);
    2447                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Rekey offload event for BSSID " MACSTR,
    2448                 :          0 :                    MAC2STR(data.driver_gtk_rekey.bssid));
    2449                 :          0 :         data.driver_gtk_rekey.replay_ctr =
    2450                 :          0 :                 nla_data(rekey_info[NL80211_REKEY_DATA_REPLAY_CTR]);
    2451                 :          0 :         wpa_hexdump(MSG_DEBUG, "nl80211: Rekey offload - Replay Counter",
    2452                 :          0 :                     data.driver_gtk_rekey.replay_ctr, NL80211_REPLAY_CTR_LEN);
    2453                 :          0 :         wpa_supplicant_event(drv->ctx, EVENT_DRIVER_GTK_REKEY, &data);
    2454                 :            : }
    2455                 :            : 
    2456                 :            : 
    2457                 :          0 : static void nl80211_pmksa_candidate_event(struct wpa_driver_nl80211_data *drv,
    2458                 :            :                                           struct nlattr **tb)
    2459                 :            : {
    2460                 :            :         struct nlattr *cand[NUM_NL80211_PMKSA_CANDIDATE];
    2461                 :            :         static struct nla_policy cand_policy[NUM_NL80211_PMKSA_CANDIDATE] = {
    2462                 :            :                 [NL80211_PMKSA_CANDIDATE_INDEX] = { .type = NLA_U32 },
    2463                 :            :                 [NL80211_PMKSA_CANDIDATE_BSSID] = {
    2464                 :            :                         .minlen = ETH_ALEN,
    2465                 :            :                         .maxlen = ETH_ALEN,
    2466                 :            :                 },
    2467                 :            :                 [NL80211_PMKSA_CANDIDATE_PREAUTH] = { .type = NLA_FLAG },
    2468                 :            :         };
    2469                 :            :         union wpa_event_data data;
    2470                 :            : 
    2471                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: PMKSA candidate event");
    2472                 :            : 
    2473         [ #  # ]:          0 :         if (!tb[NL80211_ATTR_PMKSA_CANDIDATE])
    2474                 :          0 :                 return;
    2475         [ #  # ]:          0 :         if (nla_parse_nested(cand, MAX_NL80211_PMKSA_CANDIDATE,
    2476                 :          0 :                              tb[NL80211_ATTR_PMKSA_CANDIDATE], cand_policy))
    2477                 :          0 :                 return;
    2478 [ #  # ][ #  # ]:          0 :         if (!cand[NL80211_PMKSA_CANDIDATE_INDEX] ||
    2479                 :          0 :             !cand[NL80211_PMKSA_CANDIDATE_BSSID])
    2480                 :          0 :                 return;
    2481                 :            : 
    2482                 :          0 :         os_memset(&data, 0, sizeof(data));
    2483                 :          0 :         os_memcpy(data.pmkid_candidate.bssid,
    2484                 :            :                   nla_data(cand[NL80211_PMKSA_CANDIDATE_BSSID]), ETH_ALEN);
    2485                 :          0 :         data.pmkid_candidate.index =
    2486                 :          0 :                 nla_get_u32(cand[NL80211_PMKSA_CANDIDATE_INDEX]);
    2487                 :          0 :         data.pmkid_candidate.preauth =
    2488                 :          0 :                 cand[NL80211_PMKSA_CANDIDATE_PREAUTH] != NULL;
    2489                 :          0 :         wpa_supplicant_event(drv->ctx, EVENT_PMKID_CANDIDATE, &data);
    2490                 :            : }
    2491                 :            : 
    2492                 :            : 
    2493                 :          0 : static void nl80211_client_probe_event(struct wpa_driver_nl80211_data *drv,
    2494                 :            :                                        struct nlattr **tb)
    2495                 :            : {
    2496                 :            :         union wpa_event_data data;
    2497                 :            : 
    2498                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Probe client event");
    2499                 :            : 
    2500 [ #  # ][ #  # ]:          0 :         if (!tb[NL80211_ATTR_MAC] || !tb[NL80211_ATTR_ACK])
    2501                 :          0 :                 return;
    2502                 :            : 
    2503                 :          0 :         os_memset(&data, 0, sizeof(data));
    2504                 :          0 :         os_memcpy(data.client_poll.addr,
    2505                 :            :                   nla_data(tb[NL80211_ATTR_MAC]), ETH_ALEN);
    2506                 :            : 
    2507                 :          0 :         wpa_supplicant_event(drv->ctx, EVENT_DRIVER_CLIENT_POLL_OK, &data);
    2508                 :            : }
    2509                 :            : 
    2510                 :            : 
    2511                 :          0 : static void nl80211_tdls_oper_event(struct wpa_driver_nl80211_data *drv,
    2512                 :            :                                     struct nlattr **tb)
    2513                 :            : {
    2514                 :            :         union wpa_event_data data;
    2515                 :            : 
    2516                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: TDLS operation event");
    2517                 :            : 
    2518 [ #  # ][ #  # ]:          0 :         if (!tb[NL80211_ATTR_MAC] || !tb[NL80211_ATTR_TDLS_OPERATION])
    2519                 :          0 :                 return;
    2520                 :            : 
    2521                 :          0 :         os_memset(&data, 0, sizeof(data));
    2522                 :          0 :         os_memcpy(data.tdls.peer, nla_data(tb[NL80211_ATTR_MAC]), ETH_ALEN);
    2523      [ #  #  # ]:          0 :         switch (nla_get_u8(tb[NL80211_ATTR_TDLS_OPERATION])) {
    2524                 :            :         case NL80211_TDLS_SETUP:
    2525                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: TDLS setup request for peer "
    2526                 :          0 :                            MACSTR, MAC2STR(data.tdls.peer));
    2527                 :          0 :                 data.tdls.oper = TDLS_REQUEST_SETUP;
    2528                 :          0 :                 break;
    2529                 :            :         case NL80211_TDLS_TEARDOWN:
    2530                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: TDLS teardown request for peer "
    2531                 :          0 :                            MACSTR, MAC2STR(data.tdls.peer));
    2532                 :          0 :                 data.tdls.oper = TDLS_REQUEST_TEARDOWN;
    2533                 :          0 :                 break;
    2534                 :            :         default:
    2535                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Unsupported TDLS operatione "
    2536                 :            :                            "event");
    2537                 :          0 :                 return;
    2538                 :            :         }
    2539         [ #  # ]:          0 :         if (tb[NL80211_ATTR_REASON_CODE]) {
    2540                 :          0 :                 data.tdls.reason_code =
    2541                 :          0 :                         nla_get_u16(tb[NL80211_ATTR_REASON_CODE]);
    2542                 :            :         }
    2543                 :            : 
    2544                 :          0 :         wpa_supplicant_event(drv->ctx, EVENT_TDLS, &data);
    2545                 :            : }
    2546                 :            : 
    2547                 :            : 
    2548                 :          0 : static void nl80211_stop_ap(struct wpa_driver_nl80211_data *drv,
    2549                 :            :                             struct nlattr **tb)
    2550                 :            : {
    2551                 :          0 :         wpa_supplicant_event(drv->ctx, EVENT_INTERFACE_UNAVAILABLE, NULL);
    2552                 :          0 : }
    2553                 :            : 
    2554                 :            : 
    2555                 :          0 : static void nl80211_connect_failed_event(struct wpa_driver_nl80211_data *drv,
    2556                 :            :                                          struct nlattr **tb)
    2557                 :            : {
    2558                 :            :         union wpa_event_data data;
    2559                 :            :         u32 reason;
    2560                 :            : 
    2561                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Connect failed event");
    2562                 :            : 
    2563 [ #  # ][ #  # ]:          0 :         if (!tb[NL80211_ATTR_MAC] || !tb[NL80211_ATTR_CONN_FAILED_REASON])
    2564                 :          0 :                 return;
    2565                 :            : 
    2566                 :          0 :         os_memset(&data, 0, sizeof(data));
    2567                 :          0 :         os_memcpy(data.connect_failed_reason.addr,
    2568                 :            :                   nla_data(tb[NL80211_ATTR_MAC]), ETH_ALEN);
    2569                 :            : 
    2570                 :          0 :         reason = nla_get_u32(tb[NL80211_ATTR_CONN_FAILED_REASON]);
    2571      [ #  #  # ]:          0 :         switch (reason) {
    2572                 :            :         case NL80211_CONN_FAIL_MAX_CLIENTS:
    2573                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Max client reached");
    2574                 :          0 :                 data.connect_failed_reason.code = MAX_CLIENT_REACHED;
    2575                 :          0 :                 break;
    2576                 :            :         case NL80211_CONN_FAIL_BLOCKED_CLIENT:
    2577                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Blocked client " MACSTR
    2578                 :            :                            " tried to connect",
    2579                 :          0 :                            MAC2STR(data.connect_failed_reason.addr));
    2580                 :          0 :                 data.connect_failed_reason.code = BLOCKED_CLIENT;
    2581                 :          0 :                 break;
    2582                 :            :         default:
    2583                 :          0 :                 wpa_printf(MSG_DEBUG, "nl8021l: Unknown connect failed reason "
    2584                 :            :                            "%u", reason);
    2585                 :          0 :                 return;
    2586                 :            :         }
    2587                 :            : 
    2588                 :          0 :         wpa_supplicant_event(drv->ctx, EVENT_CONNECT_FAILED_REASON, &data);
    2589                 :            : }
    2590                 :            : 
    2591                 :            : 
    2592                 :          0 : static void nl80211_radar_event(struct wpa_driver_nl80211_data *drv,
    2593                 :            :                                 struct nlattr **tb)
    2594                 :            : {
    2595                 :            :         union wpa_event_data data;
    2596                 :            :         enum nl80211_radar_event event_type;
    2597                 :            : 
    2598 [ #  # ][ #  # ]:          0 :         if (!tb[NL80211_ATTR_WIPHY_FREQ] || !tb[NL80211_ATTR_RADAR_EVENT])
    2599                 :          0 :                 return;
    2600                 :            : 
    2601                 :          0 :         os_memset(&data, 0, sizeof(data));
    2602                 :          0 :         data.dfs_event.freq = nla_get_u32(tb[NL80211_ATTR_WIPHY_FREQ]);
    2603                 :          0 :         event_type = nla_get_u32(tb[NL80211_ATTR_RADAR_EVENT]);
    2604                 :            : 
    2605                 :            :         /* Check HT params */
    2606         [ #  # ]:          0 :         if (tb[NL80211_ATTR_WIPHY_CHANNEL_TYPE]) {
    2607                 :          0 :                 data.dfs_event.ht_enabled = 1;
    2608                 :          0 :                 data.dfs_event.chan_offset = 0;
    2609                 :            : 
    2610   [ #  #  #  #  :          0 :                 switch (nla_get_u32(tb[NL80211_ATTR_WIPHY_CHANNEL_TYPE])) {
                      # ]
    2611                 :            :                 case NL80211_CHAN_NO_HT:
    2612                 :          0 :                         data.dfs_event.ht_enabled = 0;
    2613                 :          0 :                         break;
    2614                 :            :                 case NL80211_CHAN_HT20:
    2615                 :          0 :                         break;
    2616                 :            :                 case NL80211_CHAN_HT40PLUS:
    2617                 :          0 :                         data.dfs_event.chan_offset = 1;
    2618                 :          0 :                         break;
    2619                 :            :                 case NL80211_CHAN_HT40MINUS:
    2620                 :          0 :                         data.dfs_event.chan_offset = -1;
    2621                 :          0 :                         break;
    2622                 :            :                 }
    2623                 :            :         }
    2624                 :            : 
    2625                 :            :         /* Get VHT params */
    2626         [ #  # ]:          0 :         if (tb[NL80211_ATTR_CHANNEL_WIDTH])
    2627                 :          0 :                 data.dfs_event.chan_width =
    2628                 :          0 :                         convert2width(nla_get_u32(
    2629                 :          0 :                                               tb[NL80211_ATTR_CHANNEL_WIDTH]));
    2630         [ #  # ]:          0 :         if (tb[NL80211_ATTR_CENTER_FREQ1])
    2631                 :          0 :                 data.dfs_event.cf1 = nla_get_u32(tb[NL80211_ATTR_CENTER_FREQ1]);
    2632         [ #  # ]:          0 :         if (tb[NL80211_ATTR_CENTER_FREQ2])
    2633                 :          0 :                 data.dfs_event.cf2 = nla_get_u32(tb[NL80211_ATTR_CENTER_FREQ2]);
    2634                 :            : 
    2635                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: DFS event on freq %d MHz, ht: %d, offset: %d, width: %d, cf1: %dMHz, cf2: %dMHz",
    2636                 :            :                    data.dfs_event.freq, data.dfs_event.ht_enabled,
    2637                 :          0 :                    data.dfs_event.chan_offset, data.dfs_event.chan_width,
    2638                 :            :                    data.dfs_event.cf1, data.dfs_event.cf2);
    2639                 :            : 
    2640   [ #  #  #  #  :          0 :         switch (event_type) {
                      # ]
    2641                 :            :         case NL80211_RADAR_DETECTED:
    2642                 :          0 :                 wpa_supplicant_event(drv->ctx, EVENT_DFS_RADAR_DETECTED, &data);
    2643                 :          0 :                 break;
    2644                 :            :         case NL80211_RADAR_CAC_FINISHED:
    2645                 :          0 :                 wpa_supplicant_event(drv->ctx, EVENT_DFS_CAC_FINISHED, &data);
    2646                 :          0 :                 break;
    2647                 :            :         case NL80211_RADAR_CAC_ABORTED:
    2648                 :          0 :                 wpa_supplicant_event(drv->ctx, EVENT_DFS_CAC_ABORTED, &data);
    2649                 :          0 :                 break;
    2650                 :            :         case NL80211_RADAR_NOP_FINISHED:
    2651                 :          0 :                 wpa_supplicant_event(drv->ctx, EVENT_DFS_NOP_FINISHED, &data);
    2652                 :          0 :                 break;
    2653                 :            :         default:
    2654                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Unknown radar event %d "
    2655                 :            :                            "received", event_type);
    2656                 :          0 :                 break;
    2657                 :            :         }
    2658                 :            : }
    2659                 :            : 
    2660                 :            : 
    2661                 :          0 : static void nl80211_spurious_frame(struct i802_bss *bss, struct nlattr **tb,
    2662                 :            :                                    int wds)
    2663                 :            : {
    2664                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    2665                 :            :         union wpa_event_data event;
    2666                 :            : 
    2667         [ #  # ]:          0 :         if (!tb[NL80211_ATTR_MAC])
    2668                 :          0 :                 return;
    2669                 :            : 
    2670                 :          0 :         os_memset(&event, 0, sizeof(event));
    2671                 :          0 :         event.rx_from_unknown.bssid = bss->addr;
    2672                 :          0 :         event.rx_from_unknown.addr = nla_data(tb[NL80211_ATTR_MAC]);
    2673                 :          0 :         event.rx_from_unknown.wds = wds;
    2674                 :            : 
    2675                 :          0 :         wpa_supplicant_event(drv->ctx, EVENT_RX_FROM_UNKNOWN, &event);
    2676                 :            : }
    2677                 :            : 
    2678                 :            : 
    2679                 :          0 : static void nl80211_vendor_event(struct wpa_driver_nl80211_data *drv,
    2680                 :            :                                  struct nlattr **tb)
    2681                 :            : {
    2682                 :          0 :         u32 vendor_id, subcmd, wiphy = 0;
    2683                 :            :         int wiphy_idx;
    2684                 :          0 :         u8 *data = NULL;
    2685                 :          0 :         size_t len = 0;
    2686                 :            : 
    2687 [ #  # ][ #  # ]:          0 :         if (!tb[NL80211_ATTR_VENDOR_ID] ||
    2688                 :          0 :             !tb[NL80211_ATTR_VENDOR_SUBCMD])
    2689                 :          0 :                 return;
    2690                 :            : 
    2691                 :          0 :         vendor_id = nla_get_u32(tb[NL80211_ATTR_VENDOR_ID]);
    2692                 :          0 :         subcmd = nla_get_u32(tb[NL80211_ATTR_VENDOR_SUBCMD]);
    2693                 :            : 
    2694         [ #  # ]:          0 :         if (tb[NL80211_ATTR_WIPHY])
    2695                 :          0 :                 wiphy = nla_get_u32(tb[NL80211_ATTR_WIPHY]);
    2696                 :            : 
    2697                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Vendor event: wiphy=%u vendor_id=0x%x subcmd=%u",
    2698                 :            :                    wiphy, vendor_id, subcmd);
    2699                 :            : 
    2700         [ #  # ]:          0 :         if (tb[NL80211_ATTR_VENDOR_DATA]) {
    2701                 :          0 :                 data = nla_data(tb[NL80211_ATTR_VENDOR_DATA]);
    2702                 :          0 :                 len = nla_len(tb[NL80211_ATTR_VENDOR_DATA]);
    2703                 :          0 :                 wpa_hexdump(MSG_MSGDUMP, "nl80211: Vendor data", data, len);
    2704                 :            :         }
    2705                 :            : 
    2706                 :          0 :         wiphy_idx = nl80211_get_wiphy_index(drv->first_bss);
    2707 [ #  # ][ #  # ]:          0 :         if (wiphy_idx >= 0 && wiphy_idx != (int) wiphy) {
    2708                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Ignore vendor event for foreign wiphy %u (own: %d)",
    2709                 :            :                            wiphy, wiphy_idx);
    2710                 :          0 :                 return;
    2711                 :            :         }
    2712                 :            : 
    2713                 :            :         switch (vendor_id) {
    2714                 :            :         default:
    2715                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Ignore unsupported vendor event");
    2716                 :          0 :                 break;
    2717                 :            :         }
    2718                 :            : }
    2719                 :            : 
    2720                 :            : 
    2721                 :       1729 : static void do_process_drv_event(struct i802_bss *bss, int cmd,
    2722                 :            :                                  struct nlattr **tb)
    2723                 :            : {
    2724                 :       1729 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    2725                 :            :         union wpa_event_data data;
    2726                 :            : 
    2727                 :       1729 :         wpa_printf(MSG_DEBUG, "nl80211: Drv Event %d (%s) received for %s",
    2728                 :       1729 :                    cmd, nl80211_command_to_string(cmd), bss->ifname);
    2729                 :            : 
    2730 [ -  + ][ #  # ]:       1729 :         if (drv->ap_scan_as_station != NL80211_IFTYPE_UNSPECIFIED &&
    2731         [ #  # ]:          0 :             (cmd == NL80211_CMD_NEW_SCAN_RESULTS ||
    2732                 :            :              cmd == NL80211_CMD_SCAN_ABORTED)) {
    2733                 :          0 :                 wpa_driver_nl80211_set_mode(drv->first_bss,
    2734                 :            :                                             drv->ap_scan_as_station);
    2735                 :          0 :                 drv->ap_scan_as_station = NL80211_IFTYPE_UNSPECIFIED;
    2736                 :            :         }
    2737                 :            : 
    2738   [ +  -  -  +  :       1729 :         switch (cmd) {
          -  -  +  -  -  
          -  -  -  -  -  
          -  +  -  +  +  
          -  -  -  -  -  
             -  -  -  -  
                      - ]
    2739                 :            :         case NL80211_CMD_TRIGGER_SCAN:
    2740                 :         24 :                 wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: Scan trigger");
    2741                 :         24 :                 drv->scan_state = SCAN_STARTED;
    2742                 :         24 :                 wpa_supplicant_event(drv->ctx, EVENT_SCAN_STARTED, NULL);
    2743                 :         24 :                 break;
    2744                 :            :         case NL80211_CMD_START_SCHED_SCAN:
    2745                 :          0 :                 wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: Sched scan started");
    2746                 :          0 :                 drv->scan_state = SCHED_SCAN_STARTED;
    2747                 :          0 :                 break;
    2748                 :            :         case NL80211_CMD_SCHED_SCAN_STOPPED:
    2749                 :          0 :                 wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: Sched scan stopped");
    2750                 :          0 :                 drv->scan_state = SCHED_SCAN_STOPPED;
    2751                 :          0 :                 wpa_supplicant_event(drv->ctx, EVENT_SCHED_SCAN_STOPPED, NULL);
    2752                 :          0 :                 break;
    2753                 :            :         case NL80211_CMD_NEW_SCAN_RESULTS:
    2754                 :         19 :                 wpa_dbg(drv->ctx, MSG_DEBUG,
    2755                 :            :                         "nl80211: New scan results available");
    2756                 :         19 :                 drv->scan_state = SCAN_COMPLETED;
    2757                 :         19 :                 drv->scan_complete_events = 1;
    2758                 :         19 :                 eloop_cancel_timeout(wpa_driver_nl80211_scan_timeout, drv,
    2759                 :            :                                      drv->ctx);
    2760                 :         19 :                 send_scan_event(drv, 0, tb);
    2761                 :         19 :                 break;
    2762                 :            :         case NL80211_CMD_SCHED_SCAN_RESULTS:
    2763                 :          0 :                 wpa_dbg(drv->ctx, MSG_DEBUG,
    2764                 :            :                         "nl80211: New sched scan results available");
    2765                 :          0 :                 drv->scan_state = SCHED_SCAN_RESULTS;
    2766                 :          0 :                 send_scan_event(drv, 0, tb);
    2767                 :          0 :                 break;
    2768                 :            :         case NL80211_CMD_SCAN_ABORTED:
    2769                 :          0 :                 wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: Scan aborted");
    2770                 :          0 :                 drv->scan_state = SCAN_ABORTED;
    2771                 :            :                 /*
    2772                 :            :                  * Need to indicate that scan results are available in order
    2773                 :            :                  * not to make wpa_supplicant stop its scanning.
    2774                 :            :                  */
    2775                 :          0 :                 eloop_cancel_timeout(wpa_driver_nl80211_scan_timeout, drv,
    2776                 :            :                                      drv->ctx);
    2777                 :          0 :                 send_scan_event(drv, 1, tb);
    2778                 :          0 :                 break;
    2779                 :            :         case NL80211_CMD_AUTHENTICATE:
    2780                 :            :         case NL80211_CMD_ASSOCIATE:
    2781                 :            :         case NL80211_CMD_DEAUTHENTICATE:
    2782                 :            :         case NL80211_CMD_DISASSOCIATE:
    2783                 :            :         case NL80211_CMD_FRAME_TX_STATUS:
    2784                 :            :         case NL80211_CMD_UNPROT_DEAUTHENTICATE:
    2785                 :            :         case NL80211_CMD_UNPROT_DISASSOCIATE:
    2786                 :        820 :                 mlme_event(bss, cmd, tb[NL80211_ATTR_FRAME],
    2787                 :       1640 :                            tb[NL80211_ATTR_MAC], tb[NL80211_ATTR_TIMED_OUT],
    2788                 :       1640 :                            tb[NL80211_ATTR_WIPHY_FREQ], tb[NL80211_ATTR_ACK],
    2789                 :        820 :                            tb[NL80211_ATTR_COOKIE],
    2790                 :        820 :                            tb[NL80211_ATTR_RX_SIGNAL_DBM]);
    2791                 :        820 :                 break;
    2792                 :            :         case NL80211_CMD_CONNECT:
    2793                 :            :         case NL80211_CMD_ROAM:
    2794                 :          0 :                 mlme_event_connect(drv, cmd,
    2795                 :          0 :                                    tb[NL80211_ATTR_STATUS_CODE],
    2796                 :          0 :                                    tb[NL80211_ATTR_MAC],
    2797                 :          0 :                                    tb[NL80211_ATTR_REQ_IE],
    2798                 :          0 :                                    tb[NL80211_ATTR_RESP_IE]);
    2799                 :          0 :                 break;
    2800                 :            :         case NL80211_CMD_CH_SWITCH_NOTIFY:
    2801                 :          0 :                 mlme_event_ch_switch(drv,
    2802                 :          0 :                                      tb[NL80211_ATTR_IFINDEX],
    2803                 :          0 :                                      tb[NL80211_ATTR_WIPHY_FREQ],
    2804                 :          0 :                                      tb[NL80211_ATTR_WIPHY_CHANNEL_TYPE],
    2805                 :          0 :                                      tb[NL80211_ATTR_CHANNEL_WIDTH],
    2806                 :          0 :                                      tb[NL80211_ATTR_CENTER_FREQ1],
    2807                 :          0 :                                      tb[NL80211_ATTR_CENTER_FREQ2]);
    2808                 :          0 :                 break;
    2809                 :            :         case NL80211_CMD_DISCONNECT:
    2810                 :          0 :                 mlme_event_disconnect(drv, tb[NL80211_ATTR_REASON_CODE],
    2811                 :          0 :                                       tb[NL80211_ATTR_MAC],
    2812                 :          0 :                                       tb[NL80211_ATTR_DISCONNECTED_BY_AP]);
    2813                 :          0 :                 break;
    2814                 :            :         case NL80211_CMD_MICHAEL_MIC_FAILURE:
    2815                 :          0 :                 mlme_event_michael_mic_failure(bss, tb);
    2816                 :          0 :                 break;
    2817                 :            :         case NL80211_CMD_JOIN_IBSS:
    2818                 :          0 :                 mlme_event_join_ibss(drv, tb);
    2819                 :          0 :                 break;
    2820                 :            :         case NL80211_CMD_REMAIN_ON_CHANNEL:
    2821                 :          0 :                 mlme_event_remain_on_channel(drv, 0, tb);
    2822                 :          0 :                 break;
    2823                 :            :         case NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL:
    2824                 :          0 :                 mlme_event_remain_on_channel(drv, 1, tb);
    2825                 :          0 :                 break;
    2826                 :            :         case NL80211_CMD_NOTIFY_CQM:
    2827                 :          0 :                 nl80211_cqm_event(drv, tb);
    2828                 :          0 :                 break;
    2829                 :            :         case NL80211_CMD_REG_CHANGE:
    2830                 :        254 :                 wpa_printf(MSG_DEBUG, "nl80211: Regulatory domain change");
    2831         [ -  + ]:        254 :                 if (tb[NL80211_ATTR_REG_INITIATOR] == NULL)
    2832                 :          0 :                         break;
    2833                 :        254 :                 os_memset(&data, 0, sizeof(data));
    2834   [ +  -  -  -  :        254 :                 switch (nla_get_u8(tb[NL80211_ATTR_REG_INITIATOR])) {
                      - ]
    2835                 :            :                 case NL80211_REGDOM_SET_BY_CORE:
    2836                 :        254 :                         data.channel_list_changed.initiator =
    2837                 :            :                                 REGDOM_SET_BY_CORE;
    2838                 :        254 :                         break;
    2839                 :            :                 case NL80211_REGDOM_SET_BY_USER:
    2840                 :          0 :                         data.channel_list_changed.initiator =
    2841                 :            :                                 REGDOM_SET_BY_USER;
    2842                 :          0 :                         break;
    2843                 :            :                 case NL80211_REGDOM_SET_BY_DRIVER:
    2844                 :          0 :                         data.channel_list_changed.initiator =
    2845                 :            :                                 REGDOM_SET_BY_DRIVER;
    2846                 :          0 :                         break;
    2847                 :            :                 case NL80211_REGDOM_SET_BY_COUNTRY_IE:
    2848                 :          0 :                         data.channel_list_changed.initiator =
    2849                 :            :                                 REGDOM_SET_BY_COUNTRY_IE;
    2850                 :          0 :                         break;
    2851                 :            :                 default:
    2852                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Unknown reg change initiator %d received",
    2853                 :          0 :                                    nla_get_u8(tb[NL80211_ATTR_REG_INITIATOR]));
    2854                 :          0 :                         break;
    2855                 :            :                 }
    2856                 :        254 :                 wpa_supplicant_event(drv->ctx, EVENT_CHANNEL_LIST_CHANGED,
    2857                 :            :                                      &data);
    2858                 :        254 :                 break;
    2859                 :            :         case NL80211_CMD_REG_BEACON_HINT:
    2860                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Regulatory beacon hint");
    2861                 :          0 :                 wpa_supplicant_event(drv->ctx, EVENT_CHANNEL_LIST_CHANGED,
    2862                 :            :                                      NULL);
    2863                 :          0 :                 break;
    2864                 :            :         case NL80211_CMD_NEW_STATION:
    2865                 :        313 :                 nl80211_new_station_event(drv, tb);
    2866                 :        313 :                 break;
    2867                 :            :         case NL80211_CMD_DEL_STATION:
    2868                 :        299 :                 nl80211_del_station_event(drv, tb);
    2869                 :        299 :                 break;
    2870                 :            :         case NL80211_CMD_SET_REKEY_OFFLOAD:
    2871                 :          0 :                 nl80211_rekey_offload_event(drv, tb);
    2872                 :          0 :                 break;
    2873                 :            :         case NL80211_CMD_PMKSA_CANDIDATE:
    2874                 :          0 :                 nl80211_pmksa_candidate_event(drv, tb);
    2875                 :          0 :                 break;
    2876                 :            :         case NL80211_CMD_PROBE_CLIENT:
    2877                 :          0 :                 nl80211_client_probe_event(drv, tb);
    2878                 :          0 :                 break;
    2879                 :            :         case NL80211_CMD_TDLS_OPER:
    2880                 :          0 :                 nl80211_tdls_oper_event(drv, tb);
    2881                 :          0 :                 break;
    2882                 :            :         case NL80211_CMD_CONN_FAILED:
    2883                 :          0 :                 nl80211_connect_failed_event(drv, tb);
    2884                 :          0 :                 break;
    2885                 :            :         case NL80211_CMD_FT_EVENT:
    2886                 :          0 :                 mlme_event_ft_event(drv, tb);
    2887                 :          0 :                 break;
    2888                 :            :         case NL80211_CMD_RADAR_DETECT:
    2889                 :          0 :                 nl80211_radar_event(drv, tb);
    2890                 :          0 :                 break;
    2891                 :            :         case NL80211_CMD_STOP_AP:
    2892                 :          0 :                 nl80211_stop_ap(drv, tb);
    2893                 :          0 :                 break;
    2894                 :            :         case NL80211_CMD_VENDOR:
    2895                 :          0 :                 nl80211_vendor_event(drv, tb);
    2896                 :          0 :                 break;
    2897                 :            :         default:
    2898                 :          0 :                 wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: Ignored unknown event "
    2899                 :            :                         "(cmd=%d)", cmd);
    2900                 :          0 :                 break;
    2901                 :            :         }
    2902                 :       1729 : }
    2903                 :            : 
    2904                 :            : 
    2905                 :          0 : static int process_drv_event(struct nl_msg *msg, void *arg)
    2906                 :            : {
    2907                 :          0 :         struct wpa_driver_nl80211_data *drv = arg;
    2908                 :          0 :         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
    2909                 :            :         struct nlattr *tb[NL80211_ATTR_MAX + 1];
    2910                 :            :         struct i802_bss *bss;
    2911                 :          0 :         int ifidx = -1;
    2912                 :            : 
    2913                 :          0 :         nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
    2914                 :            :                   genlmsg_attrlen(gnlh, 0), NULL);
    2915                 :            : 
    2916         [ #  # ]:          0 :         if (tb[NL80211_ATTR_IFINDEX]) {
    2917                 :          0 :                 ifidx = nla_get_u32(tb[NL80211_ATTR_IFINDEX]);
    2918                 :            : 
    2919         [ #  # ]:          0 :                 for (bss = drv->first_bss; bss; bss = bss->next)
    2920 [ #  # ][ #  # ]:          0 :                         if (ifidx == -1 || ifidx == bss->ifindex) {
    2921                 :          0 :                                 do_process_drv_event(bss, gnlh->cmd, tb);
    2922                 :          0 :                                 return NL_SKIP;
    2923                 :            :                         }
    2924                 :          0 :                 wpa_printf(MSG_DEBUG,
    2925                 :            :                            "nl80211: Ignored event (cmd=%d) for foreign interface (ifindex %d)",
    2926                 :          0 :                            gnlh->cmd, ifidx);
    2927         [ #  # ]:          0 :         } else if (tb[NL80211_ATTR_WDEV]) {
    2928                 :          0 :                 u64 wdev_id = nla_get_u64(tb[NL80211_ATTR_WDEV]);
    2929                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Process event on P2P device");
    2930         [ #  # ]:          0 :                 for (bss = drv->first_bss; bss; bss = bss->next) {
    2931 [ #  # ][ #  # ]:          0 :                         if (bss->wdev_id_set && wdev_id == bss->wdev_id) {
    2932                 :          0 :                                 do_process_drv_event(bss, gnlh->cmd, tb);
    2933                 :          0 :                                 return NL_SKIP;
    2934                 :            :                         }
    2935                 :            :                 }
    2936                 :          0 :                 wpa_printf(MSG_DEBUG,
    2937                 :            :                            "nl80211: Ignored event (cmd=%d) for foreign interface (wdev 0x%llx)",
    2938                 :          0 :                            gnlh->cmd, (long long unsigned int) wdev_id);
    2939                 :            :         }
    2940                 :            : 
    2941                 :          0 :         return NL_SKIP;
    2942                 :            : }
    2943                 :            : 
    2944                 :            : 
    2945                 :       9215 : static int process_global_event(struct nl_msg *msg, void *arg)
    2946                 :            : {
    2947                 :       9215 :         struct nl80211_global *global = arg;
    2948                 :       9215 :         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
    2949                 :            :         struct nlattr *tb[NL80211_ATTR_MAX + 1];
    2950                 :            :         struct wpa_driver_nl80211_data *drv, *tmp;
    2951                 :       9215 :         int ifidx = -1;
    2952                 :            :         struct i802_bss *bss;
    2953                 :       9215 :         u64 wdev_id = 0;
    2954                 :       9215 :         int wdev_id_set = 0;
    2955                 :            : 
    2956                 :       9215 :         nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
    2957                 :            :                   genlmsg_attrlen(gnlh, 0), NULL);
    2958                 :            : 
    2959         [ +  + ]:       9215 :         if (tb[NL80211_ATTR_IFINDEX])
    2960                 :       8863 :                 ifidx = nla_get_u32(tb[NL80211_ATTR_IFINDEX]);
    2961         [ -  + ]:        352 :         else if (tb[NL80211_ATTR_WDEV]) {
    2962                 :          0 :                 wdev_id = nla_get_u64(tb[NL80211_ATTR_WDEV]);
    2963                 :          0 :                 wdev_id_set = 1;
    2964                 :            :         }
    2965                 :            : 
    2966         [ +  + ]:      13356 :         dl_list_for_each_safe(drv, tmp, &global->interfaces,
    2967                 :            :                               struct wpa_driver_nl80211_data, list) {
    2968         [ +  + ]:      10835 :                 for (bss = drv->first_bss; bss; bss = bss->next) {
    2969 [ +  + ][ -  + ]:       6694 :                         if ((ifidx == -1 && !wdev_id_set) ||
                 [ +  + ]
    2970         [ -  + ]:       4965 :                             ifidx == bss->ifindex ||
    2971 [ #  # ][ #  # ]:          0 :                             (wdev_id_set && bss->wdev_id_set &&
    2972                 :          0 :                              wdev_id == bss->wdev_id)) {
    2973                 :       1729 :                                 do_process_drv_event(bss, gnlh->cmd, tb);
    2974                 :       1729 :                                 return NL_SKIP;
    2975                 :            :                         }
    2976                 :            :                 }
    2977                 :            :         }
    2978                 :            : 
    2979                 :       9215 :         return NL_SKIP;
    2980                 :            : }
    2981                 :            : 
    2982                 :            : 
    2983                 :       1576 : static int process_bss_event(struct nl_msg *msg, void *arg)
    2984                 :            : {
    2985                 :       1576 :         struct i802_bss *bss = arg;
    2986                 :       1576 :         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
    2987                 :            :         struct nlattr *tb[NL80211_ATTR_MAX + 1];
    2988                 :            : 
    2989                 :       1576 :         nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
    2990                 :            :                   genlmsg_attrlen(gnlh, 0), NULL);
    2991                 :            : 
    2992                 :       1576 :         wpa_printf(MSG_DEBUG, "nl80211: BSS Event %d (%s) received for %s",
    2993                 :       3152 :                    gnlh->cmd, nl80211_command_to_string(gnlh->cmd),
    2994                 :       1576 :                    bss->ifname);
    2995                 :            : 
    2996   [ +  -  -  - ]:       1576 :         switch (gnlh->cmd) {
    2997                 :            :         case NL80211_CMD_FRAME:
    2998                 :            :         case NL80211_CMD_FRAME_TX_STATUS:
    2999                 :       1576 :                 mlme_event(bss, gnlh->cmd, tb[NL80211_ATTR_FRAME],
    3000                 :            :                            tb[NL80211_ATTR_MAC], tb[NL80211_ATTR_TIMED_OUT],
    3001                 :            :                            tb[NL80211_ATTR_WIPHY_FREQ], tb[NL80211_ATTR_ACK],
    3002                 :            :                            tb[NL80211_ATTR_COOKIE],
    3003                 :            :                            tb[NL80211_ATTR_RX_SIGNAL_DBM]);
    3004                 :       1576 :                 break;
    3005                 :            :         case NL80211_CMD_UNEXPECTED_FRAME:
    3006                 :          0 :                 nl80211_spurious_frame(bss, tb, 0);
    3007                 :          0 :                 break;
    3008                 :            :         case NL80211_CMD_UNEXPECTED_4ADDR_FRAME:
    3009                 :          0 :                 nl80211_spurious_frame(bss, tb, 1);
    3010                 :          0 :                 break;
    3011                 :            :         default:
    3012                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Ignored unknown event "
    3013                 :          0 :                            "(cmd=%d)", gnlh->cmd);
    3014                 :          0 :                 break;
    3015                 :            :         }
    3016                 :            : 
    3017                 :       1576 :         return NL_SKIP;
    3018                 :            : }
    3019                 :            : 
    3020                 :            : 
    3021                 :      10774 : static void wpa_driver_nl80211_event_receive(int sock, void *eloop_ctx,
    3022                 :            :                                              void *handle)
    3023                 :            : {
    3024                 :      10774 :         struct nl_cb *cb = eloop_ctx;
    3025                 :            :         int res;
    3026                 :            : 
    3027                 :      10774 :         wpa_printf(MSG_MSGDUMP, "nl80211: Event message available");
    3028                 :            : 
    3029                 :      10774 :         res = nl_recvmsgs(handle, cb);
    3030         [ -  + ]:      10774 :         if (res) {
    3031                 :          0 :                 wpa_printf(MSG_INFO, "nl80211: %s->nl_recvmsgs failed: %d",
    3032                 :            :                            __func__, res);
    3033                 :            :         }
    3034                 :      10774 : }
    3035                 :            : 
    3036                 :            : 
    3037                 :            : /**
    3038                 :            :  * wpa_driver_nl80211_set_country - ask nl80211 to set the regulatory domain
    3039                 :            :  * @priv: driver_nl80211 private data
    3040                 :            :  * @alpha2_arg: country to which to switch to
    3041                 :            :  * Returns: 0 on success, -1 on failure
    3042                 :            :  *
    3043                 :            :  * This asks nl80211 to set the regulatory domain for given
    3044                 :            :  * country ISO / IEC alpha2.
    3045                 :            :  */
    3046                 :          0 : static int wpa_driver_nl80211_set_country(void *priv, const char *alpha2_arg)
    3047                 :            : {
    3048                 :          0 :         struct i802_bss *bss = priv;
    3049                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    3050                 :            :         char alpha2[3];
    3051                 :            :         struct nl_msg *msg;
    3052                 :            : 
    3053                 :          0 :         msg = nlmsg_alloc();
    3054         [ #  # ]:          0 :         if (!msg)
    3055                 :          0 :                 return -ENOMEM;
    3056                 :            : 
    3057                 :          0 :         alpha2[0] = alpha2_arg[0];
    3058                 :          0 :         alpha2[1] = alpha2_arg[1];
    3059                 :          0 :         alpha2[2] = '\0';
    3060                 :            : 
    3061                 :          0 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_REQ_SET_REG);
    3062                 :            : 
    3063         [ #  # ]:          0 :         NLA_PUT_STRING(msg, NL80211_ATTR_REG_ALPHA2, alpha2);
    3064         [ #  # ]:          0 :         if (send_and_recv_msgs(drv, msg, NULL, NULL))
    3065                 :          0 :                 return -EINVAL;
    3066                 :          0 :         return 0;
    3067                 :            : nla_put_failure:
    3068                 :          0 :         nlmsg_free(msg);
    3069                 :          0 :         return -EINVAL;
    3070                 :            : }
    3071                 :            : 
    3072                 :            : 
    3073                 :          0 : static int nl80211_get_country(struct nl_msg *msg, void *arg)
    3074                 :            : {
    3075                 :          0 :         char *alpha2 = arg;
    3076                 :            :         struct nlattr *tb_msg[NL80211_ATTR_MAX + 1];
    3077                 :          0 :         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
    3078                 :            : 
    3079                 :          0 :         nla_parse(tb_msg, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
    3080                 :            :                   genlmsg_attrlen(gnlh, 0), NULL);
    3081         [ #  # ]:          0 :         if (!tb_msg[NL80211_ATTR_REG_ALPHA2]) {
    3082                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: No country information available");
    3083                 :          0 :                 return NL_SKIP;
    3084                 :            :         }
    3085                 :          0 :         os_strlcpy(alpha2, nla_data(tb_msg[NL80211_ATTR_REG_ALPHA2]), 3);
    3086                 :          0 :         return NL_SKIP;
    3087                 :            : }
    3088                 :            : 
    3089                 :            : 
    3090                 :          0 : static int wpa_driver_nl80211_get_country(void *priv, char *alpha2)
    3091                 :            : {
    3092                 :          0 :         struct i802_bss *bss = priv;
    3093                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    3094                 :            :         struct nl_msg *msg;
    3095                 :            :         int ret;
    3096                 :            : 
    3097                 :          0 :         msg = nlmsg_alloc();
    3098         [ #  # ]:          0 :         if (!msg)
    3099                 :          0 :                 return -ENOMEM;
    3100                 :            : 
    3101                 :          0 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_REG);
    3102                 :          0 :         alpha2[0] = '\0';
    3103                 :          0 :         ret = send_and_recv_msgs(drv, msg, nl80211_get_country, alpha2);
    3104         [ #  # ]:          0 :         if (!alpha2[0])
    3105                 :          0 :                 ret = -1;
    3106                 :            : 
    3107                 :          0 :         return ret;
    3108                 :            : }
    3109                 :            : 
    3110                 :            : 
    3111                 :        406 : static int protocol_feature_handler(struct nl_msg *msg, void *arg)
    3112                 :            : {
    3113                 :        406 :         u32 *feat = arg;
    3114                 :            :         struct nlattr *tb_msg[NL80211_ATTR_MAX + 1];
    3115                 :        406 :         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
    3116                 :            : 
    3117                 :        406 :         nla_parse(tb_msg, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
    3118                 :            :                   genlmsg_attrlen(gnlh, 0), NULL);
    3119                 :            : 
    3120         [ +  - ]:        406 :         if (tb_msg[NL80211_ATTR_PROTOCOL_FEATURES])
    3121                 :        406 :                 *feat = nla_get_u32(tb_msg[NL80211_ATTR_PROTOCOL_FEATURES]);
    3122                 :            : 
    3123                 :        406 :         return NL_SKIP;
    3124                 :            : }
    3125                 :            : 
    3126                 :            : 
    3127                 :        406 : static u32 get_nl80211_protocol_features(struct wpa_driver_nl80211_data *drv)
    3128                 :            : {
    3129                 :        406 :         u32 feat = 0;
    3130                 :            :         struct nl_msg *msg;
    3131                 :            : 
    3132                 :        406 :         msg = nlmsg_alloc();
    3133         [ -  + ]:        406 :         if (!msg)
    3134                 :          0 :                 goto nla_put_failure;
    3135                 :            : 
    3136                 :        406 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_PROTOCOL_FEATURES);
    3137         [ +  - ]:        406 :         if (send_and_recv_msgs(drv, msg, protocol_feature_handler, &feat) == 0)
    3138                 :        406 :                 return feat;
    3139                 :            : 
    3140                 :          0 :         msg = NULL;
    3141                 :            : nla_put_failure:
    3142                 :          0 :         nlmsg_free(msg);
    3143                 :        406 :         return 0;
    3144                 :            : }
    3145                 :            : 
    3146                 :            : 
    3147                 :            : struct wiphy_info_data {
    3148                 :            :         struct wpa_driver_nl80211_data *drv;
    3149                 :            :         struct wpa_driver_capa *capa;
    3150                 :            : 
    3151                 :            :         unsigned int num_multichan_concurrent;
    3152                 :            : 
    3153                 :            :         unsigned int error:1;
    3154                 :            :         unsigned int device_ap_sme:1;
    3155                 :            :         unsigned int poll_command_supported:1;
    3156                 :            :         unsigned int data_tx_status:1;
    3157                 :            :         unsigned int monitor_supported:1;
    3158                 :            :         unsigned int auth_supported:1;
    3159                 :            :         unsigned int connect_supported:1;
    3160                 :            :         unsigned int p2p_go_supported:1;
    3161                 :            :         unsigned int p2p_client_supported:1;
    3162                 :            :         unsigned int p2p_concurrent:1;
    3163                 :            :         unsigned int channel_switch_supported:1;
    3164                 :            :         unsigned int set_qos_map_supported:1;
    3165                 :            : };
    3166                 :            : 
    3167                 :            : 
    3168                 :          0 : static unsigned int probe_resp_offload_support(int supp_protocols)
    3169                 :            : {
    3170                 :          0 :         unsigned int prot = 0;
    3171                 :            : 
    3172         [ #  # ]:          0 :         if (supp_protocols & NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS)
    3173                 :          0 :                 prot |= WPA_DRIVER_PROBE_RESP_OFFLOAD_WPS;
    3174         [ #  # ]:          0 :         if (supp_protocols & NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS2)
    3175                 :          0 :                 prot |= WPA_DRIVER_PROBE_RESP_OFFLOAD_WPS2;
    3176         [ #  # ]:          0 :         if (supp_protocols & NL80211_PROBE_RESP_OFFLOAD_SUPPORT_P2P)
    3177                 :          0 :                 prot |= WPA_DRIVER_PROBE_RESP_OFFLOAD_P2P;
    3178         [ #  # ]:          0 :         if (supp_protocols & NL80211_PROBE_RESP_OFFLOAD_SUPPORT_80211U)
    3179                 :          0 :                 prot |= WPA_DRIVER_PROBE_RESP_OFFLOAD_INTERWORKING;
    3180                 :            : 
    3181                 :          0 :         return prot;
    3182                 :            : }
    3183                 :            : 
    3184                 :            : 
    3185                 :      10759 : static void wiphy_info_supported_iftypes(struct wiphy_info_data *info,
    3186                 :            :                                          struct nlattr *tb)
    3187                 :            : {
    3188                 :            :         struct nlattr *nl_mode;
    3189                 :            :         int i;
    3190                 :            : 
    3191         [ +  + ]:      10759 :         if (tb == NULL)
    3192                 :      10759 :                 return;
    3193                 :            : 
    3194         [ +  + ]:       1827 :         nla_for_each_nested(nl_mode, tb, i) {
    3195   [ +  +  +  +  :       1624 :                 switch (nla_type(nl_mode)) {
                +  +  + ]
    3196                 :            :                 case NL80211_IFTYPE_AP:
    3197                 :        203 :                         info->capa->flags |= WPA_DRIVER_FLAGS_AP;
    3198                 :        203 :                         break;
    3199                 :            :                 case NL80211_IFTYPE_ADHOC:
    3200                 :        203 :                         info->capa->flags |= WPA_DRIVER_FLAGS_IBSS;
    3201                 :        203 :                         break;
    3202                 :            :                 case NL80211_IFTYPE_P2P_DEVICE:
    3203                 :        203 :                         info->capa->flags |=
    3204                 :            :                                 WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE;
    3205                 :        203 :                         break;
    3206                 :            :                 case NL80211_IFTYPE_P2P_GO:
    3207                 :        203 :                         info->p2p_go_supported = 1;
    3208                 :        203 :                         break;
    3209                 :            :                 case NL80211_IFTYPE_P2P_CLIENT:
    3210                 :        203 :                         info->p2p_client_supported = 1;
    3211                 :        203 :                         break;
    3212                 :            :                 case NL80211_IFTYPE_MONITOR:
    3213                 :        203 :                         info->monitor_supported = 1;
    3214                 :        203 :                         break;
    3215                 :            :                 }
    3216                 :            :         }
    3217                 :            : }
    3218                 :            : 
    3219                 :            : 
    3220                 :        203 : static int wiphy_info_iface_comb_process(struct wiphy_info_data *info,
    3221                 :            :                                          struct nlattr *nl_combi)
    3222                 :            : {
    3223                 :            :         struct nlattr *tb_comb[NUM_NL80211_IFACE_COMB];
    3224                 :            :         struct nlattr *tb_limit[NUM_NL80211_IFACE_LIMIT];
    3225                 :            :         struct nlattr *nl_limit, *nl_mode;
    3226                 :            :         int err, rem_limit, rem_mode;
    3227                 :        203 :         int combination_has_p2p = 0, combination_has_mgd = 0;
    3228                 :            :         static struct nla_policy
    3229                 :            :         iface_combination_policy[NUM_NL80211_IFACE_COMB] = {
    3230                 :            :                 [NL80211_IFACE_COMB_LIMITS] = { .type = NLA_NESTED },
    3231                 :            :                 [NL80211_IFACE_COMB_MAXNUM] = { .type = NLA_U32 },
    3232                 :            :                 [NL80211_IFACE_COMB_STA_AP_BI_MATCH] = { .type = NLA_FLAG },
    3233                 :            :                 [NL80211_IFACE_COMB_NUM_CHANNELS] = { .type = NLA_U32 },
    3234                 :            :                 [NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS] = { .type = NLA_U32 },
    3235                 :            :         },
    3236                 :            :         iface_limit_policy[NUM_NL80211_IFACE_LIMIT] = {
    3237                 :            :                 [NL80211_IFACE_LIMIT_TYPES] = { .type = NLA_NESTED },
    3238                 :            :                 [NL80211_IFACE_LIMIT_MAX] = { .type = NLA_U32 },
    3239                 :            :         };
    3240                 :            : 
    3241                 :        203 :         err = nla_parse_nested(tb_comb, MAX_NL80211_IFACE_COMB,
    3242                 :            :                                nl_combi, iface_combination_policy);
    3243 [ +  - ][ +  - ]:        203 :         if (err || !tb_comb[NL80211_IFACE_COMB_LIMITS] ||
                 [ +  - ]
    3244         [ -  + ]:        203 :             !tb_comb[NL80211_IFACE_COMB_MAXNUM] ||
    3245                 :        203 :             !tb_comb[NL80211_IFACE_COMB_NUM_CHANNELS])
    3246                 :          0 :                 return 0; /* broken combination */
    3247                 :            : 
    3248         [ +  - ]:        203 :         if (tb_comb[NL80211_IFACE_COMB_RADAR_DETECT_WIDTHS])
    3249                 :        203 :                 info->capa->flags |= WPA_DRIVER_FLAGS_RADAR;
    3250                 :            : 
    3251         [ +  - ]:        406 :         nla_for_each_nested(nl_limit, tb_comb[NL80211_IFACE_COMB_LIMITS],
    3252                 :            :                             rem_limit) {
    3253                 :        406 :                 err = nla_parse_nested(tb_limit, MAX_NL80211_IFACE_LIMIT,
    3254                 :            :                                        nl_limit, iface_limit_policy);
    3255 [ +  - ][ -  + ]:        406 :                 if (err || !tb_limit[NL80211_IFACE_LIMIT_TYPES])
    3256                 :          0 :                         return 0; /* broken combination */
    3257                 :            : 
    3258         [ +  + ]:       1421 :                 nla_for_each_nested(nl_mode,
    3259                 :            :                                     tb_limit[NL80211_IFACE_LIMIT_TYPES],
    3260                 :            :                                     rem_mode) {
    3261                 :       1015 :                         int ift = nla_type(nl_mode);
    3262 [ +  + ][ +  + ]:       1015 :                         if (ift == NL80211_IFTYPE_P2P_GO ||
    3263                 :            :                             ift == NL80211_IFTYPE_P2P_CLIENT)
    3264                 :        406 :                                 combination_has_p2p = 1;
    3265         [ +  + ]:       1015 :                         if (ift == NL80211_IFTYPE_STATION)
    3266                 :        203 :                                 combination_has_mgd = 1;
    3267                 :            :                 }
    3268 [ +  + ][ +  - ]:        406 :                 if (combination_has_p2p && combination_has_mgd)
    3269                 :        203 :                         break;
    3270                 :            :         }
    3271                 :            : 
    3272 [ +  - ][ +  - ]:        203 :         if (combination_has_p2p && combination_has_mgd) {
    3273                 :        203 :                 info->p2p_concurrent = 1;
    3274                 :        203 :                 info->num_multichan_concurrent =
    3275                 :        203 :                         nla_get_u32(tb_comb[NL80211_IFACE_COMB_NUM_CHANNELS]);
    3276                 :        203 :                 return 1;
    3277                 :            :         }
    3278                 :            : 
    3279                 :        203 :         return 0;
    3280                 :            : }
    3281                 :            : 
    3282                 :            : 
    3283                 :      10759 : static void wiphy_info_iface_comb(struct wiphy_info_data *info,
    3284                 :            :                                   struct nlattr *tb)
    3285                 :            : {
    3286                 :            :         struct nlattr *nl_combi;
    3287                 :            :         int rem_combi;
    3288                 :            : 
    3289         [ +  + ]:      10759 :         if (tb == NULL)
    3290                 :      10759 :                 return;
    3291                 :            : 
    3292         [ +  - ]:        203 :         nla_for_each_nested(nl_combi, tb, rem_combi) {
    3293         [ +  - ]:        203 :                 if (wiphy_info_iface_comb_process(info, nl_combi) > 0)
    3294                 :        203 :                         break;
    3295                 :            :         }
    3296                 :            : }
    3297                 :            : 
    3298                 :            : 
    3299                 :      10759 : static void wiphy_info_supp_cmds(struct wiphy_info_data *info,
    3300                 :            :                                  struct nlattr *tb)
    3301                 :            : {
    3302                 :            :         struct nlattr *nl_cmd;
    3303                 :            :         int i;
    3304                 :            : 
    3305         [ +  + ]:      10759 :         if (tb == NULL)
    3306                 :      10759 :                 return;
    3307                 :            : 
    3308         [ +  + ]:       5887 :         nla_for_each_nested(nl_cmd, tb, i) {
    3309   [ +  +  -  +  :       5684 :                 switch (nla_get_u32(nl_cmd)) {
                -  +  + ]
    3310                 :            :                 case NL80211_CMD_AUTHENTICATE:
    3311                 :        203 :                         info->auth_supported = 1;
    3312                 :        203 :                         break;
    3313                 :            :                 case NL80211_CMD_CONNECT:
    3314                 :        203 :                         info->connect_supported = 1;
    3315                 :        203 :                         break;
    3316                 :            :                 case NL80211_CMD_START_SCHED_SCAN:
    3317                 :          0 :                         info->capa->sched_scan_supported = 1;
    3318                 :          0 :                         break;
    3319                 :            :                 case NL80211_CMD_PROBE_CLIENT:
    3320                 :        203 :                         info->poll_command_supported = 1;
    3321                 :        203 :                         break;
    3322                 :            :                 case NL80211_CMD_CHANNEL_SWITCH:
    3323                 :          0 :                         info->channel_switch_supported = 1;
    3324                 :          0 :                         break;
    3325                 :            :                 case NL80211_CMD_SET_QOS_MAP:
    3326                 :        203 :                         info->set_qos_map_supported = 1;
    3327                 :        203 :                         break;
    3328                 :            :                 }
    3329                 :            :         }
    3330                 :            : }
    3331                 :            : 
    3332                 :            : 
    3333                 :      10759 : static void wiphy_info_cipher_suites(struct wiphy_info_data *info,
    3334                 :            :                                      struct nlattr *tb)
    3335                 :            : {
    3336                 :            :         int i, num;
    3337                 :            :         u32 *ciphers;
    3338                 :            : 
    3339         [ +  + ]:      10759 :         if (tb == NULL)
    3340                 :      10759 :                 return;
    3341                 :            : 
    3342                 :        203 :         num = nla_len(tb) / sizeof(u32);
    3343                 :        203 :         ciphers = nla_data(tb);
    3344         [ +  + ]:       1218 :         for (i = 0; i < num; i++) {
    3345                 :       1015 :                 u32 c = ciphers[i];
    3346                 :            : 
    3347                 :       1015 :                 wpa_printf(MSG_DEBUG, "nl80211: Supported cipher %02x-%02x-%02x:%d",
    3348                 :       1015 :                            c >> 24, (c >> 16) & 0xff,
    3349                 :       1015 :                            (c >> 8) & 0xff, c & 0xff);
    3350   [ -  -  +  -  :       1015 :                 switch (c) {
          +  +  +  +  -  
                -  -  - ]
    3351                 :            :                 case WLAN_CIPHER_SUITE_CCMP_256:
    3352                 :          0 :                         info->capa->enc |= WPA_DRIVER_CAPA_ENC_CCMP_256;
    3353                 :          0 :                         break;
    3354                 :            :                 case WLAN_CIPHER_SUITE_GCMP_256:
    3355                 :          0 :                         info->capa->enc |= WPA_DRIVER_CAPA_ENC_GCMP_256;
    3356                 :          0 :                         break;
    3357                 :            :                 case WLAN_CIPHER_SUITE_CCMP:
    3358                 :        203 :                         info->capa->enc |= WPA_DRIVER_CAPA_ENC_CCMP;
    3359                 :        203 :                         break;
    3360                 :            :                 case WLAN_CIPHER_SUITE_GCMP:
    3361                 :          0 :                         info->capa->enc |= WPA_DRIVER_CAPA_ENC_GCMP;
    3362                 :          0 :                         break;
    3363                 :            :                 case WLAN_CIPHER_SUITE_TKIP:
    3364                 :        203 :                         info->capa->enc |= WPA_DRIVER_CAPA_ENC_TKIP;
    3365                 :        203 :                         break;
    3366                 :            :                 case WLAN_CIPHER_SUITE_WEP104:
    3367                 :        203 :                         info->capa->enc |= WPA_DRIVER_CAPA_ENC_WEP104;
    3368                 :        203 :                         break;
    3369                 :            :                 case WLAN_CIPHER_SUITE_WEP40:
    3370                 :        203 :                         info->capa->enc |= WPA_DRIVER_CAPA_ENC_WEP40;
    3371                 :        203 :                         break;
    3372                 :            :                 case WLAN_CIPHER_SUITE_AES_CMAC:
    3373                 :        203 :                         info->capa->enc |= WPA_DRIVER_CAPA_ENC_BIP;
    3374                 :        203 :                         break;
    3375                 :            :                 case WLAN_CIPHER_SUITE_BIP_GMAC_128:
    3376                 :          0 :                         info->capa->enc |= WPA_DRIVER_CAPA_ENC_BIP_GMAC_128;
    3377                 :          0 :                         break;
    3378                 :            :                 case WLAN_CIPHER_SUITE_BIP_GMAC_256:
    3379                 :          0 :                         info->capa->enc |= WPA_DRIVER_CAPA_ENC_BIP_GMAC_256;
    3380                 :          0 :                         break;
    3381                 :            :                 case WLAN_CIPHER_SUITE_BIP_CMAC_256:
    3382                 :          0 :                         info->capa->enc |= WPA_DRIVER_CAPA_ENC_BIP_CMAC_256;
    3383                 :          0 :                         break;
    3384                 :            :                 }
    3385                 :            :         }
    3386                 :            : }
    3387                 :            : 
    3388                 :            : 
    3389                 :      10759 : static void wiphy_info_max_roc(struct wpa_driver_capa *capa,
    3390                 :            :                                struct nlattr *tb)
    3391                 :            : {
    3392         [ +  + ]:      10759 :         if (tb)
    3393                 :        203 :                 capa->max_remain_on_chan = nla_get_u32(tb);
    3394                 :      10759 : }
    3395                 :            : 
    3396                 :            : 
    3397                 :      10759 : static void wiphy_info_tdls(struct wpa_driver_capa *capa, struct nlattr *tdls,
    3398                 :            :                             struct nlattr *ext_setup)
    3399                 :            : {
    3400         [ +  + ]:      10759 :         if (tdls == NULL)
    3401                 :      10759 :                 return;
    3402                 :            : 
    3403                 :        203 :         wpa_printf(MSG_DEBUG, "nl80211: TDLS supported");
    3404                 :        203 :         capa->flags |= WPA_DRIVER_FLAGS_TDLS_SUPPORT;
    3405                 :            : 
    3406         [ +  - ]:        203 :         if (ext_setup) {
    3407                 :        203 :                 wpa_printf(MSG_DEBUG, "nl80211: TDLS external setup");
    3408                 :        203 :                 capa->flags |= WPA_DRIVER_FLAGS_TDLS_EXTERNAL_SETUP;
    3409                 :            :         }
    3410                 :            : }
    3411                 :            : 
    3412                 :            : 
    3413                 :      10759 : static void wiphy_info_feature_flags(struct wiphy_info_data *info,
    3414                 :            :                                      struct nlattr *tb)
    3415                 :            : {
    3416                 :            :         u32 flags;
    3417                 :      10759 :         struct wpa_driver_capa *capa = info->capa;
    3418                 :            : 
    3419         [ +  + ]:      10759 :         if (tb == NULL)
    3420                 :      10759 :                 return;
    3421                 :            : 
    3422                 :        203 :         flags = nla_get_u32(tb);
    3423                 :            : 
    3424         [ +  - ]:        203 :         if (flags & NL80211_FEATURE_SK_TX_STATUS)
    3425                 :        203 :                 info->data_tx_status = 1;
    3426                 :            : 
    3427         [ -  + ]:        203 :         if (flags & NL80211_FEATURE_INACTIVITY_TIMER)
    3428                 :          0 :                 capa->flags |= WPA_DRIVER_FLAGS_INACTIVITY_TIMER;
    3429                 :            : 
    3430         [ +  - ]:        203 :         if (flags & NL80211_FEATURE_SAE)
    3431                 :        203 :                 capa->flags |= WPA_DRIVER_FLAGS_SAE;
    3432                 :            : 
    3433         [ -  + ]:        203 :         if (flags & NL80211_FEATURE_NEED_OBSS_SCAN)
    3434                 :          0 :                 capa->flags |= WPA_DRIVER_FLAGS_OBSS_SCAN;
    3435                 :            : }
    3436                 :            : 
    3437                 :            : 
    3438                 :      10759 : static void wiphy_info_probe_resp_offload(struct wpa_driver_capa *capa,
    3439                 :            :                                           struct nlattr *tb)
    3440                 :            : {
    3441                 :            :         u32 protocols;
    3442                 :            : 
    3443         [ +  - ]:      10759 :         if (tb == NULL)
    3444                 :      10759 :                 return;
    3445                 :            : 
    3446                 :          0 :         protocols = nla_get_u32(tb);
    3447                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Supports Probe Response offload in AP "
    3448                 :            :                    "mode");
    3449                 :          0 :         capa->flags |= WPA_DRIVER_FLAGS_PROBE_RESP_OFFLOAD;
    3450                 :          0 :         capa->probe_resp_offloads = probe_resp_offload_support(protocols);
    3451                 :            : }
    3452                 :            : 
    3453                 :            : 
    3454                 :      10759 : static int wiphy_info_handler(struct nl_msg *msg, void *arg)
    3455                 :            : {
    3456                 :            :         struct nlattr *tb[NL80211_ATTR_MAX + 1];
    3457                 :      10759 :         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
    3458                 :      10759 :         struct wiphy_info_data *info = arg;
    3459                 :      10759 :         struct wpa_driver_capa *capa = info->capa;
    3460                 :      10759 :         struct wpa_driver_nl80211_data *drv = info->drv;
    3461                 :            : 
    3462                 :      10759 :         nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
    3463                 :            :                   genlmsg_attrlen(gnlh, 0), NULL);
    3464                 :            : 
    3465         [ +  - ]:      10759 :         if (tb[NL80211_ATTR_WIPHY_NAME])
    3466                 :      10759 :                 os_strlcpy(drv->phyname,
    3467                 :      10759 :                            nla_get_string(tb[NL80211_ATTR_WIPHY_NAME]),
    3468                 :            :                            sizeof(drv->phyname));
    3469         [ +  + ]:      10759 :         if (tb[NL80211_ATTR_MAX_NUM_SCAN_SSIDS])
    3470                 :        203 :                 capa->max_scan_ssids =
    3471                 :        203 :                         nla_get_u8(tb[NL80211_ATTR_MAX_NUM_SCAN_SSIDS]);
    3472                 :            : 
    3473         [ +  + ]:      10759 :         if (tb[NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS])
    3474                 :        203 :                 capa->max_sched_scan_ssids =
    3475                 :        203 :                         nla_get_u8(tb[NL80211_ATTR_MAX_NUM_SCHED_SCAN_SSIDS]);
    3476                 :            : 
    3477         [ +  + ]:      10759 :         if (tb[NL80211_ATTR_MAX_MATCH_SETS])
    3478                 :        203 :                 capa->max_match_sets =
    3479                 :        203 :                         nla_get_u8(tb[NL80211_ATTR_MAX_MATCH_SETS]);
    3480                 :            : 
    3481         [ -  + ]:      10759 :         if (tb[NL80211_ATTR_MAC_ACL_MAX])
    3482                 :          0 :                 capa->max_acl_mac_addrs =
    3483                 :          0 :                         nla_get_u8(tb[NL80211_ATTR_MAC_ACL_MAX]);
    3484                 :            : 
    3485                 :      10759 :         wiphy_info_supported_iftypes(info, tb[NL80211_ATTR_SUPPORTED_IFTYPES]);
    3486                 :      10759 :         wiphy_info_iface_comb(info, tb[NL80211_ATTR_INTERFACE_COMBINATIONS]);
    3487                 :      10759 :         wiphy_info_supp_cmds(info, tb[NL80211_ATTR_SUPPORTED_COMMANDS]);
    3488                 :      10759 :         wiphy_info_cipher_suites(info, tb[NL80211_ATTR_CIPHER_SUITES]);
    3489                 :            : 
    3490         [ +  + ]:      10759 :         if (tb[NL80211_ATTR_OFFCHANNEL_TX_OK]) {
    3491                 :        203 :                 wpa_printf(MSG_DEBUG, "nl80211: Using driver-based "
    3492                 :            :                            "off-channel TX");
    3493                 :        203 :                 capa->flags |= WPA_DRIVER_FLAGS_OFFCHANNEL_TX;
    3494                 :            :         }
    3495                 :            : 
    3496         [ -  + ]:      10759 :         if (tb[NL80211_ATTR_ROAM_SUPPORT]) {
    3497                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Using driver-based roaming");
    3498                 :          0 :                 capa->flags |= WPA_DRIVER_FLAGS_BSS_SELECTION;
    3499                 :            :         }
    3500                 :            : 
    3501                 :      10759 :         wiphy_info_max_roc(capa,
    3502                 :            :                            tb[NL80211_ATTR_MAX_REMAIN_ON_CHANNEL_DURATION]);
    3503                 :            : 
    3504         [ +  + ]:      10759 :         if (tb[NL80211_ATTR_SUPPORT_AP_UAPSD])
    3505                 :        203 :                 capa->flags |= WPA_DRIVER_FLAGS_AP_UAPSD;
    3506                 :            : 
    3507                 :      10759 :         wiphy_info_tdls(capa, tb[NL80211_ATTR_TDLS_SUPPORT],
    3508                 :            :                         tb[NL80211_ATTR_TDLS_EXTERNAL_SETUP]);
    3509                 :            : 
    3510         [ -  + ]:      10759 :         if (tb[NL80211_ATTR_DEVICE_AP_SME])
    3511                 :          0 :                 info->device_ap_sme = 1;
    3512                 :            : 
    3513                 :      10759 :         wiphy_info_feature_flags(info, tb[NL80211_ATTR_FEATURE_FLAGS]);
    3514                 :      10759 :         wiphy_info_probe_resp_offload(capa,
    3515                 :            :                                       tb[NL80211_ATTR_PROBE_RESP_OFFLOAD]);
    3516                 :            : 
    3517 [ +  + ][ +  - ]:      10759 :         if (tb[NL80211_ATTR_EXT_CAPA] && tb[NL80211_ATTR_EXT_CAPA_MASK] &&
                 [ +  - ]
    3518                 :        203 :             drv->extended_capa == NULL) {
    3519                 :        203 :                 drv->extended_capa =
    3520                 :        203 :                         os_malloc(nla_len(tb[NL80211_ATTR_EXT_CAPA]));
    3521         [ +  - ]:        203 :                 if (drv->extended_capa) {
    3522                 :        203 :                         os_memcpy(drv->extended_capa,
    3523                 :            :                                   nla_data(tb[NL80211_ATTR_EXT_CAPA]),
    3524                 :            :                                   nla_len(tb[NL80211_ATTR_EXT_CAPA]));
    3525                 :        203 :                         drv->extended_capa_len =
    3526                 :        203 :                                 nla_len(tb[NL80211_ATTR_EXT_CAPA]);
    3527                 :            :                 }
    3528                 :        203 :                 drv->extended_capa_mask =
    3529                 :        203 :                         os_malloc(nla_len(tb[NL80211_ATTR_EXT_CAPA]));
    3530         [ +  - ]:        203 :                 if (drv->extended_capa_mask) {
    3531                 :        203 :                         os_memcpy(drv->extended_capa_mask,
    3532                 :            :                                   nla_data(tb[NL80211_ATTR_EXT_CAPA]),
    3533                 :            :                                   nla_len(tb[NL80211_ATTR_EXT_CAPA]));
    3534                 :            :                 } else {
    3535                 :          0 :                         os_free(drv->extended_capa);
    3536                 :          0 :                         drv->extended_capa = NULL;
    3537                 :          0 :                         drv->extended_capa_len = 0;
    3538                 :            :                 }
    3539                 :            :         }
    3540                 :            : 
    3541         [ +  + ]:      10759 :         if (tb[NL80211_ATTR_VENDOR_DATA]) {
    3542                 :            :                 struct nlattr *nl;
    3543                 :            :                 int rem;
    3544                 :            : 
    3545         [ +  + ]:        406 :                 nla_for_each_nested(nl, tb[NL80211_ATTR_VENDOR_DATA], rem) {
    3546                 :            :                         struct nl80211_vendor_cmd_info *vinfo;
    3547         [ -  + ]:        203 :                         if (nla_len(nl) != sizeof(vinfo)) {
    3548                 :          0 :                                 wpa_printf(MSG_DEBUG, "nl80211: Unexpected vendor data info");
    3549                 :          0 :                                 continue;
    3550                 :            :                         }
    3551                 :        203 :                         vinfo = nla_data(nl);
    3552                 :        203 :                         wpa_printf(MSG_DEBUG, "nl80211: Supported vendor command: vendor_id=0x%x subcmd=%u",
    3553                 :            :                                    vinfo->vendor_id, vinfo->subcmd);
    3554                 :            :                 }
    3555                 :            :         }
    3556                 :            : 
    3557         [ +  + ]:      10759 :         if (tb[NL80211_ATTR_VENDOR_EVENTS]) {
    3558                 :            :                 struct nlattr *nl;
    3559                 :            :                 int rem;
    3560                 :            : 
    3561         [ +  + ]:        406 :                 nla_for_each_nested(nl, tb[NL80211_ATTR_VENDOR_EVENTS], rem) {
    3562                 :            :                         struct nl80211_vendor_cmd_info *vinfo;
    3563         [ -  + ]:        203 :                         if (nla_len(nl) != sizeof(vinfo)) {
    3564                 :          0 :                                 wpa_printf(MSG_DEBUG, "nl80211: Unexpected vendor data info");
    3565                 :          0 :                                 continue;
    3566                 :            :                         }
    3567                 :        203 :                         vinfo = nla_data(nl);
    3568                 :        203 :                         wpa_printf(MSG_DEBUG, "nl80211: Supported vendor event: vendor_id=0x%x subcmd=%u",
    3569                 :            :                                    vinfo->vendor_id, vinfo->subcmd);
    3570                 :            :                 }
    3571                 :            :         }
    3572                 :            : 
    3573                 :      10759 :         return NL_SKIP;
    3574                 :            : }
    3575                 :            : 
    3576                 :            : 
    3577                 :        203 : static int wpa_driver_nl80211_get_info(struct wpa_driver_nl80211_data *drv,
    3578                 :            :                                        struct wiphy_info_data *info)
    3579                 :            : {
    3580                 :            :         u32 feat;
    3581                 :            :         struct nl_msg *msg;
    3582                 :            : 
    3583                 :        203 :         os_memset(info, 0, sizeof(*info));
    3584                 :        203 :         info->capa = &drv->capa;
    3585                 :        203 :         info->drv = drv;
    3586                 :            : 
    3587                 :        203 :         msg = nlmsg_alloc();
    3588         [ -  + ]:        203 :         if (!msg)
    3589                 :          0 :                 return -1;
    3590                 :            : 
    3591                 :        203 :         feat = get_nl80211_protocol_features(drv);
    3592         [ +  - ]:        203 :         if (feat & NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP)
    3593                 :        203 :                 nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_WIPHY);
    3594                 :            :         else
    3595                 :          0 :                 nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_WIPHY);
    3596                 :            : 
    3597         [ +  - ]:        203 :         NLA_PUT_FLAG(msg, NL80211_ATTR_SPLIT_WIPHY_DUMP);
    3598         [ -  + ]:        203 :         if (nl80211_set_iface_id(msg, drv->first_bss) < 0)
    3599                 :          0 :                 goto nla_put_failure;
    3600                 :            : 
    3601         [ -  + ]:        203 :         if (send_and_recv_msgs(drv, msg, wiphy_info_handler, info))
    3602                 :          0 :                 return -1;
    3603                 :            : 
    3604         [ +  - ]:        203 :         if (info->auth_supported)
    3605                 :        203 :                 drv->capa.flags |= WPA_DRIVER_FLAGS_SME;
    3606         [ #  # ]:          0 :         else if (!info->connect_supported) {
    3607                 :          0 :                 wpa_printf(MSG_INFO, "nl80211: Driver does not support "
    3608                 :            :                            "authentication/association or connect commands");
    3609                 :          0 :                 info->error = 1;
    3610                 :            :         }
    3611                 :            : 
    3612 [ +  - ][ +  - ]:        203 :         if (info->p2p_go_supported && info->p2p_client_supported)
    3613                 :        203 :                 drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_CAPABLE;
    3614         [ +  - ]:        203 :         if (info->p2p_concurrent) {
    3615                 :        203 :                 wpa_printf(MSG_DEBUG, "nl80211: Use separate P2P group "
    3616                 :            :                            "interface (driver advertised support)");
    3617                 :        203 :                 drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_CONCURRENT;
    3618                 :        203 :                 drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P;
    3619                 :            :         }
    3620         [ -  + ]:        203 :         if (info->num_multichan_concurrent > 1) {
    3621                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Enable multi-channel "
    3622                 :            :                            "concurrent (driver advertised support)");
    3623                 :          0 :                 drv->capa.num_multichan_concurrent =
    3624                 :          0 :                         info->num_multichan_concurrent;
    3625                 :            :         }
    3626                 :            : 
    3627                 :            :         /* default to 5000 since early versions of mac80211 don't set it */
    3628         [ -  + ]:        203 :         if (!drv->capa.max_remain_on_chan)
    3629                 :          0 :                 drv->capa.max_remain_on_chan = 5000;
    3630                 :            : 
    3631                 :        203 :         return 0;
    3632                 :            : nla_put_failure:
    3633                 :          0 :         nlmsg_free(msg);
    3634                 :        203 :         return -1;
    3635                 :            : }
    3636                 :            : 
    3637                 :            : 
    3638                 :        203 : static int wpa_driver_nl80211_capa(struct wpa_driver_nl80211_data *drv)
    3639                 :            : {
    3640                 :            :         struct wiphy_info_data info;
    3641         [ -  + ]:        203 :         if (wpa_driver_nl80211_get_info(drv, &info))
    3642                 :          0 :                 return -1;
    3643                 :            : 
    3644         [ -  + ]:        203 :         if (info.error)
    3645                 :          0 :                 return -1;
    3646                 :            : 
    3647                 :        203 :         drv->has_capability = 1;
    3648                 :        203 :         drv->capa.key_mgmt = WPA_DRIVER_CAPA_KEY_MGMT_WPA |
    3649                 :            :                 WPA_DRIVER_CAPA_KEY_MGMT_WPA_PSK |
    3650                 :            :                 WPA_DRIVER_CAPA_KEY_MGMT_WPA2 |
    3651                 :            :                 WPA_DRIVER_CAPA_KEY_MGMT_WPA2_PSK;
    3652                 :        203 :         drv->capa.auth = WPA_DRIVER_AUTH_OPEN |
    3653                 :            :                 WPA_DRIVER_AUTH_SHARED |
    3654                 :            :                 WPA_DRIVER_AUTH_LEAP;
    3655                 :            : 
    3656                 :        203 :         drv->capa.flags |= WPA_DRIVER_FLAGS_SANE_ERROR_CODES;
    3657                 :        203 :         drv->capa.flags |= WPA_DRIVER_FLAGS_SET_KEYS_AFTER_ASSOC_DONE;
    3658                 :        203 :         drv->capa.flags |= WPA_DRIVER_FLAGS_EAPOL_TX_STATUS;
    3659                 :            : 
    3660         [ +  - ]:        203 :         if (!info.device_ap_sme) {
    3661                 :        203 :                 drv->capa.flags |= WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS;
    3662                 :            : 
    3663                 :            :                 /*
    3664                 :            :                  * No AP SME is currently assumed to also indicate no AP MLME
    3665                 :            :                  * in the driver/firmware.
    3666                 :            :                  */
    3667                 :        203 :                 drv->capa.flags |= WPA_DRIVER_FLAGS_AP_MLME;
    3668                 :            :         }
    3669                 :            : 
    3670                 :        203 :         drv->device_ap_sme = info.device_ap_sme;
    3671                 :        203 :         drv->poll_command_supported = info.poll_command_supported;
    3672                 :        203 :         drv->data_tx_status = info.data_tx_status;
    3673                 :        203 :         drv->channel_switch_supported = info.channel_switch_supported;
    3674         [ +  - ]:        203 :         if (info.set_qos_map_supported)
    3675                 :        203 :                 drv->capa.flags |= WPA_DRIVER_FLAGS_QOS_MAPPING;
    3676                 :            : 
    3677                 :            :         /*
    3678                 :            :          * If poll command and tx status are supported, mac80211 is new enough
    3679                 :            :          * to have everything we need to not need monitor interfaces.
    3680                 :            :          */
    3681 [ +  - ][ -  + ]:        203 :         drv->use_monitor = !info.poll_command_supported || !info.data_tx_status;
    3682                 :            : 
    3683 [ -  + ][ #  # ]:        203 :         if (drv->device_ap_sme && drv->use_monitor) {
    3684                 :            :                 /*
    3685                 :            :                  * Non-mac80211 drivers may not support monitor interface.
    3686                 :            :                  * Make sure we do not get stuck with incorrect capability here
    3687                 :            :                  * by explicitly testing this.
    3688                 :            :                  */
    3689         [ #  # ]:          0 :                 if (!info.monitor_supported) {
    3690                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Disable use_monitor "
    3691                 :            :                                    "with device_ap_sme since no monitor mode "
    3692                 :            :                                    "support detected");
    3693                 :          0 :                         drv->use_monitor = 0;
    3694                 :            :                 }
    3695                 :            :         }
    3696                 :            : 
    3697                 :            :         /*
    3698                 :            :          * If we aren't going to use monitor interfaces, but the
    3699                 :            :          * driver doesn't support data TX status, we won't get TX
    3700                 :            :          * status for EAPOL frames.
    3701                 :            :          */
    3702 [ +  - ][ -  + ]:        203 :         if (!drv->use_monitor && !info.data_tx_status)
    3703                 :          0 :                 drv->capa.flags &= ~WPA_DRIVER_FLAGS_EAPOL_TX_STATUS;
    3704                 :            : 
    3705                 :        203 :         return 0;
    3706                 :            : }
    3707                 :            : 
    3708                 :            : 
    3709                 :            : #ifdef ANDROID
    3710                 :            : static int android_genl_ctrl_resolve(struct nl_handle *handle,
    3711                 :            :                                      const char *name)
    3712                 :            : {
    3713                 :            :         /*
    3714                 :            :          * Android ICS has very minimal genl_ctrl_resolve() implementation, so
    3715                 :            :          * need to work around that.
    3716                 :            :          */
    3717                 :            :         struct nl_cache *cache = NULL;
    3718                 :            :         struct genl_family *nl80211 = NULL;
    3719                 :            :         int id = -1;
    3720                 :            : 
    3721                 :            :         if (genl_ctrl_alloc_cache(handle, &cache) < 0) {
    3722                 :            :                 wpa_printf(MSG_ERROR, "nl80211: Failed to allocate generic "
    3723                 :            :                            "netlink cache");
    3724                 :            :                 goto fail;
    3725                 :            :         }
    3726                 :            : 
    3727                 :            :         nl80211 = genl_ctrl_search_by_name(cache, name);
    3728                 :            :         if (nl80211 == NULL)
    3729                 :            :                 goto fail;
    3730                 :            : 
    3731                 :            :         id = genl_family_get_id(nl80211);
    3732                 :            : 
    3733                 :            : fail:
    3734                 :            :         if (nl80211)
    3735                 :            :                 genl_family_put(nl80211);
    3736                 :            :         if (cache)
    3737                 :            :                 nl_cache_free(cache);
    3738                 :            : 
    3739                 :            :         return id;
    3740                 :            : }
    3741                 :            : #define genl_ctrl_resolve android_genl_ctrl_resolve
    3742                 :            : #endif /* ANDROID */
    3743                 :            : 
    3744                 :            : 
    3745                 :          1 : static int wpa_driver_nl80211_init_nl_global(struct nl80211_global *global)
    3746                 :            : {
    3747                 :            :         int ret;
    3748                 :            : 
    3749                 :          1 :         global->nl_cb = nl_cb_alloc(NL_CB_DEFAULT);
    3750         [ -  + ]:          1 :         if (global->nl_cb == NULL) {
    3751                 :          0 :                 wpa_printf(MSG_ERROR, "nl80211: Failed to allocate netlink "
    3752                 :            :                            "callbacks");
    3753                 :          0 :                 return -1;
    3754                 :            :         }
    3755                 :            : 
    3756                 :          1 :         global->nl = nl_create_handle(global->nl_cb, "nl");
    3757         [ -  + ]:          1 :         if (global->nl == NULL)
    3758                 :          0 :                 goto err;
    3759                 :            : 
    3760                 :          1 :         global->nl80211_id = genl_ctrl_resolve(global->nl, "nl80211");
    3761         [ -  + ]:          1 :         if (global->nl80211_id < 0) {
    3762                 :          0 :                 wpa_printf(MSG_ERROR, "nl80211: 'nl80211' generic netlink not "
    3763                 :            :                            "found");
    3764                 :          0 :                 goto err;
    3765                 :            :         }
    3766                 :            : 
    3767                 :          1 :         global->nl_event = nl_create_handle(global->nl_cb, "event");
    3768         [ -  + ]:          1 :         if (global->nl_event == NULL)
    3769                 :          0 :                 goto err;
    3770                 :            : 
    3771                 :          1 :         ret = nl_get_multicast_id(global, "nl80211", "scan");
    3772         [ +  - ]:          1 :         if (ret >= 0)
    3773                 :          1 :                 ret = nl_socket_add_membership(global->nl_event, ret);
    3774         [ -  + ]:          1 :         if (ret < 0) {
    3775                 :          0 :                 wpa_printf(MSG_ERROR, "nl80211: Could not add multicast "
    3776                 :            :                            "membership for scan events: %d (%s)",
    3777                 :            :                            ret, strerror(-ret));
    3778                 :          0 :                 goto err;
    3779                 :            :         }
    3780                 :            : 
    3781                 :          1 :         ret = nl_get_multicast_id(global, "nl80211", "mlme");
    3782         [ +  - ]:          1 :         if (ret >= 0)
    3783                 :          1 :                 ret = nl_socket_add_membership(global->nl_event, ret);
    3784         [ -  + ]:          1 :         if (ret < 0) {
    3785                 :          0 :                 wpa_printf(MSG_ERROR, "nl80211: Could not add multicast "
    3786                 :            :                            "membership for mlme events: %d (%s)",
    3787                 :            :                            ret, strerror(-ret));
    3788                 :          0 :                 goto err;
    3789                 :            :         }
    3790                 :            : 
    3791                 :          1 :         ret = nl_get_multicast_id(global, "nl80211", "regulatory");
    3792         [ +  - ]:          1 :         if (ret >= 0)
    3793                 :          1 :                 ret = nl_socket_add_membership(global->nl_event, ret);
    3794         [ -  + ]:          1 :         if (ret < 0) {
    3795                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Could not add multicast "
    3796                 :            :                            "membership for regulatory events: %d (%s)",
    3797                 :            :                            ret, strerror(-ret));
    3798                 :            :                 /* Continue without regulatory events */
    3799                 :            :         }
    3800                 :            : 
    3801                 :          1 :         ret = nl_get_multicast_id(global, "nl80211", "vendor");
    3802         [ +  - ]:          1 :         if (ret >= 0)
    3803                 :          1 :                 ret = nl_socket_add_membership(global->nl_event, ret);
    3804         [ -  + ]:          1 :         if (ret < 0) {
    3805                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Could not add multicast "
    3806                 :            :                            "membership for vendor events: %d (%s)",
    3807                 :            :                            ret, strerror(-ret));
    3808                 :            :                 /* Continue without vendor events */
    3809                 :            :         }
    3810                 :            : 
    3811                 :          1 :         nl_cb_set(global->nl_cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM,
    3812                 :            :                   no_seq_check, NULL);
    3813                 :          1 :         nl_cb_set(global->nl_cb, NL_CB_VALID, NL_CB_CUSTOM,
    3814                 :            :                   process_global_event, global);
    3815                 :            : 
    3816                 :          1 :         nl80211_register_eloop_read(&global->nl_event,
    3817                 :            :                                     wpa_driver_nl80211_event_receive,
    3818                 :          1 :                                     global->nl_cb);
    3819                 :            : 
    3820                 :          1 :         return 0;
    3821                 :            : 
    3822                 :            : err:
    3823                 :          0 :         nl_destroy_handles(&global->nl_event);
    3824                 :          0 :         nl_destroy_handles(&global->nl);
    3825                 :          0 :         nl_cb_put(global->nl_cb);
    3826                 :          0 :         global->nl_cb = NULL;
    3827                 :          1 :         return -1;
    3828                 :            : }
    3829                 :            : 
    3830                 :            : 
    3831                 :        203 : static int wpa_driver_nl80211_init_nl(struct wpa_driver_nl80211_data *drv)
    3832                 :            : {
    3833                 :        203 :         drv->nl_cb = nl_cb_alloc(NL_CB_DEFAULT);
    3834         [ -  + ]:        203 :         if (!drv->nl_cb) {
    3835                 :          0 :                 wpa_printf(MSG_ERROR, "nl80211: Failed to alloc cb struct");
    3836                 :          0 :                 return -1;
    3837                 :            :         }
    3838                 :            : 
    3839                 :        203 :         nl_cb_set(drv->nl_cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM,
    3840                 :            :                   no_seq_check, NULL);
    3841                 :        203 :         nl_cb_set(drv->nl_cb, NL_CB_VALID, NL_CB_CUSTOM,
    3842                 :            :                   process_drv_event, drv);
    3843                 :            : 
    3844                 :        203 :         return 0;
    3845                 :            : }
    3846                 :            : 
    3847                 :            : 
    3848                 :          0 : static void wpa_driver_nl80211_rfkill_blocked(void *ctx)
    3849                 :            : {
    3850                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: RFKILL blocked");
    3851                 :            :         /*
    3852                 :            :          * This may be for any interface; use ifdown event to disable
    3853                 :            :          * interface.
    3854                 :            :          */
    3855                 :          0 : }
    3856                 :            : 
    3857                 :            : 
    3858                 :          0 : static void wpa_driver_nl80211_rfkill_unblocked(void *ctx)
    3859                 :            : {
    3860                 :          0 :         struct wpa_driver_nl80211_data *drv = ctx;
    3861                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: RFKILL unblocked");
    3862         [ #  # ]:          0 :         if (i802_set_iface_flags(drv->first_bss, 1)) {
    3863                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Could not set interface UP "
    3864                 :            :                            "after rfkill unblock");
    3865                 :          0 :                 return;
    3866                 :            :         }
    3867                 :            :         /* rtnetlink ifup handler will report interface as enabled */
    3868                 :            : }
    3869                 :            : 
    3870                 :            : 
    3871                 :       1209 : static void wpa_driver_nl80211_handle_eapol_tx_status(int sock,
    3872                 :            :                                                       void *eloop_ctx,
    3873                 :            :                                                       void *handle)
    3874                 :            : {
    3875                 :       1209 :         struct wpa_driver_nl80211_data *drv = eloop_ctx;
    3876                 :            :         u8 data[2048];
    3877                 :            :         struct msghdr msg;
    3878                 :            :         struct iovec entry;
    3879                 :            :         u8 control[512];
    3880                 :            :         struct cmsghdr *cmsg;
    3881                 :       1209 :         int res, found_ee = 0, found_wifi = 0, acked = 0;
    3882                 :            :         union wpa_event_data event;
    3883                 :            : 
    3884                 :       1209 :         memset(&msg, 0, sizeof(msg));
    3885                 :       1209 :         msg.msg_iov = &entry;
    3886                 :       1209 :         msg.msg_iovlen = 1;
    3887                 :       1209 :         entry.iov_base = data;
    3888                 :       1209 :         entry.iov_len = sizeof(data);
    3889                 :       1209 :         msg.msg_control = &control;
    3890                 :       1209 :         msg.msg_controllen = sizeof(control);
    3891                 :            : 
    3892                 :       1209 :         res = recvmsg(sock, &msg, MSG_ERRQUEUE);
    3893                 :            :         /* if error or not fitting 802.3 header, return */
    3894         [ -  + ]:       1209 :         if (res < 14)
    3895                 :          0 :                 return;
    3896                 :            : 
    3897 [ +  - ][ +  + ]:       3627 :         for (cmsg = CMSG_FIRSTHDR(&msg); cmsg; cmsg = CMSG_NXTHDR(&msg, cmsg))
    3898                 :            :         {
    3899 [ +  + ][ +  - ]:       2418 :                 if (cmsg->cmsg_level == SOL_SOCKET &&
    3900                 :       1209 :                     cmsg->cmsg_type == SCM_WIFI_STATUS) {
    3901                 :            :                         int *ack;
    3902                 :            : 
    3903                 :       1209 :                         found_wifi = 1;
    3904                 :       1209 :                         ack = (void *)CMSG_DATA(cmsg);
    3905                 :       1209 :                         acked = *ack;
    3906                 :            :                 }
    3907                 :            : 
    3908 [ +  + ][ +  - ]:       2418 :                 if (cmsg->cmsg_level == SOL_PACKET &&
    3909                 :       1209 :                     cmsg->cmsg_type == PACKET_TX_TIMESTAMP) {
    3910                 :       1209 :                         struct sock_extended_err *err =
    3911                 :            :                                 (struct sock_extended_err *)CMSG_DATA(cmsg);
    3912                 :            : 
    3913         [ +  - ]:       1209 :                         if (err->ee_origin == SO_EE_ORIGIN_TXSTATUS)
    3914                 :       1209 :                                 found_ee = 1;
    3915                 :            :                 }
    3916                 :            :         }
    3917                 :            : 
    3918 [ +  - ][ -  + ]:       1209 :         if (!found_ee || !found_wifi)
    3919                 :          0 :                 return;
    3920                 :            : 
    3921                 :       1209 :         memset(&event, 0, sizeof(event));
    3922                 :       1209 :         event.eapol_tx_status.dst = data;
    3923                 :       1209 :         event.eapol_tx_status.data = data + 14;
    3924                 :       1209 :         event.eapol_tx_status.data_len = res - 14;
    3925                 :       1209 :         event.eapol_tx_status.ack = acked;
    3926                 :       1209 :         wpa_supplicant_event(drv->ctx, EVENT_EAPOL_TX_STATUS, &event);
    3927                 :            : }
    3928                 :            : 
    3929                 :            : 
    3930                 :        220 : static int nl80211_init_bss(struct i802_bss *bss)
    3931                 :            : {
    3932                 :        220 :         bss->nl_cb = nl_cb_alloc(NL_CB_DEFAULT);
    3933         [ -  + ]:        220 :         if (!bss->nl_cb)
    3934                 :          0 :                 return -1;
    3935                 :            : 
    3936                 :        220 :         nl_cb_set(bss->nl_cb, NL_CB_SEQ_CHECK, NL_CB_CUSTOM,
    3937                 :            :                   no_seq_check, NULL);
    3938                 :        220 :         nl_cb_set(bss->nl_cb, NL_CB_VALID, NL_CB_CUSTOM,
    3939                 :            :                   process_bss_event, bss);
    3940                 :            : 
    3941                 :        220 :         return 0;
    3942                 :            : }
    3943                 :            : 
    3944                 :            : 
    3945                 :        220 : static void nl80211_destroy_bss(struct i802_bss *bss)
    3946                 :            : {
    3947                 :        220 :         nl_cb_put(bss->nl_cb);
    3948                 :        220 :         bss->nl_cb = NULL;
    3949                 :        220 : }
    3950                 :            : 
    3951                 :            : 
    3952                 :        203 : static void * wpa_driver_nl80211_drv_init(void *ctx, const char *ifname,
    3953                 :            :                                           void *global_priv, int hostapd,
    3954                 :            :                                           const u8 *set_addr)
    3955                 :            : {
    3956                 :            :         struct wpa_driver_nl80211_data *drv;
    3957                 :            :         struct rfkill_config *rcfg;
    3958                 :            :         struct i802_bss *bss;
    3959                 :            : 
    3960         [ -  + ]:        203 :         if (global_priv == NULL)
    3961                 :          0 :                 return NULL;
    3962                 :        203 :         drv = os_zalloc(sizeof(*drv));
    3963         [ -  + ]:        203 :         if (drv == NULL)
    3964                 :          0 :                 return NULL;
    3965                 :        203 :         drv->global = global_priv;
    3966                 :        203 :         drv->ctx = ctx;
    3967                 :        203 :         drv->hostapd = !!hostapd;
    3968                 :        203 :         drv->eapol_sock = -1;
    3969                 :        203 :         drv->num_if_indices = sizeof(drv->default_if_indices) / sizeof(int);
    3970                 :        203 :         drv->if_indices = drv->default_if_indices;
    3971                 :            : 
    3972                 :        203 :         drv->first_bss = os_zalloc(sizeof(*drv->first_bss));
    3973         [ -  + ]:        203 :         if (!drv->first_bss) {
    3974                 :          0 :                 os_free(drv);
    3975                 :          0 :                 return NULL;
    3976                 :            :         }
    3977                 :        203 :         bss = drv->first_bss;
    3978                 :        203 :         bss->drv = drv;
    3979                 :        203 :         bss->ctx = ctx;
    3980                 :            : 
    3981                 :        203 :         os_strlcpy(bss->ifname, ifname, sizeof(bss->ifname));
    3982                 :        203 :         drv->monitor_ifidx = -1;
    3983                 :        203 :         drv->monitor_sock = -1;
    3984                 :        203 :         drv->eapol_tx_sock = -1;
    3985                 :        203 :         drv->ap_scan_as_station = NL80211_IFTYPE_UNSPECIFIED;
    3986                 :            : 
    3987         [ -  + ]:        203 :         if (wpa_driver_nl80211_init_nl(drv)) {
    3988                 :          0 :                 os_free(drv);
    3989                 :          0 :                 return NULL;
    3990                 :            :         }
    3991                 :            : 
    3992         [ -  + ]:        203 :         if (nl80211_init_bss(bss))
    3993                 :          0 :                 goto failed;
    3994                 :            : 
    3995                 :        203 :         rcfg = os_zalloc(sizeof(*rcfg));
    3996         [ -  + ]:        203 :         if (rcfg == NULL)
    3997                 :          0 :                 goto failed;
    3998                 :        203 :         rcfg->ctx = drv;
    3999                 :        203 :         os_strlcpy(rcfg->ifname, ifname, sizeof(rcfg->ifname));
    4000                 :        203 :         rcfg->blocked_cb = wpa_driver_nl80211_rfkill_blocked;
    4001                 :        203 :         rcfg->unblocked_cb = wpa_driver_nl80211_rfkill_unblocked;
    4002                 :        203 :         drv->rfkill = rfkill_init(rcfg);
    4003         [ -  + ]:        203 :         if (drv->rfkill == NULL) {
    4004                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: RFKILL status not available");
    4005                 :          0 :                 os_free(rcfg);
    4006                 :            :         }
    4007                 :            : 
    4008         [ -  + ]:        203 :         if (linux_iface_up(drv->global->ioctl_sock, ifname) > 0)
    4009                 :          0 :                 drv->start_iface_up = 1;
    4010                 :            : 
    4011         [ -  + ]:        203 :         if (wpa_driver_nl80211_finish_drv_init(drv, set_addr, 1))
    4012                 :          0 :                 goto failed;
    4013                 :            : 
    4014                 :        203 :         drv->eapol_tx_sock = socket(PF_PACKET, SOCK_DGRAM, 0);
    4015         [ -  + ]:        203 :         if (drv->eapol_tx_sock < 0)
    4016                 :          0 :                 goto failed;
    4017                 :            : 
    4018         [ +  - ]:        203 :         if (drv->data_tx_status) {
    4019                 :        203 :                 int enabled = 1;
    4020                 :            : 
    4021         [ -  + ]:        203 :                 if (setsockopt(drv->eapol_tx_sock, SOL_SOCKET, SO_WIFI_STATUS,
    4022                 :            :                                &enabled, sizeof(enabled)) < 0) {
    4023                 :          0 :                         wpa_printf(MSG_DEBUG,
    4024                 :            :                                 "nl80211: wifi status sockopt failed\n");
    4025                 :          0 :                         drv->data_tx_status = 0;
    4026         [ #  # ]:          0 :                         if (!drv->use_monitor)
    4027                 :          0 :                                 drv->capa.flags &=
    4028                 :            :                                         ~WPA_DRIVER_FLAGS_EAPOL_TX_STATUS;
    4029                 :            :                 } else {
    4030                 :        203 :                         eloop_register_read_sock(drv->eapol_tx_sock,
    4031                 :            :                                 wpa_driver_nl80211_handle_eapol_tx_status,
    4032                 :            :                                 drv, NULL);
    4033                 :            :                 }
    4034                 :            :         }
    4035                 :            : 
    4036         [ +  - ]:        203 :         if (drv->global) {
    4037                 :        203 :                 dl_list_add(&drv->global->interfaces, &drv->list);
    4038                 :        203 :                 drv->in_interface_list = 1;
    4039                 :            :         }
    4040                 :            : 
    4041                 :        203 :         return bss;
    4042                 :            : 
    4043                 :            : failed:
    4044                 :          0 :         wpa_driver_nl80211_deinit(bss);
    4045                 :        203 :         return NULL;
    4046                 :            : }
    4047                 :            : 
    4048                 :            : 
    4049                 :            : /**
    4050                 :            :  * wpa_driver_nl80211_init - Initialize nl80211 driver interface
    4051                 :            :  * @ctx: context to be used when calling wpa_supplicant functions,
    4052                 :            :  * e.g., wpa_supplicant_event()
    4053                 :            :  * @ifname: interface name, e.g., wlan0
    4054                 :            :  * @global_priv: private driver global data from global_init()
    4055                 :            :  * Returns: Pointer to private data, %NULL on failure
    4056                 :            :  */
    4057                 :          0 : static void * wpa_driver_nl80211_init(void *ctx, const char *ifname,
    4058                 :            :                                       void *global_priv)
    4059                 :            : {
    4060                 :          0 :         return wpa_driver_nl80211_drv_init(ctx, ifname, global_priv, 0, NULL);
    4061                 :            : }
    4062                 :            : 
    4063                 :            : 
    4064                 :       1540 : static int nl80211_register_frame(struct i802_bss *bss,
    4065                 :            :                                   struct nl_handle *nl_handle,
    4066                 :            :                                   u16 type, const u8 *match, size_t match_len)
    4067                 :            : {
    4068                 :       1540 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    4069                 :            :         struct nl_msg *msg;
    4070                 :       1540 :         int ret = -1;
    4071                 :            :         char buf[30];
    4072                 :            : 
    4073                 :       1540 :         msg = nlmsg_alloc();
    4074         [ -  + ]:       1540 :         if (!msg)
    4075                 :          0 :                 return -1;
    4076                 :            : 
    4077                 :       1540 :         buf[0] = '\0';
    4078                 :       1540 :         wpa_snprintf_hex(buf, sizeof(buf), match, match_len);
    4079                 :       1540 :         wpa_printf(MSG_DEBUG, "nl80211: Register frame type=0x%x nl_handle=%p match=%s",
    4080                 :            :                    type, nl_handle, buf);
    4081                 :            : 
    4082                 :       1540 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_REGISTER_ACTION);
    4083                 :            : 
    4084         [ -  + ]:       1540 :         if (nl80211_set_iface_id(msg, bss) < 0)
    4085                 :          0 :                 goto nla_put_failure;
    4086                 :            : 
    4087         [ +  - ]:       1540 :         NLA_PUT_U16(msg, NL80211_ATTR_FRAME_TYPE, type);
    4088         [ +  - ]:       1540 :         NLA_PUT(msg, NL80211_ATTR_FRAME_MATCH, match_len, match);
    4089                 :            : 
    4090                 :       1540 :         ret = send_and_recv(drv->global, nl_handle, msg, NULL, NULL);
    4091                 :       1540 :         msg = NULL;
    4092         [ -  + ]:       1540 :         if (ret) {
    4093                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Register frame command "
    4094                 :            :                            "failed (type=%u): ret=%d (%s)",
    4095                 :            :                            type, ret, strerror(-ret));
    4096                 :          0 :                 wpa_hexdump(MSG_DEBUG, "nl80211: Register frame match",
    4097                 :            :                             match, match_len);
    4098                 :          0 :                 goto nla_put_failure;
    4099                 :            :         }
    4100                 :       1540 :         ret = 0;
    4101                 :            : nla_put_failure:
    4102                 :       1540 :         nlmsg_free(msg);
    4103                 :       1540 :         return ret;
    4104                 :            : }
    4105                 :            : 
    4106                 :            : 
    4107                 :        220 : static int nl80211_alloc_mgmt_handle(struct i802_bss *bss)
    4108                 :            : {
    4109                 :        220 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    4110                 :            : 
    4111         [ -  + ]:        220 :         if (bss->nl_mgmt) {
    4112                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Mgmt reporting "
    4113                 :            :                            "already on! (nl_mgmt=%p)", bss->nl_mgmt);
    4114                 :          0 :                 return -1;
    4115                 :            :         }
    4116                 :            : 
    4117                 :        220 :         bss->nl_mgmt = nl_create_handle(drv->nl_cb, "mgmt");
    4118         [ -  + ]:        220 :         if (bss->nl_mgmt == NULL)
    4119                 :          0 :                 return -1;
    4120                 :            : 
    4121                 :        220 :         return 0;
    4122                 :            : }
    4123                 :            : 
    4124                 :            : 
    4125                 :        220 : static void nl80211_mgmt_handle_register_eloop(struct i802_bss *bss)
    4126                 :            : {
    4127                 :        220 :         nl80211_register_eloop_read(&bss->nl_mgmt,
    4128                 :            :                                     wpa_driver_nl80211_event_receive,
    4129                 :        220 :                                     bss->nl_cb);
    4130                 :        220 : }
    4131                 :            : 
    4132                 :            : 
    4133                 :          0 : static int nl80211_register_action_frame(struct i802_bss *bss,
    4134                 :            :                                          const u8 *match, size_t match_len)
    4135                 :            : {
    4136                 :          0 :         u16 type = (WLAN_FC_TYPE_MGMT << 2) | (WLAN_FC_STYPE_ACTION << 4);
    4137                 :          0 :         return nl80211_register_frame(bss, bss->nl_mgmt,
    4138                 :            :                                       type, match, match_len);
    4139                 :            : }
    4140                 :            : 
    4141                 :            : 
    4142                 :          0 : static int nl80211_mgmt_subscribe_non_ap(struct i802_bss *bss)
    4143                 :            : {
    4144                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    4145                 :          0 :         int ret = 0;
    4146                 :            : 
    4147         [ #  # ]:          0 :         if (nl80211_alloc_mgmt_handle(bss))
    4148                 :          0 :                 return -1;
    4149                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Subscribe to mgmt frames with non-AP "
    4150                 :            :                    "handle %p", bss->nl_mgmt);
    4151                 :            : 
    4152         [ #  # ]:          0 :         if (drv->nlmode == NL80211_IFTYPE_ADHOC) {
    4153                 :          0 :                 u16 type = (WLAN_FC_TYPE_MGMT << 2) | (WLAN_FC_STYPE_AUTH << 4);
    4154                 :            : 
    4155                 :            :                 /* register for any AUTH message */
    4156                 :          0 :                 nl80211_register_frame(bss, bss->nl_mgmt, type, NULL, 0);
    4157                 :            :         }
    4158                 :            : 
    4159                 :            : #ifdef CONFIG_INTERWORKING
    4160                 :            :         /* QoS Map Configure */
    4161         [ #  # ]:          0 :         if (nl80211_register_action_frame(bss, (u8 *) "\x01\x04", 2) < 0)
    4162                 :          0 :                 ret = -1;
    4163                 :            : #endif /* CONFIG_INTERWORKING */
    4164                 :            : #if defined(CONFIG_P2P) || defined(CONFIG_INTERWORKING)
    4165                 :            :         /* GAS Initial Request */
    4166         [ #  # ]:          0 :         if (nl80211_register_action_frame(bss, (u8 *) "\x04\x0a", 2) < 0)
    4167                 :          0 :                 ret = -1;
    4168                 :            :         /* GAS Initial Response */
    4169         [ #  # ]:          0 :         if (nl80211_register_action_frame(bss, (u8 *) "\x04\x0b", 2) < 0)
    4170                 :          0 :                 ret = -1;
    4171                 :            :         /* GAS Comeback Request */
    4172         [ #  # ]:          0 :         if (nl80211_register_action_frame(bss, (u8 *) "\x04\x0c", 2) < 0)
    4173                 :          0 :                 ret = -1;
    4174                 :            :         /* GAS Comeback Response */
    4175         [ #  # ]:          0 :         if (nl80211_register_action_frame(bss, (u8 *) "\x04\x0d", 2) < 0)
    4176                 :          0 :                 ret = -1;
    4177                 :            : #endif /* CONFIG_P2P || CONFIG_INTERWORKING */
    4178                 :            : #ifdef CONFIG_P2P
    4179                 :            :         /* P2P Public Action */
    4180                 :            :         if (nl80211_register_action_frame(bss,
    4181                 :            :                                           (u8 *) "\x04\x09\x50\x6f\x9a\x09",
    4182                 :            :                                           6) < 0)
    4183                 :            :                 ret = -1;
    4184                 :            :         /* P2P Action */
    4185                 :            :         if (nl80211_register_action_frame(bss,
    4186                 :            :                                           (u8 *) "\x7f\x50\x6f\x9a\x09",
    4187                 :            :                                           5) < 0)
    4188                 :            :                 ret = -1;
    4189                 :            : #endif /* CONFIG_P2P */
    4190                 :            : #ifdef CONFIG_IEEE80211W
    4191                 :            :         /* SA Query Response */
    4192         [ #  # ]:          0 :         if (nl80211_register_action_frame(bss, (u8 *) "\x08\x01", 2) < 0)
    4193                 :          0 :                 ret = -1;
    4194                 :            : #endif /* CONFIG_IEEE80211W */
    4195                 :            : #ifdef CONFIG_TDLS
    4196                 :            :         if ((drv->capa.flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT)) {
    4197                 :            :                 /* TDLS Discovery Response */
    4198                 :            :                 if (nl80211_register_action_frame(bss, (u8 *) "\x04\x0e", 2) <
    4199                 :            :                     0)
    4200                 :            :                         ret = -1;
    4201                 :            :         }
    4202                 :            : #endif /* CONFIG_TDLS */
    4203                 :            : 
    4204                 :            :         /* FT Action frames */
    4205         [ #  # ]:          0 :         if (nl80211_register_action_frame(bss, (u8 *) "\x06", 1) < 0)
    4206                 :          0 :                 ret = -1;
    4207                 :            :         else
    4208                 :          0 :                 drv->capa.key_mgmt |= WPA_DRIVER_CAPA_KEY_MGMT_FT |
    4209                 :            :                         WPA_DRIVER_CAPA_KEY_MGMT_FT_PSK;
    4210                 :            : 
    4211                 :            :         /* WNM - BSS Transition Management Request */
    4212         [ #  # ]:          0 :         if (nl80211_register_action_frame(bss, (u8 *) "\x0a\x07", 2) < 0)
    4213                 :          0 :                 ret = -1;
    4214                 :            :         /* WNM-Sleep Mode Response */
    4215         [ #  # ]:          0 :         if (nl80211_register_action_frame(bss, (u8 *) "\x0a\x11", 2) < 0)
    4216                 :          0 :                 ret = -1;
    4217                 :            : 
    4218                 :          0 :         nl80211_mgmt_handle_register_eloop(bss);
    4219                 :            : 
    4220                 :          0 :         return ret;
    4221                 :            : }
    4222                 :            : 
    4223                 :            : 
    4224                 :        220 : static int nl80211_register_spurious_class3(struct i802_bss *bss)
    4225                 :            : {
    4226                 :        220 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    4227                 :            :         struct nl_msg *msg;
    4228                 :        220 :         int ret = -1;
    4229                 :            : 
    4230                 :        220 :         msg = nlmsg_alloc();
    4231         [ -  + ]:        220 :         if (!msg)
    4232                 :          0 :                 return -1;
    4233                 :            : 
    4234                 :        220 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_UNEXPECTED_FRAME);
    4235                 :            : 
    4236         [ +  - ]:        220 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
    4237                 :            : 
    4238                 :        220 :         ret = send_and_recv(drv->global, bss->nl_mgmt, msg, NULL, NULL);
    4239                 :        220 :         msg = NULL;
    4240         [ -  + ]:        220 :         if (ret) {
    4241                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Register spurious class3 "
    4242                 :            :                            "failed: ret=%d (%s)",
    4243                 :            :                            ret, strerror(-ret));
    4244                 :          0 :                 goto nla_put_failure;
    4245                 :            :         }
    4246                 :        220 :         ret = 0;
    4247                 :            : nla_put_failure:
    4248                 :        220 :         nlmsg_free(msg);
    4249                 :        220 :         return ret;
    4250                 :            : }
    4251                 :            : 
    4252                 :            : 
    4253                 :        220 : static int nl80211_mgmt_subscribe_ap(struct i802_bss *bss)
    4254                 :            : {
    4255                 :            :         static const int stypes[] = {
    4256                 :            :                 WLAN_FC_STYPE_AUTH,
    4257                 :            :                 WLAN_FC_STYPE_ASSOC_REQ,
    4258                 :            :                 WLAN_FC_STYPE_REASSOC_REQ,
    4259                 :            :                 WLAN_FC_STYPE_DISASSOC,
    4260                 :            :                 WLAN_FC_STYPE_DEAUTH,
    4261                 :            :                 WLAN_FC_STYPE_ACTION,
    4262                 :            :                 WLAN_FC_STYPE_PROBE_REQ,
    4263                 :            : /* Beacon doesn't work as mac80211 doesn't currently allow
    4264                 :            :  * it, but it wouldn't really be the right thing anyway as
    4265                 :            :  * it isn't per interface ... maybe just dump the scan
    4266                 :            :  * results periodically for OLBC?
    4267                 :            :  */
    4268                 :            : //              WLAN_FC_STYPE_BEACON,
    4269                 :            :         };
    4270                 :            :         unsigned int i;
    4271                 :            : 
    4272         [ -  + ]:        220 :         if (nl80211_alloc_mgmt_handle(bss))
    4273                 :          0 :                 return -1;
    4274                 :        220 :         wpa_printf(MSG_DEBUG, "nl80211: Subscribe to mgmt frames with AP "
    4275                 :            :                    "handle %p", bss->nl_mgmt);
    4276                 :            : 
    4277         [ +  + ]:       1760 :         for (i = 0; i < ARRAY_SIZE(stypes); i++) {
    4278         [ -  + ]:       1540 :                 if (nl80211_register_frame(bss, bss->nl_mgmt,
    4279                 :            :                                            (WLAN_FC_TYPE_MGMT << 2) |
    4280                 :       1540 :                                            (stypes[i] << 4),
    4281                 :            :                                            NULL, 0) < 0) {
    4282                 :          0 :                         goto out_err;
    4283                 :            :                 }
    4284                 :            :         }
    4285                 :            : 
    4286         [ -  + ]:        220 :         if (nl80211_register_spurious_class3(bss))
    4287                 :          0 :                 goto out_err;
    4288                 :            : 
    4289         [ -  + ]:        220 :         if (nl80211_get_wiphy_data_ap(bss) == NULL)
    4290                 :          0 :                 goto out_err;
    4291                 :            : 
    4292                 :        220 :         nl80211_mgmt_handle_register_eloop(bss);
    4293                 :        220 :         return 0;
    4294                 :            : 
    4295                 :            : out_err:
    4296                 :          0 :         nl_destroy_handles(&bss->nl_mgmt);
    4297                 :        220 :         return -1;
    4298                 :            : }
    4299                 :            : 
    4300                 :            : 
    4301                 :          0 : static int nl80211_mgmt_subscribe_ap_dev_sme(struct i802_bss *bss)
    4302                 :            : {
    4303         [ #  # ]:          0 :         if (nl80211_alloc_mgmt_handle(bss))
    4304                 :          0 :                 return -1;
    4305                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Subscribe to mgmt frames with AP "
    4306                 :            :                    "handle %p (device SME)", bss->nl_mgmt);
    4307                 :            : 
    4308         [ #  # ]:          0 :         if (nl80211_register_frame(bss, bss->nl_mgmt,
    4309                 :            :                                    (WLAN_FC_TYPE_MGMT << 2) |
    4310                 :            :                                    (WLAN_FC_STYPE_ACTION << 4),
    4311                 :            :                                    NULL, 0) < 0)
    4312                 :          0 :                 goto out_err;
    4313                 :            : 
    4314                 :          0 :         nl80211_mgmt_handle_register_eloop(bss);
    4315                 :          0 :         return 0;
    4316                 :            : 
    4317                 :            : out_err:
    4318                 :          0 :         nl_destroy_handles(&bss->nl_mgmt);
    4319                 :          0 :         return -1;
    4320                 :            : }
    4321                 :            : 
    4322                 :            : 
    4323                 :        626 : static void nl80211_mgmt_unsubscribe(struct i802_bss *bss, const char *reason)
    4324                 :            : {
    4325         [ +  + ]:        626 :         if (bss->nl_mgmt == NULL)
    4326                 :        626 :                 return;
    4327                 :        220 :         wpa_printf(MSG_DEBUG, "nl80211: Unsubscribe mgmt frames handle %p "
    4328                 :            :                    "(%s)", bss->nl_mgmt, reason);
    4329                 :        220 :         nl80211_destroy_eloop_handle(&bss->nl_mgmt);
    4330                 :            : 
    4331                 :        220 :         nl80211_put_wiphy_data_ap(bss);
    4332                 :            : }
    4333                 :            : 
    4334                 :            : 
    4335                 :          0 : static void wpa_driver_nl80211_send_rfkill(void *eloop_ctx, void *timeout_ctx)
    4336                 :            : {
    4337                 :          0 :         wpa_supplicant_event(timeout_ctx, EVENT_INTERFACE_DISABLED, NULL);
    4338                 :          0 : }
    4339                 :            : 
    4340                 :            : 
    4341                 :          0 : static void nl80211_del_p2pdev(struct i802_bss *bss)
    4342                 :            : {
    4343                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    4344                 :            :         struct nl_msg *msg;
    4345                 :            :         int ret;
    4346                 :            : 
    4347                 :          0 :         msg = nlmsg_alloc();
    4348         [ #  # ]:          0 :         if (!msg)
    4349                 :          0 :                 return;
    4350                 :            : 
    4351                 :          0 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_INTERFACE);
    4352         [ #  # ]:          0 :         NLA_PUT_U64(msg, NL80211_ATTR_WDEV, bss->wdev_id);
    4353                 :            : 
    4354                 :          0 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    4355                 :          0 :         msg = NULL;
    4356                 :            : 
    4357                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Delete P2P Device %s (0x%llx): %s",
    4358                 :          0 :                    bss->ifname, (long long unsigned int) bss->wdev_id,
    4359                 :            :                    strerror(-ret));
    4360                 :            : 
    4361                 :            : nla_put_failure:
    4362                 :          0 :         nlmsg_free(msg);
    4363                 :            : }
    4364                 :            : 
    4365                 :            : 
    4366                 :          0 : static int nl80211_set_p2pdev(struct i802_bss *bss, int start)
    4367                 :            : {
    4368                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    4369                 :            :         struct nl_msg *msg;
    4370                 :          0 :         int ret = -1;
    4371                 :            : 
    4372                 :          0 :         msg = nlmsg_alloc();
    4373         [ #  # ]:          0 :         if (!msg)
    4374                 :          0 :                 return -1;
    4375                 :            : 
    4376         [ #  # ]:          0 :         if (start)
    4377                 :          0 :                 nl80211_cmd(drv, msg, 0, NL80211_CMD_START_P2P_DEVICE);
    4378                 :            :         else
    4379                 :          0 :                 nl80211_cmd(drv, msg, 0, NL80211_CMD_STOP_P2P_DEVICE);
    4380                 :            : 
    4381         [ #  # ]:          0 :         NLA_PUT_U64(msg, NL80211_ATTR_WDEV, bss->wdev_id);
    4382                 :            : 
    4383                 :          0 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    4384                 :          0 :         msg = NULL;
    4385                 :            : 
    4386         [ #  # ]:          0 :         wpa_printf(MSG_DEBUG, "nl80211: %s P2P Device %s (0x%llx): %s",
    4387                 :            :                    start ? "Start" : "Stop",
    4388                 :          0 :                    bss->ifname, (long long unsigned int) bss->wdev_id,
    4389                 :            :                    strerror(-ret));
    4390                 :            : 
    4391                 :            : nla_put_failure:
    4392                 :          0 :         nlmsg_free(msg);
    4393                 :          0 :         return ret;
    4394                 :            : }
    4395                 :            : 
    4396                 :            : 
    4397                 :        203 : static int i802_set_iface_flags(struct i802_bss *bss, int up)
    4398                 :            : {
    4399                 :            :         enum nl80211_iftype nlmode;
    4400                 :            : 
    4401                 :        203 :         nlmode = nl80211_get_ifmode(bss);
    4402         [ +  - ]:        203 :         if (nlmode != NL80211_IFTYPE_P2P_DEVICE) {
    4403                 :        203 :                 return linux_set_iface_flags(bss->drv->global->ioctl_sock,
    4404                 :        203 :                                              bss->ifname, up);
    4405                 :            :         }
    4406                 :            : 
    4407                 :            :         /* P2P Device has start/stop which is equivalent */
    4408                 :        203 :         return nl80211_set_p2pdev(bss, up);
    4409                 :            : }
    4410                 :            : 
    4411                 :            : 
    4412                 :            : static int
    4413                 :        203 : wpa_driver_nl80211_finish_drv_init(struct wpa_driver_nl80211_data *drv,
    4414                 :            :                                    const u8 *set_addr, int first)
    4415                 :            : {
    4416                 :        203 :         struct i802_bss *bss = drv->first_bss;
    4417                 :        203 :         int send_rfkill_event = 0;
    4418                 :            :         enum nl80211_iftype nlmode;
    4419                 :            : 
    4420                 :        203 :         drv->ifindex = if_nametoindex(bss->ifname);
    4421                 :        203 :         bss->ifindex = drv->ifindex;
    4422                 :        203 :         bss->wdev_id = drv->global->if_add_wdevid;
    4423                 :        203 :         bss->wdev_id_set = drv->global->if_add_wdevid_set;
    4424                 :            : 
    4425                 :        203 :         bss->if_dynamic = drv->ifindex == drv->global->if_add_ifindex;
    4426 [ +  - ][ -  + ]:        203 :         bss->if_dynamic = bss->if_dynamic || drv->global->if_add_wdevid_set;
    4427                 :        203 :         drv->global->if_add_wdevid_set = 0;
    4428                 :            : 
    4429         [ -  + ]:        203 :         if (wpa_driver_nl80211_capa(drv))
    4430                 :          0 :                 return -1;
    4431                 :            : 
    4432                 :        203 :         wpa_printf(MSG_DEBUG, "nl80211: interface %s in phy %s",
    4433                 :        203 :                    bss->ifname, drv->phyname);
    4434                 :            : 
    4435   [ +  +  +  - ]:        209 :         if (set_addr &&
    4436         [ -  + ]:         12 :             (linux_set_iface_flags(drv->global->ioctl_sock, bss->ifname, 0) ||
    4437                 :          6 :              linux_set_ifhwaddr(drv->global->ioctl_sock, bss->ifname,
    4438                 :            :                                 set_addr)))
    4439                 :          0 :                 return -1;
    4440                 :            : 
    4441 [ +  - ][ -  + ]:        203 :         if (first && nl80211_get_ifmode(bss) == NL80211_IFTYPE_AP)
    4442                 :          0 :                 drv->start_mode_ap = 1;
    4443                 :            : 
    4444         [ +  - ]:        203 :         if (drv->hostapd)
    4445                 :        203 :                 nlmode = NL80211_IFTYPE_AP;
    4446         [ #  # ]:          0 :         else if (bss->if_dynamic)
    4447                 :          0 :                 nlmode = nl80211_get_ifmode(bss);
    4448                 :            :         else
    4449                 :          0 :                 nlmode = NL80211_IFTYPE_STATION;
    4450                 :            : 
    4451         [ -  + ]:        203 :         if (wpa_driver_nl80211_set_mode(bss, nlmode) < 0) {
    4452                 :          0 :                 wpa_printf(MSG_ERROR, "nl80211: Could not configure driver mode");
    4453                 :          0 :                 return -1;
    4454                 :            :         }
    4455                 :            : 
    4456         [ -  + ]:        203 :         if (nlmode == NL80211_IFTYPE_P2P_DEVICE) {
    4457                 :          0 :                 int ret = nl80211_set_p2pdev(bss, 1);
    4458         [ #  # ]:          0 :                 if (ret < 0)
    4459                 :          0 :                         wpa_printf(MSG_ERROR, "nl80211: Could not start P2P device");
    4460                 :          0 :                 nl80211_get_macaddr(bss);
    4461                 :          0 :                 return ret;
    4462                 :            :         }
    4463                 :            : 
    4464         [ -  + ]:        203 :         if (linux_set_iface_flags(drv->global->ioctl_sock, bss->ifname, 1)) {
    4465         [ #  # ]:          0 :                 if (rfkill_is_blocked(drv->rfkill)) {
    4466                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Could not yet enable "
    4467                 :            :                                    "interface '%s' due to rfkill",
    4468                 :          0 :                                    bss->ifname);
    4469                 :          0 :                         drv->if_disabled = 1;
    4470                 :          0 :                         send_rfkill_event = 1;
    4471                 :            :                 } else {
    4472                 :          0 :                         wpa_printf(MSG_ERROR, "nl80211: Could not set "
    4473                 :          0 :                                    "interface '%s' UP", bss->ifname);
    4474                 :          0 :                         return -1;
    4475                 :            :                 }
    4476                 :            :         }
    4477                 :            : 
    4478         [ -  + ]:        203 :         if (!drv->hostapd)
    4479                 :          0 :                 netlink_send_oper_ifla(drv->global->netlink, drv->ifindex,
    4480                 :            :                                        1, IF_OPER_DORMANT);
    4481                 :            : 
    4482         [ -  + ]:        203 :         if (linux_get_ifhwaddr(drv->global->ioctl_sock, bss->ifname,
    4483                 :        203 :                                bss->addr))
    4484                 :          0 :                 return -1;
    4485                 :            : 
    4486         [ -  + ]:        203 :         if (send_rfkill_event) {
    4487                 :          0 :                 eloop_register_timeout(0, 0, wpa_driver_nl80211_send_rfkill,
    4488                 :            :                                        drv, drv->ctx);
    4489                 :            :         }
    4490                 :            : 
    4491                 :        203 :         return 0;
    4492                 :            : }
    4493                 :            : 
    4494                 :            : 
    4495                 :        203 : static int wpa_driver_nl80211_del_beacon(struct wpa_driver_nl80211_data *drv)
    4496                 :            : {
    4497                 :            :         struct nl_msg *msg;
    4498                 :            : 
    4499                 :        203 :         msg = nlmsg_alloc();
    4500         [ -  + ]:        203 :         if (!msg)
    4501                 :          0 :                 return -ENOMEM;
    4502                 :            : 
    4503                 :        203 :         wpa_printf(MSG_DEBUG, "nl80211: Remove beacon (ifindex=%d)",
    4504                 :            :                    drv->ifindex);
    4505                 :        203 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_BEACON);
    4506         [ +  - ]:        203 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
    4507                 :            : 
    4508                 :        203 :         return send_and_recv_msgs(drv, msg, NULL, NULL);
    4509                 :            :  nla_put_failure:
    4510                 :          0 :         nlmsg_free(msg);
    4511                 :        203 :         return -ENOBUFS;
    4512                 :            : }
    4513                 :            : 
    4514                 :            : 
    4515                 :            : /**
    4516                 :            :  * wpa_driver_nl80211_deinit - Deinitialize nl80211 driver interface
    4517                 :            :  * @bss: Pointer to private nl80211 data from wpa_driver_nl80211_init()
    4518                 :            :  *
    4519                 :            :  * Shut down driver interface and processing of driver events. Free
    4520                 :            :  * private data buffer if one was allocated in wpa_driver_nl80211_init().
    4521                 :            :  */
    4522                 :        203 : static void wpa_driver_nl80211_deinit(struct i802_bss *bss)
    4523                 :            : {
    4524                 :        203 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    4525                 :            : 
    4526                 :        203 :         bss->in_deinit = 1;
    4527         [ +  - ]:        203 :         if (drv->data_tx_status)
    4528                 :        203 :                 eloop_unregister_read_sock(drv->eapol_tx_sock);
    4529         [ +  - ]:        203 :         if (drv->eapol_tx_sock >= 0)
    4530                 :        203 :                 close(drv->eapol_tx_sock);
    4531                 :            : 
    4532         [ -  + ]:        203 :         if (bss->nl_preq)
    4533                 :          0 :                 wpa_driver_nl80211_probe_req_report(bss, 0);
    4534         [ -  + ]:        203 :         if (bss->added_if_into_bridge) {
    4535         [ #  # ]:          0 :                 if (linux_br_del_if(drv->global->ioctl_sock, bss->brname,
    4536                 :          0 :                                     bss->ifname) < 0)
    4537                 :          0 :                         wpa_printf(MSG_INFO, "nl80211: Failed to remove "
    4538                 :            :                                    "interface %s from bridge %s: %s",
    4539                 :          0 :                                    bss->ifname, bss->brname, strerror(errno));
    4540                 :            :         }
    4541         [ -  + ]:        203 :         if (bss->added_bridge) {
    4542         [ #  # ]:          0 :                 if (linux_br_del(drv->global->ioctl_sock, bss->brname) < 0)
    4543                 :          0 :                         wpa_printf(MSG_INFO, "nl80211: Failed to remove "
    4544                 :            :                                    "bridge %s: %s",
    4545                 :          0 :                                    bss->brname, strerror(errno));
    4546                 :            :         }
    4547                 :            : 
    4548                 :        203 :         nl80211_remove_monitor_interface(drv);
    4549                 :            : 
    4550         [ +  - ]:        203 :         if (is_ap_interface(drv->nlmode))
    4551                 :        203 :                 wpa_driver_nl80211_del_beacon(drv);
    4552                 :            : 
    4553         [ +  - ]:        203 :         if (drv->eapol_sock >= 0) {
    4554                 :        203 :                 eloop_unregister_read_sock(drv->eapol_sock);
    4555                 :        203 :                 close(drv->eapol_sock);
    4556                 :            :         }
    4557                 :            : 
    4558         [ -  + ]:        203 :         if (drv->if_indices != drv->default_if_indices)
    4559                 :          0 :                 os_free(drv->if_indices);
    4560                 :            : 
    4561         [ -  + ]:        203 :         if (drv->disabled_11b_rates)
    4562                 :          0 :                 nl80211_disable_11b_rates(drv, drv->ifindex, 0);
    4563                 :            : 
    4564                 :        203 :         netlink_send_oper_ifla(drv->global->netlink, drv->ifindex, 0,
    4565                 :            :                                IF_OPER_UP);
    4566                 :        203 :         rfkill_deinit(drv->rfkill);
    4567                 :            : 
    4568                 :        203 :         eloop_cancel_timeout(wpa_driver_nl80211_scan_timeout, drv, drv->ctx);
    4569                 :            : 
    4570         [ +  - ]:        203 :         if (!drv->start_iface_up)
    4571                 :        203 :                 (void) i802_set_iface_flags(bss, 0);
    4572         [ +  - ]:        203 :         if (drv->nlmode != NL80211_IFTYPE_P2P_DEVICE) {
    4573 [ +  - ][ +  - ]:        203 :                 if (!drv->hostapd || !drv->start_mode_ap)
    4574                 :        203 :                         wpa_driver_nl80211_set_mode(bss,
    4575                 :            :                                                     NL80211_IFTYPE_STATION);
    4576                 :        203 :                 nl80211_mgmt_unsubscribe(bss, "deinit");
    4577                 :            :         } else {
    4578                 :          0 :                 nl80211_mgmt_unsubscribe(bss, "deinit");
    4579                 :          0 :                 nl80211_del_p2pdev(bss);
    4580                 :            :         }
    4581                 :        203 :         nl_cb_put(drv->nl_cb);
    4582                 :            : 
    4583                 :        203 :         nl80211_destroy_bss(drv->first_bss);
    4584                 :            : 
    4585                 :        203 :         os_free(drv->filter_ssids);
    4586                 :            : 
    4587                 :        203 :         os_free(drv->auth_ie);
    4588                 :            : 
    4589         [ +  - ]:        203 :         if (drv->in_interface_list)
    4590                 :        203 :                 dl_list_del(&drv->list);
    4591                 :            : 
    4592                 :        203 :         os_free(drv->extended_capa);
    4593                 :        203 :         os_free(drv->extended_capa_mask);
    4594                 :        203 :         os_free(drv->first_bss);
    4595                 :        203 :         os_free(drv);
    4596                 :        203 : }
    4597                 :            : 
    4598                 :            : 
    4599                 :            : /**
    4600                 :            :  * wpa_driver_nl80211_scan_timeout - Scan timeout to report scan completion
    4601                 :            :  * @eloop_ctx: Driver private data
    4602                 :            :  * @timeout_ctx: ctx argument given to wpa_driver_nl80211_init()
    4603                 :            :  *
    4604                 :            :  * This function can be used as registered timeout when starting a scan to
    4605                 :            :  * generate a scan completed event if the driver does not report this.
    4606                 :            :  */
    4607                 :          0 : static void wpa_driver_nl80211_scan_timeout(void *eloop_ctx, void *timeout_ctx)
    4608                 :            : {
    4609                 :          0 :         struct wpa_driver_nl80211_data *drv = eloop_ctx;
    4610         [ #  # ]:          0 :         if (drv->ap_scan_as_station != NL80211_IFTYPE_UNSPECIFIED) {
    4611                 :          0 :                 wpa_driver_nl80211_set_mode(drv->first_bss,
    4612                 :            :                                             drv->ap_scan_as_station);
    4613                 :          0 :                 drv->ap_scan_as_station = NL80211_IFTYPE_UNSPECIFIED;
    4614                 :            :         }
    4615                 :          0 :         wpa_printf(MSG_DEBUG, "Scan timeout - try to get results");
    4616                 :          0 :         wpa_supplicant_event(timeout_ctx, EVENT_SCAN_RESULTS, NULL);
    4617                 :          0 : }
    4618                 :            : 
    4619                 :            : 
    4620                 :            : static struct nl_msg *
    4621                 :         24 : nl80211_scan_common(struct wpa_driver_nl80211_data *drv, u8 cmd,
    4622                 :            :                     struct wpa_driver_scan_params *params, u64 *wdev_id)
    4623                 :            : {
    4624                 :            :         struct nl_msg *msg;
    4625                 :            :         size_t i;
    4626                 :            : 
    4627                 :         24 :         msg = nlmsg_alloc();
    4628         [ -  + ]:         24 :         if (!msg)
    4629                 :          0 :                 return NULL;
    4630                 :            : 
    4631                 :         24 :         nl80211_cmd(drv, msg, 0, cmd);
    4632                 :            : 
    4633         [ +  - ]:         24 :         if (!wdev_id)
    4634         [ +  - ]:         24 :                 NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
    4635                 :            :         else
    4636         [ #  # ]:          0 :                 NLA_PUT_U64(msg, NL80211_ATTR_WDEV, *wdev_id);
    4637                 :            : 
    4638         [ -  + ]:         24 :         if (params->num_ssids) {
    4639                 :            :                 struct nlattr *ssids;
    4640                 :            : 
    4641                 :          0 :                 ssids = nla_nest_start(msg, NL80211_ATTR_SCAN_SSIDS);
    4642         [ #  # ]:          0 :                 if (ssids == NULL)
    4643                 :          0 :                         goto fail;
    4644         [ #  # ]:          0 :                 for (i = 0; i < params->num_ssids; i++) {
    4645                 :          0 :                         wpa_hexdump_ascii(MSG_MSGDUMP, "nl80211: Scan SSID",
    4646                 :          0 :                                           params->ssids[i].ssid,
    4647                 :            :                                           params->ssids[i].ssid_len);
    4648         [ #  # ]:          0 :                         if (nla_put(msg, i + 1, params->ssids[i].ssid_len,
    4649                 :          0 :                                     params->ssids[i].ssid) < 0)
    4650                 :          0 :                                 goto fail;
    4651                 :            :                 }
    4652                 :          0 :                 nla_nest_end(msg, ssids);
    4653                 :            :         }
    4654                 :            : 
    4655         [ -  + ]:         24 :         if (params->extra_ies) {
    4656                 :          0 :                 wpa_hexdump(MSG_MSGDUMP, "nl80211: Scan extra IEs",
    4657                 :          0 :                             params->extra_ies, params->extra_ies_len);
    4658         [ #  # ]:          0 :                 if (nla_put(msg, NL80211_ATTR_IE, params->extra_ies_len,
    4659                 :          0 :                             params->extra_ies) < 0)
    4660                 :          0 :                         goto fail;
    4661                 :            :         }
    4662                 :            : 
    4663         [ +  - ]:         24 :         if (params->freqs) {
    4664                 :            :                 struct nlattr *freqs;
    4665                 :         24 :                 freqs = nla_nest_start(msg, NL80211_ATTR_SCAN_FREQUENCIES);
    4666         [ -  + ]:         24 :                 if (freqs == NULL)
    4667                 :          0 :                         goto fail;
    4668         [ +  + ]:        267 :                 for (i = 0; params->freqs[i]; i++) {
    4669                 :        243 :                         wpa_printf(MSG_MSGDUMP, "nl80211: Scan frequency %u "
    4670                 :        243 :                                    "MHz", params->freqs[i]);
    4671         [ -  + ]:        243 :                         if (nla_put_u32(msg, i + 1, params->freqs[i]) < 0)
    4672                 :          0 :                                 goto fail;
    4673                 :            :                 }
    4674                 :         24 :                 nla_nest_end(msg, freqs);
    4675                 :            :         }
    4676                 :            : 
    4677                 :         24 :         os_free(drv->filter_ssids);
    4678                 :         24 :         drv->filter_ssids = params->filter_ssids;
    4679                 :         24 :         params->filter_ssids = NULL;
    4680                 :         24 :         drv->num_filter_ssids = params->num_filter_ssids;
    4681                 :            : 
    4682                 :         24 :         return msg;
    4683                 :            : 
    4684                 :            : fail:
    4685                 :            : nla_put_failure:
    4686                 :          0 :         nlmsg_free(msg);
    4687                 :         24 :         return NULL;
    4688                 :            : }
    4689                 :            : 
    4690                 :            : 
    4691                 :            : /**
    4692                 :            :  * wpa_driver_nl80211_scan - Request the driver to initiate scan
    4693                 :            :  * @bss: Pointer to private driver data from wpa_driver_nl80211_init()
    4694                 :            :  * @params: Scan parameters
    4695                 :            :  * Returns: 0 on success, -1 on failure
    4696                 :            :  */
    4697                 :         24 : static int wpa_driver_nl80211_scan(struct i802_bss *bss,
    4698                 :            :                                    struct wpa_driver_scan_params *params)
    4699                 :            : {
    4700                 :         24 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    4701                 :         24 :         int ret = -1, timeout;
    4702                 :         24 :         struct nl_msg *msg = NULL;
    4703                 :            : 
    4704                 :         24 :         wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: scan request");
    4705                 :         24 :         drv->scan_for_auth = 0;
    4706                 :            : 
    4707         [ -  + ]:         24 :         msg = nl80211_scan_common(drv, NL80211_CMD_TRIGGER_SCAN, params,
    4708                 :         24 :                                   bss->wdev_id_set ? &bss->wdev_id : NULL);
    4709         [ -  + ]:         24 :         if (!msg)
    4710                 :          0 :                 return -1;
    4711                 :            : 
    4712         [ -  + ]:         24 :         if (params->p2p_probe) {
    4713                 :            :                 struct nlattr *rates;
    4714                 :            : 
    4715                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: P2P probe - mask SuppRates");
    4716                 :            : 
    4717                 :          0 :                 rates = nla_nest_start(msg, NL80211_ATTR_SCAN_SUPP_RATES);
    4718         [ #  # ]:          0 :                 if (rates == NULL)
    4719                 :          0 :                         goto nla_put_failure;
    4720                 :            : 
    4721                 :            :                 /*
    4722                 :            :                  * Remove 2.4 GHz rates 1, 2, 5.5, 11 Mbps from supported rates
    4723                 :            :                  * by masking out everything else apart from the OFDM rates 6,
    4724                 :            :                  * 9, 12, 18, 24, 36, 48, 54 Mbps from non-MCS rates. All 5 GHz
    4725                 :            :                  * rates are left enabled.
    4726                 :            :                  */
    4727         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_BAND_2GHZ, 8,
    4728                 :            :                         "\x0c\x12\x18\x24\x30\x48\x60\x6c");
    4729                 :          0 :                 nla_nest_end(msg, rates);
    4730                 :            : 
    4731         [ #  # ]:          0 :                 NLA_PUT_FLAG(msg, NL80211_ATTR_TX_NO_CCK_RATE);
    4732                 :            :         }
    4733                 :            : 
    4734                 :         24 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    4735                 :         24 :         msg = NULL;
    4736         [ -  + ]:         24 :         if (ret) {
    4737                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Scan trigger failed: ret=%d "
    4738                 :            :                            "(%s)", ret, strerror(-ret));
    4739 [ #  # ][ #  # ]:          0 :                 if (drv->hostapd && is_ap_interface(drv->nlmode)) {
    4740                 :            :                         /*
    4741                 :            :                          * mac80211 does not allow scan requests in AP mode, so
    4742                 :            :                          * try to do this in station mode.
    4743                 :            :                          */
    4744         [ #  # ]:          0 :                         if (wpa_driver_nl80211_set_mode(
    4745                 :            :                                     bss, NL80211_IFTYPE_STATION))
    4746                 :          0 :                                 goto nla_put_failure;
    4747                 :            : 
    4748         [ #  # ]:          0 :                         if (wpa_driver_nl80211_scan(bss, params)) {
    4749                 :          0 :                                 wpa_driver_nl80211_set_mode(bss, drv->nlmode);
    4750                 :          0 :                                 goto nla_put_failure;
    4751                 :            :                         }
    4752                 :            : 
    4753                 :            :                         /* Restore AP mode when processing scan results */
    4754                 :          0 :                         drv->ap_scan_as_station = drv->nlmode;
    4755                 :          0 :                         ret = 0;
    4756                 :            :                 } else
    4757                 :            :                         goto nla_put_failure;
    4758                 :            :         }
    4759                 :            : 
    4760                 :         24 :         drv->scan_state = SCAN_REQUESTED;
    4761                 :            :         /* Not all drivers generate "scan completed" wireless event, so try to
    4762                 :            :          * read results after a timeout. */
    4763                 :         24 :         timeout = 10;
    4764         [ +  + ]:         24 :         if (drv->scan_complete_events) {
    4765                 :            :                 /*
    4766                 :            :                  * The driver seems to deliver events to notify when scan is
    4767                 :            :                  * complete, so use longer timeout to avoid race conditions
    4768                 :            :                  * with scanning and following association request.
    4769                 :            :                  */
    4770                 :         12 :                 timeout = 30;
    4771                 :            :         }
    4772                 :         24 :         wpa_printf(MSG_DEBUG, "Scan requested (ret=%d) - scan timeout %d "
    4773                 :            :                    "seconds", ret, timeout);
    4774                 :         24 :         eloop_cancel_timeout(wpa_driver_nl80211_scan_timeout, drv, drv->ctx);
    4775                 :         24 :         eloop_register_timeout(timeout, 0, wpa_driver_nl80211_scan_timeout,
    4776                 :            :                                drv, drv->ctx);
    4777                 :            : 
    4778                 :            : nla_put_failure:
    4779                 :         24 :         nlmsg_free(msg);
    4780                 :         24 :         return ret;
    4781                 :            : }
    4782                 :            : 
    4783                 :            : 
    4784                 :            : /**
    4785                 :            :  * wpa_driver_nl80211_sched_scan - Initiate a scheduled scan
    4786                 :            :  * @priv: Pointer to private driver data from wpa_driver_nl80211_init()
    4787                 :            :  * @params: Scan parameters
    4788                 :            :  * @interval: Interval between scan cycles in milliseconds
    4789                 :            :  * Returns: 0 on success, -1 on failure or if not supported
    4790                 :            :  */
    4791                 :          0 : static int wpa_driver_nl80211_sched_scan(void *priv,
    4792                 :            :                                          struct wpa_driver_scan_params *params,
    4793                 :            :                                          u32 interval)
    4794                 :            : {
    4795                 :          0 :         struct i802_bss *bss = priv;
    4796                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    4797                 :          0 :         int ret = -1;
    4798                 :            :         struct nl_msg *msg;
    4799                 :            :         size_t i;
    4800                 :            : 
    4801                 :          0 :         wpa_dbg(drv->ctx, MSG_DEBUG, "nl80211: sched_scan request");
    4802                 :            : 
    4803                 :            : #ifdef ANDROID
    4804                 :            :         if (!drv->capa.sched_scan_supported)
    4805                 :            :                 return android_pno_start(bss, params);
    4806                 :            : #endif /* ANDROID */
    4807                 :            : 
    4808         [ #  # ]:          0 :         msg = nl80211_scan_common(drv, NL80211_CMD_START_SCHED_SCAN, params,
    4809                 :          0 :                                   bss->wdev_id_set ? &bss->wdev_id : NULL);
    4810         [ #  # ]:          0 :         if (!msg)
    4811                 :          0 :                 goto nla_put_failure;
    4812                 :            : 
    4813         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_SCHED_SCAN_INTERVAL, interval);
    4814                 :            : 
    4815 [ #  # ][ #  # ]:          0 :         if ((drv->num_filter_ssids &&
    4816         [ #  # ]:          0 :             (int) drv->num_filter_ssids <= drv->capa.max_match_sets) ||
    4817                 :          0 :             params->filter_rssi) {
    4818                 :            :                 struct nlattr *match_sets;
    4819                 :          0 :                 match_sets = nla_nest_start(msg, NL80211_ATTR_SCHED_SCAN_MATCH);
    4820         [ #  # ]:          0 :                 if (match_sets == NULL)
    4821                 :          0 :                         goto nla_put_failure;
    4822                 :            : 
    4823         [ #  # ]:          0 :                 for (i = 0; i < drv->num_filter_ssids; i++) {
    4824                 :            :                         struct nlattr *match_set_ssid;
    4825                 :          0 :                         wpa_hexdump_ascii(MSG_MSGDUMP,
    4826                 :            :                                           "nl80211: Sched scan filter SSID",
    4827                 :          0 :                                           drv->filter_ssids[i].ssid,
    4828                 :          0 :                                           drv->filter_ssids[i].ssid_len);
    4829                 :            : 
    4830                 :          0 :                         match_set_ssid = nla_nest_start(msg, i + 1);
    4831         [ #  # ]:          0 :                         if (match_set_ssid == NULL)
    4832                 :          0 :                                 goto nla_put_failure;
    4833         [ #  # ]:          0 :                         NLA_PUT(msg, NL80211_ATTR_SCHED_SCAN_MATCH_SSID,
    4834                 :            :                                 drv->filter_ssids[i].ssid_len,
    4835                 :            :                                 drv->filter_ssids[i].ssid);
    4836                 :            : 
    4837                 :          0 :                         nla_nest_end(msg, match_set_ssid);
    4838                 :            :                 }
    4839                 :            : 
    4840         [ #  # ]:          0 :                 if (params->filter_rssi) {
    4841                 :            :                         struct nlattr *match_set_rssi;
    4842                 :          0 :                         match_set_rssi = nla_nest_start(msg, 0);
    4843         [ #  # ]:          0 :                         if (match_set_rssi == NULL)
    4844                 :          0 :                                 goto nla_put_failure;
    4845         [ #  # ]:          0 :                         NLA_PUT_U32(msg, NL80211_SCHED_SCAN_MATCH_ATTR_RSSI,
    4846                 :            :                                     params->filter_rssi);
    4847                 :          0 :                         wpa_printf(MSG_MSGDUMP,
    4848                 :            :                                    "nl80211: Sched scan RSSI filter %d dBm",
    4849                 :            :                                    params->filter_rssi);
    4850                 :          0 :                         nla_nest_end(msg, match_set_rssi);
    4851                 :            :                 }
    4852                 :            : 
    4853                 :          0 :                 nla_nest_end(msg, match_sets);
    4854                 :            :         }
    4855                 :            : 
    4856                 :          0 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    4857                 :            : 
    4858                 :            :         /* TODO: if we get an error here, we should fall back to normal scan */
    4859                 :            : 
    4860                 :          0 :         msg = NULL;
    4861         [ #  # ]:          0 :         if (ret) {
    4862                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Sched scan start failed: "
    4863                 :            :                            "ret=%d (%s)", ret, strerror(-ret));
    4864                 :          0 :                 goto nla_put_failure;
    4865                 :            :         }
    4866                 :            : 
    4867                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Sched scan requested (ret=%d) - "
    4868                 :            :                    "scan interval %d msec", ret, interval);
    4869                 :            : 
    4870                 :            : nla_put_failure:
    4871                 :          0 :         nlmsg_free(msg);
    4872                 :          0 :         return ret;
    4873                 :            : }
    4874                 :            : 
    4875                 :            : 
    4876                 :            : /**
    4877                 :            :  * wpa_driver_nl80211_stop_sched_scan - Stop a scheduled scan
    4878                 :            :  * @priv: Pointer to private driver data from wpa_driver_nl80211_init()
    4879                 :            :  * Returns: 0 on success, -1 on failure or if not supported
    4880                 :            :  */
    4881                 :          0 : static int wpa_driver_nl80211_stop_sched_scan(void *priv)
    4882                 :            : {
    4883                 :          0 :         struct i802_bss *bss = priv;
    4884                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    4885                 :          0 :         int ret = 0;
    4886                 :            :         struct nl_msg *msg;
    4887                 :            : 
    4888                 :            : #ifdef ANDROID
    4889                 :            :         if (!drv->capa.sched_scan_supported)
    4890                 :            :                 return android_pno_stop(bss);
    4891                 :            : #endif /* ANDROID */
    4892                 :            : 
    4893                 :          0 :         msg = nlmsg_alloc();
    4894         [ #  # ]:          0 :         if (!msg)
    4895                 :          0 :                 return -1;
    4896                 :            : 
    4897                 :          0 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_STOP_SCHED_SCAN);
    4898                 :            : 
    4899         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
    4900                 :            : 
    4901                 :          0 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    4902                 :          0 :         msg = NULL;
    4903         [ #  # ]:          0 :         if (ret) {
    4904                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Sched scan stop failed: "
    4905                 :            :                            "ret=%d (%s)", ret, strerror(-ret));
    4906                 :          0 :                 goto nla_put_failure;
    4907                 :            :         }
    4908                 :            : 
    4909                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Sched scan stop sent (ret=%d)", ret);
    4910                 :            : 
    4911                 :            : nla_put_failure:
    4912                 :          0 :         nlmsg_free(msg);
    4913                 :          0 :         return ret;
    4914                 :            : }
    4915                 :            : 
    4916                 :            : 
    4917                 :          0 : static const u8 * nl80211_get_ie(const u8 *ies, size_t ies_len, u8 ie)
    4918                 :            : {
    4919                 :            :         const u8 *end, *pos;
    4920                 :            : 
    4921         [ #  # ]:          0 :         if (ies == NULL)
    4922                 :          0 :                 return NULL;
    4923                 :            : 
    4924                 :          0 :         pos = ies;
    4925                 :          0 :         end = ies + ies_len;
    4926                 :            : 
    4927         [ #  # ]:          0 :         while (pos + 1 < end) {
    4928         [ #  # ]:          0 :                 if (pos + 2 + pos[1] > end)
    4929                 :          0 :                         break;
    4930         [ #  # ]:          0 :                 if (pos[0] == ie)
    4931                 :          0 :                         return pos;
    4932                 :          0 :                 pos += 2 + pos[1];
    4933                 :            :         }
    4934                 :            : 
    4935                 :          0 :         return NULL;
    4936                 :            : }
    4937                 :            : 
    4938                 :            : 
    4939                 :          0 : static int nl80211_scan_filtered(struct wpa_driver_nl80211_data *drv,
    4940                 :            :                                  const u8 *ie, size_t ie_len)
    4941                 :            : {
    4942                 :            :         const u8 *ssid;
    4943                 :            :         size_t i;
    4944                 :            : 
    4945         [ #  # ]:          0 :         if (drv->filter_ssids == NULL)
    4946                 :          0 :                 return 0;
    4947                 :            : 
    4948                 :          0 :         ssid = nl80211_get_ie(ie, ie_len, WLAN_EID_SSID);
    4949         [ #  # ]:          0 :         if (ssid == NULL)
    4950                 :          0 :                 return 1;
    4951                 :            : 
    4952         [ #  # ]:          0 :         for (i = 0; i < drv->num_filter_ssids; i++) {
    4953 [ #  # ][ #  # ]:          0 :                 if (ssid[1] == drv->filter_ssids[i].ssid_len &&
    4954                 :          0 :                     os_memcmp(ssid + 2, drv->filter_ssids[i].ssid, ssid[1]) ==
    4955                 :            :                     0)
    4956                 :          0 :                         return 0;
    4957                 :            :         }
    4958                 :            : 
    4959                 :          0 :         return 1;
    4960                 :            : }
    4961                 :            : 
    4962                 :            : 
    4963                 :          0 : static int bss_info_handler(struct nl_msg *msg, void *arg)
    4964                 :            : {
    4965                 :            :         struct nlattr *tb[NL80211_ATTR_MAX + 1];
    4966                 :          0 :         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
    4967                 :            :         struct nlattr *bss[NL80211_BSS_MAX + 1];
    4968                 :            :         static struct nla_policy bss_policy[NL80211_BSS_MAX + 1] = {
    4969                 :            :                 [NL80211_BSS_BSSID] = { .type = NLA_UNSPEC },
    4970                 :            :                 [NL80211_BSS_FREQUENCY] = { .type = NLA_U32 },
    4971                 :            :                 [NL80211_BSS_TSF] = { .type = NLA_U64 },
    4972                 :            :                 [NL80211_BSS_BEACON_INTERVAL] = { .type = NLA_U16 },
    4973                 :            :                 [NL80211_BSS_CAPABILITY] = { .type = NLA_U16 },
    4974                 :            :                 [NL80211_BSS_INFORMATION_ELEMENTS] = { .type = NLA_UNSPEC },
    4975                 :            :                 [NL80211_BSS_SIGNAL_MBM] = { .type = NLA_U32 },
    4976                 :            :                 [NL80211_BSS_SIGNAL_UNSPEC] = { .type = NLA_U8 },
    4977                 :            :                 [NL80211_BSS_STATUS] = { .type = NLA_U32 },
    4978                 :            :                 [NL80211_BSS_SEEN_MS_AGO] = { .type = NLA_U32 },
    4979                 :            :                 [NL80211_BSS_BEACON_IES] = { .type = NLA_UNSPEC },
    4980                 :            :         };
    4981                 :          0 :         struct nl80211_bss_info_arg *_arg = arg;
    4982                 :          0 :         struct wpa_scan_results *res = _arg->res;
    4983                 :            :         struct wpa_scan_res **tmp;
    4984                 :            :         struct wpa_scan_res *r;
    4985                 :            :         const u8 *ie, *beacon_ie;
    4986                 :            :         size_t ie_len, beacon_ie_len;
    4987                 :            :         u8 *pos;
    4988                 :            :         size_t i;
    4989                 :            : 
    4990                 :          0 :         nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
    4991                 :            :                   genlmsg_attrlen(gnlh, 0), NULL);
    4992         [ #  # ]:          0 :         if (!tb[NL80211_ATTR_BSS])
    4993                 :          0 :                 return NL_SKIP;
    4994         [ #  # ]:          0 :         if (nla_parse_nested(bss, NL80211_BSS_MAX, tb[NL80211_ATTR_BSS],
    4995                 :            :                              bss_policy))
    4996                 :          0 :                 return NL_SKIP;
    4997         [ #  # ]:          0 :         if (bss[NL80211_BSS_STATUS]) {
    4998                 :            :                 enum nl80211_bss_status status;
    4999                 :          0 :                 status = nla_get_u32(bss[NL80211_BSS_STATUS]);
    5000 [ #  # ][ #  # ]:          0 :                 if (status == NL80211_BSS_STATUS_ASSOCIATED &&
    5001                 :          0 :                     bss[NL80211_BSS_FREQUENCY]) {
    5002                 :          0 :                         _arg->assoc_freq =
    5003                 :          0 :                                 nla_get_u32(bss[NL80211_BSS_FREQUENCY]);
    5004                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Associated on %u MHz",
    5005                 :            :                                    _arg->assoc_freq);
    5006                 :            :                 }
    5007 [ #  # ][ #  # ]:          0 :                 if (status == NL80211_BSS_STATUS_ASSOCIATED &&
    5008                 :          0 :                     bss[NL80211_BSS_BSSID]) {
    5009                 :          0 :                         os_memcpy(_arg->assoc_bssid,
    5010                 :            :                                   nla_data(bss[NL80211_BSS_BSSID]), ETH_ALEN);
    5011                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Associated with "
    5012                 :          0 :                                    MACSTR, MAC2STR(_arg->assoc_bssid));
    5013                 :            :                 }
    5014                 :            :         }
    5015         [ #  # ]:          0 :         if (!res)
    5016                 :          0 :                 return NL_SKIP;
    5017         [ #  # ]:          0 :         if (bss[NL80211_BSS_INFORMATION_ELEMENTS]) {
    5018                 :          0 :                 ie = nla_data(bss[NL80211_BSS_INFORMATION_ELEMENTS]);
    5019                 :          0 :                 ie_len = nla_len(bss[NL80211_BSS_INFORMATION_ELEMENTS]);
    5020                 :            :         } else {
    5021                 :          0 :                 ie = NULL;
    5022                 :          0 :                 ie_len = 0;
    5023                 :            :         }
    5024         [ #  # ]:          0 :         if (bss[NL80211_BSS_BEACON_IES]) {
    5025                 :          0 :                 beacon_ie = nla_data(bss[NL80211_BSS_BEACON_IES]);
    5026                 :          0 :                 beacon_ie_len = nla_len(bss[NL80211_BSS_BEACON_IES]);
    5027                 :            :         } else {
    5028                 :          0 :                 beacon_ie = NULL;
    5029                 :          0 :                 beacon_ie_len = 0;
    5030                 :            :         }
    5031                 :            : 
    5032 [ #  # ][ #  # ]:          0 :         if (nl80211_scan_filtered(_arg->drv, ie ? ie : beacon_ie,
                 [ #  # ]
    5033                 :            :                                   ie ? ie_len : beacon_ie_len))
    5034                 :          0 :                 return NL_SKIP;
    5035                 :            : 
    5036                 :          0 :         r = os_zalloc(sizeof(*r) + ie_len + beacon_ie_len);
    5037         [ #  # ]:          0 :         if (r == NULL)
    5038                 :          0 :                 return NL_SKIP;
    5039         [ #  # ]:          0 :         if (bss[NL80211_BSS_BSSID])
    5040                 :          0 :                 os_memcpy(r->bssid, nla_data(bss[NL80211_BSS_BSSID]),
    5041                 :            :                           ETH_ALEN);
    5042         [ #  # ]:          0 :         if (bss[NL80211_BSS_FREQUENCY])
    5043                 :          0 :                 r->freq = nla_get_u32(bss[NL80211_BSS_FREQUENCY]);
    5044         [ #  # ]:          0 :         if (bss[NL80211_BSS_BEACON_INTERVAL])
    5045                 :          0 :                 r->beacon_int = nla_get_u16(bss[NL80211_BSS_BEACON_INTERVAL]);
    5046         [ #  # ]:          0 :         if (bss[NL80211_BSS_CAPABILITY])
    5047                 :          0 :                 r->caps = nla_get_u16(bss[NL80211_BSS_CAPABILITY]);
    5048                 :          0 :         r->flags |= WPA_SCAN_NOISE_INVALID;
    5049         [ #  # ]:          0 :         if (bss[NL80211_BSS_SIGNAL_MBM]) {
    5050                 :          0 :                 r->level = nla_get_u32(bss[NL80211_BSS_SIGNAL_MBM]);
    5051                 :          0 :                 r->level /= 100; /* mBm to dBm */
    5052                 :          0 :                 r->flags |= WPA_SCAN_LEVEL_DBM | WPA_SCAN_QUAL_INVALID;
    5053         [ #  # ]:          0 :         } else if (bss[NL80211_BSS_SIGNAL_UNSPEC]) {
    5054                 :          0 :                 r->level = nla_get_u8(bss[NL80211_BSS_SIGNAL_UNSPEC]);
    5055                 :          0 :                 r->flags |= WPA_SCAN_QUAL_INVALID;
    5056                 :            :         } else
    5057                 :          0 :                 r->flags |= WPA_SCAN_LEVEL_INVALID | WPA_SCAN_QUAL_INVALID;
    5058         [ #  # ]:          0 :         if (bss[NL80211_BSS_TSF])
    5059                 :          0 :                 r->tsf = nla_get_u64(bss[NL80211_BSS_TSF]);
    5060         [ #  # ]:          0 :         if (bss[NL80211_BSS_SEEN_MS_AGO])
    5061                 :          0 :                 r->age = nla_get_u32(bss[NL80211_BSS_SEEN_MS_AGO]);
    5062                 :          0 :         r->ie_len = ie_len;
    5063                 :          0 :         pos = (u8 *) (r + 1);
    5064         [ #  # ]:          0 :         if (ie) {
    5065                 :          0 :                 os_memcpy(pos, ie, ie_len);
    5066                 :          0 :                 pos += ie_len;
    5067                 :            :         }
    5068                 :          0 :         r->beacon_ie_len = beacon_ie_len;
    5069         [ #  # ]:          0 :         if (beacon_ie)
    5070                 :          0 :                 os_memcpy(pos, beacon_ie, beacon_ie_len);
    5071                 :            : 
    5072         [ #  # ]:          0 :         if (bss[NL80211_BSS_STATUS]) {
    5073                 :            :                 enum nl80211_bss_status status;
    5074                 :          0 :                 status = nla_get_u32(bss[NL80211_BSS_STATUS]);
    5075      [ #  #  # ]:          0 :                 switch (status) {
    5076                 :            :                 case NL80211_BSS_STATUS_AUTHENTICATED:
    5077                 :          0 :                         r->flags |= WPA_SCAN_AUTHENTICATED;
    5078                 :          0 :                         break;
    5079                 :            :                 case NL80211_BSS_STATUS_ASSOCIATED:
    5080                 :          0 :                         r->flags |= WPA_SCAN_ASSOCIATED;
    5081                 :          0 :                         break;
    5082                 :            :                 default:
    5083                 :          0 :                         break;
    5084                 :            :                 }
    5085                 :            :         }
    5086                 :            : 
    5087                 :            :         /*
    5088                 :            :          * cfg80211 maintains separate BSS table entries for APs if the same
    5089                 :            :          * BSSID,SSID pair is seen on multiple channels. wpa_supplicant does
    5090                 :            :          * not use frequency as a separate key in the BSS table, so filter out
    5091                 :            :          * duplicated entries. Prefer associated BSS entry in such a case in
    5092                 :            :          * order to get the correct frequency into the BSS table. Similarly,
    5093                 :            :          * prefer newer entries over older.
    5094                 :            :          */
    5095         [ #  # ]:          0 :         for (i = 0; i < res->num; i++) {
    5096                 :            :                 const u8 *s1, *s2;
    5097         [ #  # ]:          0 :                 if (os_memcmp(res->res[i]->bssid, r->bssid, ETH_ALEN) != 0)
    5098                 :          0 :                         continue;
    5099                 :            : 
    5100                 :          0 :                 s1 = nl80211_get_ie((u8 *) (res->res[i] + 1),
    5101                 :          0 :                                     res->res[i]->ie_len, WLAN_EID_SSID);
    5102                 :          0 :                 s2 = nl80211_get_ie((u8 *) (r + 1), r->ie_len, WLAN_EID_SSID);
    5103 [ #  # ][ #  # ]:          0 :                 if (s1 == NULL || s2 == NULL || s1[1] != s2[1] ||
         [ #  # ][ #  # ]
    5104                 :          0 :                     os_memcmp(s1, s2, 2 + s1[1]) != 0)
    5105                 :          0 :                         continue;
    5106                 :            : 
    5107                 :            :                 /* Same BSSID,SSID was already included in scan results */
    5108                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Remove duplicated scan result "
    5109                 :          0 :                            "for " MACSTR, MAC2STR(r->bssid));
    5110                 :            : 
    5111 [ #  # ][ #  # ]:          0 :                 if (((r->flags & WPA_SCAN_ASSOCIATED) &&
    5112         [ #  # ]:          0 :                      !(res->res[i]->flags & WPA_SCAN_ASSOCIATED)) ||
    5113                 :          0 :                     r->age < res->res[i]->age) {
    5114                 :          0 :                         os_free(res->res[i]);
    5115                 :          0 :                         res->res[i] = r;
    5116                 :            :                 } else
    5117                 :          0 :                         os_free(r);
    5118                 :          0 :                 return NL_SKIP;
    5119                 :            :         }
    5120                 :            : 
    5121                 :          0 :         tmp = os_realloc_array(res->res, res->num + 1,
    5122                 :            :                                sizeof(struct wpa_scan_res *));
    5123         [ #  # ]:          0 :         if (tmp == NULL) {
    5124                 :          0 :                 os_free(r);
    5125                 :          0 :                 return NL_SKIP;
    5126                 :            :         }
    5127                 :          0 :         tmp[res->num++] = r;
    5128                 :          0 :         res->res = tmp;
    5129                 :            : 
    5130                 :          0 :         return NL_SKIP;
    5131                 :            : }
    5132                 :            : 
    5133                 :            : 
    5134                 :          0 : static void clear_state_mismatch(struct wpa_driver_nl80211_data *drv,
    5135                 :            :                                  const u8 *addr)
    5136                 :            : {
    5137         [ #  # ]:          0 :         if (drv->capa.flags & WPA_DRIVER_FLAGS_SME) {
    5138                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Clear possible state "
    5139                 :          0 :                            "mismatch (" MACSTR ")", MAC2STR(addr));
    5140                 :          0 :                 wpa_driver_nl80211_mlme(drv, addr,
    5141                 :            :                                         NL80211_CMD_DEAUTHENTICATE,
    5142                 :            :                                         WLAN_REASON_PREV_AUTH_NOT_VALID, 1);
    5143                 :            :         }
    5144                 :          0 : }
    5145                 :            : 
    5146                 :            : 
    5147                 :          4 : static void wpa_driver_nl80211_check_bss_status(
    5148                 :            :         struct wpa_driver_nl80211_data *drv, struct wpa_scan_results *res)
    5149                 :            : {
    5150                 :            :         size_t i;
    5151                 :            : 
    5152         [ -  + ]:          4 :         for (i = 0; i < res->num; i++) {
    5153                 :          0 :                 struct wpa_scan_res *r = res->res[i];
    5154         [ #  # ]:          0 :                 if (r->flags & WPA_SCAN_AUTHENTICATED) {
    5155                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Scan results "
    5156                 :            :                                    "indicates BSS status with " MACSTR
    5157                 :            :                                    " as authenticated",
    5158                 :          0 :                                    MAC2STR(r->bssid));
    5159 [ #  # ][ #  # ]:          0 :                         if (is_sta_interface(drv->nlmode) &&
    5160         [ #  # ]:          0 :                             os_memcmp(r->bssid, drv->bssid, ETH_ALEN) != 0 &&
    5161                 :          0 :                             os_memcmp(r->bssid, drv->auth_bssid, ETH_ALEN) !=
    5162                 :            :                             0) {
    5163                 :          0 :                                 wpa_printf(MSG_DEBUG, "nl80211: Unknown BSSID"
    5164                 :            :                                            " in local state (auth=" MACSTR
    5165                 :            :                                            " assoc=" MACSTR ")",
    5166                 :          0 :                                            MAC2STR(drv->auth_bssid),
    5167                 :          0 :                                            MAC2STR(drv->bssid));
    5168                 :          0 :                                 clear_state_mismatch(drv, r->bssid);
    5169                 :            :                         }
    5170                 :            :                 }
    5171                 :            : 
    5172         [ #  # ]:          0 :                 if (r->flags & WPA_SCAN_ASSOCIATED) {
    5173                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Scan results "
    5174                 :            :                                    "indicate BSS status with " MACSTR
    5175                 :            :                                    " as associated",
    5176                 :          0 :                                    MAC2STR(r->bssid));
    5177 [ #  # ][ #  # ]:          0 :                         if (is_sta_interface(drv->nlmode) &&
    5178                 :          0 :                             !drv->associated) {
    5179                 :          0 :                                 wpa_printf(MSG_DEBUG, "nl80211: Local state "
    5180                 :            :                                            "(not associated) does not match "
    5181                 :            :                                            "with BSS state");
    5182                 :          0 :                                 clear_state_mismatch(drv, r->bssid);
    5183 [ #  # ][ #  # ]:          0 :                         } else if (is_sta_interface(drv->nlmode) &&
    5184                 :          0 :                                    os_memcmp(drv->bssid, r->bssid, ETH_ALEN) !=
    5185                 :            :                                    0) {
    5186                 :          0 :                                 wpa_printf(MSG_DEBUG, "nl80211: Local state "
    5187                 :            :                                            "(associated with " MACSTR ") does "
    5188                 :            :                                            "not match with BSS state",
    5189                 :          0 :                                            MAC2STR(drv->bssid));
    5190                 :          0 :                                 clear_state_mismatch(drv, r->bssid);
    5191                 :          0 :                                 clear_state_mismatch(drv, drv->bssid);
    5192                 :            :                         }
    5193                 :            :                 }
    5194                 :            :         }
    5195                 :          4 : }
    5196                 :            : 
    5197                 :            : 
    5198                 :            : static struct wpa_scan_results *
    5199                 :          4 : nl80211_get_scan_results(struct wpa_driver_nl80211_data *drv)
    5200                 :            : {
    5201                 :            :         struct nl_msg *msg;
    5202                 :            :         struct wpa_scan_results *res;
    5203                 :            :         int ret;
    5204                 :            :         struct nl80211_bss_info_arg arg;
    5205                 :            : 
    5206                 :          4 :         res = os_zalloc(sizeof(*res));
    5207         [ -  + ]:          4 :         if (res == NULL)
    5208                 :          0 :                 return NULL;
    5209                 :          4 :         msg = nlmsg_alloc();
    5210         [ -  + ]:          4 :         if (!msg)
    5211                 :          0 :                 goto nla_put_failure;
    5212                 :            : 
    5213                 :          4 :         nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_SCAN);
    5214         [ -  + ]:          4 :         if (nl80211_set_iface_id(msg, drv->first_bss) < 0)
    5215                 :          0 :                 goto nla_put_failure;
    5216                 :            : 
    5217                 :          4 :         arg.drv = drv;
    5218                 :          4 :         arg.res = res;
    5219                 :          4 :         ret = send_and_recv_msgs(drv, msg, bss_info_handler, &arg);
    5220                 :          4 :         msg = NULL;
    5221         [ +  - ]:          4 :         if (ret == 0) {
    5222                 :          4 :                 wpa_printf(MSG_DEBUG, "nl80211: Received scan results (%lu "
    5223                 :            :                            "BSSes)", (unsigned long) res->num);
    5224                 :          4 :                 nl80211_get_noise_for_scan_results(drv, res);
    5225                 :          4 :                 return res;
    5226                 :            :         }
    5227                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Scan result fetch failed: ret=%d "
    5228                 :            :                    "(%s)", ret, strerror(-ret));
    5229                 :            : nla_put_failure:
    5230                 :          0 :         nlmsg_free(msg);
    5231                 :          0 :         wpa_scan_results_free(res);
    5232                 :          4 :         return NULL;
    5233                 :            : }
    5234                 :            : 
    5235                 :            : 
    5236                 :            : /**
    5237                 :            :  * wpa_driver_nl80211_get_scan_results - Fetch the latest scan results
    5238                 :            :  * @priv: Pointer to private wext data from wpa_driver_nl80211_init()
    5239                 :            :  * Returns: Scan results on success, -1 on failure
    5240                 :            :  */
    5241                 :            : static struct wpa_scan_results *
    5242                 :          4 : wpa_driver_nl80211_get_scan_results(void *priv)
    5243                 :            : {
    5244                 :          4 :         struct i802_bss *bss = priv;
    5245                 :          4 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    5246                 :            :         struct wpa_scan_results *res;
    5247                 :            : 
    5248                 :          4 :         res = nl80211_get_scan_results(drv);
    5249         [ +  - ]:          4 :         if (res)
    5250                 :          4 :                 wpa_driver_nl80211_check_bss_status(drv, res);
    5251                 :          4 :         return res;
    5252                 :            : }
    5253                 :            : 
    5254                 :            : 
    5255                 :          0 : static void nl80211_dump_scan(struct wpa_driver_nl80211_data *drv)
    5256                 :            : {
    5257                 :            :         struct wpa_scan_results *res;
    5258                 :            :         size_t i;
    5259                 :            : 
    5260                 :          0 :         res = nl80211_get_scan_results(drv);
    5261         [ #  # ]:          0 :         if (res == NULL) {
    5262                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Failed to get scan results");
    5263                 :          0 :                 return;
    5264                 :            :         }
    5265                 :            : 
    5266                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Scan result dump");
    5267         [ #  # ]:          0 :         for (i = 0; i < res->num; i++) {
    5268                 :          0 :                 struct wpa_scan_res *r = res->res[i];
    5269 [ #  # ][ #  # ]:          0 :                 wpa_printf(MSG_DEBUG, "nl80211: %d/%d " MACSTR "%s%s",
    5270                 :          0 :                            (int) i, (int) res->num, MAC2STR(r->bssid),
    5271                 :          0 :                            r->flags & WPA_SCAN_AUTHENTICATED ? " [auth]" : "",
    5272                 :          0 :                            r->flags & WPA_SCAN_ASSOCIATED ? " [assoc]" : "");
    5273                 :            :         }
    5274                 :            : 
    5275                 :          0 :         wpa_scan_results_free(res);
    5276                 :            : }
    5277                 :            : 
    5278                 :            : 
    5279                 :        603 : static u32 wpa_alg_to_cipher_suite(enum wpa_alg alg, size_t key_len)
    5280                 :            : {
    5281   [ +  +  +  -  :        603 :         switch (alg) {
          -  -  +  -  -  
             -  -  -  -  
                      - ]
    5282                 :            :         case WPA_ALG_WEP:
    5283         [ +  + ]:          7 :                 if (key_len == 5)
    5284                 :          3 :                         return WLAN_CIPHER_SUITE_WEP40;
    5285                 :          4 :                 return WLAN_CIPHER_SUITE_WEP104;
    5286                 :            :         case WPA_ALG_TKIP:
    5287                 :         40 :                 return WLAN_CIPHER_SUITE_TKIP;
    5288                 :            :         case WPA_ALG_CCMP:
    5289                 :        470 :                 return WLAN_CIPHER_SUITE_CCMP;
    5290                 :            :         case WPA_ALG_GCMP:
    5291                 :          0 :                 return WLAN_CIPHER_SUITE_GCMP;
    5292                 :            :         case WPA_ALG_CCMP_256:
    5293                 :          0 :                 return WLAN_CIPHER_SUITE_CCMP_256;
    5294                 :            :         case WPA_ALG_GCMP_256:
    5295                 :          0 :                 return WLAN_CIPHER_SUITE_GCMP_256;
    5296                 :            :         case WPA_ALG_IGTK:
    5297                 :         86 :                 return WLAN_CIPHER_SUITE_AES_CMAC;
    5298                 :            :         case WPA_ALG_BIP_GMAC_128:
    5299                 :          0 :                 return WLAN_CIPHER_SUITE_BIP_GMAC_128;
    5300                 :            :         case WPA_ALG_BIP_GMAC_256:
    5301                 :          0 :                 return WLAN_CIPHER_SUITE_BIP_GMAC_256;
    5302                 :            :         case WPA_ALG_BIP_CMAC_256:
    5303                 :          0 :                 return WLAN_CIPHER_SUITE_BIP_CMAC_256;
    5304                 :            :         case WPA_ALG_SMS4:
    5305                 :          0 :                 return WLAN_CIPHER_SUITE_SMS4;
    5306                 :            :         case WPA_ALG_KRK:
    5307                 :          0 :                 return WLAN_CIPHER_SUITE_KRK;
    5308                 :            :         case WPA_ALG_NONE:
    5309                 :            :         case WPA_ALG_PMK:
    5310                 :          0 :                 wpa_printf(MSG_ERROR, "nl80211: Unexpected encryption algorithm %d",
    5311                 :            :                            alg);
    5312                 :          0 :                 return 0;
    5313                 :            :         }
    5314                 :            : 
    5315                 :          0 :         wpa_printf(MSG_ERROR, "nl80211: Unsupported encryption algorithm %d",
    5316                 :            :                    alg);
    5317                 :        603 :         return 0;
    5318                 :            : }
    5319                 :            : 
    5320                 :            : 
    5321                 :        679 : static u32 wpa_cipher_to_cipher_suite(unsigned int cipher)
    5322                 :            : {
    5323   [ -  -  +  -  :        679 :         switch (cipher) {
             +  +  +  + ]
    5324                 :            :         case WPA_CIPHER_CCMP_256:
    5325                 :          0 :                 return WLAN_CIPHER_SUITE_CCMP_256;
    5326                 :            :         case WPA_CIPHER_GCMP_256:
    5327                 :          0 :                 return WLAN_CIPHER_SUITE_GCMP_256;
    5328                 :            :         case WPA_CIPHER_CCMP:
    5329                 :        543 :                 return WLAN_CIPHER_SUITE_CCMP;
    5330                 :            :         case WPA_CIPHER_GCMP:
    5331                 :          0 :                 return WLAN_CIPHER_SUITE_GCMP;
    5332                 :            :         case WPA_CIPHER_TKIP:
    5333                 :         59 :                 return WLAN_CIPHER_SUITE_TKIP;
    5334                 :            :         case WPA_CIPHER_WEP104:
    5335                 :          1 :                 return WLAN_CIPHER_SUITE_WEP104;
    5336                 :            :         case WPA_CIPHER_WEP40:
    5337                 :          4 :                 return WLAN_CIPHER_SUITE_WEP40;
    5338                 :            :         }
    5339                 :            : 
    5340                 :        679 :         return 0;
    5341                 :            : }
    5342                 :            : 
    5343                 :            : 
    5344                 :        679 : static int wpa_cipher_to_cipher_suites(unsigned int ciphers, u32 suites[],
    5345                 :            :                                        int max_suites)
    5346                 :            : {
    5347                 :        679 :         int num_suites = 0;
    5348                 :            : 
    5349 [ +  - ][ -  + ]:        679 :         if (num_suites < max_suites && ciphers & WPA_CIPHER_CCMP_256)
    5350                 :          0 :                 suites[num_suites++] = WLAN_CIPHER_SUITE_CCMP_256;
    5351 [ +  - ][ -  + ]:        679 :         if (num_suites < max_suites && ciphers & WPA_CIPHER_GCMP_256)
    5352                 :          0 :                 suites[num_suites++] = WLAN_CIPHER_SUITE_GCMP_256;
    5353 [ +  - ][ +  + ]:        679 :         if (num_suites < max_suites && ciphers & WPA_CIPHER_CCMP)
    5354                 :        590 :                 suites[num_suites++] = WLAN_CIPHER_SUITE_CCMP;
    5355 [ +  - ][ -  + ]:        679 :         if (num_suites < max_suites && ciphers & WPA_CIPHER_GCMP)
    5356                 :          0 :                 suites[num_suites++] = WLAN_CIPHER_SUITE_GCMP;
    5357 [ +  - ][ +  + ]:        679 :         if (num_suites < max_suites && ciphers & WPA_CIPHER_TKIP)
    5358                 :         32 :                 suites[num_suites++] = WLAN_CIPHER_SUITE_TKIP;
    5359 [ +  - ][ +  + ]:        679 :         if (num_suites < max_suites && ciphers & WPA_CIPHER_WEP104)
    5360                 :          1 :                 suites[num_suites++] = WLAN_CIPHER_SUITE_WEP104;
    5361 [ +  - ][ +  + ]:        679 :         if (num_suites < max_suites && ciphers & WPA_CIPHER_WEP40)
    5362                 :          4 :                 suites[num_suites++] = WLAN_CIPHER_SUITE_WEP40;
    5363                 :            : 
    5364                 :        679 :         return num_suites;
    5365                 :            : }
    5366                 :            : 
    5367                 :            : 
    5368                 :       3629 : static int wpa_driver_nl80211_set_key(const char *ifname, struct i802_bss *bss,
    5369                 :            :                                       enum wpa_alg alg, const u8 *addr,
    5370                 :            :                                       int key_idx, int set_tx,
    5371                 :            :                                       const u8 *seq, size_t seq_len,
    5372                 :            :                                       const u8 *key, size_t key_len)
    5373                 :            : {
    5374                 :       3629 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    5375                 :            :         int ifindex;
    5376                 :            :         struct nl_msg *msg;
    5377                 :            :         int ret;
    5378                 :       3629 :         int tdls = 0;
    5379                 :            : 
    5380                 :            :         /* Ignore for P2P Device */
    5381         [ -  + ]:       3629 :         if (drv->nlmode == NL80211_IFTYPE_P2P_DEVICE)
    5382                 :          0 :                 return 0;
    5383                 :            : 
    5384                 :       3629 :         ifindex = if_nametoindex(ifname);
    5385                 :       3629 :         wpa_printf(MSG_DEBUG, "%s: ifindex=%d (%s) alg=%d addr=%p key_idx=%d "
    5386                 :            :                    "set_tx=%d seq_len=%lu key_len=%lu",
    5387                 :            :                    __func__, ifindex, ifname, alg, addr, key_idx, set_tx,
    5388                 :            :                    (unsigned long) seq_len, (unsigned long) key_len);
    5389                 :            : #ifdef CONFIG_TDLS
    5390                 :            :         if (key_idx == -1) {
    5391                 :            :                 key_idx = 0;
    5392                 :            :                 tdls = 1;
    5393                 :            :         }
    5394                 :            : #endif /* CONFIG_TDLS */
    5395                 :            : 
    5396                 :       3629 :         msg = nlmsg_alloc();
    5397         [ -  + ]:       3629 :         if (!msg)
    5398                 :          0 :                 return -ENOMEM;
    5399                 :            : 
    5400         [ +  + ]:       3629 :         if (alg == WPA_ALG_NONE) {
    5401                 :       3026 :                 nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_KEY);
    5402                 :            :         } else {
    5403                 :        603 :                 nl80211_cmd(drv, msg, 0, NL80211_CMD_NEW_KEY);
    5404         [ +  - ]:        603 :                 NLA_PUT(msg, NL80211_ATTR_KEY_DATA, key_len, key);
    5405         [ +  - ]:        603 :                 NLA_PUT_U32(msg, NL80211_ATTR_KEY_CIPHER,
    5406                 :            :                             wpa_alg_to_cipher_suite(alg, key_len));
    5407                 :            :         }
    5408                 :            : 
    5409 [ -  + ][ #  # ]:       3629 :         if (seq && seq_len)
    5410         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_ATTR_KEY_SEQ, seq_len, seq);
    5411                 :            : 
    5412 [ +  + ][ +  + ]:       3629 :         if (addr && !is_broadcast_ether_addr(addr)) {
    5413                 :       1250 :                 wpa_printf(MSG_DEBUG, "   addr=" MACSTR, MAC2STR(addr));
    5414         [ +  - ]:       1250 :                 NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
    5415                 :            : 
    5416 [ +  + ][ -  + ]:       1250 :                 if (alg != WPA_ALG_WEP && key_idx && !set_tx) {
                 [ #  # ]
    5417                 :          0 :                         wpa_printf(MSG_DEBUG, "   RSN IBSS RX GTK");
    5418         [ #  # ]:          0 :                         NLA_PUT_U32(msg, NL80211_ATTR_KEY_TYPE,
    5419                 :            :                                     NL80211_KEYTYPE_GROUP);
    5420                 :            :                 }
    5421 [ +  + ][ +  - ]:       2379 :         } else if (addr && is_broadcast_ether_addr(addr)) {
    5422                 :            :                 struct nlattr *types;
    5423                 :            : 
    5424                 :        378 :                 wpa_printf(MSG_DEBUG, "   broadcast key");
    5425                 :            : 
    5426                 :        378 :                 types = nla_nest_start(msg, NL80211_ATTR_KEY_DEFAULT_TYPES);
    5427         [ -  + ]:        378 :                 if (!types)
    5428                 :          0 :                         goto nla_put_failure;
    5429         [ +  - ]:        378 :                 NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT_TYPE_MULTICAST);
    5430                 :        378 :                 nla_nest_end(msg, types);
    5431                 :            :         }
    5432         [ +  - ]:       3629 :         NLA_PUT_U8(msg, NL80211_ATTR_KEY_IDX, key_idx);
    5433         [ +  - ]:       3629 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
    5434                 :            : 
    5435                 :       3629 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    5436 [ +  + ][ -  + ]:       3629 :         if ((ret == -ENOENT || ret == -ENOLINK) && alg == WPA_ALG_NONE)
                 [ +  + ]
    5437                 :       2631 :                 ret = 0;
    5438         [ +  + ]:       3629 :         if (ret)
    5439                 :         18 :                 wpa_printf(MSG_DEBUG, "nl80211: set_key failed; err=%d %s)",
    5440                 :            :                            ret, strerror(-ret));
    5441                 :            : 
    5442                 :            :         /*
    5443                 :            :          * If we failed or don't need to set the default TX key (below),
    5444                 :            :          * we're done here.
    5445                 :            :          */
    5446 [ +  + ][ +  + ]:       3629 :         if (ret || !set_tx || alg == WPA_ALG_NONE || tdls)
         [ +  + ][ -  + ]
    5447                 :       3036 :                 return ret;
    5448         [ +  - ]:       1185 :         if (is_ap_interface(drv->nlmode) && addr &&
           [ +  +  +  + ]
    5449                 :        592 :             !is_broadcast_ether_addr(addr))
    5450                 :        216 :                 return ret;
    5451                 :            : 
    5452                 :        377 :         msg = nlmsg_alloc();
    5453         [ -  + ]:        377 :         if (!msg)
    5454                 :          0 :                 return -ENOMEM;
    5455                 :            : 
    5456                 :        377 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_KEY);
    5457         [ +  - ]:        377 :         NLA_PUT_U8(msg, NL80211_ATTR_KEY_IDX, key_idx);
    5458         [ +  - ]:        377 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
    5459         [ +  + ]:        377 :         if (alg == WPA_ALG_IGTK)
    5460         [ +  - ]:         86 :                 NLA_PUT_FLAG(msg, NL80211_ATTR_KEY_DEFAULT_MGMT);
    5461                 :            :         else
    5462         [ +  - ]:        291 :                 NLA_PUT_FLAG(msg, NL80211_ATTR_KEY_DEFAULT);
    5463 [ +  + ][ +  - ]:        753 :         if (addr && is_broadcast_ether_addr(addr)) {
    5464                 :            :                 struct nlattr *types;
    5465                 :            : 
    5466                 :        376 :                 types = nla_nest_start(msg, NL80211_ATTR_KEY_DEFAULT_TYPES);
    5467         [ -  + ]:        376 :                 if (!types)
    5468                 :          0 :                         goto nla_put_failure;
    5469         [ +  - ]:        376 :                 NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT_TYPE_MULTICAST);
    5470                 :        376 :                 nla_nest_end(msg, types);
    5471         [ -  + ]:          1 :         } else if (addr) {
    5472                 :            :                 struct nlattr *types;
    5473                 :            : 
    5474                 :          0 :                 types = nla_nest_start(msg, NL80211_ATTR_KEY_DEFAULT_TYPES);
    5475         [ #  # ]:          0 :                 if (!types)
    5476                 :          0 :                         goto nla_put_failure;
    5477         [ #  # ]:          0 :                 NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT_TYPE_UNICAST);
    5478                 :          0 :                 nla_nest_end(msg, types);
    5479                 :            :         }
    5480                 :            : 
    5481                 :        377 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    5482         [ -  + ]:        377 :         if (ret == -ENOENT)
    5483                 :          0 :                 ret = 0;
    5484         [ -  + ]:        377 :         if (ret)
    5485                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: set_key default failed; "
    5486                 :            :                            "err=%d %s)", ret, strerror(-ret));
    5487                 :        377 :         return ret;
    5488                 :            : 
    5489                 :            : nla_put_failure:
    5490                 :          0 :         nlmsg_free(msg);
    5491                 :       3629 :         return -ENOBUFS;
    5492                 :            : }
    5493                 :            : 
    5494                 :            : 
    5495                 :          0 : static int nl_add_key(struct nl_msg *msg, enum wpa_alg alg,
    5496                 :            :                       int key_idx, int defkey,
    5497                 :            :                       const u8 *seq, size_t seq_len,
    5498                 :            :                       const u8 *key, size_t key_len)
    5499                 :            : {
    5500                 :          0 :         struct nlattr *key_attr = nla_nest_start(msg, NL80211_ATTR_KEY);
    5501         [ #  # ]:          0 :         if (!key_attr)
    5502                 :          0 :                 return -1;
    5503                 :            : 
    5504 [ #  # ][ #  # ]:          0 :         if (defkey && alg == WPA_ALG_IGTK)
    5505         [ #  # ]:          0 :                 NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT_MGMT);
    5506         [ #  # ]:          0 :         else if (defkey)
    5507         [ #  # ]:          0 :                 NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT);
    5508                 :            : 
    5509         [ #  # ]:          0 :         NLA_PUT_U8(msg, NL80211_KEY_IDX, key_idx);
    5510                 :            : 
    5511         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
    5512                 :            :                     wpa_alg_to_cipher_suite(alg, key_len));
    5513                 :            : 
    5514 [ #  # ][ #  # ]:          0 :         if (seq && seq_len)
    5515         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_KEY_SEQ, seq_len, seq);
    5516                 :            : 
    5517         [ #  # ]:          0 :         NLA_PUT(msg, NL80211_KEY_DATA, key_len, key);
    5518                 :            : 
    5519                 :          0 :         nla_nest_end(msg, key_attr);
    5520                 :            : 
    5521                 :          0 :         return 0;
    5522                 :            :  nla_put_failure:
    5523                 :          0 :         return -1;
    5524                 :            : }
    5525                 :            : 
    5526                 :            : 
    5527                 :          0 : static int nl80211_set_conn_keys(struct wpa_driver_associate_params *params,
    5528                 :            :                                  struct nl_msg *msg)
    5529                 :            : {
    5530                 :          0 :         int i, privacy = 0;
    5531                 :            :         struct nlattr *nl_keys, *nl_key;
    5532                 :            : 
    5533         [ #  # ]:          0 :         for (i = 0; i < 4; i++) {
    5534         [ #  # ]:          0 :                 if (!params->wep_key[i])
    5535                 :          0 :                         continue;
    5536                 :          0 :                 privacy = 1;
    5537                 :          0 :                 break;
    5538                 :            :         }
    5539         [ #  # ]:          0 :         if (params->wps == WPS_MODE_PRIVACY)
    5540                 :          0 :                 privacy = 1;
    5541 [ #  # ][ #  # ]:          0 :         if (params->pairwise_suite &&
    5542                 :          0 :             params->pairwise_suite != WPA_CIPHER_NONE)
    5543                 :          0 :                 privacy = 1;
    5544                 :            : 
    5545         [ #  # ]:          0 :         if (!privacy)
    5546                 :          0 :                 return 0;
    5547                 :            : 
    5548         [ #  # ]:          0 :         NLA_PUT_FLAG(msg, NL80211_ATTR_PRIVACY);
    5549                 :            : 
    5550                 :          0 :         nl_keys = nla_nest_start(msg, NL80211_ATTR_KEYS);
    5551         [ #  # ]:          0 :         if (!nl_keys)
    5552                 :          0 :                 goto nla_put_failure;
    5553                 :            : 
    5554         [ #  # ]:          0 :         for (i = 0; i < 4; i++) {
    5555         [ #  # ]:          0 :                 if (!params->wep_key[i])
    5556                 :          0 :                         continue;
    5557                 :            : 
    5558                 :          0 :                 nl_key = nla_nest_start(msg, i);
    5559         [ #  # ]:          0 :                 if (!nl_key)
    5560                 :          0 :                         goto nla_put_failure;
    5561                 :            : 
    5562         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_KEY_DATA, params->wep_key_len[i],
    5563                 :            :                         params->wep_key[i]);
    5564         [ #  # ]:          0 :                 if (params->wep_key_len[i] == 5)
    5565         [ #  # ]:          0 :                         NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
    5566                 :            :                                     WLAN_CIPHER_SUITE_WEP40);
    5567                 :            :                 else
    5568         [ #  # ]:          0 :                         NLA_PUT_U32(msg, NL80211_KEY_CIPHER,
    5569                 :            :                                     WLAN_CIPHER_SUITE_WEP104);
    5570                 :            : 
    5571         [ #  # ]:          0 :                 NLA_PUT_U8(msg, NL80211_KEY_IDX, i);
    5572                 :            : 
    5573         [ #  # ]:          0 :                 if (i == params->wep_tx_keyidx)
    5574         [ #  # ]:          0 :                         NLA_PUT_FLAG(msg, NL80211_KEY_DEFAULT);
    5575                 :            : 
    5576                 :          0 :                 nla_nest_end(msg, nl_key);
    5577                 :            :         }
    5578                 :          0 :         nla_nest_end(msg, nl_keys);
    5579                 :            : 
    5580                 :          0 :         return 0;
    5581                 :            : 
    5582                 :            : nla_put_failure:
    5583                 :          0 :         return -ENOBUFS;
    5584                 :            : }
    5585                 :            : 
    5586                 :            : 
    5587                 :          0 : static int wpa_driver_nl80211_mlme(struct wpa_driver_nl80211_data *drv,
    5588                 :            :                                    const u8 *addr, int cmd, u16 reason_code,
    5589                 :            :                                    int local_state_change)
    5590                 :            : {
    5591                 :          0 :         int ret = -1;
    5592                 :            :         struct nl_msg *msg;
    5593                 :            : 
    5594                 :          0 :         msg = nlmsg_alloc();
    5595         [ #  # ]:          0 :         if (!msg)
    5596                 :          0 :                 return -1;
    5597                 :            : 
    5598                 :          0 :         nl80211_cmd(drv, msg, 0, cmd);
    5599                 :            : 
    5600         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
    5601         [ #  # ]:          0 :         NLA_PUT_U16(msg, NL80211_ATTR_REASON_CODE, reason_code);
    5602         [ #  # ]:          0 :         if (addr)
    5603         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
    5604         [ #  # ]:          0 :         if (local_state_change)
    5605         [ #  # ]:          0 :                 NLA_PUT_FLAG(msg, NL80211_ATTR_LOCAL_STATE_CHANGE);
    5606                 :            : 
    5607                 :          0 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    5608                 :          0 :         msg = NULL;
    5609         [ #  # ]:          0 :         if (ret) {
    5610                 :          0 :                 wpa_dbg(drv->ctx, MSG_DEBUG,
    5611                 :            :                         "nl80211: MLME command failed: reason=%u ret=%d (%s)",
    5612                 :            :                         reason_code, ret, strerror(-ret));
    5613                 :          0 :                 goto nla_put_failure;
    5614                 :            :         }
    5615                 :          0 :         ret = 0;
    5616                 :            : 
    5617                 :            : nla_put_failure:
    5618                 :          0 :         nlmsg_free(msg);
    5619                 :          0 :         return ret;
    5620                 :            : }
    5621                 :            : 
    5622                 :            : 
    5623                 :          0 : static int wpa_driver_nl80211_disconnect(struct wpa_driver_nl80211_data *drv,
    5624                 :            :                                          int reason_code)
    5625                 :            : {
    5626                 :            :         int ret;
    5627                 :            : 
    5628                 :          0 :         wpa_printf(MSG_DEBUG, "%s(reason_code=%d)", __func__, reason_code);
    5629                 :          0 :         nl80211_mark_disconnected(drv);
    5630                 :            :         /* Disconnect command doesn't need BSSID - it uses cached value */
    5631                 :          0 :         ret = wpa_driver_nl80211_mlme(drv, NULL, NL80211_CMD_DISCONNECT,
    5632                 :            :                                       reason_code, 0);
    5633                 :            :         /*
    5634                 :            :          * For locally generated disconnect, supplicant already generates a
    5635                 :            :          * DEAUTH event, so ignore the event from NL80211.
    5636                 :            :          */
    5637                 :          0 :         drv->ignore_next_local_disconnect = ret == 0;
    5638                 :            : 
    5639                 :          0 :         return ret;
    5640                 :            : }
    5641                 :            : 
    5642                 :            : 
    5643                 :          0 : static int wpa_driver_nl80211_deauthenticate(struct i802_bss *bss,
    5644                 :            :                                              const u8 *addr, int reason_code)
    5645                 :            : {
    5646                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    5647         [ #  # ]:          0 :         if (!(drv->capa.flags & WPA_DRIVER_FLAGS_SME))
    5648                 :          0 :                 return wpa_driver_nl80211_disconnect(drv, reason_code);
    5649                 :          0 :         wpa_printf(MSG_DEBUG, "%s(addr=" MACSTR " reason_code=%d)",
    5650                 :          0 :                    __func__, MAC2STR(addr), reason_code);
    5651                 :          0 :         nl80211_mark_disconnected(drv);
    5652         [ #  # ]:          0 :         if (drv->nlmode == NL80211_IFTYPE_ADHOC)
    5653                 :          0 :                 return nl80211_leave_ibss(drv);
    5654                 :          0 :         return wpa_driver_nl80211_mlme(drv, addr, NL80211_CMD_DEAUTHENTICATE,
    5655                 :            :                                        reason_code, 0);
    5656                 :            : }
    5657                 :            : 
    5658                 :            : 
    5659                 :          0 : static void nl80211_copy_auth_params(struct wpa_driver_nl80211_data *drv,
    5660                 :            :                                      struct wpa_driver_auth_params *params)
    5661                 :            : {
    5662                 :            :         int i;
    5663                 :            : 
    5664                 :          0 :         drv->auth_freq = params->freq;
    5665                 :          0 :         drv->auth_alg = params->auth_alg;
    5666                 :          0 :         drv->auth_wep_tx_keyidx = params->wep_tx_keyidx;
    5667                 :          0 :         drv->auth_local_state_change = params->local_state_change;
    5668                 :          0 :         drv->auth_p2p = params->p2p;
    5669                 :            : 
    5670         [ #  # ]:          0 :         if (params->bssid)
    5671                 :          0 :                 os_memcpy(drv->auth_bssid_, params->bssid, ETH_ALEN);
    5672                 :            :         else
    5673                 :          0 :                 os_memset(drv->auth_bssid_, 0, ETH_ALEN);
    5674                 :            : 
    5675         [ #  # ]:          0 :         if (params->ssid) {
    5676                 :          0 :                 os_memcpy(drv->auth_ssid, params->ssid, params->ssid_len);
    5677                 :          0 :                 drv->auth_ssid_len = params->ssid_len;
    5678                 :            :         } else
    5679                 :          0 :                 drv->auth_ssid_len = 0;
    5680                 :            : 
    5681                 :            : 
    5682                 :          0 :         os_free(drv->auth_ie);
    5683                 :          0 :         drv->auth_ie = NULL;
    5684                 :          0 :         drv->auth_ie_len = 0;
    5685         [ #  # ]:          0 :         if (params->ie) {
    5686                 :          0 :                 drv->auth_ie = os_malloc(params->ie_len);
    5687         [ #  # ]:          0 :                 if (drv->auth_ie) {
    5688                 :          0 :                         os_memcpy(drv->auth_ie, params->ie, params->ie_len);
    5689                 :          0 :                         drv->auth_ie_len = params->ie_len;
    5690                 :            :                 }
    5691                 :            :         }
    5692                 :            : 
    5693         [ #  # ]:          0 :         for (i = 0; i < 4; i++) {
    5694 [ #  # ][ #  # ]:          0 :                 if (params->wep_key[i] && params->wep_key_len[i] &&
                 [ #  # ]
    5695                 :          0 :                     params->wep_key_len[i] <= 16) {
    5696                 :          0 :                         os_memcpy(drv->auth_wep_key[i], params->wep_key[i],
    5697                 :            :                                   params->wep_key_len[i]);
    5698                 :          0 :                         drv->auth_wep_key_len[i] = params->wep_key_len[i];
    5699                 :            :                 } else
    5700                 :          0 :                         drv->auth_wep_key_len[i] = 0;
    5701                 :            :         }
    5702                 :          0 : }
    5703                 :            : 
    5704                 :            : 
    5705                 :          0 : static int wpa_driver_nl80211_authenticate(
    5706                 :            :         struct i802_bss *bss, struct wpa_driver_auth_params *params)
    5707                 :            : {
    5708                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    5709                 :          0 :         int ret = -1, i;
    5710                 :            :         struct nl_msg *msg;
    5711                 :            :         enum nl80211_auth_type type;
    5712                 :            :         enum nl80211_iftype nlmode;
    5713                 :          0 :         int count = 0;
    5714                 :            :         int is_retry;
    5715                 :            : 
    5716                 :          0 :         is_retry = drv->retry_auth;
    5717                 :          0 :         drv->retry_auth = 0;
    5718                 :            : 
    5719                 :          0 :         nl80211_mark_disconnected(drv);
    5720                 :          0 :         os_memset(drv->auth_bssid, 0, ETH_ALEN);
    5721         [ #  # ]:          0 :         if (params->bssid)
    5722                 :          0 :                 os_memcpy(drv->auth_attempt_bssid, params->bssid, ETH_ALEN);
    5723                 :            :         else
    5724                 :          0 :                 os_memset(drv->auth_attempt_bssid, 0, ETH_ALEN);
    5725                 :            :         /* FIX: IBSS mode */
    5726         [ #  # ]:          0 :         nlmode = params->p2p ?
    5727                 :            :                 NL80211_IFTYPE_P2P_CLIENT : NL80211_IFTYPE_STATION;
    5728   [ #  #  #  # ]:          0 :         if (drv->nlmode != nlmode &&
    5729                 :          0 :             wpa_driver_nl80211_set_mode(bss, nlmode) < 0)
    5730                 :          0 :                 return -1;
    5731                 :            : 
    5732                 :            : retry:
    5733                 :          0 :         msg = nlmsg_alloc();
    5734         [ #  # ]:          0 :         if (!msg)
    5735                 :          0 :                 return -1;
    5736                 :            : 
    5737                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Authenticate (ifindex=%d)",
    5738                 :            :                    drv->ifindex);
    5739                 :            : 
    5740                 :          0 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_AUTHENTICATE);
    5741                 :            : 
    5742         [ #  # ]:          0 :         for (i = 0; i < 4; i++) {
    5743         [ #  # ]:          0 :                 if (!params->wep_key[i])
    5744                 :          0 :                         continue;
    5745                 :          0 :                 wpa_driver_nl80211_set_key(bss->ifname, bss, WPA_ALG_WEP,
    5746                 :            :                                            NULL, i,
    5747                 :          0 :                                            i == params->wep_tx_keyidx, NULL, 0,
    5748                 :            :                                            params->wep_key[i],
    5749                 :            :                                            params->wep_key_len[i]);
    5750         [ #  # ]:          0 :                 if (params->wep_tx_keyidx != i)
    5751                 :          0 :                         continue;
    5752         [ #  # ]:          0 :                 if (nl_add_key(msg, WPA_ALG_WEP, i, 1, NULL, 0,
    5753                 :            :                                params->wep_key[i], params->wep_key_len[i])) {
    5754                 :          0 :                         nlmsg_free(msg);
    5755                 :          0 :                         return -1;
    5756                 :            :                 }
    5757                 :            :         }
    5758                 :            : 
    5759         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
    5760         [ #  # ]:          0 :         if (params->bssid) {
    5761                 :          0 :                 wpa_printf(MSG_DEBUG, "  * bssid=" MACSTR,
    5762                 :          0 :                            MAC2STR(params->bssid));
    5763         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->bssid);
    5764                 :            :         }
    5765         [ #  # ]:          0 :         if (params->freq) {
    5766                 :          0 :                 wpa_printf(MSG_DEBUG, "  * freq=%d", params->freq);
    5767         [ #  # ]:          0 :                 NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, params->freq);
    5768                 :            :         }
    5769         [ #  # ]:          0 :         if (params->ssid) {
    5770                 :          0 :                 wpa_hexdump_ascii(MSG_DEBUG, "  * SSID",
    5771                 :          0 :                                   params->ssid, params->ssid_len);
    5772         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
    5773                 :            :                         params->ssid);
    5774                 :            :         }
    5775                 :          0 :         wpa_hexdump(MSG_DEBUG, "  * IEs", params->ie, params->ie_len);
    5776         [ #  # ]:          0 :         if (params->ie)
    5777         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_ATTR_IE, params->ie_len, params->ie);
    5778         [ #  # ]:          0 :         if (params->sae_data) {
    5779                 :          0 :                 wpa_hexdump(MSG_DEBUG, "  * SAE data", params->sae_data,
    5780                 :            :                             params->sae_data_len);
    5781         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_ATTR_SAE_DATA, params->sae_data_len,
    5782                 :            :                         params->sae_data);
    5783                 :            :         }
    5784         [ #  # ]:          0 :         if (params->auth_alg & WPA_AUTH_ALG_OPEN)
    5785                 :          0 :                 type = NL80211_AUTHTYPE_OPEN_SYSTEM;
    5786         [ #  # ]:          0 :         else if (params->auth_alg & WPA_AUTH_ALG_SHARED)
    5787                 :          0 :                 type = NL80211_AUTHTYPE_SHARED_KEY;
    5788         [ #  # ]:          0 :         else if (params->auth_alg & WPA_AUTH_ALG_LEAP)
    5789                 :          0 :                 type = NL80211_AUTHTYPE_NETWORK_EAP;
    5790         [ #  # ]:          0 :         else if (params->auth_alg & WPA_AUTH_ALG_FT)
    5791                 :          0 :                 type = NL80211_AUTHTYPE_FT;
    5792         [ #  # ]:          0 :         else if (params->auth_alg & WPA_AUTH_ALG_SAE)
    5793                 :          0 :                 type = NL80211_AUTHTYPE_SAE;
    5794                 :            :         else
    5795                 :          0 :                 goto nla_put_failure;
    5796                 :          0 :         wpa_printf(MSG_DEBUG, "  * Auth Type %d", type);
    5797         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_AUTH_TYPE, type);
    5798         [ #  # ]:          0 :         if (params->local_state_change) {
    5799                 :          0 :                 wpa_printf(MSG_DEBUG, "  * Local state change only");
    5800         [ #  # ]:          0 :                 NLA_PUT_FLAG(msg, NL80211_ATTR_LOCAL_STATE_CHANGE);
    5801                 :            :         }
    5802                 :            : 
    5803                 :          0 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    5804                 :          0 :         msg = NULL;
    5805         [ #  # ]:          0 :         if (ret) {
    5806                 :          0 :                 wpa_dbg(drv->ctx, MSG_DEBUG,
    5807                 :            :                         "nl80211: MLME command failed (auth): ret=%d (%s)",
    5808                 :            :                         ret, strerror(-ret));
    5809                 :          0 :                 count++;
    5810 [ #  # ][ #  # ]:          0 :                 if (ret == -EALREADY && count == 1 && params->bssid &&
         [ #  # ][ #  # ]
    5811                 :          0 :                     !params->local_state_change) {
    5812                 :            :                         /*
    5813                 :            :                          * mac80211 does not currently accept new
    5814                 :            :                          * authentication if we are already authenticated. As a
    5815                 :            :                          * workaround, force deauthentication and try again.
    5816                 :            :                          */
    5817                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Retry authentication "
    5818                 :            :                                    "after forced deauthentication");
    5819                 :          0 :                         wpa_driver_nl80211_deauthenticate(
    5820                 :            :                                 bss, params->bssid,
    5821                 :            :                                 WLAN_REASON_PREV_AUTH_NOT_VALID);
    5822                 :          0 :                         nlmsg_free(msg);
    5823                 :          0 :                         goto retry;
    5824                 :            :                 }
    5825                 :            : 
    5826 [ #  # ][ #  # ]:          0 :                 if (ret == -ENOENT && params->freq && !is_retry) {
                 [ #  # ]
    5827                 :            :                         /*
    5828                 :            :                          * cfg80211 has likely expired the BSS entry even
    5829                 :            :                          * though it was previously available in our internal
    5830                 :            :                          * BSS table. To recover quickly, start a single
    5831                 :            :                          * channel scan on the specified channel.
    5832                 :            :                          */
    5833                 :            :                         struct wpa_driver_scan_params scan;
    5834                 :            :                         int freqs[2];
    5835                 :            : 
    5836                 :          0 :                         os_memset(&scan, 0, sizeof(scan));
    5837                 :          0 :                         scan.num_ssids = 1;
    5838         [ #  # ]:          0 :                         if (params->ssid) {
    5839                 :          0 :                                 scan.ssids[0].ssid = params->ssid;
    5840                 :          0 :                                 scan.ssids[0].ssid_len = params->ssid_len;
    5841                 :            :                         }
    5842                 :          0 :                         freqs[0] = params->freq;
    5843                 :          0 :                         freqs[1] = 0;
    5844                 :          0 :                         scan.freqs = freqs;
    5845                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Trigger single "
    5846                 :            :                                    "channel scan to refresh cfg80211 BSS "
    5847                 :            :                                    "entry");
    5848                 :          0 :                         ret = wpa_driver_nl80211_scan(bss, &scan);
    5849         [ #  # ]:          0 :                         if (ret == 0) {
    5850                 :          0 :                                 nl80211_copy_auth_params(drv, params);
    5851                 :          0 :                                 drv->scan_for_auth = 1;
    5852                 :            :                         }
    5853         [ #  # ]:          0 :                 } else if (is_retry) {
    5854                 :            :                         /*
    5855                 :            :                          * Need to indicate this with an event since the return
    5856                 :            :                          * value from the retry is not delivered to core code.
    5857                 :            :                          */
    5858                 :            :                         union wpa_event_data event;
    5859                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Authentication retry "
    5860                 :            :                                    "failed");
    5861                 :          0 :                         os_memset(&event, 0, sizeof(event));
    5862                 :          0 :                         os_memcpy(event.timeout_event.addr, drv->auth_bssid_,
    5863                 :            :                                   ETH_ALEN);
    5864                 :          0 :                         wpa_supplicant_event(drv->ctx, EVENT_AUTH_TIMED_OUT,
    5865                 :            :                                              &event);
    5866                 :            :                 }
    5867                 :            : 
    5868                 :          0 :                 goto nla_put_failure;
    5869                 :            :         }
    5870                 :          0 :         ret = 0;
    5871                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Authentication request send "
    5872                 :            :                    "successfully");
    5873                 :            : 
    5874                 :            : nla_put_failure:
    5875                 :          0 :         nlmsg_free(msg);
    5876                 :          0 :         return ret;
    5877                 :            : }
    5878                 :            : 
    5879                 :            : 
    5880                 :          0 : static int wpa_driver_nl80211_authenticate_retry(
    5881                 :            :         struct wpa_driver_nl80211_data *drv)
    5882                 :            : {
    5883                 :            :         struct wpa_driver_auth_params params;
    5884                 :          0 :         struct i802_bss *bss = drv->first_bss;
    5885                 :            :         int i;
    5886                 :            : 
    5887                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Try to authenticate again");
    5888                 :            : 
    5889                 :          0 :         os_memset(&params, 0, sizeof(params));
    5890                 :          0 :         params.freq = drv->auth_freq;
    5891                 :          0 :         params.auth_alg = drv->auth_alg;
    5892                 :          0 :         params.wep_tx_keyidx = drv->auth_wep_tx_keyidx;
    5893                 :          0 :         params.local_state_change = drv->auth_local_state_change;
    5894                 :          0 :         params.p2p = drv->auth_p2p;
    5895                 :            : 
    5896         [ #  # ]:          0 :         if (!is_zero_ether_addr(drv->auth_bssid_))
    5897                 :          0 :                 params.bssid = drv->auth_bssid_;
    5898                 :            : 
    5899         [ #  # ]:          0 :         if (drv->auth_ssid_len) {
    5900                 :          0 :                 params.ssid = drv->auth_ssid;
    5901                 :          0 :                 params.ssid_len = drv->auth_ssid_len;
    5902                 :            :         }
    5903                 :            : 
    5904                 :          0 :         params.ie = drv->auth_ie;
    5905                 :          0 :         params.ie_len = drv->auth_ie_len;
    5906                 :            : 
    5907         [ #  # ]:          0 :         for (i = 0; i < 4; i++) {
    5908         [ #  # ]:          0 :                 if (drv->auth_wep_key_len[i]) {
    5909                 :          0 :                         params.wep_key[i] = drv->auth_wep_key[i];
    5910                 :          0 :                         params.wep_key_len[i] = drv->auth_wep_key_len[i];
    5911                 :            :                 }
    5912                 :            :         }
    5913                 :            : 
    5914                 :          0 :         drv->retry_auth = 1;
    5915                 :          0 :         return wpa_driver_nl80211_authenticate(bss, &params);
    5916                 :            : }
    5917                 :            : 
    5918                 :            : 
    5919                 :            : struct phy_info_arg {
    5920                 :            :         u16 *num_modes;
    5921                 :            :         struct hostapd_hw_modes *modes;
    5922                 :            :         int last_mode, last_chan_idx;
    5923                 :            : };
    5924                 :            : 
    5925                 :       8526 : static void phy_info_ht_capa(struct hostapd_hw_modes *mode, struct nlattr *capa,
    5926                 :            :                              struct nlattr *ampdu_factor,
    5927                 :            :                              struct nlattr *ampdu_density,
    5928                 :            :                              struct nlattr *mcs_set)
    5929                 :            : {
    5930         [ +  + ]:       8526 :         if (capa)
    5931                 :        406 :                 mode->ht_capab = nla_get_u16(capa);
    5932                 :            : 
    5933         [ +  + ]:       8526 :         if (ampdu_factor)
    5934                 :        406 :                 mode->a_mpdu_params |= nla_get_u8(ampdu_factor) & 0x03;
    5935                 :            : 
    5936         [ +  + ]:       8526 :         if (ampdu_density)
    5937                 :        406 :                 mode->a_mpdu_params |= nla_get_u8(ampdu_density) << 2;
    5938                 :            : 
    5939 [ +  + ][ +  - ]:       8526 :         if (mcs_set && nla_len(mcs_set) >= 16) {
    5940                 :            :                 u8 *mcs;
    5941                 :        406 :                 mcs = nla_data(mcs_set);
    5942                 :        406 :                 os_memcpy(mode->mcs_set, mcs, 16);
    5943                 :            :         }
    5944                 :       8526 : }
    5945                 :            : 
    5946                 :            : 
    5947                 :       8526 : static void phy_info_vht_capa(struct hostapd_hw_modes *mode,
    5948                 :            :                               struct nlattr *capa,
    5949                 :            :                               struct nlattr *mcs_set)
    5950                 :            : {
    5951         [ +  + ]:       8526 :         if (capa)
    5952                 :        406 :                 mode->vht_capab = nla_get_u32(capa);
    5953                 :            : 
    5954 [ +  + ][ +  - ]:       8526 :         if (mcs_set && nla_len(mcs_set) >= 8) {
    5955                 :            :                 u8 *mcs;
    5956                 :        406 :                 mcs = nla_data(mcs_set);
    5957                 :        406 :                 os_memcpy(mode->vht_mcs_set, mcs, 8);
    5958                 :            :         }
    5959                 :       8526 : }
    5960                 :            : 
    5961                 :            : 
    5962                 :       7714 : static void phy_info_freq(struct hostapd_hw_modes *mode,
    5963                 :            :                           struct hostapd_channel_data *chan,
    5964                 :            :                           struct nlattr *tb_freq[])
    5965                 :            : {
    5966                 :            :         u8 channel;
    5967                 :       7714 :         chan->freq = nla_get_u32(tb_freq[NL80211_FREQUENCY_ATTR_FREQ]);
    5968                 :       7714 :         chan->flag = 0;
    5969         [ +  - ]:       7714 :         if (ieee80211_freq_to_chan(chan->freq, &channel) != NUM_HOSTAPD_MODES)
    5970                 :       7714 :                 chan->chan = channel;
    5971                 :            : 
    5972         [ +  + ]:       7714 :         if (tb_freq[NL80211_FREQUENCY_ATTR_DISABLED])
    5973                 :       3045 :                 chan->flag |= HOSTAPD_CHAN_DISABLED;
    5974         [ +  + ]:       7714 :         if (tb_freq[NL80211_FREQUENCY_ATTR_NO_IR])
    5975                 :       5481 :                 chan->flag |= HOSTAPD_CHAN_PASSIVE_SCAN | HOSTAPD_CHAN_NO_IBSS;
    5976         [ +  + ]:       7714 :         if (tb_freq[NL80211_FREQUENCY_ATTR_RADAR])
    5977                 :       3045 :                 chan->flag |= HOSTAPD_CHAN_RADAR;
    5978                 :            : 
    5979         [ +  + ]:       7714 :         if (tb_freq[NL80211_FREQUENCY_ATTR_DFS_STATE]) {
    5980                 :       3045 :                 enum nl80211_dfs_state state =
    5981                 :       3045 :                         nla_get_u32(tb_freq[NL80211_FREQUENCY_ATTR_DFS_STATE]);
    5982                 :            : 
    5983   [ +  -  -  - ]:       3045 :                 switch (state) {
    5984                 :            :                 case NL80211_DFS_USABLE:
    5985                 :       3045 :                         chan->flag |= HOSTAPD_CHAN_DFS_USABLE;
    5986                 :       3045 :                         break;
    5987                 :            :                 case NL80211_DFS_AVAILABLE:
    5988                 :          0 :                         chan->flag |= HOSTAPD_CHAN_DFS_AVAILABLE;
    5989                 :          0 :                         break;
    5990                 :            :                 case NL80211_DFS_UNAVAILABLE:
    5991                 :          0 :                         chan->flag |= HOSTAPD_CHAN_DFS_UNAVAILABLE;
    5992                 :          0 :                         break;
    5993                 :            :                 }
    5994                 :            :         }
    5995                 :       7714 : }
    5996                 :            : 
    5997                 :            : 
    5998                 :       8526 : static int phy_info_freqs(struct phy_info_arg *phy_info,
    5999                 :            :                           struct hostapd_hw_modes *mode, struct nlattr *tb)
    6000                 :            : {
    6001                 :            :         static struct nla_policy freq_policy[NL80211_FREQUENCY_ATTR_MAX + 1] = {
    6002                 :            :                 [NL80211_FREQUENCY_ATTR_FREQ] = { .type = NLA_U32 },
    6003                 :            :                 [NL80211_FREQUENCY_ATTR_DISABLED] = { .type = NLA_FLAG },
    6004                 :            :                 [NL80211_FREQUENCY_ATTR_NO_IR] = { .type = NLA_FLAG },
    6005                 :            :                 [NL80211_FREQUENCY_ATTR_RADAR] = { .type = NLA_FLAG },
    6006                 :            :                 [NL80211_FREQUENCY_ATTR_MAX_TX_POWER] = { .type = NLA_U32 },
    6007                 :            :                 [NL80211_FREQUENCY_ATTR_DFS_STATE] = { .type = NLA_U32 },
    6008                 :            :         };
    6009                 :       8526 :         int new_channels = 0;
    6010                 :            :         struct hostapd_channel_data *channel;
    6011                 :            :         struct nlattr *tb_freq[NL80211_FREQUENCY_ATTR_MAX + 1];
    6012                 :            :         struct nlattr *nl_freq;
    6013                 :            :         int rem_freq, idx;
    6014                 :            : 
    6015         [ +  + ]:       8526 :         if (tb == NULL)
    6016                 :        406 :                 return NL_OK;
    6017                 :            : 
    6018         [ +  + ]:      15834 :         nla_for_each_nested(nl_freq, tb, rem_freq) {
    6019                 :      15428 :                 nla_parse(tb_freq, NL80211_FREQUENCY_ATTR_MAX,
    6020                 :       7714 :                           nla_data(nl_freq), nla_len(nl_freq), freq_policy);
    6021         [ -  + ]:       7714 :                 if (!tb_freq[NL80211_FREQUENCY_ATTR_FREQ])
    6022                 :          0 :                         continue;
    6023                 :       7714 :                 new_channels++;
    6024                 :            :         }
    6025                 :            : 
    6026                 :       8120 :         channel = os_realloc_array(mode->channels,
    6027                 :       8120 :                                    mode->num_channels + new_channels,
    6028                 :            :                                    sizeof(struct hostapd_channel_data));
    6029         [ -  + ]:       8120 :         if (!channel)
    6030                 :          0 :                 return NL_SKIP;
    6031                 :            : 
    6032                 :       8120 :         mode->channels = channel;
    6033                 :       8120 :         mode->num_channels += new_channels;
    6034                 :            : 
    6035                 :       8120 :         idx = phy_info->last_chan_idx;
    6036                 :            : 
    6037         [ +  + ]:      15834 :         nla_for_each_nested(nl_freq, tb, rem_freq) {
    6038                 :      15428 :                 nla_parse(tb_freq, NL80211_FREQUENCY_ATTR_MAX,
    6039                 :       7714 :                           nla_data(nl_freq), nla_len(nl_freq), freq_policy);
    6040         [ -  + ]:       7714 :                 if (!tb_freq[NL80211_FREQUENCY_ATTR_FREQ])
    6041                 :          0 :                         continue;
    6042                 :       7714 :                 phy_info_freq(mode, &mode->channels[idx], tb_freq);
    6043                 :       7714 :                 idx++;
    6044                 :            :         }
    6045                 :       8120 :         phy_info->last_chan_idx = idx;
    6046                 :            : 
    6047                 :       8526 :         return NL_OK;
    6048                 :            : }
    6049                 :            : 
    6050                 :            : 
    6051                 :       8526 : static int phy_info_rates(struct hostapd_hw_modes *mode, struct nlattr *tb)
    6052                 :            : {
    6053                 :            :         static struct nla_policy rate_policy[NL80211_BITRATE_ATTR_MAX + 1] = {
    6054                 :            :                 [NL80211_BITRATE_ATTR_RATE] = { .type = NLA_U32 },
    6055                 :            :                 [NL80211_BITRATE_ATTR_2GHZ_SHORTPREAMBLE] =
    6056                 :            :                 { .type = NLA_FLAG },
    6057                 :            :         };
    6058                 :            :         struct nlattr *tb_rate[NL80211_BITRATE_ATTR_MAX + 1];
    6059                 :            :         struct nlattr *nl_rate;
    6060                 :            :         int rem_rate, idx;
    6061                 :            : 
    6062         [ +  + ]:       8526 :         if (tb == NULL)
    6063                 :       8120 :                 return NL_OK;
    6064                 :            : 
    6065         [ +  + ]:       4466 :         nla_for_each_nested(nl_rate, tb, rem_rate) {
    6066                 :       8120 :                 nla_parse(tb_rate, NL80211_BITRATE_ATTR_MAX,
    6067                 :       4060 :                           nla_data(nl_rate), nla_len(nl_rate),
    6068                 :            :                           rate_policy);
    6069         [ -  + ]:       4060 :                 if (!tb_rate[NL80211_BITRATE_ATTR_RATE])
    6070                 :          0 :                         continue;
    6071                 :       4060 :                 mode->num_rates++;
    6072                 :            :         }
    6073                 :            : 
    6074                 :        406 :         mode->rates = os_calloc(mode->num_rates, sizeof(int));
    6075         [ -  + ]:        406 :         if (!mode->rates)
    6076                 :          0 :                 return NL_SKIP;
    6077                 :            : 
    6078                 :        406 :         idx = 0;
    6079                 :            : 
    6080         [ +  + ]:       4466 :         nla_for_each_nested(nl_rate, tb, rem_rate) {
    6081                 :       8120 :                 nla_parse(tb_rate, NL80211_BITRATE_ATTR_MAX,
    6082                 :       4060 :                           nla_data(nl_rate), nla_len(nl_rate),
    6083                 :            :                           rate_policy);
    6084         [ -  + ]:       4060 :                 if (!tb_rate[NL80211_BITRATE_ATTR_RATE])
    6085                 :          0 :                         continue;
    6086                 :       4060 :                 mode->rates[idx] = nla_get_u32(
    6087                 :            :                         tb_rate[NL80211_BITRATE_ATTR_RATE]);
    6088                 :       4060 :                 idx++;
    6089                 :            :         }
    6090                 :            : 
    6091                 :       8526 :         return NL_OK;
    6092                 :            : }
    6093                 :            : 
    6094                 :            : 
    6095                 :       8526 : static int phy_info_band(struct phy_info_arg *phy_info, struct nlattr *nl_band)
    6096                 :            : {
    6097                 :            :         struct nlattr *tb_band[NL80211_BAND_ATTR_MAX + 1];
    6098                 :            :         struct hostapd_hw_modes *mode;
    6099                 :            :         int ret;
    6100                 :            : 
    6101         [ +  + ]:       8526 :         if (phy_info->last_mode != nl_band->nla_type) {
    6102                 :        406 :                 mode = os_realloc_array(phy_info->modes,
    6103                 :        406 :                                         *phy_info->num_modes + 1,
    6104                 :            :                                         sizeof(*mode));
    6105         [ -  + ]:        406 :                 if (!mode)
    6106                 :          0 :                         return NL_SKIP;
    6107                 :        406 :                 phy_info->modes = mode;
    6108                 :            : 
    6109                 :        406 :                 mode = &phy_info->modes[*(phy_info->num_modes)];
    6110                 :        406 :                 os_memset(mode, 0, sizeof(*mode));
    6111                 :        406 :                 mode->mode = NUM_HOSTAPD_MODES;
    6112                 :        406 :                 mode->flags = HOSTAPD_MODE_FLAG_HT_INFO_KNOWN |
    6113                 :            :                         HOSTAPD_MODE_FLAG_VHT_INFO_KNOWN;
    6114                 :            : 
    6115                 :            :                 /*
    6116                 :            :                  * Unsupported VHT MCS stream is defined as value 3, so the VHT
    6117                 :            :                  * MCS RX/TX map must be initialized with 0xffff to mark all 8
    6118                 :            :                  * possible streams as unsupported. This will be overridden if
    6119                 :            :                  * driver advertises VHT support.
    6120                 :            :                  */
    6121                 :        406 :                 mode->vht_mcs_set[0] = 0xff;
    6122                 :        406 :                 mode->vht_mcs_set[1] = 0xff;
    6123                 :        406 :                 mode->vht_mcs_set[4] = 0xff;
    6124                 :        406 :                 mode->vht_mcs_set[5] = 0xff;
    6125                 :            : 
    6126                 :        406 :                 *(phy_info->num_modes) += 1;
    6127                 :        406 :                 phy_info->last_mode = nl_band->nla_type;
    6128                 :        406 :                 phy_info->last_chan_idx = 0;
    6129                 :            :         } else
    6130                 :       8120 :                 mode = &phy_info->modes[*(phy_info->num_modes) - 1];
    6131                 :            : 
    6132                 :       8526 :         nla_parse(tb_band, NL80211_BAND_ATTR_MAX, nla_data(nl_band),
    6133                 :            :                   nla_len(nl_band), NULL);
    6134                 :            : 
    6135                 :       8526 :         phy_info_ht_capa(mode, tb_band[NL80211_BAND_ATTR_HT_CAPA],
    6136                 :            :                          tb_band[NL80211_BAND_ATTR_HT_AMPDU_FACTOR],
    6137                 :            :                          tb_band[NL80211_BAND_ATTR_HT_AMPDU_DENSITY],
    6138                 :            :                          tb_band[NL80211_BAND_ATTR_HT_MCS_SET]);
    6139                 :       8526 :         phy_info_vht_capa(mode, tb_band[NL80211_BAND_ATTR_VHT_CAPA],
    6140                 :            :                           tb_band[NL80211_BAND_ATTR_VHT_MCS_SET]);
    6141                 :       8526 :         ret = phy_info_freqs(phy_info, mode, tb_band[NL80211_BAND_ATTR_FREQS]);
    6142         [ -  + ]:       8526 :         if (ret != NL_OK)
    6143                 :          0 :                 return ret;
    6144                 :       8526 :         ret = phy_info_rates(mode, tb_band[NL80211_BAND_ATTR_RATES]);
    6145         [ -  + ]:       8526 :         if (ret != NL_OK)
    6146                 :          0 :                 return ret;
    6147                 :            : 
    6148                 :       8526 :         return NL_OK;
    6149                 :            : }
    6150                 :            : 
    6151                 :            : 
    6152                 :      10759 : static int phy_info_handler(struct nl_msg *msg, void *arg)
    6153                 :            : {
    6154                 :            :         struct nlattr *tb_msg[NL80211_ATTR_MAX + 1];
    6155                 :      10759 :         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
    6156                 :      10759 :         struct phy_info_arg *phy_info = arg;
    6157                 :            :         struct nlattr *nl_band;
    6158                 :            :         int rem_band;
    6159                 :            : 
    6160                 :      10759 :         nla_parse(tb_msg, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
    6161                 :            :                   genlmsg_attrlen(gnlh, 0), NULL);
    6162                 :            : 
    6163         [ +  + ]:      10759 :         if (!tb_msg[NL80211_ATTR_WIPHY_BANDS])
    6164                 :       2030 :                 return NL_SKIP;
    6165                 :            : 
    6166         [ +  + ]:      17255 :         nla_for_each_nested(nl_band, tb_msg[NL80211_ATTR_WIPHY_BANDS], rem_band)
    6167                 :            :         {
    6168                 :       8526 :                 int res = phy_info_band(phy_info, nl_band);
    6169         [ -  + ]:       8526 :                 if (res != NL_OK)
    6170                 :          0 :                         return res;
    6171                 :            :         }
    6172                 :            : 
    6173                 :      10759 :         return NL_SKIP;
    6174                 :            : }
    6175                 :            : 
    6176                 :            : 
    6177                 :            : static struct hostapd_hw_modes *
    6178                 :        203 : wpa_driver_nl80211_postprocess_modes(struct hostapd_hw_modes *modes,
    6179                 :            :                                      u16 *num_modes)
    6180                 :            : {
    6181                 :            :         u16 m;
    6182                 :        203 :         struct hostapd_hw_modes *mode11g = NULL, *nmodes, *mode;
    6183                 :        203 :         int i, mode11g_idx = -1;
    6184                 :            : 
    6185                 :            :         /* heuristic to set up modes */
    6186         [ +  + ]:        609 :         for (m = 0; m < *num_modes; m++) {
    6187         [ -  + ]:        406 :                 if (!modes[m].num_channels)
    6188                 :          0 :                         continue;
    6189         [ +  + ]:        406 :                 if (modes[m].channels[0].freq < 4000) {
    6190                 :        203 :                         modes[m].mode = HOSTAPD_MODE_IEEE80211B;
    6191         [ +  - ]:       2030 :                         for (i = 0; i < modes[m].num_rates; i++) {
    6192         [ +  + ]:       1827 :                                 if (modes[m].rates[i] > 200) {
    6193                 :        203 :                                         modes[m].mode = HOSTAPD_MODE_IEEE80211G;
    6194                 :        203 :                                         break;
    6195                 :            :                                 }
    6196                 :            :                         }
    6197         [ -  + ]:        203 :                 } else if (modes[m].channels[0].freq > 50000)
    6198                 :          0 :                         modes[m].mode = HOSTAPD_MODE_IEEE80211AD;
    6199                 :            :                 else
    6200                 :        203 :                         modes[m].mode = HOSTAPD_MODE_IEEE80211A;
    6201                 :            :         }
    6202                 :            : 
    6203                 :            :         /* If only 802.11g mode is included, use it to construct matching
    6204                 :            :          * 802.11b mode data. */
    6205                 :            : 
    6206         [ +  + ]:        609 :         for (m = 0; m < *num_modes; m++) {
    6207         [ -  + ]:        406 :                 if (modes[m].mode == HOSTAPD_MODE_IEEE80211B)
    6208                 :          0 :                         return modes; /* 802.11b already included */
    6209         [ +  + ]:        406 :                 if (modes[m].mode == HOSTAPD_MODE_IEEE80211G)
    6210                 :        203 :                         mode11g_idx = m;
    6211                 :            :         }
    6212                 :            : 
    6213         [ -  + ]:        203 :         if (mode11g_idx < 0)
    6214                 :          0 :                 return modes; /* 2.4 GHz band not supported at all */
    6215                 :            : 
    6216                 :        203 :         nmodes = os_realloc_array(modes, *num_modes + 1, sizeof(*nmodes));
    6217         [ -  + ]:        203 :         if (nmodes == NULL)
    6218                 :          0 :                 return modes; /* Could not add 802.11b mode */
    6219                 :            : 
    6220                 :        203 :         mode = &nmodes[*num_modes];
    6221                 :        203 :         os_memset(mode, 0, sizeof(*mode));
    6222                 :        203 :         (*num_modes)++;
    6223                 :        203 :         modes = nmodes;
    6224                 :            : 
    6225                 :        203 :         mode->mode = HOSTAPD_MODE_IEEE80211B;
    6226                 :            : 
    6227                 :        203 :         mode11g = &modes[mode11g_idx];
    6228                 :        203 :         mode->num_channels = mode11g->num_channels;
    6229                 :        203 :         mode->channels = os_malloc(mode11g->num_channels *
    6230                 :            :                                    sizeof(struct hostapd_channel_data));
    6231         [ -  + ]:        203 :         if (mode->channels == NULL) {
    6232                 :          0 :                 (*num_modes)--;
    6233                 :          0 :                 return modes; /* Could not add 802.11b mode */
    6234                 :            :         }
    6235                 :        203 :         os_memcpy(mode->channels, mode11g->channels,
    6236                 :            :                   mode11g->num_channels * sizeof(struct hostapd_channel_data));
    6237                 :            : 
    6238                 :        203 :         mode->num_rates = 0;
    6239                 :        203 :         mode->rates = os_malloc(4 * sizeof(int));
    6240         [ -  + ]:        203 :         if (mode->rates == NULL) {
    6241                 :          0 :                 os_free(mode->channels);
    6242                 :          0 :                 (*num_modes)--;
    6243                 :          0 :                 return modes; /* Could not add 802.11b mode */
    6244                 :            :         }
    6245                 :            : 
    6246         [ +  - ]:        812 :         for (i = 0; i < mode11g->num_rates; i++) {
    6247 [ +  + ][ +  + ]:        812 :                 if (mode11g->rates[i] != 10 && mode11g->rates[i] != 20 &&
                 [ +  + ]
    6248         [ -  + ]:        203 :                     mode11g->rates[i] != 55 && mode11g->rates[i] != 110)
    6249                 :          0 :                         continue;
    6250                 :        812 :                 mode->rates[mode->num_rates] = mode11g->rates[i];
    6251                 :        812 :                 mode->num_rates++;
    6252         [ +  + ]:        812 :                 if (mode->num_rates == 4)
    6253                 :        203 :                         break;
    6254                 :            :         }
    6255                 :            : 
    6256         [ -  + ]:        203 :         if (mode->num_rates == 0) {
    6257                 :          0 :                 os_free(mode->channels);
    6258                 :          0 :                 os_free(mode->rates);
    6259                 :          0 :                 (*num_modes)--;
    6260                 :          0 :                 return modes; /* No 802.11b rates */
    6261                 :            :         }
    6262                 :            : 
    6263                 :        203 :         wpa_printf(MSG_DEBUG, "nl80211: Added 802.11b mode based on 802.11g "
    6264                 :            :                    "information");
    6265                 :            : 
    6266                 :        203 :         return modes;
    6267                 :            : }
    6268                 :            : 
    6269                 :            : 
    6270                 :       1218 : static void nl80211_set_ht40_mode(struct hostapd_hw_modes *mode, int start,
    6271                 :            :                                   int end)
    6272                 :            : {
    6273                 :            :         int c;
    6274                 :            : 
    6275         [ +  + ]:      24360 :         for (c = 0; c < mode->num_channels; c++) {
    6276                 :      23142 :                 struct hostapd_channel_data *chan = &mode->channels[c];
    6277 [ +  + ][ +  + ]:      23142 :                 if (chan->freq - 10 >= start && chan->freq + 10 <= end)
    6278                 :       4060 :                         chan->flag |= HOSTAPD_CHAN_HT40;
    6279                 :            :         }
    6280                 :       1218 : }
    6281                 :            : 
    6282                 :            : 
    6283                 :       2030 : static void nl80211_set_ht40_mode_sec(struct hostapd_hw_modes *mode, int start,
    6284                 :            :                                       int end)
    6285                 :            : {
    6286                 :            :         int c;
    6287                 :            : 
    6288         [ +  + ]:      40600 :         for (c = 0; c < mode->num_channels; c++) {
    6289                 :      38570 :                 struct hostapd_channel_data *chan = &mode->channels[c];
    6290         [ +  + ]:      38570 :                 if (!(chan->flag & HOSTAPD_CHAN_HT40))
    6291                 :      18270 :                         continue;
    6292 [ +  + ][ +  + ]:      20300 :                 if (chan->freq - 30 >= start && chan->freq - 10 <= end)
    6293                 :       2842 :                         chan->flag |= HOSTAPD_CHAN_HT40MINUS;
    6294 [ +  + ][ +  + ]:      20300 :                 if (chan->freq + 10 >= start && chan->freq + 30 <= end)
    6295                 :       3248 :                         chan->flag |= HOSTAPD_CHAN_HT40PLUS;
    6296                 :            :         }
    6297                 :       2030 : }
    6298                 :            : 
    6299                 :            : 
    6300                 :       1015 : static void nl80211_reg_rule_max_eirp(u32 start, u32 end, u32 max_eirp,
    6301                 :            :                                       struct phy_info_arg *results)
    6302                 :            : {
    6303                 :            :         u16 m;
    6304                 :            : 
    6305         [ +  + ]:       3045 :         for (m = 0; m < *results->num_modes; m++) {
    6306                 :            :                 int c;
    6307                 :       2030 :                 struct hostapd_hw_modes *mode = &results->modes[m];
    6308                 :            : 
    6309         [ +  + ]:      40600 :                 for (c = 0; c < mode->num_channels; c++) {
    6310                 :      38570 :                         struct hostapd_channel_data *chan = &mode->channels[c];
    6311 [ +  + ][ +  + ]:      38570 :                         if ((u32) chan->freq - 10 >= start &&
    6312                 :      24157 :                             (u32) chan->freq + 10 <= end)
    6313                 :       4669 :                                 chan->max_tx_power = max_eirp;
    6314                 :            :                 }
    6315                 :            :         }
    6316                 :       1015 : }
    6317                 :            : 
    6318                 :            : 
    6319                 :        609 : static void nl80211_reg_rule_ht40(u32 start, u32 end,
    6320                 :            :                                   struct phy_info_arg *results)
    6321                 :            : {
    6322                 :            :         u16 m;
    6323                 :            : 
    6324         [ +  + ]:       1827 :         for (m = 0; m < *results->num_modes; m++) {
    6325         [ -  + ]:       1218 :                 if (!(results->modes[m].ht_capab &
    6326                 :            :                       HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
    6327                 :          0 :                         continue;
    6328                 :       1218 :                 nl80211_set_ht40_mode(&results->modes[m], start, end);
    6329                 :            :         }
    6330                 :        609 : }
    6331                 :            : 
    6332                 :            : 
    6333                 :       1015 : static void nl80211_reg_rule_sec(struct nlattr *tb[],
    6334                 :            :                                  struct phy_info_arg *results)
    6335                 :            : {
    6336                 :            :         u32 start, end, max_bw;
    6337                 :            :         u16 m;
    6338                 :            : 
    6339 [ +  - ][ +  - ]:       1015 :         if (tb[NL80211_ATTR_FREQ_RANGE_START] == NULL ||
    6340         [ -  + ]:       1015 :             tb[NL80211_ATTR_FREQ_RANGE_END] == NULL ||
    6341                 :       1015 :             tb[NL80211_ATTR_FREQ_RANGE_MAX_BW] == NULL)
    6342                 :          0 :                 return;
    6343                 :            : 
    6344                 :       1015 :         start = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_START]) / 1000;
    6345                 :       1015 :         end = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_END]) / 1000;
    6346                 :       1015 :         max_bw = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]) / 1000;
    6347                 :            : 
    6348         [ -  + ]:       1015 :         if (max_bw < 20)
    6349                 :          0 :                 return;
    6350                 :            : 
    6351         [ +  + ]:       3045 :         for (m = 0; m < *results->num_modes; m++) {
    6352         [ -  + ]:       2030 :                 if (!(results->modes[m].ht_capab &
    6353                 :            :                       HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
    6354                 :          0 :                         continue;
    6355                 :       2030 :                 nl80211_set_ht40_mode_sec(&results->modes[m], start, end);
    6356                 :            :         }
    6357                 :            : }
    6358                 :            : 
    6359                 :            : 
    6360                 :          0 : static void nl80211_set_vht_mode(struct hostapd_hw_modes *mode, int start,
    6361                 :            :                                  int end)
    6362                 :            : {
    6363                 :            :         int c;
    6364                 :            : 
    6365         [ #  # ]:          0 :         for (c = 0; c < mode->num_channels; c++) {
    6366                 :          0 :                 struct hostapd_channel_data *chan = &mode->channels[c];
    6367 [ #  # ][ #  # ]:          0 :                 if (chan->freq - 10 >= start && chan->freq + 70 <= end)
    6368                 :          0 :                         chan->flag |= HOSTAPD_CHAN_VHT_10_70;
    6369                 :            : 
    6370 [ #  # ][ #  # ]:          0 :                 if (chan->freq - 30 >= start && chan->freq + 50 <= end)
    6371                 :          0 :                         chan->flag |= HOSTAPD_CHAN_VHT_30_50;
    6372                 :            : 
    6373 [ #  # ][ #  # ]:          0 :                 if (chan->freq - 50 >= start && chan->freq + 30 <= end)
    6374                 :          0 :                         chan->flag |= HOSTAPD_CHAN_VHT_50_30;
    6375                 :            : 
    6376 [ #  # ][ #  # ]:          0 :                 if (chan->freq - 70 >= start && chan->freq + 10 <= end)
    6377                 :          0 :                         chan->flag |= HOSTAPD_CHAN_VHT_70_10;
    6378                 :            :         }
    6379                 :          0 : }
    6380                 :            : 
    6381                 :            : 
    6382                 :       1015 : static void nl80211_reg_rule_vht(struct nlattr *tb[],
    6383                 :            :                                  struct phy_info_arg *results)
    6384                 :            : {
    6385                 :            :         u32 start, end, max_bw;
    6386                 :            :         u16 m;
    6387                 :            : 
    6388 [ +  - ][ +  - ]:       1015 :         if (tb[NL80211_ATTR_FREQ_RANGE_START] == NULL ||
    6389         [ -  + ]:       1015 :             tb[NL80211_ATTR_FREQ_RANGE_END] == NULL ||
    6390                 :       1015 :             tb[NL80211_ATTR_FREQ_RANGE_MAX_BW] == NULL)
    6391                 :          0 :                 return;
    6392                 :            : 
    6393                 :       1015 :         start = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_START]) / 1000;
    6394                 :       1015 :         end = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_END]) / 1000;
    6395                 :       1015 :         max_bw = nla_get_u32(tb[NL80211_ATTR_FREQ_RANGE_MAX_BW]) / 1000;
    6396                 :            : 
    6397         [ +  - ]:       1015 :         if (max_bw < 80)
    6398                 :       1015 :                 return;
    6399                 :            : 
    6400         [ #  # ]:       1015 :         for (m = 0; m < *results->num_modes; m++) {
    6401         [ #  # ]:          0 :                 if (!(results->modes[m].ht_capab &
    6402                 :            :                       HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
    6403                 :          0 :                         continue;
    6404                 :            :                 /* TODO: use a real VHT support indication */
    6405         [ #  # ]:          0 :                 if (!results->modes[m].vht_capab)
    6406                 :          0 :                         continue;
    6407                 :            : 
    6408                 :          0 :                 nl80211_set_vht_mode(&results->modes[m], start, end);
    6409                 :            :         }
    6410                 :            : }
    6411                 :            : 
    6412                 :            : 
    6413                 :        203 : static int nl80211_get_reg(struct nl_msg *msg, void *arg)
    6414                 :            : {
    6415                 :        203 :         struct phy_info_arg *results = arg;
    6416                 :            :         struct nlattr *tb_msg[NL80211_ATTR_MAX + 1];
    6417                 :        203 :         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
    6418                 :            :         struct nlattr *nl_rule;
    6419                 :            :         struct nlattr *tb_rule[NL80211_FREQUENCY_ATTR_MAX + 1];
    6420                 :            :         int rem_rule;
    6421                 :            :         static struct nla_policy reg_policy[NL80211_FREQUENCY_ATTR_MAX + 1] = {
    6422                 :            :                 [NL80211_ATTR_REG_RULE_FLAGS] = { .type = NLA_U32 },
    6423                 :            :                 [NL80211_ATTR_FREQ_RANGE_START] = { .type = NLA_U32 },
    6424                 :            :                 [NL80211_ATTR_FREQ_RANGE_END] = { .type = NLA_U32 },
    6425                 :            :                 [NL80211_ATTR_FREQ_RANGE_MAX_BW] = { .type = NLA_U32 },
    6426                 :            :                 [NL80211_ATTR_POWER_RULE_MAX_ANT_GAIN] = { .type = NLA_U32 },
    6427                 :            :                 [NL80211_ATTR_POWER_RULE_MAX_EIRP] = { .type = NLA_U32 },
    6428                 :            :         };
    6429                 :            : 
    6430                 :        203 :         nla_parse(tb_msg, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
    6431                 :            :                   genlmsg_attrlen(gnlh, 0), NULL);
    6432 [ +  - ][ -  + ]:        203 :         if (!tb_msg[NL80211_ATTR_REG_ALPHA2] ||
    6433                 :        203 :             !tb_msg[NL80211_ATTR_REG_RULES]) {
    6434                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: No regulatory information "
    6435                 :            :                            "available");
    6436                 :          0 :                 return NL_SKIP;
    6437                 :            :         }
    6438                 :            : 
    6439                 :        203 :         wpa_printf(MSG_DEBUG, "nl80211: Regulatory information - country=%s",
    6440                 :        203 :                    (char *) nla_data(tb_msg[NL80211_ATTR_REG_ALPHA2]));
    6441                 :            : 
    6442         [ +  + ]:       1218 :         nla_for_each_nested(nl_rule, tb_msg[NL80211_ATTR_REG_RULES], rem_rule)
    6443                 :            :         {
    6444                 :       1015 :                 u32 start, end, max_eirp = 0, max_bw = 0;
    6445                 :       2030 :                 nla_parse(tb_rule, NL80211_FREQUENCY_ATTR_MAX,
    6446                 :       1015 :                           nla_data(nl_rule), nla_len(nl_rule), reg_policy);
    6447 [ +  - ][ -  + ]:       1015 :                 if (tb_rule[NL80211_ATTR_FREQ_RANGE_START] == NULL ||
    6448                 :       1015 :                     tb_rule[NL80211_ATTR_FREQ_RANGE_END] == NULL)
    6449                 :          0 :                         continue;
    6450                 :       1015 :                 start = nla_get_u32(tb_rule[NL80211_ATTR_FREQ_RANGE_START]) / 1000;
    6451                 :       1015 :                 end = nla_get_u32(tb_rule[NL80211_ATTR_FREQ_RANGE_END]) / 1000;
    6452         [ +  - ]:       1015 :                 if (tb_rule[NL80211_ATTR_POWER_RULE_MAX_EIRP])
    6453                 :       1015 :                         max_eirp = nla_get_u32(tb_rule[NL80211_ATTR_POWER_RULE_MAX_EIRP]) / 100;
    6454         [ +  - ]:       1015 :                 if (tb_rule[NL80211_ATTR_FREQ_RANGE_MAX_BW])
    6455                 :       1015 :                         max_bw = nla_get_u32(tb_rule[NL80211_ATTR_FREQ_RANGE_MAX_BW]) / 1000;
    6456                 :            : 
    6457                 :       1015 :                 wpa_printf(MSG_DEBUG, "nl80211: %u-%u @ %u MHz %u mBm",
    6458                 :            :                            start, end, max_bw, max_eirp);
    6459         [ +  + ]:       1015 :                 if (max_bw >= 40)
    6460                 :        609 :                         nl80211_reg_rule_ht40(start, end, results);
    6461         [ +  - ]:       1015 :                 if (tb_rule[NL80211_ATTR_POWER_RULE_MAX_EIRP])
    6462                 :       1015 :                         nl80211_reg_rule_max_eirp(start, end, max_eirp,
    6463                 :            :                                                   results);
    6464                 :            :         }
    6465                 :            : 
    6466         [ +  + ]:       1218 :         nla_for_each_nested(nl_rule, tb_msg[NL80211_ATTR_REG_RULES], rem_rule)
    6467                 :            :         {
    6468                 :       2030 :                 nla_parse(tb_rule, NL80211_FREQUENCY_ATTR_MAX,
    6469                 :       1015 :                           nla_data(nl_rule), nla_len(nl_rule), reg_policy);
    6470                 :       1015 :                 nl80211_reg_rule_sec(tb_rule, results);
    6471                 :            :         }
    6472                 :            : 
    6473         [ +  + ]:       1218 :         nla_for_each_nested(nl_rule, tb_msg[NL80211_ATTR_REG_RULES], rem_rule)
    6474                 :            :         {
    6475                 :       2030 :                 nla_parse(tb_rule, NL80211_FREQUENCY_ATTR_MAX,
    6476                 :       1015 :                           nla_data(nl_rule), nla_len(nl_rule), reg_policy);
    6477                 :       1015 :                 nl80211_reg_rule_vht(tb_rule, results);
    6478                 :            :         }
    6479                 :            : 
    6480                 :        203 :         return NL_SKIP;
    6481                 :            : }
    6482                 :            : 
    6483                 :            : 
    6484                 :        203 : static int nl80211_set_regulatory_flags(struct wpa_driver_nl80211_data *drv,
    6485                 :            :                                         struct phy_info_arg *results)
    6486                 :            : {
    6487                 :            :         struct nl_msg *msg;
    6488                 :            : 
    6489                 :        203 :         msg = nlmsg_alloc();
    6490         [ -  + ]:        203 :         if (!msg)
    6491                 :          0 :                 return -ENOMEM;
    6492                 :            : 
    6493                 :        203 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_REG);
    6494                 :        203 :         return send_and_recv_msgs(drv, msg, nl80211_get_reg, results);
    6495                 :            : }
    6496                 :            : 
    6497                 :            : 
    6498                 :            : static struct hostapd_hw_modes *
    6499                 :        203 : wpa_driver_nl80211_get_hw_feature_data(void *priv, u16 *num_modes, u16 *flags)
    6500                 :            : {
    6501                 :            :         u32 feat;
    6502                 :        203 :         struct i802_bss *bss = priv;
    6503                 :        203 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    6504                 :            :         struct nl_msg *msg;
    6505                 :        203 :         struct phy_info_arg result = {
    6506                 :            :                 .num_modes = num_modes,
    6507                 :            :                 .modes = NULL,
    6508                 :            :                 .last_mode = -1,
    6509                 :            :         };
    6510                 :            : 
    6511                 :        203 :         *num_modes = 0;
    6512                 :        203 :         *flags = 0;
    6513                 :            : 
    6514                 :        203 :         msg = nlmsg_alloc();
    6515         [ -  + ]:        203 :         if (!msg)
    6516                 :          0 :                 return NULL;
    6517                 :            : 
    6518                 :        203 :         feat = get_nl80211_protocol_features(drv);
    6519         [ +  - ]:        203 :         if (feat & NL80211_PROTOCOL_FEATURE_SPLIT_WIPHY_DUMP)
    6520                 :        203 :                 nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_WIPHY);
    6521                 :            :         else
    6522                 :          0 :                 nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_WIPHY);
    6523                 :            : 
    6524         [ +  - ]:        203 :         NLA_PUT_FLAG(msg, NL80211_ATTR_SPLIT_WIPHY_DUMP);
    6525         [ +  - ]:        203 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
    6526                 :            : 
    6527         [ +  - ]:        203 :         if (send_and_recv_msgs(drv, msg, phy_info_handler, &result) == 0) {
    6528                 :        203 :                 nl80211_set_regulatory_flags(drv, &result);
    6529                 :        203 :                 return wpa_driver_nl80211_postprocess_modes(result.modes,
    6530                 :            :                                                             num_modes);
    6531                 :            :         }
    6532                 :          0 :         msg = NULL;
    6533                 :            :  nla_put_failure:
    6534                 :          0 :         nlmsg_free(msg);
    6535                 :        203 :         return NULL;
    6536                 :            : }
    6537                 :            : 
    6538                 :            : 
    6539                 :          0 : static int wpa_driver_nl80211_send_mntr(struct wpa_driver_nl80211_data *drv,
    6540                 :            :                                         const void *data, size_t len,
    6541                 :            :                                         int encrypt, int noack)
    6542                 :            : {
    6543                 :          0 :         __u8 rtap_hdr[] = {
    6544                 :            :                 0x00, 0x00, /* radiotap version */
    6545                 :            :                 0x0e, 0x00, /* radiotap length */
    6546                 :            :                 0x02, 0xc0, 0x00, 0x00, /* bmap: flags, tx and rx flags */
    6547                 :            :                 IEEE80211_RADIOTAP_F_FRAG, /* F_FRAG (fragment if required) */
    6548                 :            :                 0x00,       /* padding */
    6549                 :            :                 0x00, 0x00, /* RX and TX flags to indicate that */
    6550                 :            :                 0x00, 0x00, /* this is the injected frame directly */
    6551                 :            :         };
    6552                 :          0 :         struct iovec iov[2] = {
    6553                 :            :                 {
    6554                 :            :                         .iov_base = &rtap_hdr,
    6555                 :            :                         .iov_len = sizeof(rtap_hdr),
    6556                 :            :                 },
    6557                 :            :                 {
    6558                 :            :                         .iov_base = (void *) data,
    6559                 :            :                         .iov_len = len,
    6560                 :            :                 }
    6561                 :            :         };
    6562                 :          0 :         struct msghdr msg = {
    6563                 :            :                 .msg_name = NULL,
    6564                 :            :                 .msg_namelen = 0,
    6565                 :            :                 .msg_iov = iov,
    6566                 :            :                 .msg_iovlen = 2,
    6567                 :            :                 .msg_control = NULL,
    6568                 :            :                 .msg_controllen = 0,
    6569                 :            :                 .msg_flags = 0,
    6570                 :            :         };
    6571                 :            :         int res;
    6572                 :          0 :         u16 txflags = 0;
    6573                 :            : 
    6574         [ #  # ]:          0 :         if (encrypt)
    6575                 :          0 :                 rtap_hdr[8] |= IEEE80211_RADIOTAP_F_WEP;
    6576                 :            : 
    6577         [ #  # ]:          0 :         if (drv->monitor_sock < 0) {
    6578                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: No monitor socket available "
    6579                 :            :                            "for %s", __func__);
    6580                 :          0 :                 return -1;
    6581                 :            :         }
    6582                 :            : 
    6583         [ #  # ]:          0 :         if (noack)
    6584                 :          0 :                 txflags |= IEEE80211_RADIOTAP_F_TX_NOACK;
    6585                 :          0 :         WPA_PUT_LE16(&rtap_hdr[12], txflags);
    6586                 :            : 
    6587                 :          0 :         res = sendmsg(drv->monitor_sock, &msg, 0);
    6588         [ #  # ]:          0 :         if (res < 0) {
    6589                 :          0 :                 wpa_printf(MSG_INFO, "nl80211: sendmsg: %s", strerror(errno));
    6590                 :          0 :                 return -1;
    6591                 :            :         }
    6592                 :          0 :         return 0;
    6593                 :            : }
    6594                 :            : 
    6595                 :            : 
    6596                 :       1932 : static int wpa_driver_nl80211_send_frame(struct i802_bss *bss,
    6597                 :            :                                          const void *data, size_t len,
    6598                 :            :                                          int encrypt, int noack,
    6599                 :            :                                          unsigned int freq, int no_cck,
    6600                 :            :                                          int offchanok, unsigned int wait_time)
    6601                 :            : {
    6602                 :       1932 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    6603                 :            :         u64 cookie;
    6604                 :            :         int res;
    6605                 :            : 
    6606         [ +  + ]:       1932 :         if (freq == 0) {
    6607                 :       1856 :                 wpa_printf(MSG_DEBUG, "nl80211: send_frame - Use bss->freq=%u",
    6608                 :            :                            bss->freq);
    6609                 :       1856 :                 freq = bss->freq;
    6610                 :            :         }
    6611                 :            : 
    6612         [ -  + ]:       1932 :         if (drv->use_monitor) {
    6613                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: send_frame(freq=%u bss->freq=%u) -> send_mntr",
    6614                 :            :                            freq, bss->freq);
    6615                 :          0 :                 return wpa_driver_nl80211_send_mntr(drv, data, len,
    6616                 :            :                                                     encrypt, noack);
    6617                 :            :         }
    6618                 :            : 
    6619                 :       1932 :         wpa_printf(MSG_DEBUG, "nl80211: send_frame -> send_frame_cmd");
    6620                 :       1932 :         res = nl80211_send_frame_cmd(bss, freq, wait_time, data, len,
    6621                 :            :                                      &cookie, no_cck, noack, offchanok);
    6622 [ +  + ][ +  + ]:       1932 :         if (res == 0 && !noack) {
    6623                 :            :                 const struct ieee80211_mgmt *mgmt;
    6624                 :            :                 u16 fc;
    6625                 :            : 
    6626                 :       1033 :                 mgmt = (const struct ieee80211_mgmt *) data;
    6627                 :       1033 :                 fc = le_to_host16(mgmt->frame_control);
    6628 [ +  - ][ +  + ]:       1033 :                 if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
    6629                 :       1033 :                     WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_ACTION) {
    6630                 :        102 :                         wpa_printf(MSG_MSGDUMP,
    6631                 :            :                                    "nl80211: Update send_action_cookie from 0x%llx to 0x%llx",
    6632                 :            :                                    (long long unsigned int)
    6633                 :        102 :                                    drv->send_action_cookie,
    6634                 :            :                                    (long long unsigned int) cookie);
    6635                 :        102 :                         drv->send_action_cookie = cookie;
    6636                 :            :                 }
    6637                 :            :         }
    6638                 :            : 
    6639                 :       1932 :         return res;
    6640                 :            : }
    6641                 :            : 
    6642                 :            : 
    6643                 :       1932 : static int wpa_driver_nl80211_send_mlme(struct i802_bss *bss, const u8 *data,
    6644                 :            :                                         size_t data_len, int noack,
    6645                 :            :                                         unsigned int freq, int no_cck,
    6646                 :            :                                         int offchanok,
    6647                 :            :                                         unsigned int wait_time)
    6648                 :            : {
    6649                 :       1932 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    6650                 :            :         struct ieee80211_mgmt *mgmt;
    6651                 :       1932 :         int encrypt = 1;
    6652                 :            :         u16 fc;
    6653                 :            : 
    6654                 :       1932 :         mgmt = (struct ieee80211_mgmt *) data;
    6655                 :       1932 :         fc = le_to_host16(mgmt->frame_control);
    6656                 :       1932 :         wpa_printf(MSG_DEBUG, "nl80211: send_mlme - noack=%d freq=%u no_cck=%d offchanok=%d wait_time=%u fc=0x%x nlmode=%d",
    6657                 :       1932 :                    noack, freq, no_cck, offchanok, wait_time, fc, drv->nlmode);
    6658                 :            : 
    6659 [ +  - ][ -  + ]:       1932 :         if ((is_sta_interface(drv->nlmode) ||
    6660         [ #  # ]:          0 :              drv->nlmode == NL80211_IFTYPE_P2P_DEVICE) &&
    6661         [ #  # ]:          0 :             WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
    6662                 :          0 :             WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_PROBE_RESP) {
    6663                 :            :                 /*
    6664                 :            :                  * The use of last_mgmt_freq is a bit of a hack,
    6665                 :            :                  * but it works due to the single-threaded nature
    6666                 :            :                  * of wpa_supplicant.
    6667                 :            :                  */
    6668         [ #  # ]:          0 :                 if (freq == 0) {
    6669                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Use last_mgmt_freq=%d",
    6670                 :            :                                    drv->last_mgmt_freq);
    6671                 :          0 :                         freq = drv->last_mgmt_freq;
    6672                 :            :                 }
    6673                 :          0 :                 return nl80211_send_frame_cmd(bss, freq, 0,
    6674                 :            :                                               data, data_len, NULL, 1, noack,
    6675                 :            :                                               1);
    6676                 :            :         }
    6677                 :            : 
    6678 [ -  + ][ #  # ]:       1932 :         if (drv->device_ap_sme && is_ap_interface(drv->nlmode)) {
    6679         [ #  # ]:          0 :                 if (freq == 0) {
    6680                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Use bss->freq=%d",
    6681                 :            :                                    bss->freq);
    6682                 :          0 :                         freq = bss->freq;
    6683                 :            :                 }
    6684         [ #  # ]:          0 :                 return nl80211_send_frame_cmd(bss, freq,
    6685                 :          0 :                                               (int) freq == bss->freq ? 0 :
    6686                 :            :                                               wait_time,
    6687                 :            :                                               data, data_len,
    6688                 :            :                                               &drv->send_action_cookie,
    6689                 :            :                                               no_cck, noack, offchanok);
    6690                 :            :         }
    6691                 :            : 
    6692 [ +  - ][ +  + ]:       1932 :         if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
    6693                 :       1932 :             WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_AUTH) {
    6694                 :            :                 /*
    6695                 :            :                  * Only one of the authentication frame types is encrypted.
    6696                 :            :                  * In order for static WEP encryption to work properly (i.e.,
    6697                 :            :                  * to not encrypt the frame), we need to tell mac80211 about
    6698                 :            :                  * the frames that must not be encrypted.
    6699                 :            :                  */
    6700                 :        327 :                 u16 auth_alg = le_to_host16(mgmt->u.auth.auth_alg);
    6701                 :        327 :                 u16 auth_trans = le_to_host16(mgmt->u.auth.auth_transaction);
    6702 [ -  + ][ #  # ]:        327 :                 if (auth_alg != WLAN_AUTH_SHARED_KEY || auth_trans != 3)
    6703                 :        327 :                         encrypt = 0;
    6704                 :            :         }
    6705                 :            : 
    6706                 :       1932 :         wpa_printf(MSG_DEBUG, "nl80211: send_mlme -> send_frame");
    6707                 :       1932 :         return wpa_driver_nl80211_send_frame(bss, data, data_len, encrypt,
    6708                 :            :                                              noack, freq, no_cck, offchanok,
    6709                 :            :                                              wait_time);
    6710                 :            : }
    6711                 :            : 
    6712                 :            : 
    6713                 :        679 : static int nl80211_set_bss(struct i802_bss *bss, int cts, int preamble,
    6714                 :            :                            int slot, int ht_opmode, int ap_isolate,
    6715                 :            :                            int *basic_rates)
    6716                 :            : {
    6717                 :        679 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    6718                 :            :         struct nl_msg *msg;
    6719                 :            : 
    6720                 :        679 :         msg = nlmsg_alloc();
    6721         [ -  + ]:        679 :         if (!msg)
    6722                 :          0 :                 return -ENOMEM;
    6723                 :            : 
    6724                 :        679 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_BSS);
    6725                 :            : 
    6726         [ +  - ]:        679 :         if (cts >= 0)
    6727         [ +  - ]:        679 :                 NLA_PUT_U8(msg, NL80211_ATTR_BSS_CTS_PROT, cts);
    6728         [ +  - ]:        679 :         if (preamble >= 0)
    6729         [ +  - ]:        679 :                 NLA_PUT_U8(msg, NL80211_ATTR_BSS_SHORT_PREAMBLE, preamble);
    6730         [ +  - ]:        679 :         if (slot >= 0)
    6731         [ +  - ]:        679 :                 NLA_PUT_U8(msg, NL80211_ATTR_BSS_SHORT_SLOT_TIME, slot);
    6732         [ +  + ]:        679 :         if (ht_opmode >= 0)
    6733         [ +  - ]:        116 :                 NLA_PUT_U16(msg, NL80211_ATTR_BSS_HT_OPMODE, ht_opmode);
    6734         [ +  - ]:        679 :         if (ap_isolate >= 0)
    6735         [ +  - ]:        679 :                 NLA_PUT_U8(msg, NL80211_ATTR_AP_ISOLATE, ap_isolate);
    6736                 :            : 
    6737         [ +  - ]:        679 :         if (basic_rates) {
    6738                 :            :                 u8 rates[NL80211_MAX_SUPP_RATES];
    6739                 :        679 :                 u8 rates_len = 0;
    6740                 :            :                 int i;
    6741                 :            : 
    6742 [ +  - ][ +  + ]:       3395 :                 for (i = 0; i < NL80211_MAX_SUPP_RATES && basic_rates[i] >= 0;
    6743                 :       2716 :                      i++)
    6744                 :       2716 :                         rates[rates_len++] = basic_rates[i] / 5;
    6745                 :            : 
    6746         [ +  - ]:        679 :                 NLA_PUT(msg, NL80211_ATTR_BSS_BASIC_RATES, rates_len, rates);
    6747                 :            :         }
    6748                 :            : 
    6749         [ +  - ]:        679 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
    6750                 :            : 
    6751                 :        679 :         return send_and_recv_msgs(drv, msg, NULL, NULL);
    6752                 :            :  nla_put_failure:
    6753                 :          0 :         nlmsg_free(msg);
    6754                 :        679 :         return -ENOBUFS;
    6755                 :            : }
    6756                 :            : 
    6757                 :            : 
    6758                 :          0 : static int wpa_driver_nl80211_set_acl(void *priv,
    6759                 :            :                                       struct hostapd_acl_params *params)
    6760                 :            : {
    6761                 :          0 :         struct i802_bss *bss = priv;
    6762                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    6763                 :            :         struct nl_msg *msg;
    6764                 :            :         struct nlattr *acl;
    6765                 :            :         unsigned int i;
    6766                 :          0 :         int ret = 0;
    6767                 :            : 
    6768         [ #  # ]:          0 :         if (!(drv->capa.max_acl_mac_addrs))
    6769                 :          0 :                 return -ENOTSUP;
    6770                 :            : 
    6771         [ #  # ]:          0 :         if (params->num_mac_acl > drv->capa.max_acl_mac_addrs)
    6772                 :          0 :                 return -ENOTSUP;
    6773                 :            : 
    6774                 :          0 :         msg = nlmsg_alloc();
    6775         [ #  # ]:          0 :         if (!msg)
    6776                 :          0 :                 return -ENOMEM;
    6777                 :            : 
    6778         [ #  # ]:          0 :         wpa_printf(MSG_DEBUG, "nl80211: Set %s ACL (num_mac_acl=%u)",
    6779                 :          0 :                    params->acl_policy ? "Accept" : "Deny", params->num_mac_acl);
    6780                 :            : 
    6781                 :          0 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_MAC_ACL);
    6782                 :            : 
    6783         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
    6784                 :            : 
    6785         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_ACL_POLICY, params->acl_policy ?
    6786                 :            :                     NL80211_ACL_POLICY_DENY_UNLESS_LISTED :
    6787                 :            :                     NL80211_ACL_POLICY_ACCEPT_UNLESS_LISTED);
    6788                 :            : 
    6789                 :          0 :         acl = nla_nest_start(msg, NL80211_ATTR_MAC_ADDRS);
    6790         [ #  # ]:          0 :         if (acl == NULL)
    6791                 :          0 :                 goto nla_put_failure;
    6792                 :            : 
    6793         [ #  # ]:          0 :         for (i = 0; i < params->num_mac_acl; i++)
    6794         [ #  # ]:          0 :                 NLA_PUT(msg, i + 1, ETH_ALEN, params->mac_acl[i].addr);
    6795                 :            : 
    6796                 :          0 :         nla_nest_end(msg, acl);
    6797                 :            : 
    6798                 :          0 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    6799                 :          0 :         msg = NULL;
    6800         [ #  # ]:          0 :         if (ret) {
    6801                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Failed to set MAC ACL: %d (%s)",
    6802                 :            :                            ret, strerror(-ret));
    6803                 :            :         }
    6804                 :            : 
    6805                 :            : nla_put_failure:
    6806                 :          0 :         nlmsg_free(msg);
    6807                 :            : 
    6808                 :          0 :         return ret;
    6809                 :            : }
    6810                 :            : 
    6811                 :            : 
    6812                 :        679 : static int wpa_driver_nl80211_set_ap(void *priv,
    6813                 :            :                                      struct wpa_driver_ap_params *params)
    6814                 :            : {
    6815                 :        679 :         struct i802_bss *bss = priv;
    6816                 :        679 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    6817                 :            :         struct nl_msg *msg;
    6818                 :        679 :         u8 cmd = NL80211_CMD_NEW_BEACON;
    6819                 :            :         int ret;
    6820                 :            :         int beacon_set;
    6821                 :        679 :         int ifindex = if_nametoindex(bss->ifname);
    6822                 :            :         int num_suites;
    6823                 :            :         u32 suites[10], suite;
    6824                 :            :         u32 ver;
    6825                 :            : 
    6826                 :        679 :         beacon_set = bss->beacon_set;
    6827                 :            : 
    6828                 :        679 :         msg = nlmsg_alloc();
    6829         [ -  + ]:        679 :         if (!msg)
    6830                 :          0 :                 return -ENOMEM;
    6831                 :            : 
    6832                 :        679 :         wpa_printf(MSG_DEBUG, "nl80211: Set beacon (beacon_set=%d)",
    6833                 :            :                    beacon_set);
    6834         [ +  + ]:        679 :         if (beacon_set)
    6835                 :        466 :                 cmd = NL80211_CMD_SET_BEACON;
    6836                 :            : 
    6837                 :        679 :         nl80211_cmd(drv, msg, 0, cmd);
    6838                 :        679 :         wpa_hexdump(MSG_DEBUG, "nl80211: Beacon head",
    6839                 :        679 :                     params->head, params->head_len);
    6840         [ +  - ]:        679 :         NLA_PUT(msg, NL80211_ATTR_BEACON_HEAD, params->head_len, params->head);
    6841                 :        679 :         wpa_hexdump(MSG_DEBUG, "nl80211: Beacon tail",
    6842                 :        679 :                     params->tail, params->tail_len);
    6843         [ +  - ]:        679 :         NLA_PUT(msg, NL80211_ATTR_BEACON_TAIL, params->tail_len, params->tail);
    6844                 :        679 :         wpa_printf(MSG_DEBUG, "nl80211: ifindex=%d", ifindex);
    6845         [ +  - ]:        679 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
    6846                 :        679 :         wpa_printf(MSG_DEBUG, "nl80211: beacon_int=%d", params->beacon_int);
    6847         [ +  - ]:        679 :         NLA_PUT_U32(msg, NL80211_ATTR_BEACON_INTERVAL, params->beacon_int);
    6848                 :        679 :         wpa_printf(MSG_DEBUG, "nl80211: dtim_period=%d", params->dtim_period);
    6849         [ +  - ]:        679 :         NLA_PUT_U32(msg, NL80211_ATTR_DTIM_PERIOD, params->dtim_period);
    6850                 :        679 :         wpa_hexdump_ascii(MSG_DEBUG, "nl80211: ssid",
    6851                 :        679 :                           params->ssid, params->ssid_len);
    6852         [ +  - ]:        679 :         NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
    6853                 :            :                 params->ssid);
    6854 [ -  + ][ #  # ]:        679 :         if (params->proberesp && params->proberesp_len) {
    6855                 :          0 :                 wpa_hexdump(MSG_DEBUG, "nl80211: proberesp (offload)",
    6856                 :          0 :                             params->proberesp, params->proberesp_len);
    6857         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_ATTR_PROBE_RESP, params->proberesp_len,
    6858                 :            :                         params->proberesp);
    6859                 :            :         }
    6860   [ +  -  -  - ]:        679 :         switch (params->hide_ssid) {
    6861                 :            :         case NO_SSID_HIDING:
    6862                 :        679 :                 wpa_printf(MSG_DEBUG, "nl80211: hidden SSID not in use");
    6863         [ +  - ]:        679 :                 NLA_PUT_U32(msg, NL80211_ATTR_HIDDEN_SSID,
    6864                 :            :                             NL80211_HIDDEN_SSID_NOT_IN_USE);
    6865                 :        679 :                 break;
    6866                 :            :         case HIDDEN_SSID_ZERO_LEN:
    6867                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: hidden SSID zero len");
    6868         [ #  # ]:          0 :                 NLA_PUT_U32(msg, NL80211_ATTR_HIDDEN_SSID,
    6869                 :            :                             NL80211_HIDDEN_SSID_ZERO_LEN);
    6870                 :          0 :                 break;
    6871                 :            :         case HIDDEN_SSID_ZERO_CONTENTS:
    6872                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: hidden SSID zero contents");
    6873         [ #  # ]:          0 :                 NLA_PUT_U32(msg, NL80211_ATTR_HIDDEN_SSID,
    6874                 :            :                             NL80211_HIDDEN_SSID_ZERO_CONTENTS);
    6875                 :          0 :                 break;
    6876                 :            :         }
    6877                 :        679 :         wpa_printf(MSG_DEBUG, "nl80211: privacy=%d", params->privacy);
    6878         [ +  + ]:        679 :         if (params->privacy)
    6879         [ +  - ]:        607 :                 NLA_PUT_FLAG(msg, NL80211_ATTR_PRIVACY);
    6880                 :        679 :         wpa_printf(MSG_DEBUG, "nl80211: auth_algs=0x%x", params->auth_algs);
    6881         [ +  + ]:        679 :         if ((params->auth_algs & (WPA_AUTH_ALG_OPEN | WPA_AUTH_ALG_SHARED)) ==
    6882                 :            :             (WPA_AUTH_ALG_OPEN | WPA_AUTH_ALG_SHARED)) {
    6883                 :            :                 /* Leave out the attribute */
    6884         [ -  + ]:         47 :         } else if (params->auth_algs & WPA_AUTH_ALG_SHARED)
    6885         [ #  # ]:          0 :                 NLA_PUT_U32(msg, NL80211_ATTR_AUTH_TYPE,
    6886                 :            :                             NL80211_AUTHTYPE_SHARED_KEY);
    6887                 :            :         else
    6888         [ +  - ]:         47 :                 NLA_PUT_U32(msg, NL80211_ATTR_AUTH_TYPE,
    6889                 :            :                             NL80211_AUTHTYPE_OPEN_SYSTEM);
    6890                 :            : 
    6891                 :        679 :         wpa_printf(MSG_DEBUG, "nl80211: wpa_version=0x%x", params->wpa_version);
    6892                 :        679 :         ver = 0;
    6893         [ +  + ]:        679 :         if (params->wpa_version & WPA_PROTO_WPA)
    6894                 :         56 :                 ver |= NL80211_WPA_VERSION_1;
    6895         [ +  + ]:        679 :         if (params->wpa_version & WPA_PROTO_RSN)
    6896                 :        593 :                 ver |= NL80211_WPA_VERSION_2;
    6897         [ +  + ]:        679 :         if (ver)
    6898         [ +  - ]:        602 :                 NLA_PUT_U32(msg, NL80211_ATTR_WPA_VERSIONS, ver);
    6899                 :            : 
    6900                 :        679 :         wpa_printf(MSG_DEBUG, "nl80211: key_mgmt_suites=0x%x",
    6901                 :            :                    params->key_mgmt_suites);
    6902                 :        679 :         num_suites = 0;
    6903         [ +  + ]:        679 :         if (params->key_mgmt_suites & WPA_KEY_MGMT_IEEE8021X)
    6904                 :        216 :                 suites[num_suites++] = WLAN_AKM_SUITE_8021X;
    6905         [ +  + ]:        679 :         if (params->key_mgmt_suites & WPA_KEY_MGMT_PSK)
    6906                 :        365 :                 suites[num_suites++] = WLAN_AKM_SUITE_PSK;
    6907         [ +  + ]:        679 :         if (num_suites) {
    6908         [ +  - ]:        581 :                 NLA_PUT(msg, NL80211_ATTR_AKM_SUITES,
    6909                 :            :                         num_suites * sizeof(u32), suites);
    6910                 :            :         }
    6911                 :            : 
    6912 [ +  + ][ -  + ]:        679 :         if (params->key_mgmt_suites & WPA_KEY_MGMT_IEEE8021X &&
    6913                 :        216 :             params->pairwise_ciphers & (WPA_CIPHER_WEP104 | WPA_CIPHER_WEP40))
    6914         [ #  # ]:          0 :                 NLA_PUT_FLAG(msg, NL80211_ATTR_CONTROL_PORT_NO_ENCRYPT);
    6915                 :            : 
    6916                 :        679 :         wpa_printf(MSG_DEBUG, "nl80211: pairwise_ciphers=0x%x",
    6917                 :            :                    params->pairwise_ciphers);
    6918                 :        679 :         num_suites = wpa_cipher_to_cipher_suites(params->pairwise_ciphers,
    6919                 :            :                                                  suites, ARRAY_SIZE(suites));
    6920         [ +  + ]:        679 :         if (num_suites) {
    6921         [ +  - ]:        601 :                 NLA_PUT(msg, NL80211_ATTR_CIPHER_SUITES_PAIRWISE,
    6922                 :            :                         num_suites * sizeof(u32), suites);
    6923                 :            :         }
    6924                 :            : 
    6925                 :        679 :         wpa_printf(MSG_DEBUG, "nl80211: group_cipher=0x%x",
    6926                 :            :                    params->group_cipher);
    6927                 :        679 :         suite = wpa_cipher_to_cipher_suite(params->group_cipher);
    6928         [ +  + ]:        679 :         if (suite)
    6929         [ +  - ]:        607 :                 NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP, suite);
    6930                 :            : 
    6931         [ +  - ]:        679 :         if (params->beacon_ies) {
    6932                 :        679 :                 wpa_hexdump_buf(MSG_DEBUG, "nl80211: beacon_ies",
    6933                 :            :                                 params->beacon_ies);
    6934         [ +  - ]:        679 :                 NLA_PUT(msg, NL80211_ATTR_IE, wpabuf_len(params->beacon_ies),
    6935                 :            :                         wpabuf_head(params->beacon_ies));
    6936                 :            :         }
    6937         [ +  - ]:        679 :         if (params->proberesp_ies) {
    6938                 :        679 :                 wpa_hexdump_buf(MSG_DEBUG, "nl80211: proberesp_ies",
    6939                 :            :                                 params->proberesp_ies);
    6940         [ +  - ]:        679 :                 NLA_PUT(msg, NL80211_ATTR_IE_PROBE_RESP,
    6941                 :            :                         wpabuf_len(params->proberesp_ies),
    6942                 :            :                         wpabuf_head(params->proberesp_ies));
    6943                 :            :         }
    6944         [ +  - ]:        679 :         if (params->assocresp_ies) {
    6945                 :        679 :                 wpa_hexdump_buf(MSG_DEBUG, "nl80211: assocresp_ies",
    6946                 :            :                                 params->assocresp_ies);
    6947         [ +  - ]:        679 :                 NLA_PUT(msg, NL80211_ATTR_IE_ASSOC_RESP,
    6948                 :            :                         wpabuf_len(params->assocresp_ies),
    6949                 :            :                         wpabuf_head(params->assocresp_ies));
    6950                 :            :         }
    6951                 :            : 
    6952         [ -  + ]:        679 :         if (drv->capa.flags & WPA_DRIVER_FLAGS_INACTIVITY_TIMER)  {
    6953                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: ap_max_inactivity=%d",
    6954                 :            :                            params->ap_max_inactivity);
    6955         [ #  # ]:          0 :                 NLA_PUT_U16(msg, NL80211_ATTR_INACTIVITY_TIMEOUT,
    6956                 :            :                             params->ap_max_inactivity);
    6957                 :            :         }
    6958                 :            : 
    6959                 :        679 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    6960         [ -  + ]:        679 :         if (ret) {
    6961                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Beacon set failed: %d (%s)",
    6962                 :            :                            ret, strerror(-ret));
    6963                 :            :         } else {
    6964                 :        679 :                 bss->beacon_set = 1;
    6965                 :        679 :                 nl80211_set_bss(bss, params->cts_protect, params->preamble,
    6966                 :            :                                 params->short_slot_time, params->ht_opmode,
    6967                 :            :                                 params->isolate, params->basic_rates);
    6968                 :            :         }
    6969                 :        679 :         return ret;
    6970                 :            :  nla_put_failure:
    6971                 :          0 :         nlmsg_free(msg);
    6972                 :        679 :         return -ENOBUFS;
    6973                 :            : }
    6974                 :            : 
    6975                 :            : 
    6976                 :        196 : static int nl80211_put_freq_params(struct nl_msg *msg,
    6977                 :            :                                    struct hostapd_freq_params *freq)
    6978                 :            : {
    6979         [ +  - ]:        196 :         NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq->freq);
    6980         [ -  + ]:        196 :         if (freq->vht_enabled) {
    6981   [ #  #  #  #  :          0 :                 switch (freq->bandwidth) {
                      # ]
    6982                 :            :                 case 20:
    6983         [ #  # ]:          0 :                         NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
    6984                 :            :                                     NL80211_CHAN_WIDTH_20);
    6985                 :          0 :                         break;
    6986                 :            :                 case 40:
    6987         [ #  # ]:          0 :                         NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
    6988                 :            :                                     NL80211_CHAN_WIDTH_40);
    6989                 :          0 :                         break;
    6990                 :            :                 case 80:
    6991         [ #  # ]:          0 :                         if (freq->center_freq2)
    6992         [ #  # ]:          0 :                                 NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
    6993                 :            :                                             NL80211_CHAN_WIDTH_80P80);
    6994                 :            :                         else
    6995         [ #  # ]:          0 :                                 NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
    6996                 :            :                                             NL80211_CHAN_WIDTH_80);
    6997                 :          0 :                         break;
    6998                 :            :                 case 160:
    6999         [ #  # ]:          0 :                         NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
    7000                 :            :                                     NL80211_CHAN_WIDTH_160);
    7001                 :          0 :                         break;
    7002                 :            :                 default:
    7003                 :          0 :                         return -EINVAL;
    7004                 :            :                 }
    7005         [ #  # ]:          0 :                 NLA_PUT_U32(msg, NL80211_ATTR_CENTER_FREQ1, freq->center_freq1);
    7006         [ #  # ]:          0 :                 if (freq->center_freq2)
    7007         [ #  # ]:          0 :                         NLA_PUT_U32(msg, NL80211_ATTR_CENTER_FREQ2,
    7008                 :            :                                     freq->center_freq2);
    7009         [ +  - ]:        196 :         } else if (freq->ht_enabled) {
    7010      [ +  +  + ]:        196 :                 switch (freq->sec_channel_offset) {
    7011                 :            :                 case -1:
    7012         [ +  - ]:          1 :                         NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
    7013                 :            :                                     NL80211_CHAN_HT40MINUS);
    7014                 :          1 :                         break;
    7015                 :            :                 case 1:
    7016         [ +  - ]:          3 :                         NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
    7017                 :            :                                     NL80211_CHAN_HT40PLUS);
    7018                 :          3 :                         break;
    7019                 :            :                 default:
    7020         [ +  - ]:        192 :                         NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
    7021                 :            :                                     NL80211_CHAN_HT20);
    7022                 :        192 :                         break;
    7023                 :            :                 }
    7024                 :            :         }
    7025                 :        196 :         return 0;
    7026                 :            : 
    7027                 :            : nla_put_failure:
    7028                 :        196 :         return -ENOBUFS;
    7029                 :            : }
    7030                 :            : 
    7031                 :            : 
    7032                 :        196 : static int wpa_driver_nl80211_set_freq(struct i802_bss *bss,
    7033                 :            :                                        struct hostapd_freq_params *freq)
    7034                 :            : {
    7035                 :        196 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    7036                 :            :         struct nl_msg *msg;
    7037                 :            :         int ret;
    7038                 :            : 
    7039                 :        196 :         wpa_printf(MSG_DEBUG,
    7040                 :            :                    "nl80211: Set freq %d (ht_enabled=%d, vht_enabled=%d, bandwidth=%d MHz, cf1=%d MHz, cf2=%d MHz)",
    7041                 :            :                    freq->freq, freq->ht_enabled, freq->vht_enabled,
    7042                 :            :                    freq->bandwidth, freq->center_freq1, freq->center_freq2);
    7043                 :        196 :         msg = nlmsg_alloc();
    7044         [ -  + ]:        196 :         if (!msg)
    7045                 :          0 :                 return -1;
    7046                 :            : 
    7047                 :        196 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_WIPHY);
    7048                 :            : 
    7049         [ +  - ]:        196 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
    7050         [ -  + ]:        196 :         if (nl80211_put_freq_params(msg, freq) < 0)
    7051                 :          0 :                 goto nla_put_failure;
    7052                 :            : 
    7053                 :        196 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    7054                 :        196 :         msg = NULL;
    7055         [ +  - ]:        196 :         if (ret == 0) {
    7056                 :        196 :                 bss->freq = freq->freq;
    7057                 :        196 :                 return 0;
    7058                 :            :         }
    7059                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Failed to set channel (freq=%d): "
    7060                 :            :                    "%d (%s)", freq->freq, ret, strerror(-ret));
    7061                 :            : nla_put_failure:
    7062                 :          0 :         nlmsg_free(msg);
    7063                 :        196 :         return -1;
    7064                 :            : }
    7065                 :            : 
    7066                 :            : 
    7067                 :       2027 : static u32 sta_flags_nl80211(int flags)
    7068                 :            : {
    7069                 :       2027 :         u32 f = 0;
    7070                 :            : 
    7071         [ +  + ]:       2027 :         if (flags & WPA_STA_AUTHORIZED)
    7072                 :       1056 :                 f |= BIT(NL80211_STA_FLAG_AUTHORIZED);
    7073         [ +  + ]:       2027 :         if (flags & WPA_STA_WMM)
    7074                 :        939 :                 f |= BIT(NL80211_STA_FLAG_WME);
    7075         [ +  + ]:       2027 :         if (flags & WPA_STA_SHORT_PREAMBLE)
    7076                 :        939 :                 f |= BIT(NL80211_STA_FLAG_SHORT_PREAMBLE);
    7077         [ +  + ]:       2027 :         if (flags & WPA_STA_MFP)
    7078                 :        343 :                 f |= BIT(NL80211_STA_FLAG_MFP);
    7079         [ -  + ]:       2027 :         if (flags & WPA_STA_TDLS_PEER)
    7080                 :          0 :                 f |= BIT(NL80211_STA_FLAG_TDLS_PEER);
    7081                 :            : 
    7082                 :       2027 :         return f;
    7083                 :            : }
    7084                 :            : 
    7085                 :            : 
    7086                 :        313 : static int wpa_driver_nl80211_sta_add(void *priv,
    7087                 :            :                                       struct hostapd_sta_add_params *params)
    7088                 :            : {
    7089                 :        313 :         struct i802_bss *bss = priv;
    7090                 :        313 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    7091                 :            :         struct nl_msg *msg;
    7092                 :            :         struct nl80211_sta_flag_update upd;
    7093                 :        313 :         int ret = -ENOBUFS;
    7094                 :            : 
    7095 [ -  + ][ #  # ]:        313 :         if ((params->flags & WPA_STA_TDLS_PEER) &&
    7096                 :          0 :             !(drv->capa.flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT))
    7097                 :          0 :                 return -EOPNOTSUPP;
    7098                 :            : 
    7099                 :        313 :         msg = nlmsg_alloc();
    7100         [ -  + ]:        313 :         if (!msg)
    7101                 :          0 :                 return -ENOMEM;
    7102                 :            : 
    7103         [ -  + ]:        313 :         wpa_printf(MSG_DEBUG, "nl80211: %s STA " MACSTR,
    7104                 :       2191 :                    params->set ? "Set" : "Add", MAC2STR(params->addr));
    7105         [ -  + ]:        313 :         nl80211_cmd(drv, msg, 0, params->set ? NL80211_CMD_SET_STATION :
    7106                 :            :                     NL80211_CMD_NEW_STATION);
    7107                 :            : 
    7108         [ +  - ]:        313 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
    7109         [ +  - ]:        313 :         NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->addr);
    7110         [ +  - ]:        313 :         NLA_PUT(msg, NL80211_ATTR_STA_SUPPORTED_RATES, params->supp_rates_len,
    7111                 :            :                 params->supp_rates);
    7112                 :        313 :         wpa_hexdump(MSG_DEBUG, "  * supported rates", params->supp_rates,
    7113                 :            :                     params->supp_rates_len);
    7114         [ +  - ]:        313 :         if (!params->set) {
    7115         [ +  - ]:        313 :                 if (params->aid) {
    7116                 :        313 :                         wpa_printf(MSG_DEBUG, "  * aid=%u", params->aid);
    7117         [ +  - ]:        313 :                         NLA_PUT_U16(msg, NL80211_ATTR_STA_AID, params->aid);
    7118                 :            :                 } else {
    7119                 :            :                         /*
    7120                 :            :                          * cfg80211 validates that AID is non-zero, so we have
    7121                 :            :                          * to make this a non-zero value for the TDLS case where
    7122                 :            :                          * a dummy STA entry is used for now.
    7123                 :            :                          */
    7124                 :          0 :                         wpa_printf(MSG_DEBUG, "  * aid=1 (TDLS workaround)");
    7125         [ #  # ]:          0 :                         NLA_PUT_U16(msg, NL80211_ATTR_STA_AID, 1);
    7126                 :            :                 }
    7127                 :        313 :                 wpa_printf(MSG_DEBUG, "  * listen_interval=%u",
    7128                 :        313 :                            params->listen_interval);
    7129         [ +  - ]:        313 :                 NLA_PUT_U16(msg, NL80211_ATTR_STA_LISTEN_INTERVAL,
    7130                 :            :                             params->listen_interval);
    7131 [ #  # ][ #  # ]:          0 :         } else if (params->aid && (params->flags & WPA_STA_TDLS_PEER)) {
    7132                 :          0 :                 wpa_printf(MSG_DEBUG, "  * peer_aid=%u", params->aid);
    7133         [ #  # ]:          0 :                 NLA_PUT_U16(msg, NL80211_ATTR_PEER_AID, params->aid);
    7134                 :            :         }
    7135         [ +  + ]:        313 :         if (params->ht_capabilities) {
    7136                 :        105 :                 wpa_hexdump(MSG_DEBUG, "  * ht_capabilities",
    7137                 :        105 :                             (u8 *) params->ht_capabilities,
    7138                 :            :                             sizeof(*params->ht_capabilities));
    7139         [ +  - ]:        105 :                 NLA_PUT(msg, NL80211_ATTR_HT_CAPABILITY,
    7140                 :            :                         sizeof(*params->ht_capabilities),
    7141                 :            :                         params->ht_capabilities);
    7142                 :            :         }
    7143                 :            : 
    7144         [ -  + ]:        313 :         if (params->vht_capabilities) {
    7145                 :          0 :                 wpa_hexdump(MSG_DEBUG, "  * vht_capabilities",
    7146                 :          0 :                             (u8 *) params->vht_capabilities,
    7147                 :            :                             sizeof(*params->vht_capabilities));
    7148         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_ATTR_VHT_CAPABILITY,
    7149                 :            :                         sizeof(*params->vht_capabilities),
    7150                 :            :                         params->vht_capabilities);
    7151                 :            :         }
    7152                 :            : 
    7153                 :        313 :         wpa_printf(MSG_DEBUG, "  * capability=0x%x", params->capability);
    7154         [ +  - ]:        313 :         NLA_PUT_U16(msg, NL80211_ATTR_STA_CAPABILITY, params->capability);
    7155                 :            : 
    7156         [ -  + ]:        313 :         if (params->ext_capab) {
    7157                 :          0 :                 wpa_hexdump(MSG_DEBUG, "  * ext_capab",
    7158                 :          0 :                             params->ext_capab, params->ext_capab_len);
    7159         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_ATTR_STA_EXT_CAPABILITY,
    7160                 :            :                         params->ext_capab_len, params->ext_capab);
    7161                 :            :         }
    7162                 :            : 
    7163                 :        313 :         os_memset(&upd, 0, sizeof(upd));
    7164                 :        313 :         upd.mask = sta_flags_nl80211(params->flags);
    7165                 :        313 :         upd.set = upd.mask;
    7166                 :        313 :         wpa_printf(MSG_DEBUG, "  * flags set=0x%x mask=0x%x",
    7167                 :            :                    upd.set, upd.mask);
    7168         [ +  - ]:        313 :         NLA_PUT(msg, NL80211_ATTR_STA_FLAGS2, sizeof(upd), &upd);
    7169                 :            : 
    7170         [ +  - ]:        313 :         if (params->flags & WPA_STA_WMM) {
    7171                 :        313 :                 struct nlattr *wme = nla_nest_start(msg, NL80211_ATTR_STA_WME);
    7172                 :            : 
    7173         [ -  + ]:        313 :                 if (!wme)
    7174                 :          0 :                         goto nla_put_failure;
    7175                 :            : 
    7176                 :        313 :                 wpa_printf(MSG_DEBUG, "  * qosinfo=0x%x", params->qosinfo);
    7177         [ +  - ]:        313 :                 NLA_PUT_U8(msg, NL80211_STA_WME_UAPSD_QUEUES,
    7178                 :            :                                 params->qosinfo & WMM_QOSINFO_STA_AC_MASK);
    7179         [ +  - ]:        313 :                 NLA_PUT_U8(msg, NL80211_STA_WME_MAX_SP,
    7180                 :            :                                 (params->qosinfo >> WMM_QOSINFO_STA_SP_SHIFT) &
    7181                 :            :                                 WMM_QOSINFO_STA_SP_MASK);
    7182                 :        313 :                 nla_nest_end(msg, wme);
    7183                 :            :         }
    7184                 :            : 
    7185                 :        313 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    7186                 :        313 :         msg = NULL;
    7187         [ -  + ]:        313 :         if (ret)
    7188         [ #  # ]:          0 :                 wpa_printf(MSG_DEBUG, "nl80211: NL80211_CMD_%s_STATION "
    7189                 :          0 :                            "result: %d (%s)", params->set ? "SET" : "NEW", ret,
    7190                 :            :                            strerror(-ret));
    7191         [ -  + ]:        313 :         if (ret == -EEXIST)
    7192                 :          0 :                 ret = 0;
    7193                 :            :  nla_put_failure:
    7194                 :        313 :         nlmsg_free(msg);
    7195                 :        313 :         return ret;
    7196                 :            : }
    7197                 :            : 
    7198                 :            : 
    7199                 :        618 : static int wpa_driver_nl80211_sta_remove(struct i802_bss *bss, const u8 *addr)
    7200                 :            : {
    7201                 :        618 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    7202                 :            :         struct nl_msg *msg;
    7203                 :            :         int ret;
    7204                 :            : 
    7205                 :        618 :         msg = nlmsg_alloc();
    7206         [ -  + ]:        618 :         if (!msg)
    7207                 :          0 :                 return -ENOMEM;
    7208                 :            : 
    7209                 :        618 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_STATION);
    7210                 :            : 
    7211         [ +  - ]:        618 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
    7212                 :            :                     if_nametoindex(bss->ifname));
    7213         [ +  - ]:        618 :         NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
    7214                 :            : 
    7215                 :        618 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    7216                 :        618 :         wpa_printf(MSG_DEBUG, "nl80211: sta_remove -> DEL_STATION %s " MACSTR
    7217                 :            :                    " --> %d (%s)",
    7218                 :       4326 :                    bss->ifname, MAC2STR(addr), ret, strerror(-ret));
    7219         [ +  + ]:        618 :         if (ret == -ENOENT)
    7220                 :        306 :                 return 0;
    7221                 :        312 :         return ret;
    7222                 :            :  nla_put_failure:
    7223                 :          0 :         nlmsg_free(msg);
    7224                 :        618 :         return -ENOBUFS;
    7225                 :            : }
    7226                 :            : 
    7227                 :            : 
    7228                 :         17 : static void nl80211_remove_iface(struct wpa_driver_nl80211_data *drv,
    7229                 :            :                                  int ifidx)
    7230                 :            : {
    7231                 :            :         struct nl_msg *msg;
    7232                 :            : 
    7233                 :         17 :         wpa_printf(MSG_DEBUG, "nl80211: Remove interface ifindex=%d", ifidx);
    7234                 :            : 
    7235                 :            :         /* stop listening for EAPOL on this interface */
    7236                 :         17 :         del_ifidx(drv, ifidx);
    7237                 :            : 
    7238                 :         17 :         msg = nlmsg_alloc();
    7239         [ -  + ]:         17 :         if (!msg)
    7240                 :          0 :                 goto nla_put_failure;
    7241                 :            : 
    7242                 :         17 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_INTERFACE);
    7243         [ +  - ]:         17 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifidx);
    7244                 :            : 
    7245         [ +  - ]:         17 :         if (send_and_recv_msgs(drv, msg, NULL, NULL) == 0)
    7246                 :         17 :                 return;
    7247                 :          0 :         msg = NULL;
    7248                 :            :  nla_put_failure:
    7249                 :          0 :         nlmsg_free(msg);
    7250                 :          0 :         wpa_printf(MSG_ERROR, "Failed to remove interface (ifidx=%d)", ifidx);
    7251                 :            : }
    7252                 :            : 
    7253                 :            : 
    7254                 :        423 : static const char * nl80211_iftype_str(enum nl80211_iftype mode)
    7255                 :            : {
    7256   [ -  +  +  -  :        423 :         switch (mode) {
          -  -  -  -  -  
                   -  - ]
    7257                 :            :         case NL80211_IFTYPE_ADHOC:
    7258                 :          0 :                 return "ADHOC";
    7259                 :            :         case NL80211_IFTYPE_STATION:
    7260                 :        203 :                 return "STATION";
    7261                 :            :         case NL80211_IFTYPE_AP:
    7262                 :        220 :                 return "AP";
    7263                 :            :         case NL80211_IFTYPE_AP_VLAN:
    7264                 :          0 :                 return "AP_VLAN";
    7265                 :            :         case NL80211_IFTYPE_WDS:
    7266                 :          0 :                 return "WDS";
    7267                 :            :         case NL80211_IFTYPE_MONITOR:
    7268                 :          0 :                 return "MONITOR";
    7269                 :            :         case NL80211_IFTYPE_MESH_POINT:
    7270                 :          0 :                 return "MESH_POINT";
    7271                 :            :         case NL80211_IFTYPE_P2P_CLIENT:
    7272                 :          0 :                 return "P2P_CLIENT";
    7273                 :            :         case NL80211_IFTYPE_P2P_GO:
    7274                 :          0 :                 return "P2P_GO";
    7275                 :            :         case NL80211_IFTYPE_P2P_DEVICE:
    7276                 :          0 :                 return "P2P_DEVICE";
    7277                 :            :         default:
    7278                 :        423 :                 return "unknown";
    7279                 :            :         }
    7280                 :            : }
    7281                 :            : 
    7282                 :            : 
    7283                 :         17 : static int nl80211_create_iface_once(struct wpa_driver_nl80211_data *drv,
    7284                 :            :                                      const char *ifname,
    7285                 :            :                                      enum nl80211_iftype iftype,
    7286                 :            :                                      const u8 *addr, int wds,
    7287                 :            :                                      int (*handler)(struct nl_msg *, void *),
    7288                 :            :                                      void *arg)
    7289                 :            : {
    7290                 :            :         struct nl_msg *msg;
    7291                 :            :         int ifidx;
    7292                 :         17 :         int ret = -ENOBUFS;
    7293                 :            : 
    7294                 :         17 :         wpa_printf(MSG_DEBUG, "nl80211: Create interface iftype %d (%s)",
    7295                 :            :                    iftype, nl80211_iftype_str(iftype));
    7296                 :            : 
    7297                 :         17 :         msg = nlmsg_alloc();
    7298         [ -  + ]:         17 :         if (!msg)
    7299                 :          0 :                 return -1;
    7300                 :            : 
    7301                 :         17 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_NEW_INTERFACE);
    7302         [ -  + ]:         17 :         if (nl80211_set_iface_id(msg, drv->first_bss) < 0)
    7303                 :          0 :                 goto nla_put_failure;
    7304         [ +  - ]:         17 :         NLA_PUT_STRING(msg, NL80211_ATTR_IFNAME, ifname);
    7305         [ +  - ]:         17 :         NLA_PUT_U32(msg, NL80211_ATTR_IFTYPE, iftype);
    7306                 :            : 
    7307         [ -  + ]:         17 :         if (iftype == NL80211_IFTYPE_MONITOR) {
    7308                 :            :                 struct nlattr *flags;
    7309                 :            : 
    7310                 :          0 :                 flags = nla_nest_start(msg, NL80211_ATTR_MNTR_FLAGS);
    7311         [ #  # ]:          0 :                 if (!flags)
    7312                 :          0 :                         goto nla_put_failure;
    7313                 :            : 
    7314         [ #  # ]:          0 :                 NLA_PUT_FLAG(msg, NL80211_MNTR_FLAG_COOK_FRAMES);
    7315                 :            : 
    7316                 :          0 :                 nla_nest_end(msg, flags);
    7317         [ -  + ]:         17 :         } else if (wds) {
    7318         [ #  # ]:          0 :                 NLA_PUT_U8(msg, NL80211_ATTR_4ADDR, wds);
    7319                 :            :         }
    7320                 :            : 
    7321                 :         17 :         ret = send_and_recv_msgs(drv, msg, handler, arg);
    7322                 :         17 :         msg = NULL;
    7323         [ -  + ]:         17 :         if (ret) {
    7324                 :            :  nla_put_failure:
    7325                 :          0 :                 nlmsg_free(msg);
    7326                 :          0 :                 wpa_printf(MSG_ERROR, "Failed to create interface %s: %d (%s)",
    7327                 :            :                            ifname, ret, strerror(-ret));
    7328                 :          0 :                 return ret;
    7329                 :            :         }
    7330                 :            : 
    7331         [ -  + ]:         17 :         if (iftype == NL80211_IFTYPE_P2P_DEVICE)
    7332                 :          0 :                 return 0;
    7333                 :            : 
    7334                 :         17 :         ifidx = if_nametoindex(ifname);
    7335                 :         17 :         wpa_printf(MSG_DEBUG, "nl80211: New interface %s created: ifindex=%d",
    7336                 :            :                    ifname, ifidx);
    7337                 :            : 
    7338         [ -  + ]:         17 :         if (ifidx <= 0)
    7339                 :          0 :                 return -1;
    7340                 :            : 
    7341                 :            :         /* start listening for EAPOL on this interface */
    7342                 :         17 :         add_ifidx(drv, ifidx);
    7343                 :            : 
    7344         [ +  - ]:         34 :         if (addr && iftype != NL80211_IFTYPE_MONITOR &&
           [ +  -  -  + ]
    7345                 :         17 :             linux_set_ifhwaddr(drv->global->ioctl_sock, ifname, addr)) {
    7346                 :          0 :                 nl80211_remove_iface(drv, ifidx);
    7347                 :          0 :                 return -1;
    7348                 :            :         }
    7349                 :            : 
    7350                 :         17 :         return ifidx;
    7351                 :            : }
    7352                 :            : 
    7353                 :            : 
    7354                 :         17 : static int nl80211_create_iface(struct wpa_driver_nl80211_data *drv,
    7355                 :            :                                 const char *ifname, enum nl80211_iftype iftype,
    7356                 :            :                                 const u8 *addr, int wds,
    7357                 :            :                                 int (*handler)(struct nl_msg *, void *),
    7358                 :            :                                 void *arg, int use_existing)
    7359                 :            : {
    7360                 :            :         int ret;
    7361                 :            : 
    7362                 :         17 :         ret = nl80211_create_iface_once(drv, ifname, iftype, addr, wds, handler,
    7363                 :            :                                         arg);
    7364                 :            : 
    7365                 :            :         /* if error occurred and interface exists already */
    7366 [ -  + ][ #  # ]:         17 :         if (ret == -ENFILE && if_nametoindex(ifname)) {
    7367         [ #  # ]:          0 :                 if (use_existing) {
    7368                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Continue using existing interface %s",
    7369                 :            :                                    ifname);
    7370                 :          0 :                         return -ENFILE;
    7371                 :            :                 }
    7372                 :          0 :                 wpa_printf(MSG_INFO, "Try to remove and re-create %s", ifname);
    7373                 :            : 
    7374                 :            :                 /* Try to remove the interface that was already there. */
    7375                 :          0 :                 nl80211_remove_iface(drv, if_nametoindex(ifname));
    7376                 :            : 
    7377                 :            :                 /* Try to create the interface again */
    7378                 :          0 :                 ret = nl80211_create_iface_once(drv, ifname, iftype, addr,
    7379                 :            :                                                 wds, handler, arg);
    7380                 :            :         }
    7381                 :            : 
    7382 [ +  - ][ -  + ]:         17 :         if (ret >= 0 && is_p2p_net_interface(iftype))
    7383                 :          0 :                 nl80211_disable_11b_rates(drv, ret, 1);
    7384                 :            : 
    7385                 :         17 :         return ret;
    7386                 :            : }
    7387                 :            : 
    7388                 :            : 
    7389                 :          0 : static void handle_tx_callback(void *ctx, u8 *buf, size_t len, int ok)
    7390                 :            : {
    7391                 :            :         struct ieee80211_hdr *hdr;
    7392                 :            :         u16 fc;
    7393                 :            :         union wpa_event_data event;
    7394                 :            : 
    7395                 :          0 :         hdr = (struct ieee80211_hdr *) buf;
    7396                 :          0 :         fc = le_to_host16(hdr->frame_control);
    7397                 :            : 
    7398                 :          0 :         os_memset(&event, 0, sizeof(event));
    7399                 :          0 :         event.tx_status.type = WLAN_FC_GET_TYPE(fc);
    7400                 :          0 :         event.tx_status.stype = WLAN_FC_GET_STYPE(fc);
    7401                 :          0 :         event.tx_status.dst = hdr->addr1;
    7402                 :          0 :         event.tx_status.data = buf;
    7403                 :          0 :         event.tx_status.data_len = len;
    7404                 :          0 :         event.tx_status.ack = ok;
    7405                 :          0 :         wpa_supplicant_event(ctx, EVENT_TX_STATUS, &event);
    7406                 :          0 : }
    7407                 :            : 
    7408                 :            : 
    7409                 :          0 : static void from_unknown_sta(struct wpa_driver_nl80211_data *drv,
    7410                 :            :                              u8 *buf, size_t len)
    7411                 :            : {
    7412                 :          0 :         struct ieee80211_hdr *hdr = (void *)buf;
    7413                 :            :         u16 fc;
    7414                 :            :         union wpa_event_data event;
    7415                 :            : 
    7416         [ #  # ]:          0 :         if (len < sizeof(*hdr))
    7417                 :          0 :                 return;
    7418                 :            : 
    7419                 :          0 :         fc = le_to_host16(hdr->frame_control);
    7420                 :            : 
    7421                 :          0 :         os_memset(&event, 0, sizeof(event));
    7422                 :          0 :         event.rx_from_unknown.bssid = get_hdr_bssid(hdr, len);
    7423                 :          0 :         event.rx_from_unknown.addr = hdr->addr2;
    7424                 :          0 :         event.rx_from_unknown.wds = (fc & (WLAN_FC_FROMDS | WLAN_FC_TODS)) ==
    7425                 :            :                 (WLAN_FC_FROMDS | WLAN_FC_TODS);
    7426                 :          0 :         wpa_supplicant_event(drv->ctx, EVENT_RX_FROM_UNKNOWN, &event);
    7427                 :            : }
    7428                 :            : 
    7429                 :            : 
    7430                 :          0 : static void handle_frame(struct wpa_driver_nl80211_data *drv,
    7431                 :            :                          u8 *buf, size_t len, int datarate, int ssi_signal)
    7432                 :            : {
    7433                 :            :         struct ieee80211_hdr *hdr;
    7434                 :            :         u16 fc;
    7435                 :            :         union wpa_event_data event;
    7436                 :            : 
    7437                 :          0 :         hdr = (struct ieee80211_hdr *) buf;
    7438                 :          0 :         fc = le_to_host16(hdr->frame_control);
    7439                 :            : 
    7440   [ #  #  #  # ]:          0 :         switch (WLAN_FC_GET_TYPE(fc)) {
    7441                 :            :         case WLAN_FC_TYPE_MGMT:
    7442                 :          0 :                 os_memset(&event, 0, sizeof(event));
    7443                 :          0 :                 event.rx_mgmt.frame = buf;
    7444                 :          0 :                 event.rx_mgmt.frame_len = len;
    7445                 :          0 :                 event.rx_mgmt.datarate = datarate;
    7446                 :          0 :                 event.rx_mgmt.ssi_signal = ssi_signal;
    7447                 :          0 :                 wpa_supplicant_event(drv->ctx, EVENT_RX_MGMT, &event);
    7448                 :          0 :                 break;
    7449                 :            :         case WLAN_FC_TYPE_CTRL:
    7450                 :            :                 /* can only get here with PS-Poll frames */
    7451                 :          0 :                 wpa_printf(MSG_DEBUG, "CTRL");
    7452                 :          0 :                 from_unknown_sta(drv, buf, len);
    7453                 :          0 :                 break;
    7454                 :            :         case WLAN_FC_TYPE_DATA:
    7455                 :          0 :                 from_unknown_sta(drv, buf, len);
    7456                 :          0 :                 break;
    7457                 :            :         }
    7458                 :          0 : }
    7459                 :            : 
    7460                 :            : 
    7461                 :          0 : static void handle_monitor_read(int sock, void *eloop_ctx, void *sock_ctx)
    7462                 :            : {
    7463                 :          0 :         struct wpa_driver_nl80211_data *drv = eloop_ctx;
    7464                 :            :         int len;
    7465                 :            :         unsigned char buf[3000];
    7466                 :            :         struct ieee80211_radiotap_iterator iter;
    7467                 :            :         int ret;
    7468                 :          0 :         int datarate = 0, ssi_signal = 0;
    7469                 :          0 :         int injected = 0, failed = 0, rxflags = 0;
    7470                 :            : 
    7471                 :          0 :         len = recv(sock, buf, sizeof(buf), 0);
    7472         [ #  # ]:          0 :         if (len < 0) {
    7473                 :          0 :                 wpa_printf(MSG_ERROR, "nl80211: Monitor socket recv failed: %s",
    7474                 :          0 :                            strerror(errno));
    7475                 :          0 :                 return;
    7476                 :            :         }
    7477                 :            : 
    7478         [ #  # ]:          0 :         if (ieee80211_radiotap_iterator_init(&iter, (void*)buf, len)) {
    7479                 :          0 :                 wpa_printf(MSG_INFO, "nl80211: received invalid radiotap frame");
    7480                 :          0 :                 return;
    7481                 :            :         }
    7482                 :            : 
    7483                 :            :         while (1) {
    7484                 :          0 :                 ret = ieee80211_radiotap_iterator_next(&iter);
    7485         [ #  # ]:          0 :                 if (ret == -ENOENT)
    7486                 :          0 :                         break;
    7487         [ #  # ]:          0 :                 if (ret) {
    7488                 :          0 :                         wpa_printf(MSG_INFO, "nl80211: received invalid radiotap frame (%d)",
    7489                 :            :                                    ret);
    7490                 :          0 :                         return;
    7491                 :            :                 }
    7492   [ #  #  #  #  :          0 :                 switch (iter.this_arg_index) {
             #  #  #  # ]
    7493                 :            :                 case IEEE80211_RADIOTAP_FLAGS:
    7494         [ #  # ]:          0 :                         if (*iter.this_arg & IEEE80211_RADIOTAP_F_FCS)
    7495                 :          0 :                                 len -= 4;
    7496                 :          0 :                         break;
    7497                 :            :                 case IEEE80211_RADIOTAP_RX_FLAGS:
    7498                 :          0 :                         rxflags = 1;
    7499                 :          0 :                         break;
    7500                 :            :                 case IEEE80211_RADIOTAP_TX_FLAGS:
    7501                 :          0 :                         injected = 1;
    7502                 :          0 :                         failed = le_to_host16((*(uint16_t *) iter.this_arg)) &
    7503                 :            :                                         IEEE80211_RADIOTAP_F_TX_FAIL;
    7504                 :          0 :                         break;
    7505                 :            :                 case IEEE80211_RADIOTAP_DATA_RETRIES:
    7506                 :          0 :                         break;
    7507                 :            :                 case IEEE80211_RADIOTAP_CHANNEL:
    7508                 :            :                         /* TODO: convert from freq/flags to channel number */
    7509                 :          0 :                         break;
    7510                 :            :                 case IEEE80211_RADIOTAP_RATE:
    7511                 :          0 :                         datarate = *iter.this_arg * 5;
    7512                 :          0 :                         break;
    7513                 :            :                 case IEEE80211_RADIOTAP_DBM_ANTSIGNAL:
    7514                 :          0 :                         ssi_signal = (s8) *iter.this_arg;
    7515                 :          0 :                         break;
    7516                 :            :                 }
    7517                 :          0 :         }
    7518                 :            : 
    7519 [ #  # ][ #  # ]:          0 :         if (rxflags && injected)
    7520                 :          0 :                 return;
    7521                 :            : 
    7522         [ #  # ]:          0 :         if (!injected)
    7523                 :          0 :                 handle_frame(drv, buf + iter.max_length,
    7524                 :          0 :                              len - iter.max_length, datarate, ssi_signal);
    7525                 :            :         else
    7526                 :          0 :                 handle_tx_callback(drv->ctx, buf + iter.max_length,
    7527                 :          0 :                                    len - iter.max_length, !failed);
    7528                 :            : }
    7529                 :            : 
    7530                 :            : 
    7531                 :            : /*
    7532                 :            :  * we post-process the filter code later and rewrite
    7533                 :            :  * this to the offset to the last instruction
    7534                 :            :  */
    7535                 :            : #define PASS    0xFF
    7536                 :            : #define FAIL    0xFE
    7537                 :            : 
    7538                 :            : static struct sock_filter msock_filter_insns[] = {
    7539                 :            :         /*
    7540                 :            :          * do a little-endian load of the radiotap length field
    7541                 :            :          */
    7542                 :            :         /* load lower byte into A */
    7543                 :            :         BPF_STMT(BPF_LD  | BPF_B | BPF_ABS, 2),
    7544                 :            :         /* put it into X (== index register) */
    7545                 :            :         BPF_STMT(BPF_MISC| BPF_TAX, 0),
    7546                 :            :         /* load upper byte into A */
    7547                 :            :         BPF_STMT(BPF_LD  | BPF_B | BPF_ABS, 3),
    7548                 :            :         /* left-shift it by 8 */
    7549                 :            :         BPF_STMT(BPF_ALU | BPF_LSH | BPF_K, 8),
    7550                 :            :         /* or with X */
    7551                 :            :         BPF_STMT(BPF_ALU | BPF_OR | BPF_X, 0),
    7552                 :            :         /* put result into X */
    7553                 :            :         BPF_STMT(BPF_MISC| BPF_TAX, 0),
    7554                 :            : 
    7555                 :            :         /*
    7556                 :            :          * Allow management frames through, this also gives us those
    7557                 :            :          * management frames that we sent ourselves with status
    7558                 :            :          */
    7559                 :            :         /* load the lower byte of the IEEE 802.11 frame control field */
    7560                 :            :         BPF_STMT(BPF_LD  | BPF_B | BPF_IND, 0),
    7561                 :            :         /* mask off frame type and version */
    7562                 :            :         BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0xF),
    7563                 :            :         /* accept frame if it's both 0, fall through otherwise */
    7564                 :            :         BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 0, PASS, 0),
    7565                 :            : 
    7566                 :            :         /*
    7567                 :            :          * TODO: add a bit to radiotap RX flags that indicates
    7568                 :            :          * that the sending station is not associated, then
    7569                 :            :          * add a filter here that filters on our DA and that flag
    7570                 :            :          * to allow us to deauth frames to that bad station.
    7571                 :            :          *
    7572                 :            :          * For now allow all To DS data frames through.
    7573                 :            :          */
    7574                 :            :         /* load the IEEE 802.11 frame control field */
    7575                 :            :         BPF_STMT(BPF_LD  | BPF_H | BPF_IND, 0),
    7576                 :            :         /* mask off frame type, version and DS status */
    7577                 :            :         BPF_STMT(BPF_ALU | BPF_AND | BPF_K, 0x0F03),
    7578                 :            :         /* accept frame if version 0, type 2 and To DS, fall through otherwise
    7579                 :            :          */
    7580                 :            :         BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 0x0801, PASS, 0),
    7581                 :            : 
    7582                 :            : #if 0
    7583                 :            :         /*
    7584                 :            :          * drop non-data frames
    7585                 :            :          */
    7586                 :            :         /* load the lower byte of the frame control field */
    7587                 :            :         BPF_STMT(BPF_LD   | BPF_B | BPF_IND, 0),
    7588                 :            :         /* mask off QoS bit */
    7589                 :            :         BPF_STMT(BPF_ALU  | BPF_AND | BPF_K, 0x0c),
    7590                 :            :         /* drop non-data frames */
    7591                 :            :         BPF_JUMP(BPF_JMP  | BPF_JEQ | BPF_K, 8, 0, FAIL),
    7592                 :            : #endif
    7593                 :            :         /* load the upper byte of the frame control field */
    7594                 :            :         BPF_STMT(BPF_LD   | BPF_B | BPF_IND, 1),
    7595                 :            :         /* mask off toDS/fromDS */
    7596                 :            :         BPF_STMT(BPF_ALU  | BPF_AND | BPF_K, 0x03),
    7597                 :            :         /* accept WDS frames */
    7598                 :            :         BPF_JUMP(BPF_JMP  | BPF_JEQ | BPF_K, 3, PASS, 0),
    7599                 :            : 
    7600                 :            :         /*
    7601                 :            :          * add header length to index
    7602                 :            :          */
    7603                 :            :         /* load the lower byte of the frame control field */
    7604                 :            :         BPF_STMT(BPF_LD   | BPF_B | BPF_IND, 0),
    7605                 :            :         /* mask off QoS bit */
    7606                 :            :         BPF_STMT(BPF_ALU  | BPF_AND | BPF_K, 0x80),
    7607                 :            :         /* right shift it by 6 to give 0 or 2 */
    7608                 :            :         BPF_STMT(BPF_ALU  | BPF_RSH | BPF_K, 6),
    7609                 :            :         /* add data frame header length */
    7610                 :            :         BPF_STMT(BPF_ALU  | BPF_ADD | BPF_K, 24),
    7611                 :            :         /* add index, was start of 802.11 header */
    7612                 :            :         BPF_STMT(BPF_ALU  | BPF_ADD | BPF_X, 0),
    7613                 :            :         /* move to index, now start of LL header */
    7614                 :            :         BPF_STMT(BPF_MISC | BPF_TAX, 0),
    7615                 :            : 
    7616                 :            :         /*
    7617                 :            :          * Accept empty data frames, we use those for
    7618                 :            :          * polling activity.
    7619                 :            :          */
    7620                 :            :         BPF_STMT(BPF_LD  | BPF_W | BPF_LEN, 0),
    7621                 :            :         BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_X, 0, PASS, 0),
    7622                 :            : 
    7623                 :            :         /*
    7624                 :            :          * Accept EAPOL frames
    7625                 :            :          */
    7626                 :            :         BPF_STMT(BPF_LD  | BPF_W | BPF_IND, 0),
    7627                 :            :         BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 0xAAAA0300, 0, FAIL),
    7628                 :            :         BPF_STMT(BPF_LD  | BPF_W | BPF_IND, 4),
    7629                 :            :         BPF_JUMP(BPF_JMP | BPF_JEQ | BPF_K, 0x0000888E, PASS, FAIL),
    7630                 :            : 
    7631                 :            :         /* keep these last two statements or change the code below */
    7632                 :            :         /* return 0 == "DROP" */
    7633                 :            :         BPF_STMT(BPF_RET | BPF_K, 0),
    7634                 :            :         /* return ~0 == "keep all" */
    7635                 :            :         BPF_STMT(BPF_RET | BPF_K, ~0),
    7636                 :            : };
    7637                 :            : 
    7638                 :            : static struct sock_fprog msock_filter = {
    7639                 :            :         .len = ARRAY_SIZE(msock_filter_insns),
    7640                 :            :         .filter = msock_filter_insns,
    7641                 :            : };
    7642                 :            : 
    7643                 :            : 
    7644                 :          0 : static int add_monitor_filter(int s)
    7645                 :            : {
    7646                 :            :         int idx;
    7647                 :            : 
    7648                 :            :         /* rewrite all PASS/FAIL jump offsets */
    7649         [ #  # ]:          0 :         for (idx = 0; idx < msock_filter.len; idx++) {
    7650                 :          0 :                 struct sock_filter *insn = &msock_filter_insns[idx];
    7651                 :            : 
    7652         [ #  # ]:          0 :                 if (BPF_CLASS(insn->code) == BPF_JMP) {
    7653         [ #  # ]:          0 :                         if (insn->code == (BPF_JMP|BPF_JA)) {
    7654         [ #  # ]:          0 :                                 if (insn->k == PASS)
    7655                 :          0 :                                         insn->k = msock_filter.len - idx - 2;
    7656         [ #  # ]:          0 :                                 else if (insn->k == FAIL)
    7657                 :          0 :                                         insn->k = msock_filter.len - idx - 3;
    7658                 :            :                         }
    7659                 :            : 
    7660         [ #  # ]:          0 :                         if (insn->jt == PASS)
    7661                 :          0 :                                 insn->jt = msock_filter.len - idx - 2;
    7662         [ #  # ]:          0 :                         else if (insn->jt == FAIL)
    7663                 :          0 :                                 insn->jt = msock_filter.len - idx - 3;
    7664                 :            : 
    7665         [ #  # ]:          0 :                         if (insn->jf == PASS)
    7666                 :          0 :                                 insn->jf = msock_filter.len - idx - 2;
    7667         [ #  # ]:          0 :                         else if (insn->jf == FAIL)
    7668                 :          0 :                                 insn->jf = msock_filter.len - idx - 3;
    7669                 :            :                 }
    7670                 :            :         }
    7671                 :            : 
    7672         [ #  # ]:          0 :         if (setsockopt(s, SOL_SOCKET, SO_ATTACH_FILTER,
    7673                 :            :                        &msock_filter, sizeof(msock_filter))) {
    7674                 :          0 :                 wpa_printf(MSG_ERROR, "nl80211: setsockopt(SO_ATTACH_FILTER) failed: %s",
    7675                 :          0 :                            strerror(errno));
    7676                 :          0 :                 return -1;
    7677                 :            :         }
    7678                 :            : 
    7679                 :          0 :         return 0;
    7680                 :            : }
    7681                 :            : 
    7682                 :            : 
    7683                 :        203 : static void nl80211_remove_monitor_interface(
    7684                 :            :         struct wpa_driver_nl80211_data *drv)
    7685                 :            : {
    7686         [ -  + ]:        203 :         if (drv->monitor_refcount > 0)
    7687                 :          0 :                 drv->monitor_refcount--;
    7688                 :        203 :         wpa_printf(MSG_DEBUG, "nl80211: Remove monitor interface: refcount=%d",
    7689                 :            :                    drv->monitor_refcount);
    7690         [ -  + ]:        203 :         if (drv->monitor_refcount > 0)
    7691                 :        203 :                 return;
    7692                 :            : 
    7693         [ -  + ]:        203 :         if (drv->monitor_ifidx >= 0) {
    7694                 :          0 :                 nl80211_remove_iface(drv, drv->monitor_ifidx);
    7695                 :          0 :                 drv->monitor_ifidx = -1;
    7696                 :            :         }
    7697         [ -  + ]:        203 :         if (drv->monitor_sock >= 0) {
    7698                 :          0 :                 eloop_unregister_read_sock(drv->monitor_sock);
    7699                 :          0 :                 close(drv->monitor_sock);
    7700                 :          0 :                 drv->monitor_sock = -1;
    7701                 :            :         }
    7702                 :            : }
    7703                 :            : 
    7704                 :            : 
    7705                 :            : static int
    7706                 :          0 : nl80211_create_monitor_interface(struct wpa_driver_nl80211_data *drv)
    7707                 :            : {
    7708                 :            :         char buf[IFNAMSIZ];
    7709                 :            :         struct sockaddr_ll ll;
    7710                 :            :         int optval;
    7711                 :            :         socklen_t optlen;
    7712                 :            : 
    7713         [ #  # ]:          0 :         if (drv->monitor_ifidx >= 0) {
    7714                 :          0 :                 drv->monitor_refcount++;
    7715                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Re-use existing monitor interface: refcount=%d",
    7716                 :            :                            drv->monitor_refcount);
    7717                 :          0 :                 return 0;
    7718                 :            :         }
    7719                 :            : 
    7720         [ #  # ]:          0 :         if (os_strncmp(drv->first_bss->ifname, "p2p-", 4) == 0) {
    7721                 :            :                 /*
    7722                 :            :                  * P2P interface name is of the format p2p-%s-%d. For monitor
    7723                 :            :                  * interface name corresponding to P2P GO, replace "p2p-" with
    7724                 :            :                  * "mon-" to retain the same interface name length and to
    7725                 :            :                  * indicate that it is a monitor interface.
    7726                 :            :                  */
    7727                 :          0 :                 snprintf(buf, IFNAMSIZ, "mon-%s", drv->first_bss->ifname + 4);
    7728                 :            :         } else {
    7729                 :            :                 /* Non-P2P interface with AP functionality. */
    7730                 :          0 :                 snprintf(buf, IFNAMSIZ, "mon.%s", drv->first_bss->ifname);
    7731                 :            :         }
    7732                 :            : 
    7733                 :          0 :         buf[IFNAMSIZ - 1] = '\0';
    7734                 :            : 
    7735                 :          0 :         drv->monitor_ifidx =
    7736                 :          0 :                 nl80211_create_iface(drv, buf, NL80211_IFTYPE_MONITOR, NULL,
    7737                 :            :                                      0, NULL, NULL, 0);
    7738                 :            : 
    7739         [ #  # ]:          0 :         if (drv->monitor_ifidx == -EOPNOTSUPP) {
    7740                 :            :                 /*
    7741                 :            :                  * This is backward compatibility for a few versions of
    7742                 :            :                  * the kernel only that didn't advertise the right
    7743                 :            :                  * attributes for the only driver that then supported
    7744                 :            :                  * AP mode w/o monitor -- ath6kl.
    7745                 :            :                  */
    7746                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Driver does not support "
    7747                 :            :                            "monitor interface type - try to run without it");
    7748                 :          0 :                 drv->device_ap_sme = 1;
    7749                 :            :         }
    7750                 :            : 
    7751         [ #  # ]:          0 :         if (drv->monitor_ifidx < 0)
    7752                 :          0 :                 return -1;
    7753                 :            : 
    7754         [ #  # ]:          0 :         if (linux_set_iface_flags(drv->global->ioctl_sock, buf, 1))
    7755                 :          0 :                 goto error;
    7756                 :            : 
    7757                 :          0 :         memset(&ll, 0, sizeof(ll));
    7758                 :          0 :         ll.sll_family = AF_PACKET;
    7759                 :          0 :         ll.sll_ifindex = drv->monitor_ifidx;
    7760                 :          0 :         drv->monitor_sock = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL));
    7761         [ #  # ]:          0 :         if (drv->monitor_sock < 0) {
    7762                 :          0 :                 wpa_printf(MSG_ERROR, "nl80211: socket[PF_PACKET,SOCK_RAW] failed: %s",
    7763                 :          0 :                            strerror(errno));
    7764                 :          0 :                 goto error;
    7765                 :            :         }
    7766                 :            : 
    7767         [ #  # ]:          0 :         if (add_monitor_filter(drv->monitor_sock)) {
    7768                 :          0 :                 wpa_printf(MSG_INFO, "Failed to set socket filter for monitor "
    7769                 :            :                            "interface; do filtering in user space");
    7770                 :            :                 /* This works, but will cost in performance. */
    7771                 :            :         }
    7772                 :            : 
    7773         [ #  # ]:          0 :         if (bind(drv->monitor_sock, (struct sockaddr *) &ll, sizeof(ll)) < 0) {
    7774                 :          0 :                 wpa_printf(MSG_ERROR, "nl80211: monitor socket bind failed: %s",
    7775                 :          0 :                            strerror(errno));
    7776                 :          0 :                 goto error;
    7777                 :            :         }
    7778                 :            : 
    7779                 :          0 :         optlen = sizeof(optval);
    7780                 :          0 :         optval = 20;
    7781         [ #  # ]:          0 :         if (setsockopt
    7782                 :          0 :             (drv->monitor_sock, SOL_SOCKET, SO_PRIORITY, &optval, optlen)) {
    7783                 :          0 :                 wpa_printf(MSG_ERROR, "nl80211: Failed to set socket priority: %s",
    7784                 :          0 :                            strerror(errno));
    7785                 :          0 :                 goto error;
    7786                 :            :         }
    7787                 :            : 
    7788         [ #  # ]:          0 :         if (eloop_register_read_sock(drv->monitor_sock, handle_monitor_read,
    7789                 :            :                                      drv, NULL)) {
    7790                 :          0 :                 wpa_printf(MSG_INFO, "nl80211: Could not register monitor read socket");
    7791                 :          0 :                 goto error;
    7792                 :            :         }
    7793                 :            : 
    7794                 :          0 :         drv->monitor_refcount++;
    7795                 :          0 :         return 0;
    7796                 :            :  error:
    7797                 :          0 :         nl80211_remove_monitor_interface(drv);
    7798                 :          0 :         return -1;
    7799                 :            : }
    7800                 :            : 
    7801                 :            : 
    7802                 :        220 : static int nl80211_setup_ap(struct i802_bss *bss)
    7803                 :            : {
    7804                 :        220 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    7805                 :            : 
    7806                 :        220 :         wpa_printf(MSG_DEBUG, "nl80211: Setup AP(%s) - device_ap_sme=%d use_monitor=%d",
    7807                 :        660 :                    bss->ifname, drv->device_ap_sme, drv->use_monitor);
    7808                 :            : 
    7809                 :            :         /*
    7810                 :            :          * Disable Probe Request reporting unless we need it in this way for
    7811                 :            :          * devices that include the AP SME, in the other case (unless using
    7812                 :            :          * monitor iface) we'll get it through the nl_mgmt socket instead.
    7813                 :            :          */
    7814         [ +  - ]:        220 :         if (!drv->device_ap_sme)
    7815                 :        220 :                 wpa_driver_nl80211_probe_req_report(bss, 0);
    7816                 :            : 
    7817 [ +  - ][ +  - ]:        220 :         if (!drv->device_ap_sme && !drv->use_monitor)
    7818         [ -  + ]:        220 :                 if (nl80211_mgmt_subscribe_ap(bss))
    7819                 :          0 :                         return -1;
    7820                 :            : 
    7821 [ -  + ][ #  # ]:        220 :         if (drv->device_ap_sme && !drv->use_monitor)
    7822         [ #  # ]:          0 :                 if (nl80211_mgmt_subscribe_ap_dev_sme(bss))
    7823                 :          0 :                         return -1;
    7824                 :            : 
    7825         [ +  - ]:        220 :         if (!drv->device_ap_sme && drv->use_monitor &&
           [ -  +  #  # ]
    7826         [ #  # ]:          0 :             nl80211_create_monitor_interface(drv) &&
    7827                 :          0 :             !drv->device_ap_sme)
    7828                 :          0 :                 return -1;
    7829                 :            : 
    7830   [ -  +  #  # ]:        220 :         if (drv->device_ap_sme &&
    7831                 :          0 :             wpa_driver_nl80211_probe_req_report(bss, 1) < 0) {
    7832                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Failed to enable "
    7833                 :            :                            "Probe Request frame reporting in AP mode");
    7834                 :            :                 /* Try to survive without this */
    7835                 :            :         }
    7836                 :            : 
    7837                 :        220 :         return 0;
    7838                 :            : }
    7839                 :            : 
    7840                 :            : 
    7841                 :        220 : static void nl80211_teardown_ap(struct i802_bss *bss)
    7842                 :            : {
    7843                 :        220 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    7844                 :            : 
    7845                 :        220 :         wpa_printf(MSG_DEBUG, "nl80211: Teardown AP(%s) - device_ap_sme=%d use_monitor=%d",
    7846                 :        660 :                    bss->ifname, drv->device_ap_sme, drv->use_monitor);
    7847         [ -  + ]:        220 :         if (drv->device_ap_sme) {
    7848                 :          0 :                 wpa_driver_nl80211_probe_req_report(bss, 0);
    7849         [ #  # ]:          0 :                 if (!drv->use_monitor)
    7850                 :          0 :                         nl80211_mgmt_unsubscribe(bss, "AP teardown (dev SME)");
    7851         [ -  + ]:        220 :         } else if (drv->use_monitor)
    7852                 :          0 :                 nl80211_remove_monitor_interface(drv);
    7853                 :            :         else
    7854                 :        220 :                 nl80211_mgmt_unsubscribe(bss, "AP teardown");
    7855                 :            : 
    7856                 :        220 :         bss->beacon_set = 0;
    7857                 :        220 : }
    7858                 :            : 
    7859                 :            : 
    7860                 :       1209 : static int nl80211_send_eapol_data(struct i802_bss *bss,
    7861                 :            :                                    const u8 *addr, const u8 *data,
    7862                 :            :                                    size_t data_len)
    7863                 :            : {
    7864                 :            :         struct sockaddr_ll ll;
    7865                 :            :         int ret;
    7866                 :            : 
    7867         [ -  + ]:       1209 :         if (bss->drv->eapol_tx_sock < 0) {
    7868                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: No socket to send EAPOL");
    7869                 :          0 :                 return -1;
    7870                 :            :         }
    7871                 :            : 
    7872                 :       1209 :         os_memset(&ll, 0, sizeof(ll));
    7873                 :       1209 :         ll.sll_family = AF_PACKET;
    7874                 :       1209 :         ll.sll_ifindex = bss->ifindex;
    7875                 :       1209 :         ll.sll_protocol = htons(ETH_P_PAE);
    7876                 :       1209 :         ll.sll_halen = ETH_ALEN;
    7877                 :       1209 :         os_memcpy(ll.sll_addr, addr, ETH_ALEN);
    7878                 :       1209 :         ret = sendto(bss->drv->eapol_tx_sock, data, data_len, 0,
    7879                 :            :                      (struct sockaddr *) &ll, sizeof(ll));
    7880         [ -  + ]:       1209 :         if (ret < 0)
    7881                 :          0 :                 wpa_printf(MSG_ERROR, "nl80211: EAPOL TX: %s",
    7882                 :          0 :                            strerror(errno));
    7883                 :            : 
    7884                 :       1209 :         return ret;
    7885                 :            : }
    7886                 :            : 
    7887                 :            : 
    7888                 :            : static const u8 rfc1042_header[6] = { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
    7889                 :            : 
    7890                 :       1209 : static int wpa_driver_nl80211_hapd_send_eapol(
    7891                 :            :         void *priv, const u8 *addr, const u8 *data,
    7892                 :            :         size_t data_len, int encrypt, const u8 *own_addr, u32 flags)
    7893                 :            : {
    7894                 :       1209 :         struct i802_bss *bss = priv;
    7895                 :       1209 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    7896                 :            :         struct ieee80211_hdr *hdr;
    7897                 :            :         size_t len;
    7898                 :            :         u8 *pos;
    7899                 :            :         int res;
    7900                 :       1209 :         int qos = flags & WPA_STA_WMM;
    7901                 :            : 
    7902 [ +  - ][ +  - ]:       1209 :         if (drv->device_ap_sme || !drv->use_monitor)
    7903                 :       1209 :                 return nl80211_send_eapol_data(bss, addr, data, data_len);
    7904                 :            : 
    7905         [ #  # ]:          0 :         len = sizeof(*hdr) + (qos ? 2 : 0) + sizeof(rfc1042_header) + 2 +
    7906                 :            :                 data_len;
    7907                 :          0 :         hdr = os_zalloc(len);
    7908         [ #  # ]:          0 :         if (hdr == NULL) {
    7909                 :          0 :                 wpa_printf(MSG_INFO, "nl80211: Failed to allocate EAPOL buffer(len=%lu)",
    7910                 :            :                            (unsigned long) len);
    7911                 :          0 :                 return -1;
    7912                 :            :         }
    7913                 :            : 
    7914                 :          0 :         hdr->frame_control =
    7915                 :            :                 IEEE80211_FC(WLAN_FC_TYPE_DATA, WLAN_FC_STYPE_DATA);
    7916                 :          0 :         hdr->frame_control |= host_to_le16(WLAN_FC_FROMDS);
    7917         [ #  # ]:          0 :         if (encrypt)
    7918                 :          0 :                 hdr->frame_control |= host_to_le16(WLAN_FC_ISWEP);
    7919         [ #  # ]:          0 :         if (qos) {
    7920                 :          0 :                 hdr->frame_control |=
    7921                 :            :                         host_to_le16(WLAN_FC_STYPE_QOS_DATA << 4);
    7922                 :            :         }
    7923                 :            : 
    7924                 :          0 :         memcpy(hdr->IEEE80211_DA_FROMDS, addr, ETH_ALEN);
    7925                 :          0 :         memcpy(hdr->IEEE80211_BSSID_FROMDS, own_addr, ETH_ALEN);
    7926                 :          0 :         memcpy(hdr->IEEE80211_SA_FROMDS, own_addr, ETH_ALEN);
    7927                 :          0 :         pos = (u8 *) (hdr + 1);
    7928                 :            : 
    7929         [ #  # ]:          0 :         if (qos) {
    7930                 :            :                 /* Set highest priority in QoS header */
    7931                 :          0 :                 pos[0] = 7;
    7932                 :          0 :                 pos[1] = 0;
    7933                 :          0 :                 pos += 2;
    7934                 :            :         }
    7935                 :            : 
    7936                 :          0 :         memcpy(pos, rfc1042_header, sizeof(rfc1042_header));
    7937                 :          0 :         pos += sizeof(rfc1042_header);
    7938                 :          0 :         WPA_PUT_BE16(pos, ETH_P_PAE);
    7939                 :          0 :         pos += 2;
    7940                 :          0 :         memcpy(pos, data, data_len);
    7941                 :            : 
    7942                 :          0 :         res = wpa_driver_nl80211_send_frame(bss, (u8 *) hdr, len, encrypt, 0,
    7943                 :            :                                             0, 0, 0, 0);
    7944         [ #  # ]:          0 :         if (res < 0) {
    7945                 :          0 :                 wpa_printf(MSG_ERROR, "i802_send_eapol - packet len: %lu - "
    7946                 :            :                            "failed: %d (%s)",
    7947                 :          0 :                            (unsigned long) len, errno, strerror(errno));
    7948                 :            :         }
    7949                 :          0 :         os_free(hdr);
    7950                 :            : 
    7951                 :       1209 :         return res;
    7952                 :            : }
    7953                 :            : 
    7954                 :            : 
    7955                 :        857 : static int wpa_driver_nl80211_sta_set_flags(void *priv, const u8 *addr,
    7956                 :            :                                             int total_flags,
    7957                 :            :                                             int flags_or, int flags_and)
    7958                 :            : {
    7959                 :        857 :         struct i802_bss *bss = priv;
    7960                 :        857 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    7961                 :            :         struct nl_msg *msg;
    7962                 :            :         struct nlattr *flags;
    7963                 :            :         struct nl80211_sta_flag_update upd;
    7964                 :            : 
    7965                 :        857 :         msg = nlmsg_alloc();
    7966         [ -  + ]:        857 :         if (!msg)
    7967                 :          0 :                 return -ENOMEM;
    7968                 :            : 
    7969                 :        857 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_STATION);
    7970                 :            : 
    7971         [ +  - ]:        857 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
    7972                 :            :                     if_nametoindex(bss->ifname));
    7973         [ +  - ]:        857 :         NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
    7974                 :            : 
    7975                 :            :         /*
    7976                 :            :          * Backwards compatibility version using NL80211_ATTR_STA_FLAGS. This
    7977                 :            :          * can be removed eventually.
    7978                 :            :          */
    7979                 :        857 :         flags = nla_nest_start(msg, NL80211_ATTR_STA_FLAGS);
    7980         [ -  + ]:        857 :         if (!flags)
    7981                 :          0 :                 goto nla_put_failure;
    7982         [ +  + ]:        857 :         if (total_flags & WPA_STA_AUTHORIZED)
    7983         [ +  - ]:        300 :                 NLA_PUT_FLAG(msg, NL80211_STA_FLAG_AUTHORIZED);
    7984                 :            : 
    7985         [ +  - ]:        857 :         if (total_flags & WPA_STA_WMM)
    7986         [ +  - ]:        857 :                 NLA_PUT_FLAG(msg, NL80211_STA_FLAG_WME);
    7987                 :            : 
    7988         [ +  - ]:        857 :         if (total_flags & WPA_STA_SHORT_PREAMBLE)
    7989         [ +  - ]:        857 :                 NLA_PUT_FLAG(msg, NL80211_STA_FLAG_SHORT_PREAMBLE);
    7990                 :            : 
    7991         [ +  + ]:        857 :         if (total_flags & WPA_STA_MFP)
    7992         [ +  - ]:         48 :                 NLA_PUT_FLAG(msg, NL80211_STA_FLAG_MFP);
    7993                 :            : 
    7994         [ -  + ]:        857 :         if (total_flags & WPA_STA_TDLS_PEER)
    7995         [ #  # ]:          0 :                 NLA_PUT_FLAG(msg, NL80211_STA_FLAG_TDLS_PEER);
    7996                 :            : 
    7997                 :        857 :         nla_nest_end(msg, flags);
    7998                 :            : 
    7999                 :        857 :         os_memset(&upd, 0, sizeof(upd));
    8000                 :        857 :         upd.mask = sta_flags_nl80211(flags_or | ~flags_and);
    8001                 :        857 :         upd.set = sta_flags_nl80211(flags_or);
    8002         [ +  - ]:        857 :         NLA_PUT(msg, NL80211_ATTR_STA_FLAGS2, sizeof(upd), &upd);
    8003                 :            : 
    8004                 :        857 :         return send_and_recv_msgs(drv, msg, NULL, NULL);
    8005                 :            :  nla_put_failure:
    8006                 :          0 :         nlmsg_free(msg);
    8007                 :        857 :         return -ENOBUFS;
    8008                 :            : }
    8009                 :            : 
    8010                 :            : 
    8011                 :          0 : static int wpa_driver_nl80211_ap(struct wpa_driver_nl80211_data *drv,
    8012                 :            :                                  struct wpa_driver_associate_params *params)
    8013                 :            : {
    8014                 :            :         enum nl80211_iftype nlmode, old_mode;
    8015                 :          0 :         struct hostapd_freq_params freq = {
    8016                 :          0 :                 .freq = params->freq,
    8017                 :            :         };
    8018                 :            : 
    8019         [ #  # ]:          0 :         if (params->p2p) {
    8020                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Setup AP operations for P2P "
    8021                 :            :                            "group (GO)");
    8022                 :          0 :                 nlmode = NL80211_IFTYPE_P2P_GO;
    8023                 :            :         } else
    8024                 :          0 :                 nlmode = NL80211_IFTYPE_AP;
    8025                 :            : 
    8026                 :          0 :         old_mode = drv->nlmode;
    8027         [ #  # ]:          0 :         if (wpa_driver_nl80211_set_mode(drv->first_bss, nlmode)) {
    8028                 :          0 :                 nl80211_remove_monitor_interface(drv);
    8029                 :          0 :                 return -1;
    8030                 :            :         }
    8031                 :            : 
    8032         [ #  # ]:          0 :         if (wpa_driver_nl80211_set_freq(drv->first_bss, &freq)) {
    8033         [ #  # ]:          0 :                 if (old_mode != nlmode)
    8034                 :          0 :                         wpa_driver_nl80211_set_mode(drv->first_bss, old_mode);
    8035                 :          0 :                 nl80211_remove_monitor_interface(drv);
    8036                 :          0 :                 return -1;
    8037                 :            :         }
    8038                 :            : 
    8039                 :          0 :         return 0;
    8040                 :            : }
    8041                 :            : 
    8042                 :            : 
    8043                 :          0 : static int nl80211_leave_ibss(struct wpa_driver_nl80211_data *drv)
    8044                 :            : {
    8045                 :            :         struct nl_msg *msg;
    8046                 :          0 :         int ret = -1;
    8047                 :            : 
    8048                 :          0 :         msg = nlmsg_alloc();
    8049         [ #  # ]:          0 :         if (!msg)
    8050                 :          0 :                 return -1;
    8051                 :            : 
    8052                 :          0 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_LEAVE_IBSS);
    8053         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
    8054                 :          0 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    8055                 :          0 :         msg = NULL;
    8056         [ #  # ]:          0 :         if (ret) {
    8057                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Leave IBSS failed: ret=%d "
    8058                 :            :                            "(%s)", ret, strerror(-ret));
    8059                 :          0 :                 goto nla_put_failure;
    8060                 :            :         }
    8061                 :            : 
    8062                 :          0 :         ret = 0;
    8063                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Leave IBSS request sent successfully");
    8064                 :            : 
    8065                 :            : nla_put_failure:
    8066         [ #  # ]:          0 :         if (wpa_driver_nl80211_set_mode(drv->first_bss,
    8067                 :            :                                         NL80211_IFTYPE_STATION)) {
    8068                 :          0 :                 wpa_printf(MSG_INFO, "nl80211: Failed to set interface into "
    8069                 :            :                            "station mode");
    8070                 :            :         }
    8071                 :            : 
    8072                 :          0 :         nlmsg_free(msg);
    8073                 :          0 :         return ret;
    8074                 :            : }
    8075                 :            : 
    8076                 :            : 
    8077                 :          0 : static int wpa_driver_nl80211_ibss(struct wpa_driver_nl80211_data *drv,
    8078                 :            :                                    struct wpa_driver_associate_params *params)
    8079                 :            : {
    8080                 :            :         struct nl_msg *msg;
    8081                 :          0 :         int ret = -1;
    8082                 :          0 :         int count = 0;
    8083                 :            : 
    8084                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Join IBSS (ifindex=%d)", drv->ifindex);
    8085                 :            : 
    8086         [ #  # ]:          0 :         if (wpa_driver_nl80211_set_mode(drv->first_bss,
    8087                 :            :                                         NL80211_IFTYPE_ADHOC)) {
    8088                 :          0 :                 wpa_printf(MSG_INFO, "nl80211: Failed to set interface into "
    8089                 :            :                            "IBSS mode");
    8090                 :          0 :                 return -1;
    8091                 :            :         }
    8092                 :            : 
    8093                 :            : retry:
    8094                 :          0 :         msg = nlmsg_alloc();
    8095         [ #  # ]:          0 :         if (!msg)
    8096                 :          0 :                 return -1;
    8097                 :            : 
    8098                 :          0 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_JOIN_IBSS);
    8099         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
    8100                 :            : 
    8101 [ #  # ][ #  # ]:          0 :         if (params->ssid == NULL || params->ssid_len > sizeof(drv->ssid))
    8102                 :            :                 goto nla_put_failure;
    8103                 :            : 
    8104                 :          0 :         wpa_hexdump_ascii(MSG_DEBUG, "  * SSID",
    8105                 :          0 :                           params->ssid, params->ssid_len);
    8106         [ #  # ]:          0 :         NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
    8107                 :            :                 params->ssid);
    8108                 :          0 :         os_memcpy(drv->ssid, params->ssid, params->ssid_len);
    8109                 :          0 :         drv->ssid_len = params->ssid_len;
    8110                 :            : 
    8111                 :          0 :         wpa_printf(MSG_DEBUG, "  * freq=%d", params->freq);
    8112         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, params->freq);
    8113                 :            : 
    8114                 :          0 :         ret = nl80211_set_conn_keys(params, msg);
    8115         [ #  # ]:          0 :         if (ret)
    8116                 :          0 :                 goto nla_put_failure;
    8117                 :            : 
    8118 [ #  # ][ #  # ]:          0 :         if (params->bssid && params->fixed_bssid) {
    8119                 :          0 :                 wpa_printf(MSG_DEBUG, "  * BSSID=" MACSTR,
    8120                 :          0 :                            MAC2STR(params->bssid));
    8121         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->bssid);
    8122                 :            :         }
    8123                 :            : 
    8124 [ #  # ][ #  # ]:          0 :         if (params->key_mgmt_suite == WPA_KEY_MGMT_IEEE8021X ||
    8125         [ #  # ]:          0 :             params->key_mgmt_suite == WPA_KEY_MGMT_PSK ||
    8126         [ #  # ]:          0 :             params->key_mgmt_suite == WPA_KEY_MGMT_IEEE8021X_SHA256 ||
    8127                 :          0 :             params->key_mgmt_suite == WPA_KEY_MGMT_PSK_SHA256) {
    8128                 :          0 :                 wpa_printf(MSG_DEBUG, "  * control port");
    8129         [ #  # ]:          0 :                 NLA_PUT_FLAG(msg, NL80211_ATTR_CONTROL_PORT);
    8130                 :            :         }
    8131                 :            : 
    8132         [ #  # ]:          0 :         if (params->wpa_ie) {
    8133                 :          0 :                 wpa_hexdump(MSG_DEBUG,
    8134                 :            :                             "  * Extra IEs for Beacon/Probe Response frames",
    8135                 :          0 :                             params->wpa_ie, params->wpa_ie_len);
    8136         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_ATTR_IE, params->wpa_ie_len,
    8137                 :            :                         params->wpa_ie);
    8138                 :            :         }
    8139                 :            : 
    8140                 :          0 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    8141                 :          0 :         msg = NULL;
    8142         [ #  # ]:          0 :         if (ret) {
    8143                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Join IBSS failed: ret=%d (%s)",
    8144                 :            :                            ret, strerror(-ret));
    8145                 :          0 :                 count++;
    8146 [ #  # ][ #  # ]:          0 :                 if (ret == -EALREADY && count == 1) {
    8147                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Retry IBSS join after "
    8148                 :            :                                    "forced leave");
    8149                 :          0 :                         nl80211_leave_ibss(drv);
    8150                 :          0 :                         nlmsg_free(msg);
    8151                 :          0 :                         goto retry;
    8152                 :            :                 }
    8153                 :            : 
    8154                 :          0 :                 goto nla_put_failure;
    8155                 :            :         }
    8156                 :          0 :         ret = 0;
    8157                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Join IBSS request sent successfully");
    8158                 :            : 
    8159                 :            : nla_put_failure:
    8160                 :          0 :         nlmsg_free(msg);
    8161                 :          0 :         return ret;
    8162                 :            : }
    8163                 :            : 
    8164                 :            : 
    8165                 :          0 : static int nl80211_connect_common(struct wpa_driver_nl80211_data *drv,
    8166                 :            :                                   struct wpa_driver_associate_params *params,
    8167                 :            :                                   struct nl_msg *msg)
    8168                 :            : {
    8169         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
    8170                 :            : 
    8171         [ #  # ]:          0 :         if (params->bssid) {
    8172                 :          0 :                 wpa_printf(MSG_DEBUG, "  * bssid=" MACSTR,
    8173                 :          0 :                            MAC2STR(params->bssid));
    8174         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, params->bssid);
    8175                 :            :         }
    8176                 :            : 
    8177         [ #  # ]:          0 :         if (params->freq) {
    8178                 :          0 :                 wpa_printf(MSG_DEBUG, "  * freq=%d", params->freq);
    8179         [ #  # ]:          0 :                 NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, params->freq);
    8180                 :          0 :                 drv->assoc_freq = params->freq;
    8181                 :            :         } else
    8182                 :          0 :                 drv->assoc_freq = 0;
    8183                 :            : 
    8184         [ #  # ]:          0 :         if (params->bg_scan_period >= 0) {
    8185                 :          0 :                 wpa_printf(MSG_DEBUG, "  * bg scan period=%d",
    8186                 :            :                            params->bg_scan_period);
    8187         [ #  # ]:          0 :                 NLA_PUT_U16(msg, NL80211_ATTR_BG_SCAN_PERIOD,
    8188                 :            :                             params->bg_scan_period);
    8189                 :            :         }
    8190                 :            : 
    8191         [ #  # ]:          0 :         if (params->ssid) {
    8192                 :          0 :                 wpa_hexdump_ascii(MSG_DEBUG, "  * SSID",
    8193                 :          0 :                                   params->ssid, params->ssid_len);
    8194         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_ATTR_SSID, params->ssid_len,
    8195                 :            :                         params->ssid);
    8196         [ #  # ]:          0 :                 if (params->ssid_len > sizeof(drv->ssid))
    8197                 :          0 :                         goto nla_put_failure;
    8198                 :          0 :                 os_memcpy(drv->ssid, params->ssid, params->ssid_len);
    8199                 :          0 :                 drv->ssid_len = params->ssid_len;
    8200                 :            :         }
    8201                 :            : 
    8202                 :          0 :         wpa_hexdump(MSG_DEBUG, "  * IEs", params->wpa_ie, params->wpa_ie_len);
    8203         [ #  # ]:          0 :         if (params->wpa_ie)
    8204         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_ATTR_IE, params->wpa_ie_len,
    8205                 :            :                         params->wpa_ie);
    8206                 :            : 
    8207         [ #  # ]:          0 :         if (params->wpa_proto) {
    8208                 :          0 :                 enum nl80211_wpa_versions ver = 0;
    8209                 :            : 
    8210         [ #  # ]:          0 :                 if (params->wpa_proto & WPA_PROTO_WPA)
    8211                 :          0 :                         ver |= NL80211_WPA_VERSION_1;
    8212         [ #  # ]:          0 :                 if (params->wpa_proto & WPA_PROTO_RSN)
    8213                 :          0 :                         ver |= NL80211_WPA_VERSION_2;
    8214                 :            : 
    8215                 :          0 :                 wpa_printf(MSG_DEBUG, "  * WPA Versions 0x%x", ver);
    8216         [ #  # ]:          0 :                 NLA_PUT_U32(msg, NL80211_ATTR_WPA_VERSIONS, ver);
    8217                 :            :         }
    8218                 :            : 
    8219         [ #  # ]:          0 :         if (params->pairwise_suite != WPA_CIPHER_NONE) {
    8220                 :          0 :                 u32 cipher = wpa_cipher_to_cipher_suite(params->pairwise_suite);
    8221                 :          0 :                 wpa_printf(MSG_DEBUG, "  * pairwise=0x%x", cipher);
    8222         [ #  # ]:          0 :                 NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITES_PAIRWISE, cipher);
    8223                 :            :         }
    8224                 :            : 
    8225         [ #  # ]:          0 :         if (params->group_suite != WPA_CIPHER_NONE) {
    8226                 :          0 :                 u32 cipher = wpa_cipher_to_cipher_suite(params->group_suite);
    8227                 :          0 :                 wpa_printf(MSG_DEBUG, "  * group=0x%x", cipher);
    8228         [ #  # ]:          0 :                 NLA_PUT_U32(msg, NL80211_ATTR_CIPHER_SUITE_GROUP, cipher);
    8229                 :            :         }
    8230                 :            : 
    8231 [ #  # ][ #  # ]:          0 :         if (params->key_mgmt_suite == WPA_KEY_MGMT_IEEE8021X ||
    8232         [ #  # ]:          0 :             params->key_mgmt_suite == WPA_KEY_MGMT_PSK ||
    8233         [ #  # ]:          0 :             params->key_mgmt_suite == WPA_KEY_MGMT_FT_IEEE8021X ||
    8234         [ #  # ]:          0 :             params->key_mgmt_suite == WPA_KEY_MGMT_FT_PSK ||
    8235                 :          0 :             params->key_mgmt_suite == WPA_KEY_MGMT_CCKM) {
    8236                 :          0 :                 int mgmt = WLAN_AKM_SUITE_PSK;
    8237                 :            : 
    8238   [ #  #  #  #  :          0 :                 switch (params->key_mgmt_suite) {
                      # ]
    8239                 :            :                 case WPA_KEY_MGMT_CCKM:
    8240                 :          0 :                         mgmt = WLAN_AKM_SUITE_CCKM;
    8241                 :          0 :                         break;
    8242                 :            :                 case WPA_KEY_MGMT_IEEE8021X:
    8243                 :          0 :                         mgmt = WLAN_AKM_SUITE_8021X;
    8244                 :          0 :                         break;
    8245                 :            :                 case WPA_KEY_MGMT_FT_IEEE8021X:
    8246                 :          0 :                         mgmt = WLAN_AKM_SUITE_FT_8021X;
    8247                 :          0 :                         break;
    8248                 :            :                 case WPA_KEY_MGMT_FT_PSK:
    8249                 :          0 :                         mgmt = WLAN_AKM_SUITE_FT_PSK;
    8250                 :          0 :                         break;
    8251                 :            :                 case WPA_KEY_MGMT_PSK:
    8252                 :            :                 default:
    8253                 :          0 :                         mgmt = WLAN_AKM_SUITE_PSK;
    8254                 :          0 :                         break;
    8255                 :            :                 }
    8256         [ #  # ]:          0 :                 NLA_PUT_U32(msg, NL80211_ATTR_AKM_SUITES, mgmt);
    8257                 :            :         }
    8258                 :            : 
    8259         [ #  # ]:          0 :         NLA_PUT_FLAG(msg, NL80211_ATTR_CONTROL_PORT);
    8260                 :            : 
    8261         [ #  # ]:          0 :         if (params->mgmt_frame_protection == MGMT_FRAME_PROTECTION_REQUIRED)
    8262         [ #  # ]:          0 :                 NLA_PUT_U32(msg, NL80211_ATTR_USE_MFP, NL80211_MFP_REQUIRED);
    8263                 :            : 
    8264         [ #  # ]:          0 :         if (params->disable_ht)
    8265         [ #  # ]:          0 :                 NLA_PUT_FLAG(msg, NL80211_ATTR_DISABLE_HT);
    8266                 :            : 
    8267 [ #  # ][ #  # ]:          0 :         if (params->htcaps && params->htcaps_mask) {
    8268                 :          0 :                 int sz = sizeof(struct ieee80211_ht_capabilities);
    8269         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_ATTR_HT_CAPABILITY, sz, params->htcaps);
    8270         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_ATTR_HT_CAPABILITY_MASK, sz,
    8271                 :            :                         params->htcaps_mask);
    8272                 :            :         }
    8273                 :            : 
    8274                 :            : #ifdef CONFIG_VHT_OVERRIDES
    8275                 :            :         if (params->disable_vht) {
    8276                 :            :                 wpa_printf(MSG_DEBUG, "  * VHT disabled");
    8277                 :            :                 NLA_PUT_FLAG(msg, NL80211_ATTR_DISABLE_VHT);
    8278                 :            :         }
    8279                 :            : 
    8280                 :            :         if (params->vhtcaps && params->vhtcaps_mask) {
    8281                 :            :                 int sz = sizeof(struct ieee80211_vht_capabilities);
    8282                 :            :                 NLA_PUT(msg, NL80211_ATTR_VHT_CAPABILITY, sz, params->vhtcaps);
    8283                 :            :                 NLA_PUT(msg, NL80211_ATTR_VHT_CAPABILITY_MASK, sz,
    8284                 :            :                         params->vhtcaps_mask);
    8285                 :            :         }
    8286                 :            : #endif /* CONFIG_VHT_OVERRIDES */
    8287                 :            : 
    8288         [ #  # ]:          0 :         if (params->p2p)
    8289                 :          0 :                 wpa_printf(MSG_DEBUG, "  * P2P group");
    8290                 :            : 
    8291                 :          0 :         return 0;
    8292                 :            : nla_put_failure:
    8293                 :          0 :         return -1;
    8294                 :            : }
    8295                 :            : 
    8296                 :            : 
    8297                 :          0 : static int wpa_driver_nl80211_try_connect(
    8298                 :            :         struct wpa_driver_nl80211_data *drv,
    8299                 :            :         struct wpa_driver_associate_params *params)
    8300                 :            : {
    8301                 :            :         struct nl_msg *msg;
    8302                 :            :         enum nl80211_auth_type type;
    8303                 :            :         int ret;
    8304                 :            :         int algs;
    8305                 :            : 
    8306                 :          0 :         msg = nlmsg_alloc();
    8307         [ #  # ]:          0 :         if (!msg)
    8308                 :          0 :                 return -1;
    8309                 :            : 
    8310                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Connect (ifindex=%d)", drv->ifindex);
    8311                 :          0 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_CONNECT);
    8312                 :            : 
    8313                 :          0 :         ret = nl80211_connect_common(drv, params, msg);
    8314         [ #  # ]:          0 :         if (ret)
    8315                 :          0 :                 goto nla_put_failure;
    8316                 :            : 
    8317                 :          0 :         algs = 0;
    8318         [ #  # ]:          0 :         if (params->auth_alg & WPA_AUTH_ALG_OPEN)
    8319                 :          0 :                 algs++;
    8320         [ #  # ]:          0 :         if (params->auth_alg & WPA_AUTH_ALG_SHARED)
    8321                 :          0 :                 algs++;
    8322         [ #  # ]:          0 :         if (params->auth_alg & WPA_AUTH_ALG_LEAP)
    8323                 :          0 :                 algs++;
    8324         [ #  # ]:          0 :         if (algs > 1) {
    8325                 :          0 :                 wpa_printf(MSG_DEBUG, "  * Leave out Auth Type for automatic "
    8326                 :            :                            "selection");
    8327                 :          0 :                 goto skip_auth_type;
    8328                 :            :         }
    8329                 :            : 
    8330         [ #  # ]:          0 :         if (params->auth_alg & WPA_AUTH_ALG_OPEN)
    8331                 :          0 :                 type = NL80211_AUTHTYPE_OPEN_SYSTEM;
    8332         [ #  # ]:          0 :         else if (params->auth_alg & WPA_AUTH_ALG_SHARED)
    8333                 :          0 :                 type = NL80211_AUTHTYPE_SHARED_KEY;
    8334         [ #  # ]:          0 :         else if (params->auth_alg & WPA_AUTH_ALG_LEAP)
    8335                 :          0 :                 type = NL80211_AUTHTYPE_NETWORK_EAP;
    8336         [ #  # ]:          0 :         else if (params->auth_alg & WPA_AUTH_ALG_FT)
    8337                 :          0 :                 type = NL80211_AUTHTYPE_FT;
    8338                 :            :         else
    8339                 :          0 :                 goto nla_put_failure;
    8340                 :            : 
    8341                 :          0 :         wpa_printf(MSG_DEBUG, "  * Auth Type %d", type);
    8342         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_AUTH_TYPE, type);
    8343                 :            : 
    8344                 :            : skip_auth_type:
    8345                 :          0 :         ret = nl80211_set_conn_keys(params, msg);
    8346         [ #  # ]:          0 :         if (ret)
    8347                 :          0 :                 goto nla_put_failure;
    8348                 :            : 
    8349                 :          0 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    8350                 :          0 :         msg = NULL;
    8351         [ #  # ]:          0 :         if (ret) {
    8352                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: MLME connect failed: ret=%d "
    8353                 :            :                            "(%s)", ret, strerror(-ret));
    8354                 :          0 :                 goto nla_put_failure;
    8355                 :            :         }
    8356                 :          0 :         ret = 0;
    8357                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Connect request send successfully");
    8358                 :            : 
    8359                 :            : nla_put_failure:
    8360                 :          0 :         nlmsg_free(msg);
    8361                 :          0 :         return ret;
    8362                 :            : 
    8363                 :            : }
    8364                 :            : 
    8365                 :            : 
    8366                 :          0 : static int wpa_driver_nl80211_connect(
    8367                 :            :         struct wpa_driver_nl80211_data *drv,
    8368                 :            :         struct wpa_driver_associate_params *params)
    8369                 :            : {
    8370                 :          0 :         int ret = wpa_driver_nl80211_try_connect(drv, params);
    8371         [ #  # ]:          0 :         if (ret == -EALREADY) {
    8372                 :            :                 /*
    8373                 :            :                  * cfg80211 does not currently accept new connections if
    8374                 :            :                  * we are already connected. As a workaround, force
    8375                 :            :                  * disconnection and try again.
    8376                 :            :                  */
    8377                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Explicitly "
    8378                 :            :                            "disconnecting before reassociation "
    8379                 :            :                            "attempt");
    8380         [ #  # ]:          0 :                 if (wpa_driver_nl80211_disconnect(
    8381                 :            :                             drv, WLAN_REASON_PREV_AUTH_NOT_VALID))
    8382                 :          0 :                         return -1;
    8383                 :          0 :                 ret = wpa_driver_nl80211_try_connect(drv, params);
    8384                 :            :         }
    8385                 :          0 :         return ret;
    8386                 :            : }
    8387                 :            : 
    8388                 :            : 
    8389                 :          0 : static int wpa_driver_nl80211_associate(
    8390                 :            :         void *priv, struct wpa_driver_associate_params *params)
    8391                 :            : {
    8392                 :          0 :         struct i802_bss *bss = priv;
    8393                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    8394                 :            :         int ret;
    8395                 :            :         struct nl_msg *msg;
    8396                 :            : 
    8397         [ #  # ]:          0 :         if (params->mode == IEEE80211_MODE_AP)
    8398                 :          0 :                 return wpa_driver_nl80211_ap(drv, params);
    8399                 :            : 
    8400         [ #  # ]:          0 :         if (params->mode == IEEE80211_MODE_IBSS)
    8401                 :          0 :                 return wpa_driver_nl80211_ibss(drv, params);
    8402                 :            : 
    8403         [ #  # ]:          0 :         if (!(drv->capa.flags & WPA_DRIVER_FLAGS_SME)) {
    8404         [ #  # ]:          0 :                 enum nl80211_iftype nlmode = params->p2p ?
    8405                 :            :                         NL80211_IFTYPE_P2P_CLIENT : NL80211_IFTYPE_STATION;
    8406                 :            : 
    8407         [ #  # ]:          0 :                 if (wpa_driver_nl80211_set_mode(priv, nlmode) < 0)
    8408                 :          0 :                         return -1;
    8409                 :          0 :                 return wpa_driver_nl80211_connect(drv, params);
    8410                 :            :         }
    8411                 :            : 
    8412                 :          0 :         nl80211_mark_disconnected(drv);
    8413                 :            : 
    8414                 :          0 :         msg = nlmsg_alloc();
    8415         [ #  # ]:          0 :         if (!msg)
    8416                 :          0 :                 return -1;
    8417                 :            : 
    8418                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Associate (ifindex=%d)",
    8419                 :            :                    drv->ifindex);
    8420                 :          0 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_ASSOCIATE);
    8421                 :            : 
    8422                 :          0 :         ret = nl80211_connect_common(drv, params, msg);
    8423         [ #  # ]:          0 :         if (ret)
    8424                 :          0 :                 goto nla_put_failure;
    8425                 :            : 
    8426         [ #  # ]:          0 :         if (params->prev_bssid) {
    8427                 :          0 :                 wpa_printf(MSG_DEBUG, "  * prev_bssid=" MACSTR,
    8428                 :          0 :                            MAC2STR(params->prev_bssid));
    8429         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_ATTR_PREV_BSSID, ETH_ALEN,
    8430                 :            :                         params->prev_bssid);
    8431                 :            :         }
    8432                 :            : 
    8433                 :          0 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    8434                 :          0 :         msg = NULL;
    8435         [ #  # ]:          0 :         if (ret) {
    8436                 :          0 :                 wpa_dbg(drv->ctx, MSG_DEBUG,
    8437                 :            :                         "nl80211: MLME command failed (assoc): ret=%d (%s)",
    8438                 :            :                         ret, strerror(-ret));
    8439                 :          0 :                 nl80211_dump_scan(drv);
    8440                 :          0 :                 goto nla_put_failure;
    8441                 :            :         }
    8442                 :          0 :         ret = 0;
    8443                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Association request send "
    8444                 :            :                    "successfully");
    8445                 :            : 
    8446                 :            : nla_put_failure:
    8447                 :          0 :         nlmsg_free(msg);
    8448                 :          0 :         return ret;
    8449                 :            : }
    8450                 :            : 
    8451                 :            : 
    8452                 :        406 : static int nl80211_set_mode(struct wpa_driver_nl80211_data *drv,
    8453                 :            :                             int ifindex, enum nl80211_iftype mode)
    8454                 :            : {
    8455                 :            :         struct nl_msg *msg;
    8456                 :        406 :         int ret = -ENOBUFS;
    8457                 :            : 
    8458                 :        406 :         wpa_printf(MSG_DEBUG, "nl80211: Set mode ifindex %d iftype %d (%s)",
    8459                 :            :                    ifindex, mode, nl80211_iftype_str(mode));
    8460                 :            : 
    8461                 :        406 :         msg = nlmsg_alloc();
    8462         [ -  + ]:        406 :         if (!msg)
    8463                 :          0 :                 return -ENOMEM;
    8464                 :            : 
    8465                 :        406 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_INTERFACE);
    8466         [ -  + ]:        406 :         if (nl80211_set_iface_id(msg, drv->first_bss) < 0)
    8467                 :          0 :                 goto nla_put_failure;
    8468         [ +  - ]:        406 :         NLA_PUT_U32(msg, NL80211_ATTR_IFTYPE, mode);
    8469                 :            : 
    8470                 :        406 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    8471                 :        406 :         msg = NULL;
    8472         [ +  - ]:        406 :         if (!ret)
    8473                 :        406 :                 return 0;
    8474                 :            : nla_put_failure:
    8475                 :          0 :         nlmsg_free(msg);
    8476                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Failed to set interface %d to mode %d:"
    8477                 :            :                    " %d (%s)", ifindex, mode, ret, strerror(-ret));
    8478                 :        406 :         return ret;
    8479                 :            : }
    8480                 :            : 
    8481                 :            : 
    8482                 :        406 : static int wpa_driver_nl80211_set_mode(struct i802_bss *bss,
    8483                 :            :                                        enum nl80211_iftype nlmode)
    8484                 :            : {
    8485                 :        406 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    8486                 :        406 :         int ret = -1;
    8487                 :            :         int i;
    8488                 :        406 :         int was_ap = is_ap_interface(drv->nlmode);
    8489                 :            :         int res;
    8490                 :            : 
    8491                 :        406 :         res = nl80211_set_mode(drv, drv->ifindex, nlmode);
    8492 [ -  + ][ #  # ]:        406 :         if (res && nlmode == nl80211_get_ifmode(bss))
    8493                 :          0 :                 res = 0;
    8494                 :            : 
    8495         [ +  - ]:        406 :         if (res == 0) {
    8496                 :        406 :                 drv->nlmode = nlmode;
    8497                 :        406 :                 ret = 0;
    8498                 :        406 :                 goto done;
    8499                 :            :         }
    8500                 :            : 
    8501         [ #  # ]:          0 :         if (res == -ENODEV)
    8502                 :          0 :                 return -1;
    8503                 :            : 
    8504         [ #  # ]:          0 :         if (nlmode == drv->nlmode) {
    8505                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Interface already in "
    8506                 :            :                            "requested mode - ignore error");
    8507                 :          0 :                 ret = 0;
    8508                 :          0 :                 goto done; /* Already in the requested mode */
    8509                 :            :         }
    8510                 :            : 
    8511                 :            :         /* mac80211 doesn't allow mode changes while the device is up, so
    8512                 :            :          * take the device down, try to set the mode again, and bring the
    8513                 :            :          * device back up.
    8514                 :            :          */
    8515                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Try mode change after setting "
    8516                 :            :                    "interface down");
    8517         [ #  # ]:          0 :         for (i = 0; i < 10; i++) {
    8518                 :          0 :                 res = i802_set_iface_flags(bss, 0);
    8519 [ #  # ][ #  # ]:          0 :                 if (res == -EACCES || res == -ENODEV)
    8520                 :            :                         break;
    8521         [ #  # ]:          0 :                 if (res == 0) {
    8522                 :            :                         /* Try to set the mode again while the interface is
    8523                 :            :                          * down */
    8524                 :          0 :                         ret = nl80211_set_mode(drv, drv->ifindex, nlmode);
    8525         [ #  # ]:          0 :                         if (ret == -EACCES)
    8526                 :          0 :                                 break;
    8527                 :          0 :                         res = i802_set_iface_flags(bss, 1);
    8528 [ #  # ][ #  # ]:          0 :                         if (res && !ret)
    8529                 :          0 :                                 ret = -1;
    8530         [ #  # ]:          0 :                         else if (ret != -EBUSY)
    8531                 :          0 :                                 break;
    8532                 :            :                 } else
    8533                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Failed to set "
    8534                 :            :                                    "interface down");
    8535                 :          0 :                 os_sleep(0, 100000);
    8536                 :            :         }
    8537                 :            : 
    8538         [ #  # ]:          0 :         if (!ret) {
    8539                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Mode change succeeded while "
    8540                 :            :                            "interface is down");
    8541                 :          0 :                 drv->nlmode = nlmode;
    8542                 :          0 :                 drv->ignore_if_down_event = 1;
    8543                 :            :         }
    8544                 :            : 
    8545                 :            : done:
    8546         [ -  + ]:        406 :         if (ret) {
    8547                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Interface mode change to %d "
    8548                 :          0 :                            "from %d failed", nlmode, drv->nlmode);
    8549                 :          0 :                 return ret;
    8550                 :            :         }
    8551                 :            : 
    8552         [ -  + ]:        406 :         if (is_p2p_net_interface(nlmode))
    8553                 :          0 :                 nl80211_disable_11b_rates(drv, drv->ifindex, 1);
    8554         [ -  + ]:        406 :         else if (drv->disabled_11b_rates)
    8555                 :          0 :                 nl80211_disable_11b_rates(drv, drv->ifindex, 0);
    8556                 :            : 
    8557         [ +  + ]:        406 :         if (is_ap_interface(nlmode)) {
    8558                 :        203 :                 nl80211_mgmt_unsubscribe(bss, "start AP");
    8559                 :            :                 /* Setup additional AP mode functionality if needed */
    8560         [ -  + ]:        203 :                 if (nl80211_setup_ap(bss))
    8561                 :          0 :                         return -1;
    8562         [ +  - ]:        203 :         } else if (was_ap) {
    8563                 :            :                 /* Remove additional AP mode functionality */
    8564                 :        203 :                 nl80211_teardown_ap(bss);
    8565                 :            :         } else {
    8566                 :          0 :                 nl80211_mgmt_unsubscribe(bss, "mode change");
    8567                 :            :         }
    8568                 :            : 
    8569         [ +  + ]:        406 :         if (!bss->in_deinit && !is_ap_interface(nlmode) &&
           [ -  +  #  # ]
    8570                 :          0 :             nl80211_mgmt_subscribe_non_ap(bss) < 0)
    8571                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Failed to register Action "
    8572                 :            :                            "frame processing - ignore for now");
    8573                 :            : 
    8574                 :        406 :         return 0;
    8575                 :            : }
    8576                 :            : 
    8577                 :            : 
    8578                 :        203 : static int wpa_driver_nl80211_get_capa(void *priv,
    8579                 :            :                                        struct wpa_driver_capa *capa)
    8580                 :            : {
    8581                 :        203 :         struct i802_bss *bss = priv;
    8582                 :        203 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    8583         [ -  + ]:        203 :         if (!drv->has_capability)
    8584                 :          0 :                 return -1;
    8585                 :        203 :         os_memcpy(capa, &drv->capa, sizeof(*capa));
    8586 [ +  - ][ +  - ]:        203 :         if (drv->extended_capa && drv->extended_capa_mask) {
    8587                 :        203 :                 capa->extended_capa = drv->extended_capa;
    8588                 :        203 :                 capa->extended_capa_mask = drv->extended_capa_mask;
    8589                 :        203 :                 capa->extended_capa_len = drv->extended_capa_len;
    8590                 :            :         }
    8591                 :            : 
    8592 [ +  - ][ +  - ]:        203 :         if ((capa->flags & WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE) &&
    8593                 :        203 :             !drv->allow_p2p_device) {
    8594                 :        203 :                 wpa_printf(MSG_DEBUG, "nl80211: Do not indicate P2P_DEVICE support (p2p_device=1 driver param not specified)");
    8595                 :        203 :                 capa->flags &= ~WPA_DRIVER_FLAGS_DEDICATED_P2P_DEVICE;
    8596                 :            :         }
    8597                 :            : 
    8598                 :        203 :         return 0;
    8599                 :            : }
    8600                 :            : 
    8601                 :            : 
    8602                 :        213 : static int wpa_driver_nl80211_set_operstate(void *priv, int state)
    8603                 :            : {
    8604                 :        213 :         struct i802_bss *bss = priv;
    8605                 :        213 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    8606                 :            : 
    8607         [ +  - ]:        213 :         wpa_printf(MSG_DEBUG, "%s: operstate %d->%d (%s)",
    8608                 :            :                    __func__, drv->operstate, state, state ? "UP" : "DORMANT");
    8609                 :        213 :         drv->operstate = state;
    8610         [ +  - ]:        213 :         return netlink_send_oper_ifla(drv->global->netlink, drv->ifindex, -1,
    8611                 :            :                                       state ? IF_OPER_UP : IF_OPER_DORMANT);
    8612                 :            : }
    8613                 :            : 
    8614                 :            : 
    8615                 :          0 : static int wpa_driver_nl80211_set_supp_port(void *priv, int authorized)
    8616                 :            : {
    8617                 :          0 :         struct i802_bss *bss = priv;
    8618                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    8619                 :            :         struct nl_msg *msg;
    8620                 :            :         struct nl80211_sta_flag_update upd;
    8621                 :          0 :         int ret = -ENOBUFS;
    8622                 :            : 
    8623 [ #  # ][ #  # ]:          0 :         if (!drv->associated && is_zero_ether_addr(drv->bssid) && !authorized) {
                 [ #  # ]
    8624                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Skip set_supp_port(unauthorized) while not associated");
    8625                 :          0 :                 return 0;
    8626                 :            :         }
    8627                 :            : 
    8628         [ #  # ]:          0 :         wpa_printf(MSG_DEBUG, "nl80211: Set supplicant port %sauthorized for "
    8629                 :          0 :                    MACSTR, authorized ? "" : "un", MAC2STR(drv->bssid));
    8630                 :            : 
    8631                 :          0 :         msg = nlmsg_alloc();
    8632         [ #  # ]:          0 :         if (!msg)
    8633                 :          0 :                 return -ENOMEM;
    8634                 :            : 
    8635                 :          0 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_STATION);
    8636                 :            : 
    8637         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
    8638                 :            :                     if_nametoindex(bss->ifname));
    8639         [ #  # ]:          0 :         NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, drv->bssid);
    8640                 :            : 
    8641                 :          0 :         os_memset(&upd, 0, sizeof(upd));
    8642                 :          0 :         upd.mask = BIT(NL80211_STA_FLAG_AUTHORIZED);
    8643         [ #  # ]:          0 :         if (authorized)
    8644                 :          0 :                 upd.set = BIT(NL80211_STA_FLAG_AUTHORIZED);
    8645         [ #  # ]:          0 :         NLA_PUT(msg, NL80211_ATTR_STA_FLAGS2, sizeof(upd), &upd);
    8646                 :            : 
    8647                 :          0 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    8648                 :          0 :         msg = NULL;
    8649         [ #  # ]:          0 :         if (!ret)
    8650                 :          0 :                 return 0;
    8651                 :            :  nla_put_failure:
    8652                 :          0 :         nlmsg_free(msg);
    8653                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Failed to set STA flag: %d (%s)",
    8654                 :            :                    ret, strerror(-ret));
    8655                 :          0 :         return ret;
    8656                 :            : }
    8657                 :            : 
    8658                 :            : 
    8659                 :            : /* Set kernel driver on given frequency (MHz) */
    8660                 :        196 : static int i802_set_freq(void *priv, struct hostapd_freq_params *freq)
    8661                 :            : {
    8662                 :        196 :         struct i802_bss *bss = priv;
    8663                 :        196 :         return wpa_driver_nl80211_set_freq(bss, freq);
    8664                 :            : }
    8665                 :            : 
    8666                 :            : 
    8667                 :        233 : static inline int min_int(int a, int b)
    8668                 :            : {
    8669         [ -  + ]:        233 :         if (a < b)
    8670                 :          0 :                 return a;
    8671                 :        233 :         return b;
    8672                 :            : }
    8673                 :            : 
    8674                 :            : 
    8675                 :        233 : static int get_key_handler(struct nl_msg *msg, void *arg)
    8676                 :            : {
    8677                 :            :         struct nlattr *tb[NL80211_ATTR_MAX + 1];
    8678                 :        233 :         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
    8679                 :            : 
    8680                 :        233 :         nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
    8681                 :            :                   genlmsg_attrlen(gnlh, 0), NULL);
    8682                 :            : 
    8683                 :            :         /*
    8684                 :            :          * TODO: validate the key index and mac address!
    8685                 :            :          * Otherwise, there's a race condition as soon as
    8686                 :            :          * the kernel starts sending key notifications.
    8687                 :            :          */
    8688                 :            : 
    8689         [ +  - ]:        233 :         if (tb[NL80211_ATTR_KEY_SEQ])
    8690                 :        233 :                 memcpy(arg, nla_data(tb[NL80211_ATTR_KEY_SEQ]),
    8691                 :        233 :                        min_int(nla_len(tb[NL80211_ATTR_KEY_SEQ]), 6));
    8692                 :        233 :         return NL_SKIP;
    8693                 :            : }
    8694                 :            : 
    8695                 :            : 
    8696                 :        233 : static int i802_get_seqnum(const char *iface, void *priv, const u8 *addr,
    8697                 :            :                            int idx, u8 *seq)
    8698                 :            : {
    8699                 :        233 :         struct i802_bss *bss = priv;
    8700                 :        233 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    8701                 :            :         struct nl_msg *msg;
    8702                 :            : 
    8703                 :        233 :         msg = nlmsg_alloc();
    8704         [ -  + ]:        233 :         if (!msg)
    8705                 :          0 :                 return -ENOMEM;
    8706                 :            : 
    8707                 :        233 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_KEY);
    8708                 :            : 
    8709         [ -  + ]:        233 :         if (addr)
    8710         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
    8711         [ +  - ]:        233 :         NLA_PUT_U8(msg, NL80211_ATTR_KEY_IDX, idx);
    8712         [ +  - ]:        233 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(iface));
    8713                 :            : 
    8714                 :        233 :         memset(seq, 0, 6);
    8715                 :            : 
    8716                 :        233 :         return send_and_recv_msgs(drv, msg, get_key_handler, seq);
    8717                 :            :  nla_put_failure:
    8718                 :          0 :         nlmsg_free(msg);
    8719                 :        233 :         return -ENOBUFS;
    8720                 :            : }
    8721                 :            : 
    8722                 :            : 
    8723                 :          0 : static int i802_set_rts(void *priv, int rts)
    8724                 :            : {
    8725                 :          0 :         struct i802_bss *bss = priv;
    8726                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    8727                 :            :         struct nl_msg *msg;
    8728                 :          0 :         int ret = -ENOBUFS;
    8729                 :            :         u32 val;
    8730                 :            : 
    8731                 :          0 :         msg = nlmsg_alloc();
    8732         [ #  # ]:          0 :         if (!msg)
    8733                 :          0 :                 return -ENOMEM;
    8734                 :            : 
    8735         [ #  # ]:          0 :         if (rts >= 2347)
    8736                 :          0 :                 val = (u32) -1;
    8737                 :            :         else
    8738                 :          0 :                 val = rts;
    8739                 :            : 
    8740                 :          0 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_WIPHY);
    8741         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
    8742         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_RTS_THRESHOLD, val);
    8743                 :            : 
    8744                 :          0 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    8745                 :          0 :         msg = NULL;
    8746         [ #  # ]:          0 :         if (!ret)
    8747                 :          0 :                 return 0;
    8748                 :            : nla_put_failure:
    8749                 :          0 :         nlmsg_free(msg);
    8750                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Failed to set RTS threshold %d: "
    8751                 :            :                    "%d (%s)", rts, ret, strerror(-ret));
    8752                 :          0 :         return ret;
    8753                 :            : }
    8754                 :            : 
    8755                 :            : 
    8756                 :          0 : static int i802_set_frag(void *priv, int frag)
    8757                 :            : {
    8758                 :          0 :         struct i802_bss *bss = priv;
    8759                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    8760                 :            :         struct nl_msg *msg;
    8761                 :          0 :         int ret = -ENOBUFS;
    8762                 :            :         u32 val;
    8763                 :            : 
    8764                 :          0 :         msg = nlmsg_alloc();
    8765         [ #  # ]:          0 :         if (!msg)
    8766                 :          0 :                 return -ENOMEM;
    8767                 :            : 
    8768         [ #  # ]:          0 :         if (frag >= 2346)
    8769                 :          0 :                 val = (u32) -1;
    8770                 :            :         else
    8771                 :          0 :                 val = frag;
    8772                 :            : 
    8773                 :          0 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_WIPHY);
    8774         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
    8775         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FRAG_THRESHOLD, val);
    8776                 :            : 
    8777                 :          0 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    8778                 :          0 :         msg = NULL;
    8779         [ #  # ]:          0 :         if (!ret)
    8780                 :          0 :                 return 0;
    8781                 :            : nla_put_failure:
    8782                 :          0 :         nlmsg_free(msg);
    8783                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Failed to set fragmentation threshold "
    8784                 :            :                    "%d: %d (%s)", frag, ret, strerror(-ret));
    8785                 :          0 :         return ret;
    8786                 :            : }
    8787                 :            : 
    8788                 :            : 
    8789                 :        447 : static int i802_flush(void *priv)
    8790                 :            : {
    8791                 :        447 :         struct i802_bss *bss = priv;
    8792                 :        447 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    8793                 :            :         struct nl_msg *msg;
    8794                 :            :         int res;
    8795                 :            : 
    8796                 :        447 :         msg = nlmsg_alloc();
    8797         [ -  + ]:        447 :         if (!msg)
    8798                 :          0 :                 return -1;
    8799                 :            : 
    8800                 :        447 :         wpa_printf(MSG_DEBUG, "nl80211: flush -> DEL_STATION %s (all)",
    8801                 :        447 :                    bss->ifname);
    8802                 :        447 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_DEL_STATION);
    8803                 :            : 
    8804                 :            :         /*
    8805                 :            :          * XXX: FIX! this needs to flush all VLANs too
    8806                 :            :          */
    8807         [ +  - ]:        447 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
    8808                 :            :                     if_nametoindex(bss->ifname));
    8809                 :            : 
    8810                 :        447 :         res = send_and_recv_msgs(drv, msg, NULL, NULL);
    8811         [ -  + ]:        447 :         if (res) {
    8812                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Station flush failed: ret=%d "
    8813                 :            :                            "(%s)", res, strerror(-res));
    8814                 :            :         }
    8815                 :        447 :         return res;
    8816                 :            :  nla_put_failure:
    8817                 :          0 :         nlmsg_free(msg);
    8818                 :        447 :         return -ENOBUFS;
    8819                 :            : }
    8820                 :            : 
    8821                 :            : 
    8822                 :          1 : static int get_sta_handler(struct nl_msg *msg, void *arg)
    8823                 :            : {
    8824                 :            :         struct nlattr *tb[NL80211_ATTR_MAX + 1];
    8825                 :          1 :         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
    8826                 :          1 :         struct hostap_sta_driver_data *data = arg;
    8827                 :            :         struct nlattr *stats[NL80211_STA_INFO_MAX + 1];
    8828                 :            :         static struct nla_policy stats_policy[NL80211_STA_INFO_MAX + 1] = {
    8829                 :            :                 [NL80211_STA_INFO_INACTIVE_TIME] = { .type = NLA_U32 },
    8830                 :            :                 [NL80211_STA_INFO_RX_BYTES] = { .type = NLA_U32 },
    8831                 :            :                 [NL80211_STA_INFO_TX_BYTES] = { .type = NLA_U32 },
    8832                 :            :                 [NL80211_STA_INFO_RX_PACKETS] = { .type = NLA_U32 },
    8833                 :            :                 [NL80211_STA_INFO_TX_PACKETS] = { .type = NLA_U32 },
    8834                 :            :                 [NL80211_STA_INFO_TX_FAILED] = { .type = NLA_U32 },
    8835                 :            :         };
    8836                 :            : 
    8837                 :          1 :         nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
    8838                 :            :                   genlmsg_attrlen(gnlh, 0), NULL);
    8839                 :            : 
    8840                 :            :         /*
    8841                 :            :          * TODO: validate the interface and mac address!
    8842                 :            :          * Otherwise, there's a race condition as soon as
    8843                 :            :          * the kernel starts sending station notifications.
    8844                 :            :          */
    8845                 :            : 
    8846         [ -  + ]:          1 :         if (!tb[NL80211_ATTR_STA_INFO]) {
    8847                 :          0 :                 wpa_printf(MSG_DEBUG, "sta stats missing!");
    8848                 :          0 :                 return NL_SKIP;
    8849                 :            :         }
    8850         [ -  + ]:          1 :         if (nla_parse_nested(stats, NL80211_STA_INFO_MAX,
    8851                 :            :                              tb[NL80211_ATTR_STA_INFO],
    8852                 :            :                              stats_policy)) {
    8853                 :          0 :                 wpa_printf(MSG_DEBUG, "failed to parse nested attributes!");
    8854                 :          0 :                 return NL_SKIP;
    8855                 :            :         }
    8856                 :            : 
    8857         [ +  - ]:          1 :         if (stats[NL80211_STA_INFO_INACTIVE_TIME])
    8858                 :          1 :                 data->inactive_msec =
    8859                 :          1 :                         nla_get_u32(stats[NL80211_STA_INFO_INACTIVE_TIME]);
    8860         [ +  - ]:          1 :         if (stats[NL80211_STA_INFO_RX_BYTES])
    8861                 :          1 :                 data->rx_bytes = nla_get_u32(stats[NL80211_STA_INFO_RX_BYTES]);
    8862         [ +  - ]:          1 :         if (stats[NL80211_STA_INFO_TX_BYTES])
    8863                 :          1 :                 data->tx_bytes = nla_get_u32(stats[NL80211_STA_INFO_TX_BYTES]);
    8864         [ +  - ]:          1 :         if (stats[NL80211_STA_INFO_RX_PACKETS])
    8865                 :          1 :                 data->rx_packets =
    8866                 :          1 :                         nla_get_u32(stats[NL80211_STA_INFO_RX_PACKETS]);
    8867         [ +  - ]:          1 :         if (stats[NL80211_STA_INFO_TX_PACKETS])
    8868                 :          1 :                 data->tx_packets =
    8869                 :          1 :                         nla_get_u32(stats[NL80211_STA_INFO_TX_PACKETS]);
    8870         [ +  - ]:          1 :         if (stats[NL80211_STA_INFO_TX_FAILED])
    8871                 :          1 :                 data->tx_retry_failed =
    8872                 :          1 :                         nla_get_u32(stats[NL80211_STA_INFO_TX_FAILED]);
    8873                 :            : 
    8874                 :          1 :         return NL_SKIP;
    8875                 :            : }
    8876                 :            : 
    8877                 :          1 : static int i802_read_sta_data(struct i802_bss *bss,
    8878                 :            :                               struct hostap_sta_driver_data *data,
    8879                 :            :                               const u8 *addr)
    8880                 :            : {
    8881                 :          1 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    8882                 :            :         struct nl_msg *msg;
    8883                 :            : 
    8884                 :          1 :         os_memset(data, 0, sizeof(*data));
    8885                 :          1 :         msg = nlmsg_alloc();
    8886         [ -  + ]:          1 :         if (!msg)
    8887                 :          0 :                 return -ENOMEM;
    8888                 :            : 
    8889                 :          1 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_STATION);
    8890                 :            : 
    8891         [ +  - ]:          1 :         NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
    8892         [ +  - ]:          1 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
    8893                 :            : 
    8894                 :          1 :         return send_and_recv_msgs(drv, msg, get_sta_handler, data);
    8895                 :            :  nla_put_failure:
    8896                 :          0 :         nlmsg_free(msg);
    8897                 :          1 :         return -ENOBUFS;
    8898                 :            : }
    8899                 :            : 
    8900                 :            : 
    8901                 :        784 : static int i802_set_tx_queue_params(void *priv, int queue, int aifs,
    8902                 :            :                                     int cw_min, int cw_max, int burst_time)
    8903                 :            : {
    8904                 :        784 :         struct i802_bss *bss = priv;
    8905                 :        784 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    8906                 :            :         struct nl_msg *msg;
    8907                 :            :         struct nlattr *txq, *params;
    8908                 :            : 
    8909                 :        784 :         msg = nlmsg_alloc();
    8910         [ -  + ]:        784 :         if (!msg)
    8911                 :          0 :                 return -1;
    8912                 :            : 
    8913                 :        784 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_WIPHY);
    8914                 :            : 
    8915         [ +  - ]:        784 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
    8916                 :            : 
    8917                 :        784 :         txq = nla_nest_start(msg, NL80211_ATTR_WIPHY_TXQ_PARAMS);
    8918         [ -  + ]:        784 :         if (!txq)
    8919                 :          0 :                 goto nla_put_failure;
    8920                 :            : 
    8921                 :            :         /* We are only sending parameters for a single TXQ at a time */
    8922                 :        784 :         params = nla_nest_start(msg, 1);
    8923         [ -  + ]:        784 :         if (!params)
    8924                 :          0 :                 goto nla_put_failure;
    8925                 :            : 
    8926   [ +  +  +  +  :        784 :         switch (queue) {
                      - ]
    8927                 :            :         case 0:
    8928         [ +  - ]:        196 :                 NLA_PUT_U8(msg, NL80211_TXQ_ATTR_QUEUE, NL80211_TXQ_Q_VO);
    8929                 :        196 :                 break;
    8930                 :            :         case 1:
    8931         [ +  - ]:        196 :                 NLA_PUT_U8(msg, NL80211_TXQ_ATTR_QUEUE, NL80211_TXQ_Q_VI);
    8932                 :        196 :                 break;
    8933                 :            :         case 2:
    8934         [ +  - ]:        196 :                 NLA_PUT_U8(msg, NL80211_TXQ_ATTR_QUEUE, NL80211_TXQ_Q_BE);
    8935                 :        196 :                 break;
    8936                 :            :         case 3:
    8937         [ +  - ]:        196 :                 NLA_PUT_U8(msg, NL80211_TXQ_ATTR_QUEUE, NL80211_TXQ_Q_BK);
    8938                 :        196 :                 break;
    8939                 :            :         }
    8940                 :            :         /* Burst time is configured in units of 0.1 msec and TXOP parameter in
    8941                 :            :          * 32 usec, so need to convert the value here. */
    8942         [ +  - ]:        784 :         NLA_PUT_U16(msg, NL80211_TXQ_ATTR_TXOP, (burst_time * 100 + 16) / 32);
    8943         [ +  - ]:        784 :         NLA_PUT_U16(msg, NL80211_TXQ_ATTR_CWMIN, cw_min);
    8944         [ +  - ]:        784 :         NLA_PUT_U16(msg, NL80211_TXQ_ATTR_CWMAX, cw_max);
    8945         [ +  - ]:        784 :         NLA_PUT_U8(msg, NL80211_TXQ_ATTR_AIFS, aifs);
    8946                 :            : 
    8947                 :        784 :         nla_nest_end(msg, params);
    8948                 :            : 
    8949                 :        784 :         nla_nest_end(msg, txq);
    8950                 :            : 
    8951         [ +  - ]:        784 :         if (send_and_recv_msgs(drv, msg, NULL, NULL) == 0)
    8952                 :        784 :                 return 0;
    8953                 :          0 :         msg = NULL;
    8954                 :            :  nla_put_failure:
    8955                 :          0 :         nlmsg_free(msg);
    8956                 :        784 :         return -1;
    8957                 :            : }
    8958                 :            : 
    8959                 :            : 
    8960                 :          0 : static int i802_set_sta_vlan(struct i802_bss *bss, const u8 *addr,
    8961                 :            :                              const char *ifname, int vlan_id)
    8962                 :            : {
    8963                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    8964                 :            :         struct nl_msg *msg;
    8965                 :          0 :         int ret = -ENOBUFS;
    8966                 :            : 
    8967                 :          0 :         msg = nlmsg_alloc();
    8968         [ #  # ]:          0 :         if (!msg)
    8969                 :          0 :                 return -ENOMEM;
    8970                 :            : 
    8971                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: %s[%d]: set_sta_vlan(" MACSTR
    8972                 :            :                    ", ifname=%s[%d], vlan_id=%d)",
    8973                 :          0 :                    bss->ifname, if_nametoindex(bss->ifname),
    8974                 :          0 :                    MAC2STR(addr), ifname, if_nametoindex(ifname), vlan_id);
    8975                 :          0 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_STATION);
    8976                 :            : 
    8977         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX,
    8978                 :            :                     if_nametoindex(bss->ifname));
    8979         [ #  # ]:          0 :         NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
    8980         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_STA_VLAN,
    8981                 :            :                     if_nametoindex(ifname));
    8982                 :            : 
    8983                 :          0 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    8984                 :          0 :         msg = NULL;
    8985         [ #  # ]:          0 :         if (ret < 0) {
    8986                 :          0 :                 wpa_printf(MSG_ERROR, "nl80211: NL80211_ATTR_STA_VLAN (addr="
    8987                 :            :                            MACSTR " ifname=%s vlan_id=%d) failed: %d (%s)",
    8988                 :          0 :                            MAC2STR(addr), ifname, vlan_id, ret,
    8989                 :            :                            strerror(-ret));
    8990                 :            :         }
    8991                 :            :  nla_put_failure:
    8992                 :          0 :         nlmsg_free(msg);
    8993                 :          0 :         return ret;
    8994                 :            : }
    8995                 :            : 
    8996                 :            : 
    8997                 :          0 : static int i802_get_inact_sec(void *priv, const u8 *addr)
    8998                 :            : {
    8999                 :            :         struct hostap_sta_driver_data data;
    9000                 :            :         int ret;
    9001                 :            : 
    9002                 :          0 :         data.inactive_msec = (unsigned long) -1;
    9003                 :          0 :         ret = i802_read_sta_data(priv, &data, addr);
    9004 [ #  # ][ #  # ]:          0 :         if (ret || data.inactive_msec == (unsigned long) -1)
    9005                 :          0 :                 return -1;
    9006                 :          0 :         return data.inactive_msec / 1000;
    9007                 :            : }
    9008                 :            : 
    9009                 :            : 
    9010                 :        284 : static int i802_sta_clear_stats(void *priv, const u8 *addr)
    9011                 :            : {
    9012                 :            : #if 0
    9013                 :            :         /* TODO */
    9014                 :            : #endif
    9015                 :        284 :         return 0;
    9016                 :            : }
    9017                 :            : 
    9018                 :            : 
    9019                 :        490 : static int i802_sta_deauth(void *priv, const u8 *own_addr, const u8 *addr,
    9020                 :            :                            int reason)
    9021                 :            : {
    9022                 :        490 :         struct i802_bss *bss = priv;
    9023                 :        490 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    9024                 :            :         struct ieee80211_mgmt mgmt;
    9025                 :            : 
    9026         [ -  + ]:        490 :         if (drv->device_ap_sme)
    9027                 :          0 :                 return wpa_driver_nl80211_sta_remove(bss, addr);
    9028                 :            : 
    9029                 :        490 :         memset(&mgmt, 0, sizeof(mgmt));
    9030                 :        490 :         mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
    9031                 :            :                                           WLAN_FC_STYPE_DEAUTH);
    9032                 :        490 :         memcpy(mgmt.da, addr, ETH_ALEN);
    9033                 :        490 :         memcpy(mgmt.sa, own_addr, ETH_ALEN);
    9034                 :        490 :         memcpy(mgmt.bssid, own_addr, ETH_ALEN);
    9035                 :        490 :         mgmt.u.deauth.reason_code = host_to_le16(reason);
    9036                 :        490 :         return wpa_driver_nl80211_send_mlme(bss, (u8 *) &mgmt,
    9037                 :            :                                             IEEE80211_HDRLEN +
    9038                 :            :                                             sizeof(mgmt.u.deauth), 0, 0, 0, 0,
    9039                 :            :                                             0);
    9040                 :            : }
    9041                 :            : 
    9042                 :            : 
    9043                 :          0 : static int i802_sta_disassoc(void *priv, const u8 *own_addr, const u8 *addr,
    9044                 :            :                              int reason)
    9045                 :            : {
    9046                 :          0 :         struct i802_bss *bss = priv;
    9047                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    9048                 :            :         struct ieee80211_mgmt mgmt;
    9049                 :            : 
    9050         [ #  # ]:          0 :         if (drv->device_ap_sme)
    9051                 :          0 :                 return wpa_driver_nl80211_sta_remove(bss, addr);
    9052                 :            : 
    9053                 :          0 :         memset(&mgmt, 0, sizeof(mgmt));
    9054                 :          0 :         mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
    9055                 :            :                                           WLAN_FC_STYPE_DISASSOC);
    9056                 :          0 :         memcpy(mgmt.da, addr, ETH_ALEN);
    9057                 :          0 :         memcpy(mgmt.sa, own_addr, ETH_ALEN);
    9058                 :          0 :         memcpy(mgmt.bssid, own_addr, ETH_ALEN);
    9059                 :          0 :         mgmt.u.disassoc.reason_code = host_to_le16(reason);
    9060                 :          0 :         return wpa_driver_nl80211_send_mlme(bss, (u8 *) &mgmt,
    9061                 :            :                                             IEEE80211_HDRLEN +
    9062                 :            :                                             sizeof(mgmt.u.disassoc), 0, 0, 0, 0,
    9063                 :            :                                             0);
    9064                 :            : }
    9065                 :            : 
    9066                 :            : 
    9067                 :        220 : static void add_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx)
    9068                 :            : {
    9069                 :            :         int i;
    9070                 :            :         int *old;
    9071                 :            : 
    9072                 :        220 :         wpa_printf(MSG_DEBUG, "nl80211: Add own interface ifindex %d",
    9073                 :            :                    ifidx);
    9074         [ +  - ]:        245 :         for (i = 0; i < drv->num_if_indices; i++) {
    9075         [ +  + ]:        245 :                 if (drv->if_indices[i] == 0) {
    9076                 :        220 :                         drv->if_indices[i] = ifidx;
    9077                 :        220 :                         return;
    9078                 :            :                 }
    9079                 :            :         }
    9080                 :            : 
    9081         [ #  # ]:          0 :         if (drv->if_indices != drv->default_if_indices)
    9082                 :          0 :                 old = drv->if_indices;
    9083                 :            :         else
    9084                 :          0 :                 old = NULL;
    9085                 :            : 
    9086                 :          0 :         drv->if_indices = os_realloc_array(old, drv->num_if_indices + 1,
    9087                 :            :                                            sizeof(int));
    9088         [ #  # ]:          0 :         if (!drv->if_indices) {
    9089         [ #  # ]:          0 :                 if (!old)
    9090                 :          0 :                         drv->if_indices = drv->default_if_indices;
    9091                 :            :                 else
    9092                 :          0 :                         drv->if_indices = old;
    9093                 :          0 :                 wpa_printf(MSG_ERROR, "Failed to reallocate memory for "
    9094                 :            :                            "interfaces");
    9095                 :          0 :                 wpa_printf(MSG_ERROR, "Ignoring EAPOL on interface %d", ifidx);
    9096                 :          0 :                 return;
    9097         [ #  # ]:          0 :         } else if (!old)
    9098                 :          0 :                 os_memcpy(drv->if_indices, drv->default_if_indices,
    9099                 :            :                           sizeof(drv->default_if_indices));
    9100                 :          0 :         drv->if_indices[drv->num_if_indices] = ifidx;
    9101                 :        220 :         drv->num_if_indices++;
    9102                 :            : }
    9103                 :            : 
    9104                 :            : 
    9105                 :         17 : static void del_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx)
    9106                 :            : {
    9107                 :            :         int i;
    9108                 :            : 
    9109         [ +  - ]:         42 :         for (i = 0; i < drv->num_if_indices; i++) {
    9110         [ +  + ]:         42 :                 if (drv->if_indices[i] == ifidx) {
    9111                 :         17 :                         drv->if_indices[i] = 0;
    9112                 :         17 :                         break;
    9113                 :            :                 }
    9114                 :            :         }
    9115                 :         17 : }
    9116                 :            : 
    9117                 :            : 
    9118                 :       3884 : static int have_ifidx(struct wpa_driver_nl80211_data *drv, int ifidx)
    9119                 :            : {
    9120                 :            :         int i;
    9121                 :            : 
    9122         [ +  + ]:      47336 :         for (i = 0; i < drv->num_if_indices; i++)
    9123         [ +  + ]:      44627 :                 if (drv->if_indices[i] == ifidx)
    9124                 :       1175 :                         return 1;
    9125                 :            : 
    9126                 :       3884 :         return 0;
    9127                 :            : }
    9128                 :            : 
    9129                 :            : 
    9130                 :          0 : static int i802_set_wds_sta(void *priv, const u8 *addr, int aid, int val,
    9131                 :            :                             const char *bridge_ifname, char *ifname_wds)
    9132                 :            : {
    9133                 :          0 :         struct i802_bss *bss = priv;
    9134                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    9135                 :            :         char name[IFNAMSIZ + 1];
    9136                 :            : 
    9137                 :          0 :         os_snprintf(name, sizeof(name), "%s.sta%d", bss->ifname, aid);
    9138         [ #  # ]:          0 :         if (ifname_wds)
    9139                 :          0 :                 os_strlcpy(ifname_wds, name, IFNAMSIZ + 1);
    9140                 :            : 
    9141                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Set WDS STA addr=" MACSTR
    9142                 :          0 :                    " aid=%d val=%d name=%s", MAC2STR(addr), aid, val, name);
    9143         [ #  # ]:          0 :         if (val) {
    9144         [ #  # ]:          0 :                 if (!if_nametoindex(name)) {
    9145         [ #  # ]:          0 :                         if (nl80211_create_iface(drv, name,
    9146                 :            :                                                  NL80211_IFTYPE_AP_VLAN,
    9147                 :          0 :                                                  bss->addr, 1, NULL, NULL, 0) <
    9148                 :            :                             0)
    9149                 :          0 :                                 return -1;
    9150   [ #  #  #  # ]:          0 :                         if (bridge_ifname &&
    9151                 :          0 :                             linux_br_add_if(drv->global->ioctl_sock,
    9152                 :            :                                             bridge_ifname, name) < 0)
    9153                 :          0 :                                 return -1;
    9154                 :            :                 }
    9155         [ #  # ]:          0 :                 if (linux_set_iface_flags(drv->global->ioctl_sock, name, 1)) {
    9156                 :          0 :                         wpa_printf(MSG_ERROR, "nl80211: Failed to set WDS STA "
    9157                 :            :                                    "interface %s up", name);
    9158                 :            :                 }
    9159                 :          0 :                 return i802_set_sta_vlan(priv, addr, name, 0);
    9160                 :            :         } else {
    9161         [ #  # ]:          0 :                 if (bridge_ifname)
    9162                 :          0 :                         linux_br_del_if(drv->global->ioctl_sock, bridge_ifname,
    9163                 :            :                                         name);
    9164                 :            : 
    9165                 :          0 :                 i802_set_sta_vlan(priv, addr, bss->ifname, 0);
    9166                 :          0 :                 return wpa_driver_nl80211_if_remove(priv, WPA_IF_AP_VLAN,
    9167                 :            :                                                     name);
    9168                 :            :         }
    9169                 :            : }
    9170                 :            : 
    9171                 :            : 
    9172                 :       2630 : static void handle_eapol(int sock, void *eloop_ctx, void *sock_ctx)
    9173                 :            : {
    9174                 :       2630 :         struct wpa_driver_nl80211_data *drv = eloop_ctx;
    9175                 :            :         struct sockaddr_ll lladdr;
    9176                 :            :         unsigned char buf[3000];
    9177                 :            :         int len;
    9178                 :       2630 :         socklen_t fromlen = sizeof(lladdr);
    9179                 :            : 
    9180                 :       2630 :         len = recvfrom(sock, buf, sizeof(buf), 0,
    9181                 :            :                        (struct sockaddr *)&lladdr, &fromlen);
    9182         [ -  + ]:       2630 :         if (len < 0) {
    9183                 :          0 :                 wpa_printf(MSG_ERROR, "nl80211: EAPOL recv failed: %s",
    9184                 :          0 :                            strerror(errno));
    9185                 :       2630 :                 return;
    9186                 :            :         }
    9187                 :            : 
    9188         [ +  + ]:       2630 :         if (have_ifidx(drv, lladdr.sll_ifindex))
    9189                 :       1107 :                 drv_event_eapol_rx(drv->ctx, lladdr.sll_addr, buf, len);
    9190                 :            : }
    9191                 :            : 
    9192                 :            : 
    9193                 :          0 : static int i802_check_bridge(struct wpa_driver_nl80211_data *drv,
    9194                 :            :                              struct i802_bss *bss,
    9195                 :            :                              const char *brname, const char *ifname)
    9196                 :            : {
    9197                 :            :         int ifindex;
    9198                 :            :         char in_br[IFNAMSIZ];
    9199                 :            : 
    9200                 :          0 :         os_strlcpy(bss->brname, brname, IFNAMSIZ);
    9201                 :          0 :         ifindex = if_nametoindex(brname);
    9202         [ #  # ]:          0 :         if (ifindex == 0) {
    9203                 :            :                 /*
    9204                 :            :                  * Bridge was configured, but the bridge device does
    9205                 :            :                  * not exist. Try to add it now.
    9206                 :            :                  */
    9207         [ #  # ]:          0 :                 if (linux_br_add(drv->global->ioctl_sock, brname) < 0) {
    9208                 :          0 :                         wpa_printf(MSG_ERROR, "nl80211: Failed to add the "
    9209                 :            :                                    "bridge interface %s: %s",
    9210                 :          0 :                                    brname, strerror(errno));
    9211                 :          0 :                         return -1;
    9212                 :            :                 }
    9213                 :          0 :                 bss->added_bridge = 1;
    9214                 :          0 :                 add_ifidx(drv, if_nametoindex(brname));
    9215                 :            :         }
    9216                 :            : 
    9217         [ #  # ]:          0 :         if (linux_br_get(in_br, ifname) == 0) {
    9218         [ #  # ]:          0 :                 if (os_strcmp(in_br, brname) == 0)
    9219                 :          0 :                         return 0; /* already in the bridge */
    9220                 :            : 
    9221                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Removing interface %s from "
    9222                 :            :                            "bridge %s", ifname, in_br);
    9223         [ #  # ]:          0 :                 if (linux_br_del_if(drv->global->ioctl_sock, in_br, ifname) <
    9224                 :            :                     0) {
    9225                 :          0 :                         wpa_printf(MSG_ERROR, "nl80211: Failed to "
    9226                 :            :                                    "remove interface %s from bridge "
    9227                 :            :                                    "%s: %s",
    9228                 :          0 :                                    ifname, brname, strerror(errno));
    9229                 :          0 :                         return -1;
    9230                 :            :                 }
    9231                 :            :         }
    9232                 :            : 
    9233                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Adding interface %s into bridge %s",
    9234                 :            :                    ifname, brname);
    9235         [ #  # ]:          0 :         if (linux_br_add_if(drv->global->ioctl_sock, brname, ifname) < 0) {
    9236                 :          0 :                 wpa_printf(MSG_ERROR, "nl80211: Failed to add interface %s "
    9237                 :            :                            "into bridge %s: %s",
    9238                 :          0 :                            ifname, brname, strerror(errno));
    9239                 :          0 :                 return -1;
    9240                 :            :         }
    9241                 :          0 :         bss->added_if_into_bridge = 1;
    9242                 :            : 
    9243                 :          0 :         return 0;
    9244                 :            : }
    9245                 :            : 
    9246                 :            : 
    9247                 :        203 : static void *i802_init(struct hostapd_data *hapd,
    9248                 :            :                        struct wpa_init_params *params)
    9249                 :            : {
    9250                 :            :         struct wpa_driver_nl80211_data *drv;
    9251                 :            :         struct i802_bss *bss;
    9252                 :            :         size_t i;
    9253                 :            :         char brname[IFNAMSIZ];
    9254                 :            :         int ifindex, br_ifindex;
    9255                 :        203 :         int br_added = 0;
    9256                 :            : 
    9257                 :        203 :         bss = wpa_driver_nl80211_drv_init(hapd, params->ifname,
    9258                 :            :                                           params->global_priv, 1,
    9259                 :            :                                           params->bssid);
    9260         [ -  + ]:        203 :         if (bss == NULL)
    9261                 :          0 :                 return NULL;
    9262                 :            : 
    9263                 :        203 :         drv = bss->drv;
    9264                 :            : 
    9265         [ -  + ]:        203 :         if (linux_br_get(brname, params->ifname) == 0) {
    9266                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Interface %s is in bridge %s",
    9267                 :            :                            params->ifname, brname);
    9268                 :          0 :                 br_ifindex = if_nametoindex(brname);
    9269                 :            :         } else {
    9270                 :        203 :                 brname[0] = '\0';
    9271                 :        203 :                 br_ifindex = 0;
    9272                 :            :         }
    9273                 :            : 
    9274         [ +  + ]:        412 :         for (i = 0; i < params->num_bridge; i++) {
    9275         [ -  + ]:        209 :                 if (params->bridge[i]) {
    9276                 :          0 :                         ifindex = if_nametoindex(params->bridge[i]);
    9277         [ #  # ]:          0 :                         if (ifindex)
    9278                 :          0 :                                 add_ifidx(drv, ifindex);
    9279         [ #  # ]:          0 :                         if (ifindex == br_ifindex)
    9280                 :          0 :                                 br_added = 1;
    9281                 :            :                 }
    9282                 :            :         }
    9283 [ +  - ][ -  + ]:        203 :         if (!br_added && br_ifindex &&
                 [ #  # ]
    9284         [ #  # ]:          0 :             (params->num_bridge == 0 || !params->bridge[0]))
    9285                 :          0 :                 add_ifidx(drv, br_ifindex);
    9286                 :            : 
    9287                 :            :         /* start listening for EAPOL on the default AP interface */
    9288                 :        203 :         add_ifidx(drv, drv->ifindex);
    9289                 :            : 
    9290         [ +  - ]:        203 :         if (params->num_bridge && params->bridge[0] &&
           [ -  +  #  # ]
    9291                 :          0 :             i802_check_bridge(drv, bss, params->bridge[0], params->ifname) < 0)
    9292                 :          0 :                 goto failed;
    9293                 :            : 
    9294                 :        203 :         drv->eapol_sock = socket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_PAE));
    9295         [ -  + ]:        203 :         if (drv->eapol_sock < 0) {
    9296                 :          0 :                 wpa_printf(MSG_ERROR, "nl80211: socket(PF_PACKET, SOCK_DGRAM, ETH_P_PAE) failed: %s",
    9297                 :          0 :                            strerror(errno));
    9298                 :          0 :                 goto failed;
    9299                 :            :         }
    9300                 :            : 
    9301         [ -  + ]:        203 :         if (eloop_register_read_sock(drv->eapol_sock, handle_eapol, drv, NULL))
    9302                 :            :         {
    9303                 :          0 :                 wpa_printf(MSG_INFO, "nl80211: Could not register read socket for eapol");
    9304                 :          0 :                 goto failed;
    9305                 :            :         }
    9306                 :            : 
    9307         [ -  + ]:        203 :         if (linux_get_ifhwaddr(drv->global->ioctl_sock, bss->ifname,
    9308                 :            :                                params->own_addr))
    9309                 :          0 :                 goto failed;
    9310                 :            : 
    9311                 :        203 :         memcpy(bss->addr, params->own_addr, ETH_ALEN);
    9312                 :            : 
    9313                 :        203 :         return bss;
    9314                 :            : 
    9315                 :            : failed:
    9316                 :          0 :         wpa_driver_nl80211_deinit(bss);
    9317                 :        203 :         return NULL;
    9318                 :            : }
    9319                 :            : 
    9320                 :            : 
    9321                 :        203 : static void i802_deinit(void *priv)
    9322                 :            : {
    9323                 :        203 :         struct i802_bss *bss = priv;
    9324                 :        203 :         wpa_driver_nl80211_deinit(bss);
    9325                 :        203 : }
    9326                 :            : 
    9327                 :            : 
    9328                 :         17 : static enum nl80211_iftype wpa_driver_nl80211_if_type(
    9329                 :            :         enum wpa_driver_if_type type)
    9330                 :            : {
    9331   [ -  -  -  +  :         17 :         switch (type) {
                -  -  - ]
    9332                 :            :         case WPA_IF_STATION:
    9333                 :          0 :                 return NL80211_IFTYPE_STATION;
    9334                 :            :         case WPA_IF_P2P_CLIENT:
    9335                 :            :         case WPA_IF_P2P_GROUP:
    9336                 :          0 :                 return NL80211_IFTYPE_P2P_CLIENT;
    9337                 :            :         case WPA_IF_AP_VLAN:
    9338                 :          0 :                 return NL80211_IFTYPE_AP_VLAN;
    9339                 :            :         case WPA_IF_AP_BSS:
    9340                 :         17 :                 return NL80211_IFTYPE_AP;
    9341                 :            :         case WPA_IF_P2P_GO:
    9342                 :          0 :                 return NL80211_IFTYPE_P2P_GO;
    9343                 :            :         case WPA_IF_P2P_DEVICE:
    9344                 :          0 :                 return NL80211_IFTYPE_P2P_DEVICE;
    9345                 :            :         }
    9346                 :         17 :         return -1;
    9347                 :            : }
    9348                 :            : 
    9349                 :            : 
    9350                 :            : #ifdef CONFIG_P2P
    9351                 :            : 
    9352                 :            : static int nl80211_addr_in_use(struct nl80211_global *global, const u8 *addr)
    9353                 :            : {
    9354                 :            :         struct wpa_driver_nl80211_data *drv;
    9355                 :            :         dl_list_for_each(drv, &global->interfaces,
    9356                 :            :                          struct wpa_driver_nl80211_data, list) {
    9357                 :            :                 if (os_memcmp(addr, drv->first_bss->addr, ETH_ALEN) == 0)
    9358                 :            :                         return 1;
    9359                 :            :         }
    9360                 :            :         return 0;
    9361                 :            : }
    9362                 :            : 
    9363                 :            : 
    9364                 :            : static int nl80211_p2p_interface_addr(struct wpa_driver_nl80211_data *drv,
    9365                 :            :                                       u8 *new_addr)
    9366                 :            : {
    9367                 :            :         unsigned int idx;
    9368                 :            : 
    9369                 :            :         if (!drv->global)
    9370                 :            :                 return -1;
    9371                 :            : 
    9372                 :            :         os_memcpy(new_addr, drv->first_bss->addr, ETH_ALEN);
    9373                 :            :         for (idx = 0; idx < 64; idx++) {
    9374                 :            :                 new_addr[0] = drv->first_bss->addr[0] | 0x02;
    9375                 :            :                 new_addr[0] ^= idx << 2;
    9376                 :            :                 if (!nl80211_addr_in_use(drv->global, new_addr))
    9377                 :            :                         break;
    9378                 :            :         }
    9379                 :            :         if (idx == 64)
    9380                 :            :                 return -1;
    9381                 :            : 
    9382                 :            :         wpa_printf(MSG_DEBUG, "nl80211: Assigned new P2P Interface Address "
    9383                 :            :                    MACSTR, MAC2STR(new_addr));
    9384                 :            : 
    9385                 :            :         return 0;
    9386                 :            : }
    9387                 :            : 
    9388                 :            : #endif /* CONFIG_P2P */
    9389                 :            : 
    9390                 :            : 
    9391                 :            : struct wdev_info {
    9392                 :            :         u64 wdev_id;
    9393                 :            :         int wdev_id_set;
    9394                 :            :         u8 macaddr[ETH_ALEN];
    9395                 :            : };
    9396                 :            : 
    9397                 :          0 : static int nl80211_wdev_handler(struct nl_msg *msg, void *arg)
    9398                 :            : {
    9399                 :          0 :         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
    9400                 :            :         struct nlattr *tb[NL80211_ATTR_MAX + 1];
    9401                 :          0 :         struct wdev_info *wi = arg;
    9402                 :            : 
    9403                 :          0 :         nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
    9404                 :            :                   genlmsg_attrlen(gnlh, 0), NULL);
    9405         [ #  # ]:          0 :         if (tb[NL80211_ATTR_WDEV]) {
    9406                 :          0 :                 wi->wdev_id = nla_get_u64(tb[NL80211_ATTR_WDEV]);
    9407                 :          0 :                 wi->wdev_id_set = 1;
    9408                 :            :         }
    9409                 :            : 
    9410         [ #  # ]:          0 :         if (tb[NL80211_ATTR_MAC])
    9411                 :          0 :                 os_memcpy(wi->macaddr, nla_data(tb[NL80211_ATTR_MAC]),
    9412                 :            :                           ETH_ALEN);
    9413                 :            : 
    9414                 :          0 :         return NL_SKIP;
    9415                 :            : }
    9416                 :            : 
    9417                 :            : 
    9418                 :         17 : static int wpa_driver_nl80211_if_add(void *priv, enum wpa_driver_if_type type,
    9419                 :            :                                      const char *ifname, const u8 *addr,
    9420                 :            :                                      void *bss_ctx, void **drv_priv,
    9421                 :            :                                      char *force_ifname, u8 *if_addr,
    9422                 :            :                                      const char *bridge, int use_existing)
    9423                 :            : {
    9424                 :            :         enum nl80211_iftype nlmode;
    9425                 :         17 :         struct i802_bss *bss = priv;
    9426                 :         17 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    9427                 :            :         int ifidx;
    9428                 :         17 :         int added = 1;
    9429                 :            : 
    9430         [ +  - ]:         17 :         if (addr)
    9431                 :         17 :                 os_memcpy(if_addr, addr, ETH_ALEN);
    9432                 :         17 :         nlmode = wpa_driver_nl80211_if_type(type);
    9433         [ -  + ]:         17 :         if (nlmode == NL80211_IFTYPE_P2P_DEVICE) {
    9434                 :            :                 struct wdev_info p2pdev_info;
    9435                 :            : 
    9436                 :          0 :                 os_memset(&p2pdev_info, 0, sizeof(p2pdev_info));
    9437                 :          0 :                 ifidx = nl80211_create_iface(drv, ifname, nlmode, addr,
    9438                 :            :                                              0, nl80211_wdev_handler,
    9439                 :            :                                              &p2pdev_info, use_existing);
    9440 [ #  # ][ #  # ]:          0 :                 if (!p2pdev_info.wdev_id_set || ifidx != 0) {
    9441                 :          0 :                         wpa_printf(MSG_ERROR, "nl80211: Failed to create a P2P Device interface %s",
    9442                 :            :                                    ifname);
    9443                 :          0 :                         return -1;
    9444                 :            :                 }
    9445                 :            : 
    9446                 :          0 :                 drv->global->if_add_wdevid = p2pdev_info.wdev_id;
    9447                 :          0 :                 drv->global->if_add_wdevid_set = p2pdev_info.wdev_id_set;
    9448         [ #  # ]:          0 :                 if (!is_zero_ether_addr(p2pdev_info.macaddr))
    9449                 :          0 :                         os_memcpy(if_addr, p2pdev_info.macaddr, ETH_ALEN);
    9450                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: New P2P Device interface %s (0x%llx) created",
    9451                 :            :                            ifname,
    9452                 :          0 :                            (long long unsigned int) p2pdev_info.wdev_id);
    9453                 :            :         } else {
    9454                 :         17 :                 ifidx = nl80211_create_iface(drv, ifname, nlmode, addr,
    9455                 :            :                                              0, NULL, NULL, use_existing);
    9456 [ +  + ][ -  + ]:         17 :                 if (use_existing && ifidx == -ENFILE) {
    9457                 :          0 :                         added = 0;
    9458                 :          0 :                         ifidx = if_nametoindex(ifname);
    9459         [ -  + ]:         17 :                 } else if (ifidx < 0) {
    9460                 :          0 :                         return -1;
    9461                 :            :                 }
    9462                 :            :         }
    9463                 :            : 
    9464         [ -  + ]:         17 :         if (!addr) {
    9465         [ #  # ]:          0 :                 if (drv->nlmode == NL80211_IFTYPE_P2P_DEVICE)
    9466                 :          0 :                         os_memcpy(if_addr, bss->addr, ETH_ALEN);
    9467         [ #  # ]:          0 :                 else if (linux_get_ifhwaddr(drv->global->ioctl_sock,
    9468                 :          0 :                                             bss->ifname, if_addr) < 0) {
    9469         [ #  # ]:          0 :                         if (added)
    9470                 :          0 :                                 nl80211_remove_iface(drv, ifidx);
    9471                 :          0 :                         return -1;
    9472                 :            :                 }
    9473                 :            :         }
    9474                 :            : 
    9475                 :            : #ifdef CONFIG_P2P
    9476                 :            :         if (!addr &&
    9477                 :            :             (type == WPA_IF_P2P_CLIENT || type == WPA_IF_P2P_GROUP ||
    9478                 :            :              type == WPA_IF_P2P_GO)) {
    9479                 :            :                 /* Enforce unique P2P Interface Address */
    9480                 :            :                 u8 new_addr[ETH_ALEN];
    9481                 :            : 
    9482                 :            :                 if (linux_get_ifhwaddr(drv->global->ioctl_sock, ifname,
    9483                 :            :                                        new_addr) < 0) {
    9484                 :            :                         nl80211_remove_iface(drv, ifidx);
    9485                 :            :                         return -1;
    9486                 :            :                 }
    9487                 :            :                 if (nl80211_addr_in_use(drv->global, new_addr)) {
    9488                 :            :                         wpa_printf(MSG_DEBUG, "nl80211: Allocate new address "
    9489                 :            :                                    "for P2P group interface");
    9490                 :            :                         if (nl80211_p2p_interface_addr(drv, new_addr) < 0) {
    9491                 :            :                                 nl80211_remove_iface(drv, ifidx);
    9492                 :            :                                 return -1;
    9493                 :            :                         }
    9494                 :            :                         if (linux_set_ifhwaddr(drv->global->ioctl_sock, ifname,
    9495                 :            :                                                new_addr) < 0) {
    9496                 :            :                                 nl80211_remove_iface(drv, ifidx);
    9497                 :            :                                 return -1;
    9498                 :            :                         }
    9499                 :            :                 }
    9500                 :            :                 os_memcpy(if_addr, new_addr, ETH_ALEN);
    9501                 :            :         }
    9502                 :            : #endif /* CONFIG_P2P */
    9503                 :            : 
    9504         [ +  - ]:         17 :         if (type == WPA_IF_AP_BSS) {
    9505                 :         17 :                 struct i802_bss *new_bss = os_zalloc(sizeof(*new_bss));
    9506         [ -  + ]:         17 :                 if (new_bss == NULL) {
    9507         [ #  # ]:          0 :                         if (added)
    9508                 :          0 :                                 nl80211_remove_iface(drv, ifidx);
    9509                 :          0 :                         return -1;
    9510                 :            :                 }
    9511                 :            : 
    9512   [ -  +  #  # ]:         17 :                 if (bridge &&
    9513                 :          0 :                     i802_check_bridge(drv, new_bss, bridge, ifname) < 0) {
    9514                 :          0 :                         wpa_printf(MSG_ERROR, "nl80211: Failed to add the new "
    9515                 :            :                                    "interface %s to a bridge %s",
    9516                 :            :                                    ifname, bridge);
    9517         [ #  # ]:          0 :                         if (added)
    9518                 :          0 :                                 nl80211_remove_iface(drv, ifidx);
    9519                 :          0 :                         os_free(new_bss);
    9520                 :          0 :                         return -1;
    9521                 :            :                 }
    9522                 :            : 
    9523         [ -  + ]:         17 :                 if (linux_set_iface_flags(drv->global->ioctl_sock, ifname, 1))
    9524                 :            :                 {
    9525                 :          0 :                         nl80211_remove_iface(drv, ifidx);
    9526                 :          0 :                         os_free(new_bss);
    9527                 :          0 :                         return -1;
    9528                 :            :                 }
    9529                 :         17 :                 os_strlcpy(new_bss->ifname, ifname, IFNAMSIZ);
    9530                 :         17 :                 os_memcpy(new_bss->addr, if_addr, ETH_ALEN);
    9531                 :         17 :                 new_bss->ifindex = ifidx;
    9532                 :         17 :                 new_bss->drv = drv;
    9533                 :         17 :                 new_bss->next = drv->first_bss->next;
    9534                 :         17 :                 new_bss->freq = drv->first_bss->freq;
    9535                 :         17 :                 new_bss->ctx = bss_ctx;
    9536                 :         17 :                 new_bss->added_if = added;
    9537                 :         17 :                 drv->first_bss->next = new_bss;
    9538         [ +  - ]:         17 :                 if (drv_priv)
    9539                 :         17 :                         *drv_priv = new_bss;
    9540                 :         17 :                 nl80211_init_bss(new_bss);
    9541                 :            : 
    9542                 :            :                 /* Subscribe management frames for this WPA_IF_AP_BSS */
    9543         [ -  + ]:         17 :                 if (nl80211_setup_ap(new_bss))
    9544                 :          0 :                         return -1;
    9545                 :            :         }
    9546                 :            : 
    9547         [ +  - ]:         17 :         if (drv->global)
    9548                 :         17 :                 drv->global->if_add_ifindex = ifidx;
    9549                 :            : 
    9550                 :         17 :         return 0;
    9551                 :            : }
    9552                 :            : 
    9553                 :            : 
    9554                 :         17 : static int wpa_driver_nl80211_if_remove(struct i802_bss *bss,
    9555                 :            :                                         enum wpa_driver_if_type type,
    9556                 :            :                                         const char *ifname)
    9557                 :            : {
    9558                 :         17 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    9559                 :         17 :         int ifindex = if_nametoindex(ifname);
    9560                 :            : 
    9561                 :         17 :         wpa_printf(MSG_DEBUG, "nl80211: %s(type=%d ifname=%s) ifindex=%d added_if=%d",
    9562                 :         17 :                    __func__, type, ifname, ifindex, bss->added_if);
    9563 [ +  - ][ -  + ]:         17 :         if (ifindex > 0 && (bss->added_if || bss->ifindex != ifindex))
                 [ #  # ]
    9564                 :         17 :                 nl80211_remove_iface(drv, ifindex);
    9565                 :            : 
    9566         [ -  + ]:         17 :         if (type != WPA_IF_AP_BSS)
    9567                 :          0 :                 return 0;
    9568                 :            : 
    9569         [ -  + ]:         17 :         if (bss->added_if_into_bridge) {
    9570         [ #  # ]:          0 :                 if (linux_br_del_if(drv->global->ioctl_sock, bss->brname,
    9571                 :          0 :                                     bss->ifname) < 0)
    9572                 :          0 :                         wpa_printf(MSG_INFO, "nl80211: Failed to remove "
    9573                 :            :                                    "interface %s from bridge %s: %s",
    9574                 :          0 :                                    bss->ifname, bss->brname, strerror(errno));
    9575                 :            :         }
    9576         [ -  + ]:         17 :         if (bss->added_bridge) {
    9577         [ #  # ]:          0 :                 if (linux_br_del(drv->global->ioctl_sock, bss->brname) < 0)
    9578                 :          0 :                         wpa_printf(MSG_INFO, "nl80211: Failed to remove "
    9579                 :            :                                    "bridge %s: %s",
    9580                 :          0 :                                    bss->brname, strerror(errno));
    9581                 :            :         }
    9582                 :            : 
    9583         [ +  - ]:         17 :         if (bss != drv->first_bss) {
    9584                 :            :                 struct i802_bss *tbss;
    9585                 :            : 
    9586                 :         17 :                 wpa_printf(MSG_DEBUG, "nl80211: Not the first BSS - remove it");
    9587         [ +  - ]:         20 :                 for (tbss = drv->first_bss; tbss; tbss = tbss->next) {
    9588         [ +  + ]:         20 :                         if (tbss->next == bss) {
    9589                 :         17 :                                 tbss->next = bss->next;
    9590                 :            :                                 /* Unsubscribe management frames */
    9591                 :         17 :                                 nl80211_teardown_ap(bss);
    9592                 :         17 :                                 nl80211_destroy_bss(bss);
    9593                 :         17 :                                 os_free(bss);
    9594                 :         17 :                                 bss = NULL;
    9595                 :         17 :                                 break;
    9596                 :            :                         }
    9597                 :            :                 }
    9598         [ -  + ]:         17 :                 if (bss)
    9599                 :          0 :                         wpa_printf(MSG_INFO, "nl80211: %s - could not find "
    9600                 :            :                                    "BSS %p in the list", __func__, bss);
    9601                 :            :         } else {
    9602                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: First BSS - reassign context");
    9603                 :          0 :                 nl80211_teardown_ap(bss);
    9604 [ #  # ][ #  # ]:          0 :                 if (!bss->added_if && !drv->first_bss->next)
    9605                 :          0 :                         wpa_driver_nl80211_del_beacon(drv);
    9606                 :          0 :                 nl80211_destroy_bss(bss);
    9607         [ #  # ]:          0 :                 if (!bss->added_if)
    9608                 :          0 :                         i802_set_iface_flags(bss, 0);
    9609         [ #  # ]:          0 :                 if (drv->first_bss->next) {
    9610                 :          0 :                         drv->first_bss = drv->first_bss->next;
    9611                 :          0 :                         drv->ctx = drv->first_bss->ctx;
    9612                 :          0 :                         os_free(bss);
    9613                 :            :                 } else {
    9614                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: No second BSS to reassign context to");
    9615                 :            :                 }
    9616                 :            :         }
    9617                 :            : 
    9618                 :         17 :         return 0;
    9619                 :            : }
    9620                 :            : 
    9621                 :            : 
    9622                 :       1033 : static int cookie_handler(struct nl_msg *msg, void *arg)
    9623                 :            : {
    9624                 :            :         struct nlattr *tb[NL80211_ATTR_MAX + 1];
    9625                 :       1033 :         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
    9626                 :       1033 :         u64 *cookie = arg;
    9627                 :       1033 :         nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
    9628                 :            :                   genlmsg_attrlen(gnlh, 0), NULL);
    9629         [ +  - ]:       1033 :         if (tb[NL80211_ATTR_COOKIE])
    9630                 :       1033 :                 *cookie = nla_get_u64(tb[NL80211_ATTR_COOKIE]);
    9631                 :       1033 :         return NL_SKIP;
    9632                 :            : }
    9633                 :            : 
    9634                 :            : 
    9635                 :       1932 : static int nl80211_send_frame_cmd(struct i802_bss *bss,
    9636                 :            :                                   unsigned int freq, unsigned int wait,
    9637                 :            :                                   const u8 *buf, size_t buf_len,
    9638                 :            :                                   u64 *cookie_out, int no_cck, int no_ack,
    9639                 :            :                                   int offchanok)
    9640                 :            : {
    9641                 :       1932 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    9642                 :            :         struct nl_msg *msg;
    9643                 :            :         u64 cookie;
    9644                 :       1932 :         int ret = -1;
    9645                 :            : 
    9646                 :       1932 :         msg = nlmsg_alloc();
    9647         [ -  + ]:       1932 :         if (!msg)
    9648                 :          0 :                 return -1;
    9649                 :            : 
    9650                 :       1932 :         wpa_printf(MSG_MSGDUMP, "nl80211: CMD_FRAME freq=%u wait=%u no_cck=%d "
    9651                 :            :                    "no_ack=%d offchanok=%d",
    9652                 :            :                    freq, wait, no_cck, no_ack, offchanok);
    9653                 :       1932 :         wpa_hexdump(MSG_MSGDUMP, "CMD_FRAME", buf, buf_len);
    9654                 :       1932 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_FRAME);
    9655                 :            : 
    9656         [ -  + ]:       1932 :         if (nl80211_set_iface_id(msg, bss) < 0)
    9657                 :          0 :                 goto nla_put_failure;
    9658         [ +  + ]:       1932 :         if (freq)
    9659         [ +  - ]:       1922 :                 NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq);
    9660         [ -  + ]:       1932 :         if (wait)
    9661         [ #  # ]:          0 :                 NLA_PUT_U32(msg, NL80211_ATTR_DURATION, wait);
    9662 [ +  + ][ +  - ]:       1932 :         if (offchanok && (drv->capa.flags & WPA_DRIVER_FLAGS_OFFCHANNEL_TX))
    9663         [ +  - ]:         76 :                 NLA_PUT_FLAG(msg, NL80211_ATTR_OFFCHANNEL_TX_OK);
    9664         [ -  + ]:       1932 :         if (no_cck)
    9665         [ #  # ]:          0 :                 NLA_PUT_FLAG(msg, NL80211_ATTR_TX_NO_CCK_RATE);
    9666         [ +  + ]:       1932 :         if (no_ack)
    9667         [ +  - ]:        679 :                 NLA_PUT_FLAG(msg, NL80211_ATTR_DONT_WAIT_FOR_ACK);
    9668                 :            : 
    9669         [ +  - ]:       1932 :         NLA_PUT(msg, NL80211_ATTR_FRAME, buf_len, buf);
    9670                 :            : 
    9671                 :       1932 :         cookie = 0;
    9672                 :       1932 :         ret = send_and_recv_msgs(drv, msg, cookie_handler, &cookie);
    9673                 :       1932 :         msg = NULL;
    9674         [ +  + ]:       1932 :         if (ret) {
    9675                 :        223 :                 wpa_printf(MSG_DEBUG, "nl80211: Frame command failed: ret=%d "
    9676                 :            :                            "(%s) (freq=%u wait=%u)", ret, strerror(-ret),
    9677                 :            :                            freq, wait);
    9678                 :        223 :                 goto nla_put_failure;
    9679                 :            :         }
    9680         [ +  + ]:       1709 :         wpa_printf(MSG_MSGDUMP, "nl80211: Frame TX command accepted%s; "
    9681                 :            :                    "cookie 0x%llx", no_ack ? " (no ACK)" : "",
    9682                 :            :                    (long long unsigned int) cookie);
    9683                 :            : 
    9684         [ +  - ]:       1709 :         if (cookie_out)
    9685         [ +  + ]:       1709 :                 *cookie_out = no_ack ? (u64) -1 : cookie;
    9686                 :            : 
    9687                 :            : nla_put_failure:
    9688                 :       1932 :         nlmsg_free(msg);
    9689                 :       1932 :         return ret;
    9690                 :            : }
    9691                 :            : 
    9692                 :            : 
    9693                 :         76 : static int wpa_driver_nl80211_send_action(struct i802_bss *bss,
    9694                 :            :                                           unsigned int freq,
    9695                 :            :                                           unsigned int wait_time,
    9696                 :            :                                           const u8 *dst, const u8 *src,
    9697                 :            :                                           const u8 *bssid,
    9698                 :            :                                           const u8 *data, size_t data_len,
    9699                 :            :                                           int no_cck)
    9700                 :            : {
    9701                 :         76 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    9702                 :         76 :         int ret = -1;
    9703                 :            :         u8 *buf;
    9704                 :            :         struct ieee80211_hdr *hdr;
    9705                 :            : 
    9706                 :         76 :         wpa_printf(MSG_DEBUG, "nl80211: Send Action frame (ifindex=%d, "
    9707                 :            :                    "freq=%u MHz wait=%d ms no_cck=%d)",
    9708                 :            :                    drv->ifindex, freq, wait_time, no_cck);
    9709                 :            : 
    9710                 :         76 :         buf = os_zalloc(24 + data_len);
    9711         [ -  + ]:         76 :         if (buf == NULL)
    9712                 :          0 :                 return ret;
    9713                 :         76 :         os_memcpy(buf + 24, data, data_len);
    9714                 :         76 :         hdr = (struct ieee80211_hdr *) buf;
    9715                 :         76 :         hdr->frame_control =
    9716                 :            :                 IEEE80211_FC(WLAN_FC_TYPE_MGMT, WLAN_FC_STYPE_ACTION);
    9717                 :         76 :         os_memcpy(hdr->addr1, dst, ETH_ALEN);
    9718                 :         76 :         os_memcpy(hdr->addr2, src, ETH_ALEN);
    9719                 :         76 :         os_memcpy(hdr->addr3, bssid, ETH_ALEN);
    9720                 :            : 
    9721 [ +  - ][ +  - ]:         76 :         if (is_ap_interface(drv->nlmode) &&
    9722         [ -  + ]:         76 :             (!(drv->capa.flags & WPA_DRIVER_FLAGS_OFFCHANNEL_TX) ||
    9723 [ #  # ][ #  # ]:          0 :              (int) freq == bss->freq || drv->device_ap_sme ||
    9724                 :          0 :              !drv->use_monitor))
    9725                 :         76 :                 ret = wpa_driver_nl80211_send_mlme(bss, buf, 24 + data_len,
    9726                 :            :                                                    0, freq, no_cck, 1,
    9727                 :            :                                                    wait_time);
    9728                 :            :         else
    9729                 :          0 :                 ret = nl80211_send_frame_cmd(bss, freq, wait_time, buf,
    9730                 :            :                                              24 + data_len,
    9731                 :            :                                              &drv->send_action_cookie,
    9732                 :            :                                              no_cck, 0, 1);
    9733                 :            : 
    9734                 :         76 :         os_free(buf);
    9735                 :         76 :         return ret;
    9736                 :            : }
    9737                 :            : 
    9738                 :            : 
    9739                 :          0 : static void wpa_driver_nl80211_send_action_cancel_wait(void *priv)
    9740                 :            : {
    9741                 :          0 :         struct i802_bss *bss = priv;
    9742                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    9743                 :            :         struct nl_msg *msg;
    9744                 :            :         int ret;
    9745                 :            : 
    9746                 :          0 :         msg = nlmsg_alloc();
    9747         [ #  # ]:          0 :         if (!msg)
    9748                 :          0 :                 return;
    9749                 :            : 
    9750                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Cancel TX frame wait: cookie=0x%llx",
    9751                 :          0 :                    (long long unsigned int) drv->send_action_cookie);
    9752                 :          0 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_FRAME_WAIT_CANCEL);
    9753                 :            : 
    9754         [ #  # ]:          0 :         if (nl80211_set_iface_id(msg, bss) < 0)
    9755                 :          0 :                 goto nla_put_failure;
    9756         [ #  # ]:          0 :         NLA_PUT_U64(msg, NL80211_ATTR_COOKIE, drv->send_action_cookie);
    9757                 :            : 
    9758                 :          0 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    9759                 :          0 :         msg = NULL;
    9760         [ #  # ]:          0 :         if (ret)
    9761                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: wait cancel failed: ret=%d "
    9762                 :            :                            "(%s)", ret, strerror(-ret));
    9763                 :            : 
    9764                 :            :  nla_put_failure:
    9765                 :          0 :         nlmsg_free(msg);
    9766                 :            : }
    9767                 :            : 
    9768                 :            : 
    9769                 :          0 : static int wpa_driver_nl80211_remain_on_channel(void *priv, unsigned int freq,
    9770                 :            :                                                 unsigned int duration)
    9771                 :            : {
    9772                 :          0 :         struct i802_bss *bss = priv;
    9773                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    9774                 :            :         struct nl_msg *msg;
    9775                 :            :         int ret;
    9776                 :            :         u64 cookie;
    9777                 :            : 
    9778                 :          0 :         msg = nlmsg_alloc();
    9779         [ #  # ]:          0 :         if (!msg)
    9780                 :          0 :                 return -1;
    9781                 :            : 
    9782                 :          0 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_REMAIN_ON_CHANNEL);
    9783                 :            : 
    9784         [ #  # ]:          0 :         if (nl80211_set_iface_id(msg, bss) < 0)
    9785                 :          0 :                 goto nla_put_failure;
    9786                 :            : 
    9787         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq);
    9788         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_DURATION, duration);
    9789                 :            : 
    9790                 :          0 :         cookie = 0;
    9791                 :          0 :         ret = send_and_recv_msgs(drv, msg, cookie_handler, &cookie);
    9792                 :          0 :         msg = NULL;
    9793         [ #  # ]:          0 :         if (ret == 0) {
    9794                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Remain-on-channel cookie "
    9795                 :            :                            "0x%llx for freq=%u MHz duration=%u",
    9796                 :            :                            (long long unsigned int) cookie, freq, duration);
    9797                 :          0 :                 drv->remain_on_chan_cookie = cookie;
    9798                 :          0 :                 drv->pending_remain_on_chan = 1;
    9799                 :          0 :                 return 0;
    9800                 :            :         }
    9801                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Failed to request remain-on-channel "
    9802                 :            :                    "(freq=%d duration=%u): %d (%s)",
    9803                 :            :                    freq, duration, ret, strerror(-ret));
    9804                 :            : nla_put_failure:
    9805                 :          0 :         nlmsg_free(msg);
    9806                 :          0 :         return -1;
    9807                 :            : }
    9808                 :            : 
    9809                 :            : 
    9810                 :          0 : static int wpa_driver_nl80211_cancel_remain_on_channel(void *priv)
    9811                 :            : {
    9812                 :          0 :         struct i802_bss *bss = priv;
    9813                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    9814                 :            :         struct nl_msg *msg;
    9815                 :            :         int ret;
    9816                 :            : 
    9817         [ #  # ]:          0 :         if (!drv->pending_remain_on_chan) {
    9818                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: No pending remain-on-channel "
    9819                 :            :                            "to cancel");
    9820                 :          0 :                 return -1;
    9821                 :            :         }
    9822                 :            : 
    9823                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Cancel remain-on-channel with cookie "
    9824                 :            :                    "0x%llx",
    9825                 :          0 :                    (long long unsigned int) drv->remain_on_chan_cookie);
    9826                 :            : 
    9827                 :          0 :         msg = nlmsg_alloc();
    9828         [ #  # ]:          0 :         if (!msg)
    9829                 :          0 :                 return -1;
    9830                 :            : 
    9831                 :          0 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_CANCEL_REMAIN_ON_CHANNEL);
    9832                 :            : 
    9833         [ #  # ]:          0 :         if (nl80211_set_iface_id(msg, bss) < 0)
    9834                 :          0 :                 goto nla_put_failure;
    9835                 :            : 
    9836         [ #  # ]:          0 :         NLA_PUT_U64(msg, NL80211_ATTR_COOKIE, drv->remain_on_chan_cookie);
    9837                 :            : 
    9838                 :          0 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    9839                 :          0 :         msg = NULL;
    9840         [ #  # ]:          0 :         if (ret == 0)
    9841                 :          0 :                 return 0;
    9842                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Failed to cancel remain-on-channel: "
    9843                 :            :                    "%d (%s)", ret, strerror(-ret));
    9844                 :            : nla_put_failure:
    9845                 :          0 :         nlmsg_free(msg);
    9846                 :          0 :         return -1;
    9847                 :            : }
    9848                 :            : 
    9849                 :            : 
    9850                 :        220 : static int wpa_driver_nl80211_probe_req_report(struct i802_bss *bss, int report)
    9851                 :            : {
    9852                 :        220 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    9853                 :            : 
    9854         [ +  - ]:        220 :         if (!report) {
    9855         [ -  + ]:        220 :                 if (bss->nl_preq && drv->device_ap_sme &&
           [ #  #  #  # ]
    9856                 :          0 :                     is_ap_interface(drv->nlmode)) {
    9857                 :            :                         /*
    9858                 :            :                          * Do not disable Probe Request reporting that was
    9859                 :            :                          * enabled in nl80211_setup_ap().
    9860                 :            :                          */
    9861                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Skip disabling of "
    9862                 :            :                                    "Probe Request reporting nl_preq=%p while "
    9863                 :            :                                    "in AP mode", bss->nl_preq);
    9864         [ -  + ]:        220 :                 } else if (bss->nl_preq) {
    9865                 :          0 :                         wpa_printf(MSG_DEBUG, "nl80211: Disable Probe Request "
    9866                 :            :                                    "reporting nl_preq=%p", bss->nl_preq);
    9867                 :          0 :                         nl80211_destroy_eloop_handle(&bss->nl_preq);
    9868                 :            :                 }
    9869                 :        220 :                 return 0;
    9870                 :            :         }
    9871                 :            : 
    9872         [ #  # ]:          0 :         if (bss->nl_preq) {
    9873                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Probe Request reporting "
    9874                 :            :                            "already on! nl_preq=%p", bss->nl_preq);
    9875                 :          0 :                 return 0;
    9876                 :            :         }
    9877                 :            : 
    9878                 :          0 :         bss->nl_preq = nl_create_handle(drv->global->nl_cb, "preq");
    9879         [ #  # ]:          0 :         if (bss->nl_preq == NULL)
    9880                 :          0 :                 return -1;
    9881                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Enable Probe Request "
    9882                 :            :                    "reporting nl_preq=%p", bss->nl_preq);
    9883                 :            : 
    9884         [ #  # ]:          0 :         if (nl80211_register_frame(bss, bss->nl_preq,
    9885                 :            :                                    (WLAN_FC_TYPE_MGMT << 2) |
    9886                 :            :                                    (WLAN_FC_STYPE_PROBE_REQ << 4),
    9887                 :            :                                    NULL, 0) < 0)
    9888                 :          0 :                 goto out_err;
    9889                 :            : 
    9890                 :          0 :         nl80211_register_eloop_read(&bss->nl_preq,
    9891                 :            :                                     wpa_driver_nl80211_event_receive,
    9892                 :          0 :                                     bss->nl_cb);
    9893                 :            : 
    9894                 :          0 :         return 0;
    9895                 :            : 
    9896                 :            :  out_err:
    9897                 :          0 :         nl_destroy_handles(&bss->nl_preq);
    9898                 :        220 :         return -1;
    9899                 :            : }
    9900                 :            : 
    9901                 :            : 
    9902                 :          0 : static int nl80211_disable_11b_rates(struct wpa_driver_nl80211_data *drv,
    9903                 :            :                                      int ifindex, int disabled)
    9904                 :            : {
    9905                 :            :         struct nl_msg *msg;
    9906                 :            :         struct nlattr *bands, *band;
    9907                 :            :         int ret;
    9908                 :            : 
    9909                 :          0 :         msg = nlmsg_alloc();
    9910         [ #  # ]:          0 :         if (!msg)
    9911                 :          0 :                 return -1;
    9912                 :            : 
    9913                 :          0 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_TX_BITRATE_MASK);
    9914         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, ifindex);
    9915                 :            : 
    9916                 :          0 :         bands = nla_nest_start(msg, NL80211_ATTR_TX_RATES);
    9917         [ #  # ]:          0 :         if (!bands)
    9918                 :          0 :                 goto nla_put_failure;
    9919                 :            : 
    9920                 :            :         /*
    9921                 :            :          * Disable 2 GHz rates 1, 2, 5.5, 11 Mbps by masking out everything
    9922                 :            :          * else apart from 6, 9, 12, 18, 24, 36, 48, 54 Mbps from non-MCS
    9923                 :            :          * rates. All 5 GHz rates are left enabled.
    9924                 :            :          */
    9925                 :          0 :         band = nla_nest_start(msg, NL80211_BAND_2GHZ);
    9926         [ #  # ]:          0 :         if (!band)
    9927                 :          0 :                 goto nla_put_failure;
    9928         [ #  # ]:          0 :         if (disabled) {
    9929         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_TXRATE_LEGACY, 8,
    9930                 :            :                         "\x0c\x12\x18\x24\x30\x48\x60\x6c");
    9931                 :            :         }
    9932                 :          0 :         nla_nest_end(msg, band);
    9933                 :            : 
    9934                 :          0 :         nla_nest_end(msg, bands);
    9935                 :            : 
    9936                 :          0 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
    9937                 :          0 :         msg = NULL;
    9938         [ #  # ]:          0 :         if (ret) {
    9939                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Set TX rates failed: ret=%d "
    9940                 :            :                            "(%s)", ret, strerror(-ret));
    9941                 :            :         } else
    9942                 :          0 :                 drv->disabled_11b_rates = disabled;
    9943                 :            : 
    9944                 :          0 :         return ret;
    9945                 :            : 
    9946                 :            : nla_put_failure:
    9947                 :          0 :         nlmsg_free(msg);
    9948                 :          0 :         return -1;
    9949                 :            : }
    9950                 :            : 
    9951                 :            : 
    9952                 :          0 : static int wpa_driver_nl80211_deinit_ap(void *priv)
    9953                 :            : {
    9954                 :          0 :         struct i802_bss *bss = priv;
    9955                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    9956         [ #  # ]:          0 :         if (!is_ap_interface(drv->nlmode))
    9957                 :          0 :                 return -1;
    9958                 :          0 :         wpa_driver_nl80211_del_beacon(drv);
    9959                 :            : 
    9960                 :            :         /*
    9961                 :            :          * If the P2P GO interface was dynamically added, then it is
    9962                 :            :          * possible that the interface change to station is not possible.
    9963                 :            :          */
    9964 [ #  # ][ #  # ]:          0 :         if (drv->nlmode == NL80211_IFTYPE_P2P_GO && bss->if_dynamic)
    9965                 :          0 :                 return 0;
    9966                 :            : 
    9967                 :          0 :         return wpa_driver_nl80211_set_mode(priv, NL80211_IFTYPE_STATION);
    9968                 :            : }
    9969                 :            : 
    9970                 :            : 
    9971                 :          0 : static int wpa_driver_nl80211_stop_ap(void *priv)
    9972                 :            : {
    9973                 :          0 :         struct i802_bss *bss = priv;
    9974                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    9975         [ #  # ]:          0 :         if (!is_ap_interface(drv->nlmode))
    9976                 :          0 :                 return -1;
    9977                 :          0 :         wpa_driver_nl80211_del_beacon(drv);
    9978                 :          0 :         bss->beacon_set = 0;
    9979                 :          0 :         return 0;
    9980                 :            : }
    9981                 :            : 
    9982                 :            : 
    9983                 :          0 : static int wpa_driver_nl80211_deinit_p2p_cli(void *priv)
    9984                 :            : {
    9985                 :          0 :         struct i802_bss *bss = priv;
    9986                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
    9987         [ #  # ]:          0 :         if (drv->nlmode != NL80211_IFTYPE_P2P_CLIENT)
    9988                 :          0 :                 return -1;
    9989                 :            : 
    9990                 :            :         /*
    9991                 :            :          * If the P2P Client interface was dynamically added, then it is
    9992                 :            :          * possible that the interface change to station is not possible.
    9993                 :            :          */
    9994         [ #  # ]:          0 :         if (bss->if_dynamic)
    9995                 :          0 :                 return 0;
    9996                 :            : 
    9997                 :          0 :         return wpa_driver_nl80211_set_mode(priv, NL80211_IFTYPE_STATION);
    9998                 :            : }
    9999                 :            : 
   10000                 :            : 
   10001                 :          0 : static void wpa_driver_nl80211_resume(void *priv)
   10002                 :            : {
   10003                 :          0 :         struct i802_bss *bss = priv;
   10004                 :            : 
   10005         [ #  # ]:          0 :         if (i802_set_iface_flags(bss, 1))
   10006                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Failed to set interface up on resume event");
   10007                 :          0 : }
   10008                 :            : 
   10009                 :            : 
   10010                 :          0 : static int nl80211_send_ft_action(void *priv, u8 action, const u8 *target_ap,
   10011                 :            :                                   const u8 *ies, size_t ies_len)
   10012                 :            : {
   10013                 :          0 :         struct i802_bss *bss = priv;
   10014                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
   10015                 :            :         int ret;
   10016                 :            :         u8 *data, *pos;
   10017                 :            :         size_t data_len;
   10018                 :          0 :         const u8 *own_addr = bss->addr;
   10019                 :            : 
   10020         [ #  # ]:          0 :         if (action != 1) {
   10021                 :          0 :                 wpa_printf(MSG_ERROR, "nl80211: Unsupported send_ft_action "
   10022                 :            :                            "action %d", action);
   10023                 :          0 :                 return -1;
   10024                 :            :         }
   10025                 :            : 
   10026                 :            :         /*
   10027                 :            :          * Action frame payload:
   10028                 :            :          * Category[1] = 6 (Fast BSS Transition)
   10029                 :            :          * Action[1] = 1 (Fast BSS Transition Request)
   10030                 :            :          * STA Address
   10031                 :            :          * Target AP Address
   10032                 :            :          * FT IEs
   10033                 :            :          */
   10034                 :            : 
   10035                 :          0 :         data_len = 2 + 2 * ETH_ALEN + ies_len;
   10036                 :          0 :         data = os_malloc(data_len);
   10037         [ #  # ]:          0 :         if (data == NULL)
   10038                 :          0 :                 return -1;
   10039                 :          0 :         pos = data;
   10040                 :          0 :         *pos++ = 0x06; /* FT Action category */
   10041                 :          0 :         *pos++ = action;
   10042                 :          0 :         os_memcpy(pos, own_addr, ETH_ALEN);
   10043                 :          0 :         pos += ETH_ALEN;
   10044                 :          0 :         os_memcpy(pos, target_ap, ETH_ALEN);
   10045                 :          0 :         pos += ETH_ALEN;
   10046                 :          0 :         os_memcpy(pos, ies, ies_len);
   10047                 :            : 
   10048                 :          0 :         ret = wpa_driver_nl80211_send_action(bss, drv->assoc_freq, 0,
   10049                 :          0 :                                              drv->bssid, own_addr, drv->bssid,
   10050                 :            :                                              data, data_len, 0);
   10051                 :          0 :         os_free(data);
   10052                 :            : 
   10053                 :          0 :         return ret;
   10054                 :            : }
   10055                 :            : 
   10056                 :            : 
   10057                 :          0 : static int nl80211_signal_monitor(void *priv, int threshold, int hysteresis)
   10058                 :            : {
   10059                 :          0 :         struct i802_bss *bss = priv;
   10060                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
   10061                 :            :         struct nl_msg *msg;
   10062                 :            :         struct nlattr *cqm;
   10063                 :          0 :         int ret = -1;
   10064                 :            : 
   10065                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Signal monitor threshold=%d "
   10066                 :            :                    "hysteresis=%d", threshold, hysteresis);
   10067                 :            : 
   10068                 :          0 :         msg = nlmsg_alloc();
   10069         [ #  # ]:          0 :         if (!msg)
   10070                 :          0 :                 return -1;
   10071                 :            : 
   10072                 :          0 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_CQM);
   10073                 :            : 
   10074         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
   10075                 :            : 
   10076                 :          0 :         cqm = nla_nest_start(msg, NL80211_ATTR_CQM);
   10077         [ #  # ]:          0 :         if (cqm == NULL)
   10078                 :          0 :                 goto nla_put_failure;
   10079                 :            : 
   10080         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_CQM_RSSI_THOLD, threshold);
   10081         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_CQM_RSSI_HYST, hysteresis);
   10082                 :          0 :         nla_nest_end(msg, cqm);
   10083                 :            : 
   10084                 :          0 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
   10085                 :          0 :         msg = NULL;
   10086                 :            : 
   10087                 :            : nla_put_failure:
   10088                 :          0 :         nlmsg_free(msg);
   10089                 :          0 :         return ret;
   10090                 :            : }
   10091                 :            : 
   10092                 :            : 
   10093                 :          0 : static int get_channel_width(struct nl_msg *msg, void *arg)
   10094                 :            : {
   10095                 :            :         struct nlattr *tb[NL80211_ATTR_MAX + 1];
   10096                 :          0 :         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
   10097                 :          0 :         struct wpa_signal_info *sig_change = arg;
   10098                 :            : 
   10099                 :          0 :         nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
   10100                 :            :                   genlmsg_attrlen(gnlh, 0), NULL);
   10101                 :            : 
   10102                 :          0 :         sig_change->center_frq1 = -1;
   10103                 :          0 :         sig_change->center_frq2 = -1;
   10104                 :          0 :         sig_change->chanwidth = CHAN_WIDTH_UNKNOWN;
   10105                 :            : 
   10106         [ #  # ]:          0 :         if (tb[NL80211_ATTR_CHANNEL_WIDTH]) {
   10107                 :          0 :                 sig_change->chanwidth = convert2width(
   10108                 :          0 :                         nla_get_u32(tb[NL80211_ATTR_CHANNEL_WIDTH]));
   10109         [ #  # ]:          0 :                 if (tb[NL80211_ATTR_CENTER_FREQ1])
   10110                 :          0 :                         sig_change->center_frq1 =
   10111                 :          0 :                                 nla_get_u32(tb[NL80211_ATTR_CENTER_FREQ1]);
   10112         [ #  # ]:          0 :                 if (tb[NL80211_ATTR_CENTER_FREQ2])
   10113                 :          0 :                         sig_change->center_frq2 =
   10114                 :          0 :                                 nla_get_u32(tb[NL80211_ATTR_CENTER_FREQ2]);
   10115                 :            :         }
   10116                 :            : 
   10117                 :          0 :         return NL_SKIP;
   10118                 :            : }
   10119                 :            : 
   10120                 :            : 
   10121                 :          0 : static int nl80211_get_channel_width(struct wpa_driver_nl80211_data *drv,
   10122                 :            :                                      struct wpa_signal_info *sig)
   10123                 :            : {
   10124                 :            :         struct nl_msg *msg;
   10125                 :            : 
   10126                 :          0 :         msg = nlmsg_alloc();
   10127         [ #  # ]:          0 :         if (!msg)
   10128                 :          0 :                 return -ENOMEM;
   10129                 :            : 
   10130                 :          0 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_GET_INTERFACE);
   10131         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
   10132                 :            : 
   10133                 :          0 :         return send_and_recv_msgs(drv, msg, get_channel_width, sig);
   10134                 :            : 
   10135                 :            : nla_put_failure:
   10136                 :          0 :         nlmsg_free(msg);
   10137                 :          0 :         return -ENOBUFS;
   10138                 :            : }
   10139                 :            : 
   10140                 :            : 
   10141                 :          0 : static int nl80211_signal_poll(void *priv, struct wpa_signal_info *si)
   10142                 :            : {
   10143                 :          0 :         struct i802_bss *bss = priv;
   10144                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
   10145                 :            :         int res;
   10146                 :            : 
   10147                 :          0 :         os_memset(si, 0, sizeof(*si));
   10148                 :          0 :         res = nl80211_get_link_signal(drv, si);
   10149         [ #  # ]:          0 :         if (res != 0)
   10150                 :          0 :                 return res;
   10151                 :            : 
   10152                 :          0 :         res = nl80211_get_channel_width(drv, si);
   10153         [ #  # ]:          0 :         if (res != 0)
   10154                 :          0 :                 return res;
   10155                 :            : 
   10156                 :          0 :         return nl80211_get_link_noise(drv, si);
   10157                 :            : }
   10158                 :            : 
   10159                 :            : 
   10160                 :          0 : static int wpa_driver_nl80211_shared_freq(void *priv)
   10161                 :            : {
   10162                 :          0 :         struct i802_bss *bss = priv;
   10163                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
   10164                 :            :         struct wpa_driver_nl80211_data *driver;
   10165                 :          0 :         int freq = 0;
   10166                 :            : 
   10167                 :            :         /*
   10168                 :            :          * If the same PHY is in connected state with some other interface,
   10169                 :            :          * then retrieve the assoc freq.
   10170                 :            :          */
   10171                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Get shared freq for PHY %s",
   10172                 :          0 :                    drv->phyname);
   10173                 :            : 
   10174         [ #  # ]:          0 :         dl_list_for_each(driver, &drv->global->interfaces,
   10175                 :            :                          struct wpa_driver_nl80211_data, list) {
   10176 [ #  # ][ #  # ]:          0 :                 if (drv == driver ||
   10177         [ #  # ]:          0 :                     os_strcmp(drv->phyname, driver->phyname) != 0 ||
   10178                 :          0 :                     !driver->associated)
   10179                 :          0 :                         continue;
   10180                 :            : 
   10181                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Found a match for PHY %s - %s "
   10182                 :            :                            MACSTR,
   10183                 :          0 :                            driver->phyname, driver->first_bss->ifname,
   10184                 :          0 :                            MAC2STR(driver->first_bss->addr));
   10185         [ #  # ]:          0 :                 if (is_ap_interface(driver->nlmode))
   10186                 :          0 :                         freq = driver->first_bss->freq;
   10187                 :            :                 else
   10188                 :          0 :                         freq = nl80211_get_assoc_freq(driver);
   10189                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Shared freq for PHY %s: %d",
   10190                 :          0 :                            drv->phyname, freq);
   10191                 :            :         }
   10192                 :            : 
   10193         [ #  # ]:          0 :         if (!freq)
   10194                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: No shared interface for "
   10195                 :          0 :                            "PHY (%s) in associated state", drv->phyname);
   10196                 :            : 
   10197                 :          0 :         return freq;
   10198                 :            : }
   10199                 :            : 
   10200                 :            : 
   10201                 :          0 : static int nl80211_send_frame(void *priv, const u8 *data, size_t data_len,
   10202                 :            :                               int encrypt)
   10203                 :            : {
   10204                 :          0 :         struct i802_bss *bss = priv;
   10205                 :          0 :         return wpa_driver_nl80211_send_frame(bss, data, data_len, encrypt, 0,
   10206                 :            :                                              0, 0, 0, 0);
   10207                 :            : }
   10208                 :            : 
   10209                 :            : 
   10210                 :          0 : static int nl80211_set_param(void *priv, const char *param)
   10211                 :            : {
   10212                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: driver param='%s'", param);
   10213         [ #  # ]:          0 :         if (param == NULL)
   10214                 :          0 :                 return 0;
   10215                 :            : 
   10216                 :            : #ifdef CONFIG_P2P
   10217                 :            :         if (os_strstr(param, "use_p2p_group_interface=1")) {
   10218                 :            :                 struct i802_bss *bss = priv;
   10219                 :            :                 struct wpa_driver_nl80211_data *drv = bss->drv;
   10220                 :            : 
   10221                 :            :                 wpa_printf(MSG_DEBUG, "nl80211: Use separate P2P group "
   10222                 :            :                            "interface");
   10223                 :            :                 drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_CONCURRENT;
   10224                 :            :                 drv->capa.flags |= WPA_DRIVER_FLAGS_P2P_MGMT_AND_NON_P2P;
   10225                 :            :         }
   10226                 :            : 
   10227                 :            :         if (os_strstr(param, "p2p_device=1")) {
   10228                 :            :                 struct i802_bss *bss = priv;
   10229                 :            :                 struct wpa_driver_nl80211_data *drv = bss->drv;
   10230                 :            :                 drv->allow_p2p_device = 1;
   10231                 :            :         }
   10232                 :            : #endif /* CONFIG_P2P */
   10233                 :            : 
   10234         [ #  # ]:          0 :         if (os_strstr(param, "use_monitor=1")) {
   10235                 :          0 :                 struct i802_bss *bss = priv;
   10236                 :          0 :                 struct wpa_driver_nl80211_data *drv = bss->drv;
   10237                 :          0 :                 drv->use_monitor = 1;
   10238                 :            :         }
   10239                 :            : 
   10240         [ #  # ]:          0 :         if (os_strstr(param, "force_connect_cmd=1")) {
   10241                 :          0 :                 struct i802_bss *bss = priv;
   10242                 :          0 :                 struct wpa_driver_nl80211_data *drv = bss->drv;
   10243                 :          0 :                 drv->capa.flags &= ~WPA_DRIVER_FLAGS_SME;
   10244                 :            :         }
   10245                 :            : 
   10246                 :          0 :         return 0;
   10247                 :            : }
   10248                 :            : 
   10249                 :            : 
   10250                 :          1 : static void * nl80211_global_init(void)
   10251                 :            : {
   10252                 :            :         struct nl80211_global *global;
   10253                 :            :         struct netlink_config *cfg;
   10254                 :            : 
   10255                 :          1 :         global = os_zalloc(sizeof(*global));
   10256         [ -  + ]:          1 :         if (global == NULL)
   10257                 :          0 :                 return NULL;
   10258                 :          1 :         global->ioctl_sock = -1;
   10259                 :          1 :         dl_list_init(&global->interfaces);
   10260                 :          1 :         global->if_add_ifindex = -1;
   10261                 :            : 
   10262                 :          1 :         cfg = os_zalloc(sizeof(*cfg));
   10263         [ -  + ]:          1 :         if (cfg == NULL)
   10264                 :          0 :                 goto err;
   10265                 :            : 
   10266                 :          1 :         cfg->ctx = global;
   10267                 :          1 :         cfg->newlink_cb = wpa_driver_nl80211_event_rtm_newlink;
   10268                 :          1 :         cfg->dellink_cb = wpa_driver_nl80211_event_rtm_dellink;
   10269                 :          1 :         global->netlink = netlink_init(cfg);
   10270         [ -  + ]:          1 :         if (global->netlink == NULL) {
   10271                 :          0 :                 os_free(cfg);
   10272                 :          0 :                 goto err;
   10273                 :            :         }
   10274                 :            : 
   10275         [ -  + ]:          1 :         if (wpa_driver_nl80211_init_nl_global(global) < 0)
   10276                 :          0 :                 goto err;
   10277                 :            : 
   10278                 :          1 :         global->ioctl_sock = socket(PF_INET, SOCK_DGRAM, 0);
   10279         [ -  + ]:          1 :         if (global->ioctl_sock < 0) {
   10280                 :          0 :                 wpa_printf(MSG_ERROR, "nl80211: socket(PF_INET,SOCK_DGRAM) failed: %s",
   10281                 :          0 :                            strerror(errno));
   10282                 :          0 :                 goto err;
   10283                 :            :         }
   10284                 :            : 
   10285                 :          1 :         return global;
   10286                 :            : 
   10287                 :            : err:
   10288                 :          0 :         nl80211_global_deinit(global);
   10289                 :          1 :         return NULL;
   10290                 :            : }
   10291                 :            : 
   10292                 :            : 
   10293                 :          1 : static void nl80211_global_deinit(void *priv)
   10294                 :            : {
   10295                 :          1 :         struct nl80211_global *global = priv;
   10296         [ -  + ]:          1 :         if (global == NULL)
   10297                 :          1 :                 return;
   10298         [ -  + ]:          1 :         if (!dl_list_empty(&global->interfaces)) {
   10299                 :          0 :                 wpa_printf(MSG_ERROR, "nl80211: %u interface(s) remain at "
   10300                 :            :                            "nl80211_global_deinit",
   10301                 :            :                            dl_list_len(&global->interfaces));
   10302                 :            :         }
   10303                 :            : 
   10304         [ +  - ]:          1 :         if (global->netlink)
   10305                 :          1 :                 netlink_deinit(global->netlink);
   10306                 :            : 
   10307                 :          1 :         nl_destroy_handles(&global->nl);
   10308                 :            : 
   10309         [ +  - ]:          1 :         if (global->nl_event)
   10310                 :          1 :                 nl80211_destroy_eloop_handle(&global->nl_event);
   10311                 :            : 
   10312                 :          1 :         nl_cb_put(global->nl_cb);
   10313                 :            : 
   10314         [ +  - ]:          1 :         if (global->ioctl_sock >= 0)
   10315                 :          1 :                 close(global->ioctl_sock);
   10316                 :            : 
   10317                 :          1 :         os_free(global);
   10318                 :            : }
   10319                 :            : 
   10320                 :            : 
   10321                 :        196 : static const char * nl80211_get_radio_name(void *priv)
   10322                 :            : {
   10323                 :        196 :         struct i802_bss *bss = priv;
   10324                 :        196 :         struct wpa_driver_nl80211_data *drv = bss->drv;
   10325                 :        196 :         return drv->phyname;
   10326                 :            : }
   10327                 :            : 
   10328                 :            : 
   10329                 :          0 : static int nl80211_pmkid(struct i802_bss *bss, int cmd, const u8 *bssid,
   10330                 :            :                          const u8 *pmkid)
   10331                 :            : {
   10332                 :            :         struct nl_msg *msg;
   10333                 :            : 
   10334                 :          0 :         msg = nlmsg_alloc();
   10335         [ #  # ]:          0 :         if (!msg)
   10336                 :          0 :                 return -ENOMEM;
   10337                 :            : 
   10338                 :          0 :         nl80211_cmd(bss->drv, msg, 0, cmd);
   10339                 :            : 
   10340         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, if_nametoindex(bss->ifname));
   10341         [ #  # ]:          0 :         if (pmkid)
   10342         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_ATTR_PMKID, 16, pmkid);
   10343         [ #  # ]:          0 :         if (bssid)
   10344         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, bssid);
   10345                 :            : 
   10346                 :          0 :         return send_and_recv_msgs(bss->drv, msg, NULL, NULL);
   10347                 :            :  nla_put_failure:
   10348                 :          0 :         nlmsg_free(msg);
   10349                 :          0 :         return -ENOBUFS;
   10350                 :            : }
   10351                 :            : 
   10352                 :            : 
   10353                 :          0 : static int nl80211_add_pmkid(void *priv, const u8 *bssid, const u8 *pmkid)
   10354                 :            : {
   10355                 :          0 :         struct i802_bss *bss = priv;
   10356                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Add PMKID for " MACSTR, MAC2STR(bssid));
   10357                 :          0 :         return nl80211_pmkid(bss, NL80211_CMD_SET_PMKSA, bssid, pmkid);
   10358                 :            : }
   10359                 :            : 
   10360                 :            : 
   10361                 :          0 : static int nl80211_remove_pmkid(void *priv, const u8 *bssid, const u8 *pmkid)
   10362                 :            : {
   10363                 :          0 :         struct i802_bss *bss = priv;
   10364                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Delete PMKID for " MACSTR,
   10365                 :          0 :                    MAC2STR(bssid));
   10366                 :          0 :         return nl80211_pmkid(bss, NL80211_CMD_DEL_PMKSA, bssid, pmkid);
   10367                 :            : }
   10368                 :            : 
   10369                 :            : 
   10370                 :          0 : static int nl80211_flush_pmkid(void *priv)
   10371                 :            : {
   10372                 :          0 :         struct i802_bss *bss = priv;
   10373                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Flush PMKIDs");
   10374                 :          0 :         return nl80211_pmkid(bss, NL80211_CMD_FLUSH_PMKSA, NULL, NULL);
   10375                 :            : }
   10376                 :            : 
   10377                 :            : 
   10378                 :         15 : static void clean_survey_results(struct survey_results *survey_results)
   10379                 :            : {
   10380                 :            :         struct freq_survey *survey, *tmp;
   10381                 :            : 
   10382         [ +  - ]:         15 :         if (dl_list_empty(&survey_results->survey_list))
   10383                 :         15 :                 return;
   10384                 :            : 
   10385         [ #  # ]:          0 :         dl_list_for_each_safe(survey, tmp, &survey_results->survey_list,
   10386                 :            :                               struct freq_survey, list) {
   10387                 :          0 :                 dl_list_del(&survey->list);
   10388                 :          0 :                 os_free(survey);
   10389                 :            :         }
   10390                 :            : }
   10391                 :            : 
   10392                 :            : 
   10393                 :         15 : static void add_survey(struct nlattr **sinfo, u32 ifidx,
   10394                 :            :                        struct dl_list *survey_list)
   10395                 :            : {
   10396                 :            :         struct freq_survey *survey;
   10397                 :            : 
   10398                 :         15 :         survey = os_zalloc(sizeof(struct freq_survey));
   10399         [ -  + ]:         15 :         if  (!survey)
   10400                 :         15 :                 return;
   10401                 :            : 
   10402                 :         15 :         survey->ifidx = ifidx;
   10403                 :         15 :         survey->freq = nla_get_u32(sinfo[NL80211_SURVEY_INFO_FREQUENCY]);
   10404                 :         15 :         survey->filled = 0;
   10405                 :            : 
   10406         [ +  - ]:         15 :         if (sinfo[NL80211_SURVEY_INFO_NOISE]) {
   10407                 :         15 :                 survey->nf = (int8_t)
   10408                 :         15 :                         nla_get_u8(sinfo[NL80211_SURVEY_INFO_NOISE]);
   10409                 :         15 :                 survey->filled |= SURVEY_HAS_NF;
   10410                 :            :         }
   10411                 :            : 
   10412         [ -  + ]:         15 :         if (sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME]) {
   10413                 :          0 :                 survey->channel_time =
   10414                 :          0 :                         nla_get_u64(sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME]);
   10415                 :          0 :                 survey->filled |= SURVEY_HAS_CHAN_TIME;
   10416                 :            :         }
   10417                 :            : 
   10418         [ -  + ]:         15 :         if (sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME_BUSY]) {
   10419                 :          0 :                 survey->channel_time_busy =
   10420                 :          0 :                         nla_get_u64(sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME_BUSY]);
   10421                 :          0 :                 survey->filled |= SURVEY_HAS_CHAN_TIME_BUSY;
   10422                 :            :         }
   10423                 :            : 
   10424         [ -  + ]:         15 :         if (sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME_RX]) {
   10425                 :          0 :                 survey->channel_time_rx =
   10426                 :          0 :                         nla_get_u64(sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME_RX]);
   10427                 :          0 :                 survey->filled |= SURVEY_HAS_CHAN_TIME_RX;
   10428                 :            :         }
   10429                 :            : 
   10430         [ -  + ]:         15 :         if (sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME_TX]) {
   10431                 :          0 :                 survey->channel_time_tx =
   10432                 :          0 :                         nla_get_u64(sinfo[NL80211_SURVEY_INFO_CHANNEL_TIME_TX]);
   10433                 :          0 :                 survey->filled |= SURVEY_HAS_CHAN_TIME_TX;
   10434                 :            :         }
   10435                 :            : 
   10436                 :         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)",
   10437                 :            :                    survey->freq,
   10438                 :         15 :                    survey->nf,
   10439                 :            :                    (unsigned long int) survey->channel_time,
   10440                 :            :                    (unsigned long int) survey->channel_time_busy,
   10441                 :            :                    (unsigned long int) survey->channel_time_tx,
   10442                 :            :                    (unsigned long int) survey->channel_time_rx,
   10443                 :            :                    survey->filled);
   10444                 :            : 
   10445                 :         15 :         dl_list_add_tail(survey_list, &survey->list);
   10446                 :            : }
   10447                 :            : 
   10448                 :            : 
   10449                 :         15 : static int check_survey_ok(struct nlattr **sinfo, u32 surveyed_freq,
   10450                 :            :                            unsigned int freq_filter)
   10451                 :            : {
   10452         [ +  - ]:         15 :         if (!freq_filter)
   10453                 :         15 :                 return 1;
   10454                 :            : 
   10455                 :         15 :         return freq_filter == surveyed_freq;
   10456                 :            : }
   10457                 :            : 
   10458                 :            : 
   10459                 :         15 : static int survey_handler(struct nl_msg *msg, void *arg)
   10460                 :            : {
   10461                 :            :         struct nlattr *tb[NL80211_ATTR_MAX + 1];
   10462                 :         15 :         struct genlmsghdr *gnlh = nlmsg_data(nlmsg_hdr(msg));
   10463                 :            :         struct nlattr *sinfo[NL80211_SURVEY_INFO_MAX + 1];
   10464                 :            :         struct survey_results *survey_results;
   10465                 :         15 :         u32 surveyed_freq = 0;
   10466                 :            :         u32 ifidx;
   10467                 :            : 
   10468                 :            :         static struct nla_policy survey_policy[NL80211_SURVEY_INFO_MAX + 1] = {
   10469                 :            :                 [NL80211_SURVEY_INFO_FREQUENCY] = { .type = NLA_U32 },
   10470                 :            :                 [NL80211_SURVEY_INFO_NOISE] = { .type = NLA_U8 },
   10471                 :            :         };
   10472                 :            : 
   10473                 :         15 :         survey_results = (struct survey_results *) arg;
   10474                 :            : 
   10475                 :         15 :         nla_parse(tb, NL80211_ATTR_MAX, genlmsg_attrdata(gnlh, 0),
   10476                 :            :                   genlmsg_attrlen(gnlh, 0), NULL);
   10477                 :            : 
   10478                 :         15 :         ifidx = nla_get_u32(tb[NL80211_ATTR_IFINDEX]);
   10479                 :            : 
   10480         [ -  + ]:         15 :         if (!tb[NL80211_ATTR_SURVEY_INFO])
   10481                 :          0 :                 return NL_SKIP;
   10482                 :            : 
   10483         [ -  + ]:         15 :         if (nla_parse_nested(sinfo, NL80211_SURVEY_INFO_MAX,
   10484                 :            :                              tb[NL80211_ATTR_SURVEY_INFO],
   10485                 :            :                              survey_policy))
   10486                 :          0 :                 return NL_SKIP;
   10487                 :            : 
   10488         [ -  + ]:         15 :         if (!sinfo[NL80211_SURVEY_INFO_FREQUENCY]) {
   10489                 :          0 :                 wpa_printf(MSG_ERROR, "nl80211: Invalid survey data");
   10490                 :          0 :                 return NL_SKIP;
   10491                 :            :         }
   10492                 :            : 
   10493                 :         15 :         surveyed_freq = nla_get_u32(sinfo[NL80211_SURVEY_INFO_FREQUENCY]);
   10494                 :            : 
   10495         [ -  + ]:         15 :         if (!check_survey_ok(sinfo, surveyed_freq,
   10496                 :            :                              survey_results->freq_filter))
   10497                 :          0 :                 return NL_SKIP;
   10498                 :            : 
   10499 [ -  + ][ #  # ]:         15 :         if (survey_results->freq_filter &&
   10500                 :          0 :             survey_results->freq_filter != surveyed_freq) {
   10501                 :          0 :                 wpa_printf(MSG_EXCESSIVE, "nl80211: Ignoring survey data for freq %d MHz",
   10502                 :            :                            surveyed_freq);
   10503                 :          0 :                 return NL_SKIP;
   10504                 :            :         }
   10505                 :            : 
   10506                 :         15 :         add_survey(sinfo, ifidx, &survey_results->survey_list);
   10507                 :            : 
   10508                 :         15 :         return NL_SKIP;
   10509                 :            : }
   10510                 :            : 
   10511                 :            : 
   10512                 :         15 : static int wpa_driver_nl80211_get_survey(void *priv, unsigned int freq)
   10513                 :            : {
   10514                 :         15 :         struct i802_bss *bss = priv;
   10515                 :         15 :         struct wpa_driver_nl80211_data *drv = bss->drv;
   10516                 :            :         struct nl_msg *msg;
   10517                 :         15 :         int err = -ENOBUFS;
   10518                 :            :         union wpa_event_data data;
   10519                 :            :         struct survey_results *survey_results;
   10520                 :            : 
   10521                 :         15 :         os_memset(&data, 0, sizeof(data));
   10522                 :         15 :         survey_results = &data.survey_results;
   10523                 :            : 
   10524                 :         15 :         dl_list_init(&survey_results->survey_list);
   10525                 :            : 
   10526                 :         15 :         msg = nlmsg_alloc();
   10527         [ -  + ]:         15 :         if (!msg)
   10528                 :          0 :                 goto nla_put_failure;
   10529                 :            : 
   10530                 :         15 :         nl80211_cmd(drv, msg, NLM_F_DUMP, NL80211_CMD_GET_SURVEY);
   10531                 :            : 
   10532         [ +  - ]:         15 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
   10533                 :            : 
   10534         [ -  + ]:         15 :         if (freq)
   10535                 :          0 :                 data.survey_results.freq_filter = freq;
   10536                 :            : 
   10537                 :            :         do {
   10538                 :         15 :                 wpa_printf(MSG_DEBUG, "nl80211: Fetch survey data");
   10539                 :         15 :                 err = send_and_recv_msgs(drv, msg, survey_handler,
   10540                 :            :                                          survey_results);
   10541         [ -  + ]:         15 :         } while (err > 0);
   10542                 :            : 
   10543         [ -  + ]:         15 :         if (err) {
   10544                 :          0 :                 wpa_printf(MSG_ERROR, "nl80211: Failed to process survey data");
   10545                 :          0 :                 goto out_clean;
   10546                 :            :         }
   10547                 :            : 
   10548                 :         15 :         wpa_supplicant_event(drv->ctx, EVENT_SURVEY, &data);
   10549                 :            : 
   10550                 :            : out_clean:
   10551                 :         15 :         clean_survey_results(survey_results);
   10552                 :            : nla_put_failure:
   10553                 :         15 :         return err;
   10554                 :            : }
   10555                 :            : 
   10556                 :            : 
   10557                 :          0 : static void nl80211_set_rekey_info(void *priv, const u8 *kek, const u8 *kck,
   10558                 :            :                                    const u8 *replay_ctr)
   10559                 :            : {
   10560                 :          0 :         struct i802_bss *bss = priv;
   10561                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
   10562                 :            :         struct nlattr *replay_nested;
   10563                 :            :         struct nl_msg *msg;
   10564                 :            : 
   10565                 :          0 :         msg = nlmsg_alloc();
   10566         [ #  # ]:          0 :         if (!msg)
   10567                 :          0 :                 return;
   10568                 :            : 
   10569                 :          0 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_REKEY_OFFLOAD);
   10570                 :            : 
   10571         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
   10572                 :            : 
   10573                 :          0 :         replay_nested = nla_nest_start(msg, NL80211_ATTR_REKEY_DATA);
   10574         [ #  # ]:          0 :         if (!replay_nested)
   10575                 :          0 :                 goto nla_put_failure;
   10576                 :            : 
   10577         [ #  # ]:          0 :         NLA_PUT(msg, NL80211_REKEY_DATA_KEK, NL80211_KEK_LEN, kek);
   10578         [ #  # ]:          0 :         NLA_PUT(msg, NL80211_REKEY_DATA_KCK, NL80211_KCK_LEN, kck);
   10579         [ #  # ]:          0 :         NLA_PUT(msg, NL80211_REKEY_DATA_REPLAY_CTR, NL80211_REPLAY_CTR_LEN,
   10580                 :            :                 replay_ctr);
   10581                 :            : 
   10582                 :          0 :         nla_nest_end(msg, replay_nested);
   10583                 :            : 
   10584                 :          0 :         send_and_recv_msgs(drv, msg, NULL, NULL);
   10585                 :          0 :         return;
   10586                 :            :  nla_put_failure:
   10587                 :          0 :         nlmsg_free(msg);
   10588                 :            : }
   10589                 :            : 
   10590                 :            : 
   10591                 :          0 : static void nl80211_send_null_frame(struct i802_bss *bss, const u8 *own_addr,
   10592                 :            :                                     const u8 *addr, int qos)
   10593                 :            : {
   10594                 :            :         /* send data frame to poll STA and check whether
   10595                 :            :          * this frame is ACKed */
   10596                 :            :         struct {
   10597                 :            :                 struct ieee80211_hdr hdr;
   10598                 :            :                 u16 qos_ctl;
   10599                 :            :         } STRUCT_PACKED nulldata;
   10600                 :            :         size_t size;
   10601                 :            : 
   10602                 :            :         /* Send data frame to poll STA and check whether this frame is ACKed */
   10603                 :            : 
   10604                 :          0 :         os_memset(&nulldata, 0, sizeof(nulldata));
   10605                 :            : 
   10606         [ #  # ]:          0 :         if (qos) {
   10607                 :          0 :                 nulldata.hdr.frame_control =
   10608                 :            :                         IEEE80211_FC(WLAN_FC_TYPE_DATA,
   10609                 :            :                                      WLAN_FC_STYPE_QOS_NULL);
   10610                 :          0 :                 size = sizeof(nulldata);
   10611                 :            :         } else {
   10612                 :          0 :                 nulldata.hdr.frame_control =
   10613                 :            :                         IEEE80211_FC(WLAN_FC_TYPE_DATA,
   10614                 :            :                                      WLAN_FC_STYPE_NULLFUNC);
   10615                 :          0 :                 size = sizeof(struct ieee80211_hdr);
   10616                 :            :         }
   10617                 :            : 
   10618                 :          0 :         nulldata.hdr.frame_control |= host_to_le16(WLAN_FC_FROMDS);
   10619                 :          0 :         os_memcpy(nulldata.hdr.IEEE80211_DA_FROMDS, addr, ETH_ALEN);
   10620                 :          0 :         os_memcpy(nulldata.hdr.IEEE80211_BSSID_FROMDS, own_addr, ETH_ALEN);
   10621                 :          0 :         os_memcpy(nulldata.hdr.IEEE80211_SA_FROMDS, own_addr, ETH_ALEN);
   10622                 :            : 
   10623         [ #  # ]:          0 :         if (wpa_driver_nl80211_send_mlme(bss, (u8 *) &nulldata, size, 0, 0, 0,
   10624                 :            :                                          0, 0) < 0)
   10625                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211_send_null_frame: Failed to "
   10626                 :            :                            "send poll frame");
   10627                 :          0 : }
   10628                 :            : 
   10629                 :          0 : static void nl80211_poll_client(void *priv, const u8 *own_addr, const u8 *addr,
   10630                 :            :                                 int qos)
   10631                 :            : {
   10632                 :          0 :         struct i802_bss *bss = priv;
   10633                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
   10634                 :            :         struct nl_msg *msg;
   10635                 :            : 
   10636         [ #  # ]:          0 :         if (!drv->poll_command_supported) {
   10637                 :          0 :                 nl80211_send_null_frame(bss, own_addr, addr, qos);
   10638                 :          0 :                 return;
   10639                 :            :         }
   10640                 :            : 
   10641                 :          0 :         msg = nlmsg_alloc();
   10642         [ #  # ]:          0 :         if (!msg)
   10643                 :          0 :                 return;
   10644                 :            : 
   10645                 :          0 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_PROBE_CLIENT);
   10646                 :            : 
   10647         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
   10648         [ #  # ]:          0 :         NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, addr);
   10649                 :            : 
   10650                 :          0 :         send_and_recv_msgs(drv, msg, NULL, NULL);
   10651                 :          0 :         return;
   10652                 :            :  nla_put_failure:
   10653                 :          0 :         nlmsg_free(msg);
   10654                 :            : }
   10655                 :            : 
   10656                 :            : 
   10657                 :          0 : static int nl80211_set_power_save(struct i802_bss *bss, int enabled)
   10658                 :            : {
   10659                 :            :         struct nl_msg *msg;
   10660                 :            : 
   10661                 :          0 :         msg = nlmsg_alloc();
   10662         [ #  # ]:          0 :         if (!msg)
   10663                 :          0 :                 return -ENOMEM;
   10664                 :            : 
   10665                 :          0 :         nl80211_cmd(bss->drv, msg, 0, NL80211_CMD_SET_POWER_SAVE);
   10666         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, bss->ifindex);
   10667         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_PS_STATE,
   10668                 :            :                     enabled ? NL80211_PS_ENABLED : NL80211_PS_DISABLED);
   10669                 :          0 :         return send_and_recv_msgs(bss->drv, msg, NULL, NULL);
   10670                 :            : nla_put_failure:
   10671                 :          0 :         nlmsg_free(msg);
   10672                 :          0 :         return -ENOBUFS;
   10673                 :            : }
   10674                 :            : 
   10675                 :            : 
   10676                 :          0 : static int nl80211_set_p2p_powersave(void *priv, int legacy_ps, int opp_ps,
   10677                 :            :                                      int ctwindow)
   10678                 :            : {
   10679                 :          0 :         struct i802_bss *bss = priv;
   10680                 :            : 
   10681                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: set_p2p_powersave (legacy_ps=%d "
   10682                 :            :                    "opp_ps=%d ctwindow=%d)", legacy_ps, opp_ps, ctwindow);
   10683                 :            : 
   10684 [ #  # ][ #  # ]:          0 :         if (opp_ps != -1 || ctwindow != -1) {
   10685                 :            : #ifdef ANDROID_P2P
   10686                 :            :                 wpa_driver_set_p2p_ps(priv, legacy_ps, opp_ps, ctwindow);
   10687                 :            : #else /* ANDROID_P2P */
   10688                 :          0 :                 return -1; /* Not yet supported */
   10689                 :            : #endif /* ANDROID_P2P */
   10690                 :            :         }
   10691                 :            : 
   10692         [ #  # ]:          0 :         if (legacy_ps == -1)
   10693                 :          0 :                 return 0;
   10694 [ #  # ][ #  # ]:          0 :         if (legacy_ps != 0 && legacy_ps != 1)
   10695                 :          0 :                 return -1; /* Not yet supported */
   10696                 :            : 
   10697                 :          0 :         return nl80211_set_power_save(bss, legacy_ps);
   10698                 :            : }
   10699                 :            : 
   10700                 :            : 
   10701                 :          0 : static int nl80211_start_radar_detection(void *priv,
   10702                 :            :                                          struct hostapd_freq_params *freq)
   10703                 :            : {
   10704                 :          0 :         struct i802_bss *bss = priv;
   10705                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
   10706                 :            :         struct nl_msg *msg;
   10707                 :            :         int ret;
   10708                 :            : 
   10709                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Start radar detection (CAC) %d MHz (ht_enabled=%d, vht_enabled=%d, bandwidth=%d MHz, cf1=%d MHz, cf2=%d MHz)",
   10710                 :            :                    freq->freq, freq->ht_enabled, freq->vht_enabled,
   10711                 :            :                    freq->bandwidth, freq->center_freq1, freq->center_freq2);
   10712                 :            : 
   10713         [ #  # ]:          0 :         if (!(drv->capa.flags & WPA_DRIVER_FLAGS_RADAR)) {
   10714                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Driver does not support radar "
   10715                 :            :                            "detection");
   10716                 :          0 :                 return -1;
   10717                 :            :         }
   10718                 :            : 
   10719                 :          0 :         msg = nlmsg_alloc();
   10720         [ #  # ]:          0 :         if (!msg)
   10721                 :          0 :                 return -1;
   10722                 :            : 
   10723                 :          0 :         nl80211_cmd(bss->drv, msg, 0, NL80211_CMD_RADAR_DETECT);
   10724         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
   10725         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_FREQ, freq->freq);
   10726                 :            : 
   10727         [ #  # ]:          0 :         if (freq->vht_enabled) {
   10728   [ #  #  #  #  :          0 :                 switch (freq->bandwidth) {
                      # ]
   10729                 :            :                 case 20:
   10730         [ #  # ]:          0 :                         NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
   10731                 :            :                                     NL80211_CHAN_WIDTH_20);
   10732                 :          0 :                         break;
   10733                 :            :                 case 40:
   10734         [ #  # ]:          0 :                         NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
   10735                 :            :                                     NL80211_CHAN_WIDTH_40);
   10736                 :          0 :                         break;
   10737                 :            :                 case 80:
   10738         [ #  # ]:          0 :                         if (freq->center_freq2)
   10739         [ #  # ]:          0 :                                 NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
   10740                 :            :                                             NL80211_CHAN_WIDTH_80P80);
   10741                 :            :                         else
   10742         [ #  # ]:          0 :                                 NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
   10743                 :            :                                             NL80211_CHAN_WIDTH_80);
   10744                 :          0 :                         break;
   10745                 :            :                 case 160:
   10746         [ #  # ]:          0 :                         NLA_PUT_U32(msg, NL80211_ATTR_CHANNEL_WIDTH,
   10747                 :            :                                     NL80211_CHAN_WIDTH_160);
   10748                 :          0 :                         break;
   10749                 :            :                 default:
   10750                 :          0 :                         return -1;
   10751                 :            :                 }
   10752         [ #  # ]:          0 :                 NLA_PUT_U32(msg, NL80211_ATTR_CENTER_FREQ1, freq->center_freq1);
   10753         [ #  # ]:          0 :                 if (freq->center_freq2)
   10754         [ #  # ]:          0 :                         NLA_PUT_U32(msg, NL80211_ATTR_CENTER_FREQ2,
   10755                 :            :                                     freq->center_freq2);
   10756         [ #  # ]:          0 :         } else if (freq->ht_enabled) {
   10757      [ #  #  # ]:          0 :                 switch (freq->sec_channel_offset) {
   10758                 :            :                 case -1:
   10759         [ #  # ]:          0 :                         NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
   10760                 :            :                                     NL80211_CHAN_HT40MINUS);
   10761                 :          0 :                         break;
   10762                 :            :                 case 1:
   10763         [ #  # ]:          0 :                         NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
   10764                 :            :                                     NL80211_CHAN_HT40PLUS);
   10765                 :          0 :                         break;
   10766                 :            :                 default:
   10767         [ #  # ]:          0 :                         NLA_PUT_U32(msg, NL80211_ATTR_WIPHY_CHANNEL_TYPE,
   10768                 :            :                                     NL80211_CHAN_HT20);
   10769                 :          0 :                         break;
   10770                 :            :                 }
   10771                 :            :         }
   10772                 :            : 
   10773                 :          0 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
   10774         [ #  # ]:          0 :         if (ret == 0)
   10775                 :          0 :                 return 0;
   10776                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Failed to start radar detection: "
   10777                 :            :                    "%d (%s)", ret, strerror(-ret));
   10778                 :            : nla_put_failure:
   10779                 :          0 :         return -1;
   10780                 :            : }
   10781                 :            : 
   10782                 :            : #ifdef CONFIG_TDLS
   10783                 :            : 
   10784                 :            : static int nl80211_send_tdls_mgmt(void *priv, const u8 *dst, u8 action_code,
   10785                 :            :                                   u8 dialog_token, u16 status_code,
   10786                 :            :                                   const u8 *buf, size_t len)
   10787                 :            : {
   10788                 :            :         struct i802_bss *bss = priv;
   10789                 :            :         struct wpa_driver_nl80211_data *drv = bss->drv;
   10790                 :            :         struct nl_msg *msg;
   10791                 :            : 
   10792                 :            :         if (!(drv->capa.flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT))
   10793                 :            :                 return -EOPNOTSUPP;
   10794                 :            : 
   10795                 :            :         if (!dst)
   10796                 :            :                 return -EINVAL;
   10797                 :            : 
   10798                 :            :         msg = nlmsg_alloc();
   10799                 :            :         if (!msg)
   10800                 :            :                 return -ENOMEM;
   10801                 :            : 
   10802                 :            :         nl80211_cmd(drv, msg, 0, NL80211_CMD_TDLS_MGMT);
   10803                 :            :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
   10804                 :            :         NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, dst);
   10805                 :            :         NLA_PUT_U8(msg, NL80211_ATTR_TDLS_ACTION, action_code);
   10806                 :            :         NLA_PUT_U8(msg, NL80211_ATTR_TDLS_DIALOG_TOKEN, dialog_token);
   10807                 :            :         NLA_PUT_U16(msg, NL80211_ATTR_STATUS_CODE, status_code);
   10808                 :            :         NLA_PUT(msg, NL80211_ATTR_IE, len, buf);
   10809                 :            : 
   10810                 :            :         return send_and_recv_msgs(drv, msg, NULL, NULL);
   10811                 :            : 
   10812                 :            : nla_put_failure:
   10813                 :            :         nlmsg_free(msg);
   10814                 :            :         return -ENOBUFS;
   10815                 :            : }
   10816                 :            : 
   10817                 :            : 
   10818                 :            : static int nl80211_tdls_oper(void *priv, enum tdls_oper oper, const u8 *peer)
   10819                 :            : {
   10820                 :            :         struct i802_bss *bss = priv;
   10821                 :            :         struct wpa_driver_nl80211_data *drv = bss->drv;
   10822                 :            :         struct nl_msg *msg;
   10823                 :            :         enum nl80211_tdls_operation nl80211_oper;
   10824                 :            : 
   10825                 :            :         if (!(drv->capa.flags & WPA_DRIVER_FLAGS_TDLS_SUPPORT))
   10826                 :            :                 return -EOPNOTSUPP;
   10827                 :            : 
   10828                 :            :         switch (oper) {
   10829                 :            :         case TDLS_DISCOVERY_REQ:
   10830                 :            :                 nl80211_oper = NL80211_TDLS_DISCOVERY_REQ;
   10831                 :            :                 break;
   10832                 :            :         case TDLS_SETUP:
   10833                 :            :                 nl80211_oper = NL80211_TDLS_SETUP;
   10834                 :            :                 break;
   10835                 :            :         case TDLS_TEARDOWN:
   10836                 :            :                 nl80211_oper = NL80211_TDLS_TEARDOWN;
   10837                 :            :                 break;
   10838                 :            :         case TDLS_ENABLE_LINK:
   10839                 :            :                 nl80211_oper = NL80211_TDLS_ENABLE_LINK;
   10840                 :            :                 break;
   10841                 :            :         case TDLS_DISABLE_LINK:
   10842                 :            :                 nl80211_oper = NL80211_TDLS_DISABLE_LINK;
   10843                 :            :                 break;
   10844                 :            :         case TDLS_ENABLE:
   10845                 :            :                 return 0;
   10846                 :            :         case TDLS_DISABLE:
   10847                 :            :                 return 0;
   10848                 :            :         default:
   10849                 :            :                 return -EINVAL;
   10850                 :            :         }
   10851                 :            : 
   10852                 :            :         msg = nlmsg_alloc();
   10853                 :            :         if (!msg)
   10854                 :            :                 return -ENOMEM;
   10855                 :            : 
   10856                 :            :         nl80211_cmd(drv, msg, 0, NL80211_CMD_TDLS_OPER);
   10857                 :            :         NLA_PUT_U8(msg, NL80211_ATTR_TDLS_OPERATION, nl80211_oper);
   10858                 :            :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
   10859                 :            :         NLA_PUT(msg, NL80211_ATTR_MAC, ETH_ALEN, peer);
   10860                 :            : 
   10861                 :            :         return send_and_recv_msgs(drv, msg, NULL, NULL);
   10862                 :            : 
   10863                 :            : nla_put_failure:
   10864                 :            :         nlmsg_free(msg);
   10865                 :            :         return -ENOBUFS;
   10866                 :            : }
   10867                 :            : 
   10868                 :            : #endif /* CONFIG TDLS */
   10869                 :            : 
   10870                 :            : 
   10871                 :            : #ifdef ANDROID
   10872                 :            : 
   10873                 :            : typedef struct android_wifi_priv_cmd {
   10874                 :            :         char *buf;
   10875                 :            :         int used_len;
   10876                 :            :         int total_len;
   10877                 :            : } android_wifi_priv_cmd;
   10878                 :            : 
   10879                 :            : static int drv_errors = 0;
   10880                 :            : 
   10881                 :            : static void wpa_driver_send_hang_msg(struct wpa_driver_nl80211_data *drv)
   10882                 :            : {
   10883                 :            :         drv_errors++;
   10884                 :            :         if (drv_errors > DRV_NUMBER_SEQUENTIAL_ERRORS) {
   10885                 :            :                 drv_errors = 0;
   10886                 :            :                 wpa_msg(drv->ctx, MSG_INFO, WPA_EVENT_DRIVER_STATE "HANGED");
   10887                 :            :         }
   10888                 :            : }
   10889                 :            : 
   10890                 :            : 
   10891                 :            : static int android_priv_cmd(struct i802_bss *bss, const char *cmd)
   10892                 :            : {
   10893                 :            :         struct wpa_driver_nl80211_data *drv = bss->drv;
   10894                 :            :         struct ifreq ifr;
   10895                 :            :         android_wifi_priv_cmd priv_cmd;
   10896                 :            :         char buf[MAX_DRV_CMD_SIZE];
   10897                 :            :         int ret;
   10898                 :            : 
   10899                 :            :         os_memset(&ifr, 0, sizeof(ifr));
   10900                 :            :         os_memset(&priv_cmd, 0, sizeof(priv_cmd));
   10901                 :            :         os_strlcpy(ifr.ifr_name, bss->ifname, IFNAMSIZ);
   10902                 :            : 
   10903                 :            :         os_memset(buf, 0, sizeof(buf));
   10904                 :            :         os_strlcpy(buf, cmd, sizeof(buf));
   10905                 :            : 
   10906                 :            :         priv_cmd.buf = buf;
   10907                 :            :         priv_cmd.used_len = sizeof(buf);
   10908                 :            :         priv_cmd.total_len = sizeof(buf);
   10909                 :            :         ifr.ifr_data = &priv_cmd;
   10910                 :            : 
   10911                 :            :         ret = ioctl(drv->global->ioctl_sock, SIOCDEVPRIVATE + 1, &ifr);
   10912                 :            :         if (ret < 0) {
   10913                 :            :                 wpa_printf(MSG_ERROR, "%s: failed to issue private commands",
   10914                 :            :                            __func__);
   10915                 :            :                 wpa_driver_send_hang_msg(drv);
   10916                 :            :                 return ret;
   10917                 :            :         }
   10918                 :            : 
   10919                 :            :         drv_errors = 0;
   10920                 :            :         return 0;
   10921                 :            : }
   10922                 :            : 
   10923                 :            : 
   10924                 :            : static int android_pno_start(struct i802_bss *bss,
   10925                 :            :                              struct wpa_driver_scan_params *params)
   10926                 :            : {
   10927                 :            :         struct wpa_driver_nl80211_data *drv = bss->drv;
   10928                 :            :         struct ifreq ifr;
   10929                 :            :         android_wifi_priv_cmd priv_cmd;
   10930                 :            :         int ret = 0, i = 0, bp;
   10931                 :            :         char buf[WEXT_PNO_MAX_COMMAND_SIZE];
   10932                 :            : 
   10933                 :            :         bp = WEXT_PNOSETUP_HEADER_SIZE;
   10934                 :            :         os_memcpy(buf, WEXT_PNOSETUP_HEADER, bp);
   10935                 :            :         buf[bp++] = WEXT_PNO_TLV_PREFIX;
   10936                 :            :         buf[bp++] = WEXT_PNO_TLV_VERSION;
   10937                 :            :         buf[bp++] = WEXT_PNO_TLV_SUBVERSION;
   10938                 :            :         buf[bp++] = WEXT_PNO_TLV_RESERVED;
   10939                 :            : 
   10940                 :            :         while (i < WEXT_PNO_AMOUNT && (size_t) i < params->num_ssids) {
   10941                 :            :                 /* Check that there is enough space needed for 1 more SSID, the
   10942                 :            :                  * other sections and null termination */
   10943                 :            :                 if ((bp + WEXT_PNO_SSID_HEADER_SIZE + MAX_SSID_LEN +
   10944                 :            :                      WEXT_PNO_NONSSID_SECTIONS_SIZE + 1) >= (int) sizeof(buf))
   10945                 :            :                         break;
   10946                 :            :                 wpa_hexdump_ascii(MSG_DEBUG, "For PNO Scan",
   10947                 :            :                                   params->ssids[i].ssid,
   10948                 :            :                                   params->ssids[i].ssid_len);
   10949                 :            :                 buf[bp++] = WEXT_PNO_SSID_SECTION;
   10950                 :            :                 buf[bp++] = params->ssids[i].ssid_len;
   10951                 :            :                 os_memcpy(&buf[bp], params->ssids[i].ssid,
   10952                 :            :                           params->ssids[i].ssid_len);
   10953                 :            :                 bp += params->ssids[i].ssid_len;
   10954                 :            :                 i++;
   10955                 :            :         }
   10956                 :            : 
   10957                 :            :         buf[bp++] = WEXT_PNO_SCAN_INTERVAL_SECTION;
   10958                 :            :         os_snprintf(&buf[bp], WEXT_PNO_SCAN_INTERVAL_LENGTH + 1, "%x",
   10959                 :            :                     WEXT_PNO_SCAN_INTERVAL);
   10960                 :            :         bp += WEXT_PNO_SCAN_INTERVAL_LENGTH;
   10961                 :            : 
   10962                 :            :         buf[bp++] = WEXT_PNO_REPEAT_SECTION;
   10963                 :            :         os_snprintf(&buf[bp], WEXT_PNO_REPEAT_LENGTH + 1, "%x",
   10964                 :            :                     WEXT_PNO_REPEAT);
   10965                 :            :         bp += WEXT_PNO_REPEAT_LENGTH;
   10966                 :            : 
   10967                 :            :         buf[bp++] = WEXT_PNO_MAX_REPEAT_SECTION;
   10968                 :            :         os_snprintf(&buf[bp], WEXT_PNO_MAX_REPEAT_LENGTH + 1, "%x",
   10969                 :            :                     WEXT_PNO_MAX_REPEAT);
   10970                 :            :         bp += WEXT_PNO_MAX_REPEAT_LENGTH + 1;
   10971                 :            : 
   10972                 :            :         memset(&ifr, 0, sizeof(ifr));
   10973                 :            :         memset(&priv_cmd, 0, sizeof(priv_cmd));
   10974                 :            :         os_strlcpy(ifr.ifr_name, bss->ifname, IFNAMSIZ);
   10975                 :            : 
   10976                 :            :         priv_cmd.buf = buf;
   10977                 :            :         priv_cmd.used_len = bp;
   10978                 :            :         priv_cmd.total_len = bp;
   10979                 :            :         ifr.ifr_data = &priv_cmd;
   10980                 :            : 
   10981                 :            :         ret = ioctl(drv->global->ioctl_sock, SIOCDEVPRIVATE + 1, &ifr);
   10982                 :            : 
   10983                 :            :         if (ret < 0) {
   10984                 :            :                 wpa_printf(MSG_ERROR, "ioctl[SIOCSIWPRIV] (pnosetup): %d",
   10985                 :            :                            ret);
   10986                 :            :                 wpa_driver_send_hang_msg(drv);
   10987                 :            :                 return ret;
   10988                 :            :         }
   10989                 :            : 
   10990                 :            :         drv_errors = 0;
   10991                 :            : 
   10992                 :            :         return android_priv_cmd(bss, "PNOFORCE 1");
   10993                 :            : }
   10994                 :            : 
   10995                 :            : 
   10996                 :            : static int android_pno_stop(struct i802_bss *bss)
   10997                 :            : {
   10998                 :            :         return android_priv_cmd(bss, "PNOFORCE 0");
   10999                 :            : }
   11000                 :            : 
   11001                 :            : #endif /* ANDROID */
   11002                 :            : 
   11003                 :            : 
   11004                 :       3629 : static int driver_nl80211_set_key(const char *ifname, void *priv,
   11005                 :            :                                   enum wpa_alg alg, const u8 *addr,
   11006                 :            :                                   int key_idx, int set_tx,
   11007                 :            :                                   const u8 *seq, size_t seq_len,
   11008                 :            :                                   const u8 *key, size_t key_len)
   11009                 :            : {
   11010                 :       3629 :         struct i802_bss *bss = priv;
   11011                 :       3629 :         return wpa_driver_nl80211_set_key(ifname, bss, alg, addr, key_idx,
   11012                 :            :                                           set_tx, seq, seq_len, key, key_len);
   11013                 :            : }
   11014                 :            : 
   11015                 :            : 
   11016                 :         24 : static int driver_nl80211_scan2(void *priv,
   11017                 :            :                                 struct wpa_driver_scan_params *params)
   11018                 :            : {
   11019                 :         24 :         struct i802_bss *bss = priv;
   11020                 :         24 :         return wpa_driver_nl80211_scan(bss, params);
   11021                 :            : }
   11022                 :            : 
   11023                 :            : 
   11024                 :          0 : static int driver_nl80211_deauthenticate(void *priv, const u8 *addr,
   11025                 :            :                                          int reason_code)
   11026                 :            : {
   11027                 :          0 :         struct i802_bss *bss = priv;
   11028                 :          0 :         return wpa_driver_nl80211_deauthenticate(bss, addr, reason_code);
   11029                 :            : }
   11030                 :            : 
   11031                 :            : 
   11032                 :          0 : static int driver_nl80211_authenticate(void *priv,
   11033                 :            :                                        struct wpa_driver_auth_params *params)
   11034                 :            : {
   11035                 :          0 :         struct i802_bss *bss = priv;
   11036                 :          0 :         return wpa_driver_nl80211_authenticate(bss, params);
   11037                 :            : }
   11038                 :            : 
   11039                 :            : 
   11040                 :          0 : static void driver_nl80211_deinit(void *priv)
   11041                 :            : {
   11042                 :          0 :         struct i802_bss *bss = priv;
   11043                 :          0 :         wpa_driver_nl80211_deinit(bss);
   11044                 :          0 : }
   11045                 :            : 
   11046                 :            : 
   11047                 :         17 : static int driver_nl80211_if_remove(void *priv, enum wpa_driver_if_type type,
   11048                 :            :                                     const char *ifname)
   11049                 :            : {
   11050                 :         17 :         struct i802_bss *bss = priv;
   11051                 :         17 :         return wpa_driver_nl80211_if_remove(bss, type, ifname);
   11052                 :            : }
   11053                 :            : 
   11054                 :            : 
   11055                 :       1366 : static int driver_nl80211_send_mlme(void *priv, const u8 *data,
   11056                 :            :                                     size_t data_len, int noack)
   11057                 :            : {
   11058                 :       1366 :         struct i802_bss *bss = priv;
   11059                 :       1366 :         return wpa_driver_nl80211_send_mlme(bss, data, data_len, noack,
   11060                 :            :                                             0, 0, 0, 0);
   11061                 :            : }
   11062                 :            : 
   11063                 :            : 
   11064                 :        618 : static int driver_nl80211_sta_remove(void *priv, const u8 *addr)
   11065                 :            : {
   11066                 :        618 :         struct i802_bss *bss = priv;
   11067                 :        618 :         return wpa_driver_nl80211_sta_remove(bss, addr);
   11068                 :            : }
   11069                 :            : 
   11070                 :            : 
   11071                 :          0 : static int driver_nl80211_set_sta_vlan(void *priv, const u8 *addr,
   11072                 :            :                                        const char *ifname, int vlan_id)
   11073                 :            : {
   11074                 :          0 :         struct i802_bss *bss = priv;
   11075                 :          0 :         return i802_set_sta_vlan(bss, addr, ifname, vlan_id);
   11076                 :            : }
   11077                 :            : 
   11078                 :            : 
   11079                 :          1 : static int driver_nl80211_read_sta_data(void *priv,
   11080                 :            :                                         struct hostap_sta_driver_data *data,
   11081                 :            :                                         const u8 *addr)
   11082                 :            : {
   11083                 :          1 :         struct i802_bss *bss = priv;
   11084                 :          1 :         return i802_read_sta_data(bss, data, addr);
   11085                 :            : }
   11086                 :            : 
   11087                 :            : 
   11088                 :         76 : static int driver_nl80211_send_action(void *priv, unsigned int freq,
   11089                 :            :                                       unsigned int wait_time,
   11090                 :            :                                       const u8 *dst, const u8 *src,
   11091                 :            :                                       const u8 *bssid,
   11092                 :            :                                       const u8 *data, size_t data_len,
   11093                 :            :                                       int no_cck)
   11094                 :            : {
   11095                 :         76 :         struct i802_bss *bss = priv;
   11096                 :         76 :         return wpa_driver_nl80211_send_action(bss, freq, wait_time, dst, src,
   11097                 :            :                                               bssid, data, data_len, no_cck);
   11098                 :            : }
   11099                 :            : 
   11100                 :            : 
   11101                 :          0 : static int driver_nl80211_probe_req_report(void *priv, int report)
   11102                 :            : {
   11103                 :          0 :         struct i802_bss *bss = priv;
   11104                 :          0 :         return wpa_driver_nl80211_probe_req_report(bss, report);
   11105                 :            : }
   11106                 :            : 
   11107                 :            : 
   11108                 :          0 : static int wpa_driver_nl80211_update_ft_ies(void *priv, const u8 *md,
   11109                 :            :                                             const u8 *ies, size_t ies_len)
   11110                 :            : {
   11111                 :            :         int ret;
   11112                 :            :         struct nl_msg *msg;
   11113                 :          0 :         struct i802_bss *bss = priv;
   11114                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
   11115                 :          0 :         u16 mdid = WPA_GET_LE16(md);
   11116                 :            : 
   11117                 :          0 :         msg = nlmsg_alloc();
   11118         [ #  # ]:          0 :         if (!msg)
   11119                 :          0 :                 return -ENOMEM;
   11120                 :            : 
   11121                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Updating FT IEs");
   11122                 :          0 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_UPDATE_FT_IES);
   11123         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
   11124         [ #  # ]:          0 :         NLA_PUT(msg, NL80211_ATTR_IE, ies_len, ies);
   11125         [ #  # ]:          0 :         NLA_PUT_U16(msg, NL80211_ATTR_MDID, mdid);
   11126                 :            : 
   11127                 :          0 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
   11128         [ #  # ]:          0 :         if (ret) {
   11129                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: update_ft_ies failed "
   11130                 :            :                            "err=%d (%s)", ret, strerror(-ret));
   11131                 :            :         }
   11132                 :            : 
   11133                 :          0 :         return ret;
   11134                 :            : 
   11135                 :            : nla_put_failure:
   11136                 :          0 :         nlmsg_free(msg);
   11137                 :          0 :         return -ENOBUFS;
   11138                 :            : }
   11139                 :            : 
   11140                 :            : 
   11141                 :          0 : const u8 * wpa_driver_nl80211_get_macaddr(void *priv)
   11142                 :            : {
   11143                 :          0 :         struct i802_bss *bss = priv;
   11144                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
   11145                 :            : 
   11146         [ #  # ]:          0 :         if (drv->nlmode != NL80211_IFTYPE_P2P_DEVICE)
   11147                 :          0 :                 return NULL;
   11148                 :            : 
   11149                 :          0 :         return bss->addr;
   11150                 :            : }
   11151                 :            : 
   11152                 :            : 
   11153                 :          0 : static const char * scan_state_str(enum scan_states scan_state)
   11154                 :            : {
   11155   [ #  #  #  #  :          0 :         switch (scan_state) {
             #  #  #  #  
                      # ]
   11156                 :            :         case NO_SCAN:
   11157                 :          0 :                 return "NO_SCAN";
   11158                 :            :         case SCAN_REQUESTED:
   11159                 :          0 :                 return "SCAN_REQUESTED";
   11160                 :            :         case SCAN_STARTED:
   11161                 :          0 :                 return "SCAN_STARTED";
   11162                 :            :         case SCAN_COMPLETED:
   11163                 :          0 :                 return "SCAN_COMPLETED";
   11164                 :            :         case SCAN_ABORTED:
   11165                 :          0 :                 return "SCAN_ABORTED";
   11166                 :            :         case SCHED_SCAN_STARTED:
   11167                 :          0 :                 return "SCHED_SCAN_STARTED";
   11168                 :            :         case SCHED_SCAN_STOPPED:
   11169                 :          0 :                 return "SCHED_SCAN_STOPPED";
   11170                 :            :         case SCHED_SCAN_RESULTS:
   11171                 :          0 :                 return "SCHED_SCAN_RESULTS";
   11172                 :            :         }
   11173                 :            : 
   11174                 :          0 :         return "??";
   11175                 :            : }
   11176                 :            : 
   11177                 :            : 
   11178                 :          0 : static int wpa_driver_nl80211_status(void *priv, char *buf, size_t buflen)
   11179                 :            : {
   11180                 :          0 :         struct i802_bss *bss = priv;
   11181                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
   11182                 :            :         int res;
   11183                 :            :         char *pos, *end;
   11184                 :            : 
   11185                 :          0 :         pos = buf;
   11186                 :          0 :         end = buf + buflen;
   11187                 :            : 
   11188 [ #  # ][ #  # ]:          0 :         res = os_snprintf(pos, end - pos,
         [ #  # ][ #  # ]
                 [ #  # ]
   11189                 :            :                           "ifindex=%d\n"
   11190                 :            :                           "ifname=%s\n"
   11191                 :            :                           "brname=%s\n"
   11192                 :            :                           "addr=" MACSTR "\n"
   11193                 :            :                           "freq=%d\n"
   11194                 :            :                           "%s%s%s%s%s",
   11195                 :            :                           bss->ifindex,
   11196                 :          0 :                           bss->ifname,
   11197                 :          0 :                           bss->brname,
   11198                 :          0 :                           MAC2STR(bss->addr),
   11199                 :            :                           bss->freq,
   11200                 :          0 :                           bss->beacon_set ? "beacon_set=1\n" : "",
   11201                 :          0 :                           bss->added_if_into_bridge ?
   11202                 :            :                           "added_if_into_bridge=1\n" : "",
   11203                 :          0 :                           bss->added_bridge ? "added_bridge=1\n" : "",
   11204                 :          0 :                           bss->in_deinit ? "in_deinit=1\n" : "",
   11205                 :          0 :                           bss->if_dynamic ? "if_dynamic=1\n" : "");
   11206 [ #  # ][ #  # ]:          0 :         if (res < 0 || res >= end - pos)
   11207                 :          0 :                 return pos - buf;
   11208                 :          0 :         pos += res;
   11209                 :            : 
   11210         [ #  # ]:          0 :         if (bss->wdev_id_set) {
   11211                 :          0 :                 res = os_snprintf(pos, end - pos, "wdev_id=%llu\n",
   11212                 :          0 :                                   (unsigned long long) bss->wdev_id);
   11213 [ #  # ][ #  # ]:          0 :                 if (res < 0 || res >= end - pos)
   11214                 :          0 :                         return pos - buf;
   11215                 :          0 :                 pos += res;
   11216                 :            :         }
   11217                 :            : 
   11218 [ #  # ][ #  # ]:          0 :         res = os_snprintf(pos, end - pos,
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
                 [ #  # ]
   11219                 :            :                           "phyname=%s\n"
   11220                 :            :                           "drv_ifindex=%d\n"
   11221                 :            :                           "operstate=%d\n"
   11222                 :            :                           "scan_state=%s\n"
   11223                 :            :                           "auth_bssid=" MACSTR "\n"
   11224                 :            :                           "auth_attempt_bssid=" MACSTR "\n"
   11225                 :            :                           "bssid=" MACSTR "\n"
   11226                 :            :                           "prev_bssid=" MACSTR "\n"
   11227                 :            :                           "associated=%d\n"
   11228                 :            :                           "assoc_freq=%u\n"
   11229                 :            :                           "monitor_sock=%d\n"
   11230                 :            :                           "monitor_ifidx=%d\n"
   11231                 :            :                           "monitor_refcount=%d\n"
   11232                 :            :                           "last_mgmt_freq=%u\n"
   11233                 :            :                           "eapol_tx_sock=%d\n"
   11234                 :            :                           "%s%s%s%s%s%s%s%s%s%s%s%s%s",
   11235                 :          0 :                           drv->phyname,
   11236                 :            :                           drv->ifindex,
   11237                 :            :                           drv->operstate,
   11238                 :            :                           scan_state_str(drv->scan_state),
   11239                 :          0 :                           MAC2STR(drv->auth_bssid),
   11240                 :          0 :                           MAC2STR(drv->auth_attempt_bssid),
   11241                 :          0 :                           MAC2STR(drv->bssid),
   11242                 :          0 :                           MAC2STR(drv->prev_bssid),
   11243                 :            :                           drv->associated,
   11244                 :            :                           drv->assoc_freq,
   11245                 :            :                           drv->monitor_sock,
   11246                 :            :                           drv->monitor_ifidx,
   11247                 :            :                           drv->monitor_refcount,
   11248                 :            :                           drv->last_mgmt_freq,
   11249                 :            :                           drv->eapol_tx_sock,
   11250                 :          0 :                           drv->ignore_if_down_event ?
   11251                 :            :                           "ignore_if_down_event=1\n" : "",
   11252                 :          0 :                           drv->scan_complete_events ?
   11253                 :            :                           "scan_complete_events=1\n" : "",
   11254                 :          0 :                           drv->disabled_11b_rates ?
   11255                 :            :                           "disabled_11b_rates=1\n" : "",
   11256                 :          0 :                           drv->pending_remain_on_chan ?
   11257                 :            :                           "pending_remain_on_chan=1\n" : "",
   11258                 :          0 :                           drv->in_interface_list ? "in_interface_list=1\n" : "",
   11259                 :          0 :                           drv->device_ap_sme ? "device_ap_sme=1\n" : "",
   11260                 :          0 :                           drv->poll_command_supported ?
   11261                 :            :                           "poll_command_supported=1\n" : "",
   11262                 :          0 :                           drv->data_tx_status ? "data_tx_status=1\n" : "",
   11263                 :          0 :                           drv->scan_for_auth ? "scan_for_auth=1\n" : "",
   11264                 :          0 :                           drv->retry_auth ? "retry_auth=1\n" : "",
   11265                 :          0 :                           drv->use_monitor ? "use_monitor=1\n" : "",
   11266                 :          0 :                           drv->ignore_next_local_disconnect ?
   11267                 :            :                           "ignore_next_local_disconnect=1\n" : "",
   11268                 :          0 :                           drv->allow_p2p_device ? "allow_p2p_device=1\n" : "");
   11269 [ #  # ][ #  # ]:          0 :         if (res < 0 || res >= end - pos)
   11270                 :          0 :                 return pos - buf;
   11271                 :          0 :         pos += res;
   11272                 :            : 
   11273         [ #  # ]:          0 :         if (drv->has_capability) {
   11274                 :          0 :                 res = os_snprintf(pos, end - pos,
   11275                 :            :                                   "capa.key_mgmt=0x%x\n"
   11276                 :            :                                   "capa.enc=0x%x\n"
   11277                 :            :                                   "capa.auth=0x%x\n"
   11278                 :            :                                   "capa.flags=0x%x\n"
   11279                 :            :                                   "capa.max_scan_ssids=%d\n"
   11280                 :            :                                   "capa.max_sched_scan_ssids=%d\n"
   11281                 :            :                                   "capa.sched_scan_supported=%d\n"
   11282                 :            :                                   "capa.max_match_sets=%d\n"
   11283                 :            :                                   "capa.max_remain_on_chan=%u\n"
   11284                 :            :                                   "capa.max_stations=%u\n"
   11285                 :            :                                   "capa.probe_resp_offloads=0x%x\n"
   11286                 :            :                                   "capa.max_acl_mac_addrs=%u\n"
   11287                 :            :                                   "capa.num_multichan_concurrent=%u\n",
   11288                 :            :                                   drv->capa.key_mgmt,
   11289                 :            :                                   drv->capa.enc,
   11290                 :            :                                   drv->capa.auth,
   11291                 :            :                                   drv->capa.flags,
   11292                 :            :                                   drv->capa.max_scan_ssids,
   11293                 :            :                                   drv->capa.max_sched_scan_ssids,
   11294                 :            :                                   drv->capa.sched_scan_supported,
   11295                 :            :                                   drv->capa.max_match_sets,
   11296                 :            :                                   drv->capa.max_remain_on_chan,
   11297                 :            :                                   drv->capa.max_stations,
   11298                 :            :                                   drv->capa.probe_resp_offloads,
   11299                 :            :                                   drv->capa.max_acl_mac_addrs,
   11300                 :            :                                   drv->capa.num_multichan_concurrent);
   11301 [ #  # ][ #  # ]:          0 :                 if (res < 0 || res >= end - pos)
   11302                 :          0 :                         return pos - buf;
   11303                 :          0 :                 pos += res;
   11304                 :            :         }
   11305                 :            : 
   11306                 :          0 :         return pos - buf;
   11307                 :            : }
   11308                 :            : 
   11309                 :            : 
   11310                 :          0 : static int set_beacon_data(struct nl_msg *msg, struct beacon_data *settings)
   11311                 :            : {
   11312         [ #  # ]:          0 :         if (settings->head)
   11313         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_ATTR_BEACON_HEAD,
   11314                 :            :                         settings->head_len, settings->head);
   11315                 :            : 
   11316         [ #  # ]:          0 :         if (settings->tail)
   11317         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_ATTR_BEACON_TAIL,
   11318                 :            :                         settings->tail_len, settings->tail);
   11319                 :            : 
   11320         [ #  # ]:          0 :         if (settings->beacon_ies)
   11321         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_ATTR_IE,
   11322                 :            :                         settings->beacon_ies_len, settings->beacon_ies);
   11323                 :            : 
   11324         [ #  # ]:          0 :         if (settings->proberesp_ies)
   11325         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_ATTR_IE_PROBE_RESP,
   11326                 :            :                         settings->proberesp_ies_len, settings->proberesp_ies);
   11327                 :            : 
   11328         [ #  # ]:          0 :         if (settings->assocresp_ies)
   11329         [ #  # ]:          0 :                 NLA_PUT(msg,
   11330                 :            :                         NL80211_ATTR_IE_ASSOC_RESP,
   11331                 :            :                         settings->assocresp_ies_len, settings->assocresp_ies);
   11332                 :            : 
   11333         [ #  # ]:          0 :         if (settings->probe_resp)
   11334         [ #  # ]:          0 :                 NLA_PUT(msg, NL80211_ATTR_PROBE_RESP,
   11335                 :            :                         settings->probe_resp_len, settings->probe_resp);
   11336                 :            : 
   11337                 :          0 :         return 0;
   11338                 :            : 
   11339                 :            : nla_put_failure:
   11340                 :          0 :         return -ENOBUFS;
   11341                 :            : }
   11342                 :            : 
   11343                 :            : 
   11344                 :          0 : static int nl80211_switch_channel(void *priv, struct csa_settings *settings)
   11345                 :            : {
   11346                 :            :         struct nl_msg *msg;
   11347                 :          0 :         struct i802_bss *bss = priv;
   11348                 :          0 :         struct wpa_driver_nl80211_data *drv = bss->drv;
   11349                 :            :         struct nlattr *beacon_csa;
   11350                 :          0 :         int ret = -ENOBUFS;
   11351                 :            : 
   11352                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Channel switch request (cs_count=%u block_tx=%u freq=%d width=%d cf1=%d cf2=%d)",
   11353                 :          0 :                    settings->cs_count, settings->block_tx,
   11354                 :            :                    settings->freq_params.freq, settings->freq_params.bandwidth,
   11355                 :            :                    settings->freq_params.center_freq1,
   11356                 :            :                    settings->freq_params.center_freq2);
   11357                 :            : 
   11358         [ #  # ]:          0 :         if (!drv->channel_switch_supported) {
   11359                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Driver does not support channel switch command");
   11360                 :          0 :                 return -EOPNOTSUPP;
   11361                 :            :         }
   11362                 :            : 
   11363 [ #  # ][ #  # ]:          0 :         if ((drv->nlmode != NL80211_IFTYPE_AP) &&
   11364                 :          0 :             (drv->nlmode != NL80211_IFTYPE_P2P_GO))
   11365                 :          0 :                 return -EOPNOTSUPP;
   11366                 :            : 
   11367                 :            :         /* check settings validity */
   11368 [ #  # ][ #  # ]:          0 :         if (!settings->beacon_csa.tail ||
   11369                 :          0 :             ((settings->beacon_csa.tail_len <=
   11370         [ #  # ]:          0 :               settings->counter_offset_beacon) ||
   11371                 :          0 :              (settings->beacon_csa.tail[settings->counter_offset_beacon] !=
   11372                 :          0 :               settings->cs_count)))
   11373                 :          0 :                 return -EINVAL;
   11374                 :            : 
   11375 [ #  # ][ #  # ]:          0 :         if (settings->beacon_csa.probe_resp &&
   11376                 :          0 :             ((settings->beacon_csa.probe_resp_len <=
   11377         [ #  # ]:          0 :               settings->counter_offset_presp) ||
   11378                 :          0 :              (settings->beacon_csa.probe_resp[settings->counter_offset_presp] !=
   11379                 :          0 :               settings->cs_count)))
   11380                 :          0 :                 return -EINVAL;
   11381                 :            : 
   11382                 :          0 :         msg = nlmsg_alloc();
   11383         [ #  # ]:          0 :         if (!msg)
   11384                 :          0 :                 return -ENOMEM;
   11385                 :            : 
   11386                 :          0 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_CHANNEL_SWITCH);
   11387         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
   11388         [ #  # ]:          0 :         NLA_PUT_U32(msg, NL80211_ATTR_CH_SWITCH_COUNT, settings->cs_count);
   11389                 :          0 :         ret = nl80211_put_freq_params(msg, &settings->freq_params);
   11390         [ #  # ]:          0 :         if (ret)
   11391                 :          0 :                 goto error;
   11392                 :            : 
   11393         [ #  # ]:          0 :         if (settings->block_tx)
   11394         [ #  # ]:          0 :                 NLA_PUT_FLAG(msg, NL80211_ATTR_CH_SWITCH_BLOCK_TX);
   11395                 :            : 
   11396                 :            :         /* beacon_after params */
   11397                 :          0 :         ret = set_beacon_data(msg, &settings->beacon_after);
   11398         [ #  # ]:          0 :         if (ret)
   11399                 :          0 :                 goto error;
   11400                 :            : 
   11401                 :            :         /* beacon_csa params */
   11402                 :          0 :         beacon_csa = nla_nest_start(msg, NL80211_ATTR_CSA_IES);
   11403         [ #  # ]:          0 :         if (!beacon_csa)
   11404                 :          0 :                 goto nla_put_failure;
   11405                 :            : 
   11406                 :          0 :         ret = set_beacon_data(msg, &settings->beacon_csa);
   11407         [ #  # ]:          0 :         if (ret)
   11408                 :          0 :                 goto error;
   11409                 :            : 
   11410         [ #  # ]:          0 :         NLA_PUT_U16(msg, NL80211_ATTR_CSA_C_OFF_BEACON,
   11411                 :            :                     settings->counter_offset_beacon);
   11412                 :            : 
   11413         [ #  # ]:          0 :         if (settings->beacon_csa.probe_resp)
   11414         [ #  # ]:          0 :                 NLA_PUT_U16(msg, NL80211_ATTR_CSA_C_OFF_PRESP,
   11415                 :            :                             settings->counter_offset_presp);
   11416                 :            : 
   11417                 :          0 :         nla_nest_end(msg, beacon_csa);
   11418                 :          0 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
   11419         [ #  # ]:          0 :         if (ret) {
   11420                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: switch_channel failed err=%d (%s)",
   11421                 :            :                            ret, strerror(-ret));
   11422                 :            :         }
   11423                 :          0 :         return ret;
   11424                 :            : 
   11425                 :            : nla_put_failure:
   11426                 :          0 :         ret = -ENOBUFS;
   11427                 :            : error:
   11428                 :          0 :         nlmsg_free(msg);
   11429                 :          0 :         wpa_printf(MSG_DEBUG, "nl80211: Could not build channel switch request");
   11430                 :          0 :         return ret;
   11431                 :            : }
   11432                 :            : 
   11433                 :            : 
   11434                 :          2 : static int nl80211_set_qos_map(void *priv, const u8 *qos_map_set,
   11435                 :            :                                u8 qos_map_set_len)
   11436                 :            : {
   11437                 :          2 :         struct i802_bss *bss = priv;
   11438                 :          2 :         struct wpa_driver_nl80211_data *drv = bss->drv;
   11439                 :            :         struct nl_msg *msg;
   11440                 :            :         int ret;
   11441                 :            : 
   11442                 :          2 :         msg = nlmsg_alloc();
   11443         [ -  + ]:          2 :         if (!msg)
   11444                 :          0 :                 return -ENOMEM;
   11445                 :            : 
   11446                 :          2 :         wpa_hexdump(MSG_DEBUG, "nl80211: Setting QoS Map",
   11447                 :            :                     qos_map_set, qos_map_set_len);
   11448                 :            : 
   11449                 :          2 :         nl80211_cmd(drv, msg, 0, NL80211_CMD_SET_QOS_MAP);
   11450         [ +  - ]:          2 :         NLA_PUT_U32(msg, NL80211_ATTR_IFINDEX, drv->ifindex);
   11451         [ +  - ]:          2 :         NLA_PUT(msg, NL80211_ATTR_QOS_MAP, qos_map_set_len, qos_map_set);
   11452                 :            : 
   11453                 :          2 :         ret = send_and_recv_msgs(drv, msg, NULL, NULL);
   11454         [ -  + ]:          2 :         if (ret)
   11455                 :          0 :                 wpa_printf(MSG_DEBUG, "nl80211: Setting QoS Map failed");
   11456                 :            : 
   11457                 :          2 :         return ret;
   11458                 :            : 
   11459                 :            : nla_put_failure:
   11460                 :          0 :         nlmsg_free(msg);
   11461                 :          2 :         return -ENOBUFS;
   11462                 :            : }
   11463                 :            : 
   11464                 :            : 
   11465                 :            : const struct wpa_driver_ops wpa_driver_nl80211_ops = {
   11466                 :            :         .name = "nl80211",
   11467                 :            :         .desc = "Linux nl80211/cfg80211",
   11468                 :            :         .get_bssid = wpa_driver_nl80211_get_bssid,
   11469                 :            :         .get_ssid = wpa_driver_nl80211_get_ssid,
   11470                 :            :         .set_key = driver_nl80211_set_key,
   11471                 :            :         .scan2 = driver_nl80211_scan2,
   11472                 :            :         .sched_scan = wpa_driver_nl80211_sched_scan,
   11473                 :            :         .stop_sched_scan = wpa_driver_nl80211_stop_sched_scan,
   11474                 :            :         .get_scan_results2 = wpa_driver_nl80211_get_scan_results,
   11475                 :            :         .deauthenticate = driver_nl80211_deauthenticate,
   11476                 :            :         .authenticate = driver_nl80211_authenticate,
   11477                 :            :         .associate = wpa_driver_nl80211_associate,
   11478                 :            :         .global_init = nl80211_global_init,
   11479                 :            :         .global_deinit = nl80211_global_deinit,
   11480                 :            :         .init2 = wpa_driver_nl80211_init,
   11481                 :            :         .deinit = driver_nl80211_deinit,
   11482                 :            :         .get_capa = wpa_driver_nl80211_get_capa,
   11483                 :            :         .set_operstate = wpa_driver_nl80211_set_operstate,
   11484                 :            :         .set_supp_port = wpa_driver_nl80211_set_supp_port,
   11485                 :            :         .set_country = wpa_driver_nl80211_set_country,
   11486                 :            :         .get_country = wpa_driver_nl80211_get_country,
   11487                 :            :         .set_ap = wpa_driver_nl80211_set_ap,
   11488                 :            :         .set_acl = wpa_driver_nl80211_set_acl,
   11489                 :            :         .if_add = wpa_driver_nl80211_if_add,
   11490                 :            :         .if_remove = driver_nl80211_if_remove,
   11491                 :            :         .send_mlme = driver_nl80211_send_mlme,
   11492                 :            :         .get_hw_feature_data = wpa_driver_nl80211_get_hw_feature_data,
   11493                 :            :         .sta_add = wpa_driver_nl80211_sta_add,
   11494                 :            :         .sta_remove = driver_nl80211_sta_remove,
   11495                 :            :         .hapd_send_eapol = wpa_driver_nl80211_hapd_send_eapol,
   11496                 :            :         .sta_set_flags = wpa_driver_nl80211_sta_set_flags,
   11497                 :            :         .hapd_init = i802_init,
   11498                 :            :         .hapd_deinit = i802_deinit,
   11499                 :            :         .set_wds_sta = i802_set_wds_sta,
   11500                 :            :         .get_seqnum = i802_get_seqnum,
   11501                 :            :         .flush = i802_flush,
   11502                 :            :         .get_inact_sec = i802_get_inact_sec,
   11503                 :            :         .sta_clear_stats = i802_sta_clear_stats,
   11504                 :            :         .set_rts = i802_set_rts,
   11505                 :            :         .set_frag = i802_set_frag,
   11506                 :            :         .set_tx_queue_params = i802_set_tx_queue_params,
   11507                 :            :         .set_sta_vlan = driver_nl80211_set_sta_vlan,
   11508                 :            :         .sta_deauth = i802_sta_deauth,
   11509                 :            :         .sta_disassoc = i802_sta_disassoc,
   11510                 :            :         .read_sta_data = driver_nl80211_read_sta_data,
   11511                 :            :         .set_freq = i802_set_freq,
   11512                 :            :         .send_action = driver_nl80211_send_action,
   11513                 :            :         .send_action_cancel_wait = wpa_driver_nl80211_send_action_cancel_wait,
   11514                 :            :         .remain_on_channel = wpa_driver_nl80211_remain_on_channel,
   11515                 :            :         .cancel_remain_on_channel =
   11516                 :            :         wpa_driver_nl80211_cancel_remain_on_channel,
   11517                 :            :         .probe_req_report = driver_nl80211_probe_req_report,
   11518                 :            :         .deinit_ap = wpa_driver_nl80211_deinit_ap,
   11519                 :            :         .deinit_p2p_cli = wpa_driver_nl80211_deinit_p2p_cli,
   11520                 :            :         .resume = wpa_driver_nl80211_resume,
   11521                 :            :         .send_ft_action = nl80211_send_ft_action,
   11522                 :            :         .signal_monitor = nl80211_signal_monitor,
   11523                 :            :         .signal_poll = nl80211_signal_poll,
   11524                 :            :         .send_frame = nl80211_send_frame,
   11525                 :            :         .shared_freq = wpa_driver_nl80211_shared_freq,
   11526                 :            :         .set_param = nl80211_set_param,
   11527                 :            :         .get_radio_name = nl80211_get_radio_name,
   11528                 :            :         .add_pmkid = nl80211_add_pmkid,
   11529                 :            :         .remove_pmkid = nl80211_remove_pmkid,
   11530                 :            :         .flush_pmkid = nl80211_flush_pmkid,
   11531                 :            :         .set_rekey_info = nl80211_set_rekey_info,
   11532                 :            :         .poll_client = nl80211_poll_client,
   11533                 :            :         .set_p2p_powersave = nl80211_set_p2p_powersave,
   11534                 :            :         .start_dfs_cac = nl80211_start_radar_detection,
   11535                 :            :         .stop_ap = wpa_driver_nl80211_stop_ap,
   11536                 :            : #ifdef CONFIG_TDLS
   11537                 :            :         .send_tdls_mgmt = nl80211_send_tdls_mgmt,
   11538                 :            :         .tdls_oper = nl80211_tdls_oper,
   11539                 :            : #endif /* CONFIG_TDLS */
   11540                 :            :         .update_ft_ies = wpa_driver_nl80211_update_ft_ies,
   11541                 :            :         .get_mac_addr = wpa_driver_nl80211_get_macaddr,
   11542                 :            :         .get_survey = wpa_driver_nl80211_get_survey,
   11543                 :            :         .status = wpa_driver_nl80211_status,
   11544                 :            :         .switch_channel = nl80211_switch_channel,
   11545                 :            : #ifdef ANDROID_P2P
   11546                 :            :         .set_noa = wpa_driver_set_p2p_noa,
   11547                 :            :         .get_noa = wpa_driver_get_p2p_noa,
   11548                 :            :         .set_ap_wps_ie = wpa_driver_set_ap_wps_p2p_ie,
   11549                 :            : #endif /* ANDROID_P2P */
   11550                 :            : #ifdef ANDROID
   11551                 :            :         .driver_cmd = wpa_driver_nl80211_driver_cmd,
   11552                 :            : #endif /* ANDROID */
   11553                 :            :         .set_qos_map = nl80211_set_qos_map,
   11554                 :            : };

Generated by: LCOV version 1.9