Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _NET_ESP_H |
| 2 | #define _NET_ESP_H |
| 3 | |
Herbert Xu | 9409f38 | 2006-08-06 19:49:12 +1000 | [diff] [blame] | 4 | #include <linux/crypto.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | #include <net/xfrm.h> |
| 6 | #include <asm/scatterlist.h> |
| 7 | |
| 8 | #define ESP_NUM_FAST_SG 4 |
| 9 | |
| 10 | struct esp_data |
| 11 | { |
| 12 | struct scatterlist sgbuf[ESP_NUM_FAST_SG]; |
| 13 | |
| 14 | /* Confidentiality */ |
| 15 | struct { |
| 16 | u8 *key; /* Key */ |
| 17 | int key_len; /* Key length */ |
David S. Miller | e4bec82 | 2006-09-22 15:17:35 -0700 | [diff] [blame] | 18 | int padlen; /* 0..255 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | /* ivlen is offset from enc_data, where encrypted data start. |
| 20 | * It is logically different of crypto_tfm_alg_ivsize(tfm). |
| 21 | * We assume that it is either zero (no ivec), or |
| 22 | * >= crypto_tfm_alg_ivsize(tfm). */ |
| 23 | int ivlen; |
David S. Miller | e4bec82 | 2006-09-22 15:17:35 -0700 | [diff] [blame] | 24 | int ivinitted; |
| 25 | u8 *ivec; /* ivec buffer */ |
Herbert Xu | 6b7326c | 2006-07-30 15:41:01 +1000 | [diff] [blame] | 26 | struct crypto_blkcipher *tfm; /* crypto handle */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | } conf; |
| 28 | |
| 29 | /* Integrity. It is active when icv_full_len != 0 */ |
| 30 | struct { |
| 31 | u8 *key; /* Key */ |
| 32 | int key_len; /* Length of the key */ |
| 33 | u8 *work_icv; |
| 34 | int icv_full_len; |
| 35 | int icv_trunc_len; |
| 36 | void (*icv)(struct esp_data*, |
| 37 | struct sk_buff *skb, |
| 38 | int offset, int len, u8 *icv); |
Herbert Xu | 07d4ee5 | 2006-08-20 14:24:50 +1000 | [diff] [blame] | 39 | struct crypto_hash *tfm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | } auth; |
| 41 | }; |
| 42 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | extern void *pskb_put(struct sk_buff *skb, struct sk_buff *tail, int len); |
| 44 | |
Herbert Xu | 07d4ee5 | 2006-08-20 14:24:50 +1000 | [diff] [blame] | 45 | static inline int esp_mac_digest(struct esp_data *esp, struct sk_buff *skb, |
| 46 | int offset, int len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | { |
Herbert Xu | 07d4ee5 | 2006-08-20 14:24:50 +1000 | [diff] [blame] | 48 | struct hash_desc desc; |
| 49 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
Herbert Xu | 07d4ee5 | 2006-08-20 14:24:50 +1000 | [diff] [blame] | 51 | desc.tfm = esp->auth.tfm; |
| 52 | desc.flags = 0; |
| 53 | |
| 54 | err = crypto_hash_init(&desc); |
| 55 | if (unlikely(err)) |
| 56 | return err; |
| 57 | err = skb_icv_walk(skb, &desc, offset, len, crypto_hash_update); |
| 58 | if (unlikely(err)) |
| 59 | return err; |
| 60 | return crypto_hash_final(&desc, esp->auth.work_icv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | } |
| 62 | |
| 63 | #endif |