License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 07:07:57 -07:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2005-04-16 15:20:36 -07:00
|
|
|
/*
|
|
|
|
* xfrm6_policy.c: based on xfrm4_policy.c
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Mitsuru KANDA @USAGI
|
2014-08-24 13:53:10 -07:00
|
|
|
* Kazunori MIYAZAWA @USAGI
|
|
|
|
* Kunihiro Ishiguro <kunihiro@ipinfusion.com>
|
|
|
|
* IPv6 support
|
|
|
|
* YOSHIFUJI Hideaki
|
|
|
|
* Split up af-specific portion
|
2007-02-09 07:24:49 -07:00
|
|
|
*
|
2005-04-16 15:20:36 -07:00
|
|
|
*/
|
|
|
|
|
2007-11-13 22:37:28 -07:00
|
|
|
#include <linux/err.h>
|
|
|
|
#include <linux/kernel.h>
|
2005-05-03 16:27:10 -07:00
|
|
|
#include <linux/netdevice.h>
|
|
|
|
#include <net/addrconf.h>
|
2007-11-13 22:35:32 -07:00
|
|
|
#include <net/dst.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
#include <net/xfrm.h>
|
|
|
|
#include <net/ip.h>
|
|
|
|
#include <net/ipv6.h>
|
|
|
|
#include <net/ip6_route.h>
|
2015-09-29 20:07:13 -07:00
|
|
|
#include <net/l3mdev.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2024-09-02 17:07:09 -07:00
|
|
|
static struct dst_entry *xfrm6_dst_lookup(const struct xfrm_dst_lookup_params *params)
|
2005-04-16 15:20:36 -07:00
|
|
|
{
|
2011-03-12 00:42:11 -07:00
|
|
|
struct flowi6 fl6;
|
2007-11-13 22:37:28 -07:00
|
|
|
struct dst_entry *dst;
|
|
|
|
int err;
|
|
|
|
|
2011-03-12 00:42:11 -07:00
|
|
|
memset(&fl6, 0, sizeof(fl6));
|
2024-09-02 17:07:09 -07:00
|
|
|
fl6.flowi6_l3mdev = l3mdev_master_ifindex_by_index(params->net,
|
|
|
|
params->oif);
|
|
|
|
fl6.flowi6_mark = params->mark;
|
|
|
|
memcpy(&fl6.daddr, params->daddr, sizeof(fl6.daddr));
|
|
|
|
if (params->saddr)
|
|
|
|
memcpy(&fl6.saddr, params->saddr, sizeof(fl6.saddr));
|
2007-11-13 22:37:28 -07:00
|
|
|
|
2024-09-02 17:07:10 -07:00
|
|
|
fl6.flowi4_proto = params->ipproto;
|
|
|
|
fl6.uli = params->uli;
|
|
|
|
|
2024-09-02 17:07:09 -07:00
|
|
|
dst = ip6_route_output(params->net, NULL, &fl6);
|
2007-11-13 22:37:28 -07:00
|
|
|
|
|
|
|
err = dst->error;
|
|
|
|
if (dst->error) {
|
2006-10-16 22:10:05 -07:00
|
|
|
dst_release(dst);
|
2007-11-13 22:37:28 -07:00
|
|
|
dst = ERR_PTR(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
return dst;
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
|
|
|
|
2024-09-02 17:07:09 -07:00
|
|
|
static int xfrm6_get_saddr(xfrm_address_t *saddr,
|
|
|
|
const struct xfrm_dst_lookup_params *params)
|
2006-09-19 12:57:34 -07:00
|
|
|
{
|
2007-11-13 22:37:28 -07:00
|
|
|
struct dst_entry *dst;
|
2008-08-14 15:33:21 -07:00
|
|
|
struct net_device *dev;
|
2024-06-15 08:42:31 -07:00
|
|
|
struct inet6_dev *idev;
|
2007-11-13 22:37:28 -07:00
|
|
|
|
2024-09-02 17:07:09 -07:00
|
|
|
dst = xfrm6_dst_lookup(params);
|
2007-11-13 22:37:28 -07:00
|
|
|
if (IS_ERR(dst))
|
|
|
|
return -EHOSTUNREACH;
|
|
|
|
|
2024-06-15 08:42:31 -07:00
|
|
|
idev = ip6_dst_idev(dst);
|
|
|
|
if (!idev) {
|
|
|
|
dst_release(dst);
|
|
|
|
return -EHOSTUNREACH;
|
|
|
|
}
|
|
|
|
dev = idev->dev;
|
2024-09-02 17:07:09 -07:00
|
|
|
ipv6_dev_get_saddr(dev_net(dev), dev, ¶ms->daddr->in6, 0,
|
|
|
|
&saddr->in6);
|
2007-11-13 22:37:28 -07:00
|
|
|
dst_release(dst);
|
|
|
|
return 0;
|
2006-09-19 12:57:34 -07:00
|
|
|
}
|
|
|
|
|
2010-03-01 19:51:56 -07:00
|
|
|
static int xfrm6_fill_dst(struct xfrm_dst *xdst, struct net_device *dev,
|
2011-02-22 18:48:57 -07:00
|
|
|
const struct flowi *fl)
|
2007-12-11 10:32:34 -07:00
|
|
|
{
|
2024-04-26 08:19:52 -07:00
|
|
|
struct rt6_info *rt = dst_rt6_info(xdst->route);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2007-12-11 10:32:34 -07:00
|
|
|
xdst->u.dst.dev = dev;
|
2022-06-07 21:39:55 -07:00
|
|
|
netdev_hold(dev, &xdst->u.dst.dev_tracker, GFP_ATOMIC);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2010-04-21 16:25:30 -07:00
|
|
|
xdst->u.rt6.rt6i_idev = in6_dev_get(dev);
|
2013-05-09 15:40:00 -07:00
|
|
|
if (!xdst->u.rt6.rt6i_idev) {
|
2022-06-07 21:39:55 -07:00
|
|
|
netdev_put(dev, &xdst->u.dst.dev_tracker);
|
2007-12-11 10:32:34 -07:00
|
|
|
return -ENODEV;
|
2013-05-09 15:40:00 -07:00
|
|
|
}
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2007-12-11 10:32:34 -07:00
|
|
|
/* Sheit... I remember I did this right. Apparently,
|
|
|
|
* it was magically lost, so this code needs audit */
|
|
|
|
xdst->u.rt6.rt6i_flags = rt->rt6i_flags & (RTF_ANYCAST |
|
|
|
|
RTF_LOCAL);
|
2015-05-22 20:56:01 -07:00
|
|
|
xdst->route_cookie = rt6_get_cookie(rt);
|
2007-12-11 10:32:34 -07:00
|
|
|
xdst->u.rt6.rt6i_gateway = rt->rt6i_gateway;
|
|
|
|
xdst->u.rt6.rt6i_dst = rt->rt6i_dst;
|
|
|
|
xdst->u.rt6.rt6i_src = rt->rt6i_src;
|
xfrm: reuse uncached_list to track xdsts
In early time, when freeing a xdst, it would be inserted into
dst_garbage.list first. Then if it's refcnt was still held
somewhere, later it would be put into dst_busy_list in
dst_gc_task().
When one dev was being unregistered, the dev of these dsts in
dst_busy_list would be set with loopback_dev and put this dev.
So that this dev's removal wouldn't get blocked, and avoid the
kmsg warning:
kernel:unregister_netdevice: waiting for veth0 to become \
free. Usage count = 2
However after Commit 52df157f17e5 ("xfrm: take refcnt of dst
when creating struct xfrm_dst bundle"), the xdst will not be
freed with dst gc, and this warning happens.
To fix it, we need to find these xdsts that are still held by
others when removing the dev, and free xdst's dev and set it
with loopback_dev.
But unfortunately after flow_cache for xfrm was deleted, no
list tracks them anymore. So we need to save these xdsts
somewhere to release the xdst's dev later.
To make this easier, this patch is to reuse uncached_list to
track xdsts, so that the dev refcnt can be released in the
event NETDEV_UNREGISTER process of fib_netdev_notifier.
Thanks to Florian, we could move forward this fix quickly.
Fixes: 52df157f17e5 ("xfrm: take refcnt of dst when creating struct xfrm_dst bundle")
Reported-by: Jianlin Shi <jishi@redhat.com>
Reported-by: Hangbin Liu <liuhangbin@gmail.com>
Tested-by: Eyal Birger <eyal.birger@gmail.com>
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
2018-02-14 04:06:02 -07:00
|
|
|
rt6_uncached_list_add(&xdst->u.rt6);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-17 03:29:28 -07:00
|
|
|
static void xfrm6_update_pmtu(struct dst_entry *dst, struct sock *sk,
|
2019-12-21 19:51:09 -07:00
|
|
|
struct sk_buff *skb, u32 mtu,
|
|
|
|
bool confirm_neigh)
|
2005-04-16 15:20:36 -07:00
|
|
|
{
|
|
|
|
struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
|
|
|
|
struct dst_entry *path = xdst->route;
|
|
|
|
|
2019-12-21 19:51:09 -07:00
|
|
|
path->ops->update_pmtu(path, sk, skb, mtu, confirm_neigh);
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
|
|
|
|
2012-07-17 03:29:28 -07:00
|
|
|
static void xfrm6_redirect(struct dst_entry *dst, struct sock *sk,
|
|
|
|
struct sk_buff *skb)
|
2012-07-12 00:25:15 -07:00
|
|
|
{
|
|
|
|
struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
|
|
|
|
struct dst_entry *path = xdst->route;
|
|
|
|
|
2012-07-17 03:29:28 -07:00
|
|
|
path->ops->redirect(path, sk, skb);
|
2012-07-12 00:25:15 -07:00
|
|
|
}
|
|
|
|
|
2005-05-03 16:27:10 -07:00
|
|
|
static void xfrm6_dst_destroy(struct dst_entry *dst)
|
|
|
|
{
|
|
|
|
struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
|
|
|
|
|
net: Implement read-only protection and COW'ing of metrics.
Routing metrics are now copy-on-write.
Initially a route entry points it's metrics at a read-only location.
If a routing table entry exists, it will point there. Else it will
point at the all zero metric place-holder called 'dst_default_metrics'.
The writeability state of the metrics is stored in the low bits of the
metrics pointer, we have two bits left to spare if we want to store
more states.
For the initial implementation, COW is implemented simply via kmalloc.
However future enhancements will change this to place the writable
metrics somewhere else, in order to increase sharing. Very likely
this "somewhere else" will be the inetpeer cache.
Note also that this means that metrics updates may transiently fail
if we cannot COW the metrics successfully.
But even by itself, this patch should decrease memory usage and
increase cache locality especially for routing workloads. In those
cases the read-only metric copies stay in place and never get written
to.
TCP workloads where metrics get updated, and those rare cases where
PMTU triggers occur, will take a very slight performance hit. But
that hit will be alleviated when the long-term writable metrics
move to a more sharable location.
Since the metrics storage went from a u32 array of RTAX_MAX entries to
what is essentially a pointer, some retooling of the dst_entry layout
was necessary.
Most importantly, we need to preserve the alignment of the reference
count so that it doesn't share cache lines with the read-mostly state,
as per Eric Dumazet's alignment assertion checks.
The only non-trivial bit here is the move of the 'flags' member into
the writeable cacheline. This is OK since we are always accessing the
flags around the same moment when we made a modification to the
reference count.
Signed-off-by: David S. Miller <davem@davemloft.net>
2011-01-26 21:51:05 -07:00
|
|
|
dst_destroy_metrics_generic(dst);
|
net: dst: fix missing initialization of rt_uncached
xfrm_alloc_dst() followed by xfrm4_dst_destroy(), without a
xfrm4_fill_dst() call in between, causes the following BUG:
BUG: spinlock bad magic on CPU#0, fbxhostapd/732
lock: 0x890b7668, .magic: 890b7668, .owner: <none>/-1, .owner_cpu: 0
CPU: 0 PID: 732 Comm: fbxhostapd Not tainted 6.3.0-rc6-next-20230414-00613-ge8de66369925-dirty #9
Hardware name: Marvell Kirkwood (Flattened Device Tree)
unwind_backtrace from show_stack+0x10/0x14
show_stack from dump_stack_lvl+0x28/0x30
dump_stack_lvl from do_raw_spin_lock+0x20/0x80
do_raw_spin_lock from rt_del_uncached_list+0x30/0x64
rt_del_uncached_list from xfrm4_dst_destroy+0x3c/0xbc
xfrm4_dst_destroy from dst_destroy+0x5c/0xb0
dst_destroy from rcu_process_callbacks+0xc4/0xec
rcu_process_callbacks from __do_softirq+0xb4/0x22c
__do_softirq from call_with_stack+0x1c/0x24
call_with_stack from do_softirq+0x60/0x6c
do_softirq from __local_bh_enable_ip+0xa0/0xcc
Patch "net: dst: Prevent false sharing vs. dst_entry:: __refcnt" moved
rt_uncached and rt_uncached_list fields from rtable struct to dst
struct, so they are more zeroed by memset_after(xdst, 0, u.dst) in
xfrm_alloc_dst().
Note that rt_uncached (list_head) was never properly initialized at
alloc time, but xfrm[46]_dst_destroy() is written in such a way that
it was not an issue thanks to the memset:
if (xdst->u.rt.dst.rt_uncached_list)
rt_del_uncached_list(&xdst->u.rt);
The route code does it the other way around: rt_uncached_list is
assumed to be valid IIF rt_uncached list_head is not empty:
void rt_del_uncached_list(struct rtable *rt)
{
if (!list_empty(&rt->dst.rt_uncached)) {
struct uncached_list *ul = rt->dst.rt_uncached_list;
spin_lock_bh(&ul->lock);
list_del_init(&rt->dst.rt_uncached);
spin_unlock_bh(&ul->lock);
}
}
This patch adds mandatory rt_uncached list_head initialization in
generic dst_init(), and adapt xfrm[46]_dst_destroy logic to match the
rest of the code.
Fixes: d288a162dd1c ("net: dst: Prevent false sharing vs. dst_entry:: __refcnt")
Reported-by: kernel test robot <oliver.sang@intel.com>
Link: https://lore.kernel.org/oe-lkp/202304162125.18b7bcdd-oliver.sang@intel.com
Reviewed-by: David Ahern <dsahern@kernel.org>
Reviewed-by: Eric Dumazet <edumazet@google.com>
CC: Leon Romanovsky <leon@kernel.org>
Signed-off-by: Maxime Bizon <mbizon@freebox.fr>
Link: https://lore.kernel.org/r/20230420182508.2417582-1-mbizon@freebox.fr
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
2023-04-20 11:25:08 -07:00
|
|
|
rt6_uncached_list_del(&xdst->u.rt6);
|
2023-09-15 04:20:41 -07:00
|
|
|
if (likely(xdst->u.rt6.rt6i_idev))
|
|
|
|
in6_dev_put(xdst->u.rt6.rt6i_idev);
|
2005-05-03 16:27:10 -07:00
|
|
|
xfrm_dst_destroy(xdst);
|
|
|
|
}
|
|
|
|
|
2023-08-21 01:41:04 -07:00
|
|
|
static void xfrm6_dst_ifdown(struct dst_entry *dst, struct net_device *dev)
|
2005-05-03 16:27:10 -07:00
|
|
|
{
|
|
|
|
struct xfrm_dst *xdst;
|
|
|
|
|
|
|
|
xdst = (struct xfrm_dst *)dst;
|
|
|
|
if (xdst->u.rt6.rt6i_idev->dev == dev) {
|
2007-12-07 01:38:10 -07:00
|
|
|
struct inet6_dev *loopback_idev =
|
2008-03-25 05:47:49 -07:00
|
|
|
in6_dev_get(dev_net(dev)->loopback_dev);
|
2005-05-03 16:27:10 -07:00
|
|
|
|
|
|
|
do {
|
|
|
|
in6_dev_put(xdst->u.rt6.rt6i_idev);
|
|
|
|
xdst->u.rt6.rt6i_idev = loopback_idev;
|
|
|
|
in6_dev_hold(loopback_idev);
|
2017-11-28 13:40:22 -07:00
|
|
|
xdst = (struct xfrm_dst *)xfrm_dst_child(&xdst->u.dst);
|
2005-05-03 16:27:10 -07:00
|
|
|
} while (xdst->u.dst.xfrm);
|
|
|
|
|
|
|
|
__in6_dev_put(loopback_idev);
|
|
|
|
}
|
|
|
|
|
|
|
|
xfrm_dst_ifdown(dst, dev);
|
|
|
|
}
|
|
|
|
|
2015-10-29 06:51:16 -07:00
|
|
|
static struct dst_ops xfrm6_dst_ops_template = {
|
2005-04-16 15:20:36 -07:00
|
|
|
.family = AF_INET6,
|
|
|
|
.update_pmtu = xfrm6_update_pmtu,
|
2012-07-12 00:25:15 -07:00
|
|
|
.redirect = xfrm6_redirect,
|
net: Implement read-only protection and COW'ing of metrics.
Routing metrics are now copy-on-write.
Initially a route entry points it's metrics at a read-only location.
If a routing table entry exists, it will point there. Else it will
point at the all zero metric place-holder called 'dst_default_metrics'.
The writeability state of the metrics is stored in the low bits of the
metrics pointer, we have two bits left to spare if we want to store
more states.
For the initial implementation, COW is implemented simply via kmalloc.
However future enhancements will change this to place the writable
metrics somewhere else, in order to increase sharing. Very likely
this "somewhere else" will be the inetpeer cache.
Note also that this means that metrics updates may transiently fail
if we cannot COW the metrics successfully.
But even by itself, this patch should decrease memory usage and
increase cache locality especially for routing workloads. In those
cases the read-only metric copies stay in place and never get written
to.
TCP workloads where metrics get updated, and those rare cases where
PMTU triggers occur, will take a very slight performance hit. But
that hit will be alleviated when the long-term writable metrics
move to a more sharable location.
Since the metrics storage went from a u32 array of RTAX_MAX entries to
what is essentially a pointer, some retooling of the dst_entry layout
was necessary.
Most importantly, we need to preserve the alignment of the reference
count so that it doesn't share cache lines with the read-mostly state,
as per Eric Dumazet's alignment assertion checks.
The only non-trivial bit here is the move of the 'flags' member into
the writeable cacheline. This is OK since we are always accessing the
flags around the same moment when we made a modification to the
reference count.
Signed-off-by: David S. Miller <davem@davemloft.net>
2011-01-26 21:51:05 -07:00
|
|
|
.cow_metrics = dst_cow_metrics_generic,
|
2005-05-03 16:27:10 -07:00
|
|
|
.destroy = xfrm6_dst_destroy,
|
|
|
|
.ifdown = xfrm6_dst_ifdown,
|
2007-11-13 22:43:11 -07:00
|
|
|
.local_out = __ip6_local_out,
|
2017-07-17 04:57:20 -07:00
|
|
|
.gc_thresh = 32768,
|
2005-04-16 15:20:36 -07:00
|
|
|
};
|
|
|
|
|
2017-02-07 07:00:19 -07:00
|
|
|
static const struct xfrm_policy_afinfo xfrm6_policy_afinfo = {
|
2015-10-29 06:51:16 -07:00
|
|
|
.dst_ops = &xfrm6_dst_ops_template,
|
2005-04-16 15:20:36 -07:00
|
|
|
.dst_lookup = xfrm6_dst_lookup,
|
2014-08-24 13:53:10 -07:00
|
|
|
.get_saddr = xfrm6_get_saddr,
|
2007-12-11 10:32:34 -07:00
|
|
|
.fill_dst = xfrm6_fill_dst,
|
2011-03-01 15:59:04 -07:00
|
|
|
.blackhole_route = ip6_blackhole_route,
|
2005-04-16 15:20:36 -07:00
|
|
|
};
|
|
|
|
|
2007-12-07 01:42:11 -07:00
|
|
|
static int __init xfrm6_policy_init(void)
|
2005-04-16 15:20:36 -07:00
|
|
|
{
|
2017-02-07 07:00:17 -07:00
|
|
|
return xfrm_policy_register_afinfo(&xfrm6_policy_afinfo, AF_INET6);
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void xfrm6_policy_fini(void)
|
|
|
|
{
|
|
|
|
xfrm_policy_unregister_afinfo(&xfrm6_policy_afinfo);
|
|
|
|
}
|
|
|
|
|
2009-08-04 20:32:16 -07:00
|
|
|
#ifdef CONFIG_SYSCTL
|
2009-07-27 01:22:46 -07:00
|
|
|
static struct ctl_table xfrm6_policy_table[] = {
|
|
|
|
{
|
|
|
|
.procname = "xfrm6_gc_thresh",
|
2014-08-24 13:53:10 -07:00
|
|
|
.data = &init_net.xfrm.xfrm6_dst_ops.gc_thresh,
|
|
|
|
.maxlen = sizeof(int),
|
|
|
|
.mode = 0644,
|
2009-07-27 01:22:46 -07:00
|
|
|
.proc_handler = proc_dointvec,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2015-10-29 06:51:16 -07:00
|
|
|
static int __net_init xfrm6_net_sysctl_init(struct net *net)
|
2013-02-06 02:46:33 -07:00
|
|
|
{
|
|
|
|
struct ctl_table *table;
|
|
|
|
struct ctl_table_header *hdr;
|
|
|
|
|
|
|
|
table = xfrm6_policy_table;
|
|
|
|
if (!net_eq(net, &init_net)) {
|
|
|
|
table = kmemdup(table, sizeof(xfrm6_policy_table), GFP_KERNEL);
|
|
|
|
if (!table)
|
|
|
|
goto err_alloc;
|
|
|
|
|
|
|
|
table[0].data = &net->xfrm.xfrm6_dst_ops.gc_thresh;
|
|
|
|
}
|
|
|
|
|
2023-08-09 03:50:03 -07:00
|
|
|
hdr = register_net_sysctl_sz(net, "net/ipv6", table,
|
|
|
|
ARRAY_SIZE(xfrm6_policy_table));
|
2013-02-06 02:46:33 -07:00
|
|
|
if (!hdr)
|
|
|
|
goto err_reg;
|
|
|
|
|
|
|
|
net->ipv6.sysctl.xfrm6_hdr = hdr;
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_reg:
|
|
|
|
if (!net_eq(net, &init_net))
|
|
|
|
kfree(table);
|
|
|
|
err_alloc:
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
2015-10-29 06:51:16 -07:00
|
|
|
static void __net_exit xfrm6_net_sysctl_exit(struct net *net)
|
2013-02-06 02:46:33 -07:00
|
|
|
{
|
2024-04-18 02:40:08 -07:00
|
|
|
const struct ctl_table *table;
|
2013-02-06 02:46:33 -07:00
|
|
|
|
2015-03-29 06:00:04 -07:00
|
|
|
if (!net->ipv6.sysctl.xfrm6_hdr)
|
2013-02-06 02:46:33 -07:00
|
|
|
return;
|
|
|
|
|
|
|
|
table = net->ipv6.sysctl.xfrm6_hdr->ctl_table_arg;
|
|
|
|
unregister_net_sysctl_table(net->ipv6.sysctl.xfrm6_hdr);
|
|
|
|
if (!net_eq(net, &init_net))
|
|
|
|
kfree(table);
|
|
|
|
}
|
2015-10-29 06:51:16 -07:00
|
|
|
#else /* CONFIG_SYSCTL */
|
2016-06-16 06:59:25 -07:00
|
|
|
static inline int xfrm6_net_sysctl_init(struct net *net)
|
2015-10-29 06:51:16 -07:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-06-16 06:59:25 -07:00
|
|
|
static inline void xfrm6_net_sysctl_exit(struct net *net)
|
2015-10-29 06:51:16 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static int __net_init xfrm6_net_init(struct net *net)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
memcpy(&net->xfrm.xfrm6_dst_ops, &xfrm6_dst_ops_template,
|
|
|
|
sizeof(xfrm6_dst_ops_template));
|
|
|
|
ret = dst_entries_init(&net->xfrm.xfrm6_dst_ops);
|
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
ret = xfrm6_net_sysctl_init(net);
|
|
|
|
if (ret)
|
|
|
|
dst_entries_destroy(&net->xfrm.xfrm6_dst_ops);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __net_exit xfrm6_net_exit(struct net *net)
|
|
|
|
{
|
|
|
|
xfrm6_net_sysctl_exit(net);
|
|
|
|
dst_entries_destroy(&net->xfrm.xfrm6_dst_ops);
|
|
|
|
}
|
2013-02-06 02:46:33 -07:00
|
|
|
|
|
|
|
static struct pernet_operations xfrm6_net_ops = {
|
|
|
|
.init = xfrm6_net_init,
|
|
|
|
.exit = xfrm6_net_exit,
|
|
|
|
};
|
2009-07-27 01:22:46 -07:00
|
|
|
|
2007-12-07 01:42:11 -07:00
|
|
|
int __init xfrm6_init(void)
|
2005-04-16 15:20:36 -07:00
|
|
|
{
|
2007-12-07 01:42:11 -07:00
|
|
|
int ret;
|
2012-11-15 01:00:18 -07:00
|
|
|
|
2010-01-24 23:47:53 -07:00
|
|
|
ret = xfrm6_policy_init();
|
2015-10-29 06:51:16 -07:00
|
|
|
if (ret)
|
2010-01-24 23:47:53 -07:00
|
|
|
goto out;
|
|
|
|
ret = xfrm6_state_init();
|
|
|
|
if (ret)
|
|
|
|
goto out_policy;
|
|
|
|
|
2014-03-13 23:28:07 -07:00
|
|
|
ret = xfrm6_protocol_init();
|
|
|
|
if (ret)
|
|
|
|
goto out_state;
|
|
|
|
|
2022-11-03 02:07:13 -07:00
|
|
|
ret = register_pernet_subsys(&xfrm6_net_ops);
|
|
|
|
if (ret)
|
|
|
|
goto out_protocol;
|
2024-05-27 20:29:14 -07:00
|
|
|
|
|
|
|
ret = xfrm_nat_keepalive_init(AF_INET6);
|
|
|
|
if (ret)
|
|
|
|
goto out_nat_keepalive;
|
2007-12-07 01:42:11 -07:00
|
|
|
out:
|
|
|
|
return ret;
|
2024-05-27 20:29:14 -07:00
|
|
|
out_nat_keepalive:
|
|
|
|
unregister_pernet_subsys(&xfrm6_net_ops);
|
2022-11-03 02:07:13 -07:00
|
|
|
out_protocol:
|
|
|
|
xfrm6_protocol_fini();
|
2014-03-13 23:28:07 -07:00
|
|
|
out_state:
|
|
|
|
xfrm6_state_fini();
|
2007-12-07 01:42:11 -07:00
|
|
|
out_policy:
|
|
|
|
xfrm6_policy_fini();
|
|
|
|
goto out;
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void xfrm6_fini(void)
|
|
|
|
{
|
2024-05-27 20:29:14 -07:00
|
|
|
xfrm_nat_keepalive_fini(AF_INET6);
|
2013-02-06 02:46:33 -07:00
|
|
|
unregister_pernet_subsys(&xfrm6_net_ops);
|
2014-03-13 23:28:07 -07:00
|
|
|
xfrm6_protocol_fini();
|
2005-04-16 15:20:36 -07:00
|
|
|
xfrm6_policy_fini();
|
|
|
|
xfrm6_state_fini();
|
|
|
|
}
|