]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - net/ipv4/xfrm4_mode_beet.c
[IPSEC]: Set skb->data to payload in x->mode->output
[mirror_ubuntu-focal-kernel.git] / net / ipv4 / xfrm4_mode_beet.c
CommitLineData
0a69452c
DB
1/*
2 * xfrm4_mode_beet.c - BEET mode encapsulation for IPv4.
3 *
4 * Copyright (c) 2006 Diego Beltrami <diego.beltrami@gmail.com>
5 * Miika Komu <miika@iki.fi>
6 * Herbert Xu <herbert@gondor.apana.org.au>
7 * Abhinav Pathak <abhinav.pathak@hiit.fi>
8 * Jeff Ahrenholz <ahrenholz@gmail.com>
9 */
10
11#include <linux/init.h>
12#include <linux/kernel.h>
13#include <linux/module.h>
14#include <linux/skbuff.h>
15#include <linux/stringify.h>
16#include <net/dst.h>
17#include <net/ip.h>
18#include <net/xfrm.h>
19
20/* Add encapsulation header.
21 *
22 * The top IP header will be constructed per draft-nikander-esp-beet-mode-06.txt.
23 * The following fields in it shall be filled in by x->type->output:
24 * tot_len
25 * check
26 *
27 * On exit, skb->h will be set to the start of the payload to be processed
28 * by x->type->output and skb->nh will be set to the top IP header.
29 */
30static int xfrm4_beet_output(struct xfrm_state *x, struct sk_buff *skb)
31{
ea2f10a3 32 struct iphdr *iph, *top_iph;
0a69452c
DB
33 int hdrlen, optlen;
34
eddc9ec5 35 iph = ip_hdr(skb);
b0e380b1 36 skb->transport_header = skb->network_header;
0a69452c
DB
37
38 hdrlen = 0;
39 optlen = iph->ihl * 4 - sizeof(*iph);
40 if (unlikely(optlen))
41 hdrlen += IPV4_BEET_PHMAXLEN - (optlen & 4);
42
7b277b1a
HX
43 skb_set_network_header(skb, IPV4_BEET_PHMAXLEN - x->props.header_len -
44 hdrlen);
eddc9ec5 45 top_iph = ip_hdr(skb);
b0e380b1 46 skb->transport_header += sizeof(*iph) - hdrlen;
7b277b1a 47 __skb_pull(skb, sizeof(*iph) - hdrlen);
0a69452c 48
c5027c9a 49 memmove(top_iph, iph, sizeof(*iph));
0a69452c
DB
50 if (unlikely(optlen)) {
51 struct ip_beet_phdr *ph;
52
53 BUG_ON(optlen < 0);
54
9c70220b 55 ph = (struct ip_beet_phdr *)skb_transport_header(skb);
0a69452c 56 ph->padlen = 4 - (optlen & 4);
05d22446 57 ph->hdrlen = optlen / 8;
0a69452c 58 ph->nexthdr = top_iph->protocol;
04fef989
PM
59 if (ph->padlen)
60 memset(ph + 1, IPOPT_NOP, ph->padlen);
0a69452c
DB
61
62 top_iph->protocol = IPPROTO_BEETPH;
63 top_iph->ihl = sizeof(struct iphdr) / 4;
64 }
65
66 top_iph->saddr = x->props.saddr.a4;
67 top_iph->daddr = x->id.daddr.a4;
68
69 return 0;
70}
71
72static int xfrm4_beet_input(struct xfrm_state *x, struct sk_buff *skb)
73{
eddc9ec5 74 struct iphdr *iph = ip_hdr(skb);
0a69452c
DB
75 int phlen = 0;
76 int optlen = 0;
ea2f10a3 77 u8 ph_nexthdr = 0;
0a69452c
DB
78 int err = -EINVAL;
79
0a69452c 80 if (unlikely(iph->protocol == IPPROTO_BEETPH)) {
254d0d24 81 struct ip_beet_phdr *ph;
0a69452c
DB
82
83 if (!pskb_may_pull(skb, sizeof(*ph)))
84 goto out;
b0061ce4 85 ph = (struct ip_beet_phdr *)(ipip_hdr(skb) + 1);
0a69452c 86
d4b1e840 87 phlen = sizeof(*ph) + ph->padlen;
05d22446 88 optlen = ph->hdrlen * 8 + (IPV4_BEET_PHMAXLEN - phlen);
0a69452c
DB
89 if (optlen < 0 || optlen & 3 || optlen > 250)
90 goto out;
91
d4b1e840 92 if (!pskb_may_pull(skb, phlen + optlen))
0a69452c 93 goto out;
254d0d24 94 skb->len -= phlen + optlen;
0a69452c
DB
95
96 ph_nexthdr = ph->nexthdr;
97 }
98
b0061ce4 99 skb_set_network_header(skb, phlen - sizeof(*iph));
d56f90a7 100 memmove(skb_network_header(skb), iph, sizeof(*iph));
b0061ce4 101 skb_set_transport_header(skb, phlen + optlen);
239254fe 102 skb->data = skb_transport_header(skb);
0a69452c 103
eddc9ec5 104 iph = ip_hdr(skb);
0a69452c 105 iph->ihl = (sizeof(*iph) + optlen) / 4;
d4b1e840 106 iph->tot_len = htons(skb->len + iph->ihl * 4);
0a69452c
DB
107 iph->daddr = x->sel.daddr.a4;
108 iph->saddr = x->sel.saddr.a4;
109 if (ph_nexthdr)
110 iph->protocol = ph_nexthdr;
0a69452c 111 iph->check = 0;
d56f90a7 112 iph->check = ip_fast_csum(skb_network_header(skb), iph->ihl);
0a69452c
DB
113 err = 0;
114out:
115 return err;
116}
117
118static struct xfrm_mode xfrm4_beet_mode = {
119 .input = xfrm4_beet_input,
120 .output = xfrm4_beet_output,
121 .owner = THIS_MODULE,
122 .encap = XFRM_MODE_BEET,
123};
124
125static int __init xfrm4_beet_init(void)
126{
127 return xfrm_register_mode(&xfrm4_beet_mode, AF_INET);
128}
129
130static void __exit xfrm4_beet_exit(void)
131{
132 int err;
133
134 err = xfrm_unregister_mode(&xfrm4_beet_mode, AF_INET);
135 BUG_ON(err);
136}
137
138module_init(xfrm4_beet_init);
139module_exit(xfrm4_beet_exit);
140MODULE_LICENSE("GPL");
141MODULE_ALIAS_XFRM_MODE(AF_INET, XFRM_MODE_BEET);