From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ulf Samuelsson Subject: Re: Possible bug in net/core/neighbor.c Date: Wed, 5 Nov 2014 16:46:06 +0100 Message-ID: <545A463E.2030005@ericsson.com> References: <5459FFEA.3000101@ericsson.com> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 7bit To: Return-path: Received: from sesbmg22.ericsson.net ([193.180.251.48]:59808 "EHLO sesbmg22.ericsson.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755130AbaKEPqT (ORCPT ); Wed, 5 Nov 2014 10:46:19 -0500 In-Reply-To: <5459FFEA.3000101@ericsson.com> Sender: netdev-owner@vger.kernel.org List-ID: On 11/05/2014 11:46 AM, Ulf Samuelsson wrote: > I find the following in "net/core/neighbor.c" > > /* Compare new lladdr with cached one */ > if (!dev->addr_len) { > /* First case: device needs no address. */ > lladdr = neigh->ha; > } else if (lladdr) { > /* The second case: if something is already cached > and a new address is proposed: > - compare new & old > - if they are different, check override flag > */ > > /* POSSIBLE BUG */ > if ((old & NUD_VALID) && > !memcmp(lladdr, neigh->ha, dev->addr_len)) > lladdr = neigh->ha; > /* END POSSIBLE BUG */ > } else { > /* No address is supplied; if we know something, > use it, otherwise discard the request. > */ > err = -EINVAL; > if (!(old & NUD_VALID)) > goto out; > lladdr = neigh->ha; > } > > It looks to me like the code is saying > if the proposed address is equal to the original address, > set the proposed address to the original address. > > which is pretty meaningless. > > Should it not be: > > if ((old & NUD_VALID) && > memcmp(lladdr, neigh->ha, dev->addr_len)) /* True if > addresses are not equal */ > neigh->ha = lladdr; /* Update to new address */ > > If not, I would appreciate an explanation what the code is doing. > OK, I think I figured it out. If laddr and neigh->ha are identical, we want lladdr (which is a pointer) to have the same value as neigh->ha so after this, you know that laddr is identical to neigh->ha by justr comparing the pointers. When I google, I only find other people which does not understand the purpose of the code. The comments are also obsolete, since "check override flag" refers to code which has been removed. Best Regards, Ulf Samuelsson KI/EAB/ILM/GF ulf.samuelsson@ericsson.com +46 722 427 437