Martin KaFai Lau | eb3f595 | 2018-04-18 15:55:58 -0700 | [diff] [blame] | 1 | /* 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> |
Martin KaFai Lau | 3820729 | 2019-10-24 17:18:11 -0700 | [diff] [blame] | 8 | #include <uapi/linux/btf.h> |
Martin KaFai Lau | eb3f595 | 2018-04-18 15:55:58 -0700 | [diff] [blame] | 9 | |
Martin KaFai Lau | 85d33df | 2020-01-08 16:35:05 -0800 | [diff] [blame] | 10 | #define BTF_TYPE_EMIT(type) ((void)(type *)0) |
| 11 | |
Martin KaFai Lau | eb3f595 | 2018-04-18 15:55:58 -0700 | [diff] [blame] | 12 | struct btf; |
Yonghong Song | ffa0c1c | 2018-12-15 22:13:52 -0800 | [diff] [blame] | 13 | struct btf_member; |
Martin KaFai Lau | eb3f595 | 2018-04-18 15:55:58 -0700 | [diff] [blame] | 14 | struct btf_type; |
Martin KaFai Lau | f56a653 | 2018-04-18 15:56:01 -0700 | [diff] [blame] | 15 | union bpf_attr; |
Martin KaFai Lau | eb3f595 | 2018-04-18 15:55:58 -0700 | [diff] [blame] | 16 | |
Martin KaFai Lau | 60197cf | 2018-04-18 15:56:02 -0700 | [diff] [blame] | 17 | extern const struct file_operations btf_fops; |
| 18 | |
Martin KaFai Lau | f56a653 | 2018-04-18 15:56:01 -0700 | [diff] [blame] | 19 | void btf_put(struct btf *btf); |
| 20 | int btf_new_fd(const union bpf_attr *attr); |
| 21 | struct btf *btf_get_by_fd(int fd); |
Martin KaFai Lau | 60197cf | 2018-04-18 15:56:02 -0700 | [diff] [blame] | 22 | int btf_get_info_by_fd(const struct btf *btf, |
| 23 | const union bpf_attr *attr, |
| 24 | union bpf_attr __user *uattr); |
Martin KaFai Lau | eb3f595 | 2018-04-18 15:55:58 -0700 | [diff] [blame] | 25 | /* Figure out the size of a type_id. If type_id is a modifier |
| 26 | * (e.g. const), it will be resolved to find out the type with size. |
| 27 | * |
| 28 | * For example: |
| 29 | * In describing "const void *", type_id is "const" and "const" |
| 30 | * refers to "void *". The return type will be "void *". |
| 31 | * |
| 32 | * If type_id is a simple "int", then return type will be "int". |
| 33 | * |
| 34 | * @btf: struct btf object |
| 35 | * @type_id: Find out the size of type_id. The type_id of the return |
| 36 | * type is set to *type_id. |
| 37 | * @ret_size: It can be NULL. If not NULL, the size of the return |
| 38 | * type is set to *ret_size. |
| 39 | * Return: The btf_type (resolved to another type with size info if needed). |
| 40 | * NULL is returned if type_id itself does not have size info |
| 41 | * (e.g. void) or it cannot be resolved to another type that |
| 42 | * has size info. |
| 43 | * *type_id and *ret_size will not be changed in the |
| 44 | * NULL return case. |
| 45 | */ |
| 46 | const struct btf_type *btf_type_id_size(const struct btf *btf, |
| 47 | u32 *type_id, |
| 48 | u32 *ret_size); |
Martin KaFai Lau | b00b8da | 2018-04-18 15:56:00 -0700 | [diff] [blame] | 49 | void btf_type_seq_show(const struct btf *btf, u32 type_id, void *obj, |
| 50 | struct seq_file *m); |
Martin KaFai Lau | 78958fc | 2018-05-04 14:49:51 -0700 | [diff] [blame] | 51 | int btf_get_fd_by_id(u32 id); |
| 52 | u32 btf_id(const struct btf *btf); |
Yonghong Song | ffa0c1c | 2018-12-15 22:13:52 -0800 | [diff] [blame] | 53 | bool btf_member_is_reg_int(const struct btf *btf, const struct btf_type *s, |
| 54 | const struct btf_member *m, |
| 55 | u32 expected_offset, u32 expected_size); |
Alexei Starovoitov | d83525c | 2019-01-31 15:40:04 -0800 | [diff] [blame] | 56 | int btf_find_spin_lock(const struct btf *btf, const struct btf_type *t); |
Daniel Borkmann | 2824ecb | 2019-04-09 23:20:10 +0200 | [diff] [blame] | 57 | bool btf_type_is_void(const struct btf_type *t); |
Martin KaFai Lau | 27ae7997 | 2020-01-08 16:35:03 -0800 | [diff] [blame] | 58 | s32 btf_find_by_name_kind(const struct btf *btf, const char *name, u8 kind); |
| 59 | const struct btf_type *btf_type_skip_modifiers(const struct btf *btf, |
| 60 | u32 id, u32 *res_id); |
| 61 | const struct btf_type *btf_type_resolve_ptr(const struct btf *btf, |
| 62 | u32 id, u32 *res_id); |
| 63 | const struct btf_type *btf_type_resolve_func_ptr(const struct btf *btf, |
| 64 | u32 id, u32 *res_id); |
Martin KaFai Lau | 85d33df | 2020-01-08 16:35:05 -0800 | [diff] [blame] | 65 | const struct btf_type * |
| 66 | btf_resolve_size(const struct btf *btf, const struct btf_type *type, |
| 67 | u32 *type_size, const struct btf_type **elem_type, |
| 68 | u32 *total_nelems); |
Martin KaFai Lau | 27ae7997 | 2020-01-08 16:35:03 -0800 | [diff] [blame] | 69 | |
| 70 | #define for_each_member(i, struct_type, member) \ |
| 71 | for (i = 0, member = btf_type_member(struct_type); \ |
| 72 | i < btf_type_vlen(struct_type); \ |
| 73 | i++, member++) |
Yonghong Song | f6161a8 | 2018-11-20 14:08:20 -0800 | [diff] [blame] | 74 | |
Martin KaFai Lau | 3820729 | 2019-10-24 17:18:11 -0700 | [diff] [blame] | 75 | static inline bool btf_type_is_ptr(const struct btf_type *t) |
| 76 | { |
| 77 | return BTF_INFO_KIND(t->info) == BTF_KIND_PTR; |
| 78 | } |
| 79 | |
| 80 | static inline bool btf_type_is_int(const struct btf_type *t) |
| 81 | { |
| 82 | return BTF_INFO_KIND(t->info) == BTF_KIND_INT; |
| 83 | } |
| 84 | |
| 85 | static inline bool btf_type_is_enum(const struct btf_type *t) |
| 86 | { |
| 87 | return BTF_INFO_KIND(t->info) == BTF_KIND_ENUM; |
| 88 | } |
| 89 | |
| 90 | static inline bool btf_type_is_typedef(const struct btf_type *t) |
| 91 | { |
| 92 | return BTF_INFO_KIND(t->info) == BTF_KIND_TYPEDEF; |
| 93 | } |
| 94 | |
| 95 | static inline bool btf_type_is_func(const struct btf_type *t) |
| 96 | { |
| 97 | return BTF_INFO_KIND(t->info) == BTF_KIND_FUNC; |
| 98 | } |
| 99 | |
| 100 | static inline bool btf_type_is_func_proto(const struct btf_type *t) |
| 101 | { |
| 102 | return BTF_INFO_KIND(t->info) == BTF_KIND_FUNC_PROTO; |
| 103 | } |
| 104 | |
Martin KaFai Lau | 27ae7997 | 2020-01-08 16:35:03 -0800 | [diff] [blame] | 105 | static inline u16 btf_type_vlen(const struct btf_type *t) |
| 106 | { |
| 107 | return BTF_INFO_VLEN(t->info); |
| 108 | } |
| 109 | |
Alexei Starovoitov | be8704f | 2020-01-20 16:53:46 -0800 | [diff] [blame] | 110 | static inline u16 btf_func_linkage(const struct btf_type *t) |
| 111 | { |
| 112 | return BTF_INFO_VLEN(t->info); |
| 113 | } |
| 114 | |
Martin KaFai Lau | 27ae7997 | 2020-01-08 16:35:03 -0800 | [diff] [blame] | 115 | static inline bool btf_type_kflag(const struct btf_type *t) |
| 116 | { |
| 117 | return BTF_INFO_KFLAG(t->info); |
| 118 | } |
| 119 | |
Martin KaFai Lau | 85d33df | 2020-01-08 16:35:05 -0800 | [diff] [blame] | 120 | static inline u32 btf_member_bit_offset(const struct btf_type *struct_type, |
| 121 | const struct btf_member *member) |
| 122 | { |
| 123 | return btf_type_kflag(struct_type) ? BTF_MEMBER_BIT_OFFSET(member->offset) |
| 124 | : member->offset; |
| 125 | } |
| 126 | |
Martin KaFai Lau | 27ae7997 | 2020-01-08 16:35:03 -0800 | [diff] [blame] | 127 | static inline u32 btf_member_bitfield_size(const struct btf_type *struct_type, |
| 128 | const struct btf_member *member) |
| 129 | { |
| 130 | return btf_type_kflag(struct_type) ? BTF_MEMBER_BITFIELD_SIZE(member->offset) |
| 131 | : 0; |
| 132 | } |
| 133 | |
| 134 | static inline const struct btf_member *btf_type_member(const struct btf_type *t) |
| 135 | { |
| 136 | return (const struct btf_member *)(t + 1); |
| 137 | } |
| 138 | |
Yonghong Song | f6161a8 | 2018-11-20 14:08:20 -0800 | [diff] [blame] | 139 | #ifdef CONFIG_BPF_SYSCALL |
Yonghong Song | 838e969 | 2018-11-19 15:29:11 -0800 | [diff] [blame] | 140 | const struct btf_type *btf_type_by_id(const struct btf *btf, u32 type_id); |
| 141 | const char *btf_name_by_offset(const struct btf *btf, u32 offset); |
Alexei Starovoitov | 8580ac9 | 2019-10-15 20:24:57 -0700 | [diff] [blame] | 142 | struct btf *btf_parse_vmlinux(void); |
Alexei Starovoitov | 5b92a28 | 2019-11-14 10:57:17 -0800 | [diff] [blame] | 143 | struct btf *bpf_prog_get_target_btf(const struct bpf_prog *prog); |
Yonghong Song | f6161a8 | 2018-11-20 14:08:20 -0800 | [diff] [blame] | 144 | #else |
| 145 | static inline const struct btf_type *btf_type_by_id(const struct btf *btf, |
| 146 | u32 type_id) |
| 147 | { |
| 148 | return NULL; |
| 149 | } |
| 150 | static inline const char *btf_name_by_offset(const struct btf *btf, |
| 151 | u32 offset) |
| 152 | { |
| 153 | return NULL; |
| 154 | } |
| 155 | #endif |
Martin KaFai Lau | eb3f595 | 2018-04-18 15:55:58 -0700 | [diff] [blame] | 156 | |
| 157 | #endif |