blob: 11d1314ab6c5c027bdefb6a4283773fd58307bd5 [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
David Ahern42a7b322015-08-10 16:58:11 -060028static struct dst_entry *xfrm6_dst_lookup(struct net *net, int tos, int oif,
David S. Miller5e6b9302011-02-24 00:14:45 -050029 const xfrm_address_t *saddr,
Lorenzo Colitti077fbac2017-08-11 02:11:33 +090030 const xfrm_address_t *daddr,
31 u32 mark)
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));
David Ahern11d7a0b2016-08-14 19:52:56 -070038 fl6.flowi6_oif = l3mdev_master_ifindex_by_index(net, oif);
David Ahern41489872015-10-05 08:32:51 -060039 fl6.flowi6_flags = FLOWI_FLAG_SKIP_NH_OIF;
Lorenzo Colitti077fbac2017-08-11 02:11:33 +090040 fl6.flowi6_mark = mark;
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,
Lorenzo Colitti077fbac2017-08-11 02:11:33 +090057 xfrm_address_t *saddr, xfrm_address_t *daddr,
58 u32 mark)
Patrick McHardya1e59ab2006-09-19 12:57:34 -070059{
Herbert Xu66cdb3c2007-11-13 21:37:28 -080060 struct dst_entry *dst;
Brian Haley191cd582008-08-14 15:33:21 -070061 struct net_device *dev;
Patrick McHardya1e59ab2006-09-19 12:57:34 -070062
Lorenzo Colitti077fbac2017-08-11 02:11:33 +090063 dst = xfrm6_dst_lookup(net, 0, oif, NULL, daddr, mark);
Herbert Xu66cdb3c2007-11-13 21:37:28 -080064 if (IS_ERR(dst))
65 return -EHOSTUNREACH;
66
Brian Haley191cd582008-08-14 15:33:21 -070067 dev = ip6_dst_idev(dst)->dev;
Jiri Benc15e318b2015-03-29 16:59:24 +020068 ipv6_dev_get_saddr(dev_net(dev), dev, &daddr->in6, 0, &saddr->in6);
Herbert Xu66cdb3c2007-11-13 21:37:28 -080069 dst_release(dst);
70 return 0;
Patrick McHardya1e59ab2006-09-19 12:57:34 -070071}
72
David S. Miller05d84022011-02-22 17:47:10 -080073static int xfrm6_get_tos(const struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 return 0;
Herbert Xu25ee3282007-12-11 09:32:34 -080076}
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -080078static int xfrm6_init_path(struct xfrm_dst *path, struct dst_entry *dst,
79 int nfheader_len)
80{
81 if (dst->ops->family == AF_INET6) {
Ian Morris67ba4152014-08-24 21:53:10 +010082 struct rt6_info *rt = (struct rt6_info *)dst;
Martin KaFai Laub197df42015-05-22 20:56:01 -070083 path->path_cookie = rt6_get_cookie(rt);
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -080084 }
85
86 path->u.rt6.rt6i_nfheader_len = nfheader_len;
87
88 return 0;
89}
90
Herbert Xu87c1e122010-03-02 02:51:56 +000091static int xfrm6_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
David S. Miller0c7b3ee2011-02-22 17:48:57 -080092 const struct flowi *fl)
Herbert Xu25ee3282007-12-11 09:32:34 -080093{
Ian Morris67ba4152014-08-24 21:53:10 +010094 struct rt6_info *rt = (struct rt6_info *)xdst->route;
Herbert Xu25ee3282007-12-11 09:32:34 -080095
96 xdst->u.dst.dev = dev;
97 dev_hold(dev);
98
Nicolas Dichtelbc8e4b92010-04-21 16:25:30 -070099 xdst->u.rt6.rt6i_idev = in6_dev_get(dev);
Cong Wang84c4a9d2013-05-09 22:40:00 +0000100 if (!xdst->u.rt6.rt6i_idev) {
101 dev_put(dev);
Herbert Xu25ee3282007-12-11 09:32:34 -0800102 return -ENODEV;
Cong Wang84c4a9d2013-05-09 22:40:00 +0000103 }
Herbert Xu25ee3282007-12-11 09:32:34 -0800104
105 /* Sheit... I remember I did this right. Apparently,
106 * it was magically lost, so this code needs audit */
107 xdst->u.rt6.rt6i_flags = rt->rt6i_flags & (RTF_ANYCAST |
108 RTF_LOCAL);
109 xdst->u.rt6.rt6i_metric = rt->rt6i_metric;
110 xdst->u.rt6.rt6i_node = rt->rt6i_node;
Martin KaFai Laub197df42015-05-22 20:56:01 -0700111 xdst->route_cookie = rt6_get_cookie(rt);
Herbert Xu25ee3282007-12-11 09:32:34 -0800112 xdst->u.rt6.rt6i_gateway = rt->rt6i_gateway;
113 xdst->u.rt6.rt6i_dst = rt->rt6i_dst;
114 xdst->u.rt6.rt6i_src = rt->rt6i_src;
115
116 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117}
118
119static inline void
Herbert Xud5422ef2007-12-12 10:44:16 -0800120_decode_session6(struct sk_buff *skb, struct flowi *fl, int reverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500122 struct flowi6 *fl6 = &fl->u.ip6;
Nicolas Dichtel7e3a42a2008-11-01 21:12:07 -0700123 int onlyproto = 0;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000124 const struct ipv6hdr *hdr = ipv6_hdr(skb);
Steffen Klassertde3b7a02014-12-04 09:46:20 +0100125 u16 offset = sizeof(*hdr);
YOSHIFUJI Hideakie3cae902006-04-18 14:46:52 -0700126 struct ipv6_opt_hdr *exthdr;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700127 const unsigned char *nh = skb_network_header(skb);
Steffen Klassertf8556912014-12-08 07:56:18 +0100128 u16 nhoff = IP6CB(skb)->nhoff;
Steffen Klassert84502b52013-10-30 11:16:28 +0100129 int oif = 0;
Steffen Klassertf8556912014-12-08 07:56:18 +0100130 u8 nexthdr;
131
132 if (!nhoff)
133 nhoff = offsetof(struct ipv6hdr, nexthdr);
134
135 nexthdr = nh[nhoff];
Steffen Klassert84502b52013-10-30 11:16:28 +0100136
David Ahern385add92015-09-29 20:07:13 -0700137 if (skb_dst(skb))
David Aherne0d56fd2016-09-10 12:09:57 -0700138 oif = skb_dst(skb)->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500140 memset(fl6, 0, sizeof(struct flowi6));
141 fl6->flowi6_mark = skb->mark;
Steffen Klassert84502b52013-10-30 11:16:28 +0100142 fl6->flowi6_oif = reverse ? skb->skb_iif : oif;
Peter Kosyh44b451f2010-07-02 07:47:55 +0000143
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000144 fl6->daddr = reverse ? hdr->saddr : hdr->daddr;
145 fl6->saddr = reverse ? hdr->daddr : hdr->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Wei Yongjun59cae002009-07-02 16:59:49 +0000147 while (nh + offset + 1 < skb->data ||
148 pskb_may_pull(skb, nh + offset + 1 - skb->data)) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700149 nh = skb_network_header(skb);
150 exthdr = (struct ipv6_opt_hdr *)(nh + offset);
YOSHIFUJI Hideakie3cae902006-04-18 14:46:52 -0700151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 switch (nexthdr) {
Nicolas Dichtel7e3a42a2008-11-01 21:12:07 -0700153 case NEXTHDR_FRAGMENT:
154 onlyproto = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 case NEXTHDR_ROUTING:
156 case NEXTHDR_HOP:
157 case NEXTHDR_DEST:
158 offset += ipv6_optlen(exthdr);
159 nexthdr = exthdr->nexthdr;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700160 exthdr = (struct ipv6_opt_hdr *)(nh + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 break;
162
163 case IPPROTO_UDP:
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800164 case IPPROTO_UDPLITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 case IPPROTO_TCP:
166 case IPPROTO_SCTP:
Patrick McHardy9e999992005-12-19 14:03:46 -0800167 case IPPROTO_DCCP:
Wei Yongjun59cae002009-07-02 16:59:49 +0000168 if (!onlyproto && (nh + offset + 4 < skb->data ||
169 pskb_may_pull(skb, nh + offset + 4 - skb->data))) {
Li RongQing789f2022014-10-22 17:09:53 +0800170 __be16 *ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Li RongQing789f2022014-10-22 17:09:53 +0800172 nh = skb_network_header(skb);
173 ports = (__be16 *)(nh + offset);
David S. Miller1958b852011-03-12 16:36:19 -0500174 fl6->fl6_sport = ports[!!reverse];
175 fl6->fl6_dport = ports[!reverse];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500177 fl6->flowi6_proto = nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 return;
179
180 case IPPROTO_ICMPV6:
Mathias Krause04a6b8b2015-09-11 09:57:20 +0200181 if (!onlyproto && (nh + offset + 2 < skb->data ||
182 pskb_may_pull(skb, nh + offset + 2 - skb->data))) {
Li RongQing789f2022014-10-22 17:09:53 +0800183 u8 *icmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Li RongQing789f2022014-10-22 17:09:53 +0800185 nh = skb_network_header(skb);
186 icmp = (u8 *)(nh + offset);
David S. Miller1958b852011-03-12 16:36:19 -0500187 fl6->fl6_icmp_type = icmp[0];
188 fl6->fl6_icmp_code = icmp[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500190 fl6->flowi6_proto = nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return;
192
Amerigo Wang07a93622012-10-29 16:23:10 +0000193#if IS_ENABLED(CONFIG_IPV6_MIP6)
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700194 case IPPROTO_MH:
Hajime Tazakicd3bafc2015-02-04 23:31:10 +0900195 offset += ipv6_optlen(exthdr);
Mathias Krause04a6b8b2015-09-11 09:57:20 +0200196 if (!onlyproto && (nh + offset + 3 < skb->data ||
197 pskb_may_pull(skb, nh + offset + 3 - skb->data))) {
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700198 struct ip6_mh *mh;
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700199
Li RongQing789f2022014-10-22 17:09:53 +0800200 nh = skb_network_header(skb);
201 mh = (struct ip6_mh *)(nh + offset);
David S. Miller1958b852011-03-12 16:36:19 -0500202 fl6->fl6_mh_type = mh->ip6mh_type;
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700203 }
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500204 fl6->flowi6_proto = nexthdr;
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700205 return;
206#endif
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 /* XXX Why are there these headers? */
209 case IPPROTO_AH:
210 case IPPROTO_ESP:
211 case IPPROTO_COMP:
212 default:
David S. Miller1958b852011-03-12 16:36:19 -0500213 fl6->fl6_ipsec_spi = 0;
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500214 fl6->flowi6_proto = nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 return;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
218}
219
David S. Miller6700c272012-07-17 03:29:28 -0700220static void xfrm6_update_pmtu(struct dst_entry *dst, struct sock *sk,
221 struct sk_buff *skb, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
224 struct dst_entry *path = xdst->route;
225
David S. Miller6700c272012-07-17 03:29:28 -0700226 path->ops->update_pmtu(path, sk, skb, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227}
228
David S. Miller6700c272012-07-17 03:29:28 -0700229static void xfrm6_redirect(struct dst_entry *dst, struct sock *sk,
230 struct sk_buff *skb)
David S. Millerec18d9a2012-07-12 00:25:15 -0700231{
232 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
233 struct dst_entry *path = xdst->route;
234
David S. Miller6700c272012-07-17 03:29:28 -0700235 path->ops->redirect(path, sk, skb);
David S. Millerec18d9a2012-07-12 00:25:15 -0700236}
237
Herbert Xuaabc9762005-05-03 16:27:10 -0700238static void xfrm6_dst_destroy(struct dst_entry *dst)
239{
240 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
241
242 if (likely(xdst->u.rt6.rt6i_idev))
243 in6_dev_put(xdst->u.rt6.rt6i_idev);
David S. Miller62fa8a82011-01-26 20:51:05 -0800244 dst_destroy_metrics_generic(dst);
Herbert Xuaabc9762005-05-03 16:27:10 -0700245 xfrm_dst_destroy(xdst);
246}
247
248static void xfrm6_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
249 int unregister)
250{
251 struct xfrm_dst *xdst;
252
253 if (!unregister)
254 return;
255
256 xdst = (struct xfrm_dst *)dst;
257 if (xdst->u.rt6.rt6i_idev->dev == dev) {
Denis V. Lunev5a3e55d2007-12-07 00:38:10 -0800258 struct inet6_dev *loopback_idev =
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900259 in6_dev_get(dev_net(dev)->loopback_dev);
Herbert Xuaabc9762005-05-03 16:27:10 -0700260 BUG_ON(!loopback_idev);
261
262 do {
263 in6_dev_put(xdst->u.rt6.rt6i_idev);
264 xdst->u.rt6.rt6i_idev = loopback_idev;
265 in6_dev_hold(loopback_idev);
266 xdst = (struct xfrm_dst *)xdst->u.dst.child;
267 } while (xdst->u.dst.xfrm);
268
269 __in6_dev_put(loopback_idev);
270 }
271
272 xfrm_dst_ifdown(dst, dev);
273}
274
Dan Streetmana8a572a2015-10-29 09:51:16 -0400275static struct dst_ops xfrm6_dst_ops_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 .update_pmtu = xfrm6_update_pmtu,
David S. Millerec18d9a2012-07-12 00:25:15 -0700278 .redirect = xfrm6_redirect,
David S. Miller62fa8a82011-01-26 20:51:05 -0800279 .cow_metrics = dst_cow_metrics_generic,
Herbert Xuaabc9762005-05-03 16:27:10 -0700280 .destroy = xfrm6_dst_destroy,
281 .ifdown = xfrm6_dst_ifdown,
Herbert Xu862b82c2007-11-13 21:43:11 -0800282 .local_out = __ip6_local_out,
Florian Westphal3c2a89d2017-07-17 13:57:20 +0200283 .gc_thresh = 32768,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284};
285
Florian Westphal37b10382017-02-07 15:00:19 +0100286static const struct xfrm_policy_afinfo xfrm6_policy_afinfo = {
Dan Streetmana8a572a2015-10-29 09:51:16 -0400287 .dst_ops = &xfrm6_dst_ops_template,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 .dst_lookup = xfrm6_dst_lookup,
Ian Morris67ba4152014-08-24 21:53:10 +0100289 .get_saddr = xfrm6_get_saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 .decode_session = _decode_session6,
Herbert Xu25ee3282007-12-11 09:32:34 -0800291 .get_tos = xfrm6_get_tos,
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -0800292 .init_path = xfrm6_init_path,
Herbert Xu25ee3282007-12-11 09:32:34 -0800293 .fill_dst = xfrm6_fill_dst,
David S. Miller2774c132011-03-01 14:59:04 -0800294 .blackhole_route = ip6_blackhole_route,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295};
296
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800297static int __init xfrm6_policy_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
Florian Westphala2817d82017-02-07 15:00:17 +0100299 return xfrm_policy_register_afinfo(&xfrm6_policy_afinfo, AF_INET6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
302static void xfrm6_policy_fini(void)
303{
304 xfrm_policy_unregister_afinfo(&xfrm6_policy_afinfo);
305}
306
David S. Millerdb717892009-08-04 20:32:16 -0700307#ifdef CONFIG_SYSCTL
Neil Hormana44a4a02009-07-27 08:22:46 +0000308static struct ctl_table xfrm6_policy_table[] = {
309 {
Neil Hormana44a4a02009-07-27 08:22:46 +0000310 .procname = "xfrm6_gc_thresh",
Ian Morris67ba4152014-08-24 21:53:10 +0100311 .data = &init_net.xfrm.xfrm6_dst_ops.gc_thresh,
312 .maxlen = sizeof(int),
313 .mode = 0644,
Neil Hormana44a4a02009-07-27 08:22:46 +0000314 .proc_handler = proc_dointvec,
315 },
316 { }
317};
318
Dan Streetmana8a572a2015-10-29 09:51:16 -0400319static int __net_init xfrm6_net_sysctl_init(struct net *net)
Michal Kubecek8d068872013-02-06 10:46:33 +0100320{
321 struct ctl_table *table;
322 struct ctl_table_header *hdr;
323
324 table = xfrm6_policy_table;
325 if (!net_eq(net, &init_net)) {
326 table = kmemdup(table, sizeof(xfrm6_policy_table), GFP_KERNEL);
327 if (!table)
328 goto err_alloc;
329
330 table[0].data = &net->xfrm.xfrm6_dst_ops.gc_thresh;
331 }
332
333 hdr = register_net_sysctl(net, "net/ipv6", table);
334 if (!hdr)
335 goto err_reg;
336
337 net->ipv6.sysctl.xfrm6_hdr = hdr;
338 return 0;
339
340err_reg:
341 if (!net_eq(net, &init_net))
342 kfree(table);
343err_alloc:
344 return -ENOMEM;
345}
346
Dan Streetmana8a572a2015-10-29 09:51:16 -0400347static void __net_exit xfrm6_net_sysctl_exit(struct net *net)
Michal Kubecek8d068872013-02-06 10:46:33 +0100348{
349 struct ctl_table *table;
350
Ian Morris63159f22015-03-29 14:00:04 +0100351 if (!net->ipv6.sysctl.xfrm6_hdr)
Michal Kubecek8d068872013-02-06 10:46:33 +0100352 return;
353
354 table = net->ipv6.sysctl.xfrm6_hdr->ctl_table_arg;
355 unregister_net_sysctl_table(net->ipv6.sysctl.xfrm6_hdr);
356 if (!net_eq(net, &init_net))
357 kfree(table);
358}
Dan Streetmana8a572a2015-10-29 09:51:16 -0400359#else /* CONFIG_SYSCTL */
Arnd Bergmann318d3cc2016-06-16 15:59:25 +0200360static inline int xfrm6_net_sysctl_init(struct net *net)
Dan Streetmana8a572a2015-10-29 09:51:16 -0400361{
362 return 0;
363}
364
Arnd Bergmann318d3cc2016-06-16 15:59:25 +0200365static inline void xfrm6_net_sysctl_exit(struct net *net)
Dan Streetmana8a572a2015-10-29 09:51:16 -0400366{
367}
368#endif
369
370static int __net_init xfrm6_net_init(struct net *net)
371{
372 int ret;
373
374 memcpy(&net->xfrm.xfrm6_dst_ops, &xfrm6_dst_ops_template,
375 sizeof(xfrm6_dst_ops_template));
376 ret = dst_entries_init(&net->xfrm.xfrm6_dst_ops);
377 if (ret)
378 return ret;
379
380 ret = xfrm6_net_sysctl_init(net);
381 if (ret)
382 dst_entries_destroy(&net->xfrm.xfrm6_dst_ops);
383
384 return ret;
385}
386
387static void __net_exit xfrm6_net_exit(struct net *net)
388{
389 xfrm6_net_sysctl_exit(net);
390 dst_entries_destroy(&net->xfrm.xfrm6_dst_ops);
391}
Michal Kubecek8d068872013-02-06 10:46:33 +0100392
393static struct pernet_operations xfrm6_net_ops = {
394 .init = xfrm6_net_init,
395 .exit = xfrm6_net_exit,
396};
Neil Hormana44a4a02009-07-27 08:22:46 +0000397
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800398int __init xfrm6_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800400 int ret;
401
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800402 ret = xfrm6_policy_init();
Dan Streetmana8a572a2015-10-29 09:51:16 -0400403 if (ret)
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800404 goto out;
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800405 ret = xfrm6_state_init();
406 if (ret)
407 goto out_policy;
408
Steffen Klassert7e14ea12014-03-14 07:28:07 +0100409 ret = xfrm6_protocol_init();
410 if (ret)
411 goto out_state;
412
Michal Kubecek8d068872013-02-06 10:46:33 +0100413 register_pernet_subsys(&xfrm6_net_ops);
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800414out:
415 return ret;
Steffen Klassert7e14ea12014-03-14 07:28:07 +0100416out_state:
417 xfrm6_state_fini();
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800418out_policy:
419 xfrm6_policy_fini();
420 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
422
423void xfrm6_fini(void)
424{
Michal Kubecek8d068872013-02-06 10:46:33 +0100425 unregister_pernet_subsys(&xfrm6_net_ops);
Steffen Klassert7e14ea12014-03-14 07:28:07 +0100426 xfrm6_protocol_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 xfrm6_policy_fini();
428 xfrm6_state_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429}