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 v6 3/3] netfilter: bridge: nf queue verdict to use NFQA_VLAN and NFQA_L2HDR
Date: Tue, 29 Mar 2016 13:04:17 +0200 [thread overview]
Message-ID: <20160329110417.GC10650@salvia> (raw)
In-Reply-To: <1458978132-8006-3-git-send-email-stephane.ml.bryant@gmail.com>
On Sat, Mar 26, 2016 at 08:42:12AM +0100, Stephane Bryant wrote:
> This makes nf queues use NFQA_VLAN and NFQA_L2HDR in verdict to modify the
> original skb
Applied this too, thanks. Just one minor glitch.
> Signed-off-by: Stephane Bryant <stephane.ml.bryant@gmail.com>
> ---
> net/netfilter/nfnetlink_queue.c | 45 +++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 45 insertions(+)
>
> diff --git a/net/netfilter/nfnetlink_queue.c b/net/netfilter/nfnetlink_queue.c
> index 6451f5d..a7ad25a 100644
> --- a/net/netfilter/nfnetlink_queue.c
> +++ b/net/netfilter/nfnetlink_queue.c
> @@ -967,12 +967,18 @@ static struct notifier_block nfqnl_rtnl_notifier = {
> .notifier_call = nfqnl_rcv_nl_event,
> };
>
> +static const struct nla_policy nfqa_vlan_policy[NFQA_VLAN_MAX + 1] = {
> + [NFQA_VLAN_TCI] = { .type = NLA_U16},
> + [NFQA_VLAN_PROTO] = { .type = NLA_U16},
> +};
> +
> static const struct nla_policy nfqa_verdict_policy[NFQA_MAX+1] = {
> [NFQA_VERDICT_HDR] = { .len = sizeof(struct nfqnl_msg_verdict_hdr) },
> [NFQA_MARK] = { .type = NLA_U32 },
> [NFQA_PAYLOAD] = { .type = NLA_UNSPEC },
> [NFQA_CT] = { .type = NLA_UNSPEC },
> [NFQA_EXP] = { .type = NLA_UNSPEC },
> + [NFQA_VLAN] = { .type = NLA_NESTED },
> };
>
> static const struct nla_policy nfqa_verdict_batch_policy[NFQA_MAX+1] = {
> @@ -1086,6 +1092,40 @@ static struct nf_conn *nfqnl_ct_parse(struct nfnl_ct_hook *nfnl_ct,
> return ct;
> }
>
> +static int nfqa_parse_bridge(struct nf_queue_entry *entry,
> + const struct nlattr * const nfqa[])
> +{
> + if (nfqa[NFQA_VLAN]) {
> + int err;
> + 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[NFQA_VLAN_PROTO])
> + return -EINVAL;
> +
> + entry->skb->vlan_tci = ntohs(nla_get_be16(tb[NFQA_VLAN_TCI]));
> + entry->skb->vlan_proto = nla_get_be16(tb[NFQA_VLAN_PROTO]);
> + }
> +
> + if (nfqa[NFQA_L2HDR]) {
> + int mac_header_len = entry->skb->network_header -
> + entry->skb->mac_header;
> +
> + if (mac_header_len != nla_len(nfqa[NFQA_L2HDR]))
> + return -EINVAL;
> + else if (mac_header_len > 0)
> + memcpy(skb_mac_header(entry->skb),
> + nla_data(nfqa[NFQA_L2HDR]),
> + mac_header_len);
> + }
> +
> + return 0;
> +}
> +
> static int nfqnl_recv_verdict(struct net *net, struct sock *ctnl,
> struct sk_buff *skb,
> const struct nlmsghdr *nlh,
> @@ -1127,6 +1167,11 @@ static int nfqnl_recv_verdict(struct net *net, struct sock *ctnl,
> ct = nfqnl_ct_parse(nfnl_ct, nlh, nfqa, entry, &ctinfo);
> }
>
> + if (entry->state.pf == PF_BRIDGE) {
> + if (nfqa_parse_bridge(entry, nfqa) < 0)
> + verdict = NF_DROP;
I have changed this to return -EINVAL instead, so userspace knows that
what it is doing is wrong.
next prev parent reply other threads:[~2016-03-29 11:04 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-26 7:42 [PATCH nf-next v6 1/3] netfilter: bridge: add nf_afinfo to enable queuing to userspace Stephane Bryant
2016-03-26 7:42 ` [PATCH nf-next v6 2/3] netfilter: bridge: pass L2 header and VLAN as netlink attributes in queues " Stephane Bryant
2016-03-29 11:02 ` Pablo Neira Ayuso
2016-03-26 7:42 ` [PATCH nf-next v6 3/3] netfilter: bridge: nf queue verdict to use NFQA_VLAN and NFQA_L2HDR Stephane Bryant
2016-03-29 11:04 ` Pablo Neira Ayuso [this message]
2016-03-29 11:02 ` [PATCH nf-next v6 1/3] netfilter: bridge: add nf_afinfo to enable queuing to userspace Pablo Neira Ayuso
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=20160329110417.GC10650@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).