public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [BUG 2.2/2.4/2.6] broken memsets in net/sk_mca.c (multicast)
@ 2004-04-10  8:20 Jean Delvare
  2004-04-10  8:40 ` Andrew Morton
  2004-04-10 11:52 ` Denis Vlasenko
  0 siblings, 2 replies; 6+ messages in thread
From: Jean Delvare @ 2004-04-10  8:20 UTC (permalink / raw)
  To: LKML; +Cc: Alfred Arnold

[Please CC: me on reply, I'm not subscribed (yet)]

Hi all,

I just found two very weird memsets in drivers/net/sk_mca.c. I am not
working on that driver at all, but some grepping of the kernel source
pointed me to it so I thought I wouldn't keep quiet about it.

Here is the offending code:

static void skmca_set_multicast_list(struct net_device *dev)
{
	(...)
	if (dev->flags & IFF_ALLMULTI) {	/* get all multicasts */
		memset(block.LAdrF, 8, 0xff);
	} else {		/* get selected/no multicasts */
		(...)
		memset(block.LAdrF, 8, 0x00);
		(...)
	}
	(...)
}

Is it just me, or are these two memsets just plain broken? Not only the
size is hardcoded, but the parameters are swapped! I guess that this
driver never worked in multicast mode. The correct memsets are
obviously:
		memset(block.LAdrF, 0xff, sizeof(block.LAdrF));
and
		memset(block.LAdrF, 0x00, sizeof(block.LAdrF));
respectively.

The odd thing is that the bug is there since the driver was introduced
in the 2.2.10 kernel. So, 2.2, 2.4 and 2.6 kernels are all affected.

I admit I'm a bit surprized that this could survive until today, so just
tell me if it's me missing the point ;)

Thanks.

-- 
Jean Delvare
http://www.ensicaen.ismra.fr/~delvare/

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2004-04-10 14:49 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-04-10  8:20 [BUG 2.2/2.4/2.6] broken memsets in net/sk_mca.c (multicast) Jean Delvare
2004-04-10  8:40 ` Andrew Morton
2004-04-10  8:49   ` Russell King
2004-04-10  8:59     ` Andrew Morton
2004-04-10 14:49       ` Jean Delvare
2004-04-10 11:52 ` Denis Vlasenko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox