Received: by 10.223.176.46 with SMTP id f43csp2686511wra; Mon, 22 Jan 2018 01:35:33 -0800 (PST) X-Google-Smtp-Source: AH8x226BuIOVKZ/4Ljssy5oDdDQrme/5uUvjHnrcTR7sFovPvVNuA4R9/66J0nCrsCDfWdKUmxQy X-Received: by 10.98.15.27 with SMTP id x27mr8051460pfi.197.1516613733872; Mon, 22 Jan 2018 01:35:33 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1516613733; cv=none; d=google.com; s=arc-20160816; b=t1BUQ7CmuosCdV5ozk4LO8j3sgJOblDz5sDk875sTd5U7tScWrj64W8QfgaAsqsJnm 6LieWojWHJGOu+EV6dfOnwH19EgFRMkkIJA9Ej06SuELJZl7fdc0jPBfPjaEHRwO7/Wt fERAYHiI4wA1adb1tFTk5rHc1nEgCHAywhOg0PZyCmrPu+D6DSYjFWfX6Aq7BUBXvyF0 /I2zuXaHCtnBbeq2Fsdl3V+nD+xDZvOR/ZZwXkaL9z/n1soKS3zCqW/xngiW0TZpjUdT PTx41wxQpYydiXtVnBtKPEs7buOwiXONYYsGe8XPLyvwGteM17tVtnt/bAayy8m8hwC0 Zzyw== 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=OobLX/AcVlXaAgyJf/PJfwnbWM4efkVaAOyd4uciFdw=; b=FduEM404myiTgELjG7mcjt17VlQz0pg86idZUdbnO4wdEW1KGSIcNyBQGP3oAuRWDq iNkrqRZRtgfjbqD71PSnt5/FRMhWxgCUPe/RKUyqxZo5rKxrhB+yBQM5rvWrD3tQ3CGM d7uoahOFLnp6YGGOPDadqsvWzA4hyrZnspdhwjHgK8ndrhPgkVCvVJQyGkpAsSMfG0Su hIrhRc66s1e37s2rm5eFPQqdJQ9GQ59c+deBEQZOQ7J7BKJB6o8qJ9DtyQngSD2f7Qmc dVsqAv3K435lNxNltOYgMPHBiovilCeAnLD3Z5MUgt+4/4reT0vOyEAul6TYSzOYA23K 0F3g== 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 bb11-v6si2734227plb.554.2018.01.22.01.35.19; Mon, 22 Jan 2018 01:35:33 -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 S1752382AbeAVIs4 (ORCPT + 99 others); Mon, 22 Jan 2018 03:48:56 -0500 Received: from mail.linuxfoundation.org ([140.211.169.12]:60528 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752336AbeAVIsx (ORCPT ); Mon, 22 Jan 2018 03:48:53 -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 3B512E10; Mon, 22 Jan 2018 08:48:52 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Alexey Dobriyan , "Kohli, Gaurav" , John Ogness , Peter Zijlstra , Ingo Molnar , Oleg Nesterov , Andrew Morton , Linus Torvalds Subject: [PATCH 4.9 34/47] proc: fix coredump vs read /proc/*/stat race Date: Mon, 22 Jan 2018 09:45:45 +0100 Message-Id: <20180122083928.236113235@linuxfoundation.org> X-Mailer: git-send-email 2.16.0 In-Reply-To: <20180122083925.568134913@linuxfoundation.org> References: <20180122083925.568134913@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: Alexey Dobriyan commit 8bb2ee192e482c5d500df9f2b1b26a560bd3026f upstream. do_task_stat() accesses IP and SP of a task without bumping reference count of a stack (which became an entity with independent lifetime at some point). Steps to reproduce: #include #include #include #include #include #include #include #include int main(void) { setrlimit(RLIMIT_CORE, &(struct rlimit){}); while (1) { char buf[64]; char buf2[4096]; pid_t pid; int fd; pid = fork(); if (pid == 0) { *(volatile int *)0 = 0; } snprintf(buf, sizeof(buf), "/proc/%u/stat", pid); fd = open(buf, O_RDONLY); read(fd, buf2, sizeof(buf2)); close(fd); waitpid(pid, NULL, 0); } return 0; } BUG: unable to handle kernel paging request at 0000000000003fd8 IP: do_task_stat+0x8b4/0xaf0 PGD 800000003d73e067 P4D 800000003d73e067 PUD 3d558067 PMD 0 Oops: 0000 [#1] PREEMPT SMP PTI CPU: 0 PID: 1417 Comm: a.out Not tainted 4.15.0-rc8-dirty #2 Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.10.2-1.fc27 04/01/2014 RIP: 0010:do_task_stat+0x8b4/0xaf0 Call Trace: proc_single_show+0x43/0x70 seq_read+0xe6/0x3b0 __vfs_read+0x1e/0x120 vfs_read+0x84/0x110 SyS_read+0x3d/0xa0 entry_SYSCALL_64_fastpath+0x13/0x6c RIP: 0033:0x7f4d7928cba0 RSP: 002b:00007ffddb245158 EFLAGS: 00000246 Code: 03 b7 a0 01 00 00 4c 8b 4c 24 70 4c 8b 44 24 78 4c 89 74 24 18 e9 91 f9 ff ff f6 45 4d 02 0f 84 fd f7 ff ff 48 8b 45 40 48 89 ef <48> 8b 80 d8 3f 00 00 48 89 44 24 20 e8 9b 97 eb ff 48 89 44 24 RIP: do_task_stat+0x8b4/0xaf0 RSP: ffffc90000607cc8 CR2: 0000000000003fd8 John Ogness said: for my tests I added an else case to verify that the race is hit and correctly mitigated. Link: http://lkml.kernel.org/r/20180116175054.GA11513@avx2 Signed-off-by: Alexey Dobriyan Reported-by: "Kohli, Gaurav" Tested-by: John Ogness Cc: Peter Zijlstra Cc: Ingo Molnar Cc: Oleg Nesterov Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds Signed-off-by: Greg Kroah-Hartman --- fs/proc/array.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) --- a/fs/proc/array.c +++ b/fs/proc/array.c @@ -423,8 +423,11 @@ static int do_task_stat(struct seq_file * safe because the task has stopped executing permanently. */ if (permitted && (task->flags & PF_DUMPCORE)) { - eip = KSTK_EIP(task); - esp = KSTK_ESP(task); + if (try_get_task_stack(task)) { + eip = KSTK_EIP(task); + esp = KSTK_ESP(task); + put_task_stack(task); + } } }