1 /* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
4 * Internal libbpf helpers.
6 * Copyright (c) 2019 Facebook
9 #ifndef __LIBBPF_LIBBPF_INTERNAL_H
10 #define __LIBBPF_LIBBPF_INTERNAL_H
15 /* make sure libbpf doesn't use kernel-only integer typedefs */
16 #pragma GCC poison u8 u16 u32 u64 s8 s16 s32 s64
18 /* prevent accidental re-addition of reallocarray() */
19 #pragma GCC poison reallocarray
23 #define BTF_INFO_ENC(kind, kind_flag, vlen) \
24 ((!!(kind_flag) << 31) | ((kind) << 24) | ((vlen) & BTF_MAX_VLEN))
25 #define BTF_TYPE_ENC(name, info, size_or_type) (name), (info), (size_or_type)
26 #define BTF_INT_ENC(encoding, bits_offset, nr_bits) \
27 ((encoding) << 24 | (bits_offset) << 16 | (nr_bits))
28 #define BTF_TYPE_INT_ENC(name, encoding, bits_offset, bits, sz) \
29 BTF_TYPE_ENC(name, BTF_INFO_ENC(BTF_KIND_INT, 0, 0), sz), \
30 BTF_INT_ENC(encoding, bits_offset, bits)
31 #define BTF_MEMBER_ENC(name, type, bits_offset) (name), (type), (bits_offset)
32 #define BTF_PARAM_ENC(name, type) (name), (type)
33 #define BTF_VAR_SECINFO_ENC(type, offset, size) (type), (offset), (size)
36 #define likely(x) __builtin_expect(!!(x), 1)
39 #define unlikely(x) __builtin_expect(!!(x), 0)
42 # define min(x, y) ((x) < (y) ? (x) : (y))
45 # define max(x, y) ((x) < (y) ? (y) : (x))
48 # define offsetofend(TYPE, FIELD) \
49 (offsetof(TYPE, FIELD) + sizeof(((TYPE *)0)->FIELD))
52 /* Symbol versioning is different between static and shared library.
53 * Properly versioned symbols are needed for shared library, but
54 * only the symbol of the new version is needed for static library.
57 # define COMPAT_VERSION(internal_name, api_name, version) \
58 asm(".symver " #internal_name "," #api_name "@" #version);
59 # define DEFAULT_VERSION(internal_name, api_name, version) \
60 asm(".symver " #internal_name "," #api_name "@@" #version);
62 # define COMPAT_VERSION(internal_name, api_name, version)
63 # define DEFAULT_VERSION(internal_name, api_name, version) \
64 extern typeof(internal_name) api_name \
65 __attribute__((alias(#internal_name)));
68 extern void libbpf_print(enum libbpf_print_level level
,
69 const char *format
, ...)
70 __attribute__((format(printf
, 2, 3)));
72 #define __pr(level, fmt, ...) \
74 libbpf_print(level, "libbpf: " fmt, ##__VA_ARGS__); \
77 #define pr_warn(fmt, ...) __pr(LIBBPF_WARN, fmt, ##__VA_ARGS__)
78 #define pr_info(fmt, ...) __pr(LIBBPF_INFO, fmt, ##__VA_ARGS__)
79 #define pr_debug(fmt, ...) __pr(LIBBPF_DEBUG, fmt, ##__VA_ARGS__)
82 #define __has_builtin(x) 0
85 * Re-implement glibc's reallocarray() for libbpf internal-only use.
86 * reallocarray(), unfortunately, is not available in all versions of glibc,
87 * so requires extra feature detection and using reallocarray() stub from
88 * <tools/libc_compat.h> and COMPAT_NEED_REALLOCARRAY. All this complicates
89 * build of libbpf unnecessarily and is just a maintenance burden. Instead,
90 * it's trivial to implement libbpf-specific internal version and use it
93 static inline void *libbpf_reallocarray(void *ptr
, size_t nmemb
, size_t size
)
97 #if __has_builtin(__builtin_mul_overflow)
98 if (unlikely(__builtin_mul_overflow(nmemb
, size
, &total
)))
101 if (size
== 0 || nmemb
> ULONG_MAX
/ size
)
103 total
= nmemb
* size
;
105 return realloc(ptr
, total
);
108 void *btf_add_mem(void **data
, size_t *cap_cnt
, size_t elem_sz
,
109 size_t cur_cnt
, size_t max_cnt
, size_t add_cnt
);
110 int btf_ensure_mem(void **data
, size_t *cap_cnt
, size_t elem_sz
, size_t need_cnt
);
112 static inline bool libbpf_validate_opts(const char *opts
,
113 size_t opts_sz
, size_t user_sz
,
114 const char *type_name
)
116 if (user_sz
< sizeof(size_t)) {
117 pr_warn("%s size (%zu) is too small\n", type_name
, user_sz
);
120 if (user_sz
> opts_sz
) {
123 for (i
= opts_sz
; i
< user_sz
; i
++) {
125 pr_warn("%s has non-zero extra bytes\n",
134 #define OPTS_VALID(opts, type) \
135 (!(opts) || libbpf_validate_opts((const char *)opts, \
136 offsetofend(struct type, \
137 type##__last_field), \
139 #define OPTS_HAS(opts, field) \
140 ((opts) && opts->sz >= offsetofend(typeof(*(opts)), field))
141 #define OPTS_GET(opts, field, fallback_value) \
142 (OPTS_HAS(opts, field) ? (opts)->field : fallback_value)
143 #define OPTS_SET(opts, field, value) \
145 if (OPTS_HAS(opts, field)) \
146 (opts)->field = value; \
149 int parse_cpu_mask_str(const char *s
, bool **mask
, int *mask_sz
);
150 int parse_cpu_mask_file(const char *fcpu
, bool **mask
, int *mask_sz
);
151 int libbpf__load_raw_btf(const char *raw_types
, size_t types_len
,
152 const char *str_sec
, size_t str_len
);
154 struct bpf_prog_load_params
{
155 enum bpf_prog_type prog_type
;
156 enum bpf_attach_type expected_attach_type
;
158 const struct bpf_insn
*insns
;
162 __u32 attach_prog_fd
;
163 __u32 attach_btf_obj_fd
;
169 __u32 func_info_rec_size
;
170 const void *func_info
;
173 __u32 line_info_rec_size
;
174 const void *line_info
;
182 int libbpf__bpf_prog_load(const struct bpf_prog_load_params
*load_attr
);
184 int bpf_object__section_size(const struct bpf_object
*obj
, const char *name
,
186 int bpf_object__variable_offset(const struct bpf_object
*obj
, const char *name
,
188 struct btf
*btf_get_from_fd(int btf_fd
, struct btf
*base_btf
);
190 struct btf_ext_info
{
192 * info points to the individual info section (e.g. func_info and
193 * line_info) from the .BTF.ext. It does not include the __u32 rec_size.
200 #define for_each_btf_ext_sec(seg, sec) \
201 for (sec = (seg)->info; \
202 (void *)sec < (seg)->info + (seg)->len; \
203 sec = (void *)sec + sizeof(struct btf_ext_info_sec) + \
204 (seg)->rec_size * sec->num_info)
206 #define for_each_btf_ext_rec(seg, sec, i, rec) \
207 for (i = 0, rec = (void *)&(sec)->data; \
208 i < (sec)->num_info; \
209 i++, rec = (void *)rec + (seg)->rec_size)
212 * The .BTF.ext ELF section layout defined as
213 * struct btf_ext_header
214 * func_info subsection
216 * The func_info subsection layout:
217 * record size for struct bpf_func_info in the func_info subsection
218 * struct btf_sec_func_info for section #1
219 * a list of bpf_func_info records for section #1
220 * where struct bpf_func_info mimics one in include/uapi/linux/bpf.h
221 * but may not be identical
222 * struct btf_sec_func_info for section #2
223 * a list of bpf_func_info records for section #2
226 * Note that the bpf_func_info record size in .BTF.ext may not
227 * be the same as the one defined in include/uapi/linux/bpf.h.
228 * The loader should ensure that record_size meets minimum
229 * requirement and pass the record as is to the kernel. The
230 * kernel will handle the func_info properly based on its contents.
232 struct btf_ext_header
{
238 /* All offsets are in bytes relative to the end of this header */
244 /* optional part of .BTF.ext header */
251 struct btf_ext_header
*hdr
;
254 struct btf_ext_info func_info
;
255 struct btf_ext_info line_info
;
256 struct btf_ext_info core_relo_info
;
260 struct btf_ext_info_sec
{
263 /* Followed by num_info * record_size number of bytes */
267 /* The minimum bpf_func_info checked by the loader */
268 struct bpf_func_info_min
{
273 /* The minimum bpf_line_info checked by the loader */
274 struct bpf_line_info_min
{
281 /* bpf_core_relo_kind encodes which aspect of captured field/type/enum value
282 * has to be adjusted by relocations.
284 enum bpf_core_relo_kind
{
285 BPF_FIELD_BYTE_OFFSET
= 0, /* field byte offset */
286 BPF_FIELD_BYTE_SIZE
= 1, /* field size in bytes */
287 BPF_FIELD_EXISTS
= 2, /* field existence in target kernel */
288 BPF_FIELD_SIGNED
= 3, /* field signedness (0 - unsigned, 1 - signed) */
289 BPF_FIELD_LSHIFT_U64
= 4, /* bitfield-specific left bitshift */
290 BPF_FIELD_RSHIFT_U64
= 5, /* bitfield-specific right bitshift */
291 BPF_TYPE_ID_LOCAL
= 6, /* type ID in local BPF object */
292 BPF_TYPE_ID_TARGET
= 7, /* type ID in target kernel */
293 BPF_TYPE_EXISTS
= 8, /* type existence in target kernel */
294 BPF_TYPE_SIZE
= 9, /* type size in bytes */
295 BPF_ENUMVAL_EXISTS
= 10, /* enum value existence in target kernel */
296 BPF_ENUMVAL_VALUE
= 11, /* enum value integer value */
299 /* The minimum bpf_core_relo checked by the loader
301 * CO-RE relocation captures the following data:
302 * - insn_off - instruction offset (in bytes) within a BPF program that needs
303 * its insn->imm field to be relocated with actual field info;
304 * - type_id - BTF type ID of the "root" (containing) entity of a relocatable
306 * - access_str_off - offset into corresponding .BTF string section. String
307 * interpretation depends on specific relocation kind:
308 * - for field-based relocations, string encodes an accessed field using
309 * a sequence of field and array indices, separated by colon (:). It's
310 * conceptually very close to LLVM's getelementptr ([0]) instruction's
311 * arguments for identifying offset to a field.
312 * - for type-based relocations, strings is expected to be just "0";
313 * - for enum value-based relocations, string contains an index of enum
314 * value within its enum type;
316 * Example to provide a better feel.
325 * struct sample *s = ...;
326 * int x = &s->a; // encoded as "0:0" (a is field #0)
327 * int y = &s->b[5]; // encoded as "0:1:0:5" (anon struct is field #1,
328 * // b is field #0 inside anon struct, accessing elem #5)
329 * int z = &s[10]->b; // encoded as "10:1" (ptr is used as an array)
331 * type_id for all relocs in this example will capture BTF type id of
334 * Such relocation is emitted when using __builtin_preserve_access_index()
335 * Clang built-in, passing expression that captures field address, e.g.:
337 * bpf_probe_read(&dst, sizeof(dst),
338 * __builtin_preserve_access_index(&src->a.b.c));
340 * In this case Clang will emit field relocation recording necessary data to
341 * be able to find offset of embedded `a.b.c` field within `src` struct.
343 * [0] https://llvm.org/docs/LangRef.html#getelementptr-instruction
345 struct bpf_core_relo
{
348 __u32 access_str_off
;
349 enum bpf_core_relo_kind kind
;
352 #endif /* __LIBBPF_LIBBPF_INTERNAL_H */