From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Miller Subject: Re: [PATCH net] team: avoid adding twice the same option to the event list Date: Fri, 13 Apr 2018 14:07:05 -0400 (EDT) Message-ID: <20180413.140705.1693433489799741559.davem@davemloft.net> References: <0e295e62358a68b22c646adece4272a9bd0473f8.1523620752.git.pabeni@redhat.com> Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: netdev@vger.kernel.org, jiri@resnulli.us To: pabeni@redhat.com Return-path: Received: from shards.monkeyblade.net ([184.105.139.130]:49734 "EHLO shards.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750832AbeDMSHH (ORCPT ); Fri, 13 Apr 2018 14:07:07 -0400 In-Reply-To: <0e295e62358a68b22c646adece4272a9bd0473f8.1523620752.git.pabeni@redhat.com> Sender: netdev-owner@vger.kernel.org List-ID: From: Paolo Abeni Date: Fri, 13 Apr 2018 13:59:25 +0200 > When parsing the options provided by the user space, > team_nl_cmd_options_set() insert them in a temporary list to send > multiple events with a single message. > While each option's attribute is correctly validated, the code does > not check for duplicate entries before inserting into the event > list. > > Exploiting the above, the syzbot was able to trigger the following > splat: ... > This changeset addresses the avoiding list_add() if the current > option is already present in the event list. > > Reported-and-tested-by: syzbot+4d4af685432dc0e56c91@syzkaller.appspotmail.com > Signed-off-by: Paolo Abeni > Fixes: 2fcdb2c9e659 ("team: allow to send multiple set events in one message") Looks good to me. It's too bad that the tmp list entries don't get marked as they are added, or get unlinked by the list processor. Either scheme would make the "already added" test a lot simpler. Jiri, please review before I apply this. Thanks.