2 * Copyright 2002-2004, Instant802 Networks, Inc.
3 * Copyright 2005, Devicescape Software, Inc.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
10 #ifndef IEEE80211_KEY_H
11 #define IEEE80211_KEY_H
13 #include <linux/types.h>
14 #include <linux/list.h>
15 #include <linux/crypto.h>
16 #include <linux/rcupdate.h>
17 #include <net/mac80211.h>
19 #define NUM_DEFAULT_KEYS 4
20 #define NUM_DEFAULT_MGMT_KEYS 2
23 struct ieee80211_local
;
24 struct ieee80211_sub_if_data
;
28 * enum ieee80211_internal_key_flags - internal key flags
30 * @KEY_FLAG_UPLOADED_TO_HARDWARE: Indicates that this key is present
31 * in the hardware for TX crypto hardware acceleration.
32 * @KEY_FLAG_TAINTED: Key is tainted and packets should be dropped.
33 * @KEY_FLAG_CIPHER_SCHEME: This key is for a hardware cipher scheme
35 enum ieee80211_internal_key_flags
{
36 KEY_FLAG_UPLOADED_TO_HARDWARE
= BIT(0),
37 KEY_FLAG_TAINTED
= BIT(1),
38 KEY_FLAG_CIPHER_SCHEME
= BIT(2),
41 enum ieee80211_internal_tkip_state
{
43 TKIP_STATE_PHASE1_DONE
,
44 TKIP_STATE_PHASE1_HW_UPLOADED
,
48 u32 iv32
; /* current iv32 */
49 u16 iv16
; /* current iv16 */
50 u16 p1k
[5]; /* p1k cache */
51 u32 p1k_iv32
; /* iv32 for which p1k computed */
52 enum ieee80211_internal_tkip_state state
;
55 struct ieee80211_key
{
56 struct ieee80211_local
*local
;
57 struct ieee80211_sub_if_data
*sdata
;
61 struct list_head list
;
63 /* protected by key mutex */
68 /* protects tx context */
74 /* last received RSC */
75 struct tkip_ctx rx
[IEEE80211_NUM_TIDS
];
77 /* number of mic failures */
83 * Last received packet number. The first
84 * IEEE80211_NUM_TIDS counters are used with Data
85 * frames and the last counter is used with Robust
88 u8 rx_pn
[IEEE80211_NUM_TIDS
+ 1][IEEE80211_CCMP_PN_LEN
];
89 struct crypto_aead
*tfm
;
90 u32 replays
; /* dot11RSNAStatsCCMPReplays */
94 u8 rx_pn
[IEEE80211_CMAC_PN_LEN
];
95 struct crypto_cipher
*tfm
;
96 u32 replays
; /* dot11RSNAStatsCMACReplays */
97 u32 icverrors
; /* dot11RSNAStatsCMACICVErrors */
101 u8 rx_pn
[IEEE80211_GMAC_PN_LEN
];
102 struct crypto_aead
*tfm
;
103 u32 replays
; /* dot11RSNAStatsCMACReplays */
104 u32 icverrors
; /* dot11RSNAStatsCMACICVErrors */
108 /* Last received packet number. The first
109 * IEEE80211_NUM_TIDS counters are used with Data
110 * frames and the last counter is used with Robust
113 u8 rx_pn
[IEEE80211_NUM_TIDS
+ 1][IEEE80211_GCMP_PN_LEN
];
114 struct crypto_aead
*tfm
;
115 u32 replays
; /* dot11RSNAStatsGCMPReplays */
118 /* generic cipher scheme */
119 u8 rx_pn
[IEEE80211_NUM_TIDS
+ 1][MAX_PN_LEN
];
123 /* number of times this key has been used */
126 #ifdef CONFIG_MAC80211_DEBUGFS
128 struct dentry
*stalink
;
135 * key config, must be last because it contains key
136 * material as variable length member
138 struct ieee80211_key_conf conf
;
141 struct ieee80211_key
*
142 ieee80211_key_alloc(u32 cipher
, int idx
, size_t key_len
,
144 size_t seq_len
, const u8
*seq
,
145 const struct ieee80211_cipher_scheme
*cs
);
147 * Insert a key into data structures (sdata, sta if necessary)
148 * to make it used, free old key. On failure, also free the new key.
150 int ieee80211_key_link(struct ieee80211_key
*key
,
151 struct ieee80211_sub_if_data
*sdata
,
152 struct sta_info
*sta
);
153 void ieee80211_key_free(struct ieee80211_key
*key
, bool delay_tailroom
);
154 void ieee80211_key_free_unused(struct ieee80211_key
*key
);
155 void ieee80211_set_default_key(struct ieee80211_sub_if_data
*sdata
, int idx
,
156 bool uni
, bool multi
);
157 void ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data
*sdata
,
159 void ieee80211_free_keys(struct ieee80211_sub_if_data
*sdata
,
160 bool force_synchronize
);
161 void ieee80211_free_sta_keys(struct ieee80211_local
*local
,
162 struct sta_info
*sta
);
163 void ieee80211_enable_keys(struct ieee80211_sub_if_data
*sdata
);
164 void ieee80211_reset_crypto_tx_tailroom(struct ieee80211_sub_if_data
*sdata
);
166 #define key_mtx_dereference(local, ref) \
167 rcu_dereference_protected(ref, lockdep_is_held(&((local)->key_mtx)))
169 void ieee80211_delayed_tailroom_dec(struct work_struct
*wk
);
171 #endif /* IEEE80211_KEY_H */