[INET]: Add missed tunnel64_err handler
[linux-2.6/sactl.git] / net / ipv4 / tunnel4.c
blobd619d2e83f5d69f62ff3daecad930c06a7d12731
1 /* tunnel4.c: Generic IP tunnel transformer.
3 * Copyright (C) 2003 David S. Miller (davem@redhat.com)
4 */
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 <net/icmp.h>
12 #include <net/ip.h>
13 #include <net/protocol.h>
14 #include <net/xfrm.h>
16 static struct xfrm_tunnel *tunnel4_handlers;
17 static struct xfrm_tunnel *tunnel64_handlers;
18 static DEFINE_MUTEX(tunnel4_mutex);
20 int xfrm4_tunnel_register(struct xfrm_tunnel *handler, unsigned short family)
22 struct xfrm_tunnel **pprev;
23 int ret = -EEXIST;
24 int priority = handler->priority;
26 mutex_lock(&tunnel4_mutex);
28 for (pprev = (family == AF_INET) ? &tunnel4_handlers : &tunnel64_handlers;
29 *pprev; pprev = &(*pprev)->next) {
30 if ((*pprev)->priority > priority)
31 break;
32 if ((*pprev)->priority == priority)
33 goto err;
36 handler->next = *pprev;
37 *pprev = handler;
39 ret = 0;
41 err:
42 mutex_unlock(&tunnel4_mutex);
44 return ret;
47 EXPORT_SYMBOL(xfrm4_tunnel_register);
49 int xfrm4_tunnel_deregister(struct xfrm_tunnel *handler, unsigned short family)
51 struct xfrm_tunnel **pprev;
52 int ret = -ENOENT;
54 mutex_lock(&tunnel4_mutex);
56 for (pprev = (family == AF_INET) ? &tunnel4_handlers : &tunnel64_handlers;
57 *pprev; pprev = &(*pprev)->next) {
58 if (*pprev == handler) {
59 *pprev = handler->next;
60 ret = 0;
61 break;
65 mutex_unlock(&tunnel4_mutex);
67 synchronize_net();
69 return ret;
72 EXPORT_SYMBOL(xfrm4_tunnel_deregister);
74 static int tunnel4_rcv(struct sk_buff *skb)
76 struct xfrm_tunnel *handler;
78 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
79 goto drop;
81 for (handler = tunnel4_handlers; handler; handler = handler->next)
82 if (!handler->handler(skb))
83 return 0;
85 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
87 drop:
88 kfree_skb(skb);
89 return 0;
92 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
93 static int tunnel64_rcv(struct sk_buff *skb)
95 struct xfrm_tunnel *handler;
97 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
98 goto drop;
100 for (handler = tunnel64_handlers; handler; handler = handler->next)
101 if (!handler->handler(skb))
102 return 0;
104 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
106 drop:
107 kfree_skb(skb);
108 return 0;
110 #endif
112 static void tunnel4_err(struct sk_buff *skb, u32 info)
114 struct xfrm_tunnel *handler;
116 for (handler = tunnel4_handlers; handler; handler = handler->next)
117 if (!handler->err_handler(skb, info))
118 break;
121 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
122 static void tunnel64_err(struct sk_buff *skb, u32 info)
124 struct xfrm_tunnel *handler;
126 for (handler = tunnel64_handlers; handler; handler = handler->next)
127 if (!handler->err_handler(skb, info))
128 break;
130 #endif
132 static struct net_protocol tunnel4_protocol = {
133 .handler = tunnel4_rcv,
134 .err_handler = tunnel4_err,
135 .no_policy = 1,
138 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
139 static struct net_protocol tunnel64_protocol = {
140 .handler = tunnel64_rcv,
141 .err_handler = tunnel64_err,
142 .no_policy = 1,
144 #endif
146 static int __init tunnel4_init(void)
148 if (inet_add_protocol(&tunnel4_protocol, IPPROTO_IPIP)) {
149 printk(KERN_ERR "tunnel4 init: can't add protocol\n");
150 return -EAGAIN;
152 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
153 if (inet_add_protocol(&tunnel64_protocol, IPPROTO_IPV6)) {
154 printk(KERN_ERR "tunnel64 init: can't add protocol\n");
155 inet_del_protocol(&tunnel4_protocol, IPPROTO_IPIP);
156 return -EAGAIN;
158 #endif
159 return 0;
162 static void __exit tunnel4_fini(void)
164 #if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
165 if (inet_del_protocol(&tunnel64_protocol, IPPROTO_IPV6))
166 printk(KERN_ERR "tunnel64 close: can't remove protocol\n");
167 #endif
168 if (inet_del_protocol(&tunnel4_protocol, IPPROTO_IPIP))
169 printk(KERN_ERR "tunnel4 close: can't remove protocol\n");
172 module_init(tunnel4_init);
173 module_exit(tunnel4_fini);
174 MODULE_LICENSE("GPL");