blob: ef3defaf43b9ae7644f0902c0a067b9d8e733d92 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * xfrm6_policy.c: based on xfrm4_policy.c
4 *
5 * Authors:
6 * Mitsuru KANDA @USAGI
Ian Morris67ba4152014-08-24 21:53:10 +01007 * Kazunori MIYAZAWA @USAGI
8 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
9 * IPv6 support
10 * YOSHIFUJI Hideaki
11 * Split up af-specific portion
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090012 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 */
14
Herbert Xu66cdb3c2007-11-13 21:37:28 -080015#include <linux/err.h>
16#include <linux/kernel.h>
Herbert Xuaabc9762005-05-03 16:27:10 -070017#include <linux/netdevice.h>
18#include <net/addrconf.h>
Herbert Xu45ff5a32007-11-13 21:35:32 -080019#include <net/dst.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <net/xfrm.h>
21#include <net/ip.h>
22#include <net/ipv6.h>
23#include <net/ip6_route.h>
David Ahern385add92015-09-29 20:07:13 -070024#include <net/l3mdev.h>
Amerigo Wang07a93622012-10-29 16:23:10 +000025#if IS_ENABLED(CONFIG_IPV6_MIP6)
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -070026#include <net/mip6.h>
27#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
David Ahern42a7b322015-08-10 16:58:11 -060029static struct dst_entry *xfrm6_dst_lookup(struct net *net, int tos, int oif,
David S. Miller5e6b9302011-02-24 00:14:45 -050030 const xfrm_address_t *saddr,
Lorenzo Colitti077fbac2017-08-11 02:11:33 +090031 const xfrm_address_t *daddr,
32 u32 mark)
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 Ahern11d7a0b2016-08-14 19:52:56 -070039 fl6.flowi6_oif = l3mdev_master_ifindex_by_index(net, oif);
David Ahern41489872015-10-05 08:32:51 -060040 fl6.flowi6_flags = FLOWI_FLAG_SKIP_NH_OIF;
Lorenzo Colitti077fbac2017-08-11 02:11:33 +090041 fl6.flowi6_mark = mark;
David S. Miller7e1dc7b2011-03-12 02:42:11 -050042 memcpy(&fl6.daddr, daddr, sizeof(fl6.daddr));
Herbert Xu66cdb3c2007-11-13 21:37:28 -080043 if (saddr)
David S. Miller7e1dc7b2011-03-12 02:42:11 -050044 memcpy(&fl6.saddr, saddr, sizeof(fl6.saddr));
Herbert Xu66cdb3c2007-11-13 21:37:28 -080045
David S. Miller4c9483b2011-03-12 16:22:43 -050046 dst = ip6_route_output(net, NULL, &fl6);
Herbert Xu66cdb3c2007-11-13 21:37:28 -080047
48 err = dst->error;
49 if (dst->error) {
Ville Nuorvala42513202006-10-16 22:10:05 -070050 dst_release(dst);
Herbert Xu66cdb3c2007-11-13 21:37:28 -080051 dst = ERR_PTR(err);
52 }
53
54 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055}
56
David Ahern42a7b322015-08-10 16:58:11 -060057static int xfrm6_get_saddr(struct net *net, int oif,
Lorenzo Colitti077fbac2017-08-11 02:11:33 +090058 xfrm_address_t *saddr, xfrm_address_t *daddr,
59 u32 mark)
Patrick McHardya1e59ab2006-09-19 12:57:34 -070060{
Herbert Xu66cdb3c2007-11-13 21:37:28 -080061 struct dst_entry *dst;
Brian Haley191cd582008-08-14 15:33:21 -070062 struct net_device *dev;
Patrick McHardya1e59ab2006-09-19 12:57:34 -070063
Lorenzo Colitti077fbac2017-08-11 02:11:33 +090064 dst = xfrm6_dst_lookup(net, 0, oif, NULL, daddr, mark);
Herbert Xu66cdb3c2007-11-13 21:37:28 -080065 if (IS_ERR(dst))
66 return -EHOSTUNREACH;
67
Brian Haley191cd582008-08-14 15:33:21 -070068 dev = ip6_dst_idev(dst)->dev;
Jiri Benc15e318b2015-03-29 16:59:24 +020069 ipv6_dev_get_saddr(dev_net(dev), dev, &daddr->in6, 0, &saddr->in6);
Herbert Xu66cdb3c2007-11-13 21:37:28 -080070 dst_release(dst);
71 return 0;
Patrick McHardya1e59ab2006-09-19 12:57:34 -070072}
73
David S. Miller05d84022011-02-22 17:47:10 -080074static int xfrm6_get_tos(const struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 return 0;
Herbert Xu25ee3282007-12-11 09:32:34 -080077}
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -080079static int xfrm6_init_path(struct xfrm_dst *path, struct dst_entry *dst,
80 int nfheader_len)
81{
82 if (dst->ops->family == AF_INET6) {
Ian Morris67ba4152014-08-24 21:53:10 +010083 struct rt6_info *rt = (struct rt6_info *)dst;
Martin KaFai Laub197df42015-05-22 20:56:01 -070084 path->path_cookie = rt6_get_cookie(rt);
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -080085 }
86
87 path->u.rt6.rt6i_nfheader_len = nfheader_len;
88
89 return 0;
90}
91
Herbert Xu87c1e122010-03-02 02:51:56 +000092static int xfrm6_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
David S. Miller0c7b3ee2011-02-22 17:48:57 -080093 const struct flowi *fl)
Herbert Xu25ee3282007-12-11 09:32:34 -080094{
Ian Morris67ba4152014-08-24 21:53:10 +010095 struct rt6_info *rt = (struct rt6_info *)xdst->route;
Herbert Xu25ee3282007-12-11 09:32:34 -080096
97 xdst->u.dst.dev = dev;
98 dev_hold(dev);
99
Nicolas Dichtelbc8e4b92010-04-21 16:25:30 -0700100 xdst->u.rt6.rt6i_idev = in6_dev_get(dev);
Cong Wang84c4a9d2013-05-09 22:40:00 +0000101 if (!xdst->u.rt6.rt6i_idev) {
102 dev_put(dev);
Herbert Xu25ee3282007-12-11 09:32:34 -0800103 return -ENODEV;
Cong Wang84c4a9d2013-05-09 22:40:00 +0000104 }
Herbert Xu25ee3282007-12-11 09:32:34 -0800105
106 /* Sheit... I remember I did this right. Apparently,
107 * it was magically lost, so this code needs audit */
108 xdst->u.rt6.rt6i_flags = rt->rt6i_flags & (RTF_ANYCAST |
109 RTF_LOCAL);
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;
Xin Long510c3212018-02-14 19:06:02 +0800114 INIT_LIST_HEAD(&xdst->u.rt6.rt6i_uncached);
115 rt6_uncached_list_add(&xdst->u.rt6);
116 atomic_inc(&dev_net(dev)->ipv6.rt6_stats->fib_rt_uncache);
Herbert Xu25ee3282007-12-11 09:32:34 -0800117
118 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
121static inline void
Herbert Xud5422ef2007-12-12 10:44:16 -0800122_decode_session6(struct sk_buff *skb, struct flowi *fl, int reverse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500124 struct flowi6 *fl6 = &fl->u.ip6;
Nicolas Dichtel7e3a42a2008-11-01 21:12:07 -0700125 int onlyproto = 0;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000126 const struct ipv6hdr *hdr = ipv6_hdr(skb);
Eric Dumazetd9f92772018-05-12 02:49:30 -0700127 u32 offset = sizeof(*hdr);
YOSHIFUJI Hideakie3cae902006-04-18 14:46:52 -0700128 struct ipv6_opt_hdr *exthdr;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700129 const unsigned char *nh = skb_network_header(skb);
Steffen Klassertf8556912014-12-08 07:56:18 +0100130 u16 nhoff = IP6CB(skb)->nhoff;
Steffen Klassert84502b52013-10-30 11:16:28 +0100131 int oif = 0;
Steffen Klassertf8556912014-12-08 07:56:18 +0100132 u8 nexthdr;
133
134 if (!nhoff)
135 nhoff = offsetof(struct ipv6hdr, nexthdr);
136
137 nexthdr = nh[nhoff];
Steffen Klassert84502b52013-10-30 11:16:28 +0100138
David Ahern385add92015-09-29 20:07:13 -0700139 if (skb_dst(skb))
David Aherne0d56fd2016-09-10 12:09:57 -0700140 oif = skb_dst(skb)->dev->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500142 memset(fl6, 0, sizeof(struct flowi6));
143 fl6->flowi6_mark = skb->mark;
Steffen Klassert84502b52013-10-30 11:16:28 +0100144 fl6->flowi6_oif = reverse ? skb->skb_iif : oif;
Peter Kosyh44b451f2010-07-02 07:47:55 +0000145
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000146 fl6->daddr = reverse ? hdr->saddr : hdr->daddr;
147 fl6->saddr = reverse ? hdr->daddr : hdr->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Wei Yongjun59cae002009-07-02 16:59:49 +0000149 while (nh + offset + 1 < skb->data ||
150 pskb_may_pull(skb, nh + offset + 1 - skb->data)) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700151 nh = skb_network_header(skb);
152 exthdr = (struct ipv6_opt_hdr *)(nh + offset);
YOSHIFUJI Hideakie3cae902006-04-18 14:46:52 -0700153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 switch (nexthdr) {
Nicolas Dichtel7e3a42a2008-11-01 21:12:07 -0700155 case NEXTHDR_FRAGMENT:
156 onlyproto = 1;
Gustavo A. R. Silva275757e62017-10-16 16:36:52 -0500157 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 case NEXTHDR_ROUTING:
159 case NEXTHDR_HOP:
160 case NEXTHDR_DEST:
161 offset += ipv6_optlen(exthdr);
162 nexthdr = exthdr->nexthdr;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700163 exthdr = (struct ipv6_opt_hdr *)(nh + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 break;
165
166 case IPPROTO_UDP:
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800167 case IPPROTO_UDPLITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 case IPPROTO_TCP:
169 case IPPROTO_SCTP:
Patrick McHardy9e999992005-12-19 14:03:46 -0800170 case IPPROTO_DCCP:
Wei Yongjun59cae002009-07-02 16:59:49 +0000171 if (!onlyproto && (nh + offset + 4 < skb->data ||
172 pskb_may_pull(skb, nh + offset + 4 - skb->data))) {
Li RongQing789f2022014-10-22 17:09:53 +0800173 __be16 *ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Li RongQing789f2022014-10-22 17:09:53 +0800175 nh = skb_network_header(skb);
176 ports = (__be16 *)(nh + offset);
David S. Miller1958b852011-03-12 16:36:19 -0500177 fl6->fl6_sport = ports[!!reverse];
178 fl6->fl6_dport = ports[!reverse];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500180 fl6->flowi6_proto = nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return;
182
183 case IPPROTO_ICMPV6:
Mathias Krause04a6b8b2015-09-11 09:57:20 +0200184 if (!onlyproto && (nh + offset + 2 < skb->data ||
185 pskb_may_pull(skb, nh + offset + 2 - skb->data))) {
Li RongQing789f2022014-10-22 17:09:53 +0800186 u8 *icmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
Li RongQing789f2022014-10-22 17:09:53 +0800188 nh = skb_network_header(skb);
189 icmp = (u8 *)(nh + offset);
David S. Miller1958b852011-03-12 16:36:19 -0500190 fl6->fl6_icmp_type = icmp[0];
191 fl6->fl6_icmp_code = icmp[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500193 fl6->flowi6_proto = nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 return;
195
Amerigo Wang07a93622012-10-29 16:23:10 +0000196#if IS_ENABLED(CONFIG_IPV6_MIP6)
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700197 case IPPROTO_MH:
Hajime Tazakicd3bafc2015-02-04 23:31:10 +0900198 offset += ipv6_optlen(exthdr);
Mathias Krause04a6b8b2015-09-11 09:57:20 +0200199 if (!onlyproto && (nh + offset + 3 < skb->data ||
200 pskb_may_pull(skb, nh + offset + 3 - skb->data))) {
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700201 struct ip6_mh *mh;
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700202
Li RongQing789f2022014-10-22 17:09:53 +0800203 nh = skb_network_header(skb);
204 mh = (struct ip6_mh *)(nh + offset);
David S. Miller1958b852011-03-12 16:36:19 -0500205 fl6->fl6_mh_type = mh->ip6mh_type;
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700206 }
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500207 fl6->flowi6_proto = nexthdr;
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700208 return;
209#endif
210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 /* XXX Why are there these headers? */
212 case IPPROTO_AH:
213 case IPPROTO_ESP:
214 case IPPROTO_COMP:
215 default:
David S. Miller1958b852011-03-12 16:36:19 -0500216 fl6->fl6_ipsec_spi = 0;
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500217 fl6->flowi6_proto = nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 return;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 }
221}
222
David S. Miller6700c272012-07-17 03:29:28 -0700223static void xfrm6_update_pmtu(struct dst_entry *dst, struct sock *sk,
224 struct sk_buff *skb, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
227 struct dst_entry *path = xdst->route;
228
David S. Miller6700c272012-07-17 03:29:28 -0700229 path->ops->update_pmtu(path, sk, skb, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230}
231
David S. Miller6700c272012-07-17 03:29:28 -0700232static void xfrm6_redirect(struct dst_entry *dst, struct sock *sk,
233 struct sk_buff *skb)
David S. Millerec18d9a2012-07-12 00:25:15 -0700234{
235 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
236 struct dst_entry *path = xdst->route;
237
David S. Miller6700c272012-07-17 03:29:28 -0700238 path->ops->redirect(path, sk, skb);
David S. Millerec18d9a2012-07-12 00:25:15 -0700239}
240
Herbert Xuaabc9762005-05-03 16:27:10 -0700241static void xfrm6_dst_destroy(struct dst_entry *dst)
242{
243 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
244
245 if (likely(xdst->u.rt6.rt6i_idev))
246 in6_dev_put(xdst->u.rt6.rt6i_idev);
David S. Miller62fa8a82011-01-26 20:51:05 -0800247 dst_destroy_metrics_generic(dst);
Xin Long510c3212018-02-14 19:06:02 +0800248 if (xdst->u.rt6.rt6i_uncached_list)
249 rt6_uncached_list_del(&xdst->u.rt6);
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);
David Millerb92cf4a2017-11-28 15:40:22 -0500271 xdst = (struct xfrm_dst *)xfrm_dst_child(&xdst->u.dst);
Herbert Xuaabc9762005-05-03 16:27:10 -0700272 } while (xdst->u.dst.xfrm);
273
274 __in6_dev_put(loopback_idev);
275 }
276
277 xfrm_dst_ifdown(dst, dev);
278}
279
Dan Streetmana8a572a2015-10-29 09:51:16 -0400280static struct dst_ops xfrm6_dst_ops_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 .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,
Florian Westphal3c2a89d2017-07-17 13:57:20 +0200288 .gc_thresh = 32768,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289};
290
Florian Westphal37b10382017-02-07 15:00:19 +0100291static const struct xfrm_policy_afinfo xfrm6_policy_afinfo = {
Dan Streetmana8a572a2015-10-29 09:51:16 -0400292 .dst_ops = &xfrm6_dst_ops_template,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 .dst_lookup = xfrm6_dst_lookup,
Ian Morris67ba4152014-08-24 21:53:10 +0100294 .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,
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -0800297 .init_path = xfrm6_init_path,
Herbert Xu25ee3282007-12-11 09:32:34 -0800298 .fill_dst = xfrm6_fill_dst,
David S. Miller2774c132011-03-01 14:59:04 -0800299 .blackhole_route = ip6_blackhole_route,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300};
301
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800302static int __init xfrm6_policy_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Florian Westphala2817d82017-02-07 15:00:17 +0100304 return xfrm_policy_register_afinfo(&xfrm6_policy_afinfo, AF_INET6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
307static void xfrm6_policy_fini(void)
308{
309 xfrm_policy_unregister_afinfo(&xfrm6_policy_afinfo);
310}
311
David S. Millerdb717892009-08-04 20:32:16 -0700312#ifdef CONFIG_SYSCTL
Neil Hormana44a4a02009-07-27 08:22:46 +0000313static struct ctl_table xfrm6_policy_table[] = {
314 {
Neil Hormana44a4a02009-07-27 08:22:46 +0000315 .procname = "xfrm6_gc_thresh",
Ian Morris67ba4152014-08-24 21:53:10 +0100316 .data = &init_net.xfrm.xfrm6_dst_ops.gc_thresh,
317 .maxlen = sizeof(int),
318 .mode = 0644,
Neil Hormana44a4a02009-07-27 08:22:46 +0000319 .proc_handler = proc_dointvec,
320 },
321 { }
322};
323
Dan Streetmana8a572a2015-10-29 09:51:16 -0400324static int __net_init xfrm6_net_sysctl_init(struct net *net)
Michal Kubecek8d068872013-02-06 10:46:33 +0100325{
326 struct ctl_table *table;
327 struct ctl_table_header *hdr;
328
329 table = xfrm6_policy_table;
330 if (!net_eq(net, &init_net)) {
331 table = kmemdup(table, sizeof(xfrm6_policy_table), GFP_KERNEL);
332 if (!table)
333 goto err_alloc;
334
335 table[0].data = &net->xfrm.xfrm6_dst_ops.gc_thresh;
336 }
337
338 hdr = register_net_sysctl(net, "net/ipv6", table);
339 if (!hdr)
340 goto err_reg;
341
342 net->ipv6.sysctl.xfrm6_hdr = hdr;
343 return 0;
344
345err_reg:
346 if (!net_eq(net, &init_net))
347 kfree(table);
348err_alloc:
349 return -ENOMEM;
350}
351
Dan Streetmana8a572a2015-10-29 09:51:16 -0400352static void __net_exit xfrm6_net_sysctl_exit(struct net *net)
Michal Kubecek8d068872013-02-06 10:46:33 +0100353{
354 struct ctl_table *table;
355
Ian Morris63159f22015-03-29 14:00:04 +0100356 if (!net->ipv6.sysctl.xfrm6_hdr)
Michal Kubecek8d068872013-02-06 10:46:33 +0100357 return;
358
359 table = net->ipv6.sysctl.xfrm6_hdr->ctl_table_arg;
360 unregister_net_sysctl_table(net->ipv6.sysctl.xfrm6_hdr);
361 if (!net_eq(net, &init_net))
362 kfree(table);
363}
Dan Streetmana8a572a2015-10-29 09:51:16 -0400364#else /* CONFIG_SYSCTL */
Arnd Bergmann318d3cc2016-06-16 15:59:25 +0200365static inline int xfrm6_net_sysctl_init(struct net *net)
Dan Streetmana8a572a2015-10-29 09:51:16 -0400366{
367 return 0;
368}
369
Arnd Bergmann318d3cc2016-06-16 15:59:25 +0200370static inline void xfrm6_net_sysctl_exit(struct net *net)
Dan Streetmana8a572a2015-10-29 09:51:16 -0400371{
372}
373#endif
374
375static int __net_init xfrm6_net_init(struct net *net)
376{
377 int ret;
378
379 memcpy(&net->xfrm.xfrm6_dst_ops, &xfrm6_dst_ops_template,
380 sizeof(xfrm6_dst_ops_template));
381 ret = dst_entries_init(&net->xfrm.xfrm6_dst_ops);
382 if (ret)
383 return ret;
384
385 ret = xfrm6_net_sysctl_init(net);
386 if (ret)
387 dst_entries_destroy(&net->xfrm.xfrm6_dst_ops);
388
389 return ret;
390}
391
392static void __net_exit xfrm6_net_exit(struct net *net)
393{
394 xfrm6_net_sysctl_exit(net);
395 dst_entries_destroy(&net->xfrm.xfrm6_dst_ops);
396}
Michal Kubecek8d068872013-02-06 10:46:33 +0100397
398static struct pernet_operations xfrm6_net_ops = {
399 .init = xfrm6_net_init,
400 .exit = xfrm6_net_exit,
401};
Neil Hormana44a4a02009-07-27 08:22:46 +0000402
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800403int __init xfrm6_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800405 int ret;
406
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800407 ret = xfrm6_policy_init();
Dan Streetmana8a572a2015-10-29 09:51:16 -0400408 if (ret)
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800409 goto out;
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800410 ret = xfrm6_state_init();
411 if (ret)
412 goto out_policy;
413
Steffen Klassert7e14ea12014-03-14 07:28:07 +0100414 ret = xfrm6_protocol_init();
415 if (ret)
416 goto out_state;
417
Michal Kubecek8d068872013-02-06 10:46:33 +0100418 register_pernet_subsys(&xfrm6_net_ops);
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800419out:
420 return ret;
Steffen Klassert7e14ea12014-03-14 07:28:07 +0100421out_state:
422 xfrm6_state_fini();
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800423out_policy:
424 xfrm6_policy_fini();
425 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
428void xfrm6_fini(void)
429{
Michal Kubecek8d068872013-02-06 10:46:33 +0100430 unregister_pernet_subsys(&xfrm6_net_ops);
Steffen Klassert7e14ea12014-03-14 07:28:07 +0100431 xfrm6_protocol_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 xfrm6_policy_fini();
433 xfrm6_state_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}