LCOV - code coverage report
Current view: top level - wpa_supplicant - ibss_rsn.c (source / functions) Hit Total Coverage
Test: wpa_supplicant/hostapd combined for hwsim test run 1426431149 Lines: 353 451 78.3 %
Date: 2015-03-15 Functions: 35 39 89.7 %

          Line data    Source code
       1             : /*
       2             :  * wpa_supplicant - IBSS RSN
       3             :  * Copyright (c) 2009-2013, Jouni Malinen <j@w1.fi>
       4             :  *
       5             :  * This software may be distributed under the terms of the BSD license.
       6             :  * See README for more details.
       7             :  */
       8             : 
       9             : #include "includes.h"
      10             : 
      11             : #include "common.h"
      12             : #include "common/wpa_ctrl.h"
      13             : #include "utils/eloop.h"
      14             : #include "l2_packet/l2_packet.h"
      15             : #include "rsn_supp/wpa.h"
      16             : #include "rsn_supp/wpa_ie.h"
      17             : #include "ap/wpa_auth.h"
      18             : #include "wpa_supplicant_i.h"
      19             : #include "driver_i.h"
      20             : #include "common/ieee802_11_defs.h"
      21             : #include "ibss_rsn.h"
      22             : 
      23             : 
      24             : static void ibss_rsn_auth_timeout(void *eloop_ctx, void *timeout_ctx);
      25             : 
      26             : 
      27         297 : static struct ibss_rsn_peer * ibss_rsn_get_peer(struct ibss_rsn *ibss_rsn,
      28             :                                                 const u8 *addr)
      29             : {
      30             :         struct ibss_rsn_peer *peer;
      31             : 
      32         341 :         for (peer = ibss_rsn->peers; peer; peer = peer->next)
      33         315 :                 if (os_memcmp(addr, peer->addr, ETH_ALEN) == 0)
      34         271 :                         break;
      35         297 :         return peer;
      36             : }
      37             : 
      38             : 
      39          14 : static void ibss_rsn_free(struct ibss_rsn_peer *peer)
      40             : {
      41          14 :         eloop_cancel_timeout(ibss_rsn_auth_timeout, peer, NULL);
      42          14 :         wpa_auth_sta_deinit(peer->auth);
      43          14 :         wpa_sm_deinit(peer->supp);
      44          14 :         os_free(peer);
      45          14 : }
      46             : 
      47             : 
      48          52 : static void supp_set_state(void *ctx, enum wpa_states state)
      49             : {
      50          52 :         struct ibss_rsn_peer *peer = ctx;
      51          52 :         peer->supp_state = state;
      52          52 : }
      53             : 
      54             : 
      55           0 : static enum wpa_states supp_get_state(void *ctx)
      56             : {
      57           0 :         struct ibss_rsn_peer *peer = ctx;
      58           0 :         return peer->supp_state;
      59             : }
      60             : 
      61             : 
      62          28 : static int supp_ether_send(void *ctx, const u8 *dest, u16 proto, const u8 *buf,
      63             :                            size_t len)
      64             : {
      65          28 :         struct ibss_rsn_peer *peer = ctx;
      66          28 :         struct wpa_supplicant *wpa_s = peer->ibss_rsn->wpa_s;
      67             : 
      68         196 :         wpa_printf(MSG_DEBUG, "SUPP: %s(dest=" MACSTR " proto=0x%04x "
      69             :                    "len=%lu)",
      70         168 :                    __func__, MAC2STR(dest), proto, (unsigned long) len);
      71             : 
      72          28 :         if (wpa_s->l2)
      73          28 :                 return l2_packet_send(wpa_s->l2, dest, proto, buf, len);
      74             : 
      75           0 :         return -1;
      76             : }
      77             : 
      78             : 
      79          28 : static u8 * supp_alloc_eapol(void *ctx, u8 type, const void *data,
      80             :                              u16 data_len, size_t *msg_len, void **data_pos)
      81             : {
      82             :         struct ieee802_1x_hdr *hdr;
      83             : 
      84          28 :         wpa_printf(MSG_DEBUG, "SUPP: %s(type=%d data_len=%d)",
      85             :                    __func__, type, data_len);
      86             : 
      87          28 :         *msg_len = sizeof(*hdr) + data_len;
      88          28 :         hdr = os_malloc(*msg_len);
      89          28 :         if (hdr == NULL)
      90           0 :                 return NULL;
      91             : 
      92          28 :         hdr->version = 2;
      93          28 :         hdr->type = type;
      94          28 :         hdr->length = host_to_be16(data_len);
      95             : 
      96          28 :         if (data)
      97           0 :                 os_memcpy(hdr + 1, data, data_len);
      98             :         else
      99          28 :                 os_memset(hdr + 1, 0, data_len);
     100             : 
     101          28 :         if (data_pos)
     102          28 :                 *data_pos = hdr + 1;
     103             : 
     104          28 :         return (u8 *) hdr;
     105             : }
     106             : 
     107             : 
     108          12 : static int supp_get_beacon_ie(void *ctx)
     109             : {
     110          12 :         struct ibss_rsn_peer *peer = ctx;
     111             : 
     112          12 :         wpa_printf(MSG_DEBUG, "SUPP: %s", __func__);
     113             :         /* TODO: get correct RSN IE */
     114          12 :         return wpa_sm_set_ap_rsn_ie(peer->supp,
     115             :                                     (u8 *) "\x30\x14\x01\x00"
     116             :                                     "\x00\x0f\xac\x04"
     117             :                                     "\x01\x00\x00\x0f\xac\x04"
     118             :                                     "\x01\x00\x00\x0f\xac\x02"
     119             :                                     "\x00\x00", 22);
     120             : }
     121             : 
     122             : 
     123          54 : static void ibss_check_rsn_completed(struct ibss_rsn_peer *peer)
     124             : {
     125          54 :         struct wpa_supplicant *wpa_s = peer->ibss_rsn->wpa_s;
     126             : 
     127          54 :         if ((peer->authentication_status &
     128             :              (IBSS_RSN_SET_PTK_SUPP | IBSS_RSN_SET_PTK_AUTH)) !=
     129             :             (IBSS_RSN_SET_PTK_SUPP | IBSS_RSN_SET_PTK_AUTH))
     130          30 :                 return;
     131          24 :         if (peer->authentication_status & IBSS_RSN_REPORTED_PTK)
     132          12 :                 return;
     133          12 :         peer->authentication_status |= IBSS_RSN_REPORTED_PTK;
     134          72 :         wpa_msg(wpa_s, MSG_INFO, IBSS_RSN_COMPLETED MACSTR,
     135          72 :                 MAC2STR(peer->addr));
     136             : }
     137             : 
     138             : 
     139          24 : static int supp_set_key(void *ctx, enum wpa_alg alg,
     140             :                         const u8 *addr, int key_idx, int set_tx,
     141             :                         const u8 *seq, size_t seq_len,
     142             :                         const u8 *key, size_t key_len)
     143             : {
     144          24 :         struct ibss_rsn_peer *peer = ctx;
     145             : 
     146         144 :         wpa_printf(MSG_DEBUG, "SUPP: %s(alg=%d addr=" MACSTR " key_idx=%d "
     147             :                    "set_tx=%d)",
     148         144 :                    __func__, alg, MAC2STR(addr), key_idx, set_tx);
     149          24 :         wpa_hexdump(MSG_DEBUG, "SUPP: set_key - seq", seq, seq_len);
     150          24 :         wpa_hexdump_key(MSG_DEBUG, "SUPP: set_key - key", key, key_len);
     151             : 
     152          24 :         if (key_idx == 0) {
     153          12 :                 peer->authentication_status |= IBSS_RSN_SET_PTK_SUPP;
     154          12 :                 ibss_check_rsn_completed(peer);
     155             :                 /*
     156             :                  * In IBSS RSN, the pairwise key from the 4-way handshake
     157             :                  * initiated by the peer with highest MAC address is used.
     158             :                  */
     159          12 :                 if (os_memcmp(peer->ibss_rsn->wpa_s->own_addr, peer->addr,
     160             :                               ETH_ALEN) > 0) {
     161           6 :                         wpa_printf(MSG_DEBUG, "SUPP: Do not use this PTK");
     162           6 :                         return 0;
     163             :                 }
     164             :         }
     165             : 
     166          18 :         if (is_broadcast_ether_addr(addr))
     167          12 :                 addr = peer->addr;
     168          18 :         return wpa_drv_set_key(peer->ibss_rsn->wpa_s, alg, addr, key_idx,
     169             :                                set_tx, seq, seq_len, key, key_len);
     170             : }
     171             : 
     172             : 
     173          16 : static void * supp_get_network_ctx(void *ctx)
     174             : {
     175          16 :         struct ibss_rsn_peer *peer = ctx;
     176          16 :         return wpa_supplicant_get_ssid(peer->ibss_rsn->wpa_s);
     177             : }
     178             : 
     179             : 
     180          24 : static int supp_mlme_setprotection(void *ctx, const u8 *addr,
     181             :                                    int protection_type, int key_type)
     182             : {
     183         144 :         wpa_printf(MSG_DEBUG, "SUPP: %s(addr=" MACSTR " protection_type=%d "
     184             :                    "key_type=%d)",
     185         144 :                    __func__, MAC2STR(addr), protection_type, key_type);
     186          24 :         return 0;
     187             : }
     188             : 
     189             : 
     190          12 : static void supp_cancel_auth_timeout(void *ctx)
     191             : {
     192          12 :         wpa_printf(MSG_DEBUG, "SUPP: %s", __func__);
     193          12 : }
     194             : 
     195             : 
     196           0 : static void supp_deauthenticate(void * ctx, int reason_code)
     197             : {
     198           0 :         wpa_printf(MSG_DEBUG, "SUPP: %s (TODO)", __func__);
     199           0 : }
     200             : 
     201             : 
     202          14 : static int ibss_rsn_supp_init(struct ibss_rsn_peer *peer, const u8 *own_addr,
     203             :                               const u8 *psk)
     204             : {
     205          14 :         struct wpa_sm_ctx *ctx = os_zalloc(sizeof(*ctx));
     206          14 :         if (ctx == NULL)
     207           0 :                 return -1;
     208             : 
     209          14 :         ctx->ctx = peer;
     210          14 :         ctx->msg_ctx = peer->ibss_rsn->wpa_s;
     211          14 :         ctx->set_state = supp_set_state;
     212          14 :         ctx->get_state = supp_get_state;
     213          14 :         ctx->ether_send = supp_ether_send;
     214          14 :         ctx->get_beacon_ie = supp_get_beacon_ie;
     215          14 :         ctx->alloc_eapol = supp_alloc_eapol;
     216          14 :         ctx->set_key = supp_set_key;
     217          14 :         ctx->get_network_ctx = supp_get_network_ctx;
     218          14 :         ctx->mlme_setprotection = supp_mlme_setprotection;
     219          14 :         ctx->cancel_auth_timeout = supp_cancel_auth_timeout;
     220          14 :         ctx->deauthenticate = supp_deauthenticate;
     221          14 :         peer->supp = wpa_sm_init(ctx);
     222          14 :         if (peer->supp == NULL) {
     223           0 :                 wpa_printf(MSG_DEBUG, "SUPP: wpa_sm_init() failed");
     224           0 :                 return -1;
     225             :         }
     226             : 
     227          14 :         wpa_sm_set_own_addr(peer->supp, own_addr);
     228          14 :         wpa_sm_set_param(peer->supp, WPA_PARAM_RSN_ENABLED, 1);
     229          14 :         wpa_sm_set_param(peer->supp, WPA_PARAM_PROTO, WPA_PROTO_RSN);
     230          14 :         wpa_sm_set_param(peer->supp, WPA_PARAM_PAIRWISE, WPA_CIPHER_CCMP);
     231          14 :         wpa_sm_set_param(peer->supp, WPA_PARAM_GROUP, WPA_CIPHER_CCMP);
     232          14 :         wpa_sm_set_param(peer->supp, WPA_PARAM_KEY_MGMT, WPA_KEY_MGMT_PSK);
     233          14 :         wpa_sm_set_pmk(peer->supp, psk, PMK_LEN, NULL);
     234             : 
     235          14 :         peer->supp_ie_len = sizeof(peer->supp_ie);
     236          14 :         if (wpa_sm_set_assoc_wpa_ie_default(peer->supp, peer->supp_ie,
     237             :                                             &peer->supp_ie_len) < 0) {
     238           0 :                 wpa_printf(MSG_DEBUG, "SUPP: wpa_sm_set_assoc_wpa_ie_default()"
     239             :                            " failed");
     240           0 :                 return -1;
     241             :         }
     242             : 
     243          14 :         wpa_sm_notify_assoc(peer->supp, peer->addr);
     244             : 
     245          14 :         return 0;
     246             : }
     247             : 
     248             : 
     249         106 : static void auth_logger(void *ctx, const u8 *addr, logger_level level,
     250             :                         const char *txt)
     251             : {
     252         106 :         if (addr)
     253         636 :                 wpa_printf(MSG_DEBUG, "AUTH: " MACSTR " - %s",
     254         636 :                            MAC2STR(addr), txt);
     255             :         else
     256           0 :                 wpa_printf(MSG_DEBUG, "AUTH: %s", txt);
     257         106 : }
     258             : 
     259             : 
     260          40 : static const u8 * auth_get_psk(void *ctx, const u8 *addr,
     261             :                                const u8 *p2p_dev_addr, const u8 *prev_psk)
     262             : {
     263          40 :         struct ibss_rsn *ibss_rsn = ctx;
     264         240 :         wpa_printf(MSG_DEBUG, "AUTH: %s (addr=" MACSTR " prev_psk=%p)",
     265         240 :                    __func__, MAC2STR(addr), prev_psk);
     266          40 :         if (prev_psk)
     267           0 :                 return NULL;
     268          40 :         return ibss_rsn->psk;
     269             : }
     270             : 
     271             : 
     272          32 : static int auth_send_eapol(void *ctx, const u8 *addr, const u8 *data,
     273             :                            size_t data_len, int encrypt)
     274             : {
     275          32 :         struct ibss_rsn *ibss_rsn = ctx;
     276          32 :         struct wpa_supplicant *wpa_s = ibss_rsn->wpa_s;
     277             : 
     278         192 :         wpa_printf(MSG_DEBUG, "AUTH: %s(addr=" MACSTR " data_len=%lu "
     279             :                    "encrypt=%d)",
     280         192 :                    __func__, MAC2STR(addr), (unsigned long) data_len, encrypt);
     281             : 
     282          32 :         if (wpa_s->l2)
     283          32 :                 return l2_packet_send(wpa_s->l2, addr, ETH_P_EAPOL, data,
     284             :                                       data_len);
     285             : 
     286           0 :         return -1;
     287             : }
     288             : 
     289             : 
     290          54 : static int auth_set_key(void *ctx, int vlan_id, enum wpa_alg alg,
     291             :                         const u8 *addr, int idx, u8 *key, size_t key_len)
     292             : {
     293          54 :         struct ibss_rsn *ibss_rsn = ctx;
     294             :         u8 seq[6];
     295             : 
     296          54 :         os_memset(seq, 0, sizeof(seq));
     297             : 
     298          54 :         if (addr) {
     299         324 :                 wpa_printf(MSG_DEBUG, "AUTH: %s(alg=%d addr=" MACSTR
     300             :                            " key_idx=%d)",
     301         324 :                            __func__, alg, MAC2STR(addr), idx);
     302             :         } else {
     303           0 :                 wpa_printf(MSG_DEBUG, "AUTH: %s(alg=%d key_idx=%d)",
     304             :                            __func__, alg, idx);
     305             :         }
     306          54 :         wpa_hexdump_key(MSG_DEBUG, "AUTH: set_key - key", key, key_len);
     307             : 
     308          54 :         if (idx == 0) {
     309          42 :                 if (addr) {
     310             :                         struct ibss_rsn_peer *peer;
     311          42 :                         peer = ibss_rsn_get_peer(ibss_rsn, addr);
     312          42 :                         if (peer) {
     313          42 :                                 peer->authentication_status |=
     314             :                                         IBSS_RSN_SET_PTK_AUTH;
     315          42 :                                 ibss_check_rsn_completed(peer);
     316             :                         }
     317             :                 }
     318             :                 /*
     319             :                  * In IBSS RSN, the pairwise key from the 4-way handshake
     320             :                  * initiated by the peer with highest MAC address is used.
     321             :                  */
     322          84 :                 if (addr == NULL ||
     323          42 :                     os_memcmp(ibss_rsn->wpa_s->own_addr, addr, ETH_ALEN) < 0) {
     324          21 :                         wpa_printf(MSG_DEBUG, "AUTH: Do not use this PTK");
     325          21 :                         return 0;
     326             :                 }
     327             :         }
     328             : 
     329          33 :         return wpa_drv_set_key(ibss_rsn->wpa_s, alg, addr, idx,
     330             :                                1, seq, 6, key, key_len);
     331             : }
     332             : 
     333             : 
     334           2 : static void ibss_rsn_disconnect(void *ctx, const u8 *addr, u16 reason)
     335             : {
     336           2 :         struct ibss_rsn *ibss_rsn = ctx;
     337           2 :         wpa_drv_sta_deauth(ibss_rsn->wpa_s, addr, reason);
     338           2 : }
     339             : 
     340             : 
     341           0 : static int auth_for_each_sta(void *ctx, int (*cb)(struct wpa_state_machine *sm,
     342             :                                                   void *ctx),
     343             :                              void *cb_ctx)
     344             : {
     345           0 :         struct ibss_rsn *ibss_rsn = ctx;
     346             :         struct ibss_rsn_peer *peer;
     347             : 
     348           0 :         wpa_printf(MSG_DEBUG, "AUTH: for_each_sta");
     349             : 
     350           0 :         for (peer = ibss_rsn->peers; peer; peer = peer->next) {
     351           0 :                 if (peer->auth && cb(peer->auth, cb_ctx))
     352           0 :                         return 1;
     353             :         }
     354             : 
     355           0 :         return 0;
     356             : }
     357             : 
     358             : 
     359          28 : static void ibss_set_sta_authorized(struct ibss_rsn *ibss_rsn,
     360             :                                     struct ibss_rsn_peer *peer, int authorized)
     361             : {
     362             :         int res;
     363             : 
     364          28 :         if (authorized) {
     365          12 :                 res = wpa_drv_sta_set_flags(ibss_rsn->wpa_s, peer->addr,
     366             :                                             WPA_STA_AUTHORIZED,
     367             :                                             WPA_STA_AUTHORIZED, ~0);
     368          72 :                 wpa_printf(MSG_DEBUG, "AUTH: " MACSTR " authorizing port",
     369          72 :                            MAC2STR(peer->addr));
     370             :         } else {
     371          16 :                 res = wpa_drv_sta_set_flags(ibss_rsn->wpa_s, peer->addr,
     372             :                                             0, 0, ~WPA_STA_AUTHORIZED);
     373          96 :                 wpa_printf(MSG_DEBUG, "AUTH: " MACSTR " unauthorizing port",
     374          96 :                            MAC2STR(peer->addr));
     375             :         }
     376             : 
     377          28 :         if (res && errno != ENOENT) {
     378           0 :                 wpa_printf(MSG_DEBUG, "Could not set station " MACSTR " flags "
     379             :                            "for kernel driver (errno=%d)",
     380           0 :                            MAC2STR(peer->addr), errno);
     381             :         }
     382          28 : }
     383             : 
     384             : 
     385         156 : static void auth_set_eapol(void *ctx, const u8 *addr,
     386             :                                        wpa_eapol_variable var, int value)
     387             : {
     388         156 :         struct ibss_rsn *ibss_rsn = ctx;
     389         156 :         struct ibss_rsn_peer *peer = ibss_rsn_get_peer(ibss_rsn, addr);
     390             : 
     391         156 :         if (peer == NULL)
     392         156 :                 return;
     393             : 
     394         156 :         switch (var) {
     395             :         case WPA_EAPOL_authorized:
     396          28 :                 ibss_set_sta_authorized(ibss_rsn, peer, value);
     397          28 :                 break;
     398             :         default:
     399             :                 /* do not handle any other event */
     400         128 :                 wpa_printf(MSG_DEBUG, "AUTH: eapol event not handled %d", var);
     401         128 :                 break;
     402             :         }
     403             : }
     404             : 
     405             : 
     406           6 : static int ibss_rsn_auth_init_group(struct ibss_rsn *ibss_rsn,
     407             :                                     const u8 *own_addr)
     408             : {
     409             :         struct wpa_auth_config conf;
     410             :         struct wpa_auth_callbacks cb;
     411             : 
     412           6 :         wpa_printf(MSG_DEBUG, "AUTH: Initializing group state machine");
     413             : 
     414           6 :         os_memset(&conf, 0, sizeof(conf));
     415           6 :         conf.wpa = 2;
     416           6 :         conf.wpa_key_mgmt = WPA_KEY_MGMT_PSK;
     417           6 :         conf.wpa_pairwise = WPA_CIPHER_CCMP;
     418           6 :         conf.rsn_pairwise = WPA_CIPHER_CCMP;
     419           6 :         conf.wpa_group = WPA_CIPHER_CCMP;
     420           6 :         conf.eapol_version = 2;
     421           6 :         conf.wpa_group_rekey = 600;
     422             : 
     423           6 :         os_memset(&cb, 0, sizeof(cb));
     424           6 :         cb.ctx = ibss_rsn;
     425           6 :         cb.logger = auth_logger;
     426           6 :         cb.set_eapol = auth_set_eapol;
     427           6 :         cb.send_eapol = auth_send_eapol;
     428           6 :         cb.get_psk = auth_get_psk;
     429           6 :         cb.set_key = auth_set_key;
     430           6 :         cb.for_each_sta = auth_for_each_sta;
     431           6 :         cb.disconnect = ibss_rsn_disconnect;
     432             : 
     433           6 :         ibss_rsn->auth_group = wpa_init(own_addr, &conf, &cb);
     434           6 :         if (ibss_rsn->auth_group == NULL) {
     435           0 :                 wpa_printf(MSG_DEBUG, "AUTH: wpa_init() failed");
     436           0 :                 return -1;
     437             :         }
     438             : 
     439           6 :         wpa_init_keys(ibss_rsn->auth_group);
     440             : 
     441           6 :         return 0;
     442             : }
     443             : 
     444             : 
     445          14 : static int ibss_rsn_auth_init(struct ibss_rsn *ibss_rsn,
     446             :                               struct ibss_rsn_peer *peer)
     447             : {
     448          14 :         peer->auth = wpa_auth_sta_init(ibss_rsn->auth_group, peer->addr, NULL);
     449          14 :         if (peer->auth == NULL) {
     450           0 :                 wpa_printf(MSG_DEBUG, "AUTH: wpa_auth_sta_init() failed");
     451           0 :                 return -1;
     452             :         }
     453             : 
     454             :         /* TODO: get peer RSN IE with Probe Request */
     455          14 :         if (wpa_validate_wpa_ie(ibss_rsn->auth_group, peer->auth,
     456             :                                 (u8 *) "\x30\x14\x01\x00"
     457             :                                 "\x00\x0f\xac\x04"
     458             :                                 "\x01\x00\x00\x0f\xac\x04"
     459             :                                 "\x01\x00\x00\x0f\xac\x02"
     460             :                                 "\x00\x00", 22, NULL, 0) !=
     461             :             WPA_IE_OK) {
     462           0 :                 wpa_printf(MSG_DEBUG, "AUTH: wpa_validate_wpa_ie() failed");
     463           0 :                 return -1;
     464             :         }
     465             : 
     466          14 :         if (wpa_auth_sm_event(peer->auth, WPA_ASSOC))
     467           0 :                 return -1;
     468             : 
     469          14 :         if (wpa_auth_sta_associated(ibss_rsn->auth_group, peer->auth))
     470           0 :                 return -1;
     471             : 
     472          14 :         return 0;
     473             : }
     474             : 
     475             : 
     476          20 : static int ibss_rsn_send_auth(struct ibss_rsn *ibss_rsn, const u8 *da, int seq)
     477             : {
     478             :         struct ieee80211_mgmt auth;
     479          20 :         const size_t auth_length = IEEE80211_HDRLEN + sizeof(auth.u.auth);
     480          20 :         struct wpa_supplicant *wpa_s = ibss_rsn->wpa_s;
     481             : 
     482          20 :         if (wpa_s->driver->send_frame == NULL)
     483           0 :                 return -1;
     484             : 
     485          20 :         os_memset(&auth, 0, sizeof(auth));
     486             : 
     487          20 :         auth.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
     488             :                                           WLAN_FC_STYPE_AUTH);
     489          20 :         os_memcpy(auth.da, da, ETH_ALEN);
     490          20 :         os_memcpy(auth.sa, wpa_s->own_addr, ETH_ALEN);
     491          20 :         os_memcpy(auth.bssid, wpa_s->bssid, ETH_ALEN);
     492             : 
     493          20 :         auth.u.auth.auth_alg = host_to_le16(WLAN_AUTH_OPEN);
     494          20 :         auth.u.auth.auth_transaction = host_to_le16(seq);
     495          20 :         auth.u.auth.status_code = host_to_le16(WLAN_STATUS_SUCCESS);
     496             : 
     497         120 :         wpa_printf(MSG_DEBUG, "RSN: IBSS TX Auth frame (SEQ %d) to " MACSTR,
     498         120 :                    seq, MAC2STR(da));
     499             : 
     500          20 :         return wpa_s->driver->send_frame(wpa_s->drv_priv, (u8 *) &auth,
     501             :                                          auth_length, 0);
     502             : }
     503             : 
     504             : 
     505          44 : static int ibss_rsn_is_auth_started(struct ibss_rsn_peer * peer)
     506             : {
     507          44 :         return peer->authentication_status &
     508             :                (IBSS_RSN_AUTH_BY_US | IBSS_RSN_AUTH_EAPOL_BY_US);
     509             : }
     510             : 
     511             : 
     512             : static struct ibss_rsn_peer *
     513          14 : ibss_rsn_peer_init(struct ibss_rsn *ibss_rsn, const u8 *addr)
     514             : {
     515             :         struct ibss_rsn_peer *peer;
     516          14 :         if (ibss_rsn == NULL)
     517           0 :                 return NULL;
     518             : 
     519          14 :         peer = ibss_rsn_get_peer(ibss_rsn, addr);
     520          14 :         if (peer) {
     521           0 :                 wpa_printf(MSG_DEBUG, "RSN: IBSS Supplicant for peer "MACSTR
     522           0 :                            " already running", MAC2STR(addr));
     523           0 :                 return peer;
     524             :         }
     525             : 
     526          84 :         wpa_printf(MSG_DEBUG, "RSN: Starting IBSS Supplicant for peer "MACSTR,
     527          84 :                    MAC2STR(addr));
     528             : 
     529          14 :         peer = os_zalloc(sizeof(*peer));
     530          14 :         if (peer == NULL) {
     531           0 :                 wpa_printf(MSG_DEBUG, "RSN: Could not allocate memory.");
     532           0 :                 return NULL;
     533             :         }
     534             : 
     535          14 :         peer->ibss_rsn = ibss_rsn;
     536          14 :         os_memcpy(peer->addr, addr, ETH_ALEN);
     537          14 :         peer->authentication_status = IBSS_RSN_AUTH_NOT_AUTHENTICATED;
     538             : 
     539          14 :         if (ibss_rsn_supp_init(peer, ibss_rsn->wpa_s->own_addr,
     540          14 :                                ibss_rsn->psk) < 0) {
     541           0 :                 ibss_rsn_free(peer);
     542           0 :                 return NULL;
     543             :         }
     544             : 
     545          14 :         peer->next = ibss_rsn->peers;
     546          14 :         ibss_rsn->peers = peer;
     547             : 
     548          14 :         return peer;
     549             : }
     550             : 
     551             : 
     552           0 : static void ibss_rsn_auth_timeout(void *eloop_ctx, void *timeout_ctx)
     553             : {
     554           0 :         struct ibss_rsn_peer *peer = eloop_ctx;
     555             : 
     556             :         /*
     557             :          * Assume peer does not support Authentication exchange or the frame was
     558             :          * lost somewhere - start EAPOL Authenticator.
     559             :          */
     560           0 :         wpa_printf(MSG_DEBUG,
     561             :                    "RSN: Timeout on waiting Authentication frame response from "
     562           0 :                    MACSTR " - start authenticator", MAC2STR(peer->addr));
     563             : 
     564           0 :         peer->authentication_status |= IBSS_RSN_AUTH_BY_US;
     565           0 :         ibss_rsn_auth_init(peer->ibss_rsn, peer);
     566           0 : }
     567             : 
     568             : 
     569          13 : int ibss_rsn_start(struct ibss_rsn *ibss_rsn, const u8 *addr)
     570             : {
     571             :         struct ibss_rsn_peer *peer;
     572             :         int res;
     573             : 
     574             :         /* if the peer already exists, exit immediately */
     575          13 :         peer = ibss_rsn_get_peer(ibss_rsn, addr);
     576          13 :         if (peer)
     577           3 :                 return 0;
     578             : 
     579          10 :         peer = ibss_rsn_peer_init(ibss_rsn, addr);
     580          10 :         if (peer == NULL)
     581           0 :                 return -1;
     582             : 
     583             :         /* Open Authentication: send first Authentication frame */
     584          10 :         res = ibss_rsn_send_auth(ibss_rsn, addr, 1);
     585          10 :         if (res) {
     586             :                 /*
     587             :                  * The driver may not support Authentication frame exchange in
     588             :                  * IBSS. Ignore authentication and go through EAPOL exchange.
     589             :                  */
     590           0 :                 peer->authentication_status |= IBSS_RSN_AUTH_BY_US;
     591           0 :                 return ibss_rsn_auth_init(ibss_rsn, peer);
     592             :         } else {
     593          10 :                 os_get_reltime(&peer->own_auth_tx);
     594          10 :                 eloop_register_timeout(1, 0, ibss_rsn_auth_timeout, peer, NULL);
     595             :         }
     596             : 
     597          10 :         return 0;
     598             : }
     599             : 
     600             : 
     601          20 : static int ibss_rsn_peer_authenticated(struct ibss_rsn *ibss_rsn,
     602             :                                        struct ibss_rsn_peer *peer, int reason)
     603             : {
     604             :         int already_started;
     605             : 
     606          20 :         if (ibss_rsn == NULL || peer == NULL)
     607           0 :                 return -1;
     608             : 
     609          20 :         already_started = ibss_rsn_is_auth_started(peer);
     610          20 :         peer->authentication_status |= reason;
     611             : 
     612          20 :         if (already_started) {
     613          36 :                 wpa_printf(MSG_DEBUG, "RSN: IBSS Authenticator already "
     614          36 :                            "started for peer " MACSTR, MAC2STR(peer->addr));
     615           6 :                 return 0;
     616             :         }
     617             : 
     618          84 :         wpa_printf(MSG_DEBUG, "RSN: Starting IBSS Authenticator "
     619          84 :                    "for now-authenticated peer " MACSTR, MAC2STR(peer->addr));
     620             : 
     621          14 :         return ibss_rsn_auth_init(ibss_rsn, peer);
     622             : }
     623             : 
     624             : 
     625           4 : void ibss_rsn_stop(struct ibss_rsn *ibss_rsn, const u8 *peermac)
     626             : {
     627             :         struct ibss_rsn_peer *peer, *prev;
     628             : 
     629           4 :         if (ibss_rsn == NULL)
     630           4 :                 return;
     631             : 
     632           4 :         if (peermac == NULL) {
     633             :                 /* remove all peers */
     634           0 :                 wpa_printf(MSG_DEBUG, "%s: Remove all peers", __func__);
     635           0 :                 peer = ibss_rsn->peers;
     636           0 :                 while (peer) {
     637           0 :                         prev = peer;
     638           0 :                         peer = peer->next;
     639           0 :                         ibss_rsn_free(prev);
     640           0 :                         ibss_rsn->peers = peer;
     641             :                 }
     642             :         } else {
     643             :                 /* remove specific peer */
     644          24 :                 wpa_printf(MSG_DEBUG, "%s: Remove specific peer " MACSTR,
     645          24 :                            __func__, MAC2STR(peermac));
     646             : 
     647           9 :                 for (prev = NULL, peer = ibss_rsn->peers; peer != NULL;
     648           1 :                      prev = peer, peer = peer->next) {
     649           5 :                         if (os_memcmp(peermac, peer->addr, ETH_ALEN) == 0) {
     650           4 :                                 if (prev == NULL)
     651           3 :                                         ibss_rsn->peers = peer->next;
     652             :                                 else
     653           1 :                                         prev->next = peer->next;
     654           4 :                                 ibss_rsn_free(peer);
     655           4 :                                 wpa_printf(MSG_DEBUG, "%s: Successfully "
     656             :                                            "removed a specific peer",
     657             :                                            __func__);
     658           4 :                                 break;
     659             :                         }
     660             :                 }
     661             :         }
     662             : }
     663             : 
     664             : 
     665           6 : struct ibss_rsn * ibss_rsn_init(struct wpa_supplicant *wpa_s)
     666             : {
     667             :         struct ibss_rsn *ibss_rsn;
     668             : 
     669           6 :         ibss_rsn = os_zalloc(sizeof(*ibss_rsn));
     670           6 :         if (ibss_rsn == NULL)
     671           0 :                 return NULL;
     672           6 :         ibss_rsn->wpa_s = wpa_s;
     673             : 
     674           6 :         if (ibss_rsn_auth_init_group(ibss_rsn, wpa_s->own_addr) < 0) {
     675           0 :                 ibss_rsn_deinit(ibss_rsn);
     676           0 :                 return NULL;
     677             :         }
     678             : 
     679           6 :         return ibss_rsn;
     680             : }
     681             : 
     682             : 
     683        8184 : void ibss_rsn_deinit(struct ibss_rsn *ibss_rsn)
     684             : {
     685             :         struct ibss_rsn_peer *peer, *prev;
     686             : 
     687        8184 :         if (ibss_rsn == NULL)
     688       16362 :                 return;
     689             : 
     690           6 :         peer = ibss_rsn->peers;
     691          22 :         while (peer) {
     692          10 :                 prev = peer;
     693          10 :                 peer = peer->next;
     694          10 :                 ibss_rsn_free(prev);
     695             :         }
     696             : 
     697           6 :         wpa_deinit(ibss_rsn->auth_group);
     698           6 :         os_free(ibss_rsn);
     699             : 
     700             : }
     701             : 
     702             : 
     703          52 : static int ibss_rsn_eapol_dst_supp(const u8 *buf, size_t len)
     704             : {
     705             :         const struct ieee802_1x_hdr *hdr;
     706             :         const struct wpa_eapol_key *key;
     707             :         u16 key_info;
     708             :         size_t plen;
     709             : 
     710             :         /* TODO: Support other EAPOL packets than just EAPOL-Key */
     711             : 
     712          52 :         if (len < sizeof(*hdr) + sizeof(*key))
     713           0 :                 return -1;
     714             : 
     715          52 :         hdr = (const struct ieee802_1x_hdr *) buf;
     716          52 :         key = (const struct wpa_eapol_key *) (hdr + 1);
     717          52 :         plen = be_to_host16(hdr->length);
     718             : 
     719          52 :         if (hdr->version < EAPOL_VERSION) {
     720             :                 /* TODO: backwards compatibility */
     721             :         }
     722          52 :         if (hdr->type != IEEE802_1X_TYPE_EAPOL_KEY) {
     723           0 :                 wpa_printf(MSG_DEBUG, "RSN: EAPOL frame (type %u) discarded, "
     724           0 :                         "not a Key frame", hdr->type);
     725           0 :                 return -1;
     726             :         }
     727          52 :         if (plen > len - sizeof(*hdr) || plen < sizeof(*key)) {
     728           0 :                 wpa_printf(MSG_DEBUG, "RSN: EAPOL frame payload size %lu "
     729             :                            "invalid (frame size %lu)",
     730             :                            (unsigned long) plen, (unsigned long) len);
     731           0 :                 return -1;
     732             :         }
     733             : 
     734          52 :         if (key->type != EAPOL_KEY_TYPE_RSN) {
     735           0 :                 wpa_printf(MSG_DEBUG, "RSN: EAPOL-Key type (%d) unknown, "
     736           0 :                            "discarded", key->type);
     737           0 :                 return -1;
     738             :         }
     739             : 
     740          52 :         key_info = WPA_GET_BE16(key->key_info);
     741             : 
     742          52 :         return !!(key_info & WPA_KEY_INFO_ACK);
     743             : }
     744             : 
     745             : 
     746          52 : static int ibss_rsn_process_rx_eapol(struct ibss_rsn *ibss_rsn,
     747             :                                      struct ibss_rsn_peer *peer,
     748             :                                      const u8 *buf, size_t len)
     749             : {
     750             :         int supp;
     751             :         u8 *tmp;
     752             : 
     753          52 :         supp = ibss_rsn_eapol_dst_supp(buf, len);
     754          52 :         if (supp < 0)
     755           0 :                 return -1;
     756             : 
     757          52 :         tmp = os_malloc(len);
     758          52 :         if (tmp == NULL)
     759           0 :                 return -1;
     760          52 :         os_memcpy(tmp, buf, len);
     761          52 :         if (supp) {
     762          28 :                 peer->authentication_status |= IBSS_RSN_AUTH_EAPOL_BY_PEER;
     763         168 :                 wpa_printf(MSG_DEBUG, "RSN: IBSS RX EAPOL for Supplicant from "
     764         168 :                            MACSTR, MAC2STR(peer->addr));
     765          28 :                 wpa_sm_rx_eapol(peer->supp, peer->addr, tmp, len);
     766             :         } else {
     767          24 :                 if (ibss_rsn_is_auth_started(peer) == 0) {
     768           0 :                         wpa_printf(MSG_DEBUG, "RSN: IBSS EAPOL for "
     769             :                                    "Authenticator dropped as " MACSTR " is not "
     770           0 :                                    "authenticated", MAC2STR(peer->addr));
     771           0 :                         os_free(tmp);
     772           0 :                         return -1;
     773             :                 }
     774             : 
     775         144 :                 wpa_printf(MSG_DEBUG, "RSN: IBSS RX EAPOL for Authenticator "
     776         144 :                            "from "MACSTR, MAC2STR(peer->addr));
     777          24 :                 wpa_receive(ibss_rsn->auth_group, peer->auth, tmp, len);
     778             :         }
     779          52 :         os_free(tmp);
     780             : 
     781          52 :         return 1;
     782             : }
     783             : 
     784             : 
     785          52 : int ibss_rsn_rx_eapol(struct ibss_rsn *ibss_rsn, const u8 *src_addr,
     786             :                       const u8 *buf, size_t len)
     787             : {
     788             :         struct ibss_rsn_peer *peer;
     789             : 
     790          52 :         if (ibss_rsn == NULL)
     791           0 :                 return -1;
     792             : 
     793          52 :         peer = ibss_rsn_get_peer(ibss_rsn, src_addr);
     794          52 :         if (peer)
     795          52 :                 return ibss_rsn_process_rx_eapol(ibss_rsn, peer, buf, len);
     796             : 
     797           0 :         if (ibss_rsn_eapol_dst_supp(buf, len) > 0) {
     798             :                 /*
     799             :                  * Create new IBSS peer based on an EAPOL message from the peer
     800             :                  * Authenticator.
     801             :                  */
     802           0 :                 peer = ibss_rsn_peer_init(ibss_rsn, src_addr);
     803           0 :                 if (peer == NULL)
     804           0 :                         return -1;
     805             : 
     806             :                 /* assume the peer is authenticated already */
     807           0 :                 wpa_printf(MSG_DEBUG, "RSN: IBSS Not using IBSS Auth for peer "
     808           0 :                            MACSTR, MAC2STR(src_addr));
     809           0 :                 ibss_rsn_peer_authenticated(ibss_rsn, peer,
     810             :                                             IBSS_RSN_AUTH_EAPOL_BY_US);
     811             : 
     812           0 :                 return ibss_rsn_process_rx_eapol(ibss_rsn, ibss_rsn->peers,
     813             :                                                  buf, len);
     814             :         }
     815             : 
     816           0 :         return 0;
     817             : }
     818             : 
     819           6 : void ibss_rsn_set_psk(struct ibss_rsn *ibss_rsn, const u8 *psk)
     820             : {
     821           6 :         if (ibss_rsn == NULL)
     822           6 :                 return;
     823           6 :         os_memcpy(ibss_rsn->psk, psk, PMK_LEN);
     824             : }
     825             : 
     826             : 
     827          10 : static void ibss_rsn_handle_auth_1_of_2(struct ibss_rsn *ibss_rsn,
     828             :                                         struct ibss_rsn_peer *peer,
     829             :                                         const u8* addr)
     830             : {
     831          60 :         wpa_printf(MSG_DEBUG, "RSN: IBSS RX Auth frame (SEQ 1) from " MACSTR,
     832          60 :                    MAC2STR(addr));
     833             : 
     834          18 :         if (peer &&
     835           8 :             peer->authentication_status & IBSS_RSN_AUTH_EAPOL_BY_PEER) {
     836           2 :                 if (peer->own_auth_tx.sec) {
     837             :                         struct os_reltime now, diff;
     838           1 :                         os_get_reltime(&now);
     839           1 :                         os_reltime_sub(&now, &peer->own_auth_tx, &diff);
     840           1 :                         if (diff.sec == 0 && diff.usec < 500000) {
     841           0 :                                 wpa_printf(MSG_DEBUG, "RSN: Skip IBSS reinit since only %u usec from own Auth frame TX",
     842           0 :                                            (int) diff.usec);
     843           0 :                                 goto skip_reinit;
     844             :                         }
     845             :                 }
     846             :                 /*
     847             :                  * A peer sent us an Authentication frame even though it already
     848             :                  * started an EAPOL session. We should reinit state machines
     849             :                  * here, but it's much more complicated than just deleting and
     850             :                  * recreating the state machine
     851             :                  */
     852          12 :                 wpa_printf(MSG_DEBUG, "RSN: IBSS Reinitializing station "
     853          12 :                            MACSTR, MAC2STR(addr));
     854             : 
     855           2 :                 ibss_rsn_stop(ibss_rsn, addr);
     856           2 :                 peer = NULL;
     857             :         }
     858             : 
     859          10 :         if (!peer) {
     860           4 :                 peer = ibss_rsn_peer_init(ibss_rsn, addr);
     861           4 :                 if (!peer)
     862          10 :                         return;
     863             : 
     864          24 :                 wpa_printf(MSG_DEBUG, "RSN: IBSS Auth started by peer " MACSTR,
     865          24 :                            MAC2STR(addr));
     866             :         }
     867             : 
     868             : skip_reinit:
     869             :         /* reply with an Authentication frame now, before sending an EAPOL */
     870          10 :         ibss_rsn_send_auth(ibss_rsn, addr, 2);
     871             :         /* no need to start another AUTH challenge in the other way.. */
     872          10 :         ibss_rsn_peer_authenticated(ibss_rsn, peer, IBSS_RSN_AUTH_EAPOL_BY_US);
     873             : }
     874             : 
     875             : 
     876          20 : void ibss_rsn_handle_auth(struct ibss_rsn *ibss_rsn, const u8 *auth_frame,
     877             :                           size_t len)
     878             : {
     879             :         const struct ieee80211_mgmt *header;
     880             :         struct ibss_rsn_peer *peer;
     881             :         size_t auth_length;
     882             : 
     883          20 :         header = (const struct ieee80211_mgmt *) auth_frame;
     884          20 :         auth_length = IEEE80211_HDRLEN + sizeof(header->u.auth);
     885             : 
     886          20 :         if (ibss_rsn == NULL || len < auth_length)
     887           0 :                 return;
     888             : 
     889          40 :         if (le_to_host16(header->u.auth.auth_alg) != WLAN_AUTH_OPEN ||
     890          20 :             le_to_host16(header->u.auth.status_code) != WLAN_STATUS_SUCCESS)
     891           0 :                 return;
     892             : 
     893          20 :         peer = ibss_rsn_get_peer(ibss_rsn, header->sa);
     894             : 
     895          20 :         switch (le_to_host16(header->u.auth.auth_transaction)) {
     896             :         case 1:
     897          10 :                 ibss_rsn_handle_auth_1_of_2(ibss_rsn, peer, header->sa);
     898          10 :                 break;
     899             :         case 2:
     900          60 :                 wpa_printf(MSG_DEBUG, "RSN: IBSS RX Auth frame (SEQ 2) from "
     901          60 :                            MACSTR, MAC2STR(header->sa));
     902          10 :                 if (!peer) {
     903           0 :                         wpa_printf(MSG_DEBUG, "RSN: Received Auth seq 2 from "
     904           0 :                                    "unknown STA " MACSTR, MAC2STR(header->sa));
     905           0 :                         break;
     906             :                 }
     907             : 
     908             :                 /* authentication has been completed */
     909          10 :                 eloop_cancel_timeout(ibss_rsn_auth_timeout, peer, NULL);
     910          60 :                 wpa_printf(MSG_DEBUG, "RSN: IBSS Auth completed with " MACSTR,
     911          60 :                            MAC2STR(header->sa));
     912          10 :                 ibss_rsn_peer_authenticated(ibss_rsn, peer,
     913             :                                             IBSS_RSN_AUTH_BY_US);
     914          10 :                 break;
     915             :         }
     916             : }

Generated by: LCOV version 1.10