7943374ac5
This reverts commit 82749180b2
.
Getting in the way of releasing 1.20, breaking the build of a dwarves
rpm when a libbpf package is installed in a fedora 33 system:
In file included from /home/acme/rpmbuild/BUILD/dwarves-1.20/strings.c:7:
/home/acme/rpmbuild/BUILD/dwarves-1.20/pahole_strings.h:9:10: fatal error: bpf/btf.h: No such file or directory
9 | #include <bpf/btf.h>
| ^~~~~~~~~~~
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
73 lines
2.3 KiB
C
73 lines
2.3 KiB
C
/*
|
|
SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
Copyright (C) 2019 Facebook
|
|
*/
|
|
|
|
#ifndef _LIBBTF_H
|
|
#define _LIBBTF_H
|
|
|
|
#include "gobuffer.h"
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include "lib/bpf/src/btf.h"
|
|
|
|
struct btf_elf {
|
|
void *priv;
|
|
Elf *elf;
|
|
GElf_Ehdr ehdr;
|
|
struct elf_symtab *symtab;
|
|
struct gobuffer percpu_secinfo;
|
|
char *filename;
|
|
int in_fd;
|
|
uint8_t wordsize;
|
|
bool is_big_endian;
|
|
bool raw_btf; // "/sys/kernel/btf/vmlinux"
|
|
uint32_t percpu_shndx;
|
|
uint64_t percpu_base_addr;
|
|
uint64_t percpu_sec_sz;
|
|
struct btf *btf;
|
|
struct btf *base_btf;
|
|
};
|
|
|
|
extern struct btf *base_btf;
|
|
extern uint8_t btf_elf__verbose;
|
|
extern uint8_t btf_elf__force;
|
|
#define btf_elf__verbose_log(fmt, ...) { if (btf_elf__verbose) printf(fmt, __VA_ARGS__); }
|
|
|
|
#define PERCPU_SECTION ".data..percpu"
|
|
|
|
struct cu;
|
|
struct base_type;
|
|
struct ftype;
|
|
|
|
struct btf_elf *btf_elf__new(const char *filename, Elf *elf, struct btf *base_btf);
|
|
void btf_elf__delete(struct btf_elf *btf);
|
|
|
|
int32_t btf_elf__add_base_type(struct btf_elf *btf, const struct base_type *bt,
|
|
const char *name);
|
|
int32_t btf_elf__add_ref_type(struct btf_elf *btf, uint16_t kind, uint32_t type,
|
|
const char *name, bool kind_flag);
|
|
int btf_elf__add_member(struct btf_elf *btf, const char *name, uint32_t type,
|
|
uint32_t bitfield_size, uint32_t bit_offset);
|
|
int32_t btf_elf__add_struct(struct btf_elf *btf, uint8_t kind, const char *name, uint32_t size);
|
|
int32_t btf_elf__add_array(struct btf_elf *btf, uint32_t type, uint32_t index_type,
|
|
uint32_t nelems);
|
|
int32_t btf_elf__add_enum(struct btf_elf *btf, const char *name, uint32_t size);
|
|
int btf_elf__add_enum_val(struct btf_elf *btf, const char *name, int32_t value);
|
|
int32_t btf_elf__add_func_proto(struct btf_elf *btf, struct cu *cu, struct ftype *ftype,
|
|
uint32_t type_id_off);
|
|
int32_t btf_elf__add_var_type(struct btf_elf *btfe, uint32_t type, const char *name,
|
|
uint32_t linkage);
|
|
int32_t btf_elf__add_var_secinfo(struct gobuffer *buf, uint32_t type,
|
|
uint32_t offset, uint32_t size);
|
|
int32_t btf_elf__add_datasec_type(struct btf_elf *btfe, const char *section_name,
|
|
struct gobuffer *var_secinfo_buf);
|
|
int btf_elf__encode(struct btf_elf *btf, uint8_t flags);
|
|
|
|
const char *btf_elf__string(struct btf_elf *btf, uint32_t ref);
|
|
int btf_elf__load(struct btf_elf *btf);
|
|
|
|
#endif /* _LIBBTF_H */
|