[SK_BUFF]: Introduce skb_network_header()
[pandora-kernel.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 xfrm_state *x, struct sk_buff *skb)
25 {
26         struct iphdr *iph;
27         int ihl;
28
29         iph = skb->nh.iph;
30         skb->h.ipiph = iph;
31
32         ihl = iph->ihl * 4;
33         skb->h.raw += ihl;
34
35         skb_push(skb, x->props.header_len);
36         skb_reset_network_header(skb);
37         memmove(skb_network_header(skb), iph, ihl);
38         return 0;
39 }
40
41 /* Remove encapsulation header.
42  *
43  * The IP header will be moved over the top of the encapsulation header.
44  *
45  * On entry, skb->h shall point to where the IP header should be and skb->nh
46  * shall be set to where the IP header currently is.  skb->data shall point
47  * to the start of the payload.
48  */
49 static int xfrm4_transport_input(struct xfrm_state *x, struct sk_buff *skb)
50 {
51         int ihl = skb->data - skb->h.raw;
52
53         if (skb->h.raw != skb->nh.raw) {
54                 memmove(skb->h.raw, skb_network_header(skb), ihl);
55                 skb->nh.raw = skb->h.raw;
56         }
57         skb->nh.iph->tot_len = htons(skb->len + ihl);
58         skb->h.raw = skb->data;
59         return 0;
60 }
61
62 static struct xfrm_mode xfrm4_transport_mode = {
63         .input = xfrm4_transport_input,
64         .output = xfrm4_transport_output,
65         .owner = THIS_MODULE,
66         .encap = XFRM_MODE_TRANSPORT,
67 };
68
69 static int __init xfrm4_transport_init(void)
70 {
71         return xfrm_register_mode(&xfrm4_transport_mode, AF_INET);
72 }
73
74 static void __exit xfrm4_transport_exit(void)
75 {
76         int err;
77
78         err = xfrm_unregister_mode(&xfrm4_transport_mode, AF_INET);
79         BUG_ON(err);
80 }
81
82 module_init(xfrm4_transport_init);
83 module_exit(xfrm4_transport_exit);
84 MODULE_LICENSE("GPL");
85 MODULE_ALIAS_XFRM_MODE(AF_INET, XFRM_MODE_TRANSPORT);