blob: f337a908a76a1145c8b878c224f961d087769785 [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
Patrick McHardy9d7b0fc2012-08-20 02:56:56 -070074static void xfrm6_init_dst(struct net *net, struct xfrm_dst *xdst)
75{
76 struct rt6_info *rt = (struct rt6_info *)xdst;
77
78 rt6_init_peer(rt, net->ipv6.peers);
79}
80
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -080081static int xfrm6_init_path(struct xfrm_dst *path, struct dst_entry *dst,
82 int nfheader_len)
83{
84 if (dst->ops->family == AF_INET6) {
Ian Morris67ba4152014-08-24 21:53:10 +010085 struct rt6_info *rt = (struct rt6_info *)dst;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -080086 if (rt->rt6i_node)
87 path->path_cookie = rt->rt6i_node->fn_sernum;
88 }
89
90 path->u.rt6.rt6i_nfheader_len = nfheader_len;
91
92 return 0;
93}
94
Herbert Xu87c1e122010-03-02 02:51:56 +000095static int xfrm6_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
David S. Miller0c7b3ee2011-02-22 17:48:57 -080096 const struct flowi *fl)
Herbert Xu25ee3282007-12-11 09:32:34 -080097{
Ian Morris67ba4152014-08-24 21:53:10 +010098 struct rt6_info *rt = (struct rt6_info *)xdst->route;
Herbert Xu25ee3282007-12-11 09:32:34 -080099
100 xdst->u.dst.dev = dev;
101 dev_hold(dev);
102
Nicolas Dichtelbc8e4b92010-04-21 16:25:30 -0700103 xdst->u.rt6.rt6i_idev = in6_dev_get(dev);
Cong Wang84c4a9d2013-05-09 22:40:00 +0000104 if (!xdst->u.rt6.rt6i_idev) {
105 dev_put(dev);
Herbert Xu25ee3282007-12-11 09:32:34 -0800106 return -ENODEV;
Cong Wang84c4a9d2013-05-09 22:40:00 +0000107 }
Herbert Xu25ee3282007-12-11 09:32:34 -0800108
David S. Miller97bab732012-06-09 22:36:36 -0700109 rt6_transfer_peer(&xdst->u.rt6, rt);
David S. Miller7cc2edb2011-01-26 13:41:03 -0800110
Herbert Xu25ee3282007-12-11 09:32:34 -0800111 /* Sheit... I remember I did this right. Apparently,
112 * it was magically lost, so this code needs audit */
113 xdst->u.rt6.rt6i_flags = rt->rt6i_flags & (RTF_ANYCAST |
114 RTF_LOCAL);
115 xdst->u.rt6.rt6i_metric = rt->rt6i_metric;
116 xdst->u.rt6.rt6i_node = rt->rt6i_node;
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -0800117 if (rt->rt6i_node)
118 xdst->route_cookie = rt->rt6i_node->fn_sernum;
Herbert Xu25ee3282007-12-11 09:32:34 -0800119 xdst->u.rt6.rt6i_gateway = rt->rt6i_gateway;
120 xdst->u.rt6.rt6i_dst = rt->rt6i_dst;
121 xdst->u.rt6.rt6i_src = rt->rt6i_src;
122
123 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
126static inline void
Herbert Xud5422ef2007-12-12 10:44:16 -0800127_decode_session6(struct sk_buff *skb, struct flowi *fl, int reverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500129 struct flowi6 *fl6 = &fl->u.ip6;
Nicolas Dichtel7e3a42a2008-11-01 21:12:07 -0700130 int onlyproto = 0;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000131 const struct ipv6hdr *hdr = ipv6_hdr(skb);
Steffen Klassertde3b7a02014-12-04 09:46:20 +0100132 u16 offset = sizeof(*hdr);
YOSHIFUJI Hideakie3cae902006-04-18 14:46:52 -0700133 struct ipv6_opt_hdr *exthdr;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700134 const unsigned char *nh = skb_network_header(skb);
Steffen Klassertf8556912014-12-08 07:56:18 +0100135 u16 nhoff = IP6CB(skb)->nhoff;
Steffen Klassert84502b52013-10-30 11:16:28 +0100136 int oif = 0;
Steffen Klassertf8556912014-12-08 07:56:18 +0100137 u8 nexthdr;
138
139 if (!nhoff)
140 nhoff = offsetof(struct ipv6hdr, nexthdr);
141
142 nexthdr = nh[nhoff];
Steffen Klassert84502b52013-10-30 11:16:28 +0100143
144 if (skb_dst(skb))
145 oif = skb_dst(skb)->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500147 memset(fl6, 0, sizeof(struct flowi6));
148 fl6->flowi6_mark = skb->mark;
Steffen Klassert84502b52013-10-30 11:16:28 +0100149 fl6->flowi6_oif = reverse ? skb->skb_iif : oif;
Peter Kosyh44b451f2010-07-02 07:47:55 +0000150
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000151 fl6->daddr = reverse ? hdr->saddr : hdr->daddr;
152 fl6->saddr = reverse ? hdr->daddr : hdr->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Wei Yongjun59cae002009-07-02 16:59:49 +0000154 while (nh + offset + 1 < skb->data ||
155 pskb_may_pull(skb, nh + offset + 1 - skb->data)) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700156 nh = skb_network_header(skb);
157 exthdr = (struct ipv6_opt_hdr *)(nh + offset);
YOSHIFUJI Hideakie3cae902006-04-18 14:46:52 -0700158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 switch (nexthdr) {
Nicolas Dichtel7e3a42a2008-11-01 21:12:07 -0700160 case NEXTHDR_FRAGMENT:
161 onlyproto = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 case NEXTHDR_ROUTING:
163 case NEXTHDR_HOP:
164 case NEXTHDR_DEST:
165 offset += ipv6_optlen(exthdr);
166 nexthdr = exthdr->nexthdr;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700167 exthdr = (struct ipv6_opt_hdr *)(nh + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 break;
169
170 case IPPROTO_UDP:
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800171 case IPPROTO_UDPLITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 case IPPROTO_TCP:
173 case IPPROTO_SCTP:
Patrick McHardy9e999992005-12-19 14:03:46 -0800174 case IPPROTO_DCCP:
Wei Yongjun59cae002009-07-02 16:59:49 +0000175 if (!onlyproto && (nh + offset + 4 < skb->data ||
176 pskb_may_pull(skb, nh + offset + 4 - skb->data))) {
Li RongQing789f2022014-10-22 17:09:53 +0800177 __be16 *ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Li RongQing789f2022014-10-22 17:09:53 +0800179 nh = skb_network_header(skb);
180 ports = (__be16 *)(nh + offset);
David S. Miller1958b852011-03-12 16:36:19 -0500181 fl6->fl6_sport = ports[!!reverse];
182 fl6->fl6_dport = ports[!reverse];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 }
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500184 fl6->flowi6_proto = nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 return;
186
187 case IPPROTO_ICMPV6:
Nicolas Dichtel7e3a42a2008-11-01 21:12:07 -0700188 if (!onlyproto && pskb_may_pull(skb, nh + offset + 2 - skb->data)) {
Li RongQing789f2022014-10-22 17:09:53 +0800189 u8 *icmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Li RongQing789f2022014-10-22 17:09:53 +0800191 nh = skb_network_header(skb);
192 icmp = (u8 *)(nh + offset);
David S. Miller1958b852011-03-12 16:36:19 -0500193 fl6->fl6_icmp_type = icmp[0];
194 fl6->fl6_icmp_code = icmp[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500196 fl6->flowi6_proto = nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 return;
198
Amerigo Wang07a93622012-10-29 16:23:10 +0000199#if IS_ENABLED(CONFIG_IPV6_MIP6)
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700200 case IPPROTO_MH:
Hajime Tazakicd3bafc2015-02-04 23:31:10 +0900201 offset += ipv6_optlen(exthdr);
Nicolas Dichtel7e3a42a2008-11-01 21:12:07 -0700202 if (!onlyproto && pskb_may_pull(skb, nh + offset + 3 - skb->data)) {
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700203 struct ip6_mh *mh;
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700204
Li RongQing789f2022014-10-22 17:09:53 +0800205 nh = skb_network_header(skb);
206 mh = (struct ip6_mh *)(nh + offset);
David S. Miller1958b852011-03-12 16:36:19 -0500207 fl6->fl6_mh_type = mh->ip6mh_type;
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700208 }
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500209 fl6->flowi6_proto = nexthdr;
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700210 return;
211#endif
212
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 /* XXX Why are there these headers? */
214 case IPPROTO_AH:
215 case IPPROTO_ESP:
216 case IPPROTO_COMP:
217 default:
David S. Miller1958b852011-03-12 16:36:19 -0500218 fl6->fl6_ipsec_spi = 0;
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500219 fl6->flowi6_proto = nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
223}
224
Daniel Lezcano569d3642008-01-18 03:56:57 -0800225static inline int xfrm6_garbage_collect(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800227 struct net *net = container_of(ops, struct net, xfrm.xfrm6_dst_ops);
228
229 xfrm6_policy_afinfo.garbage_collect(net);
Eric Dumazetfc66f952010-10-08 06:37:34 +0000230 return dst_entries_get_fast(ops) > ops->gc_thresh * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231}
232
David S. Miller6700c272012-07-17 03:29:28 -0700233static void xfrm6_update_pmtu(struct dst_entry *dst, struct sock *sk,
234 struct sk_buff *skb, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -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->update_pmtu(path, sk, skb, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
David S. Miller6700c272012-07-17 03:29:28 -0700242static void xfrm6_redirect(struct dst_entry *dst, struct sock *sk,
243 struct sk_buff *skb)
David S. Millerec18d9a2012-07-12 00:25:15 -0700244{
245 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
246 struct dst_entry *path = xdst->route;
247
David S. Miller6700c272012-07-17 03:29:28 -0700248 path->ops->redirect(path, sk, skb);
David S. Millerec18d9a2012-07-12 00:25:15 -0700249}
250
Herbert Xuaabc9762005-05-03 16:27:10 -0700251static void xfrm6_dst_destroy(struct dst_entry *dst)
252{
253 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
254
255 if (likely(xdst->u.rt6.rt6i_idev))
256 in6_dev_put(xdst->u.rt6.rt6i_idev);
David S. Miller62fa8a82011-01-26 20:51:05 -0800257 dst_destroy_metrics_generic(dst);
David S. Miller97bab732012-06-09 22:36:36 -0700258 if (rt6_has_peer(&xdst->u.rt6)) {
259 struct inet_peer *peer = rt6_peer_ptr(&xdst->u.rt6);
260 inet_putpeer(peer);
261 }
Herbert Xuaabc9762005-05-03 16:27:10 -0700262 xfrm_dst_destroy(xdst);
263}
264
265static void xfrm6_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
266 int unregister)
267{
268 struct xfrm_dst *xdst;
269
270 if (!unregister)
271 return;
272
273 xdst = (struct xfrm_dst *)dst;
274 if (xdst->u.rt6.rt6i_idev->dev == dev) {
Denis V. Lunev5a3e55d2007-12-07 00:38:10 -0800275 struct inet6_dev *loopback_idev =
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900276 in6_dev_get(dev_net(dev)->loopback_dev);
Herbert Xuaabc9762005-05-03 16:27:10 -0700277 BUG_ON(!loopback_idev);
278
279 do {
280 in6_dev_put(xdst->u.rt6.rt6i_idev);
281 xdst->u.rt6.rt6i_idev = loopback_idev;
282 in6_dev_hold(loopback_idev);
283 xdst = (struct xfrm_dst *)xdst->u.dst.child;
284 } while (xdst->u.dst.xfrm);
285
286 __in6_dev_put(loopback_idev);
287 }
288
289 xfrm_dst_ifdown(dst, dev);
290}
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292static struct dst_ops xfrm6_dst_ops = {
293 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 .gc = xfrm6_garbage_collect,
295 .update_pmtu = xfrm6_update_pmtu,
David S. Millerec18d9a2012-07-12 00:25:15 -0700296 .redirect = xfrm6_redirect,
David S. Miller62fa8a82011-01-26 20:51:05 -0800297 .cow_metrics = dst_cow_metrics_generic,
Herbert Xuaabc9762005-05-03 16:27:10 -0700298 .destroy = xfrm6_dst_destroy,
299 .ifdown = xfrm6_dst_ifdown,
Herbert Xu862b82c2007-11-13 21:43:11 -0800300 .local_out = __ip6_local_out,
Steffen Klasserteeb1b732013-10-25 10:21:32 +0200301 .gc_thresh = 32768,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302};
303
304static struct xfrm_policy_afinfo xfrm6_policy_afinfo = {
305 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 .dst_ops = &xfrm6_dst_ops,
307 .dst_lookup = xfrm6_dst_lookup,
Ian Morris67ba4152014-08-24 21:53:10 +0100308 .get_saddr = xfrm6_get_saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 .decode_session = _decode_session6,
Herbert Xu25ee3282007-12-11 09:32:34 -0800310 .get_tos = xfrm6_get_tos,
Patrick McHardy9d7b0fc2012-08-20 02:56:56 -0700311 .init_dst = xfrm6_init_dst,
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -0800312 .init_path = xfrm6_init_path,
Herbert Xu25ee3282007-12-11 09:32:34 -0800313 .fill_dst = xfrm6_fill_dst,
David S. Miller2774c132011-03-01 14:59:04 -0800314 .blackhole_route = ip6_blackhole_route,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315};
316
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800317static int __init xfrm6_policy_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800319 return xfrm_policy_register_afinfo(&xfrm6_policy_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
322static void xfrm6_policy_fini(void)
323{
324 xfrm_policy_unregister_afinfo(&xfrm6_policy_afinfo);
325}
326
David S. Millerdb717892009-08-04 20:32:16 -0700327#ifdef CONFIG_SYSCTL
Neil Hormana44a4a02009-07-27 08:22:46 +0000328static struct ctl_table xfrm6_policy_table[] = {
329 {
Neil Hormana44a4a02009-07-27 08:22:46 +0000330 .procname = "xfrm6_gc_thresh",
Ian Morris67ba4152014-08-24 21:53:10 +0100331 .data = &init_net.xfrm.xfrm6_dst_ops.gc_thresh,
332 .maxlen = sizeof(int),
333 .mode = 0644,
Neil Hormana44a4a02009-07-27 08:22:46 +0000334 .proc_handler = proc_dointvec,
335 },
336 { }
337};
338
Michal Kubecek8d068872013-02-06 10:46:33 +0100339static int __net_init xfrm6_net_init(struct net *net)
340{
341 struct ctl_table *table;
342 struct ctl_table_header *hdr;
343
344 table = xfrm6_policy_table;
345 if (!net_eq(net, &init_net)) {
346 table = kmemdup(table, sizeof(xfrm6_policy_table), GFP_KERNEL);
347 if (!table)
348 goto err_alloc;
349
350 table[0].data = &net->xfrm.xfrm6_dst_ops.gc_thresh;
351 }
352
353 hdr = register_net_sysctl(net, "net/ipv6", table);
354 if (!hdr)
355 goto err_reg;
356
357 net->ipv6.sysctl.xfrm6_hdr = hdr;
358 return 0;
359
360err_reg:
361 if (!net_eq(net, &init_net))
362 kfree(table);
363err_alloc:
364 return -ENOMEM;
365}
366
367static void __net_exit xfrm6_net_exit(struct net *net)
368{
369 struct ctl_table *table;
370
Ian Morris63159f22015-03-29 14:00:04 +0100371 if (!net->ipv6.sysctl.xfrm6_hdr)
Michal Kubecek8d068872013-02-06 10:46:33 +0100372 return;
373
374 table = net->ipv6.sysctl.xfrm6_hdr->ctl_table_arg;
375 unregister_net_sysctl_table(net->ipv6.sysctl.xfrm6_hdr);
376 if (!net_eq(net, &init_net))
377 kfree(table);
378}
379
380static struct pernet_operations xfrm6_net_ops = {
381 .init = xfrm6_net_init,
382 .exit = xfrm6_net_exit,
383};
David S. Millerdb717892009-08-04 20:32:16 -0700384#endif
Neil Hormana44a4a02009-07-27 08:22:46 +0000385
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800386int __init xfrm6_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800388 int ret;
389
Eric Dumazetfc66f952010-10-08 06:37:34 +0000390 dst_entries_init(&xfrm6_dst_ops);
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800391
392 ret = xfrm6_policy_init();
Eric Dumazetfc66f952010-10-08 06:37:34 +0000393 if (ret) {
394 dst_entries_destroy(&xfrm6_dst_ops);
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800395 goto out;
Eric Dumazetfc66f952010-10-08 06:37:34 +0000396 }
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800397 ret = xfrm6_state_init();
398 if (ret)
399 goto out_policy;
400
Steffen Klassert7e14ea12014-03-14 07:28:07 +0100401 ret = xfrm6_protocol_init();
402 if (ret)
403 goto out_state;
404
David S. Millerdb717892009-08-04 20:32:16 -0700405#ifdef CONFIG_SYSCTL
Michal Kubecek8d068872013-02-06 10:46:33 +0100406 register_pernet_subsys(&xfrm6_net_ops);
David S. Millerdb717892009-08-04 20:32:16 -0700407#endif
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800408out:
409 return ret;
Steffen Klassert7e14ea12014-03-14 07:28:07 +0100410out_state:
411 xfrm6_state_fini();
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800412out_policy:
413 xfrm6_policy_fini();
414 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415}
416
417void xfrm6_fini(void)
418{
David S. Millerdb717892009-08-04 20:32:16 -0700419#ifdef CONFIG_SYSCTL
Michal Kubecek8d068872013-02-06 10:46:33 +0100420 unregister_pernet_subsys(&xfrm6_net_ops);
David S. Millerdb717892009-08-04 20:32:16 -0700421#endif
Steffen Klassert7e14ea12014-03-14 07:28:07 +0100422 xfrm6_protocol_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 xfrm6_policy_fini();
424 xfrm6_state_fini();
Eric Dumazetfc66f952010-10-08 06:37:34 +0000425 dst_entries_destroy(&xfrm6_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}