1 /* xfrm4_protocol.c - Generic xfrm protocol multiplexer.
3 * Copyright (C) 2013 secunet Security Networks AG
6 * Steffen Klassert <steffen.klassert@secunet.com>
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
17 #include <linux/init.h>
18 #include <linux/mutex.h>
19 #include <linux/skbuff.h>
22 #include <net/protocol.h>
25 static struct xfrm4_protocol __rcu *esp4_handlers __read_mostly;
26 static struct xfrm4_protocol __rcu *ah4_handlers __read_mostly;
27 static struct xfrm4_protocol __rcu *ipcomp4_handlers __read_mostly;
28 static DEFINE_MUTEX(xfrm4_protocol_mutex);
30 static inline struct xfrm4_protocol __rcu **proto_handlers(u8 protocol)
34 return &esp4_handlers;
38 return &ipcomp4_handlers;
44 #define for_each_protocol_rcu(head, handler) \
45 for (handler = rcu_dereference(head); \
47 handler = rcu_dereference(handler->next)) \
49 int xfrm4_rcv_cb(struct sk_buff *skb, u8 protocol, int err)
52 struct xfrm4_protocol *handler;
53 struct xfrm4_protocol __rcu **head = proto_handlers(protocol);
58 for_each_protocol_rcu(*head, handler)
59 if ((ret = handler->cb_handler(skb, err)) <= 0)
64 EXPORT_SYMBOL(xfrm4_rcv_cb);
66 int xfrm4_rcv_encap(struct sk_buff *skb, int nexthdr, __be32 spi,
70 struct xfrm4_protocol *handler;
71 struct xfrm4_protocol __rcu **head = proto_handlers(nexthdr);
73 XFRM_TUNNEL_SKB_CB(skb)->tunnel.ip4 = NULL;
74 XFRM_SPI_SKB_CB(skb)->family = AF_INET;
75 XFRM_SPI_SKB_CB(skb)->daddroff = offsetof(struct iphdr, daddr);
80 for_each_protocol_rcu(*head, handler)
81 if ((ret = handler->input_handler(skb, nexthdr, spi, encap_type)) != -EINVAL)
85 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
90 EXPORT_SYMBOL(xfrm4_rcv_encap);
92 static int xfrm4_esp_rcv(struct sk_buff *skb)
95 struct xfrm4_protocol *handler;
97 XFRM_TUNNEL_SKB_CB(skb)->tunnel.ip4 = NULL;
99 for_each_protocol_rcu(esp4_handlers, handler)
100 if ((ret = handler->handler(skb)) != -EINVAL)
103 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
109 static void xfrm4_esp_err(struct sk_buff *skb, u32 info)
111 struct xfrm4_protocol *handler;
113 for_each_protocol_rcu(esp4_handlers, handler)
114 if (!handler->err_handler(skb, info))
118 static int xfrm4_ah_rcv(struct sk_buff *skb)
121 struct xfrm4_protocol *handler;
123 XFRM_TUNNEL_SKB_CB(skb)->tunnel.ip4 = NULL;
125 for_each_protocol_rcu(ah4_handlers, handler)
126 if ((ret = handler->handler(skb)) != -EINVAL)
129 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
135 static void xfrm4_ah_err(struct sk_buff *skb, u32 info)
137 struct xfrm4_protocol *handler;
139 for_each_protocol_rcu(ah4_handlers, handler)
140 if (!handler->err_handler(skb, info))
144 static int xfrm4_ipcomp_rcv(struct sk_buff *skb)
147 struct xfrm4_protocol *handler;
149 XFRM_TUNNEL_SKB_CB(skb)->tunnel.ip4 = NULL;
151 for_each_protocol_rcu(ipcomp4_handlers, handler)
152 if ((ret = handler->handler(skb)) != -EINVAL)
155 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
161 static void xfrm4_ipcomp_err(struct sk_buff *skb, u32 info)
163 struct xfrm4_protocol *handler;
165 for_each_protocol_rcu(ipcomp4_handlers, handler)
166 if (!handler->err_handler(skb, info))
170 static const struct net_protocol esp4_protocol = {
171 .handler = xfrm4_esp_rcv,
172 .err_handler = xfrm4_esp_err,
177 static const struct net_protocol ah4_protocol = {
178 .handler = xfrm4_ah_rcv,
179 .err_handler = xfrm4_ah_err,
184 static const struct net_protocol ipcomp4_protocol = {
185 .handler = xfrm4_ipcomp_rcv,
186 .err_handler = xfrm4_ipcomp_err,
191 static const struct xfrm_input_afinfo xfrm4_input_afinfo = {
193 .callback = xfrm4_rcv_cb,
196 static inline const struct net_protocol *netproto(unsigned char protocol)
200 return &esp4_protocol;
202 return &ah4_protocol;
204 return &ipcomp4_protocol;
210 int xfrm4_protocol_register(struct xfrm4_protocol *handler,
211 unsigned char protocol)
213 struct xfrm4_protocol __rcu **pprev;
214 struct xfrm4_protocol *t;
215 bool add_netproto = false;
217 int priority = handler->priority;
219 if (!proto_handlers(protocol) || !netproto(protocol))
222 mutex_lock(&xfrm4_protocol_mutex);
224 if (!rcu_dereference_protected(*proto_handlers(protocol),
225 lockdep_is_held(&xfrm4_protocol_mutex)))
228 for (pprev = proto_handlers(protocol);
229 (t = rcu_dereference_protected(*pprev,
230 lockdep_is_held(&xfrm4_protocol_mutex))) != NULL;
232 if (t->priority < priority)
234 if (t->priority == priority)
238 handler->next = *pprev;
239 rcu_assign_pointer(*pprev, handler);
244 mutex_unlock(&xfrm4_protocol_mutex);
247 if (inet_add_protocol(netproto(protocol), protocol)) {
248 pr_err("%s: can't add protocol\n", __func__);
255 EXPORT_SYMBOL(xfrm4_protocol_register);
257 int xfrm4_protocol_deregister(struct xfrm4_protocol *handler,
258 unsigned char protocol)
260 struct xfrm4_protocol __rcu **pprev;
261 struct xfrm4_protocol *t;
264 if (!proto_handlers(protocol) || !netproto(protocol))
267 mutex_lock(&xfrm4_protocol_mutex);
269 for (pprev = proto_handlers(protocol);
270 (t = rcu_dereference_protected(*pprev,
271 lockdep_is_held(&xfrm4_protocol_mutex))) != NULL;
274 *pprev = handler->next;
280 if (!rcu_dereference_protected(*proto_handlers(protocol),
281 lockdep_is_held(&xfrm4_protocol_mutex))) {
282 if (inet_del_protocol(netproto(protocol), protocol) < 0) {
283 pr_err("%s: can't remove protocol\n", __func__);
288 mutex_unlock(&xfrm4_protocol_mutex);
294 EXPORT_SYMBOL(xfrm4_protocol_deregister);
296 void __init xfrm4_protocol_init(void)
298 xfrm_input_register_afinfo(&xfrm4_input_afinfo);
300 EXPORT_SYMBOL(xfrm4_protocol_init);