From: Pablo Neira Ayuso <pablo@netfilter.org>
To: Stephane Bryant <stephane.ml.bryant@gmail.com>
Cc: netfilter-devel@vger.kernel.org
Subject: Re: [PATCH nf-next v5 3/3] netfilter: bridge: nf queue verdict to use NFQA_VLAN and NFQA_L2HDR
Date: Tue, 22 Mar 2016 20:12:15 +0100 [thread overview]
Message-ID: <20160322191215.GA7018@salvia> (raw)
In-Reply-To: <1458461206-4338-3-git-send-email-stephane.ml.bryant@gmail.com>
Hi Stephane,
We're almost there, a bit more changes for this please.
On Sun, Mar 20, 2016 at 09:06:46AM +0100, Stephane Bryant wrote:
> This makes nf queues use NFQA_VLAN and NFQA_L2HDR in verdict to modify the
> original skb
>
> Signed-off-by: Stephane Bryant <stephane.ml.bryant@gmail.com>
> ---
> net/netfilter/nfnetlink_queue.c | 25 +++++++++++++++++++++++++
> 1 file changed, 25 insertions(+)
>
> diff --git a/net/netfilter/nfnetlink_queue.c b/net/netfilter/nfnetlink_queue.c
> index 0da0276..aa526f0 100644
> --- a/net/netfilter/nfnetlink_queue.c
> +++ b/net/netfilter/nfnetlink_queue.c
> @@ -1126,6 +1126,31 @@ static int nfqnl_recv_verdict(struct net *net, struct sock *ctnl,
> ct = nfqnl_ct_parse(nfnl_ct, nlh, nfqa, entry, &ctinfo);
> }
>
> + if (nfqa[NFQA_VLAN]) {
> + struct nlattr *vlan_tci =
> + nla_find_nested(nfqa[NFQA_VLAN], NFQA_VLAN_TCI);
> + struct nlattr *vlan_proto =
> + nla_find_nested(nfqa[NFQA_VLAN], NFQA_VLAN_PROTO);
> +
> + if (vlan_tci)
> + entry->skb->vlan_tci = ntohs(nla_get_be16(vlan_tci));
> +
> + if (vlan_proto)
> + entry->skb->vlan_proto = nla_get_be16(vlan_proto);
> + }
Could you replace this chunk above by something like...
if (entry->state.pf == PF_BRIDGE) {
err = nfqa_parse_bridge(nfqa);
if (err < 0)
return err;
}
Then, this nfqa_parse_bridge() should look like;
if (nfqa[NFQA_VLAN]) {
struct nlattr *tb[NFQA_VLAN_MAX + 1];
err = nla_parse_nested(tb, NFQA_VLAN_MAX, nfqa[NFQA_VLAN],
nfqa_vlan_policy);
if (err < 0)
return err;
if (!tb[NFQA_VLAN_TCI] ||
!tb[NFTA_VLAN_PROTO])
return -EINVAL;
if (tb[NFQA_VLAN_TCI])
entry->skb->vlan_tci =
ntohs(nla_get_be16(tb[NFQA_VLAN_TCI]));
if (tb[NFAQ_VLAN_PROTO])
entry->skb->vlan_proto =
nla_get_be16(tb[NFQA_VLAN_PROTO]);
}
if (nfqa[NFQA_L2HDR]) {
...
}
You will need the policy structure BTW:
static const struct nla_policy nfqa_verdict_policy[NFQA_VLAN_MAX + 1] = {
[NFQA_VLAN_TCI] = { .type = NLA_U16 },
[NFQA_VLAN_PROTO] = { .type = NLA_U16 },
};
And don't forget to update nfqa_verdict_policy to add the NFQA_VLAN
nested attribute there as:
.type = NLA_NESTED.
Thanks !
prev parent reply other threads:[~2016-03-22 19:12 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-20 8:06 [PATCH nf-next v5 1/3] netfilter: bridge: add nf_afinfo to enable queuing to userspace Stephane Bryant
2016-03-20 8:06 ` [PATCH nf-next v5 2/3] netfilter: bridge: pass L2 header and VLAN as netlink attributes in queues " Stephane Bryant
2016-03-20 8:06 ` [PATCH nf-next v5 3/3] netfilter: bridge: nf queue verdict to use NFQA_VLAN and NFQA_L2HDR Stephane Bryant
2016-03-22 19:12 ` Pablo Neira Ayuso [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160322191215.GA7018@salvia \
--to=pablo@netfilter.org \
--cc=netfilter-devel@vger.kernel.org \
--cc=stephane.ml.bryant@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).