* [PATCH 1/2 nft] evaluate: check if table and chain exists when adding rules
@ 2015-11-02 11:55 Pablo Neira Ayuso
2015-11-02 11:55 ` [PATCH 2/2 nft] netlink_linearize: factor out prefix generation Pablo Neira Ayuso
0 siblings, 1 reply; 2+ messages in thread
From: Pablo Neira Ayuso @ 2015-11-02 11:55 UTC (permalink / raw)
To: netfilter-devel; +Cc: kaber
Assuming a table 'test' that contains a chain 'test':
# nft add rule test1 test2 counter
<cmdline>:1:1-28: Error: Could not process rule: Table 'test1' does not exist
add rule test1 test2 counter
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
# nft add rule test test2 counter
<cmdline>:1:1-27: Error: Could not process rule: Chain 'test2' does not exist
add rule test test2 counter
^^^^^^^^^^^^^^^^^^^^^^^^^^^
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
---
src/evaluate.c | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/src/evaluate.c b/src/evaluate.c
index 4f9299e..ccbe8b3 100644
--- a/src/evaluate.c
+++ b/src/evaluate.c
@@ -2050,6 +2050,8 @@ static int table_evaluate(struct eval_ctx *ctx, struct table *table)
static int cmd_evaluate_add(struct eval_ctx *ctx, struct cmd *cmd)
{
+ struct table *table;
+
switch (cmd->obj) {
case CMD_OBJ_SETELEM:
return setelem_evaluate(ctx, &cmd->expr);
@@ -2058,6 +2060,15 @@ static int cmd_evaluate_add(struct eval_ctx *ctx, struct cmd *cmd)
return set_evaluate(ctx, cmd->set);
case CMD_OBJ_RULE:
handle_merge(&cmd->rule->handle, &cmd->handle);
+ table = table_lookup_global(ctx);
+ if (table == NULL)
+ return cmd_error(ctx, "Could not process rule: Table '%s' does not exist",
+ ctx->cmd->handle.table);
+
+ if (chain_lookup(table, &ctx->cmd->handle) == NULL)
+ return cmd_error(ctx, "Could not process rule: Chain '%s' does not exist",
+ ctx->cmd->handle.chain);
+
return rule_evaluate(ctx, cmd->rule);
case CMD_OBJ_CHAIN:
return chain_evaluate(ctx, cmd->chain);
--
2.1.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [PATCH 2/2 nft] netlink_linearize: factor out prefix generation
2015-11-02 11:55 [PATCH 1/2 nft] evaluate: check if table and chain exists when adding rules Pablo Neira Ayuso
@ 2015-11-02 11:55 ` Pablo Neira Ayuso
0 siblings, 0 replies; 2+ messages in thread
From: Pablo Neira Ayuso @ 2015-11-02 11:55 UTC (permalink / raw)
To: netfilter-devel; +Cc: kaber
Add a new netlink_gen_prefix() function that encapsulates the prefix
generation.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
---
This patch, I should have sent it before the one to add wildcard string.
src/netlink_linearize.c | 53 +++++++++++++++++++++++++++++--------------------
1 file changed, 31 insertions(+), 22 deletions(-)
diff --git a/src/netlink_linearize.c b/src/netlink_linearize.c
index aa44eea..a4cd370 100644
--- a/src/netlink_linearize.c
+++ b/src/netlink_linearize.c
@@ -290,13 +290,40 @@ static void payload_shift_value(const struct expr *left, struct expr *right)
mpz_lshift_ui(right->value, left->payload.offset % BITS_PER_BYTE);
}
+static struct expr *netlink_gen_prefix(struct netlink_linearize_ctx *ctx,
+ const struct expr *expr,
+ enum nft_registers sreg)
+{
+ struct nft_data_linearize nld, zero = {};
+ struct nftnl_expr *nle;
+ mpz_t mask;
+
+ mpz_init(mask);
+ mpz_prefixmask(mask, expr->right->len, expr->right->prefix_len);
+ netlink_gen_raw_data(mask, expr->right->byteorder,
+ expr->right->len / BITS_PER_BYTE, &nld);
+ mpz_clear(mask);
+
+ zero.len = nld.len;
+
+ nle = alloc_nft_expr("bitwise");
+ netlink_put_register(nle, NFTNL_EXPR_BITWISE_SREG, sreg);
+ netlink_put_register(nle, NFTNL_EXPR_BITWISE_DREG, sreg);
+ nftnl_expr_set_u32(nle, NFTNL_EXPR_BITWISE_LEN, nld.len);
+ nftnl_expr_set(nle, NFTNL_EXPR_BITWISE_MASK, &nld.value, nld.len);
+ nftnl_expr_set(nle, NFTNL_EXPR_BITWISE_XOR, &zero.value, zero.len);
+ nftnl_rule_add_expr(ctx->nlr, nle);
+
+ return expr->right->prefix;
+}
+
static void netlink_gen_cmp(struct netlink_linearize_ctx *ctx,
const struct expr *expr,
enum nft_registers dreg)
{
+ struct nft_data_linearize nld;
struct nftnl_expr *nle;
enum nft_registers sreg;
- struct nft_data_linearize nld, zero = {};
struct expr *right;
assert(dreg == NFT_REG_VERDICT);
@@ -308,30 +335,12 @@ static void netlink_gen_cmp(struct netlink_linearize_ctx *ctx,
netlink_gen_expr(ctx, expr->left, sreg);
switch (expr->right->ops->type) {
- case EXPR_PREFIX: {
- mpz_t mask;
-
- mpz_init(mask);
- mpz_prefixmask(mask, expr->right->len, expr->right->prefix_len);
- netlink_gen_raw_data(mask, expr->right->byteorder,
- expr->right->len / BITS_PER_BYTE, &nld);
- mpz_clear(mask);
-
- zero.len = nld.len;
-
- nle = alloc_nft_expr("bitwise");
- netlink_put_register(nle, NFTNL_EXPR_BITWISE_SREG, sreg);
- netlink_put_register(nle, NFTNL_EXPR_BITWISE_DREG, sreg);
- nftnl_expr_set_u32(nle, NFTNL_EXPR_BITWISE_LEN, nld.len);
- nftnl_expr_set(nle, NFTNL_EXPR_BITWISE_MASK, &nld.value, nld.len);
- nftnl_expr_set(nle, NFTNL_EXPR_BITWISE_XOR, &zero.value, zero.len);
- nftnl_rule_add_expr(ctx->nlr, nle);
-
- right = expr->right->prefix;
+ case EXPR_PREFIX:
+ right = netlink_gen_prefix(ctx, expr, sreg);
break;
- }
default:
right = expr->right;
+ break;
}
nle = alloc_nft_expr("cmp");
--
2.1.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-11-02 11:48 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-02 11:55 [PATCH 1/2 nft] evaluate: check if table and chain exists when adding rules Pablo Neira Ayuso
2015-11-02 11:55 ` [PATCH 2/2 nft] netlink_linearize: factor out prefix generation Pablo Neira Ayuso
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).