forked from cozybit/authsae
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sae.h
107 lines (99 loc) · 3.44 KB
/
sae.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*
* Copyright (c) Dan Harkins, 2008, 2009, 2010
*
* Copyright holder grants permission for redistribution and use in source
* and binary forms, with or without modification, provided that the
* following conditions are met:
* 1. Redistribution of source code must retain the above copyright
* notice, this list of conditions, and the following disclaimer
* in all source files.
* 2. Redistribution in binary form must retain the above copyright
* notice, this list of conditions, and the following disclaimer
* in the documentation and/or other materials provided with the
* distribution.
* 3. All advertising materials and documentation mentioning features
* or use of this software must display the following acknowledgement:
*
* "This product includes software written by
* Dan Harkins (dharkins at lounge dot org)"
*
* "DISCLAIMER OF LIABILITY
*
* THIS SOFTWARE IS PROVIDED BY DAN HARKINS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE INDUSTRIAL LOUNGE BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE."
*
* This license and distribution terms cannot be changed. In other words,
* this code cannot simply be copied and put under a different distribution
* license (including the GNU public license).
*/
#ifndef _SAE_H_
#define _SAE_H_
#include "evl_ops.h"
#include "ieee802_11.h"
#include "peers.h"
#define SAE_MAX_EC_GROUPS 10
#define SAE_MAX_PASSWORD_LEN 80
#define SAE_MAX_ECC_PRIME_LENGTH 66
struct sae_config {
int group[SAE_MAX_EC_GROUPS];
int num_groups;
char pwd[SAE_MAX_PASSWORD_LEN];
int debug;
int retrans;
int pmk_expiry;
int open_threshold;
int blacklist_timeout;
int giveup_threshold;
};
struct sae_cb {
int (*meshd_write_mgmt)(char *frame, int framelen, void *cookie);
void (*peer_created)(unsigned char *peer_mac);
void (*fin)(
unsigned short reason,
unsigned char *peer_mac,
unsigned char *key,
int keylen,
void *cookie);
struct evl_ops *evl;
};
/* You may choose not to call sae_parse_config and
* populate sae_config in some other way before
* invoking sae_initialize() */
int sae_parse_config(char *confdir, struct sae_config *config);
int sae_initialize(
char *ssid,
struct sae_config *config,
struct sae_cb *callbacks);
int process_mgmt_frame(
struct ieee80211_mgmt_frame *frame,
int len,
unsigned char *local_mac_addr,
void *cookie,
bool skip_sae);
struct candidate *create_candidate(
unsigned char *her_mac,
unsigned char *my_mac,
unsigned short got_token,
void *cookie);
void sae_read_config(int signal);
void sae_dump_db(int signal);
int prf(
unsigned char *key,
int keylen,
unsigned char *label,
int labellen,
unsigned char *context,
int contextlen,
unsigned char *result,
int resultbitlen);
void do_reauth(struct candidate *peer);
#endif /* _SAE_H_ */