1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
|
// Copyright (c) Meta Platforms, Inc. and affiliates.
// SPDX-License-Identifier: LGPL-2.1-or-later
/**
* @file
*
* Type internals.
*
* See @ref TypeInternals.
*/
#ifndef DRGN_TYPE_H
#define DRGN_TYPE_H
#include <assert.h>
#include "drgn_internal.h"
#include "handler.h"
#include "hash_table.h"
#include "vector.h"
/**
* @ingroup Internals
*
* @defgroup TypeInternals Types
*
* Type internals.
*
* This provides internal helpers for creating and accessing types.
* Additionally, standard C types need special handling for C's various operator
* conversion rules, so this provides helpers for working with standard C types.
*
* @{
*/
/** Byte-order specification. */
enum drgn_byte_order {
/** Big-endian. */
DRGN_BIG_ENDIAN,
/** Little-endian. */
DRGN_LITTLE_ENDIAN,
/** Endianness of the program. */
DRGN_PROGRAM_ENDIAN,
};
static inline enum drgn_byte_order
drgn_byte_order_from_little_endian(bool little_endian)
{
return little_endian ? DRGN_LITTLE_ENDIAN : DRGN_BIG_ENDIAN;
}
/** Registered type finding callback in a @ref drgn_program. */
struct drgn_type_finder {
struct drgn_handler handler;
struct drgn_type_finder_ops ops;
void *arg;
};
DEFINE_HASH_SET_TYPE(drgn_dedupe_type_set, struct drgn_type *);
/** <tt>(type, member name)</tt> pair. */
struct drgn_member_key {
struct drgn_type *type;
const char *name;
size_t name_len;
};
/** Type, offset, and bit field size of a type member. */
struct drgn_member_value {
struct drgn_type_member *member;
uint64_t bit_offset;
};
#ifdef DOXYGEN
/**
* @struct drgn_member_map
*
* Map of compound type members.
*
* The key is a @ref drgn_member_key, and the value is a @ref drgn_member_value.
*
* @struct drgn_type_set
*
* Set of types compared by address.
*/
#else
DEFINE_HASH_MAP_TYPE(drgn_member_map, struct drgn_member_key,
struct drgn_member_value);
DEFINE_HASH_SET_TYPE(drgn_type_set, struct drgn_type *);
#endif
/**
* @defgroup TypeCreation Type creation
*
* Creating type descriptors.
*
* These functions create type descriptors. They are valid for the lifetime of
* the program that owns them.
*
* A few kinds of types have variable-length fields: structure, union, and class
* types have members, enumerated types have enumerators, and function types
* have parameters. These fields are constructed with a @em builder before
* creating the type.
*
* @{
*/
/**
* Get the void type for the given @ref drgn_language.
*
* The void type does not have any fields, so a program has a single type
* descriptor per language to represent it. This function cannot fail.
*
* @param[in] prog Program owning type.
* @param[in] lang Language of the type or @c NULL for the default language of
* @p prog.
*/
struct drgn_type *drgn_void_type(struct drgn_program *prog,
const struct drgn_language *lang);
/**
* Create an integer type.
*
* @param[in] prog Program owning type.
* @param[in] name Name of the type. Not copied; must remain valid for the
* lifetime of @p prog. Must not be @c NULL.
* @param[in] size Size of the type in bytes.
* @param[in] is_signed Whether the type is signed.
* @param[in] lang Language of the type or @c NULL for the default language of
* @p prog.
* @param[out] ret Returned type.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_int_type_create(struct drgn_program *prog,
const char *name, uint64_t size,
bool is_signed,
enum drgn_byte_order byte_order,
const struct drgn_language *lang,
struct drgn_type **ret);
/**
* Create a boolean type.
*
* @param[in] prog Program owning type.
* @param[in] name Name of the type. Not copied; must remain valid for the
* lifetime of @p prog. Must not be @c NULL.
* @param[in] size Size of the type in bytes.
* @param[in] lang Language of the type or @c NULL for the default language of
* @p prog.
* @param[out] ret Returned type.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_bool_type_create(struct drgn_program *prog,
const char *name, uint64_t size,
enum drgn_byte_order byte_order,
const struct drgn_language *lang,
struct drgn_type **ret);
/**
* Create a floating-point type.
*
* @param[in] prog Program owning type.
* @param[in] name Name of the type. Not copied; must remain valid for the
* lifetime of @p prog. Must not be @c NULL.
* @param[in] size Size of the type in bytes.
* @param[in] lang Language of the type or @c NULL for the default language of
* @p prog.
* @param[out] ret Returned type.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_float_type_create(struct drgn_program *prog,
const char *name, uint64_t size,
enum drgn_byte_order byte_order,
const struct drgn_language *lang,
struct drgn_type **ret);
DEFINE_VECTOR_TYPE(drgn_type_template_parameter_vector,
struct drgn_type_template_parameter);
/**
* Common builder shared between compound and function types for template
* parameters.
*/
struct drgn_template_parameters_builder {
struct drgn_program *prog;
struct drgn_type_template_parameter_vector parameters;
};
/**
* Add a @ref drgn_type_template_parameter to a @ref
* drgn_template_parameters_builder.
*
* On success, @p builder takes ownership of @p argument.
*/
struct drgn_error *
drgn_template_parameters_builder_add(struct drgn_template_parameters_builder *builder,
const union drgn_lazy_object *argument,
const char *name, bool is_default);
DEFINE_VECTOR_TYPE(drgn_type_member_vector, struct drgn_type_member);
/** Builder for members of a structure, union, or class type. */
struct drgn_compound_type_builder {
struct drgn_template_parameters_builder template_builder;
enum drgn_type_kind kind;
struct drgn_type_member_vector members;
};
/**
* Initialize a @ref drgn_compound_type_builder.
*
* @param[in] kind One of @ref DRGN_TYPE_STRUCT, @ref DRGN_TYPE_UNION, or @ref
* DRGN_TYPE_CLASS.
*/
void drgn_compound_type_builder_init(struct drgn_compound_type_builder *builder,
struct drgn_program *prog,
enum drgn_type_kind kind);
/**
* Deinitialize a @ref drgn_compound_type_builder.
*
* Don't call this if @ref drgn_compound_type_create() succeeded.
*/
void
drgn_compound_type_builder_deinit(struct drgn_compound_type_builder *builder);
/**
* Add a @ref drgn_type_member to a @ref drgn_compound_type_builder.
*
* On success, @p builder takes ownership of @p object.
*/
struct drgn_error *
drgn_compound_type_builder_add_member(struct drgn_compound_type_builder *builder,
const union drgn_lazy_object *object,
const char *name, uint64_t bit_offset);
/**
* Create a structure, union, or class type.
*
* On success, this takes ownership of @p builder.
*
* @param[in] builder Builder containing members and template parameters. @c
* object/@c argument and @c name of each member and template parameter must
* remain valid for the lifetime of @c prog. If incomplete, must not contain any
* members.
* @param[in] tag Name of the type. Not copied; must remain valid for the
* lifetime of @c prog. May be @c NULL if the type is anonymous.
* @param[in] size Size of the type in bytes. Must be zero if the type is
* incomplete.
* @param[in] is_complete Whether the type is complete.
* @param[in] lang Language of the type or @c NULL for the default language of
* @c prog.
* @param[out] ret Returned type.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_compound_type_create(struct drgn_compound_type_builder *builder,
const char *tag, uint64_t size, bool is_complete,
const struct drgn_language *lang,
struct drgn_type **ret);
DEFINE_VECTOR_TYPE(drgn_type_enumerator_vector, struct drgn_type_enumerator);
/** Builder for enumerators of an enumerated type. */
struct drgn_enum_type_builder {
struct drgn_program *prog;
struct drgn_type_enumerator_vector enumerators;
};
/** Initialize a @ref drgn_enum_type_builder. */
void drgn_enum_type_builder_init(struct drgn_enum_type_builder *builder,
struct drgn_program *prog);
/**
* Deinitialize a @ref drgn_enum_type_builder.
*
* Don't call this if @ref drgn_enum_type_create() succeeded.
*/
void drgn_enum_type_builder_deinit(struct drgn_enum_type_builder *builder);
/**
* Add a @ref drgn_type_enumerator with a signed value to a @ref
* drgn_enum_type_builder.
*/
struct drgn_error *
drgn_enum_type_builder_add_signed(struct drgn_enum_type_builder *builder,
const char *name, int64_t svalue);
/**
* Add a @ref drgn_type_enumerator with an unsigned value to a @ref
* drgn_enum_type_builder.
*/
struct drgn_error *
drgn_enum_type_builder_add_unsigned(struct drgn_enum_type_builder *builder,
const char *name, uint64_t uvalue);
/**
* Create an enumerated type.
*
* On success, this takes ownership of @p builder.
*
* @param[in] builder Builder containing enumerators. @c name of each enumerator
* must remain valid for the lifetime of @c builder->prog.
* @param[in] tag Name of the type. This string is not copied. It may be @c NULL
* if the type is anonymous.
* @param[in] compatible_type Type compatible with this enumerated type. Must be
* an integer type.
* @param[in] lang Language of the type or @c NULL for the default language of
* @c builder->prog.
* @param[out] ret Returned type.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *drgn_enum_type_create(struct drgn_enum_type_builder *builder,
const char *tag,
struct drgn_type *compatible_type,
const struct drgn_language *lang,
struct drgn_type **ret);
/**
* Create an incomplete enumerated type.
*
* @c compatible_type is set to @c NULL and @c num_enumerators is set to zero.
*
* @param[in] prog Program owning type.
* @param[in] tag Name of the type. Not copied; must remain valid for the
* lifetime of @p prog. May be @c NULL if the type is anonymous.
* @param[in] lang Language of the type or @c NULL for the default language of
* @p prog.
* @param[out] ret Returned type.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_incomplete_enum_type_create(struct drgn_program *prog, const char *tag,
const struct drgn_language *lang,
struct drgn_type **ret);
/**
* Create a typedef type.
*
* @param[in] prog Program owning type.
* @param[in] name Name of the type. Not copied; must remain valid for the
* lifetime of @p prog. Must not be @c NULL.
* @param[in] aliased_type Type aliased by the typedef.
* @param[in] lang Language of the type or @c NULL for the default language of
* @p prog.
* @param[out] ret Returned type.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_typedef_type_create(struct drgn_program *prog, const char *name,
struct drgn_qualified_type aliased_type,
const struct drgn_language *lang,
struct drgn_type **ret);
/**
* Create a pointer type.
*
* @param[in] prog Program owning type.
* @param[in] referenced_type Type referenced by the pointer type.
* @param[in] size Size of the type in bytes.
* @param[in] lang Language of the type or @c NULL for the default language of
* @p prog.
* @param[out] ret Returned type.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_pointer_type_create(struct drgn_program *prog,
struct drgn_qualified_type referenced_type,
uint64_t size, enum drgn_byte_order byte_order,
const struct drgn_language *lang,
struct drgn_type **ret);
/**
* Create an array type.
*
* @param[in] prog Program owning type.
* @param[in] element_type Type of an element in the array type.
* @param[in] length Number of elements in the array type.
* @param[in] lang Language of the type or @c NULL for the default language of
* @p prog.
* @param[out] ret Returned type.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_array_type_create(struct drgn_program *prog,
struct drgn_qualified_type element_type,
uint64_t length, const struct drgn_language *lang,
struct drgn_type **ret);
/**
* Create an incomplete array type.
*
* @c length is set to zero.
*
* @param[in] prog Program owning type.
* @param[in] element_type Type of an element in the array type.
* @param[in] lang Language of the type or @c NULL for the default language of
* @p prog.
* @param[out] ret Returned type.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_incomplete_array_type_create(struct drgn_program *prog,
struct drgn_qualified_type element_type,
const struct drgn_language *lang,
struct drgn_type **ret);
DEFINE_VECTOR_TYPE(drgn_type_parameter_vector, struct drgn_type_parameter);
/** Builder for parameters of a function type. */
struct drgn_function_type_builder {
struct drgn_template_parameters_builder template_builder;
struct drgn_type_parameter_vector parameters;
};
/** Initialize a @ref drgn_function_type_builder. */
void drgn_function_type_builder_init(struct drgn_function_type_builder *builder,
struct drgn_program *prog);
/**
* Deinitialize a @ref drgn_function_type_builder.
*
* Don't call this if @ref drgn_function_type_create() succeeded.
*/
void
drgn_function_type_builder_deinit(struct drgn_function_type_builder *builder);
/**
* Add a @ref drgn_type_parameter to a @ref drgn_function_type_builder.
*
* On success, @p builder takes ownership of @p default_argument.
*/
struct drgn_error *
drgn_function_type_builder_add_parameter(struct drgn_function_type_builder *builder,
const union drgn_lazy_object *default_argument,
const char *name);
/**
* Create a function type.
*
* On success, this takes ownership of @p builder.
*
* @param[in] builder Builder containing parameters and template parameters. @c
* default_argument/@c argument and @c name of each parameter and template
* parameter must remain valid for the lifetime of @c prog.
* @param[in] return_type Type returned by the function type.
* @param[in] is_variadic Whether the function type is variadic.
* @param[in] lang Language of the type or @c NULL for the default language of
* @c prog.
* @param[out] ret Returned type.
* @return @c NULL on success, non-@c NULL on error.
*/
struct drgn_error *
drgn_function_type_create(struct drgn_function_type_builder *builder,
struct drgn_qualified_type return_type,
bool is_variadic, const struct drgn_language *lang,
struct drgn_type **ret);
/** @} */
/** Create a copy of a type with a different byte order. */
struct drgn_error *
drgn_type_with_byte_order(struct drgn_type **type,
struct drgn_type **underlying_type,
enum drgn_byte_order byte_order);
/** Mapping from @ref drgn_type_kind to the spelling of that kind. */
extern const char * const drgn_type_kind_spelling[];
/**
* Parse the name of an unqualified primitive C type.
*
* @return The type, or @ref DRGN_NOT_PRIMITIVE_TYPE if @p s is not the name of
* a primitive C type.
*/
enum drgn_primitive_type c_parse_specifier_list(const char *s);
/**
* Get the type of a @ref drgn_type with all typedefs removed.
*
* I.e., the underlying type is the aliased type of the type if it is a typedef,
* recursively.
*/
static inline struct drgn_type *drgn_underlying_type(struct drgn_type *type)
{
struct drgn_type *underlying_type;
underlying_type = type;
while (drgn_type_kind(underlying_type) == DRGN_TYPE_TYPEDEF)
underlying_type = drgn_type_type(underlying_type).type;
return underlying_type;
}
/**
* Get whether an enumerated type is signed.
*
* This is true if and only if the compatible integer type is signed.
*
* @param[in] type Enumerated type. It must be complete.
*/
static inline bool drgn_enum_type_is_signed(struct drgn_type *type)
{
assert(type->_type);
return drgn_type_is_signed(type->_type);
}
/**
* Get whether a type is anonymous (i.e., the type has no name).
*
* This may be @c false for structure, union, class, and enum types. Otherwise,
* it is always true.
*/
static inline bool drgn_type_is_anonymous(struct drgn_type *type)
{
switch (drgn_type_kind(type)) {
case DRGN_TYPE_STRUCT:
case DRGN_TYPE_UNION:
case DRGN_TYPE_CLASS:
case DRGN_TYPE_ENUM:
return !drgn_type_tag(type);
default:
return false;
}
}
/**
* Returned whether a @ref drgn_type is an integer type.
*
* This is true for integer, boolean, and enumerated types, as well typedefs
* with an underlying type of one of those.
*/
bool drgn_type_is_integer(struct drgn_type *type);
/**
* Return whether a @ref drgn_type is an arithmetic type.
*
* This is true for integer types (see @ref drgn_type_is_integer()) as well as
* floating-point types and equivalent typedefs.
*/
bool drgn_type_is_arithmetic(struct drgn_type *type);
/**
* Return whether a @ref drgn_type is a scalar type.
*
* This is true for arithmetic types (see @ref drgn_type_is_arithmetic()) as
* well as pointer types and equivalent typedefs.
*/
bool drgn_type_is_scalar(struct drgn_type *type);
/**
* Get the size of a type in bits.
*
* This is the same as multplying the result of @ref drgn_type_sizeof() by 8
* except that it handles overflow.
*/
struct drgn_error *drgn_type_bit_size(struct drgn_type *type,
uint64_t *ret);
struct drgn_error *drgn_dwarf_type_alignment(struct drgn_type *type,
uint64_t *ret);
/** Initialize type-related fields in a @ref drgn_program. */
void drgn_program_init_types(struct drgn_program *prog);
/** Deinitialize type-related fields in a @ref drgn_program. */
void drgn_program_deinit_types(struct drgn_program *prog);
/**
* Find a parsed type in a @ref drgn_program.
*
* This should only be called by implementations of @ref
* drgn_language::find_type()
*
* @param[in] kind Kind of type to find. Must be @ref DRGN_TYPE_STRUCT, @ref
* DRGN_TYPE_UNION, @ref DRGN_TYPE_CLASS, @ref DRGN_TYPE_ENUM, or @ref
* DRGN_TYPE_TYPEDEF.
* @param[in] name Name of the type.
* @param[in] name_len Length of @p name in bytes.
* @param[in] filename See @ref drgn_program_find_type().
* @param[out] ret Returned type.
* @return @c NULL on success, &@ref drgn_not_found if the type wasn't found,
* non-@c NULL on other error.
*/
struct drgn_error *drgn_program_find_type_impl(struct drgn_program *prog,
uint64_t kinds, const char *name,
size_t name_len,
const char *filename,
struct drgn_qualified_type *ret);
/** Find a primitive type in a @ref drgn_program. */
struct drgn_error *
drgn_program_find_primitive_type(struct drgn_program *prog,
enum drgn_primitive_type type,
struct drgn_type **ret);
/** @} */
#endif /* DRGN_TYPE_H */
|