mirror of
https://github.com/openharmony/third_party_elfutils.git
synced 2026-07-19 19:43:34 -04:00
d7193bd7c9
We forgot to mark the shdr_flags dirty when only the sh_size or sh_offset changed during elf_update (). This meant that if there were no other shdr changes we only wrote out the section data, but didn't write out the shdr table to the file. Add a testcase that puts some sections in the reverse order and then writes out the resulting file again without doing any other updates. This would show the issue after write out of the (re-reversed) ELF file (the .shstrtab section offset would be wrong causing all section names to be garbage). Also run a self test. Signed-off-by: Mark Wielaard <mark@klomp.org>
46 lines
1.6 KiB
Bash
Executable File
46 lines
1.6 KiB
Bash
Executable File
#! /bin/sh
|
|
# Copyright (C) 2019 Red Hat, Inc.
|
|
# This file is part of elfutils.
|
|
#
|
|
# This file is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# elfutils is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
. $srcdir/test-subr.sh
|
|
|
|
test_reverse_self ()
|
|
{
|
|
in_file="$1"
|
|
base_name="$(basename ${in_file})"
|
|
out_file="${base_name}.rev"
|
|
out_file_mmap="${out_file}.mmap"
|
|
|
|
tempfiles ${out_file} ${out_file_mmap}
|
|
|
|
# Reverse the offsets (the files should still be the same otherwise)
|
|
testrun ${abs_builddir}/elfcopy --reverse-offs ${in_file} ${out_file}
|
|
testrun ${abs_top_builddir}/src/elfcmp ${in_file} ${out_file}
|
|
testrun ${abs_top_builddir}/src/elflint --gnu ${out_file}
|
|
# An in-place nop will likely revert them back
|
|
testrun ${abs_builddir}/elfrdwrnop ${out_file}
|
|
testrun ${abs_top_builddir}/src/elfcmp ${in_file} ${out_file}
|
|
testrun ${abs_top_builddir}/src/elflint --gnu ${out_file}
|
|
}
|
|
|
|
# Only really makes sense for ET_REL files, but try all, just to check
|
|
# it also works if we keep the order for the allocated sections.
|
|
for file in $self_test_files; do
|
|
test_reverse_self $file
|
|
done
|
|
|
|
exit 0
|