[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20241205171248.3958156-1-gnaaman@drivenets.com>
Date: Thu, 5 Dec 2024 17:12:47 +0000
From: Gilad Naaman <gnaaman@...venets.com>
To: "David S. Miller" <davem@...emloft.net>,
David Ahern <dsahern@...nel.org>,
Eric Dumazet <edumazet@...gle.com>,
Jakub Kicinski <kuba@...nel.org>,
Paolo Abeni <pabeni@...hat.com>,
Simon Horman <horms@...nel.org>,
netdev@...r.kernel.org
Cc: Gilad Naaman <gnaaman@...venets.com>
Subject: [PATCH net-next v2] Do not invoke addrconf_verify_rtnl unnecessarily
Do not invoke costly `addrconf_verify_rtnl` if the added address
wouldn't need it, or affect the delayed_work timer.
For new/modified addresses, call "verify" only if added address has an
expiration, or if any temporary address was created.
This is done to account for a case where the new expiration time might
be sooner than the current delayed_work's expiration.
For deleted addresses, avoid calling verify at all:
If the address being deleted is not perishable, and thus does not affect
the delayed_work expiration, there is not point in going over the entire
table.
If the address IS perishable, but is not the soonest-to-be-expired
address, calling "verify" would not change the expiration, and would be
a very expensive nop.
If the address IS perishable, and IS the soonest-to-be-expired address,
calling or not-calling "verify" for a single address deletion is
equivalent in cost.
But calling "verify" immediately will result in a performance hit when
deleting many addresses.
Signed-off-by: Gilad Naaman <gnaaman@...venets.com>
---
net/ipv6/addrconf.c | 34 +++++++++++++++++++++++-----------
1 file changed, 23 insertions(+), 11 deletions(-)
diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c
index c489a1e6aec9..893502787554 100644
--- a/net/ipv6/addrconf.c
+++ b/net/ipv6/addrconf.c
@@ -310,6 +310,16 @@ static inline bool addrconf_link_ready(const struct net_device *dev)
return netif_oper_up(dev) && !qdisc_tx_is_noop(dev);
}
+static inline bool addrconf_perishable(int ifa_flags, u32 prefered_lft)
+{
+ /* When setting preferred_lft to a value not zero or
+ * infinity, while valid_lft is infinity
+ * IFA_F_PERMANENT has a non-infinity life time.
+ */
+ return !((ifa_flags & IFA_F_PERMANENT) &&
+ (prefered_lft == INFINITY_LIFE_TIME));
+}
+
static void addrconf_del_rs_timer(struct inet6_dev *idev)
{
if (del_timer(&idev->rs_timer))
@@ -3090,8 +3100,7 @@ static int inet6_addr_add(struct net *net, int ifindex,
*/
if (!(ifp->flags & (IFA_F_OPTIMISTIC | IFA_F_NODAD)))
ipv6_ifa_notify(0, ifp);
- /*
- * Note that section 3.1 of RFC 4429 indicates
+ /* Note that section 3.1 of RFC 4429 indicates
* that the Optimistic flag should not be set for
* manually configured addresses
*/
@@ -3100,7 +3109,14 @@ static int inet6_addr_add(struct net *net, int ifindex,
manage_tempaddrs(idev, ifp, cfg->valid_lft,
cfg->preferred_lft, true, jiffies);
in6_ifa_put(ifp);
- addrconf_verify_rtnl(net);
+
+ /* Verify only if it's possible that adding this address
+ * may modify the worker expiration time.
+ */
+ if ((cfg->ifa_flags & IFA_F_MANAGETEMPADDR) ||
+ addrconf_perishable(cfg->ifa_flags, cfg->preferred_lft))
+ addrconf_verify_rtnl(net);
+
return 0;
} else if (cfg->ifa_flags & IFA_F_MCAUTOJOIN) {
ipv6_mc_config(net->ipv6.mc_autojoin_sk, false,
@@ -3148,7 +3164,6 @@ static int inet6_addr_del(struct net *net, int ifindex, u32 ifa_flags,
(ifp->flags & IFA_F_MANAGETEMPADDR))
delete_tempaddrs(idev, ifp);
- addrconf_verify_rtnl(net);
if (ipv6_addr_is_multicast(pfx)) {
ipv6_mc_config(net->ipv6.mc_autojoin_sk,
false, pfx, dev->ifindex);
@@ -4645,12 +4660,7 @@ static void addrconf_verify_rtnl(struct net *net)
hlist_for_each_entry_rcu_bh(ifp, &net->ipv6.inet6_addr_lst[i], addr_lst) {
unsigned long age;
- /* When setting preferred_lft to a value not zero or
- * infinity, while valid_lft is infinity
- * IFA_F_PERMANENT has a non-infinity life time.
- */
- if ((ifp->flags & IFA_F_PERMANENT) &&
- (ifp->prefered_lft == INFINITY_LIFE_TIME))
+ if (!addrconf_perishable(ifp->flags, ifp->prefered_lft))
continue;
spin_lock(&ifp->lock);
@@ -4979,7 +4989,9 @@ static int inet6_addr_modify(struct net *net, struct inet6_ifaddr *ifp,
jiffies);
}
- addrconf_verify_rtnl(net);
+ if (was_managetempaddr ||
+ addrconf_perishable(cfg->ifa_flags, cfg->preferred_lft))
+ addrconf_verify_rtnl(net);
return 0;
}
--
2.34.1
Powered by blists - more mailing lists