netfilter: nf_tables: annotate data-races around element expiration
element expiration can be read-write locklessly, it can be written by dynset and read from netlink dump, add annotation. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
@@ -835,7 +835,7 @@ static inline bool __nft_set_elem_expired(const struct nft_set_ext *ext,
|
||||
u64 tstamp)
|
||||
{
|
||||
return nft_set_ext_exists(ext, NFT_SET_EXT_EXPIRATION) &&
|
||||
time_after_eq64(tstamp, *nft_set_ext_expiration(ext));
|
||||
time_after_eq64(tstamp, READ_ONCE(*nft_set_ext_expiration(ext)));
|
||||
}
|
||||
|
||||
static inline bool nft_set_elem_expired(const struct nft_set_ext *ext)
|
||||
|
||||
@@ -5827,7 +5827,7 @@ static int nf_tables_fill_setelem(struct sk_buff *skb,
|
||||
if (nft_set_ext_exists(ext, NFT_SET_EXT_EXPIRATION)) {
|
||||
u64 expires, now = get_jiffies_64();
|
||||
|
||||
expires = *nft_set_ext_expiration(ext);
|
||||
expires = READ_ONCE(*nft_set_ext_expiration(ext));
|
||||
if (time_before64(now, expires))
|
||||
expires -= now;
|
||||
else
|
||||
|
||||
@@ -96,7 +96,7 @@ void nft_dynset_eval(const struct nft_expr *expr,
|
||||
if (priv->op == NFT_DYNSET_OP_UPDATE &&
|
||||
nft_set_ext_exists(ext, NFT_SET_EXT_EXPIRATION)) {
|
||||
timeout = priv->timeout ? : READ_ONCE(set->timeout);
|
||||
*nft_set_ext_expiration(ext) = get_jiffies_64() + timeout;
|
||||
WRITE_ONCE(*nft_set_ext_expiration(ext), get_jiffies_64() + timeout);
|
||||
}
|
||||
|
||||
nft_set_elem_update_expr(ext, regs, pkt);
|
||||
|
||||
Reference in New Issue
Block a user