mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-30 21:44:19 +08:00
ce9a87252c
SFrame version 2 encodes the size of repetitive insn block explicitly in the format. Add information in the SFrame FDE to convey the size of the block of repeating instructions. This information is used only for SFrame FDEs of type SFRAME_FDE_TYPE_PCMASK. Introduce two extra bytes for padding: this ensures that the memory accesses to the members of the SFrame Frame Descriptor Entry (FDE) are naturally aligned. gas generates SFrame section with version SFRAME_VERSION_2 by default. libsframe provides two new APIs to: - get an SFrame FDE data from the decoder context, and - add an SFrame FDE to the encoder context. The additional argument (for rep_block_size) is useful for SFrame FDEs where FDE type is SFRAME_FDE_TYPE_PCMASK. The linker will generate the output SFrame sections in the SFRAME_VERSION_2 format. If the input sections offered to the linker are not all in the SFRAME_VERSION_2 format, the linker issues an error to the user. objdump/readelf will show the following message to the user if .sframe section in SFRAME_VERSION_1 format is seen: "No further information can be displayed. SFrame version not supported." In other words, like the rest of the binutils, only the current SFrame format version, i.e., SFRAME_VERSION_2 is supported by the textual dump facilities. bfd/ * elf-sframe.c (_bfd_elf_merge_section_sframe): Generate an output SFrame section with version SFRAME_VERSION_2. Also, error out if the SFrame sections do not all have SFRAME_VERSION_2. * elfxx-x86.c (_bfd_x86_elf_create_sframe_plt): Generate SFrame section for plt entries with version SFRAME_VERSION_2. gas/ * gen-sframe.c (sframe_set_version): Update to SFRAME_VERSION_2. (output_sframe): Likewise. gas/testsuite/ * gas/cfi-sframe/cfi-sframe-aarch64-1.d: Use SFRAME_VERSION_2. * gas/cfi-sframe/cfi-sframe-aarch64-2.d: Likewise. * gas/cfi-sframe/cfi-sframe-aarch64-pac-ab-key-1.d: Likewise. * gas/cfi-sframe/cfi-sframe-common-1.d: Likewise. * gas/cfi-sframe/cfi-sframe-common-2.d: Likewise. * gas/cfi-sframe/cfi-sframe-common-3.d: Likewise. * gas/cfi-sframe/cfi-sframe-common-4.d: Likewise. * gas/cfi-sframe/cfi-sframe-common-5.d: Likewise. * gas/cfi-sframe/cfi-sframe-common-6.d: Likewise. * gas/cfi-sframe/cfi-sframe-common-7.d: Likewise. * gas/cfi-sframe/cfi-sframe-common-8.d: Likewise. * gas/cfi-sframe/cfi-sframe-x86_64-1.d: Likewise. * gas/cfi-sframe/common-empty-1.d: Likewise. * gas/cfi-sframe/common-empty-2.d: Likewise. * gas/cfi-sframe/common-empty-3.d: Likewise. ld/testsuite/ * ld-aarch64/sframe-simple-1.d: Adjust for SFRAME_VERSION_2. * ld-x86-64/sframe-plt-1.d: Likewise. * ld-x86-64/sframe-simple-1.d: Likewise. libsframe/ * libsframe.ver: Add the new APIs. * sframe.c (sframe_decoder_get_funcdesc_v2): New definition. (sframe_encoder_add_funcdesc_v2): Likewise. (sframe_header_sanity_check_p): Include SFRAME_VERSION_2. (sframe_fre_check_range_p): Get rep_block_size info from SFrame FDE. * sframe-dump.c (dump_sframe_header): Add support for SFRAME_VERSION_2. (dump_sframe): Inform user if SFrame section in SFRAME_VERSION_1 format is seen. libsframe/testsuite/ * libsframe.decode/DATA-BE: Regenerated data file. * libsframe.decode/DATA1: Likewise. * libsframe.decode/DATA2: Likewise. * libsframe.find/plt-findfre-1.c: Use new API in the testcase. include/ * sframe.h: Add member to encode size of the code block of repeating instructions. Add 2 bytes of padding. * sframe-api.h (sframe_decoder_get_funcdesc_v2): New declaration. (sframe_encoder_add_funcdesc_v2): Likewise.
223 lines
6.3 KiB
C
223 lines
6.3 KiB
C
/* sframe-dump.c - Textual dump of .sframe.
|
|
|
|
Copyright (C) 2022-2023 Free Software Foundation, Inc.
|
|
|
|
This file is part of libsframe.
|
|
|
|
This program 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.
|
|
|
|
This program 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/>. */
|
|
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <inttypes.h>
|
|
#include "sframe-impl.h"
|
|
|
|
#define SFRAME_HEADER_FLAGS_STR_MAX_LEN 50
|
|
|
|
/* Return TRUE if the SFrame section is associated with the aarch64 ABIs. */
|
|
|
|
static bool
|
|
is_sframe_abi_arch_aarch64 (sframe_decoder_ctx *sfd_ctx)
|
|
{
|
|
bool aarch64_p = false;
|
|
|
|
uint8_t abi_arch = sframe_decoder_get_abi_arch (sfd_ctx);
|
|
if (abi_arch == SFRAME_ABI_AARCH64_ENDIAN_BIG
|
|
|| abi_arch == SFRAME_ABI_AARCH64_ENDIAN_LITTLE)
|
|
aarch64_p = true;
|
|
|
|
return aarch64_p;
|
|
}
|
|
|
|
static void
|
|
dump_sframe_header (sframe_decoder_ctx *sfd_ctx)
|
|
{
|
|
uint8_t ver;
|
|
uint8_t flags;
|
|
char *flags_str;
|
|
const char *ver_str = NULL;
|
|
const sframe_header *header = &(sfd_ctx->sfd_header);
|
|
|
|
/* Prepare SFrame section version string. */
|
|
const char *version_names[]
|
|
= { "NULL",
|
|
"SFRAME_VERSION_1",
|
|
"SFRAME_VERSION_2" };
|
|
|
|
/* PS: Keep SFRAME_HEADER_FLAGS_STR_MAX_LEN in sync if adding more members to
|
|
this array. */
|
|
const char *flag_names[]
|
|
= { "SFRAME_F_FDE_SORTED",
|
|
"SFRAME_F_FRAME_POINTER" };
|
|
|
|
ver = sframe_decoder_get_version (sfd_ctx);
|
|
if (ver <= SFRAME_VERSION)
|
|
ver_str = version_names[ver];
|
|
|
|
/* Prepare SFrame section flags string. */
|
|
flags = header->sfh_preamble.sfp_flags;
|
|
flags_str = (char*) calloc (sizeof (char), SFRAME_HEADER_FLAGS_STR_MAX_LEN);
|
|
if (flags)
|
|
{
|
|
if (flags & SFRAME_F_FDE_SORTED)
|
|
strcpy (flags_str, flag_names[0]);
|
|
if (flags & SFRAME_F_FRAME_POINTER)
|
|
{
|
|
if (strlen (flags_str) > 0)
|
|
strcpy (flags_str, ",");
|
|
strcpy (flags_str, flag_names[1]);
|
|
}
|
|
}
|
|
else
|
|
strcpy (flags_str, "NONE");
|
|
|
|
const char* subsec_name = "Header";
|
|
printf ("\n");
|
|
printf (" %s :\n", subsec_name);
|
|
printf ("\n");
|
|
printf (" Version: %s\n", ver_str);
|
|
printf (" Flags: %s\n", flags_str);
|
|
printf (" Num FDEs: %d\n", sframe_decoder_get_num_fidx (sfd_ctx));
|
|
printf (" Num FREs: %d\n", header->sfh_num_fres);
|
|
|
|
free (flags_str);
|
|
}
|
|
|
|
static void
|
|
dump_sframe_func_with_fres (sframe_decoder_ctx *sfd_ctx,
|
|
unsigned int funcidx,
|
|
uint64_t sec_addr)
|
|
{
|
|
uint32_t j = 0;
|
|
uint32_t num_fres = 0;
|
|
uint32_t func_size = 0;
|
|
int32_t func_start_address = 0;
|
|
unsigned char func_info = 0;
|
|
|
|
uint64_t func_start_pc_vma = 0;
|
|
uint64_t fre_start_pc_vma = 0;
|
|
const char *base_reg_str[] = {"fp", "sp"};
|
|
int32_t cfa_offset = 0;
|
|
int32_t fp_offset = 0;
|
|
int32_t ra_offset = 0;
|
|
uint8_t base_reg_id = 0;
|
|
int err[3] = {0, 0, 0};
|
|
|
|
sframe_frame_row_entry fre;
|
|
|
|
/* Get the SFrame function descriptor. */
|
|
sframe_decoder_get_funcdesc (sfd_ctx, funcidx, &num_fres,
|
|
&func_size, &func_start_address, &func_info);
|
|
/* Calculate the virtual memory address for function start pc. */
|
|
func_start_pc_vma = func_start_address + sec_addr;
|
|
|
|
/* Mark FDEs with [m] where the FRE start address is interpreted as a
|
|
mask. */
|
|
int fde_type_addrmask_p = (SFRAME_V1_FUNC_FDE_TYPE (func_info)
|
|
== SFRAME_FDE_TYPE_PCMASK);
|
|
const char *fde_type_marker
|
|
= (fde_type_addrmask_p ? "[m]" : " ");
|
|
|
|
printf ("\n func idx [%d]: pc = 0x%"PRIx64 ", size = %d bytes",
|
|
funcidx,
|
|
func_start_pc_vma,
|
|
func_size);
|
|
|
|
if (is_sframe_abi_arch_aarch64 (sfd_ctx)
|
|
&& (SFRAME_V1_FUNC_PAUTH_KEY (func_info) == SFRAME_AARCH64_PAUTH_KEY_B))
|
|
printf (", pauth = B key");
|
|
|
|
char temp[100];
|
|
|
|
printf ("\n %-7s%-8s %-10s%-10s%-13s",
|
|
"STARTPC", fde_type_marker, "CFA", "FP", "RA");
|
|
for (j = 0; j < num_fres; j++)
|
|
{
|
|
sframe_decoder_get_fre (sfd_ctx, funcidx, j, &fre);
|
|
|
|
fre_start_pc_vma = (fde_type_addrmask_p
|
|
? fre.fre_start_addr
|
|
: func_start_pc_vma + fre.fre_start_addr);
|
|
|
|
/* FIXME - fixup the err caching in array.
|
|
assert no error for base reg id. */
|
|
base_reg_id = sframe_fre_get_base_reg_id (&fre, &err[0]);
|
|
cfa_offset = sframe_fre_get_cfa_offset (sfd_ctx, &fre, &err[0]);
|
|
fp_offset = sframe_fre_get_fp_offset (sfd_ctx, &fre, &err[1]);
|
|
ra_offset = sframe_fre_get_ra_offset (sfd_ctx, &fre, &err[2]);
|
|
|
|
/* Dump CFA info. */
|
|
printf ("\n");
|
|
printf (" %016"PRIx64, fre_start_pc_vma);
|
|
sprintf (temp, "%s+%d", base_reg_str[base_reg_id], cfa_offset);
|
|
printf (" %-10s", temp);
|
|
|
|
/* Dump SP/FP info. */
|
|
if (err[1] == 0)
|
|
sprintf (temp, "c%+d", fp_offset);
|
|
else
|
|
strcpy (temp, "u");
|
|
printf ("%-10s", temp);
|
|
|
|
/* Dump RA info.
|
|
If an ABI does not track RA offset, e.g., AMD64, display a 'u',
|
|
else display the offset d as 'c+-d'. */
|
|
if (sframe_decoder_get_fixed_ra_offset(sfd_ctx)
|
|
!= SFRAME_CFA_FIXED_RA_INVALID)
|
|
strcpy (temp, "u");
|
|
else if (err[2] == 0)
|
|
sprintf (temp, "c%+d", ra_offset);
|
|
|
|
/* Mark SFrame FRE's RA information with "[s]" if the RA is mangled
|
|
with signature bits. */
|
|
const char *ra_mangled_p_str
|
|
= ((sframe_fre_get_ra_mangled_p (sfd_ctx, &fre, &err[2]))
|
|
? "[s]" : " ");
|
|
strcat (temp, ra_mangled_p_str);
|
|
printf ("%-13s", temp);
|
|
}
|
|
}
|
|
|
|
static void
|
|
dump_sframe_functions (sframe_decoder_ctx *sfd_ctx, uint64_t sec_addr)
|
|
{
|
|
uint32_t i;
|
|
uint32_t num_fdes;
|
|
|
|
const char* subsec_name = "Function Index";
|
|
printf ("\n %s :\n", subsec_name);
|
|
|
|
num_fdes = sframe_decoder_get_num_fidx (sfd_ctx);
|
|
for (i = 0; i < num_fdes; i++)
|
|
{
|
|
dump_sframe_func_with_fres (sfd_ctx, i, sec_addr);
|
|
printf ("\n");
|
|
}
|
|
}
|
|
|
|
void
|
|
dump_sframe (sframe_decoder_ctx *sfd_ctx, uint64_t sec_addr)
|
|
{
|
|
uint8_t ver;
|
|
|
|
dump_sframe_header (sfd_ctx);
|
|
|
|
ver = sframe_decoder_get_version (sfd_ctx);
|
|
if (ver == SFRAME_VERSION)
|
|
dump_sframe_functions (sfd_ctx, sec_addr);
|
|
else
|
|
printf ("\n No further information can be displayed. %s",
|
|
"SFrame version not supported\n");
|
|
}
|