-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
netfilter: nf_tables: avoid retpoline overhead for some ct expression…
… calls nft_ct expression cannot be made builtin to nf_tables without also forcing the conntrack itself to be builtin. However, this can be avoided by splitting retrieval of a few selector keys that only need to access the nf_conn structure, i.e. no function calls to nf_conntrack code. Many rulesets start with something like "ct status established,related accept" With this change, this no longer requires an indirect call, which gives about 1.8% more throughput with a simple conntrack-enabled forwarding test (retpoline thunk used). Signed-off-by: Florian Westphal <fw@strlen.de>
- Loading branch information
Florian Westphal
committed
Jan 18, 2023
1 parent
2032e90
commit d9e7891
Showing
5 changed files
with
104 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
// SPDX-License-Identifier: GPL-2.0-only | ||
#if IS_ENABLED(CONFIG_NFT_CT) | ||
#include <linux/netfilter/nf_tables.h> | ||
#include <net/netfilter/nf_tables_core.h> | ||
#include <net/netfilter/nf_conntrack.h> | ||
|
||
void nft_ct_get_fast_eval(const struct nft_expr *expr, | ||
struct nft_regs *regs, | ||
const struct nft_pktinfo *pkt) | ||
{ | ||
const struct nft_ct *priv = nft_expr_priv(expr); | ||
u32 *dest = ®s->data[priv->dreg]; | ||
enum ip_conntrack_info ctinfo; | ||
const struct nf_conn *ct; | ||
unsigned int state; | ||
|
||
ct = nf_ct_get(pkt->skb, &ctinfo); | ||
if (!ct) { | ||
regs->verdict.code = NFT_BREAK; | ||
return; | ||
} | ||
|
||
switch (priv->key) { | ||
case NFT_CT_STATE: | ||
if (ct) | ||
state = NF_CT_STATE_BIT(ctinfo); | ||
else if (ctinfo == IP_CT_UNTRACKED) | ||
state = NF_CT_STATE_UNTRACKED_BIT; | ||
else | ||
state = NF_CT_STATE_INVALID_BIT; | ||
*dest = state; | ||
return; | ||
case NFT_CT_DIRECTION: | ||
nft_reg_store8(dest, CTINFO2DIR(ctinfo)); | ||
return; | ||
case NFT_CT_STATUS: | ||
*dest = ct->status; | ||
return; | ||
#ifdef CONFIG_NF_CONNTRACK_MARK | ||
case NFT_CT_MARK: | ||
*dest = ct->mark; | ||
return; | ||
#endif | ||
#ifdef CONFIG_NF_CONNTRACK_SECMARK | ||
case NFT_CT_SECMARK: | ||
*dest = ct->secmark; | ||
return; | ||
#endif | ||
default: | ||
WARN_ON_ONCE(1); | ||
regs->verdict.code = NFT_BREAK; | ||
break; | ||
} | ||
} | ||
EXPORT_SYMBOL_GPL(nft_ct_get_fast_eval); | ||
#endif |