blob: 5c29b367b4321d04ea802a4c2ad950d6a0e6adc8 [file] [log] [blame]
Masahide NAKAMURA1d716272006-08-23 17:59:44 -07001/*
2 * xfrm6_mode_ro.c - Route optimization mode for IPv6.
3 *
4 * Copyright (C)2003-2006 Helsinki University of Technology
5 * Copyright (C)2003-2006 USAGI/WIDE Project
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21/*
22 * Authors:
23 * Noriaki TAKAMIYA @USAGI
24 * Masahide NAKAMURA @USAGI
25 */
26
27#include <linux/init.h>
28#include <linux/kernel.h>
29#include <linux/module.h>
30#include <linux/skbuff.h>
31#include <linux/stringify.h>
Herbert Xu45b17f42007-10-08 17:27:19 -070032#include <linux/time.h>
Masahide NAKAMURA1d716272006-08-23 17:59:44 -070033#include <net/ipv6.h>
34#include <net/xfrm.h>
35
36/* Add route optimization header space.
37 *
38 * The IP header and mutable extension headers will be moved forward to make
39 * space for the route optimization header.
40 *
41 * On exit, skb->h will be set to the start of the encapsulation header to be
Herbert Xu007f0212007-10-09 13:25:59 -070042 * filled in by x->type->output and the mac header will be set to the
43 * nextheader field of the extension header directly preceding the
44 * encapsulation header, or in its absence, that of the top IP header.
Herbert Xu7b277b12007-10-10 15:44:06 -070045 * The value of the network header will always point to the top IP header
46 * while skb->data will point to the payload.
Masahide NAKAMURA1d716272006-08-23 17:59:44 -070047 */
Jamal Hadi Salimeb878e82006-08-31 17:42:59 -070048static int xfrm6_ro_output(struct xfrm_state *x, struct sk_buff *skb)
Masahide NAKAMURA1d716272006-08-23 17:59:44 -070049{
Masahide NAKAMURA1d716272006-08-23 17:59:44 -070050 struct ipv6hdr *iph;
51 u8 *prevhdr;
52 int hdr_len;
53
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -070054 iph = ipv6_hdr(skb);
Masahide NAKAMURA1d716272006-08-23 17:59:44 -070055
56 hdr_len = x->type->hdr_offset(x, skb, &prevhdr);
Herbert Xu007f0212007-10-09 13:25:59 -070057 skb_set_mac_header(skb, (prevhdr - x->props.header_len) - skb->data);
Herbert Xu7b277b12007-10-10 15:44:06 -070058 skb_set_network_header(skb, -x->props.header_len);
59 skb_set_transport_header(skb, hdr_len - x->props.header_len);
60 __skb_pull(skb, hdr_len);
61 memmove(ipv6_hdr(skb), iph, hdr_len);
Herbert Xu45b17f42007-10-08 17:27:19 -070062
63 x->lastused = get_seconds();
64
Masahide NAKAMURA1d716272006-08-23 17:59:44 -070065 return 0;
66}
67
68/*
69 * Do nothing about routing optimization header unlike IPsec.
70 */
71static int xfrm6_ro_input(struct xfrm_state *x, struct sk_buff *skb)
72{
73 return 0;
74}
75
76static struct xfrm_mode xfrm6_ro_mode = {
77 .input = xfrm6_ro_input,
78 .output = xfrm6_ro_output,
79 .owner = THIS_MODULE,
80 .encap = XFRM_MODE_ROUTEOPTIMIZATION,
81};
82
83static int __init xfrm6_ro_init(void)
84{
85 return xfrm_register_mode(&xfrm6_ro_mode, AF_INET6);
86}
87
88static void __exit xfrm6_ro_exit(void)
89{
90 int err;
91
92 err = xfrm_unregister_mode(&xfrm6_ro_mode, AF_INET6);
93 BUG_ON(err);
94}
95
96module_init(xfrm6_ro_init);
97module_exit(xfrm6_ro_exit);
98MODULE_LICENSE("GPL");
99MODULE_ALIAS_XFRM_MODE(AF_INET6, XFRM_MODE_ROUTEOPTIMIZATION);