mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-17 02:36:21 +00:00
netfilter net-next pull request 2023-07-27
-----BEGIN PGP SIGNATURE----- iQJBBAABCAArFiEEgKkgxbID4Gn1hq6fcJGo2a1f9gAFAmTCcgkNHGZ3QHN0cmxl bi5kZQAKCRBwkajZrV/2AJmMD/9IPWnzSNLUgoAhSo0h2OkCKl2iIdRnkrPrruhE Su8bD8ohmU100iN1DMXT2a7C9o0BTog4EB7WtF21z+06dUhROiZizrSt8bTk/rRi 0+Sm9xlDAdl3CZcU8fnVjwf6PLYgUv5zVjcQc4Ggf15MwEIdpviKCps2bbBtrozF PJEK6+UwTU6+z4GSTc957nhFHstEcwktyxoaAote98CD78G2YCQT5yVbfctHgRm0 9qovT8S/zZmqHvqvUfrqJd+N5V/+40O7ZuFls93kYxK9Bttx9wRwEqALPldxXudU o0kG4QZ8NAwiIVsGqPwKu/cKi9PF0z/PUXYgVdnkKK+XofBDHbHyfR+BJO1ejOdX +ea9AoQ6lD6NVmvX01+lF9OI4D1zgc6pLGyjSsyVgv3x0iKJeZ8QOgb0DTGFiG1U MnFIeckedrh/dt3NXLG/blZvuAzhofHqEhH/DlvbI/QBtN2zEgIMJKxRfBAMs3OO WAIlaHASQFVbyrHOr/X3FoNDTsvZyrTppo9WwJVTj9F41lYXzWoiBY+nVj2brGDR SMW1M13sufRBQlk0aTpPYPvcS5FhsMf6ggxygi2rNxX5/AdFE02nnEU9ybpHAqcy NiZ8kCxJ2J9+aCj7yvJ7QQcAD7l2tAIeAZCKSlKteigqTI0PWoTUc0IYPT85URLm cy/l4A== =fgLz -----END PGP SIGNATURE----- Merge tag 'nf-next-23-07-27' of https://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next Florian Westphal says: ==================== netfilter updates for net-next 1. silence a harmless warning for CONFIG_NF_CONNTRACK_PROCFS=n builds, from Zhu Wang. 2, 3: Allow NLA_POLICY_MASK to be used with BE16/BE32 types, and replace a few manual checks with nla_policy based one in nf_tables, from myself. 4: cleanup in ctnetlink to validate while parsing rather than using two steps, from Lin Ma. 5: refactor boyer-moore textsearch by moving a small chunk to a helper function, rom Jeremy Sowden. * tag 'nf-next-23-07-27' of https://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next: lib/ts_bm: add helper to reduce indentation and improve readability netfilter: conntrack: validate cta_ip via parsing netfilter: nf_tables: use NLA_POLICY_MASK to test for valid flag options netlink: allow be16 and be32 types in all uint policy checks nf_conntrack: fix -Wunused-const-variable= ==================== Link: https://lore.kernel.org/r/20230727133604.8275-1-fw@strlen.de Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
commit
5908a4c47c
@ -375,12 +375,11 @@ struct nla_policy {
|
||||
#define NLA_POLICY_BITFIELD32(valid) \
|
||||
{ .type = NLA_BITFIELD32, .bitfield32_valid = valid }
|
||||
|
||||
#define __NLA_IS_UINT_TYPE(tp) \
|
||||
(tp == NLA_U8 || tp == NLA_U16 || tp == NLA_U32 || tp == NLA_U64)
|
||||
#define __NLA_IS_UINT_TYPE(tp) \
|
||||
(tp == NLA_U8 || tp == NLA_U16 || tp == NLA_U32 || \
|
||||
tp == NLA_U64 || tp == NLA_BE16 || tp == NLA_BE32)
|
||||
#define __NLA_IS_SINT_TYPE(tp) \
|
||||
(tp == NLA_S8 || tp == NLA_S16 || tp == NLA_S32 || tp == NLA_S64)
|
||||
#define __NLA_IS_BEINT_TYPE(tp) \
|
||||
(tp == NLA_BE16 || tp == NLA_BE32)
|
||||
|
||||
#define __NLA_ENSURE(condition) BUILD_BUG_ON_ZERO(!(condition))
|
||||
#define NLA_ENSURE_UINT_TYPE(tp) \
|
||||
@ -394,7 +393,6 @@ struct nla_policy {
|
||||
#define NLA_ENSURE_INT_OR_BINARY_TYPE(tp) \
|
||||
(__NLA_ENSURE(__NLA_IS_UINT_TYPE(tp) || \
|
||||
__NLA_IS_SINT_TYPE(tp) || \
|
||||
__NLA_IS_BEINT_TYPE(tp) || \
|
||||
tp == NLA_MSECS || \
|
||||
tp == NLA_BINARY) + tp)
|
||||
#define NLA_ENSURE_NO_VALIDATION_PTR(tp) \
|
||||
@ -402,8 +400,6 @@ struct nla_policy {
|
||||
tp != NLA_REJECT && \
|
||||
tp != NLA_NESTED && \
|
||||
tp != NLA_NESTED_ARRAY) + tp)
|
||||
#define NLA_ENSURE_BEINT_TYPE(tp) \
|
||||
(__NLA_ENSURE(__NLA_IS_BEINT_TYPE(tp)) + tp)
|
||||
|
||||
#define NLA_POLICY_RANGE(tp, _min, _max) { \
|
||||
.type = NLA_ENSURE_INT_OR_BINARY_TYPE(tp), \
|
||||
|
@ -355,6 +355,12 @@ static int nla_validate_mask(const struct nla_policy *pt,
|
||||
case NLA_U64:
|
||||
value = nla_get_u64(nla);
|
||||
break;
|
||||
case NLA_BE16:
|
||||
value = ntohs(nla_get_be16(nla));
|
||||
break;
|
||||
case NLA_BE32:
|
||||
value = ntohl(nla_get_be32(nla));
|
||||
break;
|
||||
default:
|
||||
return -EINVAL;
|
||||
}
|
||||
|
39
lib/ts_bm.c
39
lib/ts_bm.c
@ -55,6 +55,24 @@ struct ts_bm
|
||||
unsigned int good_shift[];
|
||||
};
|
||||
|
||||
static unsigned int matchpat(const u8 *pattern, unsigned int patlen,
|
||||
const u8 *text, bool icase)
|
||||
{
|
||||
unsigned int i;
|
||||
|
||||
for (i = 0; i < patlen; i++) {
|
||||
u8 t = *(text-i);
|
||||
|
||||
if (icase)
|
||||
t = toupper(t);
|
||||
|
||||
if (t != *(pattern-i))
|
||||
break;
|
||||
}
|
||||
|
||||
return i;
|
||||
}
|
||||
|
||||
static unsigned int bm_find(struct ts_config *conf, struct ts_state *state)
|
||||
{
|
||||
struct ts_bm *bm = ts_config_priv(conf);
|
||||
@ -72,19 +90,18 @@ static unsigned int bm_find(struct ts_config *conf, struct ts_state *state)
|
||||
break;
|
||||
|
||||
while (shift < text_len) {
|
||||
DEBUGP("Searching in position %d (%c)\n",
|
||||
shift, text[shift]);
|
||||
for (i = 0; i < bm->patlen; i++)
|
||||
if ((icase ? toupper(text[shift-i])
|
||||
: text[shift-i])
|
||||
!= bm->pattern[bm->patlen-1-i])
|
||||
goto next;
|
||||
DEBUGP("Searching in position %d (%c)\n",
|
||||
shift, text[shift]);
|
||||
|
||||
/* London calling... */
|
||||
DEBUGP("found!\n");
|
||||
return consumed + (shift-(bm->patlen-1));
|
||||
i = matchpat(&bm->pattern[bm->patlen-1], bm->patlen,
|
||||
&text[shift], icase);
|
||||
if (i == bm->patlen) {
|
||||
/* London calling... */
|
||||
DEBUGP("found!\n");
|
||||
return consumed + (shift-(bm->patlen-1));
|
||||
}
|
||||
|
||||
next: bs = bm->bad_shift[text[shift-i]];
|
||||
bs = bm->bad_shift[text[shift-i]];
|
||||
|
||||
/* Now jumping to... */
|
||||
shift = max_t(int, shift-i+bs, shift+bm->good_shift[i]);
|
||||
|
@ -1321,15 +1321,11 @@ static int ctnetlink_parse_tuple_ip(struct nlattr *attr,
|
||||
struct nlattr *tb[CTA_IP_MAX+1];
|
||||
int ret = 0;
|
||||
|
||||
ret = nla_parse_nested_deprecated(tb, CTA_IP_MAX, attr, NULL, NULL);
|
||||
ret = nla_parse_nested_deprecated(tb, CTA_IP_MAX, attr,
|
||||
cta_ip_nla_policy, NULL);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
ret = nla_validate_nested_deprecated(attr, CTA_IP_MAX,
|
||||
cta_ip_nla_policy, NULL);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
switch (tuple->src.l3num) {
|
||||
case NFPROTO_IPV4:
|
||||
ret = ipv4_nlattr_to_tuple(tb, tuple, flags);
|
||||
|
@ -69,6 +69,7 @@
|
||||
|
||||
#define DCCP_MSL (2 * 60 * HZ)
|
||||
|
||||
#ifdef CONFIG_NF_CONNTRACK_PROCFS
|
||||
static const char * const dccp_state_names[] = {
|
||||
[CT_DCCP_NONE] = "NONE",
|
||||
[CT_DCCP_REQUEST] = "REQUEST",
|
||||
@ -81,6 +82,7 @@ static const char * const dccp_state_names[] = {
|
||||
[CT_DCCP_IGNORE] = "IGNORE",
|
||||
[CT_DCCP_INVALID] = "INVALID",
|
||||
};
|
||||
#endif
|
||||
|
||||
#define sNO CT_DCCP_NONE
|
||||
#define sRQ CT_DCCP_REQUEST
|
||||
|
@ -14,17 +14,18 @@
|
||||
#include <net/netfilter/nf_tables.h>
|
||||
#include <net/netfilter/nft_fib.h>
|
||||
|
||||
const struct nla_policy nft_fib_policy[NFTA_FIB_MAX + 1] = {
|
||||
[NFTA_FIB_DREG] = { .type = NLA_U32 },
|
||||
[NFTA_FIB_RESULT] = { .type = NLA_U32 },
|
||||
[NFTA_FIB_FLAGS] = { .type = NLA_U32 },
|
||||
};
|
||||
EXPORT_SYMBOL(nft_fib_policy);
|
||||
|
||||
#define NFTA_FIB_F_ALL (NFTA_FIB_F_SADDR | NFTA_FIB_F_DADDR | \
|
||||
NFTA_FIB_F_MARK | NFTA_FIB_F_IIF | NFTA_FIB_F_OIF | \
|
||||
NFTA_FIB_F_PRESENT)
|
||||
|
||||
const struct nla_policy nft_fib_policy[NFTA_FIB_MAX + 1] = {
|
||||
[NFTA_FIB_DREG] = { .type = NLA_U32 },
|
||||
[NFTA_FIB_RESULT] = { .type = NLA_U32 },
|
||||
[NFTA_FIB_FLAGS] =
|
||||
NLA_POLICY_MASK(NLA_BE32, NFTA_FIB_F_ALL),
|
||||
};
|
||||
EXPORT_SYMBOL(nft_fib_policy);
|
||||
|
||||
int nft_fib_validate(const struct nft_ctx *ctx, const struct nft_expr *expr,
|
||||
const struct nft_data **data)
|
||||
{
|
||||
@ -77,7 +78,7 @@ int nft_fib_init(const struct nft_ctx *ctx, const struct nft_expr *expr,
|
||||
|
||||
priv->flags = ntohl(nla_get_be32(tb[NFTA_FIB_FLAGS]));
|
||||
|
||||
if (priv->flags == 0 || (priv->flags & ~NFTA_FIB_F_ALL))
|
||||
if (priv->flags == 0)
|
||||
return -EINVAL;
|
||||
|
||||
if ((priv->flags & (NFTA_FIB_F_SADDR | NFTA_FIB_F_DADDR)) ==
|
||||
|
@ -90,7 +90,8 @@ static const struct nla_policy nft_lookup_policy[NFTA_LOOKUP_MAX + 1] = {
|
||||
[NFTA_LOOKUP_SET_ID] = { .type = NLA_U32 },
|
||||
[NFTA_LOOKUP_SREG] = { .type = NLA_U32 },
|
||||
[NFTA_LOOKUP_DREG] = { .type = NLA_U32 },
|
||||
[NFTA_LOOKUP_FLAGS] = { .type = NLA_U32 },
|
||||
[NFTA_LOOKUP_FLAGS] =
|
||||
NLA_POLICY_MASK(NLA_BE32, NFT_LOOKUP_F_INV),
|
||||
};
|
||||
|
||||
static int nft_lookup_init(const struct nft_ctx *ctx,
|
||||
@ -120,9 +121,6 @@ static int nft_lookup_init(const struct nft_ctx *ctx,
|
||||
if (tb[NFTA_LOOKUP_FLAGS]) {
|
||||
flags = ntohl(nla_get_be32(tb[NFTA_LOOKUP_FLAGS]));
|
||||
|
||||
if (flags & ~NFT_LOOKUP_F_INV)
|
||||
return -EINVAL;
|
||||
|
||||
if (flags & NFT_LOOKUP_F_INV)
|
||||
priv->invert = true;
|
||||
}
|
||||
|
@ -20,7 +20,8 @@ struct nft_masq {
|
||||
};
|
||||
|
||||
static const struct nla_policy nft_masq_policy[NFTA_MASQ_MAX + 1] = {
|
||||
[NFTA_MASQ_FLAGS] = { .type = NLA_U32 },
|
||||
[NFTA_MASQ_FLAGS] =
|
||||
NLA_POLICY_MASK(NLA_BE32, NF_NAT_RANGE_MASK),
|
||||
[NFTA_MASQ_REG_PROTO_MIN] = { .type = NLA_U32 },
|
||||
[NFTA_MASQ_REG_PROTO_MAX] = { .type = NLA_U32 },
|
||||
};
|
||||
@ -47,11 +48,8 @@ static int nft_masq_init(const struct nft_ctx *ctx,
|
||||
struct nft_masq *priv = nft_expr_priv(expr);
|
||||
int err;
|
||||
|
||||
if (tb[NFTA_MASQ_FLAGS]) {
|
||||
if (tb[NFTA_MASQ_FLAGS])
|
||||
priv->flags = ntohl(nla_get_be32(tb[NFTA_MASQ_FLAGS]));
|
||||
if (priv->flags & ~NF_NAT_RANGE_MASK)
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
if (tb[NFTA_MASQ_REG_PROTO_MIN]) {
|
||||
err = nft_parse_register_load(tb[NFTA_MASQ_REG_PROTO_MIN],
|
||||
|
@ -132,7 +132,8 @@ static const struct nla_policy nft_nat_policy[NFTA_NAT_MAX + 1] = {
|
||||
[NFTA_NAT_REG_ADDR_MAX] = { .type = NLA_U32 },
|
||||
[NFTA_NAT_REG_PROTO_MIN] = { .type = NLA_U32 },
|
||||
[NFTA_NAT_REG_PROTO_MAX] = { .type = NLA_U32 },
|
||||
[NFTA_NAT_FLAGS] = { .type = NLA_U32 },
|
||||
[NFTA_NAT_FLAGS] =
|
||||
NLA_POLICY_MASK(NLA_BE32, NF_NAT_RANGE_MASK),
|
||||
};
|
||||
|
||||
static int nft_nat_validate(const struct nft_ctx *ctx,
|
||||
@ -246,11 +247,8 @@ static int nft_nat_init(const struct nft_ctx *ctx, const struct nft_expr *expr,
|
||||
priv->flags |= NF_NAT_RANGE_PROTO_SPECIFIED;
|
||||
}
|
||||
|
||||
if (tb[NFTA_NAT_FLAGS]) {
|
||||
if (tb[NFTA_NAT_FLAGS])
|
||||
priv->flags |= ntohl(nla_get_be32(tb[NFTA_NAT_FLAGS]));
|
||||
if (priv->flags & ~NF_NAT_RANGE_MASK)
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
|
||||
return nf_ct_netns_get(ctx->net, family);
|
||||
}
|
||||
|
@ -22,7 +22,8 @@ struct nft_redir {
|
||||
static const struct nla_policy nft_redir_policy[NFTA_REDIR_MAX + 1] = {
|
||||
[NFTA_REDIR_REG_PROTO_MIN] = { .type = NLA_U32 },
|
||||
[NFTA_REDIR_REG_PROTO_MAX] = { .type = NLA_U32 },
|
||||
[NFTA_REDIR_FLAGS] = { .type = NLA_U32 },
|
||||
[NFTA_REDIR_FLAGS] =
|
||||
NLA_POLICY_MASK(NLA_BE32, NF_NAT_RANGE_MASK),
|
||||
};
|
||||
|
||||
static int nft_redir_validate(const struct nft_ctx *ctx,
|
||||
@ -68,11 +69,8 @@ static int nft_redir_init(const struct nft_ctx *ctx,
|
||||
priv->flags |= NF_NAT_RANGE_PROTO_SPECIFIED;
|
||||
}
|
||||
|
||||
if (tb[NFTA_REDIR_FLAGS]) {
|
||||
if (tb[NFTA_REDIR_FLAGS])
|
||||
priv->flags = ntohl(nla_get_be32(tb[NFTA_REDIR_FLAGS]));
|
||||
if (priv->flags & ~NF_NAT_RANGE_MASK)
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
return nf_ct_netns_get(ctx->net, ctx->family);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user