1 /* xfrm6_protocol.c - Generic xfrm protocol multiplexer for ipv6.
3 * Copyright (C) 2013 secunet Security Networks AG
6 * Steffen Klassert <steffen.klassert@secunet.com>
9 * net/ipv4/xfrm4_protocol.c
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>
20 #include <linux/icmpv6.h>
22 #include <net/protocol.h>
25 static struct xfrm6_protocol __rcu
*esp6_handlers __read_mostly
;
26 static struct xfrm6_protocol __rcu
*ah6_handlers __read_mostly
;
27 static struct xfrm6_protocol __rcu
*ipcomp6_handlers __read_mostly
;
28 static DEFINE_MUTEX(xfrm6_protocol_mutex
);
30 static inline struct xfrm6_protocol __rcu
**proto_handlers(u8 protocol
)
34 return &esp6_handlers
;
38 return &ipcomp6_handlers
;
44 #define for_each_protocol_rcu(head, handler) \
45 for (handler = rcu_dereference(head); \
47 handler = rcu_dereference(handler->next)) \
49 int xfrm6_rcv_cb(struct sk_buff *skb, u8 protocol, int err)
52 struct xfrm6_protocol
*handler
;
53 struct xfrm6_protocol __rcu
**head
= proto_handlers(protocol
);
58 for_each_protocol_rcu(*proto_handlers(protocol
), handler
)
59 if ((ret
= handler
->cb_handler(skb
, err
)) <= 0)
64 EXPORT_SYMBOL(xfrm6_rcv_cb
);
66 static int xfrm6_esp_rcv(struct sk_buff
*skb
)
69 struct xfrm6_protocol
*handler
;
71 XFRM_TUNNEL_SKB_CB(skb
)->tunnel
.ip6
= NULL
;
73 for_each_protocol_rcu(esp6_handlers
, handler
)
74 if ((ret
= handler
->handler(skb
)) != -EINVAL
)
77 icmpv6_send(skb
, ICMPV6_DEST_UNREACH
, ICMPV6_PORT_UNREACH
, 0);
83 static void xfrm6_esp_err(struct sk_buff
*skb
, struct inet6_skb_parm
*opt
,
84 u8 type
, u8 code
, int offset
, __be32 info
)
86 struct xfrm6_protocol
*handler
;
88 for_each_protocol_rcu(esp6_handlers
, handler
)
89 if (!handler
->err_handler(skb
, opt
, type
, code
, offset
, info
))
93 static int xfrm6_ah_rcv(struct sk_buff
*skb
)
96 struct xfrm6_protocol
*handler
;
98 XFRM_TUNNEL_SKB_CB(skb
)->tunnel
.ip6
= NULL
;
100 for_each_protocol_rcu(ah6_handlers
, handler
)
101 if ((ret
= handler
->handler(skb
)) != -EINVAL
)
104 icmpv6_send(skb
, ICMPV6_DEST_UNREACH
, ICMPV6_PORT_UNREACH
, 0);
110 static void xfrm6_ah_err(struct sk_buff
*skb
, struct inet6_skb_parm
*opt
,
111 u8 type
, u8 code
, int offset
, __be32 info
)
113 struct xfrm6_protocol
*handler
;
115 for_each_protocol_rcu(ah6_handlers
, handler
)
116 if (!handler
->err_handler(skb
, opt
, type
, code
, offset
, info
))
120 static int xfrm6_ipcomp_rcv(struct sk_buff
*skb
)
123 struct xfrm6_protocol
*handler
;
125 XFRM_TUNNEL_SKB_CB(skb
)->tunnel
.ip6
= NULL
;
127 for_each_protocol_rcu(ipcomp6_handlers
, handler
)
128 if ((ret
= handler
->handler(skb
)) != -EINVAL
)
131 icmpv6_send(skb
, ICMPV6_DEST_UNREACH
, ICMPV6_PORT_UNREACH
, 0);
137 static void xfrm6_ipcomp_err(struct sk_buff
*skb
, struct inet6_skb_parm
*opt
,
138 u8 type
, u8 code
, int offset
, __be32 info
)
140 struct xfrm6_protocol
*handler
;
142 for_each_protocol_rcu(ipcomp6_handlers
, handler
)
143 if (!handler
->err_handler(skb
, opt
, type
, code
, offset
, info
))
147 static const struct inet6_protocol esp6_protocol
= {
148 .handler
= xfrm6_esp_rcv
,
149 .err_handler
= xfrm6_esp_err
,
150 .flags
= INET6_PROTO_NOPOLICY
,
153 static const struct inet6_protocol ah6_protocol
= {
154 .handler
= xfrm6_ah_rcv
,
155 .err_handler
= xfrm6_ah_err
,
156 .flags
= INET6_PROTO_NOPOLICY
,
159 static const struct inet6_protocol ipcomp6_protocol
= {
160 .handler
= xfrm6_ipcomp_rcv
,
161 .err_handler
= xfrm6_ipcomp_err
,
162 .flags
= INET6_PROTO_NOPOLICY
,
165 static struct xfrm_input_afinfo xfrm6_input_afinfo
= {
167 .owner
= THIS_MODULE
,
168 .callback
= xfrm6_rcv_cb
,
171 static inline const struct inet6_protocol
*netproto(unsigned char protocol
)
175 return &esp6_protocol
;
177 return &ah6_protocol
;
179 return &ipcomp6_protocol
;
185 int xfrm6_protocol_register(struct xfrm6_protocol
*handler
,
186 unsigned char protocol
)
188 struct xfrm6_protocol __rcu
**pprev
;
189 struct xfrm6_protocol
*t
;
190 bool add_netproto
= false;
192 int priority
= handler
->priority
;
194 if (!proto_handlers(protocol
) || !netproto(protocol
))
197 mutex_lock(&xfrm6_protocol_mutex
);
199 if (!rcu_dereference_protected(*proto_handlers(protocol
),
200 lockdep_is_held(&xfrm6_protocol_mutex
)))
203 for (pprev
= proto_handlers(protocol
);
204 (t
= rcu_dereference_protected(*pprev
,
205 lockdep_is_held(&xfrm6_protocol_mutex
))) != NULL
;
207 if (t
->priority
< priority
)
209 if (t
->priority
== priority
)
213 handler
->next
= *pprev
;
214 rcu_assign_pointer(*pprev
, handler
);
219 mutex_unlock(&xfrm6_protocol_mutex
);
222 if (inet6_add_protocol(netproto(protocol
), protocol
)) {
223 pr_err("%s: can't add protocol\n", __func__
);
230 EXPORT_SYMBOL(xfrm6_protocol_register
);
232 int xfrm6_protocol_deregister(struct xfrm6_protocol
*handler
,
233 unsigned char protocol
)
235 struct xfrm6_protocol __rcu
**pprev
;
236 struct xfrm6_protocol
*t
;
239 if (!proto_handlers(protocol
) || !netproto(protocol
))
242 mutex_lock(&xfrm6_protocol_mutex
);
244 for (pprev
= proto_handlers(protocol
);
245 (t
= rcu_dereference_protected(*pprev
,
246 lockdep_is_held(&xfrm6_protocol_mutex
))) != NULL
;
249 *pprev
= handler
->next
;
255 if (!rcu_dereference_protected(*proto_handlers(protocol
),
256 lockdep_is_held(&xfrm6_protocol_mutex
))) {
257 if (inet6_del_protocol(netproto(protocol
), protocol
) < 0) {
258 pr_err("%s: can't remove protocol\n", __func__
);
263 mutex_unlock(&xfrm6_protocol_mutex
);
269 EXPORT_SYMBOL(xfrm6_protocol_deregister
);
271 int __init
xfrm6_protocol_init(void)
273 return xfrm_input_register_afinfo(&xfrm6_input_afinfo
);
276 void xfrm6_protocol_fini(void)
278 xfrm_input_unregister_afinfo(&xfrm6_input_afinfo
);