]> Git Repo - linux.git/commit
ipv4: fix dst race in sk_dst_get()
authorEric Dumazet <[email protected]>
Tue, 24 Jun 2014 17:05:11 +0000 (10:05 -0700)
committerDavid S. Miller <[email protected]>
Thu, 26 Jun 2014 00:41:44 +0000 (17:41 -0700)
commitf88649721268999bdff09777847080a52004f691
tree909bff5bf235780ccec651d41bfc8a370ba7ff27
parent99e72a0fed07d118d329f3046ad2ec2ae9357d63
ipv4: fix dst race in sk_dst_get()

When IP route cache had been removed in linux-3.6, we broke assumption
that dst entries were all freed after rcu grace period. DST_NOCACHE
dst were supposed to be freed from dst_release(). But it appears
we want to keep such dst around, either in UDP sockets or tunnels.

In sk_dst_get() we need to make sure dst refcount is not 0
before incrementing it, or else we might end up freeing a dst
twice.

DST_NOCACHE set on a dst does not mean this dst can not be attached
to a socket or a tunnel.

Then, before actual freeing, we need to observe a rcu grace period
to make sure all other cpus can catch the fact the dst is no longer
usable.

Signed-off-by: Eric Dumazet <[email protected]>
Reported-by: Dormando <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
include/net/sock.h
net/core/dst.c
net/ipv4/ip_tunnel.c
This page took 0.055606 seconds and 4 git commands to generate.