]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
netfilter: nf_tables: accept QUEUE/DROP verdict parameters
authorPatrick McHardy <kaber@trash.net>
Tue, 18 Feb 2014 18:06:50 +0000 (18:06 +0000)
committerPablo Neira Ayuso <pablo@netfilter.org>
Tue, 25 Feb 2014 10:29:26 +0000 (11:29 +0100)
Allow userspace to specify the queue number or the errno code for QUEUE
and DROP verdicts.

Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
net/netfilter/nf_tables_api.c

index 4b7e14ddd2b2aff42c469774ed6b43123f7668a1..0b5634094cb0ec9dfbfe6187440f9bd4ad71e02a 100644 (file)
@@ -3174,9 +3174,16 @@ static int nft_verdict_init(const struct nft_ctx *ctx, struct nft_data *data,
        data->verdict = ntohl(nla_get_be32(tb[NFTA_VERDICT_CODE]));
 
        switch (data->verdict) {
-       case NF_ACCEPT:
-       case NF_DROP:
-       case NF_QUEUE:
+       default:
+               switch (data->verdict & NF_VERDICT_MASK) {
+               case NF_ACCEPT:
+               case NF_DROP:
+               case NF_QUEUE:
+                       break;
+               default:
+                       return -EINVAL;
+               }
+               /* fall through */
        case NFT_CONTINUE:
        case NFT_BREAK:
        case NFT_RETURN:
@@ -3197,8 +3204,6 @@ static int nft_verdict_init(const struct nft_ctx *ctx, struct nft_data *data,
                data->chain = chain;
                desc->len = sizeof(data);
                break;
-       default:
-               return -EINVAL;
        }
 
        desc->type = NFT_DATA_VERDICT;