auth-proto: introduce auth-proto concept

This is a new concept applying to any protocol working over authenticate
and/or associate frames (OWE/SAE/FILS). All these protocols behave
similarly enough that they can be unified into a handshake driver
structure.

Now, each protocol will initialize this auth_proto structure inside
their own internal data. The auth_proto will be returned from
the initializer which netdev can then use to manage the protocol by
forwarding authenticate/associate frames into the individual drivers.

The auth_proto consists only of function pointers:

start - starts the protocol
free  - frees the driver data
rx_authenticate - receive authenticate frame
rx_associate - receive associate frame
auth_timeout - authenticate frame timed out
assoc_timeout - associate frame timed out
This commit is contained in:
James Prestwood 2019-05-03 11:49:28 -07:00 committed by Denis Kenzior
parent 7cbbca23ce
commit 11443c03bc
1 changed files with 84 additions and 0 deletions

84
src/auth-proto.h Normal file
View File

@ -0,0 +1,84 @@
/*
*
* Wireless daemon for Linux
*
* Copyright (C) 2019 Intel Corporation. All rights reserved.
*
* 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
*
*/
#include <errno.h>
struct auth_proto {
bool (*start)(struct auth_proto *ap);
void (*free)(struct auth_proto *ap);
int (*rx_authenticate)(struct auth_proto *driver,
const uint8_t *frame, size_t len);
int (*rx_associate)(struct auth_proto *driver,
const uint8_t *frame, size_t len);
bool (*auth_timeout)(struct auth_proto *ap);
bool (*assoc_timeout)(struct auth_proto *ap);
};
static inline void auth_proto_free(struct auth_proto *ap)
{
if (ap && ap->free)
ap->free(ap);
}
static inline bool auth_proto_start(struct auth_proto *ap)
{
if (ap && ap->start)
return ap->start(ap);
return false;
}
static inline int auth_proto_rx_authenticate(struct auth_proto *ap,
const uint8_t *frame,
size_t frame_len)
{
if (ap && ap->rx_authenticate)
return ap->rx_authenticate(ap, frame, frame_len);
return -ENOTSUP;
}
static inline int auth_proto_rx_associate(struct auth_proto *ap,
const uint8_t *frame,
size_t frame_len)
{
if (ap && ap->rx_associate)
return ap->rx_associate(ap, frame, frame_len);
return -ENOTSUP;
}
static inline bool auth_proto_auth_timeout(struct auth_proto *ap)
{
if (ap && ap->auth_timeout)
return ap->auth_timeout(ap);
return false;
}
static inline bool auth_proto_assoc_timeout(struct auth_proto *ap)
{
if (ap && ap->assoc_timeout)
return ap->assoc_timeout(ap);
return false;
}