blob: d82f42799da5edaee29803494fbcca6af7475f60 [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,
Lorenzo Colitti34e23de2017-08-11 02:11:33 +090032 const xfrm_address_t *daddr,
33 u32 mark)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034{
David S. Miller7e1dc7b2011-03-12 02:42:11 -050035 struct flowi6 fl6;
Herbert Xu66cdb3c2007-11-13 21:37:28 -080036 struct dst_entry *dst;
37 int err;
38
David S. Miller7e1dc7b2011-03-12 02:42:11 -050039 memset(&fl6, 0, sizeof(fl6));
David Ahern11d7a0b2016-08-14 19:52:56 -070040 fl6.flowi6_oif = l3mdev_master_ifindex_by_index(net, oif);
David Ahern41489872015-10-05 08:32:51 -060041 fl6.flowi6_flags = FLOWI_FLAG_SKIP_NH_OIF;
Lorenzo Colitti34e23de2017-08-11 02:11:33 +090042 fl6.flowi6_mark = mark;
David S. Miller7e1dc7b2011-03-12 02:42:11 -050043 memcpy(&fl6.daddr, daddr, sizeof(fl6.daddr));
Herbert Xu66cdb3c2007-11-13 21:37:28 -080044 if (saddr)
David S. Miller7e1dc7b2011-03-12 02:42:11 -050045 memcpy(&fl6.saddr, saddr, sizeof(fl6.saddr));
Herbert Xu66cdb3c2007-11-13 21:37:28 -080046
David S. Miller4c9483b2011-03-12 16:22:43 -050047 dst = ip6_route_output(net, NULL, &fl6);
Herbert Xu66cdb3c2007-11-13 21:37:28 -080048
49 err = dst->error;
50 if (dst->error) {
Ville Nuorvala42513202006-10-16 22:10:05 -070051 dst_release(dst);
Herbert Xu66cdb3c2007-11-13 21:37:28 -080052 dst = ERR_PTR(err);
53 }
54
55 return dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056}
57
David Ahern42a7b322015-08-10 16:58:11 -060058static int xfrm6_get_saddr(struct net *net, int oif,
Lorenzo Colitti34e23de2017-08-11 02:11:33 +090059 xfrm_address_t *saddr, xfrm_address_t *daddr,
60 u32 mark)
Patrick McHardya1e59ab2006-09-19 12:57:34 -070061{
Herbert Xu66cdb3c2007-11-13 21:37:28 -080062 struct dst_entry *dst;
Brian Haley191cd582008-08-14 15:33:21 -070063 struct net_device *dev;
Patrick McHardya1e59ab2006-09-19 12:57:34 -070064
Lorenzo Colitti34e23de2017-08-11 02:11:33 +090065 dst = xfrm6_dst_lookup(net, 0, oif, NULL, daddr, mark);
Herbert Xu66cdb3c2007-11-13 21:37:28 -080066 if (IS_ERR(dst))
67 return -EHOSTUNREACH;
68
Brian Haley191cd582008-08-14 15:33:21 -070069 dev = ip6_dst_idev(dst)->dev;
Jiri Benc15e318b2015-03-29 16:59:24 +020070 ipv6_dev_get_saddr(dev_net(dev), dev, &daddr->in6, 0, &saddr->in6);
Herbert Xu66cdb3c2007-11-13 21:37:28 -080071 dst_release(dst);
72 return 0;
Patrick McHardya1e59ab2006-09-19 12:57:34 -070073}
74
David S. Miller05d84022011-02-22 17:47:10 -080075static int xfrm6_get_tos(const struct flowi *fl)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 return 0;
Herbert Xu25ee3282007-12-11 09:32:34 -080078}
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -080080static int xfrm6_init_path(struct xfrm_dst *path, struct dst_entry *dst,
81 int nfheader_len)
82{
83 if (dst->ops->family == AF_INET6) {
Ian Morris67ba4152014-08-24 21:53:10 +010084 struct rt6_info *rt = (struct rt6_info *)dst;
Martin KaFai Laub197df42015-05-22 20:56:01 -070085 path->path_cookie = rt6_get_cookie(rt);
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -080086 }
87
88 path->u.rt6.rt6i_nfheader_len = nfheader_len;
89
90 return 0;
91}
92
Herbert Xu87c1e122010-03-02 02:51:56 +000093static int xfrm6_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
David S. Miller0c7b3ee2011-02-22 17:48:57 -080094 const struct flowi *fl)
Herbert Xu25ee3282007-12-11 09:32:34 -080095{
Ian Morris67ba4152014-08-24 21:53:10 +010096 struct rt6_info *rt = (struct rt6_info *)xdst->route;
Herbert Xu25ee3282007-12-11 09:32:34 -080097
98 xdst->u.dst.dev = dev;
99 dev_hold(dev);
100
Nicolas Dichtelbc8e4b92010-04-21 16:25:30 -0700101 xdst->u.rt6.rt6i_idev = in6_dev_get(dev);
Cong Wang84c4a9d2013-05-09 22:40:00 +0000102 if (!xdst->u.rt6.rt6i_idev) {
103 dev_put(dev);
Herbert Xu25ee3282007-12-11 09:32:34 -0800104 return -ENODEV;
Cong Wang84c4a9d2013-05-09 22:40:00 +0000105 }
Herbert Xu25ee3282007-12-11 09:32:34 -0800106
107 /* Sheit... I remember I did this right. Apparently,
108 * it was magically lost, so this code needs audit */
109 xdst->u.rt6.rt6i_flags = rt->rt6i_flags & (RTF_ANYCAST |
110 RTF_LOCAL);
111 xdst->u.rt6.rt6i_metric = rt->rt6i_metric;
112 xdst->u.rt6.rt6i_node = rt->rt6i_node;
Martin KaFai Laub197df42015-05-22 20:56:01 -0700113 xdst->route_cookie = rt6_get_cookie(rt);
Herbert Xu25ee3282007-12-11 09:32:34 -0800114 xdst->u.rt6.rt6i_gateway = rt->rt6i_gateway;
115 xdst->u.rt6.rt6i_dst = rt->rt6i_dst;
116 xdst->u.rt6.rt6i_src = rt->rt6i_src;
117
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 Dumazetc8197f92018-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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 case NEXTHDR_ROUTING:
158 case NEXTHDR_HOP:
159 case NEXTHDR_DEST:
160 offset += ipv6_optlen(exthdr);
161 nexthdr = exthdr->nexthdr;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700162 exthdr = (struct ipv6_opt_hdr *)(nh + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 break;
164
165 case IPPROTO_UDP:
Gerrit Renkerba4e58e2006-11-27 11:10:57 -0800166 case IPPROTO_UDPLITE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 case IPPROTO_TCP:
168 case IPPROTO_SCTP:
Patrick McHardy9e999992005-12-19 14:03:46 -0800169 case IPPROTO_DCCP:
Wei Yongjun59cae002009-07-02 16:59:49 +0000170 if (!onlyproto && (nh + offset + 4 < skb->data ||
171 pskb_may_pull(skb, nh + offset + 4 - skb->data))) {
Li RongQing789f2022014-10-22 17:09:53 +0800172 __be16 *ports;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Li RongQing789f2022014-10-22 17:09:53 +0800174 nh = skb_network_header(skb);
175 ports = (__be16 *)(nh + offset);
David S. Miller1958b852011-03-12 16:36:19 -0500176 fl6->fl6_sport = ports[!!reverse];
177 fl6->fl6_dport = ports[!reverse];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 }
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500179 fl6->flowi6_proto = nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 return;
181
182 case IPPROTO_ICMPV6:
Mathias Krause04a6b8b2015-09-11 09:57:20 +0200183 if (!onlyproto && (nh + offset + 2 < skb->data ||
184 pskb_may_pull(skb, nh + offset + 2 - skb->data))) {
Li RongQing789f2022014-10-22 17:09:53 +0800185 u8 *icmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Li RongQing789f2022014-10-22 17:09:53 +0800187 nh = skb_network_header(skb);
188 icmp = (u8 *)(nh + offset);
David S. Miller1958b852011-03-12 16:36:19 -0500189 fl6->fl6_icmp_type = icmp[0];
190 fl6->fl6_icmp_code = icmp[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500192 fl6->flowi6_proto = nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 return;
194
Amerigo Wang07a93622012-10-29 16:23:10 +0000195#if IS_ENABLED(CONFIG_IPV6_MIP6)
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700196 case IPPROTO_MH:
Hajime Tazakicd3bafc2015-02-04 23:31:10 +0900197 offset += ipv6_optlen(exthdr);
Mathias Krause04a6b8b2015-09-11 09:57:20 +0200198 if (!onlyproto && (nh + offset + 3 < skb->data ||
199 pskb_may_pull(skb, nh + offset + 3 - skb->data))) {
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700200 struct ip6_mh *mh;
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700201
Li RongQing789f2022014-10-22 17:09:53 +0800202 nh = skb_network_header(skb);
203 mh = (struct ip6_mh *)(nh + offset);
David S. Miller1958b852011-03-12 16:36:19 -0500204 fl6->fl6_mh_type = mh->ip6mh_type;
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700205 }
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500206 fl6->flowi6_proto = nexthdr;
Masahide NAKAMURA2ce42722006-08-23 20:39:03 -0700207 return;
208#endif
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 /* XXX Why are there these headers? */
211 case IPPROTO_AH:
212 case IPPROTO_ESP:
213 case IPPROTO_COMP:
214 default:
David S. Miller1958b852011-03-12 16:36:19 -0500215 fl6->fl6_ipsec_spi = 0;
David S. Miller7e1dc7b2011-03-12 02:42:11 -0500216 fl6->flowi6_proto = nexthdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 return;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 }
220}
221
Daniel Lezcano569d3642008-01-18 03:56:57 -0800222static inline int xfrm6_garbage_collect(struct dst_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800224 struct net *net = container_of(ops, struct net, xfrm.xfrm6_dst_ops);
225
226 xfrm6_policy_afinfo.garbage_collect(net);
Eric Dumazetfc66f952010-10-08 06:37:34 +0000227 return dst_entries_get_fast(ops) > ops->gc_thresh * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
229
David S. Miller6700c272012-07-17 03:29:28 -0700230static void xfrm6_update_pmtu(struct dst_entry *dst, struct sock *sk,
231 struct sk_buff *skb, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
233 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
234 struct dst_entry *path = xdst->route;
235
David S. Miller6700c272012-07-17 03:29:28 -0700236 path->ops->update_pmtu(path, sk, skb, mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
David S. Miller6700c272012-07-17 03:29:28 -0700239static void xfrm6_redirect(struct dst_entry *dst, struct sock *sk,
240 struct sk_buff *skb)
David S. Millerec18d9a2012-07-12 00:25:15 -0700241{
242 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
243 struct dst_entry *path = xdst->route;
244
David S. Miller6700c272012-07-17 03:29:28 -0700245 path->ops->redirect(path, sk, skb);
David S. Millerec18d9a2012-07-12 00:25:15 -0700246}
247
Herbert Xuaabc9762005-05-03 16:27:10 -0700248static void xfrm6_dst_destroy(struct dst_entry *dst)
249{
250 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
251
252 if (likely(xdst->u.rt6.rt6i_idev))
253 in6_dev_put(xdst->u.rt6.rt6i_idev);
David S. Miller62fa8a82011-01-26 20:51:05 -0800254 dst_destroy_metrics_generic(dst);
Herbert Xuaabc9762005-05-03 16:27:10 -0700255 xfrm_dst_destroy(xdst);
256}
257
258static void xfrm6_dst_ifdown(struct dst_entry *dst, struct net_device *dev,
259 int unregister)
260{
261 struct xfrm_dst *xdst;
262
263 if (!unregister)
264 return;
265
266 xdst = (struct xfrm_dst *)dst;
267 if (xdst->u.rt6.rt6i_idev->dev == dev) {
Denis V. Lunev5a3e55d2007-12-07 00:38:10 -0800268 struct inet6_dev *loopback_idev =
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900269 in6_dev_get(dev_net(dev)->loopback_dev);
Herbert Xuaabc9762005-05-03 16:27:10 -0700270 BUG_ON(!loopback_idev);
271
272 do {
273 in6_dev_put(xdst->u.rt6.rt6i_idev);
274 xdst->u.rt6.rt6i_idev = loopback_idev;
275 in6_dev_hold(loopback_idev);
276 xdst = (struct xfrm_dst *)xdst->u.dst.child;
277 } while (xdst->u.dst.xfrm);
278
279 __in6_dev_put(loopback_idev);
280 }
281
282 xfrm_dst_ifdown(dst, dev);
283}
284
Dan Streetmana8a572a2015-10-29 09:51:16 -0400285static struct dst_ops xfrm6_dst_ops_template = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 .family = AF_INET6,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 .gc = xfrm6_garbage_collect,
288 .update_pmtu = xfrm6_update_pmtu,
David S. Millerec18d9a2012-07-12 00:25:15 -0700289 .redirect = xfrm6_redirect,
David S. Miller62fa8a82011-01-26 20:51:05 -0800290 .cow_metrics = dst_cow_metrics_generic,
Herbert Xuaabc9762005-05-03 16:27:10 -0700291 .destroy = xfrm6_dst_destroy,
292 .ifdown = xfrm6_dst_ifdown,
Herbert Xu862b82c2007-11-13 21:43:11 -0800293 .local_out = __ip6_local_out,
Steffen Klassertc3865782015-09-29 11:40:49 +0200294 .gc_thresh = INT_MAX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295};
296
297static struct xfrm_policy_afinfo xfrm6_policy_afinfo = {
298 .family = AF_INET6,
Dan Streetmana8a572a2015-10-29 09:51:16 -0400299 .dst_ops = &xfrm6_dst_ops_template,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 .dst_lookup = xfrm6_dst_lookup,
Ian Morris67ba4152014-08-24 21:53:10 +0100301 .get_saddr = xfrm6_get_saddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 .decode_session = _decode_session6,
Herbert Xu25ee3282007-12-11 09:32:34 -0800303 .get_tos = xfrm6_get_tos,
Masahide NAKAMURAa1b05142007-12-20 20:41:12 -0800304 .init_path = xfrm6_init_path,
Herbert Xu25ee3282007-12-11 09:32:34 -0800305 .fill_dst = xfrm6_fill_dst,
David S. Miller2774c132011-03-01 14:59:04 -0800306 .blackhole_route = ip6_blackhole_route,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307};
308
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800309static int __init xfrm6_policy_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800311 return xfrm_policy_register_afinfo(&xfrm6_policy_afinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
314static void xfrm6_policy_fini(void)
315{
316 xfrm_policy_unregister_afinfo(&xfrm6_policy_afinfo);
317}
318
David S. Millerdb717892009-08-04 20:32:16 -0700319#ifdef CONFIG_SYSCTL
Neil Hormana44a4a02009-07-27 08:22:46 +0000320static struct ctl_table xfrm6_policy_table[] = {
321 {
Neil Hormana44a4a02009-07-27 08:22:46 +0000322 .procname = "xfrm6_gc_thresh",
Ian Morris67ba4152014-08-24 21:53:10 +0100323 .data = &init_net.xfrm.xfrm6_dst_ops.gc_thresh,
324 .maxlen = sizeof(int),
325 .mode = 0644,
Neil Hormana44a4a02009-07-27 08:22:46 +0000326 .proc_handler = proc_dointvec,
327 },
328 { }
329};
330
Dan Streetmana8a572a2015-10-29 09:51:16 -0400331static int __net_init xfrm6_net_sysctl_init(struct net *net)
Michal Kubecek8d068872013-02-06 10:46:33 +0100332{
333 struct ctl_table *table;
334 struct ctl_table_header *hdr;
335
336 table = xfrm6_policy_table;
337 if (!net_eq(net, &init_net)) {
338 table = kmemdup(table, sizeof(xfrm6_policy_table), GFP_KERNEL);
339 if (!table)
340 goto err_alloc;
341
342 table[0].data = &net->xfrm.xfrm6_dst_ops.gc_thresh;
343 }
344
345 hdr = register_net_sysctl(net, "net/ipv6", table);
346 if (!hdr)
347 goto err_reg;
348
349 net->ipv6.sysctl.xfrm6_hdr = hdr;
350 return 0;
351
352err_reg:
353 if (!net_eq(net, &init_net))
354 kfree(table);
355err_alloc:
356 return -ENOMEM;
357}
358
Dan Streetmana8a572a2015-10-29 09:51:16 -0400359static void __net_exit xfrm6_net_sysctl_exit(struct net *net)
Michal Kubecek8d068872013-02-06 10:46:33 +0100360{
361 struct ctl_table *table;
362
Ian Morris63159f22015-03-29 14:00:04 +0100363 if (!net->ipv6.sysctl.xfrm6_hdr)
Michal Kubecek8d068872013-02-06 10:46:33 +0100364 return;
365
366 table = net->ipv6.sysctl.xfrm6_hdr->ctl_table_arg;
367 unregister_net_sysctl_table(net->ipv6.sysctl.xfrm6_hdr);
368 if (!net_eq(net, &init_net))
369 kfree(table);
370}
Dan Streetmana8a572a2015-10-29 09:51:16 -0400371#else /* CONFIG_SYSCTL */
Arnd Bergmann318d3cc2016-06-16 15:59:25 +0200372static inline int xfrm6_net_sysctl_init(struct net *net)
Dan Streetmana8a572a2015-10-29 09:51:16 -0400373{
374 return 0;
375}
376
Arnd Bergmann318d3cc2016-06-16 15:59:25 +0200377static inline void xfrm6_net_sysctl_exit(struct net *net)
Dan Streetmana8a572a2015-10-29 09:51:16 -0400378{
379}
380#endif
381
382static int __net_init xfrm6_net_init(struct net *net)
383{
384 int ret;
385
386 memcpy(&net->xfrm.xfrm6_dst_ops, &xfrm6_dst_ops_template,
387 sizeof(xfrm6_dst_ops_template));
388 ret = dst_entries_init(&net->xfrm.xfrm6_dst_ops);
389 if (ret)
390 return ret;
391
392 ret = xfrm6_net_sysctl_init(net);
393 if (ret)
394 dst_entries_destroy(&net->xfrm.xfrm6_dst_ops);
395
396 return ret;
397}
398
399static void __net_exit xfrm6_net_exit(struct net *net)
400{
401 xfrm6_net_sysctl_exit(net);
402 dst_entries_destroy(&net->xfrm.xfrm6_dst_ops);
403}
Michal Kubecek8d068872013-02-06 10:46:33 +0100404
405static struct pernet_operations xfrm6_net_ops = {
406 .init = xfrm6_net_init,
407 .exit = xfrm6_net_exit,
408};
Neil Hormana44a4a02009-07-27 08:22:46 +0000409
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800410int __init xfrm6_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800412 int ret;
413
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800414 ret = xfrm6_policy_init();
Dan Streetmana8a572a2015-10-29 09:51:16 -0400415 if (ret)
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800416 goto out;
Alexey Dobriyand7c75442010-01-24 22:47:53 -0800417 ret = xfrm6_state_init();
418 if (ret)
419 goto out_policy;
420
Steffen Klassert7e14ea12014-03-14 07:28:07 +0100421 ret = xfrm6_protocol_init();
422 if (ret)
423 goto out_state;
424
Michal Kubecek8d068872013-02-06 10:46:33 +0100425 register_pernet_subsys(&xfrm6_net_ops);
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800426out:
427 return ret;
Steffen Klassert7e14ea12014-03-14 07:28:07 +0100428out_state:
429 xfrm6_state_fini();
Daniel Lezcano0013cab2007-12-07 00:42:11 -0800430out_policy:
431 xfrm6_policy_fini();
432 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
435void xfrm6_fini(void)
436{
Michal Kubecek8d068872013-02-06 10:46:33 +0100437 unregister_pernet_subsys(&xfrm6_net_ops);
Steffen Klassert7e14ea12014-03-14 07:28:07 +0100438 xfrm6_protocol_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 xfrm6_policy_fini();
440 xfrm6_state_fini();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}