2017-01-12 09:36:01 +01:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Wireless daemon for Linux
|
|
|
|
*
|
2019-10-25 00:43:08 +02:00
|
|
|
* Copyright (C) 2017-2019 Intel Corporation. All rights reserved.
|
2017-01-12 09:36:01 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2021-04-30 01:08:36 +02:00
|
|
|
struct handshake_state;
|
|
|
|
|
2019-05-09 19:14:12 +02:00
|
|
|
typedef void (*ft_tx_authenticate_func_t)(struct iovec *iov, size_t iov_len,
|
|
|
|
void *user_data);
|
2021-04-30 19:47:04 +02:00
|
|
|
typedef int (*ft_tx_associate_func_t)(struct iovec *ie_iov, size_t iov_len,
|
2019-05-07 20:53:42 +02:00
|
|
|
void *user_data);
|
2017-01-12 09:36:01 +01:00
|
|
|
|
2021-04-30 01:08:36 +02:00
|
|
|
typedef void (*ft_ds_free_func_t)(void *user_data);
|
|
|
|
|
|
|
|
struct ft_ds_info {
|
|
|
|
uint8_t spa[6];
|
|
|
|
uint8_t aa[6];
|
|
|
|
uint8_t snonce[32];
|
|
|
|
uint8_t mde[3];
|
|
|
|
uint8_t *fte;
|
|
|
|
|
|
|
|
struct ie_ft_info ft_info;
|
|
|
|
|
|
|
|
void (*free)(struct ft_ds_info *s);
|
|
|
|
};
|
|
|
|
|
|
|
|
void ft_ds_info_free(struct ft_ds_info *info);
|
|
|
|
|
2021-04-27 21:49:41 +02:00
|
|
|
bool ft_build_authenticate_ies(struct handshake_state *hs,
|
|
|
|
const uint8_t *new_snonce, uint8_t *buf,
|
|
|
|
size_t *len);
|
|
|
|
|
2021-05-13 01:01:40 +02:00
|
|
|
int ft_over_ds_parse_action_response(const uint8_t *frame, size_t frame_len,
|
|
|
|
const uint8_t **spa_out,
|
|
|
|
const uint8_t **aa_out,
|
|
|
|
const uint8_t **ies_out,
|
|
|
|
size_t *ies_len);
|
|
|
|
bool ft_over_ds_parse_action_ies(struct ft_ds_info *info,
|
2021-04-30 01:08:36 +02:00
|
|
|
struct handshake_state *hs,
|
2021-05-13 01:01:40 +02:00
|
|
|
const uint8_t *ies,
|
|
|
|
size_t ies_len);
|
2021-04-30 01:08:36 +02:00
|
|
|
|
2019-05-09 20:16:28 +02:00
|
|
|
struct auth_proto *ft_over_air_sm_new(struct handshake_state *hs,
|
|
|
|
ft_tx_authenticate_func_t tx_auth,
|
|
|
|
ft_tx_associate_func_t tx_assoc,
|
|
|
|
void *user_data);
|
|
|
|
|
|
|
|
struct auth_proto *ft_over_ds_sm_new(struct handshake_state *hs,
|
2019-05-07 20:53:42 +02:00
|
|
|
ft_tx_associate_func_t tx_assoc,
|
|
|
|
void *user_data);
|
2021-04-30 01:08:36 +02:00
|
|
|
|
|
|
|
bool ft_over_ds_prepare_handshake(struct ft_ds_info *info,
|
|
|
|
struct handshake_state *hs);
|