]> git.karo-electronics.de Git - karo-tx-linux.git/blob - net/ipv4/xfrm4_mode_transport.c
[IPSEC] xfrm: Abstract out encapsulation modes
[karo-tx-linux.git] / net / ipv4 / xfrm4_mode_transport.c
1 /*
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.
20  *
21  * On exit, skb->h will be set to the start of the payload to be processed
22  * by x->type->output and skb->nh will be set to the top IP header.
23  */
24 static int xfrm4_transport_output(struct sk_buff *skb)
25 {
26         struct xfrm_state *x;
27         struct iphdr *iph;
28         int ihl;
29
30         iph = skb->nh.iph;
31         skb->h.ipiph = iph;
32
33         ihl = iph->ihl * 4;
34         skb->h.raw += ihl;
35
36         x = skb->dst->xfrm;
37         skb->nh.raw = memmove(skb_push(skb, x->props.header_len), iph, ihl);
38         return 0;
39 }
40
41 static int xfrm4_transport_input(struct xfrm_state *x, struct sk_buff *skb)
42 {
43         return 0;
44 }
45
46 static struct xfrm_mode xfrm4_transport_mode = {
47         .input = xfrm4_transport_input,
48         .output = xfrm4_transport_output,
49         .owner = THIS_MODULE,
50         .encap = XFRM_MODE_TRANSPORT,
51 };
52
53 static int __init xfrm4_transport_init(void)
54 {
55         return xfrm_register_mode(&xfrm4_transport_mode, AF_INET);
56 }
57
58 static void __exit xfrm4_transport_exit(void)
59 {
60         int err;
61
62         err = xfrm_unregister_mode(&xfrm4_transport_mode, AF_INET);
63         BUG_ON(err);
64 }
65
66 module_init(xfrm4_transport_init);
67 module_exit(xfrm4_transport_exit);
68 MODULE_LICENSE("GPL");
69 MODULE_ALIAS_XFRM_MODE(AF_INET, XFRM_MODE_TRANSPORT);