mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH AUTOSEL for 3.18 01/15] route: also update fnhe_genid when updating a route cache
@ 2017-12-02 15:53 alexander.levin
  2017-12-02 15:53 ` [PATCH AUTOSEL for 3.18 02/15] route: update fnhe_expires for redirect when the fnhe exists alexander.levin
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: alexander.levin @ 2017-12-02 15:53 UTC (permalink / raw)
  To: linux-kernel, stable; +Cc: Xin Long, David S . Miller, alexander.levin

From: Xin Long <lucien.xin@gmail.com>

[ Upstream commit cebe84c6190d741045a322f5343f717139993c08 ]

Now when ip route flush cache and it turn out all fnhe_genid != genid.
If a redirect/pmtu icmp packet comes and the old fnhe is found and all
it's members but fnhe_genid will be updated.

Then next time when it looks up route and tries to rebind this fnhe to
the new dst, the fnhe will be flushed due to fnhe_genid != genid. It
causes this redirect/pmtu icmp packet acutally not to be applied.

This patch is to also reset fnhe_genid when updating a route cache.

Fixes: 5aad1de5ea2c ("ipv4: use separate genid for next hop exceptions")
Acked-by: Hannes Frederic Sowa <hannes@stressinduktion.org>
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <alexander.levin@verizon.com>
---
 net/ipv4/route.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/net/ipv4/route.c b/net/ipv4/route.c
index 2fe9459fbe24..a04d29d70e6a 100644
--- a/net/ipv4/route.c
+++ b/net/ipv4/route.c
@@ -622,9 +622,12 @@ static void update_or_create_fnhe(struct fib_nh *nh, __be32 daddr, __be32 gw,
 	struct fnhe_hash_bucket *hash;
 	struct fib_nh_exception *fnhe;
 	struct rtable *rt;
+	u32 genid, hval;
 	unsigned int i;
 	int depth;
-	u32 hval = fnhe_hashfun(daddr);
+
+	genid = fnhe_genid(dev_net(nh->nh_dev));
+	hval = fnhe_hashfun(daddr);
 
 	spin_lock_bh(&fnhe_lock);
 
@@ -647,6 +650,8 @@ static void update_or_create_fnhe(struct fib_nh *nh, __be32 daddr, __be32 gw,
 	}
 
 	if (fnhe) {
+		if (fnhe->fnhe_genid != genid)
+			fnhe->fnhe_genid = genid;
 		if (gw)
 			fnhe->fnhe_gw = gw;
 		if (pmtu) {
@@ -671,7 +676,7 @@ static void update_or_create_fnhe(struct fib_nh *nh, __be32 daddr, __be32 gw,
 			fnhe->fnhe_next = hash->chain;
 			rcu_assign_pointer(hash->chain, fnhe);
 		}
-		fnhe->fnhe_genid = fnhe_genid(dev_net(nh->nh_dev));
+		fnhe->fnhe_genid = genid;
 		fnhe->fnhe_daddr = daddr;
 		fnhe->fnhe_gw = gw;
 		fnhe->fnhe_pmtu = pmtu;
-- 
2.11.0

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2017-12-02 16:00 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-02 15:53 [PATCH AUTOSEL for 3.18 01/15] route: also update fnhe_genid when updating a route cache alexander.levin
2017-12-02 15:53 ` [PATCH AUTOSEL for 3.18 02/15] route: update fnhe_expires for redirect when the fnhe exists alexander.levin
2017-12-02 15:53 ` [PATCH AUTOSEL for 3.18 03/15] lib/genalloc.c: make the avail variable an atomic_long_t alexander.levin
2017-12-02 15:53 ` [PATCH AUTOSEL for 3.18 04/15] dynamic-debug-howto: fix optional/omitted ending line number to be LARGE instead of 0 alexander.levin
2017-12-02 15:53 ` [PATCH AUTOSEL for 3.18 05/15] NFS: Fix a typo in nfs_rename() alexander.levin
2017-12-02 15:53 ` [PATCH AUTOSEL for 3.18 06/15] sunrpc: Fix rpc_task_begin trace point alexander.levin
2017-12-02 15:53 ` [PATCH AUTOSEL for 3.18 09/15] sctp: use the right sk after waking up from wait_buf sleep alexander.levin
2017-12-02 15:53 ` [PATCH AUTOSEL for 3.18 08/15] sctp: do not free asoc when it is already dead in sctp_sendmsg alexander.levin
2017-12-02 15:53 ` [PATCH AUTOSEL for 3.18 07/15] sparc64/mm: set fields in deferred pages alexander.levin
2017-12-02 15:53 ` [PATCH AUTOSEL for 3.18 11/15] xfrm: Copy policy family in clone_policy alexander.levin
2017-12-02 15:53 ` [PATCH AUTOSEL for 3.18 10/15] atm: horizon: Fix irq release error alexander.levin
2017-12-02 15:53 ` [PATCH AUTOSEL for 3.18 12/15] IB/mlx4: Increase maximal message size under UD QP alexander.levin
2017-12-02 15:53 ` [PATCH AUTOSEL for 3.18 13/15] IB/mlx5: Assign send CQ and recv CQ of UMR QP alexander.levin
2017-12-02 15:53 ` [PATCH AUTOSEL for 3.18 14/15] afs: Connect up the CB.ProbeUuid alexander.levin
2017-12-02 15:53 ` [PATCH AUTOSEL for 3.18 15/15] audit: ensure that 'audit=1' actually enables audit for PID 1 alexander.levin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®