blob: 4acc0508c5ebc65dc392de50a207901b2ea8d305 [file] [log] [blame]
Herbert Xub59f45d2006-05-27 23:05:54 -07001/*
2 * xfrm4_mode_transport.c - Transport mode encapsulation for IPv4.
3 *
4 * Copyright (c) 2004-2006 Herbert Xu <herbert@gondor.apana.org.au>
5 */
6
7#include <linux/init.h>
8#include <linux/kernel.h>
9#include <linux/module.h>
10#include <linux/skbuff.h>
11#include <linux/stringify.h>
12#include <net/dst.h>
13#include <net/ip.h>
14#include <net/xfrm.h>
15
16/* Add encapsulation header.
17 *
18 * The IP header will be moved forward to make space for the encapsulation
19 * header.
Herbert Xub59f45d2006-05-27 23:05:54 -070020 */
Jamal Hadi Salimeb878e82006-08-31 17:42:59 -070021static int xfrm4_transport_output(struct xfrm_state *x, struct sk_buff *skb)
Herbert Xub59f45d2006-05-27 23:05:54 -070022{
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -070023 struct iphdr *iph = ip_hdr(skb);
24 int ihl = iph->ihl * 4;
Herbert Xub59f45d2006-05-27 23:05:54 -070025
Herbert Xu7b277b12007-10-10 15:44:06 -070026 skb_set_network_header(skb, -x->props.header_len);
Herbert Xu37fedd32007-10-10 15:44:44 -070027 skb->mac_header = skb->network_header +
28 offsetof(struct iphdr, protocol);
29 skb->transport_header = skb->network_header + ihl;
Herbert Xu7b277b12007-10-10 15:44:06 -070030 __skb_pull(skb, ihl);
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -070031 memmove(skb_network_header(skb), iph, ihl);
Herbert Xub59f45d2006-05-27 23:05:54 -070032 return 0;
33}
34
Herbert Xu31a4ab92006-05-27 23:06:13 -070035/* Remove encapsulation header.
36 *
37 * The IP header will be moved over the top of the encapsulation header.
38 *
39 * On entry, skb->h shall point to where the IP header should be and skb->nh
40 * shall be set to where the IP header currently is. skb->data shall point
41 * to the start of the payload.
42 */
Herbert Xub59f45d2006-05-27 23:05:54 -070043static int xfrm4_transport_input(struct xfrm_state *x, struct sk_buff *skb)
44{
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -070045 int ihl = skb->data - skb_transport_header(skb);
Steffen Klassert7785bba2017-02-15 09:40:00 +010046 struct xfrm_offload *xo = xfrm_offload(skb);
Herbert Xu31a4ab92006-05-27 23:06:13 -070047
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -070048 if (skb->transport_header != skb->network_header) {
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -070049 memmove(skb_transport_header(skb),
50 skb_network_header(skb), ihl);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -070051 skb->network_header = skb->transport_header;
Arnaldo Carvalho de Melo7f5c0cb2007-03-10 19:59:16 -030052 }
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -070053 ip_hdr(skb)->tot_len = htons(skb->len + ihl);
Steffen Klassert7785bba2017-02-15 09:40:00 +010054 if (!xo || !(xo->flags & XFRM_GRO))
55 skb_reset_transport_header(skb);
Herbert Xub59f45d2006-05-27 23:05:54 -070056 return 0;
57}
58
59static struct xfrm_mode xfrm4_transport_mode = {
60 .input = xfrm4_transport_input,
61 .output = xfrm4_transport_output,
62 .owner = THIS_MODULE,
63 .encap = XFRM_MODE_TRANSPORT,
64};
65
66static int __init xfrm4_transport_init(void)
67{
68 return xfrm_register_mode(&xfrm4_transport_mode, AF_INET);
69}
70
71static void __exit xfrm4_transport_exit(void)
72{
73 int err;
74
75 err = xfrm_unregister_mode(&xfrm4_transport_mode, AF_INET);
76 BUG_ON(err);
77}
78
79module_init(xfrm4_transport_init);
80module_exit(xfrm4_transport_exit);
81MODULE_LICENSE("GPL");
82MODULE_ALIAS_XFRM_MODE(AF_INET, XFRM_MODE_TRANSPORT);