Received: by 10.223.176.46 with SMTP id f43csp2659696wra; Mon, 22 Jan 2018 01:04:31 -0800 (PST) X-Google-Smtp-Source: AH8x2259ohOIA9mg0fE1A0HqjQ5ak0mdFCSCfxPg1oqkhc3yhBfzQCEcxJrJS0QI3j/s+RC1mXkq X-Received: by 2002:a17:902:aa85:: with SMTP id d5-v6mr3173452plr.239.1516611870931; Mon, 22 Jan 2018 01:04:30 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1516611870; cv=none; d=google.com; s=arc-20160816; b=Irsg84QtZUKuq04D6fTYy40TMi6DE8nInNyghUCW+snivowhQX7PWFdayYpy3m4U/U ZSmoRaXUckyOSlouO3/ARSLh5H9IUdrYRpyfK0BPacfrldJDJnfr5P6A3HJU05buTRwB q6maBGqEiTcYNi+0kmAohujOgW2TEIA0dG8PmocbQtKdDshELSPU+M4rP09aNzXyyfVC ePvCOAPQvSOFwyVLJpljossR/3aIKFxSnPzDaznTBUVF/jf2H2UVU5tySfNZfcElAs9V UwDu5sNb158i3CeOTvpOZ0BOjiAZ8oLSZtSlI8Ru8mycvb2QU1T+8S2kWdRY28UGaZPI wtNA== 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=GveX3dglFXCfX1hhjBePb9LvH0wrELtpN3IGbeLGoLE=; b=FI9bZKcsO38LpoLFPcJSmGxaWyZj06woYDQJbxca5RsNww5NvJHXwSWOxFSQW8mWds 59GJvCSGPj3Cmf3z9FqcH9OZsMRyAyEfpzwKUoqhWMJqBCYDEr3703SwMPpN7Zi+D38c sJT3k0xhGyLEH2QVpY74flASl7cT4Xwv8Nm+fAlMFH3iFBuX0SGs/8iPKaZ6lNKYKOSt c1SJu/oOpnM8Scno4qxdoaSgooYk2+Lbuw7PUWZ1OJTcOlKFG6K/YYEkwQcz1Oo4WDc9 WdmRUNz54krj7PCrEZXMgNhB0FZn1MMPx9VZu7CJY1qtb8yiWCFg3t5HjPCQAl29RI2v 4KPw== 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 u12-v6si3196718plz.222.2018.01.22.01.04.16; Mon, 22 Jan 2018 01:04:30 -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 S1753486AbeAVIxG (ORCPT + 99 others); Mon, 22 Jan 2018 03:53:06 -0500 Received: from mail.linuxfoundation.org ([140.211.169.12]:33874 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753008AbeAVIxE (ORCPT ); Mon, 22 Jan 2018 03:53:04 -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 8EDF7F0B; Mon, 22 Jan 2018 08:53:03 +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.14 65/89] proc: fix coredump vs read /proc/*/stat race Date: Mon, 22 Jan 2018 09:45:45 +0100 Message-Id: <20180122084001.037904053@linuxfoundation.org> X-Mailer: git-send-email 2.16.0 In-Reply-To: <20180122083954.683903493@linuxfoundation.org> References: <20180122083954.683903493@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: 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 @@ -424,8 +424,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); + } } }