Linux-Fsdevel Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Andrew Morton <akpm@linux-foundation.org>
To: Chris Kennelly <ckennelly@google.com>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>,
Alexey Dobriyan <adobriyan@gmail.com>,
Song Liu <songliubraving@fb.com>,
David Rientjes <rientjes@google.com>,
Ian Rogers <irogers@google.com>, Hugh Dickens <hughd@google.com>,
Suren Baghdasaryan <surenb@google.com>,
Sandeep Patil <sspatil@google.com>,
Fangrui Song <maskray@google.com>,
Nick Desaulniers <ndesaulniers@google.com>,
clang-built-linux@googlegroups.com,
linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3 1/2] fs/binfmt_elf: Use PT_LOAD p_align values for suitable start address.
Date: Thu, 20 Aug 2020 20:51:16 -0700 [thread overview]
Message-ID: <20200820205116.3467a186cb4ac20342f0ee4b@linux-foundation.org> (raw)
In-Reply-To: <20200820170541.1132271-2-ckennelly@google.com>
On Thu, 20 Aug 2020 13:05:40 -0400 Chris Kennelly <ckennelly@google.com> wrote:
> The current ELF loading mechancism provides page-aligned mappings. This
> can lead to the program being loaded in a way unsuitable for
> file-backed, transparent huge pages when handling PIE executables.
>
> For binaries built with increased alignment, this limits the number of
> bits usable for ASLR, but provides some randomization over using fixed
> load addresses/non-PIE binaries.
>
> @@ -421,6 +422,24 @@ static int elf_read(struct file *file, void *buf, size_t len, loff_t pos)
> return 0;
> }
>
> +static unsigned long maximum_alignment(struct elf_phdr *cmds, int nr)
> +{
> + unsigned long alignment = 0;
> + int i;
> +
> + for (i = 0; i < nr; i++) {
> + if (cmds[i].p_type == PT_LOAD) {
> + /* skip non-power of two alignments */
Comment isn't terribly helpful. It explains "what" (which is utterly
obvious from the code anyway) but it fails to explain "why".
> + if (!is_power_of_2(cmds[i].p_align))
> + continue;
> + alignment = max(alignment, cmds[i].p_align);
generates a max() warning:
fs/binfmt_elf.c:435:16: note: in expansion of macro `max'
alignment = max(alignment, cmds[i].p_align);
p_align may be Elf64_Xword, may be Elf32_Word, may be something else.
That's quite unwieldy and I don't like max_t. How about this?
--- a/fs/binfmt_elf.c~fs-binfmt_elf-use-pt_load-p_align-values-for-suitable-start-address-fix
+++ a/fs/binfmt_elf.c
@@ -429,10 +429,12 @@ static unsigned long maximum_alignment(s
for (i = 0; i < nr; i++) {
if (cmds[i].p_type == PT_LOAD) {
+ unsigned long p_align = cmds[i].p_align;
+
/* skip non-power of two alignments */
- if (!is_power_of_2(cmds[i].p_align))
+ if (!is_power_of_2(p_align))
continue;
- alignment = max(alignment, cmds[i].p_align);
+ alignment = max(alignment, p_align);
}
}
_
next prev parent reply other threads:[~2020-08-21 3:51 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-20 17:05 [PATCH v3 0/2] Selecting Load Addresses According to p_align Chris Kennelly
2020-08-20 17:05 ` [PATCH v3 1/2] fs/binfmt_elf: Use PT_LOAD p_align values for suitable start address Chris Kennelly
2020-08-21 3:51 ` Andrew Morton [this message]
2020-08-20 17:05 ` [PATCH v3 2/2] Add self-test for verifying load alignment Chris Kennelly
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200820205116.3467a186cb4ac20342f0ee4b@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=adobriyan@gmail.com \
--cc=ckennelly@google.com \
--cc=clang-built-linux@googlegroups.com \
--cc=hughd@google.com \
--cc=irogers@google.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=maskray@google.com \
--cc=ndesaulniers@google.com \
--cc=rientjes@google.com \
--cc=songliubraving@fb.com \
--cc=sspatil@google.com \
--cc=surenb@google.com \
--cc=viro@zeniv.linux.org.uk \
--subject='Re: [PATCH v3 1/2] fs/binfmt_elf: Use PT_LOAD p_align values for suitable start address.' \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).