File tree 4 files changed +45
-1
lines changed
4 files changed +45
-1
lines changed Original file line number Diff line number Diff line change @@ -1030,6 +1030,18 @@ void ElfFile<ElfFileParamNames>::rewriteSectionsExecutable()
1030
1030
1031
1031
firstPage -= neededPages * getPageSize ();
1032
1032
startOffset += neededPages * getPageSize ();
1033
+ } else {
1034
+ Elf_Off rewrittenSectionsOffset = sizeof (Elf_Ehdr) + phdrs.size () * sizeof (Elf_Phdr);
1035
+ for (auto & phdr : phdrs)
1036
+ if (rdi (phdr.p_type ) == PT_LOAD &&
1037
+ rdi (phdr.p_offset ) <= rewrittenSectionsOffset &&
1038
+ rdi (phdr.p_offset ) + rdi (phdr.p_filesz ) > rewrittenSectionsOffset &&
1039
+ rdi (phdr.p_filesz ) < neededSpace)
1040
+ {
1041
+ wri (phdr.p_filesz , neededSpace);
1042
+ wri (phdr.p_memsz , neededSpace);
1043
+ break ;
1044
+ }
1033
1045
}
1034
1046
1035
1047
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ src_TESTS = \
50
50
rename-dynamic-symbols.sh \
51
51
overlapping-segments-after-rounding.sh \
52
52
shared-rpath.sh \
53
+ short-first-segment.sh \
53
54
empty-note.sh
54
55
55
56
build_TESTS = \
@@ -58,7 +59,7 @@ build_TESTS = \
58
59
TESTS = $(src_TESTS ) $(build_TESTS )
59
60
60
61
EXTRA_DIST = no-rpath-prebuild $(src_TESTS ) no-rpath-prebuild.sh invalid-elf endianness empty-note \
61
- overlapping-segments-after-rounding
62
+ overlapping-segments-after-rounding short-first-segment.gz
62
63
63
64
TESTS_ENVIRONMENT = PATCHELF_DEBUG=1 STRIP=$(STRIP ) OBJDUMP=$(OBJDUMP ) READELF=$(READELF ) OBJCOPY=$(OBJCOPY )
64
65
Original file line number Diff line number Diff line change
1
+ #! /bin/sh -e
2
+
3
+ PATCHELF=$( readlink -f " ../src/patchelf" )
4
+ SCRATCH=" scratch/$( basename " $0 " .sh) "
5
+ READELF=${READELF:- readelf}
6
+
7
+ EXEC_NAME=" short-first-segment"
8
+
9
+ if ! gzip --version > /dev/null; then
10
+ echo " skipping test: gzip not found"
11
+ exit 77
12
+ fi
13
+
14
+ if test " $( uname -i) " ! = x86_64 || test " $( uname) " ! = Linux; then
15
+ echo " skipping test: not supported on x86_64 Linux"
16
+ exit 77
17
+ fi
18
+
19
+ rm -rf " ${SCRATCH} "
20
+ mkdir -p " ${SCRATCH} "
21
+
22
+ gzip -c -d " ${srcdir:? } /${EXEC_NAME} .gz" > " ${SCRATCH} /${EXEC_NAME} "
23
+ cd " ${SCRATCH} "
24
+
25
+ ldd " ${EXEC_NAME} "
26
+
27
+ ${PATCHELF} --add-rpath lalalalalalalala --output modified1 " ${EXEC_NAME} "
28
+ ldd modified1
29
+
30
+ ${PATCHELF} --add-needed " libXcursor.so.1" --output modified2 modified1
31
+ ldd modified2
You can’t perform that action at this time.
0 commit comments