1
2
3
4
5
6
7
8 #ifndef IEEE80211_KEY_H
9 #define IEEE80211_KEY_H
10
11 #include <linux/types.h>
12 #include <linux/list.h>
13 #include <linux/crypto.h>
14 #include <linux/rcupdate.h>
15 #include <crypto/arc4.h>
16 #include <net/mac80211.h>
17
18 #define NUM_DEFAULT_KEYS 4
19 #define NUM_DEFAULT_MGMT_KEYS 2
20 #define INVALID_PTK_KEYIDX 2
21
22 struct ieee80211_local;
23 struct ieee80211_sub_if_data;
24 struct sta_info;
25
26
27
28
29
30
31
32
33
34 enum ieee80211_internal_key_flags {
35 KEY_FLAG_UPLOADED_TO_HARDWARE = BIT(0),
36 KEY_FLAG_TAINTED = BIT(1),
37 KEY_FLAG_CIPHER_SCHEME = BIT(2),
38 };
39
40 enum ieee80211_internal_tkip_state {
41 TKIP_STATE_NOT_INIT,
42 TKIP_STATE_PHASE1_DONE,
43 TKIP_STATE_PHASE1_HW_UPLOADED,
44 };
45
46 struct tkip_ctx {
47 u16 p1k[5];
48 u32 p1k_iv32;
49 enum ieee80211_internal_tkip_state state;
50 };
51
52 struct tkip_ctx_rx {
53 struct tkip_ctx ctx;
54 u32 iv32;
55 u16 iv16;
56 };
57
58 struct ieee80211_key {
59 struct ieee80211_local *local;
60 struct ieee80211_sub_if_data *sdata;
61 struct sta_info *sta;
62
63
64 struct list_head list;
65
66
67 unsigned int flags;
68
69 union {
70 struct {
71
72 spinlock_t txlock;
73
74
75 struct tkip_ctx tx;
76
77
78 struct tkip_ctx_rx rx[IEEE80211_NUM_TIDS];
79
80
81 u32 mic_failures;
82 } tkip;
83 struct {
84
85
86
87
88
89
90 u8 rx_pn[IEEE80211_NUM_TIDS + 1][IEEE80211_CCMP_PN_LEN];
91 struct crypto_aead *tfm;
92 u32 replays;
93 } ccmp;
94 struct {
95 u8 rx_pn[IEEE80211_CMAC_PN_LEN];
96 struct crypto_shash *tfm;
97 u32 replays;
98 u32 icverrors;
99 } aes_cmac;
100 struct {
101 u8 rx_pn[IEEE80211_GMAC_PN_LEN];
102 struct crypto_aead *tfm;
103 u32 replays;
104 u32 icverrors;
105 } aes_gmac;
106 struct {
107
108
109
110
111
112 u8 rx_pn[IEEE80211_NUM_TIDS + 1][IEEE80211_GCMP_PN_LEN];
113 struct crypto_aead *tfm;
114 u32 replays;
115 } gcmp;
116 struct {
117
118 u8 rx_pn[IEEE80211_NUM_TIDS + 1][IEEE80211_MAX_PN_LEN];
119 } gen;
120 } u;
121
122 #ifdef CONFIG_MAC80211_DEBUGFS
123 struct {
124 struct dentry *stalink;
125 struct dentry *dir;
126 int cnt;
127 } debugfs;
128 #endif
129
130
131
132
133
134 struct ieee80211_key_conf conf;
135 };
136
137 struct ieee80211_key *
138 ieee80211_key_alloc(u32 cipher, int idx, size_t key_len,
139 const u8 *key_data,
140 size_t seq_len, const u8 *seq,
141 const struct ieee80211_cipher_scheme *cs);
142
143
144
145
146 int ieee80211_key_link(struct ieee80211_key *key,
147 struct ieee80211_sub_if_data *sdata,
148 struct sta_info *sta);
149 int ieee80211_set_tx_key(struct ieee80211_key *key);
150 void ieee80211_key_free(struct ieee80211_key *key, bool delay_tailroom);
151 void ieee80211_key_free_unused(struct ieee80211_key *key);
152 void ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata, int idx,
153 bool uni, bool multi);
154 void ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata,
155 int idx);
156 void ieee80211_free_keys(struct ieee80211_sub_if_data *sdata,
157 bool force_synchronize);
158 void ieee80211_free_sta_keys(struct ieee80211_local *local,
159 struct sta_info *sta);
160 void ieee80211_reenable_keys(struct ieee80211_sub_if_data *sdata);
161
162 #define key_mtx_dereference(local, ref) \
163 rcu_dereference_protected(ref, lockdep_is_held(&((local)->key_mtx)))
164
165 void ieee80211_delayed_tailroom_dec(struct work_struct *wk);
166
167 #endif