1 /* tunnel4.c: Generic IP tunnel transformer.
3 * Copyright (C) 2003 David S. Miller (davem@redhat.com)
6 #include <linux/init.h>
7 #include <linux/module.h>
8 #include <linux/mutex.h>
9 #include <linux/netdevice.h>
10 #include <linux/skbuff.h>
11 #include <linux/slab.h>
14 #include <net/protocol.h>
17 static struct xfrm_tunnel
*tunnel4_handlers
;
18 static struct xfrm_tunnel
*tunnel64_handlers
;
19 static DEFINE_MUTEX(tunnel4_mutex
);
21 static inline struct xfrm_tunnel
**fam_handlers(unsigned short family
)
23 return (family
== AF_INET
) ? &tunnel4_handlers
: &tunnel64_handlers
;
26 int xfrm4_tunnel_register(struct xfrm_tunnel
*handler
, unsigned short family
)
28 struct xfrm_tunnel
**pprev
;
30 int priority
= handler
->priority
;
32 mutex_lock(&tunnel4_mutex
);
34 for (pprev
= fam_handlers(family
); *pprev
; pprev
= &(*pprev
)->next
) {
35 if ((*pprev
)->priority
> priority
)
37 if ((*pprev
)->priority
== priority
)
41 handler
->next
= *pprev
;
47 mutex_unlock(&tunnel4_mutex
);
52 EXPORT_SYMBOL(xfrm4_tunnel_register
);
54 int xfrm4_tunnel_deregister(struct xfrm_tunnel
*handler
, unsigned short family
)
56 struct xfrm_tunnel
**pprev
;
59 mutex_lock(&tunnel4_mutex
);
61 for (pprev
= fam_handlers(family
); *pprev
; pprev
= &(*pprev
)->next
) {
62 if (*pprev
== handler
) {
63 *pprev
= handler
->next
;
69 mutex_unlock(&tunnel4_mutex
);
76 EXPORT_SYMBOL(xfrm4_tunnel_deregister
);
78 static int tunnel4_rcv(struct sk_buff
*skb
)
80 struct xfrm_tunnel
*handler
;
82 if (!pskb_may_pull(skb
, sizeof(struct iphdr
)))
85 for (handler
= tunnel4_handlers
; handler
; handler
= handler
->next
)
86 if (!handler
->handler(skb
))
89 icmp_send(skb
, ICMP_DEST_UNREACH
, ICMP_PORT_UNREACH
, 0);
96 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
97 static int tunnel64_rcv(struct sk_buff
*skb
)
99 struct xfrm_tunnel
*handler
;
101 if (!pskb_may_pull(skb
, sizeof(struct ipv6hdr
)))
104 for (handler
= tunnel64_handlers
; handler
; handler
= handler
->next
)
105 if (!handler
->handler(skb
))
108 icmp_send(skb
, ICMP_DEST_UNREACH
, ICMP_PORT_UNREACH
, 0);
116 static void tunnel4_err(struct sk_buff
*skb
, u32 info
)
118 struct xfrm_tunnel
*handler
;
120 for (handler
= tunnel4_handlers
; handler
; handler
= handler
->next
)
121 if (!handler
->err_handler(skb
, info
))
125 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
126 static void tunnel64_err(struct sk_buff
*skb
, u32 info
)
128 struct xfrm_tunnel
*handler
;
130 for (handler
= tunnel64_handlers
; handler
; handler
= handler
->next
)
131 if (!handler
->err_handler(skb
, info
))
136 static const struct net_protocol tunnel4_protocol
= {
137 .handler
= tunnel4_rcv
,
138 .err_handler
= tunnel4_err
,
143 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
144 static const struct net_protocol tunnel64_protocol
= {
145 .handler
= tunnel64_rcv
,
146 .err_handler
= tunnel64_err
,
152 static int __init
tunnel4_init(void)
154 if (inet_add_protocol(&tunnel4_protocol
, IPPROTO_IPIP
)) {
155 printk(KERN_ERR
"tunnel4 init: can't add protocol\n");
158 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
159 if (inet_add_protocol(&tunnel64_protocol
, IPPROTO_IPV6
)) {
160 printk(KERN_ERR
"tunnel64 init: can't add protocol\n");
161 inet_del_protocol(&tunnel4_protocol
, IPPROTO_IPIP
);
168 static void __exit
tunnel4_fini(void)
170 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
171 if (inet_del_protocol(&tunnel64_protocol
, IPPROTO_IPV6
))
172 printk(KERN_ERR
"tunnel64 close: can't remove protocol\n");
174 if (inet_del_protocol(&tunnel4_protocol
, IPPROTO_IPIP
))
175 printk(KERN_ERR
"tunnel4 close: can't remove protocol\n");
178 module_init(tunnel4_init
);
179 module_exit(tunnel4_fini
);
180 MODULE_LICENSE("GPL");