libctf: opening
[deliverable/binutils-gdb.git] / libctf / ctf-impl.h
CommitLineData
60da9d95
NA
1/* Implementation header.
2 Copyright (C) 2019 Free Software Foundation, Inc.
3
4 This file is part of libctf.
5
6 libctf is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
10
11 This program is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14 See the GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; see the file COPYING. If not see
18 <http://www.gnu.org/licenses/>. */
19
20#ifndef _CTF_IMPL_H
21#define _CTF_IMPL_H
22
23#include "config.h"
24#include <sys/errno.h>
25#include <ctf-api.h>
26#include <sys/types.h>
94585e7f
NA
27#include <stdlib.h>
28#include <stdarg.h>
29#include <stdio.h>
30#include <stdint.h>
31#include <limits.h>
32#include <ctype.h>
33#include <elf.h>
60da9d95
NA
34
35#ifdef __cplusplus
36extern "C"
37 {
38#endif
39
40/* Compiler attributes. */
41
42#if defined (__GNUC__)
43
44/* GCC. We assume that all compilers claiming to be GCC support sufficiently
45 many GCC attributes that the code below works. If some non-GCC compilers
46 masquerading as GCC in fact do not implement these attributes, version checks
47 may be required. */
48
49/* We use the _libctf_*_ pattern to avoid clashes with any future attribute
50 macros glibc may introduce, which have names of the pattern
51 __attribute_blah__. */
52
53#define _libctf_printflike_(string_index,first_to_check) \
54 __attribute__ ((__format__ (__printf__, (string_index), (first_to_check))))
55#define _libctf_unlikely_(x) __builtin_expect ((x), 0)
56#define _libctf_unused_ __attribute__ ((__unused__))
57#define _libctf_malloc_ __attribute__((__malloc__))
58
59#endif
60
c0754cdd
NA
61/* libctf in-memory state. */
62
63typedef struct ctf_fixed_hash ctf_hash_t; /* Private to ctf-hash.c. */
64typedef struct ctf_dynhash ctf_dynhash_t; /* Private to ctf-hash.c. */
65
a5be9bbe
NA
66typedef struct ctf_strs
67{
68 const char *cts_strs; /* Base address of string table. */
69 size_t cts_len; /* Size of string table in bytes. */
70} ctf_strs_t;
71
72typedef struct ctf_dmodel
73{
74 const char *ctd_name; /* Data model name. */
75 int ctd_code; /* Data model code. */
76 size_t ctd_pointer; /* Size of void * in bytes. */
77 size_t ctd_char; /* Size of char in bytes. */
78 size_t ctd_short; /* Size of short in bytes. */
79 size_t ctd_int; /* Size of int in bytes. */
80 size_t ctd_long; /* Size of long in bytes. */
81} ctf_dmodel_t;
82
83typedef struct ctf_lookup
84{
85 const char *ctl_prefix; /* String prefix for this lookup. */
86 size_t ctl_len; /* Length of prefix string in bytes. */
87 ctf_hash_t *ctl_hash; /* Pointer to hash table for lookup. */
88} ctf_lookup_t;
89
90typedef struct ctf_fileops
91{
92 uint32_t (*ctfo_get_kind) (uint32_t);
93 uint32_t (*ctfo_get_root) (uint32_t);
94 uint32_t (*ctfo_get_vlen) (uint32_t);
95 ssize_t (*ctfo_get_ctt_size) (const ctf_file_t *, const ctf_type_t *,
96 ssize_t *, ssize_t *);
97 ssize_t (*ctfo_get_vbytes) (unsigned short, ssize_t, size_t);
98} ctf_fileops_t;
99
94585e7f
NA
100typedef struct ctf_list
101{
102 struct ctf_list *l_prev; /* Previous pointer or tail pointer. */
103 struct ctf_list *l_next; /* Next pointer or head pointer. */
104} ctf_list_t;
105
a5be9bbe
NA
106typedef enum
107 {
108 CTF_PREC_BASE,
109 CTF_PREC_POINTER,
110 CTF_PREC_ARRAY,
111 CTF_PREC_FUNCTION,
112 CTF_PREC_MAX
113 } ctf_decl_prec_t;
114
115typedef struct ctf_decl_node
116{
117 ctf_list_t cd_list; /* Linked list pointers. */
118 ctf_id_t cd_type; /* Type identifier. */
119 uint32_t cd_kind; /* Type kind. */
120 uint32_t cd_n; /* Type dimension if array. */
121} ctf_decl_node_t;
122
123typedef struct ctf_decl
124{
125 ctf_list_t cd_nodes[CTF_PREC_MAX]; /* Declaration node stacks. */
126 int cd_order[CTF_PREC_MAX]; /* Storage order of decls. */
127 ctf_decl_prec_t cd_qualp; /* Qualifier precision. */
128 ctf_decl_prec_t cd_ordp; /* Ordered precision. */
129 char *cd_buf; /* Buffer for output. */
130 int cd_err; /* Saved error value. */
131 int cd_enomem; /* Nonzero if OOM during printing. */
132} ctf_decl_t;
133
134typedef struct ctf_dmdef
135{
136 ctf_list_t dmd_list; /* List forward/back pointers. */
137 char *dmd_name; /* Name of this member. */
138 ctf_id_t dmd_type; /* Type of this member (for sou). */
139 unsigned long dmd_offset; /* Offset of this member in bits (for sou). */
140 int dmd_value; /* Value of this member (for enum). */
141} ctf_dmdef_t;
142
143typedef struct ctf_dtdef
144{
145 ctf_list_t dtd_list; /* List forward/back pointers. */
146 char *dtd_name; /* Name associated with definition (if any). */
147 ctf_id_t dtd_type; /* Type identifier for this definition. */
148 ctf_type_t dtd_data; /* Type node (see <ctf.h>). */
149 union
150 {
151 ctf_list_t dtu_members; /* struct, union, or enum */
152 ctf_arinfo_t dtu_arr; /* array */
153 ctf_encoding_t dtu_enc; /* integer or float */
154 ctf_id_t *dtu_argv; /* function */
155 ctf_slice_t dtu_slice; /* slice */
156 } dtd_u;
157} ctf_dtdef_t;
158
159typedef struct ctf_dvdef
160{
161 ctf_list_t dvd_list; /* List forward/back pointers. */
162 char *dvd_name; /* Name associated with variable. */
163 ctf_id_t dvd_type; /* Type of variable. */
164 unsigned long dvd_snapshots; /* Snapshot count when inserted. */
165} ctf_dvdef_t;
166
167typedef struct ctf_bundle
168{
169 ctf_file_t *ctb_file; /* CTF container handle. */
170 ctf_id_t ctb_type; /* CTF type identifier. */
171 ctf_dtdef_t *ctb_dtd; /* CTF dynamic type definition (if any). */
172} ctf_bundle_t;
173
174/* The ctf_file is the structure used to represent a CTF container to library
175 clients, who see it only as an opaque pointer. Modifications can therefore
176 be made freely to this structure without regard to client versioning. The
177 ctf_file_t typedef appears in <ctf-api.h> and declares a forward tag.
178
179 NOTE: ctf_update() requires that everything inside of ctf_file either be an
180 immediate value, a pointer to dynamically allocated data *outside* of the
181 ctf_file itself, or a pointer to statically allocated data. If you add a
182 pointer to ctf_file that points to something within the ctf_file itself,
183 you must make corresponding changes to ctf_update(). */
184
185struct ctf_file
186{
187 const ctf_fileops_t *ctf_fileops; /* Version-specific file operations. */
188 ctf_sect_t ctf_data; /* CTF data from object file. */
189 ctf_sect_t ctf_symtab; /* Symbol table from object file. */
190 ctf_sect_t ctf_strtab; /* String table from object file. */
191 ctf_hash_t *ctf_structs; /* Hash table of struct types. */
192 ctf_hash_t *ctf_unions; /* Hash table of union types. */
193 ctf_hash_t *ctf_enums; /* Hash table of enum types. */
194 ctf_hash_t *ctf_names; /* Hash table of remaining type names. */
195 ctf_lookup_t ctf_lookups[5]; /* Pointers to hashes for name lookup. */
196 ctf_strs_t ctf_str[2]; /* Array of string table base and bounds. */
197 const unsigned char *ctf_base; /* Base of CTF header + uncompressed buffer. */
198 const unsigned char *ctf_buf; /* Uncompressed CTF data buffer. */
199 size_t ctf_size; /* Size of CTF header + uncompressed data. */
200 uint32_t *ctf_sxlate; /* Translation table for symtab entries. */
201 unsigned long ctf_nsyms; /* Number of entries in symtab xlate table. */
202 uint32_t *ctf_txlate; /* Translation table for type IDs. */
203 uint32_t *ctf_ptrtab; /* Translation table for pointer-to lookups. */
204 struct ctf_varent *ctf_vars; /* Sorted variable->type mapping. */
205 unsigned long ctf_nvars; /* Number of variables in ctf_vars. */
206 unsigned long ctf_typemax; /* Maximum valid type ID number. */
207 const ctf_dmodel_t *ctf_dmodel; /* Data model pointer (see above). */
208 struct ctf_file *ctf_parent; /* Parent CTF container (if any). */
209 const char *ctf_parlabel; /* Label in parent container (if any). */
210 const char *ctf_parname; /* Basename of parent (if any). */
211 char *ctf_dynparname; /* Dynamically allocated name of parent. */
212 uint32_t ctf_parmax; /* Highest type ID of a parent type. */
213 uint32_t ctf_refcnt; /* Reference count (for parent links). */
214 uint32_t ctf_flags; /* Libctf flags (see below). */
215 int ctf_errno; /* Error code for most recent error. */
216 int ctf_version; /* CTF data version. */
217 ctf_dynhash_t *ctf_dthash; /* Hash of dynamic type definitions. */
218 ctf_dynhash_t *ctf_dtbyname; /* DTDs, indexed by name. */
219 ctf_list_t ctf_dtdefs; /* List of dynamic type definitions. */
220 ctf_dynhash_t *ctf_dvhash; /* Hash of dynamic variable mappings. */
221 ctf_list_t ctf_dvdefs; /* List of dynamic variable definitions. */
222 size_t ctf_dtvstrlen; /* Total length of dynamic type+var strings. */
223 unsigned long ctf_dtnextid; /* Next dynamic type id to assign. */
224 unsigned long ctf_dtoldid; /* Oldest id that has been committed. */
225 unsigned long ctf_snapshots; /* ctf_snapshot() plus ctf_update() count. */
226 unsigned long ctf_snapshot_lu; /* ctf_snapshot() call count at last update. */
227 ctf_archive_t *ctf_archive; /* Archive this ctf_file_t came from. */
228 char *ctf_tmp_typeslice; /* Storage for slicing up type names. */
229 size_t ctf_tmp_typeslicelen; /* Size of the typeslice. */
230 void *ctf_specific; /* Data for ctf_get/setspecific(). */
231};
232
233/* Return x rounded up to an alignment boundary.
234 eg, P2ROUNDUP(0x1234, 0x100) == 0x1300 (0x13*align)
235 eg, P2ROUNDUP(0x5600, 0x100) == 0x5600 (0x56*align) */
236#define P2ROUNDUP(x, align) (-(-(x) & -(align)))
237
238/* * If an offs is not aligned already then round it up and align it. */
239#define LCTF_ALIGN_OFFS(offs, align) ((offs + (align - 1)) & ~(align - 1))
240
241#define LCTF_TYPE_ISPARENT(fp, id) ((id) <= fp->ctf_parmax)
242#define LCTF_TYPE_ISCHILD(fp, id) ((id) > fp->ctf_parmax)
243#define LCTF_TYPE_TO_INDEX(fp, id) ((id) & (fp->ctf_parmax))
244#define LCTF_INDEX_TO_TYPE(fp, id, child) (child ? ((id) | (fp->ctf_parmax+1)) : \
245 (id))
246
247#define LCTF_INDEX_TO_TYPEPTR(fp, i) \
248 ((ctf_type_t *)((uintptr_t)(fp)->ctf_buf + (fp)->ctf_txlate[(i)]))
249
250#define LCTF_INFO_KIND(fp, info) ((fp)->ctf_fileops->ctfo_get_kind(info))
251#define LCTF_INFO_ISROOT(fp, info) ((fp)->ctf_fileops->ctfo_get_root(info))
252#define LCTF_INFO_VLEN(fp, info) ((fp)->ctf_fileops->ctfo_get_vlen(info))
253#define LCTF_VBYTES(fp, kind, size, vlen) \
254 ((fp)->ctf_fileops->ctfo_get_vbytes(kind, size, vlen))
255
256static inline ssize_t ctf_get_ctt_size (const ctf_file_t *fp,
257 const ctf_type_t *tp,
258 ssize_t *sizep,
259 ssize_t *incrementp)
260{
261 return (fp->ctf_fileops->ctfo_get_ctt_size (fp, tp, sizep, incrementp));
262}
263
264#define LCTF_CHILD 0x0001 /* CTF container is a child */
265#define LCTF_RDWR 0x0002 /* CTF container is writable */
266#define LCTF_DIRTY 0x0004 /* CTF container has been modified */
267
268extern const ctf_type_t *ctf_lookup_by_id (ctf_file_t **, ctf_id_t);
269
c0754cdd
NA
270typedef unsigned int (*ctf_hash_fun) (const void *ptr);
271extern unsigned int ctf_hash_integer (const void *ptr);
272extern unsigned int ctf_hash_string (const void *ptr);
273
274typedef int (*ctf_hash_eq_fun) (const void *, const void *);
275extern int ctf_hash_eq_integer (const void *, const void *);
276extern int ctf_hash_eq_string (const void *, const void *);
277
278typedef void (*ctf_hash_free_fun) (void *);
279
280extern ctf_hash_t *ctf_hash_create (unsigned long, ctf_hash_fun, ctf_hash_eq_fun);
281extern int ctf_hash_insert_type (ctf_hash_t *, ctf_file_t *, uint32_t, uint32_t);
282extern int ctf_hash_define_type (ctf_hash_t *, ctf_file_t *, uint32_t, uint32_t);
283extern ctf_id_t ctf_hash_lookup_type (ctf_hash_t *, ctf_file_t *, const char *);
284extern uint32_t ctf_hash_size (const ctf_hash_t *);
285extern void ctf_hash_destroy (ctf_hash_t *);
286
287extern ctf_dynhash_t *ctf_dynhash_create (ctf_hash_fun, ctf_hash_eq_fun,
288 ctf_hash_free_fun, ctf_hash_free_fun);
289extern int ctf_dynhash_insert (ctf_dynhash_t *, void *, void *);
290extern void ctf_dynhash_remove (ctf_dynhash_t *, const void *);
291extern void *ctf_dynhash_lookup (ctf_dynhash_t *, const void *);
292extern void ctf_dynhash_destroy (ctf_dynhash_t *);
293
94585e7f
NA
294#define ctf_list_prev(elem) ((void *)(((ctf_list_t *)(elem))->l_prev))
295#define ctf_list_next(elem) ((void *)(((ctf_list_t *)(elem))->l_next))
296
297extern void ctf_list_append (ctf_list_t *, void *);
298extern void ctf_list_prepend (ctf_list_t *, void *);
299extern void ctf_list_delete (ctf_list_t *, void *);
300
a5be9bbe
NA
301extern void ctf_dtd_insert (ctf_file_t *, ctf_dtdef_t *);
302extern void ctf_dtd_delete (ctf_file_t *, ctf_dtdef_t *);
303extern ctf_dtdef_t *ctf_dtd_lookup (const ctf_file_t *, ctf_id_t);
304extern ctf_dtdef_t *ctf_dynamic_type (const ctf_file_t *, ctf_id_t);
305
306extern void ctf_dvd_insert (ctf_file_t *, ctf_dvdef_t *);
307extern void ctf_dvd_delete (ctf_file_t *, ctf_dvdef_t *);
308extern ctf_dvdef_t *ctf_dvd_lookup (const ctf_file_t *, const char *);
309
94585e7f
NA
310extern const char *ctf_strraw (ctf_file_t *, uint32_t);
311extern const char *ctf_strptr (ctf_file_t *, uint32_t);
312
313extern void *ctf_set_open_errno (int *, int);
314extern long ctf_set_errno (ctf_file_t *, int);
315
60da9d95
NA
316_libctf_malloc_
317extern void *ctf_data_alloc (size_t);
318extern void ctf_data_free (void *, size_t);
319extern void ctf_data_protect (void *, size_t);
320
321_libctf_malloc_
322extern void *ctf_mmap (size_t length, size_t offset, int fd);
323extern void ctf_munmap (void *, size_t);
324extern ssize_t ctf_pread (int fd, void *buf, ssize_t count, off_t offset);
325
326_libctf_malloc_
327extern void *ctf_alloc (size_t);
328extern void ctf_free (void *);
329
94585e7f
NA
330_libctf_malloc_
331extern char *ctf_strdup (const char *);
332extern char *ctf_str_append (char *, const char *);
333extern const char *ctf_strerror (int);
334
a5be9bbe
NA
335extern ctf_id_t ctf_type_resolve_unsliced (ctf_file_t *, ctf_id_t);
336extern int ctf_type_kind_unsliced (ctf_file_t *, ctf_id_t);
337
60da9d95
NA
338_libctf_printflike_ (1, 2)
339extern void ctf_dprintf (const char *, ...);
340extern void libctf_init_debug (void);
341
94585e7f
NA
342extern Elf64_Sym *ctf_sym_to_elf64 (const Elf32_Sym *src, Elf64_Sym *dst);
343
a5be9bbe
NA
344/* Variables, all underscore-prepended. */
345
346extern const char _CTF_NULLSTR[]; /* empty string */
347
60da9d95
NA
348extern int _libctf_debug; /* debugging messages enabled */
349
350#ifdef __cplusplus
351}
352#endif
353
354#endif /* _CTF_IMPL_H */
This page took 0.044563 seconds and 4 git commands to generate.