From: Fernando Fernandez Mancera Date: Tue, 7 Aug 2018 09:44:06 +0000 (+0200) Subject: src: use NFT_OSF_MAXGENRELEN instead of IFNAMSIZ in osf.c X-Git-Tag: v0.9.1~331 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cfa7f3aa145755a2abc6e6751e11bac95978cfe4;p=thirdparty%2Fnftables.git src: use NFT_OSF_MAXGENRELEN instead of IFNAMSIZ in osf.c As no "genre" in pf.os exceed 16 bytes of length, we reduce NFT_OSF_MAXGENRELEN parameter to 16 bytes and use it instead of IFNAMSIZ. Signed-off-by: Fernando Fernandez Mancera Signed-off-by: Pablo Neira Ayuso --- diff --git a/include/linux/netfilter/nf_tables.h b/include/linux/netfilter/nf_tables.h index 63b90546..fe656525 100644 --- a/include/linux/netfilter/nf_tables.h +++ b/include/linux/netfilter/nf_tables.h @@ -8,6 +8,7 @@ #define NFT_SET_MAXNAMELEN NFT_NAME_MAXLEN #define NFT_OBJ_MAXNAMELEN NFT_NAME_MAXLEN #define NFT_USERDATA_MAXLEN 256 +#define NFT_OSF_MAXGENRELEN 16 /** * enum nft_registers - nf_tables registers diff --git a/src/osf.c b/src/osf.c index f07a725c..131d54e4 100644 --- a/src/osf.c +++ b/src/osf.c @@ -4,8 +4,6 @@ #include #include -#include - static void osf_expr_print(const struct expr *expr, struct output_ctx *octx) { nft_print(octx, "osf name"); @@ -24,7 +22,7 @@ static const struct expr_ops osf_expr_ops = { struct expr *osf_expr_alloc(const struct location *loc) { - unsigned int len = IFNAMSIZ * BITS_PER_BYTE; + unsigned int len = NFT_OSF_MAXGENRELEN * BITS_PER_BYTE; const struct datatype *type = &string_type; struct expr *expr;