]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/ipv4/xfrm4_mode_transport.c
[SK_BUFF]: Introduce ip_hdr(), remove skb->nh.iph
[net-next-2.6.git] / net / ipv4 / xfrm4_mode_transport.c
CommitLineData
b59f45d0
HX
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 */
eb878e84 24static int xfrm4_transport_output(struct xfrm_state *x, struct sk_buff *skb)
b59f45d0 25{
eddc9ec5
ACM
26 struct iphdr *iph = ip_hdr(skb);
27 int ihl = iph->ihl * 4;
b59f45d0 28
eddc9ec5 29 skb->h.raw = skb->nh.raw;
b59f45d0
HX
30 skb->h.raw += ihl;
31
e2d1bca7
ACM
32 skb_push(skb, x->props.header_len);
33 skb_reset_network_header(skb);
d56f90a7 34 memmove(skb_network_header(skb), iph, ihl);
b59f45d0
HX
35 return 0;
36}
37
31a4ab93
HX
38/* Remove encapsulation header.
39 *
40 * The IP header will be moved over the top of the encapsulation header.
41 *
42 * On entry, skb->h shall point to where the IP header should be and skb->nh
43 * shall be set to where the IP header currently is. skb->data shall point
44 * to the start of the payload.
45 */
b59f45d0
HX
46static int xfrm4_transport_input(struct xfrm_state *x, struct sk_buff *skb)
47{
31a4ab93
HX
48 int ihl = skb->data - skb->h.raw;
49
7f5c0cb0 50 if (skb->h.raw != skb->nh.raw) {
d56f90a7 51 memmove(skb->h.raw, skb_network_header(skb), ihl);
7f5c0cb0
ACM
52 skb->nh.raw = skb->h.raw;
53 }
eddc9ec5 54 ip_hdr(skb)->tot_len = htons(skb->len + ihl);
31a4ab93 55 skb->h.raw = skb->data;
b59f45d0
HX
56 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);