Received: by 10.223.176.5 with SMTP id f5csp982485wra; Fri, 2 Feb 2018 09:13:29 -0800 (PST) X-Google-Smtp-Source: AH8x227uhTmHDXmYFCwFV4jc/A40zGduHsqnJDvQ9YRlMz/kTNEIliotBRjVxM7kW7vQzPw9e6uN X-Received: by 10.98.74.20 with SMTP id x20mr41308680pfa.191.1517591609015; Fri, 02 Feb 2018 09:13:29 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1517591608; cv=none; d=google.com; s=arc-20160816; b=XXnUIhhAlz+t5yRrc24ocNq5S9jwOezkKFK2l/Xg63J8H1gSyp0uN2lWF7IhIfY+Gq IK3GBmdJxaLKKXuYQGMG1X2qT8rOTRnaSw6dWG7d5MaR0LGgnl0AibfXEw8dMoC0XKi9 S6YJ0lx/EGUFDVPqW6HmfUGAnP9gtyBoi6xVvVs6y7xjxKMRci2Ytz/t25iWnAJb/9Za AecmR1sMH5Tmk/1pFW73/LyBC7Jj0MXQG1lA6pMro8/MRTOD6TK34EpxSgC9IIvEfAc/ nF6IcWVrtPfWHaGs2GIXiqr+kFRSidrKN4FgD1/XYht+kRBVktMc2QqAW6RtJVnzgp6G U4UQ== 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=fgAnLHaMKxlEMmjIwf4w3j1gi9urPkj5tDiN8nKunak=; b=l0jpuIEE/RslOmuq2ndIAkLGRoXTsnRog9nzdvsqtXUNYB7cMkH+jn5wc1+G9IfkDc BH5gp1xImhztFoSmDQkubLZ6EdEH7bLsb6oAXsm1r5MxoMVfnSjwIFCKAXWXmf1akGVs zndClp9rZ8FjVgL1/q0ZNOJ2ipqqTYhwqvASdBuC7qfNt5LxhD4ZWDmUIs86pQwjqu8R WbnNKSctBaUVT85zzjuM5tJ8tDFs9EhJmU6xvXi1F315OYNHEd7OdM6tIVb/GY3UrmrL Dlv4NMfvjCo55+FuWbz/IHUDnghdgySDc6UpfLEUl1n/nSYMNccWfhwHyPQQtEhjiG8h BcIg== 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 w2si1695775pgp.680.2018.02.02.09.13.14; Fri, 02 Feb 2018 09:13:28 -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 S1753394AbeBBRL3 (ORCPT + 99 others); Fri, 2 Feb 2018 12:11:29 -0500 Received: from mail.linuxfoundation.org ([140.211.169.12]:36678 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753031AbeBBRGB (ORCPT ); Fri, 2 Feb 2018 12:06:01 -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 B2EABE3B; Fri, 2 Feb 2018 17:05:59 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Gaurav Kohli , Alan Cox Subject: [PATCH 4.9 72/86] tty: fix data race between tty_init_dev and flush of buf Date: Fri, 2 Feb 2018 17:58:32 +0100 Message-Id: <20180202140829.336126023@linuxfoundation.org> X-Mailer: git-send-email 2.16.1 In-Reply-To: <20180202140822.679101338@linuxfoundation.org> References: <20180202140822.679101338@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.9-stable review patch. If anyone has any objections, please let me know. ------------------ From: Gaurav Kohli commit b027e2298bd588d6fa36ed2eda97447fb3eac078 upstream. There can be a race, if receive_buf call comes before tty initialization completes in n_tty_open and tty->disc_data may be NULL. CPU0 CPU1 ---- ---- 000|n_tty_receive_buf_common() n_tty_open() -001|n_tty_receive_buf2() tty_ldisc_open.isra.3() -002|tty_ldisc_receive_buf(inline) tty_ldisc_setup() Using ldisc semaphore lock in tty_init_dev till disc_data initializes completely. Signed-off-by: Gaurav Kohli Reviewed-by: Alan Cox Signed-off-by: Greg Kroah-Hartman --- drivers/tty/tty_io.c | 8 +++++++- drivers/tty/tty_ldisc.c | 4 ++-- include/linux/tty.h | 2 ++ 3 files changed, 11 insertions(+), 3 deletions(-) --- a/drivers/tty/tty_io.c +++ b/drivers/tty/tty_io.c @@ -1543,6 +1543,9 @@ struct tty_struct *tty_init_dev(struct t "%s: %s driver does not set tty->port. This will crash the kernel later. Fix the driver!\n", __func__, tty->driver->name); + retval = tty_ldisc_lock(tty, 5 * HZ); + if (retval) + goto err_release_lock; tty->port->itty = tty; /* @@ -1553,6 +1556,7 @@ struct tty_struct *tty_init_dev(struct t retval = tty_ldisc_setup(tty, tty->link); if (retval) goto err_release_tty; + tty_ldisc_unlock(tty); /* Return the tty locked so that it cannot vanish under the caller */ return tty; @@ -1565,9 +1569,11 @@ err_module_put: /* call the tty release_tty routine to clean out this slot */ err_release_tty: - tty_unlock(tty); + tty_ldisc_unlock(tty); tty_info_ratelimited(tty, "ldisc open failed (%d), clearing slot %d\n", retval, idx); +err_release_lock: + tty_unlock(tty); release_tty(tty, idx); return ERR_PTR(retval); } --- a/drivers/tty/tty_ldisc.c +++ b/drivers/tty/tty_ldisc.c @@ -336,7 +336,7 @@ static inline void __tty_ldisc_unlock(st ldsem_up_write(&tty->ldisc_sem); } -static int tty_ldisc_lock(struct tty_struct *tty, unsigned long timeout) +int tty_ldisc_lock(struct tty_struct *tty, unsigned long timeout) { int ret; @@ -347,7 +347,7 @@ static int tty_ldisc_lock(struct tty_str return 0; } -static void tty_ldisc_unlock(struct tty_struct *tty) +void tty_ldisc_unlock(struct tty_struct *tty) { clear_bit(TTY_LDISC_HALTED, &tty->flags); __tty_ldisc_unlock(tty); --- a/include/linux/tty.h +++ b/include/linux/tty.h @@ -394,6 +394,8 @@ extern struct tty_struct *get_current_tt /* tty_io.c */ extern int __init tty_init(void); extern const char *tty_name(const struct tty_struct *tty); +extern int tty_ldisc_lock(struct tty_struct *tty, unsigned long timeout); +extern void tty_ldisc_unlock(struct tty_struct *tty); #else static inline void console_init(void) { }