blob: 64cdf2a23d427cf2af3f2fd264d32aeffd6c582b [file] [log] [blame]
Martin KaFai Laueb3f5952018-04-18 15:55:58 -07001/* SPDX-License-Identifier: GPL-2.0 */
2/* Copyright (c) 2018 Facebook */
3
4#ifndef _LINUX_BTF_H
5#define _LINUX_BTF_H 1
6
7#include <linux/types.h>
8
9struct btf;
Yonghong Songffa0c1c2018-12-15 22:13:52 -080010struct btf_member;
Martin KaFai Laueb3f5952018-04-18 15:55:58 -070011struct btf_type;
Martin KaFai Lauf56a6532018-04-18 15:56:01 -070012union bpf_attr;
Martin KaFai Laueb3f5952018-04-18 15:55:58 -070013
Martin KaFai Lau60197cf2018-04-18 15:56:02 -070014extern const struct file_operations btf_fops;
15
Martin KaFai Lauf56a6532018-04-18 15:56:01 -070016void btf_put(struct btf *btf);
17int btf_new_fd(const union bpf_attr *attr);
18struct btf *btf_get_by_fd(int fd);
Martin KaFai Lau60197cf2018-04-18 15:56:02 -070019int btf_get_info_by_fd(const struct btf *btf,
20 const union bpf_attr *attr,
21 union bpf_attr __user *uattr);
Martin KaFai Laueb3f5952018-04-18 15:55:58 -070022/* Figure out the size of a type_id. If type_id is a modifier
23 * (e.g. const), it will be resolved to find out the type with size.
24 *
25 * For example:
26 * In describing "const void *", type_id is "const" and "const"
27 * refers to "void *". The return type will be "void *".
28 *
29 * If type_id is a simple "int", then return type will be "int".
30 *
31 * @btf: struct btf object
32 * @type_id: Find out the size of type_id. The type_id of the return
33 * type is set to *type_id.
34 * @ret_size: It can be NULL. If not NULL, the size of the return
35 * type is set to *ret_size.
36 * Return: The btf_type (resolved to another type with size info if needed).
37 * NULL is returned if type_id itself does not have size info
38 * (e.g. void) or it cannot be resolved to another type that
39 * has size info.
40 * *type_id and *ret_size will not be changed in the
41 * NULL return case.
42 */
43const struct btf_type *btf_type_id_size(const struct btf *btf,
44 u32 *type_id,
45 u32 *ret_size);
Martin KaFai Laub00b8da2018-04-18 15:56:00 -070046void btf_type_seq_show(const struct btf *btf, u32 type_id, void *obj,
47 struct seq_file *m);
Martin KaFai Lau78958fc2018-05-04 14:49:51 -070048int btf_get_fd_by_id(u32 id);
49u32 btf_id(const struct btf *btf);
Yonghong Songffa0c1c2018-12-15 22:13:52 -080050bool btf_member_is_reg_int(const struct btf *btf, const struct btf_type *s,
51 const struct btf_member *m,
52 u32 expected_offset, u32 expected_size);
Alexei Starovoitovd83525c2019-01-31 15:40:04 -080053int btf_find_spin_lock(const struct btf *btf, const struct btf_type *t);
Daniel Borkmann2824ecb2019-04-09 23:20:10 +020054bool btf_type_is_void(const struct btf_type *t);
Yonghong Songf6161a82018-11-20 14:08:20 -080055
56#ifdef CONFIG_BPF_SYSCALL
Yonghong Song838e9692018-11-19 15:29:11 -080057const struct btf_type *btf_type_by_id(const struct btf *btf, u32 type_id);
58const char *btf_name_by_offset(const struct btf *btf, u32 offset);
Yonghong Songf6161a82018-11-20 14:08:20 -080059#else
60static inline const struct btf_type *btf_type_by_id(const struct btf *btf,
61 u32 type_id)
62{
63 return NULL;
64}
65static inline const char *btf_name_by_offset(const struct btf *btf,
66 u32 offset)
67{
68 return NULL;
69}
70#endif
Martin KaFai Laueb3f5952018-04-18 15:55:58 -070071
72#endif