public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Rebecca Cran" <rebecca@bsdio.com>
To: "Pedro Falcato" <pedro.falcato@gmail.com>,
	"Marvin Häuser" <mhaeuser@posteo.de>,
	"Liming Gao" <gaoliming@byosoft.com.cn>,
	"Ard Biesheuvel" <ardb+tianocore@kernel.org>
Cc: "devel@edk2.groups.io" <devel@edk2.groups.io>
Subject: Linker scripts use of "-z common-page-size=0x20" etc.
Date: Mon, 3 Apr 2023 14:33:22 -0600	[thread overview]
Message-ID: <9befc3e1-02b6-c0c4-7eba-cccd84dedd3d@bsdio.com> (raw)

As part of my work on the toolchain definitions, I've come across a 
situation where ld.lld fails to align sections correctly, due to it 
being invoked via clang with the '-n' option, which causes GenFw to fail 
with "Section address not aligned to its own alignment.".

The following messages are printed:


ld.lld: warning: -z common-page-size set, but paging disabled by omagic 
or nmagic ld.lld: warning: address (0x558) of section .data is not a 
multiple of alignment (16)

I tracked the problem down to GccBase.lds and ClangBase.lds, which have:

/* * The alignment of the .data section should be less than or equal to 
the * alignment of the .text section. This ensures that the relative 
offset * between these sections is the same in the ELF and the PE/COFF 
versions of * this binary. */ .data ALIGN(ALIGNOF(.text)) : 
ALIGN(CONSTANT(COMMONPAGESIZE)) { *(.data .data.* .gnu.linkonce.d.*) 
*(.bss .bss.*) }

I can work around the problem by removing "ALIGN(ALIGNOF(.text)", but 
I'm wondering if our use of COMMONPAGESIZE/MAXPAGESIZE is correct.


We pass in a value of 0x20, 0x40 or 0x1000 to "-z common-page-size" with 
0x20 being the most common value.

Given the page size of the target will never be 32 bytes, the following 
comment on https://reviews.llvm.org/D61688 makes sense:


"There is at least one linkerscript in Tianocore edk2 that (ab)uses -n 
-z common-page-size=0x20 to use CONSTANT(COMMONPAGESIZE) as if it were a 
preprocessor macro set with -D in the compiler. The usual approach to 
this is to pre-process the linkerscript."


I'm wondering what the correct approach is here: should we do something 
similar to how we set PECOFF_HEADER_SIZE and define a SECTION_ALIGNMENT 
symbol? Or, as discussed on Discord should we just use 
CONSTANT(MAXPAGESIZE) and ignore how it's normally used to specify the 
maximum allowable page size for an executable?


-- 
Rebecca Cran


             reply	other threads:[~2023-04-03 20:33 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-03 20:33 Rebecca Cran [this message]
2023-04-03 20:58 ` Linker scripts use of "-z common-page-size=0x20" etc Marvin Häuser
2023-04-03 22:56   ` Rebecca Cran
2023-04-04  7:22 ` Ard Biesheuvel
2023-04-04  7:43   ` Marvin Häuser
2023-04-04 11:10   ` Rebecca Cran
2023-04-04 14:03     ` Ard Biesheuvel
2023-04-04 14:10       ` Marvin Häuser

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-list 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=9befc3e1-02b6-c0c4-7eba-cccd84dedd3d@bsdio.com \
    --to=devel@edk2.groups.io \
    /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