blob: 0c9d859d912edded9386a8c4448dcf3996609651 [file] [log] [blame]
Jeff Garzikb4538722005-05-12 22:48:20 -04001/*
2 * Original code based on Host AP (software wireless LAN access point) driver
3 * for Intersil Prism2/2.5/3.
4 *
5 * Copyright (c) 2001-2002, SSH Communications Security Corp and Jouni Malinen
6 * <jkmaline@cc.hut.fi>
7 * Copyright (c) 2002-2003, Jouni Malinen <jkmaline@cc.hut.fi>
8 *
9 * Adaption to a generic IEEE 802.11 stack by James Ketrenos
10 * <jketreno@linux.intel.com>
11 *
12 * Copyright (c) 2004, Intel Corporation
13 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License version 2 as
16 * published by the Free Software Foundation. See README and COPYING for
17 * more details.
18 */
19
20/*
21 * This file defines the interface to the ieee80211 crypto module.
22 */
23#ifndef IEEE80211_CRYPT_H
24#define IEEE80211_CRYPT_H
25
26#include <linux/skbuff.h>
27
James Ketrenos6eb6edf2005-09-22 10:34:15 +000028enum {
29 IEEE80211_CRYPTO_TKIP_COUNTERMEASURES = (1<<0),
30};
31
Jeff Garzikb4538722005-05-12 22:48:20 -040032struct ieee80211_crypto_ops {
33 const char *name;
34
35 /* init new crypto context (e.g., allocate private data space,
36 * select IV, etc.); returns NULL on failure or pointer to allocated
37 * private data on success */
James Ketrenos6eb6edf2005-09-22 10:34:15 +000038 void *(*init) (int keyidx);
Jeff Garzikb4538722005-05-12 22:48:20 -040039
40 /* deinitialize crypto context and free allocated private data */
James Ketrenos74079fd2005-09-13 17:35:21 -050041 void (*deinit) (void *priv);
Jeff Garzikb4538722005-05-12 22:48:20 -040042
James Ketrenos31b59ea2005-09-21 11:58:49 -050043 int (*build_iv) (struct sk_buff * skb, int hdr_len, void *priv);
44
Jeff Garzikb4538722005-05-12 22:48:20 -040045 /* encrypt/decrypt return < 0 on error or >= 0 on success. The return
46 * value from decrypt_mpdu is passed as the keyidx value for
47 * decrypt_msdu. skb must have enough head and tail room for the
48 * encryption; if not, error will be returned; these functions are
49 * called for all MPDUs (i.e., fragments).
50 */
James Ketrenos74079fd2005-09-13 17:35:21 -050051 int (*encrypt_mpdu) (struct sk_buff * skb, int hdr_len, void *priv);
52 int (*decrypt_mpdu) (struct sk_buff * skb, int hdr_len, void *priv);
Jeff Garzikb4538722005-05-12 22:48:20 -040053
54 /* These functions are called for full MSDUs, i.e. full frames.
55 * These can be NULL if full MSDU operations are not needed. */
James Ketrenos74079fd2005-09-13 17:35:21 -050056 int (*encrypt_msdu) (struct sk_buff * skb, int hdr_len, void *priv);
57 int (*decrypt_msdu) (struct sk_buff * skb, int keyidx, int hdr_len,
58 void *priv);
Jeff Garzikb4538722005-05-12 22:48:20 -040059
James Ketrenos74079fd2005-09-13 17:35:21 -050060 int (*set_key) (void *key, int len, u8 * seq, void *priv);
61 int (*get_key) (void *key, int len, u8 * seq, void *priv);
Jeff Garzikb4538722005-05-12 22:48:20 -040062
63 /* procfs handler for printing out key information and possible
64 * statistics */
James Ketrenos74079fd2005-09-13 17:35:21 -050065 char *(*print_stats) (char *p, void *priv);
Jeff Garzikb4538722005-05-12 22:48:20 -040066
James Ketrenos6eb6edf2005-09-22 10:34:15 +000067 /* Crypto specific flag get/set for configuration settings */
68 unsigned long (*get_flags)(void *priv);
69 unsigned long (*set_flags)(unsigned long flags, void *priv);
70
Jeff Garzikb4538722005-05-12 22:48:20 -040071 /* maximum number of bytes added by encryption; encrypt buf is
72 * allocated with extra_prefix_len bytes, copy of in_buf, and
73 * extra_postfix_len; encrypt need not use all this space, but
74 * the result must start at the beginning of the buffer and correct
75 * length must be returned */
James Ketrenos1264fc02005-09-21 11:54:53 -050076 int extra_mpdu_prefix_len, extra_mpdu_postfix_len;
77 int extra_msdu_prefix_len, extra_msdu_postfix_len;
Jeff Garzikb4538722005-05-12 22:48:20 -040078
79 struct module *owner;
80};
81
82struct ieee80211_crypt_data {
James Ketrenos74079fd2005-09-13 17:35:21 -050083 struct list_head list; /* delayed deletion list */
Jeff Garzikb4538722005-05-12 22:48:20 -040084 struct ieee80211_crypto_ops *ops;
85 void *priv;
86 atomic_t refcnt;
87};
88
89int ieee80211_register_crypto_ops(struct ieee80211_crypto_ops *ops);
90int ieee80211_unregister_crypto_ops(struct ieee80211_crypto_ops *ops);
James Ketrenos74079fd2005-09-13 17:35:21 -050091struct ieee80211_crypto_ops *ieee80211_get_crypto_ops(const char *name);
Jeff Garzikb4538722005-05-12 22:48:20 -040092void ieee80211_crypt_deinit_entries(struct ieee80211_device *, int);
93void ieee80211_crypt_deinit_handler(unsigned long);
94void ieee80211_crypt_delayed_deinit(struct ieee80211_device *ieee,
95 struct ieee80211_crypt_data **crypt);
James Ketrenos0ad0c3c2005-09-21 11:54:15 -050096void ieee80211_crypt_quiescing(struct ieee80211_device *ieee);
Jeff Garzikb4538722005-05-12 22:48:20 -040097
98#endif