mirror of
https://github.com/JakeHillion/drgn.git
synced 2024-12-25 18:23:07 +00:00
87b7292aa5
drgn is currently licensed as GPLv3+. Part of the long term vision for drgn is that other projects can use it as a library providing programmatic interfaces for debugger functionality. A more permissive license is better suited to this goal. We decided on LGPLv2.1+ as a good balance between software freedom and permissiveness. All contributors not employed by Meta were contacted via email and consented to the license change. The only exception was the author of commitc4fbf7e589
("libdrgn: fix for compilation error"), who did not respond. That commit reverted a single line of code to one originally written by me in commit640b1c011d
("libdrgn: embed DWARF index in DWARF info cache"). Signed-off-by: Omar Sandoval <osandov@osandov.com>
76 lines
1.7 KiB
C
76 lines
1.7 KiB
C
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
// SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
#include <elf.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "drgn.h"
|
|
#include "symbol.h"
|
|
#include "util.h"
|
|
|
|
LIBDRGN_PUBLIC void drgn_symbol_destroy(struct drgn_symbol *sym)
|
|
{
|
|
free(sym);
|
|
}
|
|
|
|
LIBDRGN_PUBLIC void drgn_symbols_destroy(struct drgn_symbol **syms,
|
|
size_t count)
|
|
{
|
|
for (size_t i = 0; i < count; i++)
|
|
drgn_symbol_destroy(syms[i]);
|
|
free(syms);
|
|
}
|
|
|
|
void drgn_symbol_from_elf(const char *name, uint64_t address,
|
|
const GElf_Sym *elf_sym, struct drgn_symbol *ret)
|
|
{
|
|
ret->name = name;
|
|
ret->address = address;
|
|
ret->size = elf_sym->st_size;
|
|
int binding = GELF_ST_BIND(elf_sym->st_info);
|
|
if (binding <= STB_WEAK || binding == STB_GNU_UNIQUE)
|
|
ret->binding = binding + 1;
|
|
else
|
|
ret->binding = DRGN_SYMBOL_BINDING_UNKNOWN;
|
|
int type = GELF_ST_TYPE(elf_sym->st_info);
|
|
if (type <= STT_TLS || type == STT_GNU_IFUNC)
|
|
ret->kind = type;
|
|
else
|
|
ret->kind = DRGN_SYMBOL_KIND_UNKNOWN;
|
|
}
|
|
|
|
LIBDRGN_PUBLIC const char *drgn_symbol_name(struct drgn_symbol *sym)
|
|
{
|
|
return sym->name;
|
|
}
|
|
|
|
LIBDRGN_PUBLIC uint64_t drgn_symbol_address(struct drgn_symbol *sym)
|
|
{
|
|
return sym->address;
|
|
}
|
|
|
|
LIBDRGN_PUBLIC uint64_t drgn_symbol_size(struct drgn_symbol *sym)
|
|
{
|
|
return sym->size;
|
|
}
|
|
|
|
|
|
LIBDRGN_PUBLIC enum drgn_symbol_binding
|
|
drgn_symbol_binding(struct drgn_symbol *sym)
|
|
{
|
|
return sym->binding;
|
|
}
|
|
|
|
LIBDRGN_PUBLIC enum drgn_symbol_kind drgn_symbol_kind(struct drgn_symbol *sym)
|
|
{
|
|
return sym->kind;
|
|
}
|
|
|
|
LIBDRGN_PUBLIC bool drgn_symbol_eq(struct drgn_symbol *a, struct drgn_symbol *b)
|
|
{
|
|
return (strcmp(a->name, b->name) == 0 && a->address == b->address &&
|
|
a->size == b->size && a->binding == b->binding &&
|
|
a->kind == b->kind);
|
|
}
|