Merge tag 'for-linus-20150422' of git://git.infradead.org/linux-mtd
[linux-2.6-block.git] / net / mac80211 / key.h
CommitLineData
f0706e82
JB
1/*
2 * Copyright 2002-2004, Instant802 Networks, Inc.
3 * Copyright 2005, Devicescape Software, Inc.
4 *
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.
8 */
9
10#ifndef IEEE80211_KEY_H
11#define IEEE80211_KEY_H
12
13#include <linux/types.h>
8f37171a 14#include <linux/list.h>
f0706e82 15#include <linux/crypto.h>
db4d1169 16#include <linux/rcupdate.h>
f0706e82
JB
17#include <net/mac80211.h>
18
e31b8213
JB
19#define NUM_DEFAULT_KEYS 4
20#define NUM_DEFAULT_MGMT_KEYS 2
2475b1cc 21#define MAX_PN_LEN 16
e31b8213 22
11a843b7
JB
23struct ieee80211_local;
24struct ieee80211_sub_if_data;
25struct sta_info;
26
db4d1169
JB
27/**
28 * enum ieee80211_internal_key_flags - internal key flags
29 *
30 * @KEY_FLAG_UPLOADED_TO_HARDWARE: Indicates that this key is present
31 * in the hardware for TX crypto hardware acceleration.
95acac61 32 * @KEY_FLAG_TAINTED: Key is tainted and packets should be dropped.
c7ef38e0 33 * @KEY_FLAG_CIPHER_SCHEME: This key is for a hardware cipher scheme
db4d1169
JB
34 */
35enum ieee80211_internal_key_flags {
36 KEY_FLAG_UPLOADED_TO_HARDWARE = BIT(0),
95acac61 37 KEY_FLAG_TAINTED = BIT(1),
c7ef38e0 38 KEY_FLAG_CIPHER_SCHEME = BIT(2),
db4d1169 39};
11a843b7 40
ca99861d 41enum ieee80211_internal_tkip_state {
42 TKIP_STATE_NOT_INIT,
43 TKIP_STATE_PHASE1_DONE,
44 TKIP_STATE_PHASE1_HW_UPLOADED,
45};
46
b0f76b33 47struct tkip_ctx {
523b02ea
JB
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 */
ca99861d 52 enum ieee80211_internal_tkip_state state;
b0f76b33
HH
53};
54
f0706e82 55struct ieee80211_key {
11a843b7
JB
56 struct ieee80211_local *local;
57 struct ieee80211_sub_if_data *sdata;
58 struct sta_info *sta;
59
3b96766f 60 /* for sdata list */
11a843b7
JB
61 struct list_head list;
62
ad0e2b5a 63 /* protected by key mutex */
11a843b7
JB
64 unsigned int flags;
65
f0706e82
JB
66 union {
67 struct {
523b02ea
JB
68 /* protects tx context */
69 spinlock_t txlock;
70
f0706e82 71 /* last used TSC */
b0f76b33 72 struct tkip_ctx tx;
f0706e82
JB
73
74 /* last received RSC */
5a306f58 75 struct tkip_ctx rx[IEEE80211_NUM_TIDS];
b98ea058
S
76
77 /* number of mic failures */
78 u32 mic_failures;
f0706e82
JB
79 } tkip;
80 struct {
aba83a0b 81 atomic64_t tx_pn;
9190252c
JM
82 /*
83 * Last received packet number. The first
5a306f58 84 * IEEE80211_NUM_TIDS counters are used with Data
9190252c
JM
85 * frames and the last counter is used with Robust
86 * Management frames.
87 */
4325f6ca 88 u8 rx_pn[IEEE80211_NUM_TIDS + 1][IEEE80211_CCMP_PN_LEN];
7ec7c4a9 89 struct crypto_aead *tfm;
f0706e82 90 u32 replays; /* dot11RSNAStatsCCMPReplays */
f0706e82 91 } ccmp;
765cb46a 92 struct {
75396ae6 93 atomic64_t tx_pn;
4325f6ca 94 u8 rx_pn[IEEE80211_CMAC_PN_LEN];
765cb46a
JM
95 struct crypto_cipher *tfm;
96 u32 replays; /* dot11RSNAStatsCMACReplays */
97 u32 icverrors; /* dot11RSNAStatsCMACICVErrors */
765cb46a 98 } aes_cmac;
8ade538b
JM
99 struct {
100 atomic64_t tx_pn;
101 u8 rx_pn[IEEE80211_GMAC_PN_LEN];
102 struct crypto_aead *tfm;
103 u32 replays; /* dot11RSNAStatsCMACReplays */
104 u32 icverrors; /* dot11RSNAStatsCMACICVErrors */
105 } aes_gmac;
00b9cfa3
JM
106 struct {
107 atomic64_t tx_pn;
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
111 * Management frames.
112 */
113 u8 rx_pn[IEEE80211_NUM_TIDS + 1][IEEE80211_GCMP_PN_LEN];
114 struct crypto_aead *tfm;
115 u32 replays; /* dot11RSNAStatsGCMPReplays */
116 } gcmp;
2475b1cc
MS
117 struct {
118 /* generic cipher scheme */
119 u8 rx_pn[IEEE80211_NUM_TIDS + 1][MAX_PN_LEN];
120 } gen;
f0706e82 121 } u;
f0706e82 122
8f20fc24
JB
123 /* number of times this key has been used */
124 int tx_rx_count;
f0706e82 125
e9f207f0
JB
126#ifdef CONFIG_MAC80211_DEBUGFS
127 struct {
128 struct dentry *stalink;
129 struct dentry *dir;
d9c58f30 130 int cnt;
e9f207f0
JB
131 } debugfs;
132#endif
133
8f20fc24
JB
134 /*
135 * key config, must be last because it contains key
136 * material as variable length member
137 */
138 struct ieee80211_key_conf conf;
f0706e82
JB
139};
140
2475b1cc
MS
141struct ieee80211_key *
142ieee80211_key_alloc(u32 cipher, int idx, size_t key_len,
143 const u8 *key_data,
144 size_t seq_len, const u8 *seq,
145 const struct ieee80211_cipher_scheme *cs);
db4d1169
JB
146/*
147 * Insert a key into data structures (sdata, sta if necessary)
79cf2dfa 148 * to make it used, free old key. On failure, also free the new key.
db4d1169 149 */
79cf2dfa
JB
150int ieee80211_key_link(struct ieee80211_key *key,
151 struct ieee80211_sub_if_data *sdata,
152 struct sta_info *sta);
3b8d9c29 153void ieee80211_key_free(struct ieee80211_key *key, bool delay_tailroom);
79cf2dfa 154void ieee80211_key_free_unused(struct ieee80211_key *key);
f7e0104c
JB
155void ieee80211_set_default_key(struct ieee80211_sub_if_data *sdata, int idx,
156 bool uni, bool multi);
3cfcf6ac
JM
157void ieee80211_set_default_mgmt_key(struct ieee80211_sub_if_data *sdata,
158 int idx);
7907c7d3
JB
159void ieee80211_free_keys(struct ieee80211_sub_if_data *sdata,
160 bool force_synchronize);
6d10e46b
JB
161void ieee80211_free_sta_keys(struct ieee80211_local *local,
162 struct sta_info *sta);
11a843b7 163void ieee80211_enable_keys(struct ieee80211_sub_if_data *sdata);
11a843b7 164
40b275b6
JB
165#define key_mtx_dereference(local, ref) \
166 rcu_dereference_protected(ref, lockdep_is_held(&((local)->key_mtx)))
167
8d1f7ecd
JB
168void ieee80211_delayed_tailroom_dec(struct work_struct *wk);
169
f0706e82 170#endif /* IEEE80211_KEY_H */