2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* net/core/dst.c Protocol independent destination cache.
|
|
|
|
*
|
|
|
|
* Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/bitops.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/kernel.h>
|
2007-09-12 12:29:01 +00:00
|
|
|
#include <linux/workqueue.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/module.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 08:04:11 +00:00
|
|
|
#include <linux/slab.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/netdevice.h>
|
|
|
|
#include <linux/skbuff.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/types.h>
|
2007-09-12 11:02:17 +00:00
|
|
|
#include <net/net_namespace.h>
|
2010-02-08 23:00:39 +00:00
|
|
|
#include <linux/sched.h>
|
2011-05-20 19:50:29 +00:00
|
|
|
#include <linux/prefetch.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#include <net/dst.h>
|
|
|
|
|
2007-09-12 12:29:01 +00:00
|
|
|
/*
|
|
|
|
* Theory of operations:
|
|
|
|
* 1) We use a list, protected by a spinlock, to add
|
|
|
|
* new entries from both BH and non-BH context.
|
|
|
|
* 2) In order to keep spinlock held for a small delay,
|
|
|
|
* we use a second list where are stored long lived
|
|
|
|
* entries, that are handled by the garbage collect thread
|
|
|
|
* fired by a workqueue.
|
|
|
|
* 3) This list is guarded by a mutex,
|
|
|
|
* so that the gc_task and dst_dev_event() can be synchronized.
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
|
2007-09-12 12:29:01 +00:00
|
|
|
/*
|
|
|
|
* We want to keep lock & list close together
|
|
|
|
* to dirty as few cache lines as possible in __dst_free().
|
|
|
|
* As this is not a very strong hint, we dont force an alignment on SMP.
|
|
|
|
*/
|
|
|
|
static struct {
|
|
|
|
spinlock_t lock;
|
2010-03-29 10:41:36 +00:00
|
|
|
struct dst_entry *list;
|
2007-09-12 12:29:01 +00:00
|
|
|
unsigned long timer_inc;
|
|
|
|
unsigned long timer_expires;
|
|
|
|
} dst_garbage = {
|
|
|
|
.lock = __SPIN_LOCK_UNLOCKED(dst_garbage.lock),
|
|
|
|
.timer_inc = DST_GC_MAX,
|
|
|
|
};
|
|
|
|
static void dst_gc_task(struct work_struct *work);
|
2010-03-29 10:41:36 +00:00
|
|
|
static void ___dst_free(struct dst_entry *dst);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-09-12 12:29:01 +00:00
|
|
|
static DECLARE_DELAYED_WORK(dst_gc_work, dst_gc_task);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-09-12 12:29:01 +00:00
|
|
|
static DEFINE_MUTEX(dst_gc_mutex);
|
|
|
|
/*
|
|
|
|
* long lived entries are maintained in this list, guarded by dst_gc_mutex
|
|
|
|
*/
|
|
|
|
static struct dst_entry *dst_busy_list;
|
|
|
|
|
|
|
|
static void dst_gc_task(struct work_struct *work)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
int delayed = 0;
|
2007-09-12 12:29:01 +00:00
|
|
|
int work_performed = 0;
|
|
|
|
unsigned long expires = ~0L;
|
|
|
|
struct dst_entry *dst, *next, head;
|
|
|
|
struct dst_entry *last = &head;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-09-12 12:29:01 +00:00
|
|
|
mutex_lock(&dst_gc_mutex);
|
|
|
|
next = dst_busy_list;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2007-09-12 12:29:01 +00:00
|
|
|
loop:
|
|
|
|
while ((dst = next) != NULL) {
|
|
|
|
next = dst->next;
|
|
|
|
prefetch(&next->next);
|
2010-02-08 23:00:39 +00:00
|
|
|
cond_resched();
|
2007-09-12 12:29:01 +00:00
|
|
|
if (likely(atomic_read(&dst->__refcnt))) {
|
|
|
|
last->next = dst;
|
|
|
|
last = dst;
|
2005-04-16 22:20:36 +00:00
|
|
|
delayed++;
|
|
|
|
continue;
|
|
|
|
}
|
2007-09-12 12:29:01 +00:00
|
|
|
work_performed++;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
dst = dst_destroy(dst);
|
|
|
|
if (dst) {
|
|
|
|
/* NOHASH and still referenced. Unless it is already
|
|
|
|
* on gc list, invalidate it and add to gc list.
|
|
|
|
*
|
|
|
|
* Note: this is temporary. Actually, NOHASH dst's
|
|
|
|
* must be obsoleted when parent is obsoleted.
|
|
|
|
* But we do not have state "obsoleted, but
|
|
|
|
* referenced by parent", so it is right.
|
|
|
|
*/
|
2012-07-19 19:31:33 +00:00
|
|
|
if (dst->obsolete > 0)
|
2005-04-16 22:20:36 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
___dst_free(dst);
|
2007-09-12 12:29:01 +00:00
|
|
|
dst->next = next;
|
|
|
|
next = dst;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
2007-09-12 12:29:01 +00:00
|
|
|
|
|
|
|
spin_lock_bh(&dst_garbage.lock);
|
|
|
|
next = dst_garbage.list;
|
|
|
|
if (next) {
|
|
|
|
dst_garbage.list = NULL;
|
|
|
|
spin_unlock_bh(&dst_garbage.lock);
|
|
|
|
goto loop;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2007-09-12 12:29:01 +00:00
|
|
|
last->next = NULL;
|
|
|
|
dst_busy_list = head.next;
|
|
|
|
if (!dst_busy_list)
|
|
|
|
dst_garbage.timer_inc = DST_GC_MAX;
|
|
|
|
else {
|
|
|
|
/*
|
|
|
|
* if we freed less than 1/10 of delayed entries,
|
|
|
|
* we can sleep longer.
|
|
|
|
*/
|
|
|
|
if (work_performed <= delayed/10) {
|
|
|
|
dst_garbage.timer_expires += dst_garbage.timer_inc;
|
|
|
|
if (dst_garbage.timer_expires > DST_GC_MAX)
|
|
|
|
dst_garbage.timer_expires = DST_GC_MAX;
|
|
|
|
dst_garbage.timer_inc += DST_GC_INC;
|
|
|
|
} else {
|
|
|
|
dst_garbage.timer_inc = DST_GC_INC;
|
|
|
|
dst_garbage.timer_expires = DST_GC_MIN;
|
|
|
|
}
|
|
|
|
expires = dst_garbage.timer_expires;
|
|
|
|
/*
|
2010-03-29 10:41:36 +00:00
|
|
|
* if the next desired timer is more than 4 seconds in the
|
|
|
|
* future then round the timer to whole seconds
|
2007-09-12 12:29:01 +00:00
|
|
|
*/
|
|
|
|
if (expires > 4*HZ)
|
|
|
|
expires = round_jiffies_relative(expires);
|
|
|
|
schedule_delayed_work(&dst_gc_work, expires);
|
2005-07-31 00:47:25 +00:00
|
|
|
}
|
2007-09-12 12:29:01 +00:00
|
|
|
|
|
|
|
spin_unlock_bh(&dst_garbage.lock);
|
|
|
|
mutex_unlock(&dst_gc_mutex);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2007-11-14 05:34:06 +00:00
|
|
|
int dst_discard(struct sk_buff *skb)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
kfree_skb(skb);
|
|
|
|
return 0;
|
|
|
|
}
|
2007-11-14 05:34:06 +00:00
|
|
|
EXPORT_SYMBOL(dst_discard);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-08-07 10:55:45 +00:00
|
|
|
const u32 dst_default_metrics[RTAX_MAX + 1] = {
|
|
|
|
/* This initializer is needed to force linker to place this variable
|
|
|
|
* into const section. Otherwise it might end into bss section.
|
|
|
|
* We really want to avoid false sharing on this variable, and catch
|
|
|
|
* any writes on it.
|
|
|
|
*/
|
|
|
|
[RTAX_MAX] = 0xdeadbeef,
|
|
|
|
};
|
|
|
|
|
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-27 04:51:05 +00:00
|
|
|
|
2011-04-28 21:13:38 +00:00
|
|
|
void *dst_alloc(struct dst_ops *ops, struct net_device *dev,
|
2012-07-02 09:21:03 +00:00
|
|
|
int initial_ref, int initial_obsolete, unsigned short flags)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2010-03-29 10:41:36 +00:00
|
|
|
struct dst_entry *dst;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-10-08 06:37:34 +00:00
|
|
|
if (ops->gc && dst_entries_get_fast(ops) > ops->gc_thresh) {
|
2008-01-18 11:56:57 +00:00
|
|
|
if (ops->gc(ops))
|
2005-04-16 22:20:36 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2011-04-28 21:31:47 +00:00
|
|
|
dst = kmem_cache_alloc(ops->kmem_cachep, GFP_ATOMIC);
|
2005-04-16 22:20:36 +00:00
|
|
|
if (!dst)
|
|
|
|
return NULL;
|
2011-04-28 21:31:47 +00:00
|
|
|
dst->child = NULL;
|
2011-04-28 21:13:38 +00:00
|
|
|
dst->dev = dev;
|
|
|
|
if (dev)
|
|
|
|
dev_hold(dev);
|
2005-04-16 22:20:36 +00:00
|
|
|
dst->ops = ops;
|
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-27 04:51:05 +00:00
|
|
|
dst_init_metrics(dst, dst_default_metrics, true);
|
2011-04-28 21:31:47 +00:00
|
|
|
dst->expires = 0UL;
|
2011-04-28 21:13:38 +00:00
|
|
|
dst->path = dst;
|
ipv6: fix race condition regarding dst->expires and dst->from.
Eric Dumazet wrote:
| Some strange crashes happen in rt6_check_expired(), with access
| to random addresses.
|
| At first glance, it looks like the RTF_EXPIRES and
| stuff added in commit 1716a96101c49186b
| (ipv6: fix problem with expired dst cache)
| are racy : same dst could be manipulated at the same time
| on different cpus.
|
| At some point, our stack believes rt->dst.from contains a dst pointer,
| while its really a jiffie value (as rt->dst.expires shares the same area
| of memory)
|
| rt6_update_expires() should be fixed, or am I missing something ?
|
| CC Neil because of https://bugzilla.redhat.com/show_bug.cgi?id=892060
Because we do not have any locks for dst_entry, we cannot change
essential structure in the entry; e.g., we cannot change reference
to other entity.
To fix this issue, split 'from' and 'expires' field in dst_entry
out of union. Once it is 'from' is assigned in the constructor,
keep the reference until the very last stage of the life time of
the object.
Of course, it is unsafe to change 'from', so make rt6_set_from simple
just for fresh entries.
Reported-by: Eric Dumazet <eric.dumazet@gmail.com>
Reported-by: Neil Horman <nhorman@tuxdriver.com>
CC: Gao Feng <gaofeng@cn.fujitsu.com>
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Reviewed-by: Eric Dumazet <edumazet@google.com>
Reported-by: Steinar H. Gunderson <sesse@google.com>
Reviewed-by: Neil Horman <nhorman@tuxdriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2013-02-20 00:29:08 +00:00
|
|
|
dst->from = NULL;
|
2011-04-28 21:31:47 +00:00
|
|
|
#ifdef CONFIG_XFRM
|
|
|
|
dst->xfrm = NULL;
|
|
|
|
#endif
|
2011-04-28 21:13:38 +00:00
|
|
|
dst->input = dst_discard;
|
|
|
|
dst->output = dst_discard;
|
2011-04-28 21:31:47 +00:00
|
|
|
dst->error = 0;
|
2011-04-28 21:13:38 +00:00
|
|
|
dst->obsolete = initial_obsolete;
|
2011-04-28 21:31:47 +00:00
|
|
|
dst->header_len = 0;
|
|
|
|
dst->trailer_len = 0;
|
|
|
|
#ifdef CONFIG_IP_ROUTE_CLASSID
|
|
|
|
dst->tclassid = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|
2011-04-28 21:13:38 +00:00
|
|
|
atomic_set(&dst->__refcnt, initial_ref);
|
2011-04-28 21:31:47 +00:00
|
|
|
dst->__use = 0;
|
2011-04-28 21:13:38 +00:00
|
|
|
dst->lastuse = jiffies;
|
|
|
|
dst->flags = flags;
|
2012-07-02 09:21:03 +00:00
|
|
|
dst->pending_confirm = 0;
|
2011-04-28 21:31:47 +00:00
|
|
|
dst->next = NULL;
|
2011-06-24 22:25:00 +00:00
|
|
|
if (!(flags & DST_NOCOUNT))
|
|
|
|
dst_entries_add(ops, 1);
|
2005-04-16 22:20:36 +00:00
|
|
|
return dst;
|
|
|
|
}
|
2010-03-29 10:41:36 +00:00
|
|
|
EXPORT_SYMBOL(dst_alloc);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-03-29 10:41:36 +00:00
|
|
|
static void ___dst_free(struct dst_entry *dst)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
/* The first case (dev==NULL) is required, when
|
|
|
|
protocol module is unloaded.
|
|
|
|
*/
|
2010-03-29 10:41:36 +00:00
|
|
|
if (dst->dev == NULL || !(dst->dev->flags&IFF_UP))
|
2007-06-05 07:06:57 +00:00
|
|
|
dst->input = dst->output = dst_discard;
|
2012-07-19 19:31:33 +00:00
|
|
|
dst->obsolete = DST_OBSOLETE_DEAD;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2010-03-29 10:41:36 +00:00
|
|
|
void __dst_free(struct dst_entry *dst)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2007-09-12 12:29:01 +00:00
|
|
|
spin_lock_bh(&dst_garbage.lock);
|
2005-04-16 22:20:36 +00:00
|
|
|
___dst_free(dst);
|
2007-09-12 12:29:01 +00:00
|
|
|
dst->next = dst_garbage.list;
|
|
|
|
dst_garbage.list = dst;
|
|
|
|
if (dst_garbage.timer_inc > DST_GC_INC) {
|
|
|
|
dst_garbage.timer_inc = DST_GC_INC;
|
|
|
|
dst_garbage.timer_expires = DST_GC_MIN;
|
2012-08-03 17:30:47 +00:00
|
|
|
mod_delayed_work(system_wq, &dst_gc_work,
|
|
|
|
dst_garbage.timer_expires);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2007-09-12 12:29:01 +00:00
|
|
|
spin_unlock_bh(&dst_garbage.lock);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2010-07-19 23:51:38 +00:00
|
|
|
EXPORT_SYMBOL(__dst_free);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
struct dst_entry *dst_destroy(struct dst_entry * dst)
|
|
|
|
{
|
|
|
|
struct dst_entry *child;
|
|
|
|
|
|
|
|
smp_rmb();
|
|
|
|
|
|
|
|
again:
|
|
|
|
child = dst->child;
|
|
|
|
|
2011-06-24 22:25:00 +00:00
|
|
|
if (!(dst->flags & DST_NOCOUNT))
|
|
|
|
dst_entries_add(dst->ops, -1);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (dst->ops->destroy)
|
|
|
|
dst->ops->destroy(dst);
|
|
|
|
if (dst->dev)
|
|
|
|
dev_put(dst->dev);
|
|
|
|
kmem_cache_free(dst->ops->kmem_cachep, dst);
|
|
|
|
|
|
|
|
dst = child;
|
|
|
|
if (dst) {
|
2005-04-16 22:24:10 +00:00
|
|
|
int nohash = dst->flags & DST_NOHASH;
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
if (atomic_dec_and_test(&dst->__refcnt)) {
|
|
|
|
/* We were real parent of this dst, so kill child. */
|
2005-04-16 22:24:10 +00:00
|
|
|
if (nohash)
|
2005-04-16 22:20:36 +00:00
|
|
|
goto again;
|
|
|
|
} else {
|
|
|
|
/* Child is still referenced, return it for freeing. */
|
2005-04-16 22:24:10 +00:00
|
|
|
if (nohash)
|
2005-04-16 22:20:36 +00:00
|
|
|
return dst;
|
|
|
|
/* Child is still in his hash table */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2010-03-29 10:41:36 +00:00
|
|
|
EXPORT_SYMBOL(dst_destroy);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2008-03-28 00:53:31 +00:00
|
|
|
void dst_release(struct dst_entry *dst)
|
|
|
|
{
|
|
|
|
if (dst) {
|
2010-03-29 10:41:36 +00:00
|
|
|
int newrefcnt;
|
2008-11-14 08:53:54 +00:00
|
|
|
|
2010-03-29 10:41:36 +00:00
|
|
|
newrefcnt = atomic_dec_return(&dst->__refcnt);
|
|
|
|
WARN_ON(newrefcnt < 0);
|
2010-10-15 05:44:11 +00:00
|
|
|
if (unlikely(dst->flags & DST_NOCACHE) && !newrefcnt) {
|
|
|
|
dst = dst_destroy(dst);
|
|
|
|
if (dst)
|
|
|
|
__dst_free(dst);
|
|
|
|
}
|
2008-03-28 00:53:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(dst_release);
|
|
|
|
|
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-27 04:51:05 +00:00
|
|
|
u32 *dst_cow_metrics_generic(struct dst_entry *dst, unsigned long old)
|
|
|
|
{
|
|
|
|
u32 *p = kmalloc(sizeof(u32) * RTAX_MAX, GFP_ATOMIC);
|
|
|
|
|
|
|
|
if (p) {
|
|
|
|
u32 *old_p = __DST_METRICS_PTR(old);
|
|
|
|
unsigned long prev, new;
|
|
|
|
|
|
|
|
memcpy(p, old_p, sizeof(u32) * RTAX_MAX);
|
|
|
|
|
|
|
|
new = (unsigned long) p;
|
|
|
|
prev = cmpxchg(&dst->_metrics, old, new);
|
|
|
|
|
|
|
|
if (prev != old) {
|
|
|
|
kfree(p);
|
|
|
|
p = __DST_METRICS_PTR(prev);
|
|
|
|
if (prev & DST_METRICS_READ_ONLY)
|
|
|
|
p = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(dst_cow_metrics_generic);
|
|
|
|
|
|
|
|
/* Caller asserts that dst_metrics_read_only(dst) is false. */
|
|
|
|
void __dst_destroy_metrics_generic(struct dst_entry *dst, unsigned long old)
|
|
|
|
{
|
|
|
|
unsigned long prev, new;
|
|
|
|
|
2011-05-24 17:29:50 +00:00
|
|
|
new = ((unsigned long) dst_default_metrics) | DST_METRICS_READ_ONLY;
|
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-27 04:51:05 +00:00
|
|
|
prev = cmpxchg(&dst->_metrics, old, new);
|
|
|
|
if (prev == old)
|
|
|
|
kfree(__DST_METRICS_PTR(old));
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(__dst_destroy_metrics_generic);
|
|
|
|
|
2010-10-15 05:44:11 +00:00
|
|
|
/**
|
2013-03-21 09:57:58 +00:00
|
|
|
* __skb_dst_set_noref - sets skb dst, without a reference
|
2010-10-15 05:44:11 +00:00
|
|
|
* @skb: buffer
|
|
|
|
* @dst: dst entry
|
2013-03-21 09:57:58 +00:00
|
|
|
* @force: if force is set, use noref version even for DST_NOCACHE entries
|
2010-10-15 05:44:11 +00:00
|
|
|
*
|
|
|
|
* Sets skb dst, assuming a reference was not taken on dst
|
|
|
|
* skb_dst_drop() should not dst_release() this dst
|
|
|
|
*/
|
2013-03-21 09:57:58 +00:00
|
|
|
void __skb_dst_set_noref(struct sk_buff *skb, struct dst_entry *dst, bool force)
|
2010-10-15 05:44:11 +00:00
|
|
|
{
|
|
|
|
WARN_ON(!rcu_read_lock_held() && !rcu_read_lock_bh_held());
|
|
|
|
/* If dst not in cache, we must take a reference, because
|
|
|
|
* dst_release() will destroy dst as soon as its refcount becomes zero
|
|
|
|
*/
|
2013-03-21 09:57:58 +00:00
|
|
|
if (unlikely((dst->flags & DST_NOCACHE) && !force)) {
|
2010-10-15 05:44:11 +00:00
|
|
|
dst_hold(dst);
|
|
|
|
skb_dst_set(skb, dst);
|
|
|
|
} else {
|
|
|
|
skb->_skb_refdst = (unsigned long)dst | SKB_DST_NOREF;
|
|
|
|
}
|
|
|
|
}
|
2013-03-21 09:57:58 +00:00
|
|
|
EXPORT_SYMBOL(__skb_dst_set_noref);
|
2010-10-15 05:44:11 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/* Dirty hack. We did it in 2.2 (in __dst_free),
|
|
|
|
* we have _very_ good reasons not to repeat
|
|
|
|
* this mistake in 2.3, but we have no choice
|
|
|
|
* now. _It_ _is_ _explicit_ _deliberate_
|
|
|
|
* _race_ _condition_.
|
|
|
|
*
|
|
|
|
* Commented and originally written by Alexey.
|
|
|
|
*/
|
2010-04-12 07:38:05 +00:00
|
|
|
static void dst_ifdown(struct dst_entry *dst, struct net_device *dev,
|
|
|
|
int unregister)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
if (dst->ops->ifdown)
|
|
|
|
dst->ops->ifdown(dst, dev, unregister);
|
|
|
|
|
|
|
|
if (dev != dst->dev)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!unregister) {
|
2007-06-05 07:06:57 +00:00
|
|
|
dst->input = dst->output = dst_discard;
|
2005-04-16 22:20:36 +00:00
|
|
|
} else {
|
2008-03-25 12:47:49 +00:00
|
|
|
dst->dev = dev_net(dst->dev)->loopback_dev;
|
2007-09-26 02:16:28 +00:00
|
|
|
dev_hold(dst->dev);
|
2005-04-16 22:20:36 +00:00
|
|
|
dev_put(dev);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-29 10:41:36 +00:00
|
|
|
static int dst_dev_event(struct notifier_block *this, unsigned long event,
|
|
|
|
void *ptr)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
struct net_device *dev = ptr;
|
2007-09-12 12:29:01 +00:00
|
|
|
struct dst_entry *dst, *last = NULL;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
switch (event) {
|
2012-08-22 17:19:46 +00:00
|
|
|
case NETDEV_UNREGISTER_FINAL:
|
2005-04-16 22:20:36 +00:00
|
|
|
case NETDEV_DOWN:
|
2007-09-12 12:29:01 +00:00
|
|
|
mutex_lock(&dst_gc_mutex);
|
|
|
|
for (dst = dst_busy_list; dst; dst = dst->next) {
|
|
|
|
last = dst;
|
|
|
|
dst_ifdown(dst, dev, event != NETDEV_DOWN);
|
|
|
|
}
|
|
|
|
|
|
|
|
spin_lock_bh(&dst_garbage.lock);
|
|
|
|
dst = dst_garbage.list;
|
|
|
|
dst_garbage.list = NULL;
|
|
|
|
spin_unlock_bh(&dst_garbage.lock);
|
|
|
|
|
|
|
|
if (last)
|
|
|
|
last->next = dst;
|
|
|
|
else
|
|
|
|
dst_busy_list = dst;
|
2010-03-29 10:41:36 +00:00
|
|
|
for (; dst; dst = dst->next)
|
2005-04-16 22:20:36 +00:00
|
|
|
dst_ifdown(dst, dev, event != NETDEV_DOWN);
|
2007-09-12 12:29:01 +00:00
|
|
|
mutex_unlock(&dst_gc_mutex);
|
2005-04-16 22:20:36 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return NOTIFY_DONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct notifier_block dst_dev_notifier = {
|
|
|
|
.notifier_call = dst_dev_event,
|
2010-11-09 19:46:33 +00:00
|
|
|
.priority = -10, /* must be called after other network notifiers */
|
2005-04-16 22:20:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void __init dst_init(void)
|
|
|
|
{
|
|
|
|
register_netdevice_notifier(&dst_dev_notifier);
|
|
|
|
}
|