From: Florian Westphal <fw@strlen.de>
To: Patrick McHardy <kaber@trash.net>
Cc: Florian Westphal <fw@strlen.de>, netfilter-devel@vger.kernel.org
Subject: Re: [PATCH v2 nf-next 2/3] netfilter: nf_tables: extend tracing infrastructure
Date: Fri, 27 Nov 2015 10:23:10 +0100 [thread overview]
Message-ID: <20151127092310.GA15392@breakpoint.cc> (raw)
In-Reply-To: <20151127084718.GD4263@macbook.localdomain>
Patrick McHardy <kaber@trash.net> wrote:
> On 26.11, Florian Westphal wrote:
> > +++ b/net/netfilter/nf_tables_trace.c
> > @@ -0,0 +1,253 @@
> > +static int trace_fill_header(struct sk_buff *nlskb, u16 type,
> > + const struct sk_buff *skb,
> > + int off, unsigned int len)
> > +{
> > + struct nlattr *nla;
> > +
> > + if (len == 0)
> > + return 0;
> > +
> > + if (skb_tailroom(nlskb) < nla_total_size(len))
> > + return -1;
> > +
> > + nla = (struct nlattr *)skb_put(nlskb, nla_total_size(len));
> > + nla->nla_type = type;
> > + nla->nla_len = nla_attr_size(len);
>
> nla_reserve()? That will also take care of zeroing the padding.
Fixed, thanks.
> > +static int nf_trace_fill_ll_header(struct sk_buff *nlskb,
> > + const struct sk_buff *skb)
> > +{
> > + struct vlan_ethhdr veth;
> > + unsigned int len, off;
> > +
> > + off = skb_mac_header(skb) - skb->data;
>
> off is negative or zero, it should use a signed int I think.
Right, fixed.
> > +
> > + if (skb_copy_bits(skb, off, &veth, ETH_HLEN))
> > + return -1;
> > +
> > + veth.h_vlan_proto = skb->vlan_proto;
> > + veth.h_vlan_TCI = htons(skb_vlan_tag_get(skb));
> > + veth.h_vlan_encapsulated_proto = skb->protocol;
> > +
> > + len = min_t(unsigned int,
> > + skb->data - skb_mac_header(skb), NFT_TRACETYPE_LL_HSIZE);
>
> min_t(unsigned int, -off, NFT_TRACETYPE_LL_HSIZE) ?
[..]
> Why the min_t at all if we fail on != ETH_HLEN? I'd simply check that
> it is exactly ETH_HLEN before even starting copying.
Good point, I removed min test completely and changed it to:
int off;
BUILD_BUG_ON(NFT_TRACETYPE_LL_HSIZE < ETH_HLEN);
off = skb_mac_header(skb) - skb->data;
if (len != -ETH_HLEN)
return -1;
...
> > +
> > + len = sizeof(veth);
> > + if (skb_tailroom(nlskb) < nla_total_size(len))
> > + return -1;
> > +
> > + return nla_put(nlskb, NFTA_TRACE_LL_HEADER, len, &veth);
>
> nla_put() already checks the tailroom.
Right, my bad. Removed.
> > + len = min_t(unsigned int,
> > + skb->data - skb_mac_header(skb), NFT_TRACETYPE_LL_HSIZE);
> > + off = skb_mac_header(skb) - skb->data;
>
> Could again avoid the double calculation by using -off in min_t().
Fixed.
> > +static int nf_trace_fill_chain_info(struct sk_buff *nlskb,
> > + const struct nft_chain *chain)
> > +{
> > + if (nla_put_string(nlskb, NFTA_TRACE_TABLE, chain->table->name))
> > + return -1;
> > +
> > + return nla_put_string(nlskb, NFTA_TRACE_CHAIN, chain->name);
>
> I would not move simple stuff that is only used once like this to another
> function. Easier to read if you don't have to jump around in the code.
Ok, open-coded this instead.
Thanks for the review, I'll send a v3 soon.
next prev parent reply other threads:[~2015-11-27 9:23 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-26 17:59 [PATCH v2 0/3] src: trace infrastructure support Florian Westphal
2015-11-26 17:59 ` [PATCH v2 libnftnl 1/3] src: add " Florian Westphal
2015-11-26 22:11 ` Patrick McHardy
2015-11-26 17:59 ` [PATCH v2 nf-next 2/3] netfilter: nf_tables: extend tracing infrastructure Florian Westphal
2015-11-26 23:20 ` Patrick McHardy
2015-11-27 0:10 ` Florian Westphal
2015-11-27 1:24 ` Patrick McHardy
2015-11-27 8:47 ` Patrick McHardy
2015-11-27 9:23 ` Florian Westphal [this message]
2015-11-26 17:59 ` [PATCH v2 nf-next 3/3] netfilter: nf_tables: wrap tracing with a static key Florian Westphal
2015-11-26 21:30 ` Patrick McHardy
2015-11-26 20:53 ` [PATCH v2 0/3] src: trace infrastructure support Patrick McHardy
2015-11-27 1:33 ` Patrick McHardy
-- strict thread matches above, loose matches on Subject: below --
2015-11-27 18:43 GIT: [PATCH v3 0/3] netfilter " Florian Westphal
2015-11-27 18:43 ` [PATCH v2 nf-next 2/3] netfilter: nf_tables: extend tracing infrastructure Florian Westphal
2015-11-28 12:36 ` Patrick McHardy
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=20151127092310.GA15392@breakpoint.cc \
--to=fw@strlen.de \
--cc=kaber@trash.net \
--cc=netfilter-devel@vger.kernel.org \
/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).