xref: /OK3568_Linux_fs/kernel/tools/lib/bpf/bpf.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
2*4882a593Smuzhiyun 
3*4882a593Smuzhiyun /*
4*4882a593Smuzhiyun  * common eBPF ELF operations.
5*4882a593Smuzhiyun  *
6*4882a593Smuzhiyun  * Copyright (C) 2013-2015 Alexei Starovoitov <ast@kernel.org>
7*4882a593Smuzhiyun  * Copyright (C) 2015 Wang Nan <wangnan0@huawei.com>
8*4882a593Smuzhiyun  * Copyright (C) 2015 Huawei Inc.
9*4882a593Smuzhiyun  *
10*4882a593Smuzhiyun  * This program is free software; you can redistribute it and/or
11*4882a593Smuzhiyun  * modify it under the terms of the GNU Lesser General Public
12*4882a593Smuzhiyun  * License as published by the Free Software Foundation;
13*4882a593Smuzhiyun  * version 2.1 of the License (not later!)
14*4882a593Smuzhiyun  *
15*4882a593Smuzhiyun  * This program is distributed in the hope that it will be useful,
16*4882a593Smuzhiyun  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*4882a593Smuzhiyun  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*4882a593Smuzhiyun  * GNU Lesser General Public License for more details.
19*4882a593Smuzhiyun  *
20*4882a593Smuzhiyun  * You should have received a copy of the GNU Lesser General Public
21*4882a593Smuzhiyun  * License along with this program; if not,  see <http://www.gnu.org/licenses>
22*4882a593Smuzhiyun  */
23*4882a593Smuzhiyun #ifndef __LIBBPF_BPF_H
24*4882a593Smuzhiyun #define __LIBBPF_BPF_H
25*4882a593Smuzhiyun 
26*4882a593Smuzhiyun #include <linux/bpf.h>
27*4882a593Smuzhiyun #include <stdbool.h>
28*4882a593Smuzhiyun #include <stddef.h>
29*4882a593Smuzhiyun #include <stdint.h>
30*4882a593Smuzhiyun 
31*4882a593Smuzhiyun #include "libbpf_common.h"
32*4882a593Smuzhiyun 
33*4882a593Smuzhiyun #ifdef __cplusplus
34*4882a593Smuzhiyun extern "C" {
35*4882a593Smuzhiyun #endif
36*4882a593Smuzhiyun 
37*4882a593Smuzhiyun struct bpf_create_map_attr {
38*4882a593Smuzhiyun 	const char *name;
39*4882a593Smuzhiyun 	enum bpf_map_type map_type;
40*4882a593Smuzhiyun 	__u32 map_flags;
41*4882a593Smuzhiyun 	__u32 key_size;
42*4882a593Smuzhiyun 	__u32 value_size;
43*4882a593Smuzhiyun 	__u32 max_entries;
44*4882a593Smuzhiyun 	__u32 numa_node;
45*4882a593Smuzhiyun 	__u32 btf_fd;
46*4882a593Smuzhiyun 	__u32 btf_key_type_id;
47*4882a593Smuzhiyun 	__u32 btf_value_type_id;
48*4882a593Smuzhiyun 	__u32 map_ifindex;
49*4882a593Smuzhiyun 	union {
50*4882a593Smuzhiyun 		__u32 inner_map_fd;
51*4882a593Smuzhiyun 		__u32 btf_vmlinux_value_type_id;
52*4882a593Smuzhiyun 	};
53*4882a593Smuzhiyun };
54*4882a593Smuzhiyun 
55*4882a593Smuzhiyun LIBBPF_API int
56*4882a593Smuzhiyun bpf_create_map_xattr(const struct bpf_create_map_attr *create_attr);
57*4882a593Smuzhiyun LIBBPF_API int bpf_create_map_node(enum bpf_map_type map_type, const char *name,
58*4882a593Smuzhiyun 				   int key_size, int value_size,
59*4882a593Smuzhiyun 				   int max_entries, __u32 map_flags, int node);
60*4882a593Smuzhiyun LIBBPF_API int bpf_create_map_name(enum bpf_map_type map_type, const char *name,
61*4882a593Smuzhiyun 				   int key_size, int value_size,
62*4882a593Smuzhiyun 				   int max_entries, __u32 map_flags);
63*4882a593Smuzhiyun LIBBPF_API int bpf_create_map(enum bpf_map_type map_type, int key_size,
64*4882a593Smuzhiyun 			      int value_size, int max_entries, __u32 map_flags);
65*4882a593Smuzhiyun LIBBPF_API int bpf_create_map_in_map_node(enum bpf_map_type map_type,
66*4882a593Smuzhiyun 					  const char *name, int key_size,
67*4882a593Smuzhiyun 					  int inner_map_fd, int max_entries,
68*4882a593Smuzhiyun 					  __u32 map_flags, int node);
69*4882a593Smuzhiyun LIBBPF_API int bpf_create_map_in_map(enum bpf_map_type map_type,
70*4882a593Smuzhiyun 				     const char *name, int key_size,
71*4882a593Smuzhiyun 				     int inner_map_fd, int max_entries,
72*4882a593Smuzhiyun 				     __u32 map_flags);
73*4882a593Smuzhiyun 
74*4882a593Smuzhiyun struct bpf_load_program_attr {
75*4882a593Smuzhiyun 	enum bpf_prog_type prog_type;
76*4882a593Smuzhiyun 	enum bpf_attach_type expected_attach_type;
77*4882a593Smuzhiyun 	const char *name;
78*4882a593Smuzhiyun 	const struct bpf_insn *insns;
79*4882a593Smuzhiyun 	size_t insns_cnt;
80*4882a593Smuzhiyun 	const char *license;
81*4882a593Smuzhiyun 	union {
82*4882a593Smuzhiyun 		__u32 kern_version;
83*4882a593Smuzhiyun 		__u32 attach_prog_fd;
84*4882a593Smuzhiyun 	};
85*4882a593Smuzhiyun 	union {
86*4882a593Smuzhiyun 		__u32 prog_ifindex;
87*4882a593Smuzhiyun 		__u32 attach_btf_id;
88*4882a593Smuzhiyun 	};
89*4882a593Smuzhiyun 	__u32 prog_btf_fd;
90*4882a593Smuzhiyun 	__u32 func_info_rec_size;
91*4882a593Smuzhiyun 	const void *func_info;
92*4882a593Smuzhiyun 	__u32 func_info_cnt;
93*4882a593Smuzhiyun 	__u32 line_info_rec_size;
94*4882a593Smuzhiyun 	const void *line_info;
95*4882a593Smuzhiyun 	__u32 line_info_cnt;
96*4882a593Smuzhiyun 	__u32 log_level;
97*4882a593Smuzhiyun 	__u32 prog_flags;
98*4882a593Smuzhiyun };
99*4882a593Smuzhiyun 
100*4882a593Smuzhiyun /* Flags to direct loading requirements */
101*4882a593Smuzhiyun #define MAPS_RELAX_COMPAT	0x01
102*4882a593Smuzhiyun 
103*4882a593Smuzhiyun /* Recommend log buffer size */
104*4882a593Smuzhiyun #define BPF_LOG_BUF_SIZE (UINT32_MAX >> 8) /* verifier maximum in kernels <= 5.1 */
105*4882a593Smuzhiyun LIBBPF_API int
106*4882a593Smuzhiyun bpf_load_program_xattr(const struct bpf_load_program_attr *load_attr,
107*4882a593Smuzhiyun 		       char *log_buf, size_t log_buf_sz);
108*4882a593Smuzhiyun LIBBPF_API int bpf_load_program(enum bpf_prog_type type,
109*4882a593Smuzhiyun 				const struct bpf_insn *insns, size_t insns_cnt,
110*4882a593Smuzhiyun 				const char *license, __u32 kern_version,
111*4882a593Smuzhiyun 				char *log_buf, size_t log_buf_sz);
112*4882a593Smuzhiyun LIBBPF_API int bpf_verify_program(enum bpf_prog_type type,
113*4882a593Smuzhiyun 				  const struct bpf_insn *insns,
114*4882a593Smuzhiyun 				  size_t insns_cnt, __u32 prog_flags,
115*4882a593Smuzhiyun 				  const char *license, __u32 kern_version,
116*4882a593Smuzhiyun 				  char *log_buf, size_t log_buf_sz,
117*4882a593Smuzhiyun 				  int log_level);
118*4882a593Smuzhiyun 
119*4882a593Smuzhiyun LIBBPF_API int bpf_map_update_elem(int fd, const void *key, const void *value,
120*4882a593Smuzhiyun 				   __u64 flags);
121*4882a593Smuzhiyun 
122*4882a593Smuzhiyun LIBBPF_API int bpf_map_lookup_elem(int fd, const void *key, void *value);
123*4882a593Smuzhiyun LIBBPF_API int bpf_map_lookup_elem_flags(int fd, const void *key, void *value,
124*4882a593Smuzhiyun 					 __u64 flags);
125*4882a593Smuzhiyun LIBBPF_API int bpf_map_lookup_and_delete_elem(int fd, const void *key,
126*4882a593Smuzhiyun 					      void *value);
127*4882a593Smuzhiyun LIBBPF_API int bpf_map_delete_elem(int fd, const void *key);
128*4882a593Smuzhiyun LIBBPF_API int bpf_map_get_next_key(int fd, const void *key, void *next_key);
129*4882a593Smuzhiyun LIBBPF_API int bpf_map_freeze(int fd);
130*4882a593Smuzhiyun 
131*4882a593Smuzhiyun struct bpf_map_batch_opts {
132*4882a593Smuzhiyun 	size_t sz; /* size of this struct for forward/backward compatibility */
133*4882a593Smuzhiyun 	__u64 elem_flags;
134*4882a593Smuzhiyun 	__u64 flags;
135*4882a593Smuzhiyun };
136*4882a593Smuzhiyun #define bpf_map_batch_opts__last_field flags
137*4882a593Smuzhiyun 
138*4882a593Smuzhiyun LIBBPF_API int bpf_map_delete_batch(int fd, void *keys,
139*4882a593Smuzhiyun 				    __u32 *count,
140*4882a593Smuzhiyun 				    const struct bpf_map_batch_opts *opts);
141*4882a593Smuzhiyun LIBBPF_API int bpf_map_lookup_batch(int fd, void *in_batch, void *out_batch,
142*4882a593Smuzhiyun 				    void *keys, void *values, __u32 *count,
143*4882a593Smuzhiyun 				    const struct bpf_map_batch_opts *opts);
144*4882a593Smuzhiyun LIBBPF_API int bpf_map_lookup_and_delete_batch(int fd, void *in_batch,
145*4882a593Smuzhiyun 					void *out_batch, void *keys,
146*4882a593Smuzhiyun 					void *values, __u32 *count,
147*4882a593Smuzhiyun 					const struct bpf_map_batch_opts *opts);
148*4882a593Smuzhiyun LIBBPF_API int bpf_map_update_batch(int fd, void *keys, void *values,
149*4882a593Smuzhiyun 				    __u32 *count,
150*4882a593Smuzhiyun 				    const struct bpf_map_batch_opts *opts);
151*4882a593Smuzhiyun 
152*4882a593Smuzhiyun LIBBPF_API int bpf_obj_pin(int fd, const char *pathname);
153*4882a593Smuzhiyun LIBBPF_API int bpf_obj_get(const char *pathname);
154*4882a593Smuzhiyun 
155*4882a593Smuzhiyun struct bpf_prog_attach_opts {
156*4882a593Smuzhiyun 	size_t sz; /* size of this struct for forward/backward compatibility */
157*4882a593Smuzhiyun 	unsigned int flags;
158*4882a593Smuzhiyun 	int replace_prog_fd;
159*4882a593Smuzhiyun };
160*4882a593Smuzhiyun #define bpf_prog_attach_opts__last_field replace_prog_fd
161*4882a593Smuzhiyun 
162*4882a593Smuzhiyun LIBBPF_API int bpf_prog_attach(int prog_fd, int attachable_fd,
163*4882a593Smuzhiyun 			       enum bpf_attach_type type, unsigned int flags);
164*4882a593Smuzhiyun LIBBPF_API int bpf_prog_attach_xattr(int prog_fd, int attachable_fd,
165*4882a593Smuzhiyun 				     enum bpf_attach_type type,
166*4882a593Smuzhiyun 				     const struct bpf_prog_attach_opts *opts);
167*4882a593Smuzhiyun LIBBPF_API int bpf_prog_detach(int attachable_fd, enum bpf_attach_type type);
168*4882a593Smuzhiyun LIBBPF_API int bpf_prog_detach2(int prog_fd, int attachable_fd,
169*4882a593Smuzhiyun 				enum bpf_attach_type type);
170*4882a593Smuzhiyun 
171*4882a593Smuzhiyun union bpf_iter_link_info; /* defined in up-to-date linux/bpf.h */
172*4882a593Smuzhiyun struct bpf_link_create_opts {
173*4882a593Smuzhiyun 	size_t sz; /* size of this struct for forward/backward compatibility */
174*4882a593Smuzhiyun 	__u32 flags;
175*4882a593Smuzhiyun 	union bpf_iter_link_info *iter_info;
176*4882a593Smuzhiyun 	__u32 iter_info_len;
177*4882a593Smuzhiyun 	__u32 target_btf_id;
178*4882a593Smuzhiyun };
179*4882a593Smuzhiyun #define bpf_link_create_opts__last_field target_btf_id
180*4882a593Smuzhiyun 
181*4882a593Smuzhiyun LIBBPF_API int bpf_link_create(int prog_fd, int target_fd,
182*4882a593Smuzhiyun 			       enum bpf_attach_type attach_type,
183*4882a593Smuzhiyun 			       const struct bpf_link_create_opts *opts);
184*4882a593Smuzhiyun 
185*4882a593Smuzhiyun LIBBPF_API int bpf_link_detach(int link_fd);
186*4882a593Smuzhiyun 
187*4882a593Smuzhiyun struct bpf_link_update_opts {
188*4882a593Smuzhiyun 	size_t sz; /* size of this struct for forward/backward compatibility */
189*4882a593Smuzhiyun 	__u32 flags;	   /* extra flags */
190*4882a593Smuzhiyun 	__u32 old_prog_fd; /* expected old program FD */
191*4882a593Smuzhiyun };
192*4882a593Smuzhiyun #define bpf_link_update_opts__last_field old_prog_fd
193*4882a593Smuzhiyun 
194*4882a593Smuzhiyun LIBBPF_API int bpf_link_update(int link_fd, int new_prog_fd,
195*4882a593Smuzhiyun 			       const struct bpf_link_update_opts *opts);
196*4882a593Smuzhiyun 
197*4882a593Smuzhiyun LIBBPF_API int bpf_iter_create(int link_fd);
198*4882a593Smuzhiyun 
199*4882a593Smuzhiyun struct bpf_prog_test_run_attr {
200*4882a593Smuzhiyun 	int prog_fd;
201*4882a593Smuzhiyun 	int repeat;
202*4882a593Smuzhiyun 	const void *data_in;
203*4882a593Smuzhiyun 	__u32 data_size_in;
204*4882a593Smuzhiyun 	void *data_out;      /* optional */
205*4882a593Smuzhiyun 	__u32 data_size_out; /* in: max length of data_out
206*4882a593Smuzhiyun 			      * out: length of data_out */
207*4882a593Smuzhiyun 	__u32 retval;        /* out: return code of the BPF program */
208*4882a593Smuzhiyun 	__u32 duration;      /* out: average per repetition in ns */
209*4882a593Smuzhiyun 	const void *ctx_in; /* optional */
210*4882a593Smuzhiyun 	__u32 ctx_size_in;
211*4882a593Smuzhiyun 	void *ctx_out;      /* optional */
212*4882a593Smuzhiyun 	__u32 ctx_size_out; /* in: max length of ctx_out
213*4882a593Smuzhiyun 			     * out: length of cxt_out */
214*4882a593Smuzhiyun };
215*4882a593Smuzhiyun 
216*4882a593Smuzhiyun LIBBPF_API int bpf_prog_test_run_xattr(struct bpf_prog_test_run_attr *test_attr);
217*4882a593Smuzhiyun 
218*4882a593Smuzhiyun /*
219*4882a593Smuzhiyun  * bpf_prog_test_run does not check that data_out is large enough. Consider
220*4882a593Smuzhiyun  * using bpf_prog_test_run_xattr instead.
221*4882a593Smuzhiyun  */
222*4882a593Smuzhiyun LIBBPF_API int bpf_prog_test_run(int prog_fd, int repeat, void *data,
223*4882a593Smuzhiyun 				 __u32 size, void *data_out, __u32 *size_out,
224*4882a593Smuzhiyun 				 __u32 *retval, __u32 *duration);
225*4882a593Smuzhiyun LIBBPF_API int bpf_prog_get_next_id(__u32 start_id, __u32 *next_id);
226*4882a593Smuzhiyun LIBBPF_API int bpf_map_get_next_id(__u32 start_id, __u32 *next_id);
227*4882a593Smuzhiyun LIBBPF_API int bpf_btf_get_next_id(__u32 start_id, __u32 *next_id);
228*4882a593Smuzhiyun LIBBPF_API int bpf_link_get_next_id(__u32 start_id, __u32 *next_id);
229*4882a593Smuzhiyun LIBBPF_API int bpf_prog_get_fd_by_id(__u32 id);
230*4882a593Smuzhiyun LIBBPF_API int bpf_map_get_fd_by_id(__u32 id);
231*4882a593Smuzhiyun LIBBPF_API int bpf_btf_get_fd_by_id(__u32 id);
232*4882a593Smuzhiyun LIBBPF_API int bpf_link_get_fd_by_id(__u32 id);
233*4882a593Smuzhiyun LIBBPF_API int bpf_obj_get_info_by_fd(int bpf_fd, void *info, __u32 *info_len);
234*4882a593Smuzhiyun LIBBPF_API int bpf_prog_query(int target_fd, enum bpf_attach_type type,
235*4882a593Smuzhiyun 			      __u32 query_flags, __u32 *attach_flags,
236*4882a593Smuzhiyun 			      __u32 *prog_ids, __u32 *prog_cnt);
237*4882a593Smuzhiyun LIBBPF_API int bpf_raw_tracepoint_open(const char *name, int prog_fd);
238*4882a593Smuzhiyun LIBBPF_API int bpf_load_btf(const void *btf, __u32 btf_size, char *log_buf,
239*4882a593Smuzhiyun 			    __u32 log_buf_size, bool do_log);
240*4882a593Smuzhiyun LIBBPF_API int bpf_task_fd_query(int pid, int fd, __u32 flags, char *buf,
241*4882a593Smuzhiyun 				 __u32 *buf_len, __u32 *prog_id, __u32 *fd_type,
242*4882a593Smuzhiyun 				 __u64 *probe_offset, __u64 *probe_addr);
243*4882a593Smuzhiyun 
244*4882a593Smuzhiyun enum bpf_stats_type; /* defined in up-to-date linux/bpf.h */
245*4882a593Smuzhiyun LIBBPF_API int bpf_enable_stats(enum bpf_stats_type type);
246*4882a593Smuzhiyun 
247*4882a593Smuzhiyun struct bpf_prog_bind_opts {
248*4882a593Smuzhiyun 	size_t sz; /* size of this struct for forward/backward compatibility */
249*4882a593Smuzhiyun 	__u32 flags;
250*4882a593Smuzhiyun };
251*4882a593Smuzhiyun #define bpf_prog_bind_opts__last_field flags
252*4882a593Smuzhiyun 
253*4882a593Smuzhiyun LIBBPF_API int bpf_prog_bind_map(int prog_fd, int map_fd,
254*4882a593Smuzhiyun 				 const struct bpf_prog_bind_opts *opts);
255*4882a593Smuzhiyun 
256*4882a593Smuzhiyun struct bpf_test_run_opts {
257*4882a593Smuzhiyun 	size_t sz; /* size of this struct for forward/backward compatibility */
258*4882a593Smuzhiyun 	const void *data_in; /* optional */
259*4882a593Smuzhiyun 	void *data_out;      /* optional */
260*4882a593Smuzhiyun 	__u32 data_size_in;
261*4882a593Smuzhiyun 	__u32 data_size_out; /* in: max length of data_out
262*4882a593Smuzhiyun 			      * out: length of data_out
263*4882a593Smuzhiyun 			      */
264*4882a593Smuzhiyun 	const void *ctx_in; /* optional */
265*4882a593Smuzhiyun 	void *ctx_out;      /* optional */
266*4882a593Smuzhiyun 	__u32 ctx_size_in;
267*4882a593Smuzhiyun 	__u32 ctx_size_out; /* in: max length of ctx_out
268*4882a593Smuzhiyun 			     * out: length of cxt_out
269*4882a593Smuzhiyun 			     */
270*4882a593Smuzhiyun 	__u32 retval;        /* out: return code of the BPF program */
271*4882a593Smuzhiyun 	int repeat;
272*4882a593Smuzhiyun 	__u32 duration;      /* out: average per repetition in ns */
273*4882a593Smuzhiyun 	__u32 flags;
274*4882a593Smuzhiyun 	__u32 cpu;
275*4882a593Smuzhiyun };
276*4882a593Smuzhiyun #define bpf_test_run_opts__last_field cpu
277*4882a593Smuzhiyun 
278*4882a593Smuzhiyun LIBBPF_API int bpf_prog_test_run_opts(int prog_fd,
279*4882a593Smuzhiyun 				      struct bpf_test_run_opts *opts);
280*4882a593Smuzhiyun 
281*4882a593Smuzhiyun #ifdef __cplusplus
282*4882a593Smuzhiyun } /* extern "C" */
283*4882a593Smuzhiyun #endif
284*4882a593Smuzhiyun 
285*4882a593Smuzhiyun #endif /* __LIBBPF_BPF_H */
286