bpf: Simplify freeing logic in linfo and jited_linfo
[linux-2.6-block.git] / include / linux / btf.h
CommitLineData
eb3f595d
MKL
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>
38207291 8#include <uapi/linux/btf.h>
c4d0bfb4 9#include <uapi/linux/bpf.h>
eb3f595d 10
85d33df3 11#define BTF_TYPE_EMIT(type) ((void)(type *)0)
97a19caf 12#define BTF_TYPE_EMIT_ENUM(enum_val) ((void)enum_val)
85d33df3 13
eb3f595d 14struct btf;
ffa0c1cf 15struct btf_member;
eb3f595d 16struct btf_type;
f56a653c 17union bpf_attr;
31d0bc81 18struct btf_show;
eb3f595d 19
60197cfb
MKL
20extern const struct file_operations btf_fops;
21
22dc4a0f 22void btf_get(struct btf *btf);
f56a653c
MKL
23void btf_put(struct btf *btf);
24int btf_new_fd(const union bpf_attr *attr);
25struct btf *btf_get_by_fd(int fd);
60197cfb
MKL
26int btf_get_info_by_fd(const struct btf *btf,
27 const union bpf_attr *attr,
28 union bpf_attr __user *uattr);
eb3f595d
MKL
29/* Figure out the size of a type_id. If type_id is a modifier
30 * (e.g. const), it will be resolved to find out the type with size.
31 *
32 * For example:
33 * In describing "const void *", type_id is "const" and "const"
34 * refers to "void *". The return type will be "void *".
35 *
36 * If type_id is a simple "int", then return type will be "int".
37 *
38 * @btf: struct btf object
39 * @type_id: Find out the size of type_id. The type_id of the return
40 * type is set to *type_id.
41 * @ret_size: It can be NULL. If not NULL, the size of the return
42 * type is set to *ret_size.
43 * Return: The btf_type (resolved to another type with size info if needed).
44 * NULL is returned if type_id itself does not have size info
45 * (e.g. void) or it cannot be resolved to another type that
46 * has size info.
47 * *type_id and *ret_size will not be changed in the
48 * NULL return case.
49 */
50const struct btf_type *btf_type_id_size(const struct btf *btf,
51 u32 *type_id,
52 u32 *ret_size);
31d0bc81
AM
53
54/*
55 * Options to control show behaviour.
56 * - BTF_SHOW_COMPACT: no formatting around type information
57 * - BTF_SHOW_NONAME: no struct/union member names/types
58 * - BTF_SHOW_PTR_RAW: show raw (unobfuscated) pointer values;
59 * equivalent to %px.
60 * - BTF_SHOW_ZERO: show zero-valued struct/union members; they
61 * are not displayed by default
62 * - BTF_SHOW_UNSAFE: skip use of bpf_probe_read() to safely read
63 * data before displaying it.
64 */
c4d0bfb4
AM
65#define BTF_SHOW_COMPACT BTF_F_COMPACT
66#define BTF_SHOW_NONAME BTF_F_NONAME
67#define BTF_SHOW_PTR_RAW BTF_F_PTR_RAW
68#define BTF_SHOW_ZERO BTF_F_ZERO
31d0bc81
AM
69#define BTF_SHOW_UNSAFE (1ULL << 4)
70
b00b8dae
MKL
71void btf_type_seq_show(const struct btf *btf, u32 type_id, void *obj,
72 struct seq_file *m);
eb411377
AM
73int btf_type_seq_show_flags(const struct btf *btf, u32 type_id, void *obj,
74 struct seq_file *m, u64 flags);
31d0bc81
AM
75
76/*
77 * Copy len bytes of string representation of obj of BTF type_id into buf.
78 *
79 * @btf: struct btf object
80 * @type_id: type id of type obj points to
81 * @obj: pointer to typed data
82 * @buf: buffer to write to
83 * @len: maximum length to write to buf
84 * @flags: show options (see above)
85 *
86 * Return: length that would have been/was copied as per snprintf, or
87 * negative error.
88 */
89int btf_type_snprintf_show(const struct btf *btf, u32 type_id, void *obj,
90 char *buf, int len, u64 flags);
91
78958fca 92int btf_get_fd_by_id(u32 id);
22dc4a0f 93u32 btf_obj_id(const struct btf *btf);
290248a5 94bool btf_is_kernel(const struct btf *btf);
541c3bad
AN
95bool btf_is_module(const struct btf *btf);
96struct module *btf_try_get_module(const struct btf *btf);
97u32 btf_nr_types(const struct btf *btf);
ffa0c1cf
YS
98bool btf_member_is_reg_int(const struct btf *btf, const struct btf_type *s,
99 const struct btf_member *m,
100 u32 expected_offset, u32 expected_size);
d83525ca 101int btf_find_spin_lock(const struct btf *btf, const struct btf_type *t);
2824ecb7 102bool btf_type_is_void(const struct btf_type *t);
27ae7997
MKL
103s32 btf_find_by_name_kind(const struct btf *btf, const char *name, u8 kind);
104const struct btf_type *btf_type_skip_modifiers(const struct btf *btf,
105 u32 id, u32 *res_id);
106const struct btf_type *btf_type_resolve_ptr(const struct btf *btf,
107 u32 id, u32 *res_id);
108const struct btf_type *btf_type_resolve_func_ptr(const struct btf *btf,
109 u32 id, u32 *res_id);
85d33df3
MKL
110const struct btf_type *
111btf_resolve_size(const struct btf *btf, const struct btf_type *type,
6298399b 112 u32 *type_size);
27ae7997
MKL
113
114#define for_each_member(i, struct_type, member) \
115 for (i = 0, member = btf_type_member(struct_type); \
116 i < btf_type_vlen(struct_type); \
117 i++, member++)
f6161a8f 118
eaa6bcb7
HL
119#define for_each_vsi(i, datasec_type, member) \
120 for (i = 0, member = btf_type_var_secinfo(datasec_type); \
121 i < btf_type_vlen(datasec_type); \
122 i++, member++)
123
38207291
MKL
124static inline bool btf_type_is_ptr(const struct btf_type *t)
125{
126 return BTF_INFO_KIND(t->info) == BTF_KIND_PTR;
127}
128
129static inline bool btf_type_is_int(const struct btf_type *t)
130{
131 return BTF_INFO_KIND(t->info) == BTF_KIND_INT;
132}
133
a9b59159
JF
134static inline bool btf_type_is_small_int(const struct btf_type *t)
135{
136 return btf_type_is_int(t) && t->size <= sizeof(u64);
137}
138
38207291
MKL
139static inline bool btf_type_is_enum(const struct btf_type *t)
140{
141 return BTF_INFO_KIND(t->info) == BTF_KIND_ENUM;
142}
143
144static inline bool btf_type_is_typedef(const struct btf_type *t)
145{
146 return BTF_INFO_KIND(t->info) == BTF_KIND_TYPEDEF;
147}
148
149static inline bool btf_type_is_func(const struct btf_type *t)
150{
151 return BTF_INFO_KIND(t->info) == BTF_KIND_FUNC;
152}
153
154static inline bool btf_type_is_func_proto(const struct btf_type *t)
155{
156 return BTF_INFO_KIND(t->info) == BTF_KIND_FUNC_PROTO;
157}
158
4976b718
HL
159static inline bool btf_type_is_var(const struct btf_type *t)
160{
161 return BTF_INFO_KIND(t->info) == BTF_KIND_VAR;
162}
163
164/* union is only a special case of struct:
165 * all its offsetof(member) == 0
166 */
167static inline bool btf_type_is_struct(const struct btf_type *t)
168{
169 u8 kind = BTF_INFO_KIND(t->info);
170
171 return kind == BTF_KIND_STRUCT || kind == BTF_KIND_UNION;
172}
173
27ae7997
MKL
174static inline u16 btf_type_vlen(const struct btf_type *t)
175{
176 return BTF_INFO_VLEN(t->info);
177}
178
be8704ff
AS
179static inline u16 btf_func_linkage(const struct btf_type *t)
180{
181 return BTF_INFO_VLEN(t->info);
182}
183
27ae7997
MKL
184static inline bool btf_type_kflag(const struct btf_type *t)
185{
186 return BTF_INFO_KFLAG(t->info);
187}
188
85d33df3
MKL
189static inline u32 btf_member_bit_offset(const struct btf_type *struct_type,
190 const struct btf_member *member)
191{
192 return btf_type_kflag(struct_type) ? BTF_MEMBER_BIT_OFFSET(member->offset)
193 : member->offset;
194}
195
27ae7997
MKL
196static inline u32 btf_member_bitfield_size(const struct btf_type *struct_type,
197 const struct btf_member *member)
198{
199 return btf_type_kflag(struct_type) ? BTF_MEMBER_BITFIELD_SIZE(member->offset)
200 : 0;
201}
202
203static inline const struct btf_member *btf_type_member(const struct btf_type *t)
204{
205 return (const struct btf_member *)(t + 1);
206}
207
eaa6bcb7
HL
208static inline const struct btf_var_secinfo *btf_type_var_secinfo(
209 const struct btf_type *t)
210{
211 return (const struct btf_var_secinfo *)(t + 1);
212}
213
f6161a8f 214#ifdef CONFIG_BPF_SYSCALL
22dc4a0f
AN
215struct bpf_prog;
216
838e9690
YS
217const struct btf_type *btf_type_by_id(const struct btf *btf, u32 type_id);
218const char *btf_name_by_offset(const struct btf *btf, u32 offset);
8580ac94 219struct btf *btf_parse_vmlinux(void);
5b92a28a 220struct btf *bpf_prog_get_target_btf(const struct bpf_prog *prog);
f6161a8f
YS
221#else
222static inline const struct btf_type *btf_type_by_id(const struct btf *btf,
223 u32 type_id)
224{
225 return NULL;
226}
227static inline const char *btf_name_by_offset(const struct btf *btf,
228 u32 offset)
229{
230 return NULL;
231}
232#endif
eb3f595d
MKL
233
234#endif