netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: David Miller <davem@davemloft.net>
To: matti.vaittinen@nokia.com
Cc: johannes.berg@intel.com, jbenc@redhat.com, bywxiaobai@163.com,
	netdev@vger.kernel.org, linux-kernel@vger.kernel.org,
	alexander.sverdlin@nokia.com, teppo.o.pennanen@nokia.com
Subject: Re: [PATCH 1/1] net: netlink: Fix multicast group storage allocation for families with more than one groups
Date: Tue, 12 Jan 2016 16:42:11 -0500 (EST)	[thread overview]
Message-ID: <20160112.164211.956459588621139898.davem@davemloft.net> (raw)
In-Reply-To: <20160111122610.GA28615@fi-ourus-dhcp00977.emea.nsn-net.net>

From: Matti Vaittinen <matti.vaittinen@nokia.com>
Date: Mon, 11 Jan 2016 14:26:19 +0200

> Multicast groups are stored in global buffer. Check for needed buffer size
> incorrectly compares buffer size to first id for family. This means that
> for families with more than one mcast id one may allocate too small buffer
> and end up writing rest of the groups to some unallocated memory. Fix the 
> buffer size check to compare allocated space to last mcast id for the 
> family.
> 
> Tested on ARM using kernel 3.14
> 
> Signed-off-by: Matti Vaittinen <matti.vaittinen@nokia.com>

Indeed, it looks like this function was never tested with any value
of n_groups other than one.

But I think your change has an off-by-one bug:

> -		if (id >= mc_groups_longs * BITS_PER_LONG) {
> +		if (id + n_groups >= mc_groups_longs * BITS_PER_LONG) {

I think this needs to be "id + n_groups > ".  Consider the existing,
working, case of "n_groups == 1".  Now you're adding '1' and therefore
the test needs to be adjusted from >= to >.

Thanks.

  reply	other threads:[~2016-01-12 21:42 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-11 12:26 [PATCH 1/1] net: netlink: Fix multicast group storage allocation for families with more than one groups Matti Vaittinen
2016-01-12 21:42 ` David Miller [this message]
2016-01-13  7:53   ` Matti Vaittinen

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=20160112.164211.956459588621139898.davem@davemloft.net \
    --to=davem@davemloft.net \
    --cc=alexander.sverdlin@nokia.com \
    --cc=bywxiaobai@163.com \
    --cc=jbenc@redhat.com \
    --cc=johannes.berg@intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=matti.vaittinen@nokia.com \
    --cc=netdev@vger.kernel.org \
    --cc=teppo.o.pennanen@nokia.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).