Received: by 10.223.176.5 with SMTP id f5csp3436677wra; Mon, 29 Jan 2018 13:09:31 -0800 (PST) X-Google-Smtp-Source: AH8x2268zsv5bWjXAdQzvoN1eATG18SyCnSZtMVmmwrcqAQlVpF0y7PcnygRLciDy6yRAden5dKP X-Received: by 2002:a17:902:1683:: with SMTP id h3-v6mr22069004plh.433.1517260171850; Mon, 29 Jan 2018 13:09:31 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1517260171; cv=none; d=google.com; s=arc-20160816; b=TdDo21FqTbmnrQgW9K6XF+gPng81AasXbKxHstNOXskx/1SUgrIlwmsIHZv0qyheXE obH77qtQ8AJuyl167CsH11ocssENkMARqTTEAXp2+3fm6VyW2jQSVxFfwuYhge9lBCFL mh9QKN7OyCFoS6nmq41glnhIH9VDeKegxLJzBqaGrkAlTs7SC9d+IGAx0NSc1AXyIMn5 fiOjMflDTopmIAXO+s5wPHSZmKsl6WcpMbK4xofmiYnxMZOWoOENIb1EHJjm60CeXVWN Ukvz88fghpSV9d/2lKp/EUJHABEGCvERvvreJdEGAI3C6Rj2u+U1NQEVdNeqKXQ6ol0o yXjA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=7Mfi6OwKVDfMcYNPk4CYV4KDGgfxqpfLF52ksC2G6fU=; b=Tq6tAoSgZ1nZvhBC2WMdLiPLYATEVjJFX6zVA9ssucfxUvHfF4CMhuwe7b1mktU/+T TkhPcKNCrNeGMK5vUtBdavspYt65w/P3/5/QBxwtG4FJIT3xauDuCF/wXLP0uhIONRH6 zaumjI27Dx7ARh/hZVqooLC0ebHglLlJ7owWlyrSF+u9vqMGFS2KCshWTZg++wJN2AHA WE8ezat5QUoQ4YZViv9MI6g/K5fRHbk6pI0iRDp5NsFbyyczrlBZ4Cqtt1N4G2OGK6hE 5IcjKc53MRSNbipALTzfg8GGn2UdWY/NlVJ1PGDySAWmVGrNk/x2Qu3QxNqGto7Ybn3X 8/Sw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id u1-v6si2260976pls.210.2018.01.29.13.09.17; Mon, 29 Jan 2018 13:09:31 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751901AbeA2VI6 (ORCPT + 99 others); Mon, 29 Jan 2018 16:08:58 -0500 Received: from mail.linuxfoundation.org ([140.211.169.12]:48090 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752686AbeA2UGZ (ORCPT ); Mon, 29 Jan 2018 15:06:25 -0500 Received: from localhost (LFbn-1-12258-90.w90-92.abo.wanadoo.fr [90.92.71.90]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 4E5DE300C; Mon, 29 Jan 2018 13:09:24 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Guillaume Nault , "David S. Miller" Subject: [PATCH 4.14 42/71] ppp: unlock all_ppp_mutex before registering device Date: Mon, 29 Jan 2018 13:57:10 +0100 Message-Id: <20180129123830.056779683@linuxfoundation.org> X-Mailer: git-send-email 2.16.1 In-Reply-To: <20180129123827.271171825@linuxfoundation.org> References: <20180129123827.271171825@linuxfoundation.org> User-Agent: quilt/0.65 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.14-stable review patch. If anyone has any objections, please let me know. ------------------ From: Guillaume Nault [ Upstream commit 0171c41835591e9aa2e384b703ef9a6ae367c610 ] ppp_dev_uninit(), which is the .ndo_uninit() handler of PPP devices, needs to lock pn->all_ppp_mutex. Therefore we mustn't call register_netdevice() with pn->all_ppp_mutex already locked, or we'd deadlock in case register_netdevice() fails and calls .ndo_uninit(). Fortunately, we can unlock pn->all_ppp_mutex before calling register_netdevice(). This lock protects pn->units_idr, which isn't used in the device registration process. However, keeping pn->all_ppp_mutex locked during device registration did ensure that no device in transient state would be published in pn->units_idr. In practice, unlocking it before calling register_netdevice() doesn't change this property: ppp_unit_register() is called with 'ppp_mutex' locked and all searches done in pn->units_idr hold this lock too. Fixes: 8cb775bc0a34 ("ppp: fix device unregistration upon netns deletion") Reported-and-tested-by: syzbot+367889b9c9e279219175@syzkaller.appspotmail.com Signed-off-by: Guillaume Nault Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- drivers/net/ppp/ppp_generic.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- a/drivers/net/ppp/ppp_generic.c +++ b/drivers/net/ppp/ppp_generic.c @@ -1003,17 +1003,18 @@ static int ppp_unit_register(struct ppp if (!ifname_is_set) snprintf(ppp->dev->name, IFNAMSIZ, "ppp%i", ppp->file.index); + mutex_unlock(&pn->all_ppp_mutex); + ret = register_netdevice(ppp->dev); if (ret < 0) goto err_unit; atomic_inc(&ppp_unit_count); - mutex_unlock(&pn->all_ppp_mutex); - return 0; err_unit: + mutex_lock(&pn->all_ppp_mutex); unit_put(&pn->units_idr, ppp->file.index); err: mutex_unlock(&pn->all_ppp_mutex);