Eric Dumazet f886497212 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 <edumazet@google.com>
Reported-by: Dormando <dormando@rydia.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
2014-06-25 17:41:44 -07:00
..
2013-12-28 17:02:46 -05:00
2014-04-30 13:31:25 -04:00
2012-07-19 10:43:03 -07:00
2013-11-07 19:28:58 -05:00
2014-06-04 22:46:38 -07:00
2013-01-27 22:46:33 -05:00
2014-04-18 14:20:48 +02:00
2014-06-02 11:00:41 -07:00
2014-06-02 11:00:41 -07:00
2014-01-03 20:56:48 -05:00
2014-03-24 12:45:01 -04:00
2014-02-18 18:15:42 -05:00
2014-06-02 11:00:41 -07:00
2014-05-07 16:06:05 -04:00
2014-06-25 17:41:44 -07:00
2014-06-10 22:30:58 -07:00
2014-05-22 14:57:15 -04:00
2014-04-23 08:21:04 +02:00