blob: 69cee4e0d7287049dc19ccaae7115432c0904654 [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>
David Ahern385add92015-09-29 20:07:13 -070023#include <net/l3mdev.h>
Amerigo Wang07a93622012-10-29 16:23:10 +000024#if IS_ENABLED(CONFIG_IPV6_MIP6)
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -070025#include <net/mip6.h>
26#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Linus Torvalds1da177e2005-04-16 15:20:36 -070028static struct xfrm_policy_afinfo xfrm6_policy_afinfo;
29
David Ahern42a7b322015-08-10 16:58:11 -060030static struct dst_entry *xfrm6_dst_lookup(struct net *net, int tos, int oif,
David S. Miller5e6b9302011-02-24 00:14:45 -050031 const xfrm_address_t *saddr,
32 const xfrm_address_t *daddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033{
David S. Miller7e1dc7b2011-03-12 02:42:11 -050034 struct flowi6 fl6;
Herbert Xu66cdb3c2007-11-13 21:37:28 -080035 struct dst_entry *dst;
36 int err;
37
David S. Miller7e1dc7b2011-03-12 02:42:11 -050038 memset(&fl6, 0, sizeof(fl6));
David Ahern42a7b322015-08-10 16:58:11 -060039 fl6.flowi6_oif = oif;
David S. Miller7e1dc7b2011-03-12 02:42:11 -050040 memcpy(&fl6.daddr, daddr, sizeof(fl6.daddr));
Herbert Xu66cdb3c2007-11-13 21:37:28 -080041 if (saddr)
David S. Miller7e1dc7b2011-03-12 02:42:11 -050042 memcpy(&fl6.saddr, saddr, sizeof(fl6.saddr));
Herbert Xu66cdb3c2007-11-13 21:37:28 -080043
David S. Miller4c9483b2011-03-12 16:22:43 -050044 dst = ip6_route_output(net, NULL, &fl6);
Herbert Xu66cdb3c2007-11-13 21:37:28 -080045
46 err = dst->error;
47 if (dst->error) {
Ville Nuorvala42513202006-10-16 22:10:05 -070048 dst_release(dst);
Herbert Xu66cdb3c2007-11-13 21:37:28 -080049 dst = ERR_PTR(err);
50 }
51
52 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053}
54
David Ahern42a7b322015-08-10 16:58:11 -060055static int xfrm6_get_saddr(struct net *net, int oif,
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -080056 xfrm_address_t *saddr, xfrm_address_t *daddr)
Patrick McHardya1e59ab2006-09-19 12:57:34 -070057{
Herbert Xu66cdb3c2007-11-13 21:37:28 -080058 struct dst_entry *dst;
Brian Haley191cd582008-08-14 15:33:21 -070059 struct net_device *dev;
Patrick McHardya1e59ab2006-09-19 12:57:34 -070060
David Ahern42a7b322015-08-10 16:58:11 -060061 dst = xfrm6_dst_lookup(net, 0, oif, NULL, daddr);
Herbert Xu66cdb3c2007-11-13 21:37:28 -080062 if (IS_ERR(dst))
63 return -EHOSTUNREACH;
64
Brian Haley191cd582008-08-14 15:33:21 -070065 dev = ip6_dst_idev(dst)->dev;
Jiri Benc15e318b2015-03-29 16:59:24 +020066 ipv6_dev_get_saddr(dev_net(dev), dev, &daddr->in6, 0, &saddr->in6);
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
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -080076static int xfrm6_init_path(struct xfrm_dst *path, struct dst_entry *dst,
77 int nfheader_len)
78{
79 if (dst->ops->family == AF_INET6) {
Ian Morris67ba4152014-08-24 21:53:10 +010080 struct rt6_info *rt = (struct rt6_info *)dst;
Martin KaFai Laub197df42015-05-22 20:56:01 -070081 path->path_cookie = rt6_get_cookie(rt);
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -080082 }
83
84 path->u.rt6.rt6i_nfheader_len = nfheader_len;
85
86 return 0;
87}
88
Herbert Xu87c1e122010-03-02 02:51:56 +000089static int xfrm6_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
David S. Miller0c7b3ee2011-02-22 17:48:57 -080090 const struct flowi *fl)
Herbert Xu25ee3282007-12-11 09:32:34 -080091{
Ian Morris67ba4152014-08-24 21:53:10 +010092 struct rt6_info *rt = (struct rt6_info *)xdst->route;
Herbert Xu25ee3282007-12-11 09:32:34 -080093
94 xdst->u.dst.dev = dev;
95 dev_hold(dev);
96
Nicolas Dichtelbc8e4b92010-04-21 16:25:30 -070097 xdst->u.rt6.rt6i_idev = in6_dev_get(dev);
Cong Wang84c4a9d2013-05-09 22:40:00 +000098 if (!xdst->u.rt6.rt6i_idev) {
99 dev_put(dev);
Herbert Xu25ee3282007-12-11 09:32:34 -0800100 return -ENODEV;
Cong Wang84c4a9d2013-05-09 22:40:00 +0000101 }
Herbert Xu25ee3282007-12-11 09:32:34 -0800102
103 /* Sheit... I remember I did this right. Apparently,
104 * it was magically lost, so this code needs audit */
105 xdst->u.rt6.rt6i_flags = rt->rt6i_flags & (RTF_ANYCAST |
106 RTF_LOCAL);
107 xdst->u.rt6.rt6i_metric = rt->rt6i_metric;
108 xdst->u.rt6.rt6i_node = rt->rt6i_node;
Martin KaFai Laub197df42015-05-22 20:56:01 -0700109 xdst->route_cookie = rt6_get_cookie(rt);
Herbert Xu25ee3282007-12-11 09:32:34 -0800110 xdst->u.rt6.rt6i_gateway = rt->rt6i_gateway;
111 xdst->u.rt6.rt6i_dst = rt->rt6i_dst;
112 xdst->u.rt6.rt6i_src = rt->rt6i_src;
113
114 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
117static inline void
Herbert Xud5422ef2007-12-12 10:44:16 -0800118_decode_session6(struct sk_buff *skb, struct flowi *fl, int reverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500120 struct flowi6 *fl6 = &fl->u.ip6;
Nicolas Dichtel7e3a42a2008-11-01 21:12:07 -0700121 int onlyproto = 0;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000122 const struct ipv6hdr *hdr = ipv6_hdr(skb);
Steffen Klassertde3b7a02014-12-04 09:46:20 +0100123 u16 offset = sizeof(*hdr);
YOSHIFUJI Hideakie3cae902006-04-18 14:46:52 -0700124 struct ipv6_opt_hdr *exthdr;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700125 const unsigned char *nh = skb_network_header(skb);
Steffen Klassertf8556912014-12-08 07:56:18 +0100126 u16 nhoff = IP6CB(skb)->nhoff;
Steffen Klassert84502b52013-10-30 11:16:28 +0100127 int oif = 0;
Steffen Klassertf8556912014-12-08 07:56:18 +0100128 u8 nexthdr;
129
130 if (!nhoff)
131 nhoff = offsetof(struct ipv6hdr, nexthdr);
132
133 nexthdr = nh[nhoff];
Steffen Klassert84502b52013-10-30 11:16:28 +0100134
David Ahern385add92015-09-29 20:07:13 -0700135 if (skb_dst(skb))
136 oif = l3mdev_fib_oif(skb_dst(skb)->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500138 memset(fl6, 0, sizeof(struct flowi6));
139 fl6->flowi6_mark = skb->mark;
Steffen Klassert84502b52013-10-30 11:16:28 +0100140 fl6->flowi6_oif = reverse ? skb->skb_iif : oif;
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))) {
Li RongQing789f2022014-10-22 17:09:53 +0800168 __be16 *ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Li RongQing789f2022014-10-22 17:09:53 +0800170 nh = skb_network_header(skb);
171 ports = (__be16 *)(nh + offset);
David S. Miller1958b852011-03-12 16:36:19 -0500172 fl6->fl6_sport = ports[!!reverse];
173 fl6->fl6_dport = ports[!reverse];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 }
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500175 fl6->flowi6_proto = nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 return;
177
178 case IPPROTO_ICMPV6:
Nicolas Dichtel7e3a42a2008-11-01 21:12:07 -0700179 if (!onlyproto && pskb_may_pull(skb, nh + offset + 2 - skb->data)) {
Li RongQing789f2022014-10-22 17:09:53 +0800180 u8 *icmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Li RongQing789f2022014-10-22 17:09:53 +0800182 nh = skb_network_header(skb);
183 icmp = (u8 *)(nh + offset);
David S. Miller1958b852011-03-12 16:36:19 -0500184 fl6->fl6_icmp_type = icmp[0];
185 fl6->fl6_icmp_code = icmp[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500187 fl6->flowi6_proto = nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 return;
189
Amerigo Wang07a93622012-10-29 16:23:10 +0000190#if IS_ENABLED(CONFIG_IPV6_MIP6)
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700191 case IPPROTO_MH:
Hajime Tazakicd3bafc2015-02-04 23:31:10 +0900192 offset += ipv6_optlen(exthdr);
Nicolas Dichtel7e3a42a2008-11-01 21:12:07 -0700193 if (!onlyproto && pskb_may_pull(skb, nh + offset + 3 - skb->data)) {
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700194 struct ip6_mh *mh;
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700195
Li RongQing789f2022014-10-22 17:09:53 +0800196 nh = skb_network_header(skb);
197 mh = (struct ip6_mh *)(nh + offset);
David S. Miller1958b852011-03-12 16:36:19 -0500198 fl6->fl6_mh_type = mh->ip6mh_type;
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700199 }
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500200 fl6->flowi6_proto = nexthdr;
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700201 return;
202#endif
203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 /* XXX Why are there these headers? */
205 case IPPROTO_AH:
206 case IPPROTO_ESP:
207 case IPPROTO_COMP:
208 default:
David S. Miller1958b852011-03-12 16:36:19 -0500209 fl6->fl6_ipsec_spi = 0;
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500210 fl6->flowi6_proto = nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 return;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
214}
215
Daniel Lezcano569d3642008-01-18 03:56:57 -0800216static inline int xfrm6_garbage_collect(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800218 struct net *net = container_of(ops, struct net, xfrm.xfrm6_dst_ops);
219
220 xfrm6_policy_afinfo.garbage_collect(net);
Eric Dumazetfc66f952010-10-08 06:37:34 +0000221 return dst_entries_get_fast(ops) > ops->gc_thresh * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222}
223
David S. Miller6700c272012-07-17 03:29:28 -0700224static void xfrm6_update_pmtu(struct dst_entry *dst, struct sock *sk,
225 struct sk_buff *skb, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
227 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
228 struct dst_entry *path = xdst->route;
229
David S. Miller6700c272012-07-17 03:29:28 -0700230 path->ops->update_pmtu(path, sk, skb, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231}
232
David S. Miller6700c272012-07-17 03:29:28 -0700233static void xfrm6_redirect(struct dst_entry *dst, struct sock *sk,
234 struct sk_buff *skb)
David S. Millerec18d9a2012-07-12 00:25:15 -0700235{
236 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
237 struct dst_entry *path = xdst->route;
238
David S. Miller6700c272012-07-17 03:29:28 -0700239 path->ops->redirect(path, sk, skb);
David S. Millerec18d9a2012-07-12 00:25:15 -0700240}
241
Herbert Xuaabc9762005-05-03 16:27:10 -0700242static void xfrm6_dst_destroy(struct dst_entry *dst)
243{
244 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
245
246 if (likely(xdst->u.rt6.rt6i_idev))
247 in6_dev_put(xdst->u.rt6.rt6i_idev);
David S. Miller62fa8a82011-01-26 20:51:05 -0800248 dst_destroy_metrics_generic(dst);
Herbert Xuaabc9762005-05-03 16:27:10 -0700249 xfrm_dst_destroy(xdst);
250}
251
252static void xfrm6_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
253 int unregister)
254{
255 struct xfrm_dst *xdst;
256
257 if (!unregister)
258 return;
259
260 xdst = (struct xfrm_dst *)dst;
261 if (xdst->u.rt6.rt6i_idev->dev == dev) {
Denis V. Lunev5a3e55d2007-12-07 00:38:10 -0800262 struct inet6_dev *loopback_idev =
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900263 in6_dev_get(dev_net(dev)->loopback_dev);
Herbert Xuaabc9762005-05-03 16:27:10 -0700264 BUG_ON(!loopback_idev);
265
266 do {
267 in6_dev_put(xdst->u.rt6.rt6i_idev);
268 xdst->u.rt6.rt6i_idev = loopback_idev;
269 in6_dev_hold(loopback_idev);
270 xdst = (struct xfrm_dst *)xdst->u.dst.child;
271 } while (xdst->u.dst.xfrm);
272
273 __in6_dev_put(loopback_idev);
274 }
275
276 xfrm_dst_ifdown(dst, dev);
277}
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279static struct dst_ops xfrm6_dst_ops = {
280 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 .gc = xfrm6_garbage_collect,
282 .update_pmtu = xfrm6_update_pmtu,
David S. Millerec18d9a2012-07-12 00:25:15 -0700283 .redirect = xfrm6_redirect,
David S. Miller62fa8a82011-01-26 20:51:05 -0800284 .cow_metrics = dst_cow_metrics_generic,
Herbert Xuaabc9762005-05-03 16:27:10 -0700285 .destroy = xfrm6_dst_destroy,
286 .ifdown = xfrm6_dst_ifdown,
Herbert Xu862b82c2007-11-13 21:43:11 -0800287 .local_out = __ip6_local_out,
Steffen Klasserteeb1b732013-10-25 10:21:32 +0200288 .gc_thresh = 32768,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289};
290
291static struct xfrm_policy_afinfo xfrm6_policy_afinfo = {
292 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 .dst_ops = &xfrm6_dst_ops,
294 .dst_lookup = xfrm6_dst_lookup,
Ian Morris67ba4152014-08-24 21:53:10 +0100295 .get_saddr = xfrm6_get_saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 .decode_session = _decode_session6,
Herbert Xu25ee3282007-12-11 09:32:34 -0800297 .get_tos = xfrm6_get_tos,
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",
Ian Morris67ba4152014-08-24 21:53:10 +0100317 .data = &init_net.xfrm.xfrm6_dst_ops.gc_thresh,
318 .maxlen = sizeof(int),
319 .mode = 0644,
Neil Hormana44a4a02009-07-27 08:22:46 +0000320 .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
Ian Morris63159f22015-03-29 14:00:04 +0100357 if (!net->ipv6.sysctl.xfrm6_hdr)
Michal Kubecek8d068872013-02-06 10:46:33 +0100358 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
Steffen Klassert7e14ea12014-03-14 07:28:07 +0100387 ret = xfrm6_protocol_init();
388 if (ret)
389 goto out_state;
390
David S. Millerdb717892009-08-04 20:32:16 -0700391#ifdef CONFIG_SYSCTL
Michal Kubecek8d068872013-02-06 10:46:33 +0100392 register_pernet_subsys(&xfrm6_net_ops);
David S. Millerdb717892009-08-04 20:32:16 -0700393#endif
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800394out:
395 return ret;
Steffen Klassert7e14ea12014-03-14 07:28:07 +0100396out_state:
397 xfrm6_state_fini();
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800398out_policy:
399 xfrm6_policy_fini();
400 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
403void xfrm6_fini(void)
404{
David S. Millerdb717892009-08-04 20:32:16 -0700405#ifdef CONFIG_SYSCTL
Michal Kubecek8d068872013-02-06 10:46:33 +0100406 unregister_pernet_subsys(&xfrm6_net_ops);
David S. Millerdb717892009-08-04 20:32:16 -0700407#endif
Steffen Klassert7e14ea12014-03-14 07:28:07 +0100408 xfrm6_protocol_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 xfrm6_policy_fini();
410 xfrm6_state_fini();
Eric Dumazetfc66f952010-10-08 06:37:34 +0000411 dst_entries_destroy(&xfrm6_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}