From: Song Liu <songliubraving@meta.com>
To: Kees Cook <keescook@chromium.org>
Cc: Song Liu <song@kernel.org>, Fangrui Song <maskray@google.com>,
LKML <linux-kernel@vger.kernel.org>,
Kernel Team <kernel-team@meta.com>,
"x86@kernel.org" <x86@kernel.org>,
clang-built-linux <llvm@lists.linux.dev>,
"linux-hardening@vger.kernel.org"
<linux-hardening@vger.kernel.org>
Subject: Re: [PATCH] x86/vmlinux: Fix linker fill bytes for ld.lld
Date: Wed, 6 Sep 2023 18:16:48 +0000 [thread overview]
Message-ID: <34CC4A68-CE36-4DE5-B1A1-AB7FD075C0EB@fb.com> (raw)
In-Reply-To: <202309061102.DB794AD295@keescook>
> On Sep 6, 2023, at 11:06 AM, Kees Cook <keescook@chromium.org> wrote:
>
> On Wed, Sep 06, 2023 at 10:52:15AM -0700, Song Liu wrote:
>> With ":text =0xcccc", ld.lld fills unused text area with 0xcccc0000.
>> Example objdump -D output:
>>
>> ffffffff82b04203: 00 00 add %al,(%rax)
>> ffffffff82b04205: cc int3
>> ffffffff82b04206: cc int3
>> ffffffff82b04207: 00 00 add %al,(%rax)
>> ffffffff82b04209: cc int3
>> ffffffff82b0420a: cc int3
>>
>> Replace it with ":text =0xcccccccc", so we get the following instead:
>>
>> ffffffff82b04203: cc int3
>> ffffffff82b04204: cc int3
>> ffffffff82b04205: cc int3
>> ffffffff82b04206: cc int3
>> ffffffff82b04207: cc int3
>> ffffffff82b04208: cc int3
>>
>> gcc/ld doesn't seem to have the same issue. The generated code stays the
>> same for gcc/ld.
>>
>> Cc: Kees Cook <keescook@chromium.org>
>> Cc: x86@kernel.org
>> Signed-off-by: Song Liu <song@kernel.org>
>
> Ah! Thanks for the catch... I wonder if ld.lld should be fixed too? My
> understanding was that ":text =...." was defined as being explicitly
> u16?
Per my experiment, gcc/ld gives same output for :text =0xcc, :text =0xcccc,
and :text =0xcccccccc; while ld.lld handles :text = as u32, so :text =0xcc
with ld.lld gives:
ffffffff82b042a1: 00 cc add %cl,%ah
ffffffff82b042a3: 00 00 add %al,(%rax)
ffffffff82b042a5: 00 cc add %cl,%ah
ffffffff82b042a7: 00 00 add %al,(%rax)
ffffffff82b042a9: 00 cc add %cl,%ah
ffffffff82b042ab: 00 00 add %al,(%rax)
I am not sure what the right behavior is per specification.
Thanks,
Song
next prev parent reply other threads:[~2023-09-06 18:16 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-06 17:52 Song Liu
2023-09-06 18:06 ` Kees Cook
2023-09-06 18:16 ` Song Liu [this message]
2023-09-06 18:27 ` Fangrui Song
2023-09-06 19:58 ` Peter Zijlstra
2023-09-06 20:02 ` Song Liu
2023-09-06 21:57 ` [tip: x86/urgent] x86/build: Fix linker fill bytes quirk/incompatibility " tip-bot2 for Song Liu
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=34CC4A68-CE36-4DE5-B1A1-AB7FD075C0EB@fb.com \
--to=songliubraving@meta.com \
--cc=keescook@chromium.org \
--cc=kernel-team@meta.com \
--cc=linux-hardening@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=llvm@lists.linux.dev \
--cc=maskray@google.com \
--cc=song@kernel.org \
--cc=x86@kernel.org \
/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
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®