/src/binutils-gdb/libsframe/sframe-dump.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* sframe-dump.c - Textual dump of .sframe. |
2 | | |
3 | | Copyright (C) 2022-2025 Free Software Foundation, Inc. |
4 | | |
5 | | This file is part of libsframe. |
6 | | |
7 | | This program is free software; you can redistribute it and/or modify |
8 | | it under the terms of the GNU General Public License as published by |
9 | | the Free Software Foundation; either version 3 of the License, or |
10 | | (at your option) any later version. |
11 | | |
12 | | This program is distributed in the hope that it will be useful, |
13 | | but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | | GNU General Public License for more details. |
16 | | |
17 | | You should have received a copy of the GNU General Public License |
18 | | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
19 | | |
20 | | #include <string.h> |
21 | | #include <stdio.h> |
22 | | #include <stdlib.h> |
23 | | #include <inttypes.h> |
24 | | #include "sframe-impl.h" |
25 | | |
26 | 0 | #define SFRAME_HEADER_FLAGS_STR_MAX_LEN 50 |
27 | | |
28 | | /* Return TRUE if the SFrame section is associated with the aarch64 ABIs. */ |
29 | | |
30 | | static bool |
31 | | is_sframe_abi_arch_aarch64 (sframe_decoder_ctx *sfd_ctx) |
32 | 0 | { |
33 | 0 | bool aarch64_p = false; |
34 | |
|
35 | 0 | uint8_t abi_arch = sframe_decoder_get_abi_arch (sfd_ctx); |
36 | 0 | if (abi_arch == SFRAME_ABI_AARCH64_ENDIAN_BIG |
37 | 0 | || abi_arch == SFRAME_ABI_AARCH64_ENDIAN_LITTLE) |
38 | 0 | aarch64_p = true; |
39 | |
|
40 | 0 | return aarch64_p; |
41 | 0 | } |
42 | | |
43 | | static void |
44 | | dump_sframe_header (sframe_decoder_ctx *sfd_ctx) |
45 | 0 | { |
46 | 0 | uint8_t ver; |
47 | 0 | uint8_t flags; |
48 | 0 | char *flags_str; |
49 | 0 | const char *ver_str = NULL; |
50 | 0 | int8_t cfa_fixed_fp_offset; |
51 | 0 | int8_t cfa_fixed_ra_offset; |
52 | 0 | const sframe_header *header = &(sfd_ctx->sfd_header); |
53 | | |
54 | | /* Prepare SFrame section version string. */ |
55 | 0 | const char *version_names[] |
56 | 0 | = { "NULL", |
57 | 0 | "SFRAME_VERSION_1", |
58 | 0 | "SFRAME_VERSION_2" }; |
59 | | |
60 | | /* PS: Keep SFRAME_HEADER_FLAGS_STR_MAX_LEN in sync if adding more members to |
61 | | this array. */ |
62 | 0 | const char *flag_names[] |
63 | 0 | = { "SFRAME_F_FDE_SORTED", |
64 | 0 | "SFRAME_F_FRAME_POINTER" }; |
65 | |
|
66 | 0 | ver = sframe_decoder_get_version (sfd_ctx); |
67 | 0 | if (ver <= SFRAME_VERSION) |
68 | 0 | ver_str = version_names[ver]; |
69 | | |
70 | | /* Prepare SFrame section flags string. */ |
71 | 0 | flags = header->sfh_preamble.sfp_flags; |
72 | 0 | flags_str = (char*) calloc (SFRAME_HEADER_FLAGS_STR_MAX_LEN, sizeof (char)); |
73 | 0 | if (flags) |
74 | 0 | { |
75 | 0 | if (flags & SFRAME_F_FDE_SORTED) |
76 | 0 | strcpy (flags_str, flag_names[0]); |
77 | 0 | if (flags & SFRAME_F_FRAME_POINTER) |
78 | 0 | { |
79 | 0 | if (strlen (flags_str) > 0) |
80 | 0 | strcpy (flags_str, ","); |
81 | 0 | strcpy (flags_str, flag_names[1]); |
82 | 0 | } |
83 | 0 | } |
84 | 0 | else |
85 | 0 | strcpy (flags_str, "NONE"); |
86 | | |
87 | | /* CFA fixed FP and RA offsets. */ |
88 | 0 | cfa_fixed_fp_offset = header->sfh_cfa_fixed_fp_offset; |
89 | 0 | cfa_fixed_ra_offset = header->sfh_cfa_fixed_ra_offset; |
90 | |
|
91 | 0 | const char* subsec_name = "Header"; |
92 | 0 | printf ("\n"); |
93 | 0 | printf (" %s :\n", subsec_name); |
94 | 0 | printf ("\n"); |
95 | 0 | printf (" Version: %s\n", ver_str); |
96 | 0 | printf (" Flags: %s\n", flags_str); |
97 | 0 | if (cfa_fixed_fp_offset != SFRAME_CFA_FIXED_FP_INVALID) |
98 | 0 | printf (" CFA fixed FP offset: %d\n", cfa_fixed_fp_offset); |
99 | 0 | if (cfa_fixed_ra_offset != SFRAME_CFA_FIXED_RA_INVALID) |
100 | 0 | printf (" CFA fixed RA offset: %d\n", cfa_fixed_ra_offset); |
101 | 0 | printf (" Num FDEs: %d\n", sframe_decoder_get_num_fidx (sfd_ctx)); |
102 | 0 | printf (" Num FREs: %d\n", header->sfh_num_fres); |
103 | |
|
104 | 0 | free (flags_str); |
105 | 0 | } |
106 | | |
107 | | static void |
108 | | dump_sframe_func_with_fres (sframe_decoder_ctx *sfd_ctx, |
109 | | unsigned int funcidx, |
110 | | uint64_t sec_addr) |
111 | 0 | { |
112 | 0 | uint32_t j = 0; |
113 | 0 | uint32_t num_fres = 0; |
114 | 0 | uint32_t func_size = 0; |
115 | 0 | int32_t func_start_address = 0; |
116 | 0 | unsigned char func_info = 0; |
117 | |
|
118 | 0 | uint64_t func_start_pc_vma = 0; |
119 | 0 | uint64_t fre_start_pc_vma = 0; |
120 | 0 | const char *base_reg_str[] = {"fp", "sp"}; |
121 | 0 | int32_t cfa_offset = 0; |
122 | 0 | int32_t fp_offset = 0; |
123 | 0 | int32_t ra_offset = 0; |
124 | 0 | uint8_t base_reg_id = 0; |
125 | 0 | int err[3] = {0, 0, 0}; |
126 | |
|
127 | 0 | sframe_frame_row_entry fre; |
128 | | |
129 | | /* Get the SFrame function descriptor. */ |
130 | 0 | sframe_decoder_get_funcdesc (sfd_ctx, funcidx, &num_fres, |
131 | 0 | &func_size, &func_start_address, &func_info); |
132 | | /* Calculate the virtual memory address for function start pc. */ |
133 | 0 | func_start_pc_vma = func_start_address + sec_addr; |
134 | | |
135 | | /* Mark FDEs with [m] where the FRE start address is interpreted as a |
136 | | mask. */ |
137 | 0 | int fde_type_addrmask_p = (SFRAME_V1_FUNC_FDE_TYPE (func_info) |
138 | 0 | == SFRAME_FDE_TYPE_PCMASK); |
139 | 0 | const char *fde_type_marker |
140 | 0 | = (fde_type_addrmask_p ? "[m]" : " "); |
141 | |
|
142 | 0 | printf ("\n func idx [%d]: pc = 0x%"PRIx64 ", size = %d bytes", |
143 | 0 | funcidx, |
144 | 0 | func_start_pc_vma, |
145 | 0 | func_size); |
146 | |
|
147 | 0 | if (is_sframe_abi_arch_aarch64 (sfd_ctx) |
148 | 0 | && (SFRAME_V1_FUNC_PAUTH_KEY (func_info) == SFRAME_AARCH64_PAUTH_KEY_B)) |
149 | 0 | printf (", pauth = B key"); |
150 | |
|
151 | 0 | char temp[100]; |
152 | |
|
153 | 0 | printf ("\n %-7s%-8s %-10s%-10s%-13s", |
154 | 0 | "STARTPC", fde_type_marker, "CFA", "FP", "RA"); |
155 | 0 | for (j = 0; j < num_fres; j++) |
156 | 0 | { |
157 | 0 | sframe_decoder_get_fre (sfd_ctx, funcidx, j, &fre); |
158 | |
|
159 | 0 | fre_start_pc_vma = (fde_type_addrmask_p |
160 | 0 | ? fre.fre_start_addr |
161 | 0 | : func_start_pc_vma + fre.fre_start_addr); |
162 | | |
163 | | /* FIXME - fixup the err caching in array. |
164 | | assert no error for base reg id. */ |
165 | 0 | base_reg_id = sframe_fre_get_base_reg_id (&fre, &err[0]); |
166 | 0 | cfa_offset = sframe_fre_get_cfa_offset (sfd_ctx, &fre, &err[0]); |
167 | 0 | fp_offset = sframe_fre_get_fp_offset (sfd_ctx, &fre, &err[1]); |
168 | 0 | ra_offset = sframe_fre_get_ra_offset (sfd_ctx, &fre, &err[2]); |
169 | | |
170 | | /* Dump CFA info. */ |
171 | 0 | printf ("\n"); |
172 | 0 | printf (" %016"PRIx64, fre_start_pc_vma); |
173 | 0 | sprintf (temp, "%s+%d", base_reg_str[base_reg_id], cfa_offset); |
174 | 0 | printf (" %-10s", temp); |
175 | | |
176 | | /* Dump SP/FP info. */ |
177 | 0 | if (err[1] == 0) |
178 | 0 | sprintf (temp, "c%+d", fp_offset); |
179 | 0 | else |
180 | 0 | strcpy (temp, "u"); |
181 | 0 | printf ("%-10s", temp); |
182 | | |
183 | | /* Dump RA info. |
184 | | If an ABI does not track RA offset, e.g., AMD64, display 'f', |
185 | | else display the offset d as 'c+-d'. */ |
186 | 0 | if (sframe_decoder_get_fixed_ra_offset (sfd_ctx) |
187 | 0 | != SFRAME_CFA_FIXED_RA_INVALID) |
188 | 0 | strcpy (temp, "f"); |
189 | 0 | else if (err[2] == 0) |
190 | 0 | sprintf (temp, "c%+d", ra_offset); |
191 | 0 | else |
192 | 0 | strcpy (temp, "u"); |
193 | | |
194 | | /* Mark SFrame FRE's RA information with "[s]" if the RA is mangled |
195 | | with signature bits. */ |
196 | 0 | const char *ra_mangled_p_str |
197 | 0 | = ((sframe_fre_get_ra_mangled_p (sfd_ctx, &fre, &err[2])) |
198 | 0 | ? "[s]" : " "); |
199 | 0 | strcat (temp, ra_mangled_p_str); |
200 | 0 | printf ("%-13s", temp); |
201 | 0 | } |
202 | 0 | } |
203 | | |
204 | | static void |
205 | | dump_sframe_functions (sframe_decoder_ctx *sfd_ctx, uint64_t sec_addr) |
206 | 0 | { |
207 | 0 | uint32_t i; |
208 | 0 | uint32_t num_fdes; |
209 | |
|
210 | 0 | const char* subsec_name = "Function Index"; |
211 | 0 | printf ("\n %s :\n", subsec_name); |
212 | |
|
213 | 0 | num_fdes = sframe_decoder_get_num_fidx (sfd_ctx); |
214 | 0 | for (i = 0; i < num_fdes; i++) |
215 | 0 | { |
216 | 0 | dump_sframe_func_with_fres (sfd_ctx, i, sec_addr); |
217 | 0 | printf ("\n"); |
218 | 0 | } |
219 | 0 | } |
220 | | |
221 | | void |
222 | | dump_sframe (sframe_decoder_ctx *sfd_ctx, uint64_t sec_addr) |
223 | 0 | { |
224 | 0 | uint8_t ver; |
225 | |
|
226 | 0 | dump_sframe_header (sfd_ctx); |
227 | |
|
228 | 0 | ver = sframe_decoder_get_version (sfd_ctx); |
229 | 0 | if (ver == SFRAME_VERSION) |
230 | 0 | dump_sframe_functions (sfd_ctx, sec_addr); |
231 | 0 | else |
232 | 0 | printf ("\n No further information can be displayed. %s", |
233 | 0 | "SFrame version not supported\n"); |
234 | 0 | } |