Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751786AbaGBHDz (ORCPT ); Wed, 2 Jul 2014 03:03:55 -0400 Received: from mail-wi0-f179.google.com ([209.85.212.179]:34076 "EHLO mail-wi0-f179.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751225AbaGBHDx (ORCPT ); Wed, 2 Jul 2014 03:03:53 -0400 Date: Wed, 2 Jul 2014 10:03:49 +0300 From: Dan Aloni To: Loic Prylli Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org, Timo =?iso-8859-1?Q?Ter=E4s?= , Jiri Pirko Subject: Re: [PATCH] net: Fix NETDEV_CHANGE notifier usage causing spurious arp flush Message-ID: <20140702070349.GA11943@gmail.com> References: <1404275983-7908-1-git-send-email-loicp@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1404275983-7908-1-git-send-email-loicp@google.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Jul 01, 2014 at 09:39:43PM -0700, Loic Prylli wrote: > A bug was introduced in NETDEV_CHANGE notifier sequence causing the > arp table to be sometimes spuriously cleared (including manual arp > entries marked permanent), upon network link carrier changes. > > The changed argument for the notifier was applied only to a single > caller of NETDEV_CHANGE, missing among others netdev_state_change(). > So upon net_carrier events induced by the network, which are > triggering a call to netdev_state_change(), arp_netdev_event() would > decide whether to clear or not arp cache based on random/junk stack > values (a kind of read buffer overflow). [..] > { > if (dev->flags & IFF_UP) { > - call_netdevice_notifiers(NETDEV_CHANGE, dev); > + struct netdev_notifier_change_info change_info; > + > + change_info.flags_changed = 0; I think it would be safer to do: struct netdev_notifier_change_info change_info = {}; So that when future fields are added to the struct and this call-site happens to be forgotten, they will get 0 by default rather than random stack values. -- Dan Aloni -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/