1 /* Public API to SFrame.
3 Copyright (C) 2022 Free Software Foundation, Inc.
5 This file is part of libsframe.
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.
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.
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/>. */
30 typedef struct sframe_decoder_ctx sframe_decoder_ctx
;
31 typedef struct sframe_encoder_ctx sframe_encoder_ctx
;
33 #define MAX_OFFSET_BYTES (SFRAME_FRE_OFFSET_4B * 2 * 3)
35 /* User interfacing SFrame Row Entry.
36 An abstraction provided by libsframe so the consumer is decoupled from
37 the binary format representation of the same. */
39 typedef struct sframe_frame_row_entry
41 uint32_t fre_start_addr
;
42 unsigned char fre_info
;
43 unsigned char fre_offsets
[MAX_OFFSET_BYTES
];
44 } sframe_frame_row_entry
;
46 #define SFRAME_ERR ((int) -1)
48 /* This macro holds information about all the available SFrame
49 errors. It is used to form both an enum holding all the error
50 constants, and also the error strings themselves. To use, define
51 _SFRAME_FIRST and _SFRAME_ITEM to expand as you like, then
52 mention the macro name. See the enum after this for an example. */
53 #define _SFRAME_ERRORS \
54 _SFRAME_FIRST (SFRAME_ERR_VERSION_INVAL, "SFrame version not supported.") \
55 _SFRAME_ITEM (SFRAME_ERR_NOMEM, "Out of Memory.") \
56 _SFRAME_ITEM (SFRAME_ERR_INVAL, "Corrupt SFrame.") \
57 _SFRAME_ITEM (SFRAME_ERR_BUF_INVAL, "Buffer does not contain SFrame data.") \
58 _SFRAME_ITEM (SFRAME_ERR_DCTX_INVAL, "Corrupt SFrame decoder.") \
59 _SFRAME_ITEM (SFRAME_ERR_ECTX_INVAL, "Corrupt SFrame encoder.") \
60 _SFRAME_ITEM (SFRAME_ERR_FDE_INVAL, "Corrput FDE.") \
61 _SFRAME_ITEM (SFRAME_ERR_FRE_INVAL, "Corrupt FRE.") \
62 _SFRAME_ITEM (SFRAME_ERR_FDE_NOTFOUND,"FDE not found.") \
63 _SFRAME_ITEM (SFRAME_ERR_FDE_NOTSORTED, "FDEs not sorted.") \
64 _SFRAME_ITEM (SFRAME_ERR_FRE_NOTFOUND,"FRE not found.") \
65 _SFRAME_ITEM (SFRAME_ERR_FREOFFSET_NOPRESENT,"FRE offset not present.")
67 #define SFRAME_ERR_BASE 2000 /* Base value for libsframe errnos. */
71 #define _SFRAME_FIRST(NAME, STR) NAME = SFRAME_ERR_BASE
72 #define _SFRAME_ITEM(NAME, STR) , NAME
78 /* Count of SFrame errors. */
79 #define SFRAME_ERR_NERR (SFRAME_ERR_FREOFFSET_NOPRESENT - SFRAME_ERR_BASE + 1)
81 /* Get the error message string. */
84 sframe_errmsg (int error
);
86 /* Get FDE function info given a FRE_TYPE. */
89 sframe_fde_func_info (unsigned int fre_type
, unsigned int fde_type
);
91 /* Gather the FRE type given the function size. */
94 sframe_calc_fre_type (unsigned int func_size
);
96 /* The SFrame Decoder. */
98 /* Decode the specified SFrame buffer CF_BUF of size CF_SIZE and return the
99 new SFrame decoder context. Sets ERRP for the caller if any error. */
100 extern sframe_decoder_ctx
*
101 sframe_decode (const char *cf_buf
, size_t cf_size
, int *errp
);
103 /* Free the decoder context. */
105 sframe_decoder_free (sframe_decoder_ctx
**dctx
);
107 /* Get the size of the SFrame header from the decoder context DCTX. */
109 sframe_decoder_get_hdr_size (sframe_decoder_ctx
*dctx
);
111 /* Get the SFrame's abi/arch info. */
113 sframe_decoder_get_abi_arch (sframe_decoder_ctx
*dctx
);
115 /* Return the number of function descriptor entries in the SFrame decoder
118 sframe_decoder_get_num_fidx (sframe_decoder_ctx
*dctx
);
120 /* Get the fixed FP offset from the decoder context DCTX. */
122 sframe_decoder_get_fixed_fp_offset (sframe_decoder_ctx
*dctx
);
124 /* Get the fixed RA offset from the decoder context DCTX. */
126 sframe_decoder_get_fixed_ra_offset (sframe_decoder_ctx
*dctx
);
128 /* Find the function descriptor entry which contains the specified address. */
129 extern sframe_func_desc_entry
*
130 sframe_get_funcdesc_with_addr (sframe_decoder_ctx
*dctx
,
131 int32_t addr
, int *errp
);
133 /* Find the SFrame Frame Row Entry which contains the PC. Returns
134 SFRAME_ERR if failure. */
137 sframe_find_fre (sframe_decoder_ctx
*ctx
, int32_t pc
,
138 sframe_frame_row_entry
*frep
);
140 /* Get the FRE_IDX'th FRE of the function at FUNC_IDX'th function
141 index entry in the SFrame decoder CTX. Returns error code as
144 sframe_decoder_get_fre (sframe_decoder_ctx
*ctx
,
145 unsigned int func_idx
,
146 unsigned int fre_idx
,
147 sframe_frame_row_entry
*fre
);
149 /* Get the data (NUM_FRES, FUNC_START_ADDRESS) from the function
150 descriptor entry at index I'th in the decoder CTX. If failed,
151 return error code. */
153 sframe_decoder_get_funcdesc (sframe_decoder_ctx
*ctx
,
157 int32_t *func_start_address
,
158 unsigned char *func_info
);
160 /* SFrame textual dump. */
162 dump_sframe (sframe_decoder_ctx
*decoder
, uint64_t addr
);
164 /* Get the base reg id from the FRE info. Sets errp if fails. */
166 sframe_fre_get_base_reg_id (sframe_frame_row_entry
*fre
, int *errp
);
168 /* Get the CFA offset from the FRE. If the offset is invalid, sets errp. */
170 sframe_fre_get_cfa_offset (sframe_decoder_ctx
*dtcx
,
171 sframe_frame_row_entry
*fre
, int *errp
);
173 /* Get the FP offset from the FRE. If the offset is invalid, sets errp. */
175 sframe_fre_get_fp_offset (sframe_decoder_ctx
*dctx
,
176 sframe_frame_row_entry
*fre
, int *errp
);
178 /* Get the RA offset from the FRE. If the offset is invalid, sets errp. */
180 sframe_fre_get_ra_offset (sframe_decoder_ctx
*dctx
,
181 sframe_frame_row_entry
*fre
, int *errp
);
183 /* The SFrame Encoder. */
185 /* Create an encoder context with the given SFrame format version VER, FLAGS
186 and ABI information. Sets errp if failure. */
187 extern sframe_encoder_ctx
*
188 sframe_encode (unsigned char ver
, unsigned char flags
, int abi
,
189 int8_t fixed_fp_offset
, int8_t fixed_ra_offset
, int *errp
);
191 /* Free the encoder context. */
193 sframe_encoder_free (sframe_encoder_ctx
**encoder
);
195 /* Get the size of the SFrame header from the encoder ctx ENCODER. */
197 sframe_encoder_get_hdr_size (sframe_encoder_ctx
*encoder
);
199 /* Get the abi/arch info from the SFrame encoder context CTX. */
201 sframe_encoder_get_abi_arch (sframe_encoder_ctx
*encoder
);
203 /* Return the number of function descriptor entries in the SFrame encoder
206 sframe_encoder_get_num_fidx (sframe_encoder_ctx
*encoder
);
208 /* Add an FRE to function at FUNC_IDX'th function descriptor index entry in
209 the encoder context. */
211 sframe_encoder_add_fre (sframe_encoder_ctx
*encoder
,
212 unsigned int func_idx
,
213 sframe_frame_row_entry
*frep
);
215 /* Add a new function descriptor entry with START_ADDR, FUNC_SIZE and NUM_FRES
218 sframe_encoder_add_funcdesc (sframe_encoder_ctx
*encoder
,
221 unsigned char func_info
,
224 /* Serialize the contents of the encoder and return the buffer. ENCODED_SIZE
225 is updated to the size of the buffer. Sets ERRP if failure. */
227 sframe_encoder_write (sframe_encoder_ctx
*encoder
,
228 size_t *encoded_size
, int *errp
);
234 #endif /* _SFRAME_API_H */