1 /* SPDX-License-Identifier: GPL-2.0 */
2 /* Copyright (c) 2018 Facebook */
7 #include <linux/types.h>
8 #include <linux/bpfptr.h>
9 #include <linux/bsearch.h>
10 #include <linux/btf_ids.h>
11 #include <uapi/linux/btf.h>
12 #include <uapi/linux/bpf.h>
14 #define BTF_TYPE_EMIT(type) ((void)(type *)0)
15 #define BTF_TYPE_EMIT_ENUM(enum_val) ((void)enum_val)
17 /* These need to be macros, as the expressions are used in assembler input */
18 #define KF_ACQUIRE (1 << 0) /* kfunc is an acquire function */
19 #define KF_RELEASE (1 << 1) /* kfunc is a release function */
20 #define KF_RET_NULL (1 << 2) /* kfunc returns a pointer that may be NULL */
21 #define KF_KPTR_GET (1 << 3) /* kfunc returns reference to a kptr */
22 /* Trusted arguments are those which are guaranteed to be valid when passed to
23 * the kfunc. It is used to enforce that pointers obtained from either acquire
24 * kfuncs, or from the main kernel on a tracepoint or struct_ops callback
25 * invocation, remain unmodified when being passed to helpers taking trusted
28 * Consider, for example, the following new task tracepoint:
30 * SEC("tp_btf/task_newtask")
31 * int BPF_PROG(new_task_tp, struct task_struct *task, u64 clone_flags)
36 * And the following kfunc:
38 * BTF_ID_FLAGS(func, bpf_task_acquire, KF_ACQUIRE | KF_TRUSTED_ARGS)
40 * All invocations to the kfunc must pass the unmodified, unwalked task:
42 * bpf_task_acquire(task); // Allowed
43 * bpf_task_acquire(task->last_wakee); // Rejected, walked task
45 * Programs may also pass referenced tasks directly to the kfunc:
47 * struct task_struct *acquired;
49 * acquired = bpf_task_acquire(task); // Allowed, same as above
50 * bpf_task_acquire(acquired); // Allowed
51 * bpf_task_acquire(task); // Allowed
52 * bpf_task_acquire(acquired->last_wakee); // Rejected, walked task
54 * Programs may _not_, however, pass a task from an arbitrary fentry/fexit, or
55 * kprobe/kretprobe to the kfunc, as BPF cannot guarantee that all of these
56 * pointers are guaranteed to be safe. For example, the following BPF program
59 * SEC("kretprobe/free_task")
60 * int BPF_PROG(free_task_probe, struct task_struct *tsk)
62 * struct task_struct *acquired;
64 * acquired = bpf_task_acquire(acquired); // Rejected, not a trusted pointer
65 * bpf_task_release(acquired);
70 #define KF_TRUSTED_ARGS (1 << 4) /* kfunc only takes trusted pointer arguments */
71 #define KF_SLEEPABLE (1 << 5) /* kfunc may sleep */
72 #define KF_DESTRUCTIVE (1 << 6) /* kfunc performs destructive actions */
73 #define KF_RCU (1 << 7) /* kfunc only takes rcu pointer arguments */
76 * Return the name of the passed struct, if exists, or halt the build if for
77 * example the structure gets renamed. In this way, developers have to revisit
78 * the code using that structure name, and update it accordingly.
80 #define stringify_struct(x) \
81 ({ BUILD_BUG_ON(sizeof(struct x) < 0); \
91 struct btf_kfunc_id_set {
93 struct btf_id_set8 *set;
96 struct btf_id_dtor_kfunc {
101 struct btf_struct_meta {
103 struct btf_record *record;
104 struct btf_field_offs *field_offs;
107 struct btf_struct_metas {
109 struct btf_struct_meta types[];
112 typedef void (*btf_dtor_kfunc_t)(void *);
114 extern const struct file_operations btf_fops;
116 void btf_get(struct btf *btf);
117 void btf_put(struct btf *btf);
118 int btf_new_fd(const union bpf_attr *attr, bpfptr_t uattr);
119 struct btf *btf_get_by_fd(int fd);
120 int btf_get_info_by_fd(const struct btf *btf,
121 const union bpf_attr *attr,
122 union bpf_attr __user *uattr);
123 /* Figure out the size of a type_id. If type_id is a modifier
124 * (e.g. const), it will be resolved to find out the type with size.
127 * In describing "const void *", type_id is "const" and "const"
128 * refers to "void *". The return type will be "void *".
130 * If type_id is a simple "int", then return type will be "int".
132 * @btf: struct btf object
133 * @type_id: Find out the size of type_id. The type_id of the return
134 * type is set to *type_id.
135 * @ret_size: It can be NULL. If not NULL, the size of the return
136 * type is set to *ret_size.
137 * Return: The btf_type (resolved to another type with size info if needed).
138 * NULL is returned if type_id itself does not have size info
139 * (e.g. void) or it cannot be resolved to another type that
141 * *type_id and *ret_size will not be changed in the
144 const struct btf_type *btf_type_id_size(const struct btf *btf,
149 * Options to control show behaviour.
150 * - BTF_SHOW_COMPACT: no formatting around type information
151 * - BTF_SHOW_NONAME: no struct/union member names/types
152 * - BTF_SHOW_PTR_RAW: show raw (unobfuscated) pointer values;
154 * - BTF_SHOW_ZERO: show zero-valued struct/union members; they
155 * are not displayed by default
156 * - BTF_SHOW_UNSAFE: skip use of bpf_probe_read() to safely read
157 * data before displaying it.
159 #define BTF_SHOW_COMPACT BTF_F_COMPACT
160 #define BTF_SHOW_NONAME BTF_F_NONAME
161 #define BTF_SHOW_PTR_RAW BTF_F_PTR_RAW
162 #define BTF_SHOW_ZERO BTF_F_ZERO
163 #define BTF_SHOW_UNSAFE (1ULL << 4)
165 void btf_type_seq_show(const struct btf *btf, u32 type_id, void *obj,
167 int btf_type_seq_show_flags(const struct btf *btf, u32 type_id, void *obj,
168 struct seq_file *m, u64 flags);
171 * Copy len bytes of string representation of obj of BTF type_id into buf.
173 * @btf: struct btf object
174 * @type_id: type id of type obj points to
175 * @obj: pointer to typed data
176 * @buf: buffer to write to
177 * @len: maximum length to write to buf
178 * @flags: show options (see above)
180 * Return: length that would have been/was copied as per snprintf, or
183 int btf_type_snprintf_show(const struct btf *btf, u32 type_id, void *obj,
184 char *buf, int len, u64 flags);
186 int btf_get_fd_by_id(u32 id);
187 u32 btf_obj_id(const struct btf *btf);
188 bool btf_is_kernel(const struct btf *btf);
189 bool btf_is_module(const struct btf *btf);
190 struct module *btf_try_get_module(const struct btf *btf);
191 u32 btf_nr_types(const struct btf *btf);
192 bool btf_member_is_reg_int(const struct btf *btf, const struct btf_type *s,
193 const struct btf_member *m,
194 u32 expected_offset, u32 expected_size);
195 int btf_find_spin_lock(const struct btf *btf, const struct btf_type *t);
196 int btf_find_timer(const struct btf *btf, const struct btf_type *t);
197 struct btf_record *btf_parse_fields(const struct btf *btf, const struct btf_type *t,
198 u32 field_mask, u32 value_size);
199 int btf_check_and_fixup_fields(const struct btf *btf, struct btf_record *rec);
200 struct btf_field_offs *btf_parse_field_offs(struct btf_record *rec);
201 bool btf_type_is_void(const struct btf_type *t);
202 s32 btf_find_by_name_kind(const struct btf *btf, const char *name, u8 kind);
203 const struct btf_type *btf_type_skip_modifiers(const struct btf *btf,
204 u32 id, u32 *res_id);
205 const struct btf_type *btf_type_resolve_ptr(const struct btf *btf,
206 u32 id, u32 *res_id);
207 const struct btf_type *btf_type_resolve_func_ptr(const struct btf *btf,
208 u32 id, u32 *res_id);
209 const struct btf_type *
210 btf_resolve_size(const struct btf *btf, const struct btf_type *type,
212 const char *btf_type_str(const struct btf_type *t);
214 #define for_each_member(i, struct_type, member) \
215 for (i = 0, member = btf_type_member(struct_type); \
216 i < btf_type_vlen(struct_type); \
219 #define for_each_vsi(i, datasec_type, member) \
220 for (i = 0, member = btf_type_var_secinfo(datasec_type); \
221 i < btf_type_vlen(datasec_type); \
224 static inline bool btf_type_is_ptr(const struct btf_type *t)
226 return BTF_INFO_KIND(t->info) == BTF_KIND_PTR;
229 static inline bool btf_type_is_int(const struct btf_type *t)
231 return BTF_INFO_KIND(t->info) == BTF_KIND_INT;
234 static inline bool btf_type_is_small_int(const struct btf_type *t)
236 return btf_type_is_int(t) && t->size <= sizeof(u64);
239 static inline bool btf_type_is_enum(const struct btf_type *t)
241 return BTF_INFO_KIND(t->info) == BTF_KIND_ENUM;
244 static inline bool btf_is_any_enum(const struct btf_type *t)
246 return BTF_INFO_KIND(t->info) == BTF_KIND_ENUM ||
247 BTF_INFO_KIND(t->info) == BTF_KIND_ENUM64;
250 static inline bool btf_kind_core_compat(const struct btf_type *t1,
251 const struct btf_type *t2)
253 return BTF_INFO_KIND(t1->info) == BTF_INFO_KIND(t2->info) ||
254 (btf_is_any_enum(t1) && btf_is_any_enum(t2));
257 static inline bool str_is_empty(const char *s)
262 static inline u16 btf_kind(const struct btf_type *t)
264 return BTF_INFO_KIND(t->info);
267 static inline bool btf_is_enum(const struct btf_type *t)
269 return btf_kind(t) == BTF_KIND_ENUM;
272 static inline bool btf_is_enum64(const struct btf_type *t)
274 return btf_kind(t) == BTF_KIND_ENUM64;
277 static inline u64 btf_enum64_value(const struct btf_enum64 *e)
279 return ((u64)e->val_hi32 << 32) | e->val_lo32;
282 static inline bool btf_is_composite(const struct btf_type *t)
284 u16 kind = btf_kind(t);
286 return kind == BTF_KIND_STRUCT || kind == BTF_KIND_UNION;
289 static inline bool btf_is_array(const struct btf_type *t)
291 return btf_kind(t) == BTF_KIND_ARRAY;
294 static inline bool btf_is_int(const struct btf_type *t)
296 return btf_kind(t) == BTF_KIND_INT;
299 static inline bool btf_is_ptr(const struct btf_type *t)
301 return btf_kind(t) == BTF_KIND_PTR;
304 static inline u8 btf_int_offset(const struct btf_type *t)
306 return BTF_INT_OFFSET(*(u32 *)(t + 1));
309 static inline u8 btf_int_encoding(const struct btf_type *t)
311 return BTF_INT_ENCODING(*(u32 *)(t + 1));
314 static inline bool btf_type_is_scalar(const struct btf_type *t)
316 return btf_type_is_int(t) || btf_type_is_enum(t);
319 static inline bool btf_type_is_typedef(const struct btf_type *t)
321 return BTF_INFO_KIND(t->info) == BTF_KIND_TYPEDEF;
324 static inline bool btf_type_is_volatile(const struct btf_type *t)
326 return BTF_INFO_KIND(t->info) == BTF_KIND_VOLATILE;
329 static inline bool btf_type_is_func(const struct btf_type *t)
331 return BTF_INFO_KIND(t->info) == BTF_KIND_FUNC;
334 static inline bool btf_type_is_func_proto(const struct btf_type *t)
336 return BTF_INFO_KIND(t->info) == BTF_KIND_FUNC_PROTO;
339 static inline bool btf_type_is_var(const struct btf_type *t)
341 return BTF_INFO_KIND(t->info) == BTF_KIND_VAR;
344 static inline bool btf_type_is_type_tag(const struct btf_type *t)
346 return BTF_INFO_KIND(t->info) == BTF_KIND_TYPE_TAG;
349 /* union is only a special case of struct:
350 * all its offsetof(member) == 0
352 static inline bool btf_type_is_struct(const struct btf_type *t)
354 u8 kind = BTF_INFO_KIND(t->info);
356 return kind == BTF_KIND_STRUCT || kind == BTF_KIND_UNION;
359 static inline bool __btf_type_is_struct(const struct btf_type *t)
361 return BTF_INFO_KIND(t->info) == BTF_KIND_STRUCT;
364 static inline bool btf_type_is_array(const struct btf_type *t)
366 return BTF_INFO_KIND(t->info) == BTF_KIND_ARRAY;
369 static inline u16 btf_type_vlen(const struct btf_type *t)
371 return BTF_INFO_VLEN(t->info);
374 static inline u16 btf_vlen(const struct btf_type *t)
376 return btf_type_vlen(t);
379 static inline u16 btf_func_linkage(const struct btf_type *t)
381 return BTF_INFO_VLEN(t->info);
384 static inline bool btf_type_kflag(const struct btf_type *t)
386 return BTF_INFO_KFLAG(t->info);
389 static inline u32 __btf_member_bit_offset(const struct btf_type *struct_type,
390 const struct btf_member *member)
392 return btf_type_kflag(struct_type) ? BTF_MEMBER_BIT_OFFSET(member->offset)
396 static inline u32 __btf_member_bitfield_size(const struct btf_type *struct_type,
397 const struct btf_member *member)
399 return btf_type_kflag(struct_type) ? BTF_MEMBER_BITFIELD_SIZE(member->offset)
403 static inline struct btf_member *btf_members(const struct btf_type *t)
405 return (struct btf_member *)(t + 1);
408 static inline u32 btf_member_bit_offset(const struct btf_type *t, u32 member_idx)
410 const struct btf_member *m = btf_members(t) + member_idx;
412 return __btf_member_bit_offset(t, m);
415 static inline u32 btf_member_bitfield_size(const struct btf_type *t, u32 member_idx)
417 const struct btf_member *m = btf_members(t) + member_idx;
419 return __btf_member_bitfield_size(t, m);
422 static inline const struct btf_member *btf_type_member(const struct btf_type *t)
424 return (const struct btf_member *)(t + 1);
427 static inline struct btf_array *btf_array(const struct btf_type *t)
429 return (struct btf_array *)(t + 1);
432 static inline struct btf_enum *btf_enum(const struct btf_type *t)
434 return (struct btf_enum *)(t + 1);
437 static inline struct btf_enum64 *btf_enum64(const struct btf_type *t)
439 return (struct btf_enum64 *)(t + 1);
442 static inline const struct btf_var_secinfo *btf_type_var_secinfo(
443 const struct btf_type *t)
445 return (const struct btf_var_secinfo *)(t + 1);
448 static inline struct btf_param *btf_params(const struct btf_type *t)
450 return (struct btf_param *)(t + 1);
453 static inline int btf_id_cmp_func(const void *a, const void *b)
455 const int *pa = a, *pb = b;
460 static inline bool btf_id_set_contains(const struct btf_id_set *set, u32 id)
462 return bsearch(&id, set->ids, set->cnt, sizeof(u32), btf_id_cmp_func) != NULL;
465 static inline void *btf_id_set8_contains(const struct btf_id_set8 *set, u32 id)
467 return bsearch(&id, set->pairs, set->cnt, sizeof(set->pairs[0]), btf_id_cmp_func);
471 struct bpf_verifier_log;
473 #ifdef CONFIG_BPF_SYSCALL
474 const struct btf_type *btf_type_by_id(const struct btf *btf, u32 type_id);
475 const char *btf_name_by_offset(const struct btf *btf, u32 offset);
476 struct btf *btf_parse_vmlinux(void);
477 struct btf *bpf_prog_get_target_btf(const struct bpf_prog *prog);
478 u32 *btf_kfunc_id_set_contains(const struct btf *btf,
479 enum bpf_prog_type prog_type,
481 u32 *btf_kfunc_is_modify_return(const struct btf *btf, u32 kfunc_btf_id);
482 int register_btf_kfunc_id_set(enum bpf_prog_type prog_type,
483 const struct btf_kfunc_id_set *s);
484 int register_btf_fmodret_id_set(const struct btf_kfunc_id_set *kset);
485 s32 btf_find_dtor_kfunc(struct btf *btf, u32 btf_id);
486 int register_btf_id_dtor_kfuncs(const struct btf_id_dtor_kfunc *dtors, u32 add_cnt,
487 struct module *owner);
488 struct btf_struct_meta *btf_find_struct_meta(const struct btf *btf, u32 btf_id);
489 const struct btf_member *
490 btf_get_prog_ctx_type(struct bpf_verifier_log *log, const struct btf *btf,
491 const struct btf_type *t, enum bpf_prog_type prog_type,
493 int get_kern_ctx_btf_id(struct bpf_verifier_log *log, enum bpf_prog_type prog_type);
494 bool btf_types_are_same(const struct btf *btf1, u32 id1,
495 const struct btf *btf2, u32 id2);
497 static inline const struct btf_type *btf_type_by_id(const struct btf *btf,
502 static inline const char *btf_name_by_offset(const struct btf *btf,
507 static inline u32 *btf_kfunc_id_set_contains(const struct btf *btf,
508 enum bpf_prog_type prog_type,
513 static inline int register_btf_kfunc_id_set(enum bpf_prog_type prog_type,
514 const struct btf_kfunc_id_set *s)
518 static inline s32 btf_find_dtor_kfunc(struct btf *btf, u32 btf_id)
522 static inline int register_btf_id_dtor_kfuncs(const struct btf_id_dtor_kfunc *dtors,
523 u32 add_cnt, struct module *owner)
527 static inline struct btf_struct_meta *btf_find_struct_meta(const struct btf *btf, u32 btf_id)
531 static inline const struct btf_member *
532 btf_get_prog_ctx_type(struct bpf_verifier_log *log, const struct btf *btf,
533 const struct btf_type *t, enum bpf_prog_type prog_type,
538 static inline int get_kern_ctx_btf_id(struct bpf_verifier_log *log,
539 enum bpf_prog_type prog_type) {
542 static inline bool btf_types_are_same(const struct btf *btf1, u32 id1,
543 const struct btf *btf2, u32 id2)
549 static inline bool btf_type_is_struct_ptr(struct btf *btf, const struct btf_type *t)
551 if (!btf_type_is_ptr(t))
554 t = btf_type_skip_modifiers(btf, t->type, NULL);
556 return btf_type_is_struct(t);