Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c5035c77 authored by Pablo Neira Ayuso's avatar Pablo Neira Ayuso
Browse files

netfilter: nft_meta: fix cgroup matching



We have to stop iterating on the rule expressions if the cgroup
mismatches. Moreover, make sure a non-full socket from the input path
leads us to a crash.

Fixes: ce674173 ("netfilter: nft_meta: add cgroup support")
Signed-off-by: default avatarPablo Neira Ayuso <pablo@netfilter.org>
parent afb77180
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -166,9 +166,8 @@ void nft_meta_get_eval(const struct nft_expr *expr,
		dest->data[0] = out->group;
		break;
	case NFT_META_CGROUP:
		if (skb->sk == NULL)
			break;

		if (skb->sk == NULL || !sk_fullsock(skb->sk))
			goto err;
		dest->data[0] = skb->sk->sk_classid;
		break;
	default: