2021-04-16 09:14:32 +08:00
|
|
|
# REQUIRES: x86, aarch64
|
|
|
|
# RUN: rm -rf %t; mkdir -p %t
|
|
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-apple-darwin %s -o %t/x86_64.o
|
|
|
|
# RUN: llvm-mc -filetype=obj -triple=arm64_32-apple-watchos %s -o %t/arm64-32.o
|
|
|
|
# RUN: %lld -o %t/x86_64 %t/x86_64.o
|
|
|
|
# RUN: %lld-watchos -o %t/arm64_32 %t/arm64-32.o
|
|
|
|
|
|
|
|
# RUN: llvm-readobj --macho-segment %t/x86_64 > %t/x86_64.out
|
|
|
|
# RUN: echo "Total file size" >> %t/x86_64.out
|
|
|
|
# RUN: wc -c %t/x86_64 >> %t/x86_64.out
|
|
|
|
# RUN: FileCheck %s -DSUFFIX=_64 -DPAGEZERO_SIZE=0x100000000 -DTEXT_ADDR=0x100000000 < %t/x86_64.out
|
|
|
|
|
|
|
|
# RUN: llvm-readobj --macho-segment %t/arm64_32 > %t/arm64-32.out
|
|
|
|
# RUN: echo "Total file size" >> %t/arm64-32.out
|
|
|
|
# RUN: wc -c %t/arm64_32 >> %t/arm64-32.out
|
[lld-macho] Ensure segments are laid out contiguously
codesign/libstuff checks that the `__LLVM` segment is directly
before `__LINKEDIT` by checking that `fileOff + fileSize == next segment
fileOff`. Previously, there would be gaps between the segments due to
the fact that their fileOffs are page-aligned but their fileSizes
aren't. In order to satisfy codesign, we page-align fileOff *before*
calculating fileSize. (I don't think codesign checks for the relative
ordering of other segments, so in theory we could do this just for
`__LLVM`, but ld64 seems to do it for all segments.)
Note that we *don't* round up the fileSize of the `__LINKEDIT` segment.
Since it's the last segment, it doesn't need to worry about contiguity;
in addition, codesign checks that the last (hidden) section in
`__LINKEDIT` covers the last byte of the segment, so if we rounded up
`__LINKEDIT`'s size we would have to do the same for its last section,
which is a bother.
While at it, I also addressed a FIXME in the linkedit-contiguity.s test
to cover more `__LINKEDIT` sections.
Reviewed By: #lld-macho, thakis, alexshap
Differential Revision: https://reviews.llvm.org/D100848
2021-04-21 04:58:07 +08:00
|
|
|
# RUN: FileCheck %s -DSUFFIX= -DPAGEZERO_SIZE=0x4000 -DTEXT_ADDR=0x4000 < %t/arm64-32.out
|
2020-04-03 02:54:05 +08:00
|
|
|
|
2020-04-28 03:50:59 +08:00
|
|
|
## These two segments must always be present at the start of an executable.
|
|
|
|
# CHECK-NOT: Segment {
|
|
|
|
# CHECK: Segment {
|
2021-04-16 09:14:32 +08:00
|
|
|
# CHECK-NEXT: Cmd: LC_SEGMENT[[SUFFIX]]{{$}}
|
2020-07-29 00:56:55 +08:00
|
|
|
# CHECK-NEXT: Name: __PAGEZERO
|
2021-04-16 09:14:32 +08:00
|
|
|
# CHECK-NEXT: Size:
|
2020-07-29 00:56:55 +08:00
|
|
|
# CHECK-NEXT: vmaddr: 0x0
|
2021-04-16 09:14:32 +08:00
|
|
|
# CHECK-NEXT: vmsize: [[PAGEZERO_SIZE]]
|
2020-07-29 00:56:55 +08:00
|
|
|
# CHECK-NEXT: fileoff: 0
|
|
|
|
# CHECK-NEXT: filesize: 0
|
2020-04-28 03:50:59 +08:00
|
|
|
## The kernel won't execute a binary with the wrong protections for __PAGEZERO.
|
2020-07-29 00:56:55 +08:00
|
|
|
# CHECK-NEXT: maxprot: ---
|
|
|
|
# CHECK-NEXT: initprot: ---
|
|
|
|
# CHECK-NEXT: nsects: 0
|
|
|
|
# CHECK-NEXT: flags: 0x0
|
|
|
|
# CHECK-NEXT: }
|
|
|
|
# CHECK-NEXT: Segment {
|
2021-04-16 09:14:32 +08:00
|
|
|
# CHECK-NEXT: Cmd: LC_SEGMENT[[SUFFIX]]{{$}}
|
2020-07-29 00:56:55 +08:00
|
|
|
# CHECK-NEXT: Name: __TEXT
|
2021-04-16 09:14:32 +08:00
|
|
|
# CHECK-NEXT: Size:
|
|
|
|
# CHECK-NEXT: vmaddr: [[TEXT_ADDR]]
|
2020-07-29 00:56:55 +08:00
|
|
|
# CHECK-NEXT: vmsize:
|
2020-04-28 03:50:59 +08:00
|
|
|
## dyld3 assumes that the __TEXT segment starts from the file header
|
2020-07-29 00:56:55 +08:00
|
|
|
# CHECK-NEXT: fileoff: 0
|
|
|
|
# CHECK-NEXT: filesize:
|
2020-10-15 03:46:49 +08:00
|
|
|
# CHECK-NEXT: maxprot: r-x
|
2020-07-29 00:56:55 +08:00
|
|
|
# CHECK-NEXT: initprot: r-x
|
|
|
|
# CHECK-NEXT: nsects: 1
|
|
|
|
# CHECK-NEXT: flags: 0x0
|
|
|
|
# CHECK-NEXT: }
|
2020-04-03 02:54:05 +08:00
|
|
|
|
2020-04-28 03:50:59 +08:00
|
|
|
## Check that we handle max-length names correctly.
|
2021-04-16 09:14:32 +08:00
|
|
|
# CHECK: Cmd: LC_SEGMENT[[SUFFIX]]{{$}}
|
2020-04-28 03:50:59 +08:00
|
|
|
# CHECK-NEXT: Name: maxlen_16ch_name
|
|
|
|
|
2020-07-29 00:56:55 +08:00
|
|
|
## This segment must always be present at the end of an executable, and cover
|
|
|
|
## its last byte.
|
2020-04-28 03:50:59 +08:00
|
|
|
# CHECK: Name: __LINKEDIT
|
2020-07-29 00:56:55 +08:00
|
|
|
# CHECK-NEXT: Size:
|
|
|
|
# CHECK-NEXT: vmaddr:
|
|
|
|
# CHECK-NEXT: vmsize:
|
|
|
|
# CHECK-NEXT: fileoff: [[#%u, LINKEDIT_OFF:]]
|
|
|
|
# CHECK-NEXT: filesize: [[#%u, LINKEDIT_SIZE:]]
|
2020-10-15 03:46:49 +08:00
|
|
|
# CHECK-NEXT: maxprot: r--
|
2020-07-29 00:56:55 +08:00
|
|
|
# CHECK-NEXT: initprot: r--
|
2021-04-16 09:14:32 +08:00
|
|
|
# CHECK-NOT: Cmd: LC_SEGMENT[[SUFFIX]]{{$}}
|
2020-04-03 02:54:05 +08:00
|
|
|
|
2020-07-29 00:56:55 +08:00
|
|
|
# CHECK-LABEL: Total file size
|
|
|
|
# CHECK-NEXT: [[#%u, LINKEDIT_OFF + LINKEDIT_SIZE]]
|
|
|
|
|
2020-04-03 02:54:05 +08:00
|
|
|
.text
|
|
|
|
.global _main
|
|
|
|
_main:
|
|
|
|
ret
|
|
|
|
|
|
|
|
.section maxlen_16ch_name,foo
|