blob: 23ed03d786c8376cc59f9fa2cf577ee01a4c2c2d [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
6 * 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;
64 ipv6_dev_get_saddr(dev_net(dev), dev,
YOSHIFUJI Hideaki7cbca672008-03-25 09:37:42 +090065 (struct in6_addr *)&daddr->a6, 0,
YOSHIFUJI Hideaki5e5f3f02008-03-03 21:44:34 +090066 (struct in6_addr *)&saddr->a6);
Herbert Xu66cdb3c2007-11-13 21:37:28 -080067 dst_release(dst);
68 return 0;
Patrick McHardya1e59ab2006-09-19 12:57:34 -070069}
70
David S. Miller05d84022011-02-22 17:47:10 -080071static int xfrm6_get_tos(const struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 return 0;
Herbert Xu25ee3282007-12-11 09:32:34 -080074}
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Patrick McHardy9d7b0fc2012-08-20 02:56:56 -070076static void xfrm6_init_dst(struct net *net, struct xfrm_dst *xdst)
77{
78 struct rt6_info *rt = (struct rt6_info *)xdst;
79
80 rt6_init_peer(rt, net->ipv6.peers);
81}
82
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -080083static int xfrm6_init_path(struct xfrm_dst *path, struct dst_entry *dst,
84 int nfheader_len)
85{
86 if (dst->ops->family == AF_INET6) {
87 struct rt6_info *rt = (struct rt6_info*)dst;
88 if (rt->rt6i_node)
89 path->path_cookie = rt->rt6i_node->fn_sernum;
90 }
91
92 path->u.rt6.rt6i_nfheader_len = nfheader_len;
93
94 return 0;
95}
96
Herbert Xu87c1e122010-03-02 02:51:56 +000097static int xfrm6_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
David S. Miller0c7b3ee2011-02-22 17:48:57 -080098 const struct flowi *fl)
Herbert Xu25ee3282007-12-11 09:32:34 -080099{
100 struct rt6_info *rt = (struct rt6_info*)xdst->route;
101
102 xdst->u.dst.dev = dev;
103 dev_hold(dev);
104
Nicolas Dichtelbc8e4b92010-04-21 16:25:30 -0700105 xdst->u.rt6.rt6i_idev = in6_dev_get(dev);
Cong Wang84c4a9d2013-05-09 22:40:00 +0000106 if (!xdst->u.rt6.rt6i_idev) {
107 dev_put(dev);
Herbert Xu25ee3282007-12-11 09:32:34 -0800108 return -ENODEV;
Cong Wang84c4a9d2013-05-09 22:40:00 +0000109 }
Herbert Xu25ee3282007-12-11 09:32:34 -0800110
David S. Miller97bab732012-06-09 22:36:36 -0700111 rt6_transfer_peer(&xdst->u.rt6, rt);
David S. Miller7cc2edb2011-01-26 13:41:03 -0800112
Herbert Xu25ee3282007-12-11 09:32:34 -0800113 /* Sheit... I remember I did this right. Apparently,
114 * it was magically lost, so this code needs audit */
115 xdst->u.rt6.rt6i_flags = rt->rt6i_flags & (RTF_ANYCAST |
116 RTF_LOCAL);
117 xdst->u.rt6.rt6i_metric = rt->rt6i_metric;
118 xdst->u.rt6.rt6i_node = rt->rt6i_node;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -0800119 if (rt->rt6i_node)
120 xdst->route_cookie = rt->rt6i_node->fn_sernum;
Herbert Xu25ee3282007-12-11 09:32:34 -0800121 xdst->u.rt6.rt6i_gateway = rt->rt6i_gateway;
122 xdst->u.rt6.rt6i_dst = rt->rt6i_dst;
123 xdst->u.rt6.rt6i_src = rt->rt6i_src;
124
125 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
128static inline void
Herbert Xud5422ef2007-12-12 10:44:16 -0800129_decode_session6(struct sk_buff *skb, struct flowi *fl, int reverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130{
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500131 struct flowi6 *fl6 = &fl->u.ip6;
Nicolas Dichtel7e3a42a2008-11-01 21:12:07 -0700132 int onlyproto = 0;
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300133 u16 offset = skb_network_header_len(skb);
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000134 const struct ipv6hdr *hdr = ipv6_hdr(skb);
YOSHIFUJI Hideakie3cae902006-04-18 14:46:52 -0700135 struct ipv6_opt_hdr *exthdr;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700136 const unsigned char *nh = skb_network_header(skb);
137 u8 nexthdr = nh[IP6CB(skb)->nhoff];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500139 memset(fl6, 0, sizeof(struct flowi6));
140 fl6->flowi6_mark = skb->mark;
Peter Kosyh44b451f2010-07-02 07:47:55 +0000141
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000142 fl6->daddr = reverse ? hdr->saddr : hdr->daddr;
143 fl6->saddr = reverse ? hdr->daddr : hdr->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Wei Yongjun59cae002009-07-02 16:59:49 +0000145 while (nh + offset + 1 < skb->data ||
146 pskb_may_pull(skb, nh + offset + 1 - skb->data)) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700147 nh = skb_network_header(skb);
148 exthdr = (struct ipv6_opt_hdr *)(nh + offset);
YOSHIFUJI Hideakie3cae902006-04-18 14:46:52 -0700149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 switch (nexthdr) {
Nicolas Dichtel7e3a42a2008-11-01 21:12:07 -0700151 case NEXTHDR_FRAGMENT:
152 onlyproto = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 case NEXTHDR_ROUTING:
154 case NEXTHDR_HOP:
155 case NEXTHDR_DEST:
156 offset += ipv6_optlen(exthdr);
157 nexthdr = exthdr->nexthdr;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700158 exthdr = (struct ipv6_opt_hdr *)(nh + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 break;
160
161 case IPPROTO_UDP:
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800162 case IPPROTO_UDPLITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 case IPPROTO_TCP:
164 case IPPROTO_SCTP:
Patrick McHardy9e999992005-12-19 14:03:46 -0800165 case IPPROTO_DCCP:
Wei Yongjun59cae002009-07-02 16:59:49 +0000166 if (!onlyproto && (nh + offset + 4 < skb->data ||
167 pskb_may_pull(skb, nh + offset + 4 - skb->data))) {
Al Viro8c689a62006-11-08 00:20:21 -0800168 __be16 *ports = (__be16 *)exthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
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)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 u8 *icmp = (u8 *)exthdr;
179
David S. Miller1958b852011-03-12 16:36:19 -0500180 fl6->fl6_icmp_type = icmp[0];
181 fl6->fl6_icmp_code = icmp[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 }
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500183 fl6->flowi6_proto = nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 return;
185
Amerigo Wang07a93622012-10-29 16:23:10 +0000186#if IS_ENABLED(CONFIG_IPV6_MIP6)
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700187 case IPPROTO_MH:
Nicolas Dichtel7e3a42a2008-11-01 21:12:07 -0700188 if (!onlyproto && pskb_may_pull(skb, nh + offset + 3 - skb->data)) {
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700189 struct ip6_mh *mh;
190 mh = (struct ip6_mh *)exthdr;
191
David S. Miller1958b852011-03-12 16:36:19 -0500192 fl6->fl6_mh_type = mh->ip6mh_type;
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700193 }
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500194 fl6->flowi6_proto = nexthdr;
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700195 return;
196#endif
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 /* XXX Why are there these headers? */
199 case IPPROTO_AH:
200 case IPPROTO_ESP:
201 case IPPROTO_COMP:
202 default:
David S. Miller1958b852011-03-12 16:36:19 -0500203 fl6->fl6_ipsec_spi = 0;
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500204 fl6->flowi6_proto = nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 return;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 }
208}
209
Daniel Lezcano569d3642008-01-18 03:56:57 -0800210static inline int xfrm6_garbage_collect(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800212 struct net *net = container_of(ops, struct net, xfrm.xfrm6_dst_ops);
213
214 xfrm6_policy_afinfo.garbage_collect(net);
Eric Dumazetfc66f952010-10-08 06:37:34 +0000215 return dst_entries_get_fast(ops) > ops->gc_thresh * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217
David S. Miller6700c272012-07-17 03:29:28 -0700218static void xfrm6_update_pmtu(struct dst_entry *dst, struct sock *sk,
219 struct sk_buff *skb, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
222 struct dst_entry *path = xdst->route;
223
David S. Miller6700c272012-07-17 03:29:28 -0700224 path->ops->update_pmtu(path, sk, skb, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225}
226
David S. Miller6700c272012-07-17 03:29:28 -0700227static void xfrm6_redirect(struct dst_entry *dst, struct sock *sk,
228 struct sk_buff *skb)
David S. Millerec18d9a2012-07-12 00:25:15 -0700229{
230 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
231 struct dst_entry *path = xdst->route;
232
David S. Miller6700c272012-07-17 03:29:28 -0700233 path->ops->redirect(path, sk, skb);
David S. Millerec18d9a2012-07-12 00:25:15 -0700234}
235
Herbert Xuaabc9762005-05-03 16:27:10 -0700236static void xfrm6_dst_destroy(struct dst_entry *dst)
237{
238 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
239
240 if (likely(xdst->u.rt6.rt6i_idev))
241 in6_dev_put(xdst->u.rt6.rt6i_idev);
David S. Miller62fa8a82011-01-26 20:51:05 -0800242 dst_destroy_metrics_generic(dst);
David S. Miller97bab732012-06-09 22:36:36 -0700243 if (rt6_has_peer(&xdst->u.rt6)) {
244 struct inet_peer *peer = rt6_peer_ptr(&xdst->u.rt6);
245 inet_putpeer(peer);
246 }
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,
Harvey Harrison09640e62009-02-01 00:45:17 -0800279 .protocol = cpu_to_be16(ETH_P_IPV6),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 .gc = xfrm6_garbage_collect,
281 .update_pmtu = xfrm6_update_pmtu,
David S. Millerec18d9a2012-07-12 00:25:15 -0700282 .redirect = xfrm6_redirect,
David S. Miller62fa8a82011-01-26 20:51:05 -0800283 .cow_metrics = dst_cow_metrics_generic,
Herbert Xuaabc9762005-05-03 16:27:10 -0700284 .destroy = xfrm6_dst_destroy,
285 .ifdown = xfrm6_dst_ifdown,
Herbert Xu862b82c2007-11-13 21:43:11 -0800286 .local_out = __ip6_local_out,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 .gc_thresh = 1024,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288};
289
290static struct xfrm_policy_afinfo xfrm6_policy_afinfo = {
291 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 .dst_ops = &xfrm6_dst_ops,
293 .dst_lookup = xfrm6_dst_lookup,
Patrick McHardya1e59ab2006-09-19 12:57:34 -0700294 .get_saddr = xfrm6_get_saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 .decode_session = _decode_session6,
Herbert Xu25ee3282007-12-11 09:32:34 -0800296 .get_tos = xfrm6_get_tos,
Patrick McHardy9d7b0fc2012-08-20 02:56:56 -0700297 .init_dst = xfrm6_init_dst,
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -0800298 .init_path = xfrm6_init_path,
Herbert Xu25ee3282007-12-11 09:32:34 -0800299 .fill_dst = xfrm6_fill_dst,
David S. Miller2774c132011-03-01 14:59:04 -0800300 .blackhole_route = ip6_blackhole_route,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301};
302
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800303static int __init xfrm6_policy_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800305 return xfrm_policy_register_afinfo(&xfrm6_policy_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
308static void xfrm6_policy_fini(void)
309{
310 xfrm_policy_unregister_afinfo(&xfrm6_policy_afinfo);
311}
312
David S. Millerdb717892009-08-04 20:32:16 -0700313#ifdef CONFIG_SYSCTL
Neil Hormana44a4a02009-07-27 08:22:46 +0000314static struct ctl_table xfrm6_policy_table[] = {
315 {
Neil Hormana44a4a02009-07-27 08:22:46 +0000316 .procname = "xfrm6_gc_thresh",
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800317 .data = &init_net.xfrm.xfrm6_dst_ops.gc_thresh,
Neil Hormana44a4a02009-07-27 08:22:46 +0000318 .maxlen = sizeof(int),
319 .mode = 0644,
320 .proc_handler = proc_dointvec,
321 },
322 { }
323};
324
Michal Kubecek8d068872013-02-06 10:46:33 +0100325static int __net_init xfrm6_net_init(struct net *net)
326{
327 struct ctl_table *table;
328 struct ctl_table_header *hdr;
329
330 table = xfrm6_policy_table;
331 if (!net_eq(net, &init_net)) {
332 table = kmemdup(table, sizeof(xfrm6_policy_table), GFP_KERNEL);
333 if (!table)
334 goto err_alloc;
335
336 table[0].data = &net->xfrm.xfrm6_dst_ops.gc_thresh;
337 }
338
339 hdr = register_net_sysctl(net, "net/ipv6", table);
340 if (!hdr)
341 goto err_reg;
342
343 net->ipv6.sysctl.xfrm6_hdr = hdr;
344 return 0;
345
346err_reg:
347 if (!net_eq(net, &init_net))
348 kfree(table);
349err_alloc:
350 return -ENOMEM;
351}
352
353static void __net_exit xfrm6_net_exit(struct net *net)
354{
355 struct ctl_table *table;
356
357 if (net->ipv6.sysctl.xfrm6_hdr == NULL)
358 return;
359
360 table = net->ipv6.sysctl.xfrm6_hdr->ctl_table_arg;
361 unregister_net_sysctl_table(net->ipv6.sysctl.xfrm6_hdr);
362 if (!net_eq(net, &init_net))
363 kfree(table);
364}
365
366static struct pernet_operations xfrm6_net_ops = {
367 .init = xfrm6_net_init,
368 .exit = xfrm6_net_exit,
369};
David S. Millerdb717892009-08-04 20:32:16 -0700370#endif
Neil Hormana44a4a02009-07-27 08:22:46 +0000371
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800372int __init xfrm6_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800374 int ret;
375
Eric Dumazetfc66f952010-10-08 06:37:34 +0000376 dst_entries_init(&xfrm6_dst_ops);
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800377
378 ret = xfrm6_policy_init();
Eric Dumazetfc66f952010-10-08 06:37:34 +0000379 if (ret) {
380 dst_entries_destroy(&xfrm6_dst_ops);
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800381 goto out;
Eric Dumazetfc66f952010-10-08 06:37:34 +0000382 }
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800383 ret = xfrm6_state_init();
384 if (ret)
385 goto out_policy;
386
David S. Millerdb717892009-08-04 20:32:16 -0700387#ifdef CONFIG_SYSCTL
Michal Kubecek8d068872013-02-06 10:46:33 +0100388 register_pernet_subsys(&xfrm6_net_ops);
David S. Millerdb717892009-08-04 20:32:16 -0700389#endif
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800390out:
391 return ret;
392out_policy:
393 xfrm6_policy_fini();
394 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395}
396
397void xfrm6_fini(void)
398{
David S. Millerdb717892009-08-04 20:32:16 -0700399#ifdef CONFIG_SYSCTL
Michal Kubecek8d068872013-02-06 10:46:33 +0100400 unregister_pernet_subsys(&xfrm6_net_ops);
David S. Millerdb717892009-08-04 20:32:16 -0700401#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 xfrm6_policy_fini();
403 xfrm6_state_fini();
Eric Dumazetfc66f952010-10-08 06:37:34 +0000404 dst_entries_destroy(&xfrm6_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405}