]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - include/net/esp.h
[IPSEC]: Use IPv6 calling convention as the convention for x->mode->output
[mirror_ubuntu-jammy-kernel.git] / include / net / esp.h
CommitLineData
1da177e4
LT
1#ifndef _NET_ESP_H
2#define _NET_ESP_H
3
9409f38a 4#include <linux/crypto.h>
1da177e4
LT
5#include <net/xfrm.h>
6#include <asm/scatterlist.h>
7
8#define ESP_NUM_FAST_SG 4
9
10struct esp_data
11{
12 struct scatterlist sgbuf[ESP_NUM_FAST_SG];
13
14 /* Confidentiality */
15 struct {
e4bec827 16 int padlen; /* 0..255 */
1da177e4
LT
17 /* ivlen is offset from enc_data, where encrypted data start.
18 * It is logically different of crypto_tfm_alg_ivsize(tfm).
19 * We assume that it is either zero (no ivec), or
20 * >= crypto_tfm_alg_ivsize(tfm). */
21 int ivlen;
e4bec827
DM
22 int ivinitted;
23 u8 *ivec; /* ivec buffer */
6b7326c8 24 struct crypto_blkcipher *tfm; /* crypto handle */
1da177e4
LT
25 } conf;
26
27 /* Integrity. It is active when icv_full_len != 0 */
28 struct {
1da177e4
LT
29 u8 *work_icv;
30 int icv_full_len;
31 int icv_trunc_len;
07d4ee58 32 struct crypto_hash *tfm;
1da177e4
LT
33 } auth;
34};
35
1da177e4
LT
36extern void *pskb_put(struct sk_buff *skb, struct sk_buff *tail, int len);
37
07d4ee58
HX
38static inline int esp_mac_digest(struct esp_data *esp, struct sk_buff *skb,
39 int offset, int len)
1da177e4 40{
07d4ee58
HX
41 struct hash_desc desc;
42 int err;
43
44 desc.tfm = esp->auth.tfm;
45 desc.flags = 0;
46
47 err = crypto_hash_init(&desc);
48 if (unlikely(err))
49 return err;
50 err = skb_icv_walk(skb, &desc, offset, len, crypto_hash_update);
51 if (unlikely(err))
52 return err;
53 return crypto_hash_final(&desc, esp->auth.work_icv);
1da177e4
LT
54}
55
56#endif