blob: ed0583c1b9fc2e0033912e2d4c7177a12f17e8b7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * xfrm6_policy.c: based on xfrm4_policy.c
3 *
4 * Authors:
5 * Mitsuru KANDA @USAGI
Ian Morris67ba4152014-08-24 21:53:10 +01006 * Kazunori MIYAZAWA @USAGI
7 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
8 * IPv6 support
9 * YOSHIFUJI Hideaki
10 * Split up af-specific portion
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 */
13
Herbert Xu66cdb3c2007-11-13 21:37:28 -080014#include <linux/err.h>
15#include <linux/kernel.h>
Herbert Xuaabc9762005-05-03 16:27:10 -070016#include <linux/netdevice.h>
17#include <net/addrconf.h>
Herbert Xu45ff5a32007-11-13 21:35:32 -080018#include <net/dst.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <net/xfrm.h>
20#include <net/ip.h>
21#include <net/ipv6.h>
22#include <net/ip6_route.h>
Amerigo Wang07a93622012-10-29 16:23:10 +000023#if IS_ENABLED(CONFIG_IPV6_MIP6)
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -070024#include <net/mip6.h>
25#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Linus Torvalds1da177e2005-04-16 15:20:36 -070027static struct xfrm_policy_afinfo xfrm6_policy_afinfo;
28
Alexey Dobriyanc5b3cf42008-11-25 17:51:25 -080029static struct dst_entry *xfrm6_dst_lookup(struct net *net, int tos,
David S. Miller5e6b9302011-02-24 00:14:45 -050030 const xfrm_address_t *saddr,
31 const xfrm_address_t *daddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070032{
David S. Miller7e1dc7b2011-03-12 02:42:11 -050033 struct flowi6 fl6;
Herbert Xu66cdb3c2007-11-13 21:37:28 -080034 struct dst_entry *dst;
35 int err;
36
David S. Miller7e1dc7b2011-03-12 02:42:11 -050037 memset(&fl6, 0, sizeof(fl6));
38 memcpy(&fl6.daddr, daddr, sizeof(fl6.daddr));
Herbert Xu66cdb3c2007-11-13 21:37:28 -080039 if (saddr)
David S. Miller7e1dc7b2011-03-12 02:42:11 -050040 memcpy(&fl6.saddr, saddr, sizeof(fl6.saddr));
Herbert Xu66cdb3c2007-11-13 21:37:28 -080041
David S. Miller4c9483b2011-03-12 16:22:43 -050042 dst = ip6_route_output(net, NULL, &fl6);
Herbert Xu66cdb3c2007-11-13 21:37:28 -080043
44 err = dst->error;
45 if (dst->error) {
Ville Nuorvala42513202006-10-16 22:10:05 -070046 dst_release(dst);
Herbert Xu66cdb3c2007-11-13 21:37:28 -080047 dst = ERR_PTR(err);
48 }
49
50 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051}
52
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -080053static int xfrm6_get_saddr(struct net *net,
54 xfrm_address_t *saddr, xfrm_address_t *daddr)
Patrick McHardya1e59ab2006-09-19 12:57:34 -070055{
Herbert Xu66cdb3c2007-11-13 21:37:28 -080056 struct dst_entry *dst;
Brian Haley191cd582008-08-14 15:33:21 -070057 struct net_device *dev;
Patrick McHardya1e59ab2006-09-19 12:57:34 -070058
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -080059 dst = xfrm6_dst_lookup(net, 0, NULL, daddr);
Herbert Xu66cdb3c2007-11-13 21:37:28 -080060 if (IS_ERR(dst))
61 return -EHOSTUNREACH;
62
Brian Haley191cd582008-08-14 15:33:21 -070063 dev = ip6_dst_idev(dst)->dev;
Jiri Benc15e318b2015-03-29 16:59:24 +020064 ipv6_dev_get_saddr(dev_net(dev), dev, &daddr->in6, 0, &saddr->in6);
Herbert Xu66cdb3c2007-11-13 21:37:28 -080065 dst_release(dst);
66 return 0;
Patrick McHardya1e59ab2006-09-19 12:57:34 -070067}
68
David S. Miller05d84022011-02-22 17:47:10 -080069static int xfrm6_get_tos(const struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070{
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 return 0;
Herbert Xu25ee3282007-12-11 09:32:34 -080072}
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -080074static int xfrm6_init_path(struct xfrm_dst *path, struct dst_entry *dst,
75 int nfheader_len)
76{
77 if (dst->ops->family == AF_INET6) {
Ian Morris67ba4152014-08-24 21:53:10 +010078 struct rt6_info *rt = (struct rt6_info *)dst;
Martin KaFai Laub197df42015-05-22 20:56:01 -070079 path->path_cookie = rt6_get_cookie(rt);
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -080080 }
81
82 path->u.rt6.rt6i_nfheader_len = nfheader_len;
83
84 return 0;
85}
86
Herbert Xu87c1e122010-03-02 02:51:56 +000087static int xfrm6_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
David S. Miller0c7b3ee2011-02-22 17:48:57 -080088 const struct flowi *fl)
Herbert Xu25ee3282007-12-11 09:32:34 -080089{
Ian Morris67ba4152014-08-24 21:53:10 +010090 struct rt6_info *rt = (struct rt6_info *)xdst->route;
Herbert Xu25ee3282007-12-11 09:32:34 -080091
92 xdst->u.dst.dev = dev;
93 dev_hold(dev);
94
Nicolas Dichtelbc8e4b92010-04-21 16:25:30 -070095 xdst->u.rt6.rt6i_idev = in6_dev_get(dev);
Cong Wang84c4a9d2013-05-09 22:40:00 +000096 if (!xdst->u.rt6.rt6i_idev) {
97 dev_put(dev);
Herbert Xu25ee3282007-12-11 09:32:34 -080098 return -ENODEV;
Cong Wang84c4a9d2013-05-09 22:40:00 +000099 }
Herbert Xu25ee3282007-12-11 09:32:34 -0800100
101 /* Sheit... I remember I did this right. Apparently,
102 * it was magically lost, so this code needs audit */
103 xdst->u.rt6.rt6i_flags = rt->rt6i_flags & (RTF_ANYCAST |
104 RTF_LOCAL);
105 xdst->u.rt6.rt6i_metric = rt->rt6i_metric;
106 xdst->u.rt6.rt6i_node = rt->rt6i_node;
Martin KaFai Laub197df42015-05-22 20:56:01 -0700107 xdst->route_cookie = rt6_get_cookie(rt);
Herbert Xu25ee3282007-12-11 09:32:34 -0800108 xdst->u.rt6.rt6i_gateway = rt->rt6i_gateway;
109 xdst->u.rt6.rt6i_dst = rt->rt6i_dst;
110 xdst->u.rt6.rt6i_src = rt->rt6i_src;
111
112 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
115static inline void
Herbert Xud5422ef2007-12-12 10:44:16 -0800116_decode_session6(struct sk_buff *skb, struct flowi *fl, int reverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117{
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500118 struct flowi6 *fl6 = &fl->u.ip6;
Nicolas Dichtel7e3a42a2008-11-01 21:12:07 -0700119 int onlyproto = 0;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000120 const struct ipv6hdr *hdr = ipv6_hdr(skb);
Steffen Klassertde3b7a02014-12-04 09:46:20 +0100121 u16 offset = sizeof(*hdr);
YOSHIFUJI Hideakie3cae902006-04-18 14:46:52 -0700122 struct ipv6_opt_hdr *exthdr;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700123 const unsigned char *nh = skb_network_header(skb);
Steffen Klassertf8556912014-12-08 07:56:18 +0100124 u16 nhoff = IP6CB(skb)->nhoff;
Steffen Klassert84502b52013-10-30 11:16:28 +0100125 int oif = 0;
Steffen Klassertf8556912014-12-08 07:56:18 +0100126 u8 nexthdr;
127
128 if (!nhoff)
129 nhoff = offsetof(struct ipv6hdr, nexthdr);
130
131 nexthdr = nh[nhoff];
Steffen Klassert84502b52013-10-30 11:16:28 +0100132
133 if (skb_dst(skb))
134 oif = skb_dst(skb)->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500136 memset(fl6, 0, sizeof(struct flowi6));
137 fl6->flowi6_mark = skb->mark;
Steffen Klassert84502b52013-10-30 11:16:28 +0100138 fl6->flowi6_oif = reverse ? skb->skb_iif : oif;
Peter Kosyh44b451f2010-07-02 07:47:55 +0000139
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000140 fl6->daddr = reverse ? hdr->saddr : hdr->daddr;
141 fl6->saddr = reverse ? hdr->daddr : hdr->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Wei Yongjun59cae002009-07-02 16:59:49 +0000143 while (nh + offset + 1 < skb->data ||
144 pskb_may_pull(skb, nh + offset + 1 - skb->data)) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700145 nh = skb_network_header(skb);
146 exthdr = (struct ipv6_opt_hdr *)(nh + offset);
YOSHIFUJI Hideakie3cae902006-04-18 14:46:52 -0700147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 switch (nexthdr) {
Nicolas Dichtel7e3a42a2008-11-01 21:12:07 -0700149 case NEXTHDR_FRAGMENT:
150 onlyproto = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 case NEXTHDR_ROUTING:
152 case NEXTHDR_HOP:
153 case NEXTHDR_DEST:
154 offset += ipv6_optlen(exthdr);
155 nexthdr = exthdr->nexthdr;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700156 exthdr = (struct ipv6_opt_hdr *)(nh + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 break;
158
159 case IPPROTO_UDP:
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800160 case IPPROTO_UDPLITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 case IPPROTO_TCP:
162 case IPPROTO_SCTP:
Patrick McHardy9e999992005-12-19 14:03:46 -0800163 case IPPROTO_DCCP:
Wei Yongjun59cae002009-07-02 16:59:49 +0000164 if (!onlyproto && (nh + offset + 4 < skb->data ||
165 pskb_may_pull(skb, nh + offset + 4 - skb->data))) {
Li RongQing789f2022014-10-22 17:09:53 +0800166 __be16 *ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Li RongQing789f2022014-10-22 17:09:53 +0800168 nh = skb_network_header(skb);
169 ports = (__be16 *)(nh + offset);
David S. Miller1958b852011-03-12 16:36:19 -0500170 fl6->fl6_sport = ports[!!reverse];
171 fl6->fl6_dport = ports[!reverse];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500173 fl6->flowi6_proto = nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 return;
175
176 case IPPROTO_ICMPV6:
Nicolas Dichtel7e3a42a2008-11-01 21:12:07 -0700177 if (!onlyproto && pskb_may_pull(skb, nh + offset + 2 - skb->data)) {
Li RongQing789f2022014-10-22 17:09:53 +0800178 u8 *icmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Li RongQing789f2022014-10-22 17:09:53 +0800180 nh = skb_network_header(skb);
181 icmp = (u8 *)(nh + offset);
David S. Miller1958b852011-03-12 16:36:19 -0500182 fl6->fl6_icmp_type = icmp[0];
183 fl6->fl6_icmp_code = icmp[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 }
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500185 fl6->flowi6_proto = nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 return;
187
Amerigo Wang07a93622012-10-29 16:23:10 +0000188#if IS_ENABLED(CONFIG_IPV6_MIP6)
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700189 case IPPROTO_MH:
Hajime Tazakicd3bafc2015-02-04 23:31:10 +0900190 offset += ipv6_optlen(exthdr);
Nicolas Dichtel7e3a42a2008-11-01 21:12:07 -0700191 if (!onlyproto && pskb_may_pull(skb, nh + offset + 3 - skb->data)) {
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700192 struct ip6_mh *mh;
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700193
Li RongQing789f2022014-10-22 17:09:53 +0800194 nh = skb_network_header(skb);
195 mh = (struct ip6_mh *)(nh + offset);
David S. Miller1958b852011-03-12 16:36:19 -0500196 fl6->fl6_mh_type = mh->ip6mh_type;
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700197 }
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500198 fl6->flowi6_proto = nexthdr;
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700199 return;
200#endif
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 /* XXX Why are there these headers? */
203 case IPPROTO_AH:
204 case IPPROTO_ESP:
205 case IPPROTO_COMP:
206 default:
David S. Miller1958b852011-03-12 16:36:19 -0500207 fl6->fl6_ipsec_spi = 0;
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500208 fl6->flowi6_proto = nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 return;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
212}
213
Daniel Lezcano569d3642008-01-18 03:56:57 -0800214static inline int xfrm6_garbage_collect(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800216 struct net *net = container_of(ops, struct net, xfrm.xfrm6_dst_ops);
217
218 xfrm6_policy_afinfo.garbage_collect(net);
Eric Dumazetfc66f952010-10-08 06:37:34 +0000219 return dst_entries_get_fast(ops) > ops->gc_thresh * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
David S. Miller6700c272012-07-17 03:29:28 -0700222static void xfrm6_update_pmtu(struct dst_entry *dst, struct sock *sk,
223 struct sk_buff *skb, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
225 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
226 struct dst_entry *path = xdst->route;
227
David S. Miller6700c272012-07-17 03:29:28 -0700228 path->ops->update_pmtu(path, sk, skb, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
David S. Miller6700c272012-07-17 03:29:28 -0700231static void xfrm6_redirect(struct dst_entry *dst, struct sock *sk,
232 struct sk_buff *skb)
David S. Millerec18d9a2012-07-12 00:25:15 -0700233{
234 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
235 struct dst_entry *path = xdst->route;
236
David S. Miller6700c272012-07-17 03:29:28 -0700237 path->ops->redirect(path, sk, skb);
David S. Millerec18d9a2012-07-12 00:25:15 -0700238}
239
Herbert Xuaabc9762005-05-03 16:27:10 -0700240static void xfrm6_dst_destroy(struct dst_entry *dst)
241{
242 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
243
244 if (likely(xdst->u.rt6.rt6i_idev))
245 in6_dev_put(xdst->u.rt6.rt6i_idev);
David S. Miller62fa8a82011-01-26 20:51:05 -0800246 dst_destroy_metrics_generic(dst);
Herbert Xuaabc9762005-05-03 16:27:10 -0700247 xfrm_dst_destroy(xdst);
248}
249
250static void xfrm6_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
251 int unregister)
252{
253 struct xfrm_dst *xdst;
254
255 if (!unregister)
256 return;
257
258 xdst = (struct xfrm_dst *)dst;
259 if (xdst->u.rt6.rt6i_idev->dev == dev) {
Denis V. Lunev5a3e55d2007-12-07 00:38:10 -0800260 struct inet6_dev *loopback_idev =
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900261 in6_dev_get(dev_net(dev)->loopback_dev);
Herbert Xuaabc9762005-05-03 16:27:10 -0700262 BUG_ON(!loopback_idev);
263
264 do {
265 in6_dev_put(xdst->u.rt6.rt6i_idev);
266 xdst->u.rt6.rt6i_idev = loopback_idev;
267 in6_dev_hold(loopback_idev);
268 xdst = (struct xfrm_dst *)xdst->u.dst.child;
269 } while (xdst->u.dst.xfrm);
270
271 __in6_dev_put(loopback_idev);
272 }
273
274 xfrm_dst_ifdown(dst, dev);
275}
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277static struct dst_ops xfrm6_dst_ops = {
278 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 .gc = xfrm6_garbage_collect,
280 .update_pmtu = xfrm6_update_pmtu,
David S. Millerec18d9a2012-07-12 00:25:15 -0700281 .redirect = xfrm6_redirect,
David S. Miller62fa8a82011-01-26 20:51:05 -0800282 .cow_metrics = dst_cow_metrics_generic,
Herbert Xuaabc9762005-05-03 16:27:10 -0700283 .destroy = xfrm6_dst_destroy,
284 .ifdown = xfrm6_dst_ifdown,
Herbert Xu862b82c2007-11-13 21:43:11 -0800285 .local_out = __ip6_local_out,
Steffen Klasserteeb1b732013-10-25 10:21:32 +0200286 .gc_thresh = 32768,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287};
288
289static struct xfrm_policy_afinfo xfrm6_policy_afinfo = {
290 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 .dst_ops = &xfrm6_dst_ops,
292 .dst_lookup = xfrm6_dst_lookup,
Ian Morris67ba4152014-08-24 21:53:10 +0100293 .get_saddr = xfrm6_get_saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 .decode_session = _decode_session6,
Herbert Xu25ee3282007-12-11 09:32:34 -0800295 .get_tos = xfrm6_get_tos,
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -0800296 .init_path = xfrm6_init_path,
Herbert Xu25ee3282007-12-11 09:32:34 -0800297 .fill_dst = xfrm6_fill_dst,
David S. Miller2774c132011-03-01 14:59:04 -0800298 .blackhole_route = ip6_blackhole_route,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299};
300
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800301static int __init xfrm6_policy_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800303 return xfrm_policy_register_afinfo(&xfrm6_policy_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
306static void xfrm6_policy_fini(void)
307{
308 xfrm_policy_unregister_afinfo(&xfrm6_policy_afinfo);
309}
310
David S. Millerdb717892009-08-04 20:32:16 -0700311#ifdef CONFIG_SYSCTL
Neil Hormana44a4a02009-07-27 08:22:46 +0000312static struct ctl_table xfrm6_policy_table[] = {
313 {
Neil Hormana44a4a02009-07-27 08:22:46 +0000314 .procname = "xfrm6_gc_thresh",
Ian Morris67ba4152014-08-24 21:53:10 +0100315 .data = &init_net.xfrm.xfrm6_dst_ops.gc_thresh,
316 .maxlen = sizeof(int),
317 .mode = 0644,
Neil Hormana44a4a02009-07-27 08:22:46 +0000318 .proc_handler = proc_dointvec,
319 },
320 { }
321};
322
Michal Kubecek8d068872013-02-06 10:46:33 +0100323static int __net_init xfrm6_net_init(struct net *net)
324{
325 struct ctl_table *table;
326 struct ctl_table_header *hdr;
327
328 table = xfrm6_policy_table;
329 if (!net_eq(net, &init_net)) {
330 table = kmemdup(table, sizeof(xfrm6_policy_table), GFP_KERNEL);
331 if (!table)
332 goto err_alloc;
333
334 table[0].data = &net->xfrm.xfrm6_dst_ops.gc_thresh;
335 }
336
337 hdr = register_net_sysctl(net, "net/ipv6", table);
338 if (!hdr)
339 goto err_reg;
340
341 net->ipv6.sysctl.xfrm6_hdr = hdr;
342 return 0;
343
344err_reg:
345 if (!net_eq(net, &init_net))
346 kfree(table);
347err_alloc:
348 return -ENOMEM;
349}
350
351static void __net_exit xfrm6_net_exit(struct net *net)
352{
353 struct ctl_table *table;
354
Ian Morris63159f22015-03-29 14:00:04 +0100355 if (!net->ipv6.sysctl.xfrm6_hdr)
Michal Kubecek8d068872013-02-06 10:46:33 +0100356 return;
357
358 table = net->ipv6.sysctl.xfrm6_hdr->ctl_table_arg;
359 unregister_net_sysctl_table(net->ipv6.sysctl.xfrm6_hdr);
360 if (!net_eq(net, &init_net))
361 kfree(table);
362}
363
364static struct pernet_operations xfrm6_net_ops = {
365 .init = xfrm6_net_init,
366 .exit = xfrm6_net_exit,
367};
David S. Millerdb717892009-08-04 20:32:16 -0700368#endif
Neil Hormana44a4a02009-07-27 08:22:46 +0000369
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800370int __init xfrm6_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800372 int ret;
373
Eric Dumazetfc66f952010-10-08 06:37:34 +0000374 dst_entries_init(&xfrm6_dst_ops);
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800375
376 ret = xfrm6_policy_init();
Eric Dumazetfc66f952010-10-08 06:37:34 +0000377 if (ret) {
378 dst_entries_destroy(&xfrm6_dst_ops);
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800379 goto out;
Eric Dumazetfc66f952010-10-08 06:37:34 +0000380 }
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800381 ret = xfrm6_state_init();
382 if (ret)
383 goto out_policy;
384
Steffen Klassert7e14ea12014-03-14 07:28:07 +0100385 ret = xfrm6_protocol_init();
386 if (ret)
387 goto out_state;
388
David S. Millerdb717892009-08-04 20:32:16 -0700389#ifdef CONFIG_SYSCTL
Michal Kubecek8d068872013-02-06 10:46:33 +0100390 register_pernet_subsys(&xfrm6_net_ops);
David S. Millerdb717892009-08-04 20:32:16 -0700391#endif
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800392out:
393 return ret;
Steffen Klassert7e14ea12014-03-14 07:28:07 +0100394out_state:
395 xfrm6_state_fini();
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800396out_policy:
397 xfrm6_policy_fini();
398 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
401void xfrm6_fini(void)
402{
David S. Millerdb717892009-08-04 20:32:16 -0700403#ifdef CONFIG_SYSCTL
Michal Kubecek8d068872013-02-06 10:46:33 +0100404 unregister_pernet_subsys(&xfrm6_net_ops);
David S. Millerdb717892009-08-04 20:32:16 -0700405#endif
Steffen Klassert7e14ea12014-03-14 07:28:07 +0100406 xfrm6_protocol_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 xfrm6_policy_fini();
408 xfrm6_state_fini();
Eric Dumazetfc66f952010-10-08 06:37:34 +0000409 dst_entries_destroy(&xfrm6_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410}