blob: 08c9c93f352737ba21eebad04f6e8b3f268dbdde [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 Ahern41489872015-10-05 08:32:51 -060040 fl6.flowi6_flags = FLOWI_FLAG_SKIP_NH_OIF;
David S. Miller7e1dc7b2011-03-12 02:42:11 -050041 memcpy(&fl6.daddr, daddr, sizeof(fl6.daddr));
Herbert Xu66cdb3c2007-11-13 21:37:28 -080042 if (saddr)
David S. Miller7e1dc7b2011-03-12 02:42:11 -050043 memcpy(&fl6.saddr, saddr, sizeof(fl6.saddr));
Herbert Xu66cdb3c2007-11-13 21:37:28 -080044
David S. Miller4c9483b2011-03-12 16:22:43 -050045 dst = ip6_route_output(net, NULL, &fl6);
Herbert Xu66cdb3c2007-11-13 21:37:28 -080046
47 err = dst->error;
48 if (dst->error) {
Ville Nuorvala42513202006-10-16 22:10:05 -070049 dst_release(dst);
Herbert Xu66cdb3c2007-11-13 21:37:28 -080050 dst = ERR_PTR(err);
51 }
52
53 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054}
55
David Ahern42a7b322015-08-10 16:58:11 -060056static int xfrm6_get_saddr(struct net *net, int oif,
Alexey Dobriyanfbda33b2008-11-25 17:56:49 -080057 xfrm_address_t *saddr, xfrm_address_t *daddr)
Patrick McHardya1e59ab2006-09-19 12:57:34 -070058{
Herbert Xu66cdb3c2007-11-13 21:37:28 -080059 struct dst_entry *dst;
Brian Haley191cd582008-08-14 15:33:21 -070060 struct net_device *dev;
Patrick McHardya1e59ab2006-09-19 12:57:34 -070061
David Ahern42a7b322015-08-10 16:58:11 -060062 dst = xfrm6_dst_lookup(net, 0, oif, NULL, daddr);
Herbert Xu66cdb3c2007-11-13 21:37:28 -080063 if (IS_ERR(dst))
64 return -EHOSTUNREACH;
65
Brian Haley191cd582008-08-14 15:33:21 -070066 dev = ip6_dst_idev(dst)->dev;
Jiri Benc15e318b2015-03-29 16:59:24 +020067 ipv6_dev_get_saddr(dev_net(dev), dev, &daddr->in6, 0, &saddr->in6);
Herbert Xu66cdb3c2007-11-13 21:37:28 -080068 dst_release(dst);
69 return 0;
Patrick McHardya1e59ab2006-09-19 12:57:34 -070070}
71
David S. Miller05d84022011-02-22 17:47:10 -080072static int xfrm6_get_tos(const struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 return 0;
Herbert Xu25ee3282007-12-11 09:32:34 -080075}
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -080077static int xfrm6_init_path(struct xfrm_dst *path, struct dst_entry *dst,
78 int nfheader_len)
79{
80 if (dst->ops->family == AF_INET6) {
Ian Morris67ba4152014-08-24 21:53:10 +010081 struct rt6_info *rt = (struct rt6_info *)dst;
Martin KaFai Laub197df42015-05-22 20:56:01 -070082 path->path_cookie = rt6_get_cookie(rt);
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -080083 }
84
85 path->u.rt6.rt6i_nfheader_len = nfheader_len;
86
87 return 0;
88}
89
Herbert Xu87c1e122010-03-02 02:51:56 +000090static int xfrm6_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
David S. Miller0c7b3ee2011-02-22 17:48:57 -080091 const struct flowi *fl)
Herbert Xu25ee3282007-12-11 09:32:34 -080092{
Ian Morris67ba4152014-08-24 21:53:10 +010093 struct rt6_info *rt = (struct rt6_info *)xdst->route;
Herbert Xu25ee3282007-12-11 09:32:34 -080094
95 xdst->u.dst.dev = dev;
96 dev_hold(dev);
97
Nicolas Dichtelbc8e4b92010-04-21 16:25:30 -070098 xdst->u.rt6.rt6i_idev = in6_dev_get(dev);
Cong Wang84c4a9d2013-05-09 22:40:00 +000099 if (!xdst->u.rt6.rt6i_idev) {
100 dev_put(dev);
Herbert Xu25ee3282007-12-11 09:32:34 -0800101 return -ENODEV;
Cong Wang84c4a9d2013-05-09 22:40:00 +0000102 }
Herbert Xu25ee3282007-12-11 09:32:34 -0800103
104 /* Sheit... I remember I did this right. Apparently,
105 * it was magically lost, so this code needs audit */
106 xdst->u.rt6.rt6i_flags = rt->rt6i_flags & (RTF_ANYCAST |
107 RTF_LOCAL);
108 xdst->u.rt6.rt6i_metric = rt->rt6i_metric;
109 xdst->u.rt6.rt6i_node = rt->rt6i_node;
Martin KaFai Laub197df42015-05-22 20:56:01 -0700110 xdst->route_cookie = rt6_get_cookie(rt);
Herbert Xu25ee3282007-12-11 09:32:34 -0800111 xdst->u.rt6.rt6i_gateway = rt->rt6i_gateway;
112 xdst->u.rt6.rt6i_dst = rt->rt6i_dst;
113 xdst->u.rt6.rt6i_src = rt->rt6i_src;
114
115 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
118static inline void
Herbert Xud5422ef2007-12-12 10:44:16 -0800119_decode_session6(struct sk_buff *skb, struct flowi *fl, int reverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500121 struct flowi6 *fl6 = &fl->u.ip6;
Nicolas Dichtel7e3a42a2008-11-01 21:12:07 -0700122 int onlyproto = 0;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000123 const struct ipv6hdr *hdr = ipv6_hdr(skb);
Steffen Klassertde3b7a02014-12-04 09:46:20 +0100124 u16 offset = sizeof(*hdr);
YOSHIFUJI Hideakie3cae902006-04-18 14:46:52 -0700125 struct ipv6_opt_hdr *exthdr;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700126 const unsigned char *nh = skb_network_header(skb);
Steffen Klassertf8556912014-12-08 07:56:18 +0100127 u16 nhoff = IP6CB(skb)->nhoff;
Steffen Klassert84502b52013-10-30 11:16:28 +0100128 int oif = 0;
Steffen Klassertf8556912014-12-08 07:56:18 +0100129 u8 nexthdr;
130
131 if (!nhoff)
132 nhoff = offsetof(struct ipv6hdr, nexthdr);
133
134 nexthdr = nh[nhoff];
Steffen Klassert84502b52013-10-30 11:16:28 +0100135
David Ahern385add92015-09-29 20:07:13 -0700136 if (skb_dst(skb))
137 oif = l3mdev_fib_oif(skb_dst(skb)->dev);
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;
Steffen Klassert84502b52013-10-30 11:16:28 +0100141 fl6->flowi6_oif = reverse ? skb->skb_iif : oif;
Peter Kosyh44b451f2010-07-02 07:47:55 +0000142
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000143 fl6->daddr = reverse ? hdr->saddr : hdr->daddr;
144 fl6->saddr = reverse ? hdr->daddr : hdr->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Wei Yongjun59cae002009-07-02 16:59:49 +0000146 while (nh + offset + 1 < skb->data ||
147 pskb_may_pull(skb, nh + offset + 1 - skb->data)) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700148 nh = skb_network_header(skb);
149 exthdr = (struct ipv6_opt_hdr *)(nh + offset);
YOSHIFUJI Hideakie3cae902006-04-18 14:46:52 -0700150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 switch (nexthdr) {
Nicolas Dichtel7e3a42a2008-11-01 21:12:07 -0700152 case NEXTHDR_FRAGMENT:
153 onlyproto = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 case NEXTHDR_ROUTING:
155 case NEXTHDR_HOP:
156 case NEXTHDR_DEST:
157 offset += ipv6_optlen(exthdr);
158 nexthdr = exthdr->nexthdr;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700159 exthdr = (struct ipv6_opt_hdr *)(nh + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 break;
161
162 case IPPROTO_UDP:
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800163 case IPPROTO_UDPLITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 case IPPROTO_TCP:
165 case IPPROTO_SCTP:
Patrick McHardy9e999992005-12-19 14:03:46 -0800166 case IPPROTO_DCCP:
Wei Yongjun59cae002009-07-02 16:59:49 +0000167 if (!onlyproto && (nh + offset + 4 < skb->data ||
168 pskb_may_pull(skb, nh + offset + 4 - skb->data))) {
Li RongQing789f2022014-10-22 17:09:53 +0800169 __be16 *ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Li RongQing789f2022014-10-22 17:09:53 +0800171 nh = skb_network_header(skb);
172 ports = (__be16 *)(nh + offset);
David S. Miller1958b852011-03-12 16:36:19 -0500173 fl6->fl6_sport = ports[!!reverse];
174 fl6->fl6_dport = ports[!reverse];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 }
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500176 fl6->flowi6_proto = nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 return;
178
179 case IPPROTO_ICMPV6:
Nicolas Dichtel7e3a42a2008-11-01 21:12:07 -0700180 if (!onlyproto && pskb_may_pull(skb, nh + offset + 2 - skb->data)) {
Li RongQing789f2022014-10-22 17:09:53 +0800181 u8 *icmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Li RongQing789f2022014-10-22 17:09:53 +0800183 nh = skb_network_header(skb);
184 icmp = (u8 *)(nh + offset);
David S. Miller1958b852011-03-12 16:36:19 -0500185 fl6->fl6_icmp_type = icmp[0];
186 fl6->fl6_icmp_code = icmp[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 }
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500188 fl6->flowi6_proto = nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 return;
190
Amerigo Wang07a93622012-10-29 16:23:10 +0000191#if IS_ENABLED(CONFIG_IPV6_MIP6)
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700192 case IPPROTO_MH:
Hajime Tazakicd3bafc2015-02-04 23:31:10 +0900193 offset += ipv6_optlen(exthdr);
Nicolas Dichtel7e3a42a2008-11-01 21:12:07 -0700194 if (!onlyproto && pskb_may_pull(skb, nh + offset + 3 - skb->data)) {
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700195 struct ip6_mh *mh;
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700196
Li RongQing789f2022014-10-22 17:09:53 +0800197 nh = skb_network_header(skb);
198 mh = (struct ip6_mh *)(nh + offset);
David S. Miller1958b852011-03-12 16:36:19 -0500199 fl6->fl6_mh_type = mh->ip6mh_type;
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700200 }
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500201 fl6->flowi6_proto = nexthdr;
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700202 return;
203#endif
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 /* XXX Why are there these headers? */
206 case IPPROTO_AH:
207 case IPPROTO_ESP:
208 case IPPROTO_COMP:
209 default:
David S. Miller1958b852011-03-12 16:36:19 -0500210 fl6->fl6_ipsec_spi = 0;
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500211 fl6->flowi6_proto = nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 return;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 }
215}
216
Daniel Lezcano569d3642008-01-18 03:56:57 -0800217static inline int xfrm6_garbage_collect(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800219 struct net *net = container_of(ops, struct net, xfrm.xfrm6_dst_ops);
220
221 xfrm6_policy_afinfo.garbage_collect(net);
Eric Dumazetfc66f952010-10-08 06:37:34 +0000222 return dst_entries_get_fast(ops) > ops->gc_thresh * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
David S. Miller6700c272012-07-17 03:29:28 -0700225static void xfrm6_update_pmtu(struct dst_entry *dst, struct sock *sk,
226 struct sk_buff *skb, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
228 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
229 struct dst_entry *path = xdst->route;
230
David S. Miller6700c272012-07-17 03:29:28 -0700231 path->ops->update_pmtu(path, sk, skb, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
David S. Miller6700c272012-07-17 03:29:28 -0700234static void xfrm6_redirect(struct dst_entry *dst, struct sock *sk,
235 struct sk_buff *skb)
David S. Millerec18d9a2012-07-12 00:25:15 -0700236{
237 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
238 struct dst_entry *path = xdst->route;
239
David S. Miller6700c272012-07-17 03:29:28 -0700240 path->ops->redirect(path, sk, skb);
David S. Millerec18d9a2012-07-12 00:25:15 -0700241}
242
Herbert Xuaabc9762005-05-03 16:27:10 -0700243static void xfrm6_dst_destroy(struct dst_entry *dst)
244{
245 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
246
247 if (likely(xdst->u.rt6.rt6i_idev))
248 in6_dev_put(xdst->u.rt6.rt6i_idev);
David S. Miller62fa8a82011-01-26 20:51:05 -0800249 dst_destroy_metrics_generic(dst);
Herbert Xuaabc9762005-05-03 16:27:10 -0700250 xfrm_dst_destroy(xdst);
251}
252
253static void xfrm6_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
254 int unregister)
255{
256 struct xfrm_dst *xdst;
257
258 if (!unregister)
259 return;
260
261 xdst = (struct xfrm_dst *)dst;
262 if (xdst->u.rt6.rt6i_idev->dev == dev) {
Denis V. Lunev5a3e55d2007-12-07 00:38:10 -0800263 struct inet6_dev *loopback_idev =
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900264 in6_dev_get(dev_net(dev)->loopback_dev);
Herbert Xuaabc9762005-05-03 16:27:10 -0700265 BUG_ON(!loopback_idev);
266
267 do {
268 in6_dev_put(xdst->u.rt6.rt6i_idev);
269 xdst->u.rt6.rt6i_idev = loopback_idev;
270 in6_dev_hold(loopback_idev);
271 xdst = (struct xfrm_dst *)xdst->u.dst.child;
272 } while (xdst->u.dst.xfrm);
273
274 __in6_dev_put(loopback_idev);
275 }
276
277 xfrm_dst_ifdown(dst, dev);
278}
279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280static struct dst_ops xfrm6_dst_ops = {
281 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 .gc = xfrm6_garbage_collect,
283 .update_pmtu = xfrm6_update_pmtu,
David S. Millerec18d9a2012-07-12 00:25:15 -0700284 .redirect = xfrm6_redirect,
David S. Miller62fa8a82011-01-26 20:51:05 -0800285 .cow_metrics = dst_cow_metrics_generic,
Herbert Xuaabc9762005-05-03 16:27:10 -0700286 .destroy = xfrm6_dst_destroy,
287 .ifdown = xfrm6_dst_ifdown,
Herbert Xu862b82c2007-11-13 21:43:11 -0800288 .local_out = __ip6_local_out,
Steffen Klasserteeb1b732013-10-25 10:21:32 +0200289 .gc_thresh = 32768,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290};
291
292static struct xfrm_policy_afinfo xfrm6_policy_afinfo = {
293 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 .dst_ops = &xfrm6_dst_ops,
295 .dst_lookup = xfrm6_dst_lookup,
Ian Morris67ba4152014-08-24 21:53:10 +0100296 .get_saddr = xfrm6_get_saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 .decode_session = _decode_session6,
Herbert Xu25ee3282007-12-11 09:32:34 -0800298 .get_tos = xfrm6_get_tos,
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -0800299 .init_path = xfrm6_init_path,
Herbert Xu25ee3282007-12-11 09:32:34 -0800300 .fill_dst = xfrm6_fill_dst,
David S. Miller2774c132011-03-01 14:59:04 -0800301 .blackhole_route = ip6_blackhole_route,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302};
303
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800304static int __init xfrm6_policy_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800306 return xfrm_policy_register_afinfo(&xfrm6_policy_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
309static void xfrm6_policy_fini(void)
310{
311 xfrm_policy_unregister_afinfo(&xfrm6_policy_afinfo);
312}
313
David S. Millerdb717892009-08-04 20:32:16 -0700314#ifdef CONFIG_SYSCTL
Neil Hormana44a4a02009-07-27 08:22:46 +0000315static struct ctl_table xfrm6_policy_table[] = {
316 {
Neil Hormana44a4a02009-07-27 08:22:46 +0000317 .procname = "xfrm6_gc_thresh",
Ian Morris67ba4152014-08-24 21:53:10 +0100318 .data = &init_net.xfrm.xfrm6_dst_ops.gc_thresh,
319 .maxlen = sizeof(int),
320 .mode = 0644,
Neil Hormana44a4a02009-07-27 08:22:46 +0000321 .proc_handler = proc_dointvec,
322 },
323 { }
324};
325
Michal Kubecek8d068872013-02-06 10:46:33 +0100326static int __net_init xfrm6_net_init(struct net *net)
327{
328 struct ctl_table *table;
329 struct ctl_table_header *hdr;
330
331 table = xfrm6_policy_table;
332 if (!net_eq(net, &init_net)) {
333 table = kmemdup(table, sizeof(xfrm6_policy_table), GFP_KERNEL);
334 if (!table)
335 goto err_alloc;
336
337 table[0].data = &net->xfrm.xfrm6_dst_ops.gc_thresh;
338 }
339
340 hdr = register_net_sysctl(net, "net/ipv6", table);
341 if (!hdr)
342 goto err_reg;
343
344 net->ipv6.sysctl.xfrm6_hdr = hdr;
345 return 0;
346
347err_reg:
348 if (!net_eq(net, &init_net))
349 kfree(table);
350err_alloc:
351 return -ENOMEM;
352}
353
354static void __net_exit xfrm6_net_exit(struct net *net)
355{
356 struct ctl_table *table;
357
Ian Morris63159f22015-03-29 14:00:04 +0100358 if (!net->ipv6.sysctl.xfrm6_hdr)
Michal Kubecek8d068872013-02-06 10:46:33 +0100359 return;
360
361 table = net->ipv6.sysctl.xfrm6_hdr->ctl_table_arg;
362 unregister_net_sysctl_table(net->ipv6.sysctl.xfrm6_hdr);
363 if (!net_eq(net, &init_net))
364 kfree(table);
365}
366
367static struct pernet_operations xfrm6_net_ops = {
368 .init = xfrm6_net_init,
369 .exit = xfrm6_net_exit,
370};
David S. Millerdb717892009-08-04 20:32:16 -0700371#endif
Neil Hormana44a4a02009-07-27 08:22:46 +0000372
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800373int __init xfrm6_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800375 int ret;
376
Eric Dumazetfc66f952010-10-08 06:37:34 +0000377 dst_entries_init(&xfrm6_dst_ops);
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800378
379 ret = xfrm6_policy_init();
Eric Dumazetfc66f952010-10-08 06:37:34 +0000380 if (ret) {
381 dst_entries_destroy(&xfrm6_dst_ops);
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800382 goto out;
Eric Dumazetfc66f952010-10-08 06:37:34 +0000383 }
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800384 ret = xfrm6_state_init();
385 if (ret)
386 goto out_policy;
387
Steffen Klassert7e14ea12014-03-14 07:28:07 +0100388 ret = xfrm6_protocol_init();
389 if (ret)
390 goto out_state;
391
David S. Millerdb717892009-08-04 20:32:16 -0700392#ifdef CONFIG_SYSCTL
Michal Kubecek8d068872013-02-06 10:46:33 +0100393 register_pernet_subsys(&xfrm6_net_ops);
David S. Millerdb717892009-08-04 20:32:16 -0700394#endif
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800395out:
396 return ret;
Steffen Klassert7e14ea12014-03-14 07:28:07 +0100397out_state:
398 xfrm6_state_fini();
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800399out_policy:
400 xfrm6_policy_fini();
401 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
404void xfrm6_fini(void)
405{
David S. Millerdb717892009-08-04 20:32:16 -0700406#ifdef CONFIG_SYSCTL
Michal Kubecek8d068872013-02-06 10:46:33 +0100407 unregister_pernet_subsys(&xfrm6_net_ops);
David S. Millerdb717892009-08-04 20:32:16 -0700408#endif
Steffen Klassert7e14ea12014-03-14 07:28:07 +0100409 xfrm6_protocol_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 xfrm6_policy_fini();
411 xfrm6_state_fini();
Eric Dumazetfc66f952010-10-08 06:37:34 +0000412 dst_entries_destroy(&xfrm6_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}