Received: by 2002:a25:ab43:0:0:0:0:0 with SMTP id u61csp2732804ybi; Sun, 26 May 2019 06:51:52 -0700 (PDT) X-Google-Smtp-Source: APXvYqxCHvhswUzCQApExOdaraWRhNwR6ZnRkSb2QpKZetpU2gBrFQZDW58Ktpkdd8xYHr9yvbm1 X-Received: by 2002:a63:4346:: with SMTP id q67mr119223235pga.241.1558878712048; Sun, 26 May 2019 06:51:52 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1558878712; cv=none; d=google.com; s=arc-20160816; b=ap2pvrvrOtt7q1FEfgXLsw7DiemaNjpzYo1Jm1Kwfz5IjVGQm4x4rQxoor7lBMkqd8 cCvUlowmriY9JEgQ9OfvjNvcbklwCaLeyhKfENTZvRZcFcu8Y1unPhGNkRv7MkroZkTz O1jKFzNp8S0GhzaFW9vaAOfZoQUHNC7RYnqoqUtvJru6xqRTR9bjBn3zgGtZD/RiG9v0 JSc4bcopIsjvWJcI3CHFNHplTghHO5wiK+xr7XJDX+qm5dPhswhdAppb6U586gnGzIvq 6BU/24lebFqPu9PpKYJNFn3RUHG4ygkQa6U3CbA5qXZaKu28Y5X2r5/mbxARhE/WFqMr 4grw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=SIdeHf7UhNLwsGYhllhi9P4YFI2Wqufk36v6ndrJAYI=; b=jhNudJev/K7bvH4PM99PDYuQ+V+wwqnVdT7/QpYM+c1nhvCxwjAl4ZV6kJbODVnRia by4DDJZAiO6nm+pggoCXTLKWtZIokme8CAAoY4xBXVnp+FK8oYPktsLvWzNvAyPM5Wvj wqTPteocfQDJoAMuYT6EQ4I8mZAmtyZZKpaVXnZALKWv02Pj/f2lNhIu1Ytoh8lmAXt6 xHhCMe9zXB3vUtH0i+jh9n155OEnntwOdDT+x70TFnxizxpk3fxj2GhLl9WdvOFmKp9v rJzRccUmhQ2WoV5AuN3E+XNYAV2XT7A48FAJrLMphayaRN8assOrgtxavH0zgt64lpHT 6ewQ== 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 k24si14191764pfk.195.2019.05.26.06.51.36; Sun, 26 May 2019 06:51:52 -0700 (PDT) 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 S1727867AbfEZNtW (ORCPT + 99 others); Sun, 26 May 2019 09:49:22 -0400 Received: from relay7-d.mail.gandi.net ([217.70.183.200]:57425 "EHLO relay7-d.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726953AbfEZNtW (ORCPT ); Sun, 26 May 2019 09:49:22 -0400 X-Originating-IP: 79.86.19.127 Received: from alex.numericable.fr (127.19.86.79.rev.sfr.net [79.86.19.127]) (Authenticated sender: alex@ghiti.fr) by relay7-d.mail.gandi.net (Postfix) with ESMTPSA id 16C8C20002; Sun, 26 May 2019 13:48:58 +0000 (UTC) From: Alexandre Ghiti To: Andrew Morton Cc: Christoph Hellwig , Russell King , Catalin Marinas , Will Deacon , Ralf Baechle , Paul Burton , James Hogan , Palmer Dabbelt , Albert Ou , Alexander Viro , Luis Chamberlain , Kees Cook , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mips@vger.kernel.org, linux-riscv@lists.infradead.org, linux-fsdevel@vger.kernel.org, linux-mm@kvack.org, Alexandre Ghiti Subject: [PATCH v4 01/14] mm, fs: Move randomize_stack_top from fs to mm Date: Sun, 26 May 2019 09:47:33 -0400 Message-Id: <20190526134746.9315-2-alex@ghiti.fr> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20190526134746.9315-1-alex@ghiti.fr> References: <20190526134746.9315-1-alex@ghiti.fr> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This preparatory commit moves this function so that further introduction of generic topdown mmap layout is contained only in mm/util.c. Signed-off-by: Alexandre Ghiti Acked-by: Kees Cook Reviewed-by: Christoph Hellwig --- fs/binfmt_elf.c | 20 -------------------- include/linux/mm.h | 2 ++ mm/util.c | 22 ++++++++++++++++++++++ 3 files changed, 24 insertions(+), 20 deletions(-) diff --git a/fs/binfmt_elf.c b/fs/binfmt_elf.c index fa9e99a962e0..d4d2fe109ee9 100644 --- a/fs/binfmt_elf.c +++ b/fs/binfmt_elf.c @@ -669,26 +669,6 @@ static unsigned long load_elf_interp(struct elfhdr *interp_elf_ex, * libraries. There is no binary dependent code anywhere else. */ -#ifndef STACK_RND_MASK -#define STACK_RND_MASK (0x7ff >> (PAGE_SHIFT - 12)) /* 8MB of VA */ -#endif - -static unsigned long randomize_stack_top(unsigned long stack_top) -{ - unsigned long random_variable = 0; - - if (current->flags & PF_RANDOMIZE) { - random_variable = get_random_long(); - random_variable &= STACK_RND_MASK; - random_variable <<= PAGE_SHIFT; - } -#ifdef CONFIG_STACK_GROWSUP - return PAGE_ALIGN(stack_top) + random_variable; -#else - return PAGE_ALIGN(stack_top) - random_variable; -#endif -} - static int load_elf_binary(struct linux_binprm *bprm) { struct file *interpreter = NULL; /* to shut gcc up */ diff --git a/include/linux/mm.h b/include/linux/mm.h index 0e8834ac32b7..446ec32c62b8 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h @@ -2368,6 +2368,8 @@ extern int install_special_mapping(struct mm_struct *mm, unsigned long addr, unsigned long len, unsigned long flags, struct page **pages); +unsigned long randomize_stack_top(unsigned long stack_top); + extern unsigned long get_unmapped_area(struct file *, unsigned long, unsigned long, unsigned long, unsigned long); extern unsigned long mmap_region(struct file *file, unsigned long addr, diff --git a/mm/util.c b/mm/util.c index e2e4f8c3fa12..dab33b896146 100644 --- a/mm/util.c +++ b/mm/util.c @@ -14,6 +14,8 @@ #include #include #include +#include +#include #include @@ -291,6 +293,26 @@ int vma_is_stack_for_current(struct vm_area_struct *vma) return (vma->vm_start <= KSTK_ESP(t) && vma->vm_end >= KSTK_ESP(t)); } +#ifndef STACK_RND_MASK +#define STACK_RND_MASK (0x7ff >> (PAGE_SHIFT - 12)) /* 8MB of VA */ +#endif + +unsigned long randomize_stack_top(unsigned long stack_top) +{ + unsigned long random_variable = 0; + + if (current->flags & PF_RANDOMIZE) { + random_variable = get_random_long(); + random_variable &= STACK_RND_MASK; + random_variable <<= PAGE_SHIFT; + } +#ifdef CONFIG_STACK_GROWSUP + return PAGE_ALIGN(stack_top) + random_variable; +#else + return PAGE_ALIGN(stack_top) - random_variable; +#endif +} + #if defined(CONFIG_MMU) && !defined(HAVE_ARCH_PICK_MMAP_LAYOUT) void arch_pick_mmap_layout(struct mm_struct *mm, struct rlimit *rlim_stack) { -- 2.20.1