Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm
[linux-block.git] / include / linux / bpf.h
CommitLineData
25763b3c 1/* SPDX-License-Identifier: GPL-2.0-only */
99c55f7d 2/* Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com
99c55f7d
AS
3 */
4#ifndef _LINUX_BPF_H
5#define _LINUX_BPF_H 1
6
7#include <uapi/linux/bpf.h>
74451e66 8
99c55f7d 9#include <linux/workqueue.h>
db20fd2b 10#include <linux/file.h>
b121d1e7 11#include <linux/percpu.h>
002245cc 12#include <linux/err.h>
74451e66 13#include <linux/rbtree_latch.h>
d6e1e46f 14#include <linux/numa.h>
fc970227 15#include <linux/mm_types.h>
ab3f0063 16#include <linux/wait.h>
492ecee8 17#include <linux/u64_stats_sync.h>
fec56f58
AS
18#include <linux/refcount.h>
19#include <linux/mutex.h>
85d33df3 20#include <linux/module.h>
bfea9a85 21#include <linux/kallsyms.h>
2c78ee89 22#include <linux/capability.h>
99c55f7d 23
cae1927c 24struct bpf_verifier_env;
9e15db66 25struct bpf_verifier_log;
3b1efb19 26struct perf_event;
174a79ff 27struct bpf_prog;
da765a2f 28struct bpf_prog_aux;
99c55f7d 29struct bpf_map;
4f738adb 30struct sock;
a26ca7c9 31struct seq_file;
1b2b234b 32struct btf;
e8d2bec0 33struct btf_type;
3dec541b 34struct exception_table_entry;
ae24345d 35struct seq_operations;
f9c79272 36struct bpf_iter_aux_info;
99c55f7d 37
1b9ed84e
QM
38extern struct idr btf_idr;
39extern spinlock_t btf_idr_lock;
40
f9c79272
YS
41typedef int (*bpf_iter_init_seq_priv_t)(void *private_data,
42 struct bpf_iter_aux_info *aux);
14fc6bd6
YS
43typedef void (*bpf_iter_fini_seq_priv_t)(void *private_data);
44struct bpf_iter_seq_info {
45 const struct seq_operations *seq_ops;
46 bpf_iter_init_seq_priv_t init_seq_private;
47 bpf_iter_fini_seq_priv_t fini_seq_private;
48 u32 seq_priv_size;
49};
50
99c55f7d
AS
51/* map is generic key/value storage optionally accesible by eBPF programs */
52struct bpf_map_ops {
53 /* funcs callable from userspace (via syscall) */
1110f3a9 54 int (*map_alloc_check)(union bpf_attr *attr);
99c55f7d 55 struct bpf_map *(*map_alloc)(union bpf_attr *attr);
61d1b6a4
DB
56 void (*map_release)(struct bpf_map *map, struct file *map_file);
57 void (*map_free)(struct bpf_map *map);
db20fd2b 58 int (*map_get_next_key)(struct bpf_map *map, void *key, void *next_key);
ba6b8de4 59 void (*map_release_uref)(struct bpf_map *map);
c6110222 60 void *(*map_lookup_elem_sys_only)(struct bpf_map *map, void *key);
cb4d03ab
BV
61 int (*map_lookup_batch)(struct bpf_map *map, const union bpf_attr *attr,
62 union bpf_attr __user *uattr);
05799638
YS
63 int (*map_lookup_and_delete_batch)(struct bpf_map *map,
64 const union bpf_attr *attr,
65 union bpf_attr __user *uattr);
aa2e93b8
BV
66 int (*map_update_batch)(struct bpf_map *map, const union bpf_attr *attr,
67 union bpf_attr __user *uattr);
68 int (*map_delete_batch)(struct bpf_map *map, const union bpf_attr *attr,
69 union bpf_attr __user *uattr);
db20fd2b
AS
70
71 /* funcs callable from userspace and from eBPF programs */
72 void *(*map_lookup_elem)(struct bpf_map *map, void *key);
3274f520 73 int (*map_update_elem)(struct bpf_map *map, void *key, void *value, u64 flags);
db20fd2b 74 int (*map_delete_elem)(struct bpf_map *map, void *key);
f1a2e44a
MV
75 int (*map_push_elem)(struct bpf_map *map, void *value, u64 flags);
76 int (*map_pop_elem)(struct bpf_map *map, void *value);
77 int (*map_peek_elem)(struct bpf_map *map, void *value);
2a36f0b9
WN
78
79 /* funcs called by prog_array and perf_event_array map */
d056a788
DB
80 void *(*map_fd_get_ptr)(struct bpf_map *map, struct file *map_file,
81 int fd);
82 void (*map_fd_put_ptr)(void *ptr);
81ed18ab 83 u32 (*map_gen_lookup)(struct bpf_map *map, struct bpf_insn *insn_buf);
14dc6f04 84 u32 (*map_fd_sys_lookup_elem)(void *ptr);
a26ca7c9
MKL
85 void (*map_seq_show_elem)(struct bpf_map *map, void *key,
86 struct seq_file *m);
e8d2bec0 87 int (*map_check_btf)(const struct bpf_map *map,
1b2b234b 88 const struct btf *btf,
e8d2bec0
DB
89 const struct btf_type *key_type,
90 const struct btf_type *value_type);
d8eca5bb 91
da765a2f
DB
92 /* Prog poke tracking helpers. */
93 int (*map_poke_track)(struct bpf_map *map, struct bpf_prog_aux *aux);
94 void (*map_poke_untrack)(struct bpf_map *map, struct bpf_prog_aux *aux);
95 void (*map_poke_run)(struct bpf_map *map, u32 key, struct bpf_prog *old,
96 struct bpf_prog *new);
97
d8eca5bb
DB
98 /* Direct value access helpers. */
99 int (*map_direct_value_addr)(const struct bpf_map *map,
100 u64 *imm, u32 off);
101 int (*map_direct_value_meta)(const struct bpf_map *map,
102 u64 imm, u32 *off);
fc970227 103 int (*map_mmap)(struct bpf_map *map, struct vm_area_struct *vma);
457f4436
AN
104 __poll_t (*map_poll)(struct bpf_map *map, struct file *filp,
105 struct poll_table_struct *pts);
41c48f3a
AI
106
107 /* BTF name and id of struct allocated by map_alloc */
108 const char * const map_btf_name;
109 int *map_btf_id;
a5cbe05a
YS
110
111 /* bpf_iter info used to open a seq_file */
112 const struct bpf_iter_seq_info *iter_seq_info;
99c55f7d
AS
113};
114
3539b96e
RG
115struct bpf_map_memory {
116 u32 pages;
117 struct user_struct *user;
118};
119
99c55f7d 120struct bpf_map {
a26ca7c9 121 /* The first two cachelines with read-mostly members of which some
be95a845
DB
122 * are also accessed in fast-path (e.g. ops, max_entries).
123 */
124 const struct bpf_map_ops *ops ____cacheline_aligned;
125 struct bpf_map *inner_map_meta;
126#ifdef CONFIG_SECURITY
127 void *security;
128#endif
99c55f7d
AS
129 enum bpf_map_type map_type;
130 u32 key_size;
131 u32 value_size;
132 u32 max_entries;
6c905981 133 u32 map_flags;
d83525ca 134 int spin_lock_off; /* >=0 valid offset, <0 error */
f3f1c054 135 u32 id;
96eabe7a 136 int numa_node;
9b2cf328
MKL
137 u32 btf_key_type_id;
138 u32 btf_value_type_id;
a26ca7c9 139 struct btf *btf;
3539b96e 140 struct bpf_map_memory memory;
fc970227 141 char name[BPF_OBJ_NAME_LEN];
85d33df3 142 u32 btf_vmlinux_value_type_id;
2c78ee89 143 bool bypass_spec_v1;
fc970227
AN
144 bool frozen; /* write-once; write-protected by freeze_mutex */
145 /* 22 bytes hole */
be95a845 146
a26ca7c9 147 /* The 3rd and 4th cacheline with misc members to avoid false sharing
be95a845
DB
148 * particularly with refcounting.
149 */
1e0bd5a0
AN
150 atomic64_t refcnt ____cacheline_aligned;
151 atomic64_t usercnt;
be95a845 152 struct work_struct work;
fc970227
AN
153 struct mutex freeze_mutex;
154 u64 writecnt; /* writable mmap cnt; protected by freeze_mutex */
99c55f7d
AS
155};
156
d83525ca
AS
157static inline bool map_value_has_spin_lock(const struct bpf_map *map)
158{
159 return map->spin_lock_off >= 0;
160}
161
162static inline void check_and_init_map_lock(struct bpf_map *map, void *dst)
163{
164 if (likely(!map_value_has_spin_lock(map)))
165 return;
166 *(struct bpf_spin_lock *)(dst + map->spin_lock_off) =
167 (struct bpf_spin_lock){};
168}
169
170/* copy everything but bpf_spin_lock */
171static inline void copy_map_value(struct bpf_map *map, void *dst, void *src)
172{
173 if (unlikely(map_value_has_spin_lock(map))) {
174 u32 off = map->spin_lock_off;
175
176 memcpy(dst, src, off);
177 memcpy(dst + off + sizeof(struct bpf_spin_lock),
178 src + off + sizeof(struct bpf_spin_lock),
179 map->value_size - off - sizeof(struct bpf_spin_lock));
180 } else {
181 memcpy(dst, src, map->value_size);
182 }
183}
96049f3a
AS
184void copy_map_value_locked(struct bpf_map *map, void *dst, void *src,
185 bool lock_src);
8e7ae251 186int bpf_obj_name_cpy(char *dst, const char *src, unsigned int size);
d83525ca 187
602144c2 188struct bpf_offload_dev;
a3884572
JK
189struct bpf_offloaded_map;
190
191struct bpf_map_dev_ops {
192 int (*map_get_next_key)(struct bpf_offloaded_map *map,
193 void *key, void *next_key);
194 int (*map_lookup_elem)(struct bpf_offloaded_map *map,
195 void *key, void *value);
196 int (*map_update_elem)(struct bpf_offloaded_map *map,
197 void *key, void *value, u64 flags);
198 int (*map_delete_elem)(struct bpf_offloaded_map *map, void *key);
199};
200
201struct bpf_offloaded_map {
202 struct bpf_map map;
203 struct net_device *netdev;
204 const struct bpf_map_dev_ops *dev_ops;
205 void *dev_priv;
206 struct list_head offloads;
207};
208
209static inline struct bpf_offloaded_map *map_to_offmap(struct bpf_map *map)
210{
211 return container_of(map, struct bpf_offloaded_map, map);
212}
213
0cd3cbed
JK
214static inline bool bpf_map_offload_neutral(const struct bpf_map *map)
215{
216 return map->map_type == BPF_MAP_TYPE_PERF_EVENT_ARRAY;
217}
218
a26ca7c9
MKL
219static inline bool bpf_map_support_seq_show(const struct bpf_map *map)
220{
85d33df3
MKL
221 return (map->btf_value_type_id || map->btf_vmlinux_value_type_id) &&
222 map->ops->map_seq_show_elem;
a26ca7c9
MKL
223}
224
e8d2bec0 225int map_check_no_btf(const struct bpf_map *map,
1b2b234b 226 const struct btf *btf,
e8d2bec0
DB
227 const struct btf_type *key_type,
228 const struct btf_type *value_type);
229
a3884572
JK
230extern const struct bpf_map_ops bpf_map_offload_ops;
231
17a52670
AS
232/* function argument constraints */
233enum bpf_arg_type {
80f1d68c 234 ARG_DONTCARE = 0, /* unused argument in helper function */
17a52670
AS
235
236 /* the following constraints used to prototype
237 * bpf_map_lookup/update/delete_elem() functions
238 */
239 ARG_CONST_MAP_PTR, /* const argument used as pointer to bpf_map */
240 ARG_PTR_TO_MAP_KEY, /* pointer to stack used as map key */
241 ARG_PTR_TO_MAP_VALUE, /* pointer to stack used as map value */
2ea864c5 242 ARG_PTR_TO_UNINIT_MAP_VALUE, /* pointer to valid memory used to store a map value */
6ac99e8f 243 ARG_PTR_TO_MAP_VALUE_OR_NULL, /* pointer to stack used as map value or NULL */
17a52670
AS
244
245 /* the following constraints used to prototype bpf_memcmp() and other
246 * functions that access data on eBPF program stack
247 */
39f19ebb 248 ARG_PTR_TO_MEM, /* pointer to valid memory (stack, packet, map value) */
db1ac496 249 ARG_PTR_TO_MEM_OR_NULL, /* pointer to valid memory or NULL */
39f19ebb
AS
250 ARG_PTR_TO_UNINIT_MEM, /* pointer to memory does not need to be initialized,
251 * helper function must fill all bytes or clear
252 * them in error case.
435faee1
DB
253 */
254
39f19ebb
AS
255 ARG_CONST_SIZE, /* number of bytes accessed from memory */
256 ARG_CONST_SIZE_OR_ZERO, /* number of bytes accessed from memory or 0 */
80f1d68c 257
608cd71a 258 ARG_PTR_TO_CTX, /* pointer to context */
f318903c 259 ARG_PTR_TO_CTX_OR_NULL, /* pointer to context or NULL */
80f1d68c 260 ARG_ANYTHING, /* any (initialized) argument is ok */
d83525ca 261 ARG_PTR_TO_SPIN_LOCK, /* pointer to bpf_spin_lock */
46f8bc92 262 ARG_PTR_TO_SOCK_COMMON, /* pointer to sock_common */
57c3bb72
AI
263 ARG_PTR_TO_INT, /* pointer to int */
264 ARG_PTR_TO_LONG, /* pointer to long */
6ac99e8f 265 ARG_PTR_TO_SOCKET, /* pointer to bpf_sock (fullsock) */
e9ddbb77 266 ARG_PTR_TO_SOCKET_OR_NULL, /* pointer to bpf_sock (fullsock) or NULL */
a7658e1a 267 ARG_PTR_TO_BTF_ID, /* pointer to in-kernel struct */
457f4436
AN
268 ARG_PTR_TO_ALLOC_MEM, /* pointer to dynamically allocated memory */
269 ARG_PTR_TO_ALLOC_MEM_OR_NULL, /* pointer to dynamically allocated memory or NULL */
270 ARG_CONST_ALLOC_SIZE_OR_ZERO, /* number of allocated bytes requested */
17a52670
AS
271};
272
273/* type of values returned from helper functions */
274enum bpf_return_type {
275 RET_INTEGER, /* function returns integer */
276 RET_VOID, /* function doesn't return anything */
3e6a4b3e 277 RET_PTR_TO_MAP_VALUE, /* returns a pointer to map elem value */
17a52670 278 RET_PTR_TO_MAP_VALUE_OR_NULL, /* returns a pointer to map elem value or NULL */
c64b7983 279 RET_PTR_TO_SOCKET_OR_NULL, /* returns a pointer to a socket or NULL */
655a51e5 280 RET_PTR_TO_TCP_SOCK_OR_NULL, /* returns a pointer to a tcp_sock or NULL */
85a51f8c 281 RET_PTR_TO_SOCK_COMMON_OR_NULL, /* returns a pointer to a sock_common or NULL */
457f4436 282 RET_PTR_TO_ALLOC_MEM_OR_NULL, /* returns a pointer to dynamically allocated memory or NULL */
af7ec138 283 RET_PTR_TO_BTF_ID_OR_NULL, /* returns a pointer to a btf_id or NULL */
17a52670
AS
284};
285
09756af4
AS
286/* eBPF function prototype used by verifier to allow BPF_CALLs from eBPF programs
287 * to in-kernel helper functions and for adjusting imm32 field in BPF_CALL
288 * instructions after verifying
289 */
290struct bpf_func_proto {
291 u64 (*func)(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5);
292 bool gpl_only;
36bbef52 293 bool pkt_access;
17a52670 294 enum bpf_return_type ret_type;
a7658e1a
AS
295 union {
296 struct {
297 enum bpf_arg_type arg1_type;
298 enum bpf_arg_type arg2_type;
299 enum bpf_arg_type arg3_type;
300 enum bpf_arg_type arg4_type;
301 enum bpf_arg_type arg5_type;
302 };
303 enum bpf_arg_type arg_type[5];
304 };
9cc31b3a 305 int *btf_id; /* BTF ids of arguments */
af7ec138
YS
306 bool (*check_btf_id)(u32 btf_id, u32 arg); /* if the argument btf_id is
307 * valid. Often used if more
308 * than one btf id is permitted
309 * for this argument.
310 */
311 int *ret_btf_id; /* return value btf_id */
17a52670
AS
312};
313
314/* bpf_context is intentionally undefined structure. Pointer to bpf_context is
315 * the first argument to eBPF programs.
316 * For socket filters: 'struct bpf_context *' == 'struct sk_buff *'
317 */
318struct bpf_context;
319
320enum bpf_access_type {
321 BPF_READ = 1,
322 BPF_WRITE = 2
09756af4
AS
323};
324
19de99f7 325/* types of values stored in eBPF registers */
f1174f77
EC
326/* Pointer types represent:
327 * pointer
328 * pointer + imm
329 * pointer + (u16) var
330 * pointer + (u16) var + imm
331 * if (range > 0) then [ptr, ptr + range - off) is safe to access
332 * if (id > 0) means that some 'var' was added
333 * if (off > 0) means that 'imm' was added
334 */
19de99f7
AS
335enum bpf_reg_type {
336 NOT_INIT = 0, /* nothing was written into register */
f1174f77 337 SCALAR_VALUE, /* reg doesn't contain a valid pointer */
19de99f7
AS
338 PTR_TO_CTX, /* reg points to bpf_context */
339 CONST_PTR_TO_MAP, /* reg points to struct bpf_map */
340 PTR_TO_MAP_VALUE, /* reg points to map element value */
341 PTR_TO_MAP_VALUE_OR_NULL,/* points to map elem value or NULL */
f1174f77 342 PTR_TO_STACK, /* reg == frame_pointer + offset */
de8f3a83 343 PTR_TO_PACKET_META, /* skb->data - meta_len */
f1174f77 344 PTR_TO_PACKET, /* reg points to skb->data */
19de99f7 345 PTR_TO_PACKET_END, /* skb->data + headlen */
d58e468b 346 PTR_TO_FLOW_KEYS, /* reg points to bpf_flow_keys */
c64b7983
JS
347 PTR_TO_SOCKET, /* reg points to struct bpf_sock */
348 PTR_TO_SOCKET_OR_NULL, /* reg points to struct bpf_sock or NULL */
46f8bc92
MKL
349 PTR_TO_SOCK_COMMON, /* reg points to sock_common */
350 PTR_TO_SOCK_COMMON_OR_NULL, /* reg points to sock_common or NULL */
655a51e5
MKL
351 PTR_TO_TCP_SOCK, /* reg points to struct tcp_sock */
352 PTR_TO_TCP_SOCK_OR_NULL, /* reg points to struct tcp_sock or NULL */
9df1c28b 353 PTR_TO_TP_BUFFER, /* reg points to a writable raw tp's buffer */
fada7fdc 354 PTR_TO_XDP_SOCK, /* reg points to struct xdp_sock */
9e15db66 355 PTR_TO_BTF_ID, /* reg points to kernel struct */
b121b341 356 PTR_TO_BTF_ID_OR_NULL, /* reg points to kernel struct or NULL */
457f4436
AN
357 PTR_TO_MEM, /* reg points to valid memory region */
358 PTR_TO_MEM_OR_NULL, /* reg points to valid memory region or NULL */
afbf21dc
YS
359 PTR_TO_RDONLY_BUF, /* reg points to a readonly buffer */
360 PTR_TO_RDONLY_BUF_OR_NULL, /* reg points to a readonly buffer or NULL */
361 PTR_TO_RDWR_BUF, /* reg points to a read/write buffer */
362 PTR_TO_RDWR_BUF_OR_NULL, /* reg points to a read/write buffer or NULL */
19de99f7
AS
363};
364
23994631
YS
365/* The information passed from prog-specific *_is_valid_access
366 * back to the verifier.
367 */
368struct bpf_insn_access_aux {
369 enum bpf_reg_type reg_type;
9e15db66
AS
370 union {
371 int ctx_field_size;
372 u32 btf_id;
373 };
374 struct bpf_verifier_log *log; /* for verbose logs */
23994631
YS
375};
376
f96da094
DB
377static inline void
378bpf_ctx_record_field_size(struct bpf_insn_access_aux *aux, u32 size)
379{
380 aux->ctx_field_size = size;
381}
382
7de16e3a
JK
383struct bpf_prog_ops {
384 int (*test_run)(struct bpf_prog *prog, const union bpf_attr *kattr,
385 union bpf_attr __user *uattr);
386};
387
09756af4
AS
388struct bpf_verifier_ops {
389 /* return eBPF function prototype for verification */
5e43f899
AI
390 const struct bpf_func_proto *
391 (*get_func_proto)(enum bpf_func_id func_id,
392 const struct bpf_prog *prog);
17a52670
AS
393
394 /* return true if 'size' wide access at offset 'off' within bpf_context
395 * with 'type' (read or write) is allowed
396 */
19de99f7 397 bool (*is_valid_access)(int off, int size, enum bpf_access_type type,
5e43f899 398 const struct bpf_prog *prog,
23994631 399 struct bpf_insn_access_aux *info);
36bbef52
DB
400 int (*gen_prologue)(struct bpf_insn *insn, bool direct_write,
401 const struct bpf_prog *prog);
e0cea7ce
DB
402 int (*gen_ld_abs)(const struct bpf_insn *orig,
403 struct bpf_insn *insn_buf);
6b8cc1d1
DB
404 u32 (*convert_ctx_access)(enum bpf_access_type type,
405 const struct bpf_insn *src,
406 struct bpf_insn *dst,
f96da094 407 struct bpf_prog *prog, u32 *target_size);
27ae7997
MKL
408 int (*btf_struct_access)(struct bpf_verifier_log *log,
409 const struct btf_type *t, int off, int size,
410 enum bpf_access_type atype,
411 u32 *next_btf_id);
09756af4
AS
412};
413
cae1927c 414struct bpf_prog_offload_ops {
08ca90af 415 /* verifier basic callbacks */
cae1927c
JK
416 int (*insn_hook)(struct bpf_verifier_env *env,
417 int insn_idx, int prev_insn_idx);
c941ce9c 418 int (*finalize)(struct bpf_verifier_env *env);
08ca90af
JK
419 /* verifier optimization callbacks (called after .finalize) */
420 int (*replace_insn)(struct bpf_verifier_env *env, u32 off,
421 struct bpf_insn *insn);
422 int (*remove_insns)(struct bpf_verifier_env *env, u32 off, u32 cnt);
423 /* program management callbacks */
16a8cb5c
QM
424 int (*prepare)(struct bpf_prog *prog);
425 int (*translate)(struct bpf_prog *prog);
eb911947 426 void (*destroy)(struct bpf_prog *prog);
cae1927c
JK
427};
428
0a9c1991 429struct bpf_prog_offload {
ab3f0063
JK
430 struct bpf_prog *prog;
431 struct net_device *netdev;
341b3e7b 432 struct bpf_offload_dev *offdev;
ab3f0063
JK
433 void *dev_priv;
434 struct list_head offloads;
435 bool dev_state;
08ca90af 436 bool opt_failed;
fcfb126d
JW
437 void *jited_image;
438 u32 jited_len;
ab3f0063
JK
439};
440
8bad74f9
RG
441enum bpf_cgroup_storage_type {
442 BPF_CGROUP_STORAGE_SHARED,
b741f163 443 BPF_CGROUP_STORAGE_PERCPU,
8bad74f9
RG
444 __BPF_CGROUP_STORAGE_MAX
445};
446
447#define MAX_BPF_CGROUP_STORAGE_TYPE __BPF_CGROUP_STORAGE_MAX
448
f1b9509c
AS
449/* The longest tracepoint has 12 args.
450 * See include/trace/bpf_probe.h
451 */
452#define MAX_BPF_FUNC_ARGS 12
453
492ecee8
AS
454struct bpf_prog_stats {
455 u64 cnt;
456 u64 nsecs;
457 struct u64_stats_sync syncp;
84a081f6 458} __aligned(2 * sizeof(u64));
492ecee8 459
fec56f58
AS
460struct btf_func_model {
461 u8 ret_size;
462 u8 nr_args;
463 u8 arg_size[MAX_BPF_FUNC_ARGS];
464};
465
466/* Restore arguments before returning from trampoline to let original function
467 * continue executing. This flag is used for fentry progs when there are no
468 * fexit progs.
469 */
470#define BPF_TRAMP_F_RESTORE_REGS BIT(0)
471/* Call original function after fentry progs, but before fexit progs.
472 * Makes sense for fentry/fexit, normal calls and indirect calls.
473 */
474#define BPF_TRAMP_F_CALL_ORIG BIT(1)
475/* Skip current frame and return to parent. Makes sense for fentry/fexit
476 * programs only. Should not be used with normal calls and indirect calls.
477 */
478#define BPF_TRAMP_F_SKIP_FRAME BIT(2)
479
88fd9e53
KS
480/* Each call __bpf_prog_enter + call bpf_func + call __bpf_prog_exit is ~50
481 * bytes on x86. Pick a number to fit into BPF_IMAGE_SIZE / 2
482 */
483#define BPF_MAX_TRAMP_PROGS 40
484
485struct bpf_tramp_progs {
486 struct bpf_prog *progs[BPF_MAX_TRAMP_PROGS];
487 int nr_progs;
488};
489
fec56f58
AS
490/* Different use cases for BPF trampoline:
491 * 1. replace nop at the function entry (kprobe equivalent)
492 * flags = BPF_TRAMP_F_RESTORE_REGS
493 * fentry = a set of programs to run before returning from trampoline
494 *
495 * 2. replace nop at the function entry (kprobe + kretprobe equivalent)
496 * flags = BPF_TRAMP_F_CALL_ORIG | BPF_TRAMP_F_SKIP_FRAME
497 * orig_call = fentry_ip + MCOUNT_INSN_SIZE
498 * fentry = a set of program to run before calling original function
499 * fexit = a set of program to run after original function
500 *
501 * 3. replace direct call instruction anywhere in the function body
502 * or assign a function pointer for indirect call (like tcp_congestion_ops->cong_avoid)
503 * With flags = 0
504 * fentry = a set of programs to run before returning from trampoline
505 * With flags = BPF_TRAMP_F_CALL_ORIG
506 * orig_call = original callback addr or direct function addr
507 * fentry = a set of program to run before calling original function
508 * fexit = a set of program to run after original function
509 */
85d33df3
MKL
510int arch_prepare_bpf_trampoline(void *image, void *image_end,
511 const struct btf_func_model *m, u32 flags,
88fd9e53 512 struct bpf_tramp_progs *tprogs,
fec56f58
AS
513 void *orig_call);
514/* these two functions are called from generated trampoline */
515u64 notrace __bpf_prog_enter(void);
516void notrace __bpf_prog_exit(struct bpf_prog *prog, u64 start);
517
535911c8
JO
518struct bpf_ksym {
519 unsigned long start;
520 unsigned long end;
bfea9a85 521 char name[KSYM_NAME_LEN];
ecb60d1c 522 struct list_head lnode;
ca4424c9 523 struct latch_tree_node tnode;
cbd76f8d 524 bool prog;
535911c8
JO
525};
526
fec56f58
AS
527enum bpf_tramp_prog_type {
528 BPF_TRAMP_FENTRY,
529 BPF_TRAMP_FEXIT,
ae240823 530 BPF_TRAMP_MODIFY_RETURN,
be8704ff
AS
531 BPF_TRAMP_MAX,
532 BPF_TRAMP_REPLACE, /* more than MAX */
fec56f58
AS
533};
534
535struct bpf_trampoline {
536 /* hlist for trampoline_table */
537 struct hlist_node hlist;
538 /* serializes access to fields of this trampoline */
539 struct mutex mutex;
540 refcount_t refcnt;
541 u64 key;
542 struct {
543 struct btf_func_model model;
544 void *addr;
b91e014f 545 bool ftrace_managed;
fec56f58 546 } func;
be8704ff
AS
547 /* if !NULL this is BPF_PROG_TYPE_EXT program that extends another BPF
548 * program by replacing one of its functions. func.addr is the address
549 * of the function it replaced.
550 */
551 struct bpf_prog *extension_prog;
fec56f58
AS
552 /* list of BPF programs using this trampoline */
553 struct hlist_head progs_hlist[BPF_TRAMP_MAX];
554 /* Number of attached programs. A counter per kind. */
555 int progs_cnt[BPF_TRAMP_MAX];
556 /* Executable image of trampoline */
557 void *image;
558 u64 selector;
a108f7dc 559 struct bpf_ksym ksym;
fec56f58 560};
75ccbef6 561
116eb788 562#define BPF_DISPATCHER_MAX 48 /* Fits in 2048B */
75ccbef6
BT
563
564struct bpf_dispatcher_prog {
565 struct bpf_prog *prog;
566 refcount_t users;
567};
568
569struct bpf_dispatcher {
570 /* dispatcher mutex */
571 struct mutex mutex;
572 void *func;
573 struct bpf_dispatcher_prog progs[BPF_DISPATCHER_MAX];
574 int num_progs;
575 void *image;
576 u32 image_off;
517b75e4 577 struct bpf_ksym ksym;
75ccbef6
BT
578};
579
6a64037d 580static __always_inline unsigned int bpf_dispatcher_nop_func(
7e6897f9
BT
581 const void *ctx,
582 const struct bpf_insn *insnsi,
583 unsigned int (*bpf_func)(const void *,
584 const struct bpf_insn *))
585{
586 return bpf_func(ctx, insnsi);
587}
fec56f58
AS
588#ifdef CONFIG_BPF_JIT
589struct bpf_trampoline *bpf_trampoline_lookup(u64 key);
590int bpf_trampoline_link_prog(struct bpf_prog *prog);
591int bpf_trampoline_unlink_prog(struct bpf_prog *prog);
592void bpf_trampoline_put(struct bpf_trampoline *tr);
517b75e4
JO
593#define BPF_DISPATCHER_INIT(_name) { \
594 .mutex = __MUTEX_INITIALIZER(_name.mutex), \
595 .func = &_name##_func, \
596 .progs = {}, \
597 .num_progs = 0, \
598 .image = NULL, \
599 .image_off = 0, \
600 .ksym = { \
601 .name = #_name, \
602 .lnode = LIST_HEAD_INIT(_name.ksym.lnode), \
603 }, \
75ccbef6
BT
604}
605
606#define DEFINE_BPF_DISPATCHER(name) \
6a64037d 607 noinline unsigned int bpf_dispatcher_##name##_func( \
75ccbef6
BT
608 const void *ctx, \
609 const struct bpf_insn *insnsi, \
610 unsigned int (*bpf_func)(const void *, \
611 const struct bpf_insn *)) \
612 { \
613 return bpf_func(ctx, insnsi); \
614 } \
6a64037d
BT
615 EXPORT_SYMBOL(bpf_dispatcher_##name##_func); \
616 struct bpf_dispatcher bpf_dispatcher_##name = \
617 BPF_DISPATCHER_INIT(bpf_dispatcher_##name);
75ccbef6 618#define DECLARE_BPF_DISPATCHER(name) \
6a64037d 619 unsigned int bpf_dispatcher_##name##_func( \
75ccbef6
BT
620 const void *ctx, \
621 const struct bpf_insn *insnsi, \
622 unsigned int (*bpf_func)(const void *, \
623 const struct bpf_insn *)); \
6a64037d
BT
624 extern struct bpf_dispatcher bpf_dispatcher_##name;
625#define BPF_DISPATCHER_FUNC(name) bpf_dispatcher_##name##_func
626#define BPF_DISPATCHER_PTR(name) (&bpf_dispatcher_##name)
75ccbef6
BT
627void bpf_dispatcher_change_prog(struct bpf_dispatcher *d, struct bpf_prog *from,
628 struct bpf_prog *to);
dba122fb 629/* Called only from JIT-enabled code, so there's no need for stubs. */
7ac88eba 630void *bpf_jit_alloc_exec_page(void);
a108f7dc
JO
631void bpf_image_ksym_add(void *data, struct bpf_ksym *ksym);
632void bpf_image_ksym_del(struct bpf_ksym *ksym);
dba122fb
JO
633void bpf_ksym_add(struct bpf_ksym *ksym);
634void bpf_ksym_del(struct bpf_ksym *ksym);
fec56f58
AS
635#else
636static inline struct bpf_trampoline *bpf_trampoline_lookup(u64 key)
637{
638 return NULL;
639}
640static inline int bpf_trampoline_link_prog(struct bpf_prog *prog)
641{
642 return -ENOTSUPP;
643}
644static inline int bpf_trampoline_unlink_prog(struct bpf_prog *prog)
645{
646 return -ENOTSUPP;
647}
648static inline void bpf_trampoline_put(struct bpf_trampoline *tr) {}
75ccbef6
BT
649#define DEFINE_BPF_DISPATCHER(name)
650#define DECLARE_BPF_DISPATCHER(name)
6a64037d 651#define BPF_DISPATCHER_FUNC(name) bpf_dispatcher_nop_func
75ccbef6
BT
652#define BPF_DISPATCHER_PTR(name) NULL
653static inline void bpf_dispatcher_change_prog(struct bpf_dispatcher *d,
654 struct bpf_prog *from,
655 struct bpf_prog *to) {}
e9b4e606
JO
656static inline bool is_bpf_image_address(unsigned long address)
657{
658 return false;
659}
fec56f58
AS
660#endif
661
8c1b6e69 662struct bpf_func_info_aux {
51c39bb1 663 u16 linkage;
8c1b6e69
AS
664 bool unreliable;
665};
666
a66886fe
DB
667enum bpf_jit_poke_reason {
668 BPF_POKE_REASON_TAIL_CALL,
669};
670
671/* Descriptor of pokes pointing /into/ the JITed image. */
672struct bpf_jit_poke_descriptor {
673 void *ip;
674 union {
675 struct {
676 struct bpf_map *map;
677 u32 key;
678 } tail_call;
679 };
680 bool ip_stable;
681 u8 adj_off;
682 u16 reason;
683};
684
3c32cc1b
YS
685/* reg_type info for ctx arguments */
686struct bpf_ctx_arg_aux {
687 u32 offset;
688 enum bpf_reg_type reg_type;
951cf368 689 u32 btf_id;
3c32cc1b
YS
690};
691
09756af4 692struct bpf_prog_aux {
85192dbf 693 atomic64_t refcnt;
24701ece 694 u32 used_map_cnt;
32bbe007 695 u32 max_ctx_offset;
e647815a 696 u32 max_pkt_offset;
9df1c28b 697 u32 max_tp_access;
8726679a 698 u32 stack_depth;
dc4bb0e2 699 u32 id;
ba64e7d8
YS
700 u32 func_cnt; /* used by non-func prog as the number of func progs */
701 u32 func_idx; /* 0 for non-func prog, the index in func array for func prog */
ccfe29eb 702 u32 attach_btf_id; /* in-kernel BTF type id to attach to */
3c32cc1b 703 u32 ctx_arg_info_size;
afbf21dc
YS
704 u32 max_rdonly_access;
705 u32 max_rdwr_access;
3c32cc1b 706 const struct bpf_ctx_arg_aux *ctx_arg_info;
5b92a28a 707 struct bpf_prog *linked_prog;
a4b1d3c1 708 bool verifier_zext; /* Zero extensions has been inserted by verifier. */
9a18eedb 709 bool offload_requested;
38207291 710 bool attach_btf_trace; /* true if attaching to BTF-enabled raw tp */
8c1b6e69 711 bool func_proto_unreliable;
fec56f58
AS
712 enum bpf_tramp_prog_type trampoline_prog_type;
713 struct bpf_trampoline *trampoline;
714 struct hlist_node tramp_hlist;
38207291
MKL
715 /* BTF_KIND_FUNC_PROTO for valid attach_btf_id */
716 const struct btf_type *attach_func_proto;
717 /* function name for valid attach_btf_id */
718 const char *attach_func_name;
1c2a088a
AS
719 struct bpf_prog **func;
720 void *jit_data; /* JIT specific data. arch dependent */
a66886fe
DB
721 struct bpf_jit_poke_descriptor *poke_tab;
722 u32 size_poke_tab;
535911c8 723 struct bpf_ksym ksym;
7de16e3a 724 const struct bpf_prog_ops *ops;
09756af4 725 struct bpf_map **used_maps;
09756af4 726 struct bpf_prog *prog;
aaac3ba9 727 struct user_struct *user;
cb4d2b3f 728 u64 load_time; /* ns since boottime */
8bad74f9 729 struct bpf_map *cgroup_storage[MAX_BPF_CGROUP_STORAGE_TYPE];
067cae47 730 char name[BPF_OBJ_NAME_LEN];
afdb09c7
CF
731#ifdef CONFIG_SECURITY
732 void *security;
733#endif
0a9c1991 734 struct bpf_prog_offload *offload;
838e9690 735 struct btf *btf;
ba64e7d8 736 struct bpf_func_info *func_info;
8c1b6e69 737 struct bpf_func_info_aux *func_info_aux;
c454a46b
MKL
738 /* bpf_line_info loaded from userspace. linfo->insn_off
739 * has the xlated insn offset.
740 * Both the main and sub prog share the same linfo.
741 * The subprog can access its first linfo by
742 * using the linfo_idx.
743 */
744 struct bpf_line_info *linfo;
745 /* jited_linfo is the jited addr of the linfo. It has a
746 * one to one mapping to linfo:
747 * jited_linfo[i] is the jited addr for the linfo[i]->insn_off.
748 * Both the main and sub prog share the same jited_linfo.
749 * The subprog can access its first jited_linfo by
750 * using the linfo_idx.
751 */
752 void **jited_linfo;
ba64e7d8 753 u32 func_info_cnt;
c454a46b
MKL
754 u32 nr_linfo;
755 /* subprog can use linfo_idx to access its first linfo and
756 * jited_linfo.
757 * main prog always has linfo_idx == 0
758 */
759 u32 linfo_idx;
3dec541b
AS
760 u32 num_exentries;
761 struct exception_table_entry *extable;
492ecee8 762 struct bpf_prog_stats __percpu *stats;
abf2e7d6
AS
763 union {
764 struct work_struct work;
765 struct rcu_head rcu;
766 };
09756af4
AS
767};
768
2beee5f5
DB
769struct bpf_array_aux {
770 /* 'Ownership' of prog array is claimed by the first program that
771 * is going to use this map or by the first program which FD is
772 * stored in the map to make sure that all callers and callees have
773 * the same prog type and JITed flag.
774 */
775 enum bpf_prog_type type;
776 bool jited;
da765a2f
DB
777 /* Programs with direct jumps into programs part of this array. */
778 struct list_head poke_progs;
779 struct bpf_map *map;
780 struct mutex poke_mutex;
781 struct work_struct work;
2beee5f5
DB
782};
783
6cc7d1e8
AN
784struct bpf_link {
785 atomic64_t refcnt;
786 u32 id;
787 enum bpf_link_type type;
788 const struct bpf_link_ops *ops;
789 struct bpf_prog *prog;
790 struct work_struct work;
791};
792
793struct bpf_link_ops {
794 void (*release)(struct bpf_link *link);
795 void (*dealloc)(struct bpf_link *link);
73b11c2a 796 int (*detach)(struct bpf_link *link);
6cc7d1e8
AN
797 int (*update_prog)(struct bpf_link *link, struct bpf_prog *new_prog,
798 struct bpf_prog *old_prog);
799 void (*show_fdinfo)(const struct bpf_link *link, struct seq_file *seq);
800 int (*fill_link_info)(const struct bpf_link *link,
801 struct bpf_link_info *info);
802};
803
804struct bpf_link_primer {
805 struct bpf_link *link;
806 struct file *file;
807 int fd;
808 u32 id;
809};
810
85d33df3 811struct bpf_struct_ops_value;
27ae7997
MKL
812struct btf_type;
813struct btf_member;
814
815#define BPF_STRUCT_OPS_MAX_NR_MEMBERS 64
816struct bpf_struct_ops {
817 const struct bpf_verifier_ops *verifier_ops;
818 int (*init)(struct btf *btf);
819 int (*check_member)(const struct btf_type *t,
820 const struct btf_member *member);
85d33df3
MKL
821 int (*init_member)(const struct btf_type *t,
822 const struct btf_member *member,
823 void *kdata, const void *udata);
824 int (*reg)(void *kdata);
825 void (*unreg)(void *kdata);
27ae7997 826 const struct btf_type *type;
85d33df3 827 const struct btf_type *value_type;
27ae7997
MKL
828 const char *name;
829 struct btf_func_model func_models[BPF_STRUCT_OPS_MAX_NR_MEMBERS];
830 u32 type_id;
85d33df3 831 u32 value_id;
27ae7997
MKL
832};
833
834#if defined(CONFIG_BPF_JIT) && defined(CONFIG_BPF_SYSCALL)
85d33df3 835#define BPF_MODULE_OWNER ((void *)((0xeB9FUL << 2) + POISON_POINTER_DELTA))
27ae7997 836const struct bpf_struct_ops *bpf_struct_ops_find(u32 type_id);
d3e42bb0 837void bpf_struct_ops_init(struct btf *btf, struct bpf_verifier_log *log);
85d33df3
MKL
838bool bpf_struct_ops_get(const void *kdata);
839void bpf_struct_ops_put(const void *kdata);
840int bpf_struct_ops_map_sys_lookup_elem(struct bpf_map *map, void *key,
841 void *value);
842static inline bool bpf_try_module_get(const void *data, struct module *owner)
843{
844 if (owner == BPF_MODULE_OWNER)
845 return bpf_struct_ops_get(data);
846 else
847 return try_module_get(owner);
848}
849static inline void bpf_module_put(const void *data, struct module *owner)
850{
851 if (owner == BPF_MODULE_OWNER)
852 bpf_struct_ops_put(data);
853 else
854 module_put(owner);
855}
27ae7997
MKL
856#else
857static inline const struct bpf_struct_ops *bpf_struct_ops_find(u32 type_id)
858{
859 return NULL;
860}
d3e42bb0
MKL
861static inline void bpf_struct_ops_init(struct btf *btf,
862 struct bpf_verifier_log *log)
863{
864}
85d33df3
MKL
865static inline bool bpf_try_module_get(const void *data, struct module *owner)
866{
867 return try_module_get(owner);
868}
869static inline void bpf_module_put(const void *data, struct module *owner)
870{
871 module_put(owner);
872}
873static inline int bpf_struct_ops_map_sys_lookup_elem(struct bpf_map *map,
874 void *key,
875 void *value)
876{
877 return -EINVAL;
878}
27ae7997
MKL
879#endif
880
04fd61ab
AS
881struct bpf_array {
882 struct bpf_map map;
883 u32 elem_size;
b2157399 884 u32 index_mask;
2beee5f5 885 struct bpf_array_aux *aux;
04fd61ab
AS
886 union {
887 char value[0] __aligned(8);
2a36f0b9 888 void *ptrs[0] __aligned(8);
a10423b8 889 void __percpu *pptrs[0] __aligned(8);
04fd61ab
AS
890 };
891};
3b1efb19 892
c04c0d2b 893#define BPF_COMPLEXITY_LIMIT_INSNS 1000000 /* yes. 1M insns */
04fd61ab
AS
894#define MAX_TAIL_CALL_CNT 32
895
591fe988
DB
896#define BPF_F_ACCESS_MASK (BPF_F_RDONLY | \
897 BPF_F_RDONLY_PROG | \
898 BPF_F_WRONLY | \
899 BPF_F_WRONLY_PROG)
900
901#define BPF_MAP_CAN_READ BIT(0)
902#define BPF_MAP_CAN_WRITE BIT(1)
903
904static inline u32 bpf_map_flags_to_cap(struct bpf_map *map)
905{
906 u32 access_flags = map->map_flags & (BPF_F_RDONLY_PROG | BPF_F_WRONLY_PROG);
907
908 /* Combination of BPF_F_RDONLY_PROG | BPF_F_WRONLY_PROG is
909 * not possible.
910 */
911 if (access_flags & BPF_F_RDONLY_PROG)
912 return BPF_MAP_CAN_READ;
913 else if (access_flags & BPF_F_WRONLY_PROG)
914 return BPF_MAP_CAN_WRITE;
915 else
916 return BPF_MAP_CAN_READ | BPF_MAP_CAN_WRITE;
917}
918
919static inline bool bpf_map_flags_access_ok(u32 access_flags)
920{
921 return (access_flags & (BPF_F_RDONLY_PROG | BPF_F_WRONLY_PROG)) !=
922 (BPF_F_RDONLY_PROG | BPF_F_WRONLY_PROG);
923}
924
3b1efb19
DB
925struct bpf_event_entry {
926 struct perf_event *event;
927 struct file *perf_file;
928 struct file *map_file;
929 struct rcu_head rcu;
930};
931
04fd61ab 932bool bpf_prog_array_compatible(struct bpf_array *array, const struct bpf_prog *fp);
f1f7714e 933int bpf_prog_calc_tag(struct bpf_prog *fp);
9e15db66 934const char *kernel_type_name(u32 btf_type_id);
bd570ff9 935
0756ea3e 936const struct bpf_func_proto *bpf_get_trace_printk_proto(void);
555c8a86
DB
937
938typedef unsigned long (*bpf_ctx_copy_t)(void *dst, const void *src,
aa7145c1 939 unsigned long off, unsigned long len);
c64b7983
JS
940typedef u32 (*bpf_convert_ctx_access_t)(enum bpf_access_type type,
941 const struct bpf_insn *src,
942 struct bpf_insn *dst,
943 struct bpf_prog *prog,
944 u32 *target_size);
555c8a86
DB
945
946u64 bpf_event_output(struct bpf_map *map, u64 flags, void *meta, u64 meta_size,
947 void *ctx, u64 ctx_size, bpf_ctx_copy_t ctx_copy);
04fd61ab 948
324bda9e
AS
949/* an array of programs to be executed under rcu_lock.
950 *
951 * Typical usage:
952 * ret = BPF_PROG_RUN_ARRAY(&bpf_prog_array, ctx, BPF_PROG_RUN);
953 *
954 * the structure returned by bpf_prog_array_alloc() should be populated
955 * with program pointers and the last pointer must be NULL.
956 * The user has to keep refcnt on the program and make sure the program
957 * is removed from the array before bpf_prog_put().
958 * The 'struct bpf_prog_array *' should only be replaced with xchg()
959 * since other cpus are walking the array of pointers in parallel.
960 */
394e40a2
RG
961struct bpf_prog_array_item {
962 struct bpf_prog *prog;
8bad74f9 963 struct bpf_cgroup_storage *cgroup_storage[MAX_BPF_CGROUP_STORAGE_TYPE];
394e40a2
RG
964};
965
324bda9e
AS
966struct bpf_prog_array {
967 struct rcu_head rcu;
d7f10df8 968 struct bpf_prog_array_item items[];
324bda9e
AS
969};
970
d29ab6e1 971struct bpf_prog_array *bpf_prog_array_alloc(u32 prog_cnt, gfp_t flags);
54e9c9d4
SF
972void bpf_prog_array_free(struct bpf_prog_array *progs);
973int bpf_prog_array_length(struct bpf_prog_array *progs);
0d01da6a 974bool bpf_prog_array_is_empty(struct bpf_prog_array *array);
54e9c9d4 975int bpf_prog_array_copy_to_user(struct bpf_prog_array *progs,
468e2f64 976 __u32 __user *prog_ids, u32 cnt);
324bda9e 977
54e9c9d4 978void bpf_prog_array_delete_safe(struct bpf_prog_array *progs,
e87c6bc3 979 struct bpf_prog *old_prog);
ce3aa9cc
JS
980int bpf_prog_array_delete_safe_at(struct bpf_prog_array *array, int index);
981int bpf_prog_array_update_at(struct bpf_prog_array *array, int index,
982 struct bpf_prog *prog);
54e9c9d4 983int bpf_prog_array_copy_info(struct bpf_prog_array *array,
3a38bb98
YS
984 u32 *prog_ids, u32 request_cnt,
985 u32 *prog_cnt);
54e9c9d4 986int bpf_prog_array_copy(struct bpf_prog_array *old_array,
e87c6bc3
YS
987 struct bpf_prog *exclude_prog,
988 struct bpf_prog *include_prog,
989 struct bpf_prog_array **new_array);
990
991#define __BPF_PROG_RUN_ARRAY(array, ctx, func, check_non_null) \
324bda9e 992 ({ \
394e40a2
RG
993 struct bpf_prog_array_item *_item; \
994 struct bpf_prog *_prog; \
e87c6bc3 995 struct bpf_prog_array *_array; \
324bda9e 996 u32 _ret = 1; \
2a916f2f 997 migrate_disable(); \
324bda9e 998 rcu_read_lock(); \
e87c6bc3
YS
999 _array = rcu_dereference(array); \
1000 if (unlikely(check_non_null && !_array))\
1001 goto _out; \
394e40a2
RG
1002 _item = &_array->items[0]; \
1003 while ((_prog = READ_ONCE(_item->prog))) { \
1004 bpf_cgroup_storage_set(_item->cgroup_storage); \
1005 _ret &= func(_prog, ctx); \
1006 _item++; \
e87c6bc3
YS
1007 } \
1008_out: \
324bda9e 1009 rcu_read_unlock(); \
2a916f2f 1010 migrate_enable(); \
324bda9e
AS
1011 _ret; \
1012 })
1013
1f52f6c0 1014/* To be used by __cgroup_bpf_run_filter_skb for EGRESS BPF progs
1015 * so BPF programs can request cwr for TCP packets.
1016 *
1017 * Current cgroup skb programs can only return 0 or 1 (0 to drop the
1018 * packet. This macro changes the behavior so the low order bit
1019 * indicates whether the packet should be dropped (0) or not (1)
1020 * and the next bit is a congestion notification bit. This could be
1021 * used by TCP to call tcp_enter_cwr()
1022 *
1023 * Hence, new allowed return values of CGROUP EGRESS BPF programs are:
1024 * 0: drop packet
1025 * 1: keep packet
1026 * 2: drop packet and cn
1027 * 3: keep packet and cn
1028 *
1029 * This macro then converts it to one of the NET_XMIT or an error
1030 * code that is then interpreted as drop packet (and no cn):
1031 * 0: NET_XMIT_SUCCESS skb should be transmitted
1032 * 1: NET_XMIT_DROP skb should be dropped and cn
1033 * 2: NET_XMIT_CN skb should be transmitted and cn
1034 * 3: -EPERM skb should be dropped
1035 */
1036#define BPF_PROG_CGROUP_INET_EGRESS_RUN_ARRAY(array, ctx, func) \
1037 ({ \
1038 struct bpf_prog_array_item *_item; \
1039 struct bpf_prog *_prog; \
1040 struct bpf_prog_array *_array; \
1041 u32 ret; \
1042 u32 _ret = 1; \
1043 u32 _cn = 0; \
2a916f2f 1044 migrate_disable(); \
1f52f6c0 1045 rcu_read_lock(); \
1046 _array = rcu_dereference(array); \
1047 _item = &_array->items[0]; \
1048 while ((_prog = READ_ONCE(_item->prog))) { \
1049 bpf_cgroup_storage_set(_item->cgroup_storage); \
1050 ret = func(_prog, ctx); \
1051 _ret &= (ret & 1); \
1052 _cn |= (ret & 2); \
1053 _item++; \
1054 } \
1055 rcu_read_unlock(); \
2a916f2f 1056 migrate_enable(); \
1f52f6c0 1057 if (_ret) \
1058 _ret = (_cn ? NET_XMIT_CN : NET_XMIT_SUCCESS); \
1059 else \
1060 _ret = (_cn ? NET_XMIT_DROP : -EPERM); \
1061 _ret; \
1062 })
1063
e87c6bc3
YS
1064#define BPF_PROG_RUN_ARRAY(array, ctx, func) \
1065 __BPF_PROG_RUN_ARRAY(array, ctx, func, false)
1066
1067#define BPF_PROG_RUN_ARRAY_CHECK(array, ctx, func) \
1068 __BPF_PROG_RUN_ARRAY(array, ctx, func, true)
1069
89aa0758 1070#ifdef CONFIG_BPF_SYSCALL
b121d1e7 1071DECLARE_PER_CPU(int, bpf_prog_active);
d46edd67 1072extern struct mutex bpf_stats_enabled_mutex;
b121d1e7 1073
c518cfa0
TG
1074/*
1075 * Block execution of BPF programs attached to instrumentation (perf,
1076 * kprobes, tracepoints) to prevent deadlocks on map operations as any of
1077 * these events can happen inside a region which holds a map bucket lock
1078 * and can deadlock on it.
1079 *
1080 * Use the preemption safe inc/dec variants on RT because migrate disable
1081 * is preemptible on RT and preemption in the middle of the RMW operation
1082 * might lead to inconsistent state. Use the raw variants for non RT
1083 * kernels as migrate_disable() maps to preempt_disable() so the slightly
1084 * more expensive save operation can be avoided.
1085 */
1086static inline void bpf_disable_instrumentation(void)
1087{
1088 migrate_disable();
1089 if (IS_ENABLED(CONFIG_PREEMPT_RT))
1090 this_cpu_inc(bpf_prog_active);
1091 else
1092 __this_cpu_inc(bpf_prog_active);
1093}
1094
1095static inline void bpf_enable_instrumentation(void)
1096{
1097 if (IS_ENABLED(CONFIG_PREEMPT_RT))
1098 this_cpu_dec(bpf_prog_active);
1099 else
1100 __this_cpu_dec(bpf_prog_active);
1101 migrate_enable();
1102}
1103
f66e448c
CF
1104extern const struct file_operations bpf_map_fops;
1105extern const struct file_operations bpf_prog_fops;
367ec3e4 1106extern const struct file_operations bpf_iter_fops;
f66e448c 1107
91cc1a99 1108#define BPF_PROG_TYPE(_id, _name, prog_ctx_type, kern_ctx_type) \
7de16e3a
JK
1109 extern const struct bpf_prog_ops _name ## _prog_ops; \
1110 extern const struct bpf_verifier_ops _name ## _verifier_ops;
40077e0c
JB
1111#define BPF_MAP_TYPE(_id, _ops) \
1112 extern const struct bpf_map_ops _ops;
f2e10bff 1113#define BPF_LINK_TYPE(_id, _name)
be9370a7
JB
1114#include <linux/bpf_types.h>
1115#undef BPF_PROG_TYPE
40077e0c 1116#undef BPF_MAP_TYPE
f2e10bff 1117#undef BPF_LINK_TYPE
0fc174de 1118
ab3f0063 1119extern const struct bpf_prog_ops bpf_offload_prog_ops;
4f9218aa
JK
1120extern const struct bpf_verifier_ops tc_cls_act_analyzer_ops;
1121extern const struct bpf_verifier_ops xdp_analyzer_ops;
1122
0fc174de 1123struct bpf_prog *bpf_prog_get(u32 ufd);
248f346f 1124struct bpf_prog *bpf_prog_get_type_dev(u32 ufd, enum bpf_prog_type type,
288b3de5 1125 bool attach_drv);
85192dbf 1126void bpf_prog_add(struct bpf_prog *prog, int i);
c540594f 1127void bpf_prog_sub(struct bpf_prog *prog, int i);
85192dbf 1128void bpf_prog_inc(struct bpf_prog *prog);
a6f6df69 1129struct bpf_prog * __must_check bpf_prog_inc_not_zero(struct bpf_prog *prog);
61e021f3 1130void bpf_prog_put(struct bpf_prog *prog);
5ccb071e
DB
1131int __bpf_prog_charge(struct user_struct *user, u32 pages);
1132void __bpf_prog_uncharge(struct user_struct *user, u32 pages);
a2ea0746
DB
1133void __bpf_free_used_maps(struct bpf_prog_aux *aux,
1134 struct bpf_map **used_maps, u32 len);
61e021f3 1135
ad8ad79f 1136void bpf_prog_free_id(struct bpf_prog *prog, bool do_idr_lock);
a3884572 1137void bpf_map_free_id(struct bpf_map *map, bool do_idr_lock);
ad8ad79f 1138
1ed4d924 1139struct bpf_map *bpf_map_get(u32 ufd);
c9da161c 1140struct bpf_map *bpf_map_get_with_uref(u32 ufd);
c2101297 1141struct bpf_map *__bpf_map_get(struct fd f);
1e0bd5a0
AN
1142void bpf_map_inc(struct bpf_map *map);
1143void bpf_map_inc_with_uref(struct bpf_map *map);
1144struct bpf_map * __must_check bpf_map_inc_not_zero(struct bpf_map *map);
c9da161c 1145void bpf_map_put_with_uref(struct bpf_map *map);
61e021f3 1146void bpf_map_put(struct bpf_map *map);
0a4c58f5
RG
1147int bpf_map_charge_memlock(struct bpf_map *map, u32 pages);
1148void bpf_map_uncharge_memlock(struct bpf_map *map, u32 pages);
196e8ca7 1149int bpf_map_charge_init(struct bpf_map_memory *mem, u64 size);
b936ca64
RG
1150void bpf_map_charge_finish(struct bpf_map_memory *mem);
1151void bpf_map_charge_move(struct bpf_map_memory *dst,
1152 struct bpf_map_memory *src);
196e8ca7
DB
1153void *bpf_map_area_alloc(u64 size, int numa_node);
1154void *bpf_map_area_mmapable_alloc(u64 size, int numa_node);
d407bd25 1155void bpf_map_area_free(void *base);
bd475643 1156void bpf_map_init_from_attr(struct bpf_map *map, union bpf_attr *attr);
cb4d03ab
BV
1157int generic_map_lookup_batch(struct bpf_map *map,
1158 const union bpf_attr *attr,
aa2e93b8
BV
1159 union bpf_attr __user *uattr);
1160int generic_map_update_batch(struct bpf_map *map,
1161 const union bpf_attr *attr,
1162 union bpf_attr __user *uattr);
1163int generic_map_delete_batch(struct bpf_map *map,
1164 const union bpf_attr *attr,
cb4d03ab 1165 union bpf_attr __user *uattr);
6086d29d 1166struct bpf_map *bpf_map_get_curr_or_next(u32 *id);
a228a64f 1167struct bpf_prog *bpf_prog_get_curr_or_next(u32 *id);
61e021f3 1168
1be7f75d
AS
1169extern int sysctl_unprivileged_bpf_disabled;
1170
2c78ee89
AS
1171static inline bool bpf_allow_ptr_leaks(void)
1172{
1173 return perfmon_capable();
1174}
1175
41c48f3a
AI
1176static inline bool bpf_allow_ptr_to_map_access(void)
1177{
1178 return perfmon_capable();
1179}
1180
2c78ee89
AS
1181static inline bool bpf_bypass_spec_v1(void)
1182{
1183 return perfmon_capable();
1184}
1185
1186static inline bool bpf_bypass_spec_v4(void)
1187{
1188 return perfmon_capable();
1189}
1190
6e71b04a 1191int bpf_map_new_fd(struct bpf_map *map, int flags);
b2197755
DB
1192int bpf_prog_new_fd(struct bpf_prog *prog);
1193
f2e10bff 1194void bpf_link_init(struct bpf_link *link, enum bpf_link_type type,
a3b80e10
AN
1195 const struct bpf_link_ops *ops, struct bpf_prog *prog);
1196int bpf_link_prime(struct bpf_link *link, struct bpf_link_primer *primer);
1197int bpf_link_settle(struct bpf_link_primer *primer);
1198void bpf_link_cleanup(struct bpf_link_primer *primer);
70ed506c
AN
1199void bpf_link_inc(struct bpf_link *link);
1200void bpf_link_put(struct bpf_link *link);
1201int bpf_link_new_fd(struct bpf_link *link);
babf3164 1202struct file *bpf_link_new_file(struct bpf_link *link, int *reserved_fd);
70ed506c
AN
1203struct bpf_link *bpf_link_get_from_fd(u32 ufd);
1204
b2197755 1205int bpf_obj_pin_user(u32 ufd, const char __user *pathname);
6e71b04a 1206int bpf_obj_get_user(const char __user *pathname, int flags);
b2197755 1207
21aef70e 1208#define BPF_ITER_FUNC_PREFIX "bpf_iter_"
e5158d98 1209#define DEFINE_BPF_ITER_FUNC(target, args...) \
21aef70e
YS
1210 extern int bpf_iter_ ## target(args); \
1211 int __init bpf_iter_ ## target(args) { return 0; }
15d83c4d 1212
f9c79272 1213struct bpf_iter_aux_info {
a5cbe05a 1214 struct bpf_map *map;
f9c79272
YS
1215};
1216
5e7b3020
YS
1217typedef int (*bpf_iter_attach_target_t)(struct bpf_prog *prog,
1218 union bpf_iter_link_info *linfo,
1219 struct bpf_iter_aux_info *aux);
1220typedef void (*bpf_iter_detach_target_t)(struct bpf_iter_aux_info *aux);
a5cbe05a 1221
3c32cc1b 1222#define BPF_ITER_CTX_ARG_MAX 2
ae24345d
YS
1223struct bpf_iter_reg {
1224 const char *target;
5e7b3020
YS
1225 bpf_iter_attach_target_t attach_target;
1226 bpf_iter_detach_target_t detach_target;
3c32cc1b
YS
1227 u32 ctx_arg_info_size;
1228 struct bpf_ctx_arg_aux ctx_arg_info[BPF_ITER_CTX_ARG_MAX];
14fc6bd6 1229 const struct bpf_iter_seq_info *seq_info;
ae24345d
YS
1230};
1231
e5158d98
YS
1232struct bpf_iter_meta {
1233 __bpf_md_ptr(struct seq_file *, seq);
1234 u64 session_id;
1235 u64 seq_num;
1236};
1237
a5cbe05a
YS
1238struct bpf_iter__bpf_map_elem {
1239 __bpf_md_ptr(struct bpf_iter_meta *, meta);
1240 __bpf_md_ptr(struct bpf_map *, map);
1241 __bpf_md_ptr(void *, key);
1242 __bpf_md_ptr(void *, value);
1243};
1244
15172a46 1245int bpf_iter_reg_target(const struct bpf_iter_reg *reg_info);
ab2ee4fc 1246void bpf_iter_unreg_target(const struct bpf_iter_reg *reg_info);
15d83c4d 1247bool bpf_iter_prog_supported(struct bpf_prog *prog);
de4e05ca 1248int bpf_iter_link_attach(const union bpf_attr *attr, struct bpf_prog *prog);
ac51d99b 1249int bpf_iter_new_fd(struct bpf_link *link);
367ec3e4 1250bool bpf_link_is_iter(struct bpf_link *link);
e5158d98
YS
1251struct bpf_prog *bpf_iter_get_info(struct bpf_iter_meta *meta, bool in_stop);
1252int bpf_iter_run_prog(struct bpf_prog *prog, void *ctx);
ae24345d 1253
15a07b33
AS
1254int bpf_percpu_hash_copy(struct bpf_map *map, void *key, void *value);
1255int bpf_percpu_array_copy(struct bpf_map *map, void *key, void *value);
1256int bpf_percpu_hash_update(struct bpf_map *map, void *key, void *value,
1257 u64 flags);
1258int bpf_percpu_array_update(struct bpf_map *map, void *key, void *value,
1259 u64 flags);
d056a788 1260
557c0c6e 1261int bpf_stackmap_copy(struct bpf_map *map, void *key, void *value);
15a07b33 1262
d056a788
DB
1263int bpf_fd_array_map_update_elem(struct bpf_map *map, struct file *map_file,
1264 void *key, void *value, u64 map_flags);
14dc6f04 1265int bpf_fd_array_map_lookup_elem(struct bpf_map *map, void *key, u32 *value);
bcc6b1b7
MKL
1266int bpf_fd_htab_map_update_elem(struct bpf_map *map, struct file *map_file,
1267 void *key, void *value, u64 map_flags);
14dc6f04 1268int bpf_fd_htab_map_lookup_elem(struct bpf_map *map, void *key, u32 *value);
d056a788 1269
6e71b04a 1270int bpf_get_file_flag(int flags);
dcab51f1
MKL
1271int bpf_check_uarg_tail_zero(void __user *uaddr, size_t expected_size,
1272 size_t actual_size);
6e71b04a 1273
15a07b33
AS
1274/* memcpy that is used with 8-byte aligned pointers, power-of-8 size and
1275 * forced to use 'long' read/writes to try to atomically copy long counters.
1276 * Best-effort only. No barriers here, since it _will_ race with concurrent
1277 * updates from BPF programs. Called from bpf syscall and mostly used with
1278 * size 8 or 16 bytes, so ask compiler to inline it.
1279 */
1280static inline void bpf_long_memcpy(void *dst, const void *src, u32 size)
1281{
1282 const long *lsrc = src;
1283 long *ldst = dst;
1284
1285 size /= sizeof(long);
1286 while (size--)
1287 *ldst++ = *lsrc++;
1288}
1289
61e021f3 1290/* verify correctness of eBPF program */
838e9690
YS
1291int bpf_check(struct bpf_prog **fp, union bpf_attr *attr,
1292 union bpf_attr __user *uattr);
1ea47e01 1293void bpf_patch_call_args(struct bpf_insn *insn, u32 stack_depth);
46f55cff
JF
1294
1295/* Map specifics */
67f29e07 1296struct xdp_buff;
6d5fc195 1297struct sk_buff;
67f29e07
JDB
1298
1299struct bpf_dtab_netdev *__dev_map_lookup_elem(struct bpf_map *map, u32 key);
6f9d451a 1300struct bpf_dtab_netdev *__dev_map_hash_lookup_elem(struct bpf_map *map, u32 key);
1d233886
THJ
1301void __dev_flush(void);
1302int dev_xdp_enqueue(struct net_device *dev, struct xdp_buff *xdp,
1303 struct net_device *dev_rx);
38edddb8
JDB
1304int dev_map_enqueue(struct bpf_dtab_netdev *dst, struct xdp_buff *xdp,
1305 struct net_device *dev_rx);
6d5fc195
TM
1306int dev_map_generic_redirect(struct bpf_dtab_netdev *dst, struct sk_buff *skb,
1307 struct bpf_prog *xdp_prog);
fbee97fe 1308bool dev_map_can_have_prog(struct bpf_map *map);
46f55cff 1309
9c270af3 1310struct bpf_cpu_map_entry *__cpu_map_lookup_elem(struct bpf_map *map, u32 key);
cdfafe98 1311void __cpu_map_flush(void);
9c270af3
JDB
1312int cpu_map_enqueue(struct bpf_cpu_map_entry *rcpu, struct xdp_buff *xdp,
1313 struct net_device *dev_rx);
92164774 1314bool cpu_map_prog_allowed(struct bpf_map *map);
9c270af3 1315
96eabe7a
MKL
1316/* Return map's numa specified by userspace */
1317static inline int bpf_map_attr_numa_node(const union bpf_attr *attr)
1318{
1319 return (attr->map_flags & BPF_F_NUMA_NODE) ?
1320 attr->numa_node : NUMA_NO_NODE;
1321}
1322
040ee692 1323struct bpf_prog *bpf_prog_get_type_path(const char *name, enum bpf_prog_type type);
5dc4c4b7 1324int array_map_alloc_check(union bpf_attr *attr);
040ee692 1325
c695865c
SF
1326int bpf_prog_test_run_xdp(struct bpf_prog *prog, const union bpf_attr *kattr,
1327 union bpf_attr __user *uattr);
1328int bpf_prog_test_run_skb(struct bpf_prog *prog, const union bpf_attr *kattr,
1329 union bpf_attr __user *uattr);
da00d2f1
KS
1330int bpf_prog_test_run_tracing(struct bpf_prog *prog,
1331 const union bpf_attr *kattr,
1332 union bpf_attr __user *uattr);
c695865c
SF
1333int bpf_prog_test_run_flow_dissector(struct bpf_prog *prog,
1334 const union bpf_attr *kattr,
1335 union bpf_attr __user *uattr);
9e15db66
AS
1336bool btf_ctx_access(int off, int size, enum bpf_access_type type,
1337 const struct bpf_prog *prog,
1338 struct bpf_insn_access_aux *info);
1339int btf_struct_access(struct bpf_verifier_log *log,
1340 const struct btf_type *t, int off, int size,
1341 enum bpf_access_type atype,
1342 u32 *next_btf_id);
9cc31b3a
AS
1343int btf_resolve_helper_id(struct bpf_verifier_log *log,
1344 const struct bpf_func_proto *fn, int);
9e15db66 1345
fec56f58
AS
1346int btf_distill_func_proto(struct bpf_verifier_log *log,
1347 struct btf *btf,
1348 const struct btf_type *func_proto,
1349 const char *func_name,
1350 struct btf_func_model *m);
1351
51c39bb1
AS
1352struct bpf_reg_state;
1353int btf_check_func_arg_match(struct bpf_verifier_env *env, int subprog,
1354 struct bpf_reg_state *regs);
1355int btf_prepare_func_args(struct bpf_verifier_env *env, int subprog,
1356 struct bpf_reg_state *reg);
be8704ff
AS
1357int btf_check_type_match(struct bpf_verifier_env *env, struct bpf_prog *prog,
1358 struct btf *btf, const struct btf_type *t);
8c1b6e69 1359
7e6897f9
BT
1360struct bpf_prog *bpf_prog_by_id(u32 id);
1361
6890896b 1362const struct bpf_func_proto *bpf_base_func_proto(enum bpf_func_id func_id);
9c270af3 1363#else /* !CONFIG_BPF_SYSCALL */
0fc174de
DB
1364static inline struct bpf_prog *bpf_prog_get(u32 ufd)
1365{
1366 return ERR_PTR(-EOPNOTSUPP);
1367}
1368
248f346f
JK
1369static inline struct bpf_prog *bpf_prog_get_type_dev(u32 ufd,
1370 enum bpf_prog_type type,
288b3de5 1371 bool attach_drv)
248f346f
JK
1372{
1373 return ERR_PTR(-EOPNOTSUPP);
1374}
1375
85192dbf 1376static inline void bpf_prog_add(struct bpf_prog *prog, int i)
cc2e0b3f 1377{
cc2e0b3f 1378}
113214be 1379
c540594f
DB
1380static inline void bpf_prog_sub(struct bpf_prog *prog, int i)
1381{
1382}
1383
0fc174de
DB
1384static inline void bpf_prog_put(struct bpf_prog *prog)
1385{
1386}
6d67942d 1387
85192dbf 1388static inline void bpf_prog_inc(struct bpf_prog *prog)
aa6a5f3c 1389{
aa6a5f3c 1390}
5ccb071e 1391
a6f6df69
JF
1392static inline struct bpf_prog *__must_check
1393bpf_prog_inc_not_zero(struct bpf_prog *prog)
1394{
1395 return ERR_PTR(-EOPNOTSUPP);
1396}
1397
5ccb071e
DB
1398static inline int __bpf_prog_charge(struct user_struct *user, u32 pages)
1399{
1400 return 0;
1401}
1402
1403static inline void __bpf_prog_uncharge(struct user_struct *user, u32 pages)
1404{
1405}
46f55cff 1406
6cc7d1e8
AN
1407static inline void bpf_link_init(struct bpf_link *link, enum bpf_link_type type,
1408 const struct bpf_link_ops *ops,
1409 struct bpf_prog *prog)
1410{
1411}
1412
1413static inline int bpf_link_prime(struct bpf_link *link,
1414 struct bpf_link_primer *primer)
1415{
1416 return -EOPNOTSUPP;
1417}
1418
1419static inline int bpf_link_settle(struct bpf_link_primer *primer)
1420{
1421 return -EOPNOTSUPP;
1422}
1423
1424static inline void bpf_link_cleanup(struct bpf_link_primer *primer)
1425{
1426}
1427
1428static inline void bpf_link_inc(struct bpf_link *link)
1429{
1430}
1431
1432static inline void bpf_link_put(struct bpf_link *link)
1433{
1434}
1435
6e71b04a 1436static inline int bpf_obj_get_user(const char __user *pathname, int flags)
98589a09
SL
1437{
1438 return -EOPNOTSUPP;
1439}
1440
46f55cff
JF
1441static inline struct net_device *__dev_map_lookup_elem(struct bpf_map *map,
1442 u32 key)
1443{
1444 return NULL;
1445}
1446
6f9d451a
THJ
1447static inline struct net_device *__dev_map_hash_lookup_elem(struct bpf_map *map,
1448 u32 key)
1449{
1450 return NULL;
1451}
fbee97fe
DA
1452static inline bool dev_map_can_have_prog(struct bpf_map *map)
1453{
1454 return false;
1455}
6f9d451a 1456
1d233886 1457static inline void __dev_flush(void)
46f55cff
JF
1458{
1459}
9c270af3 1460
67f29e07
JDB
1461struct xdp_buff;
1462struct bpf_dtab_netdev;
1463
1d233886
THJ
1464static inline
1465int dev_xdp_enqueue(struct net_device *dev, struct xdp_buff *xdp,
1466 struct net_device *dev_rx)
1467{
1468 return 0;
1469}
1470
67f29e07 1471static inline
38edddb8
JDB
1472int dev_map_enqueue(struct bpf_dtab_netdev *dst, struct xdp_buff *xdp,
1473 struct net_device *dev_rx)
67f29e07
JDB
1474{
1475 return 0;
1476}
1477
6d5fc195
TM
1478struct sk_buff;
1479
1480static inline int dev_map_generic_redirect(struct bpf_dtab_netdev *dst,
1481 struct sk_buff *skb,
1482 struct bpf_prog *xdp_prog)
1483{
1484 return 0;
1485}
1486
9c270af3
JDB
1487static inline
1488struct bpf_cpu_map_entry *__cpu_map_lookup_elem(struct bpf_map *map, u32 key)
1489{
1490 return NULL;
1491}
1492
cdfafe98 1493static inline void __cpu_map_flush(void)
9c270af3
JDB
1494{
1495}
1496
9c270af3
JDB
1497static inline int cpu_map_enqueue(struct bpf_cpu_map_entry *rcpu,
1498 struct xdp_buff *xdp,
1499 struct net_device *dev_rx)
1500{
1501 return 0;
1502}
040ee692 1503
92164774
LB
1504static inline bool cpu_map_prog_allowed(struct bpf_map *map)
1505{
1506 return false;
1507}
1508
040ee692
AV
1509static inline struct bpf_prog *bpf_prog_get_type_path(const char *name,
1510 enum bpf_prog_type type)
1511{
1512 return ERR_PTR(-EOPNOTSUPP);
1513}
c695865c
SF
1514
1515static inline int bpf_prog_test_run_xdp(struct bpf_prog *prog,
1516 const union bpf_attr *kattr,
1517 union bpf_attr __user *uattr)
1518{
1519 return -ENOTSUPP;
1520}
1521
1522static inline int bpf_prog_test_run_skb(struct bpf_prog *prog,
1523 const union bpf_attr *kattr,
1524 union bpf_attr __user *uattr)
1525{
1526 return -ENOTSUPP;
1527}
1528
da00d2f1
KS
1529static inline int bpf_prog_test_run_tracing(struct bpf_prog *prog,
1530 const union bpf_attr *kattr,
1531 union bpf_attr __user *uattr)
1532{
1533 return -ENOTSUPP;
1534}
1535
c695865c
SF
1536static inline int bpf_prog_test_run_flow_dissector(struct bpf_prog *prog,
1537 const union bpf_attr *kattr,
1538 union bpf_attr __user *uattr)
1539{
1540 return -ENOTSUPP;
1541}
6332be04
DB
1542
1543static inline void bpf_map_put(struct bpf_map *map)
1544{
1545}
7e6897f9
BT
1546
1547static inline struct bpf_prog *bpf_prog_by_id(u32 id)
1548{
1549 return ERR_PTR(-ENOTSUPP);
1550}
6890896b
SF
1551
1552static inline const struct bpf_func_proto *
1553bpf_base_func_proto(enum bpf_func_id func_id)
1554{
1555 return NULL;
1556}
61e021f3 1557#endif /* CONFIG_BPF_SYSCALL */
09756af4 1558
479321e9
JK
1559static inline struct bpf_prog *bpf_prog_get_type(u32 ufd,
1560 enum bpf_prog_type type)
1561{
1562 return bpf_prog_get_type_dev(ufd, type, false);
1563}
1564
040ee692
AV
1565bool bpf_prog_get_ok(struct bpf_prog *, enum bpf_prog_type *, bool);
1566
ab3f0063
JK
1567int bpf_prog_offload_compile(struct bpf_prog *prog);
1568void bpf_prog_offload_destroy(struct bpf_prog *prog);
675fc275
JK
1569int bpf_prog_offload_info_fill(struct bpf_prog_info *info,
1570 struct bpf_prog *prog);
ab3f0063 1571
52775b33
JK
1572int bpf_map_offload_info_fill(struct bpf_map_info *info, struct bpf_map *map);
1573
a3884572
JK
1574int bpf_map_offload_lookup_elem(struct bpf_map *map, void *key, void *value);
1575int bpf_map_offload_update_elem(struct bpf_map *map,
1576 void *key, void *value, u64 flags);
1577int bpf_map_offload_delete_elem(struct bpf_map *map, void *key);
1578int bpf_map_offload_get_next_key(struct bpf_map *map,
1579 void *key, void *next_key);
1580
09728266 1581bool bpf_offload_prog_map_match(struct bpf_prog *prog, struct bpf_map *map);
a3884572 1582
1385d755 1583struct bpf_offload_dev *
dd27c2e3 1584bpf_offload_dev_create(const struct bpf_prog_offload_ops *ops, void *priv);
602144c2 1585void bpf_offload_dev_destroy(struct bpf_offload_dev *offdev);
dd27c2e3 1586void *bpf_offload_dev_priv(struct bpf_offload_dev *offdev);
602144c2
JK
1587int bpf_offload_dev_netdev_register(struct bpf_offload_dev *offdev,
1588 struct net_device *netdev);
1589void bpf_offload_dev_netdev_unregister(struct bpf_offload_dev *offdev,
1590 struct net_device *netdev);
fd4f227d 1591bool bpf_offload_dev_match(struct bpf_prog *prog, struct net_device *netdev);
9fd7c555 1592
ab3f0063
JK
1593#if defined(CONFIG_NET) && defined(CONFIG_BPF_SYSCALL)
1594int bpf_prog_offload_init(struct bpf_prog *prog, union bpf_attr *attr);
1595
0d830032 1596static inline bool bpf_prog_is_dev_bound(const struct bpf_prog_aux *aux)
ab3f0063 1597{
9a18eedb 1598 return aux->offload_requested;
ab3f0063 1599}
a3884572
JK
1600
1601static inline bool bpf_map_is_dev_bound(struct bpf_map *map)
1602{
1603 return unlikely(map->ops == &bpf_map_offload_ops);
1604}
1605
1606struct bpf_map *bpf_map_offload_map_alloc(union bpf_attr *attr);
1607void bpf_map_offload_map_free(struct bpf_map *map);
ab3f0063
JK
1608#else
1609static inline int bpf_prog_offload_init(struct bpf_prog *prog,
1610 union bpf_attr *attr)
1611{
1612 return -EOPNOTSUPP;
1613}
1614
1615static inline bool bpf_prog_is_dev_bound(struct bpf_prog_aux *aux)
1616{
1617 return false;
1618}
a3884572
JK
1619
1620static inline bool bpf_map_is_dev_bound(struct bpf_map *map)
1621{
1622 return false;
1623}
1624
1625static inline struct bpf_map *bpf_map_offload_map_alloc(union bpf_attr *attr)
1626{
1627 return ERR_PTR(-EOPNOTSUPP);
1628}
1629
1630static inline void bpf_map_offload_map_free(struct bpf_map *map)
1631{
1632}
ab3f0063
JK
1633#endif /* CONFIG_NET && CONFIG_BPF_SYSCALL */
1634
604326b4 1635#if defined(CONFIG_BPF_STREAM_PARSER)
bb0de313
LB
1636int sock_map_prog_update(struct bpf_map *map, struct bpf_prog *prog,
1637 struct bpf_prog *old, u32 which);
604326b4 1638int sock_map_get_from_fd(const union bpf_attr *attr, struct bpf_prog *prog);
bb0de313 1639int sock_map_prog_detach(const union bpf_attr *attr, enum bpf_prog_type ptype);
f747632b
LB
1640void sock_map_unhash(struct sock *sk);
1641void sock_map_close(struct sock *sk, long timeout);
6bdc9c4c 1642#else
604326b4 1643static inline int sock_map_prog_update(struct bpf_map *map,
bb0de313
LB
1644 struct bpf_prog *prog,
1645 struct bpf_prog *old, u32 which)
464bc0fd
JF
1646{
1647 return -EOPNOTSUPP;
1648}
fdb5c453 1649
604326b4
DB
1650static inline int sock_map_get_from_fd(const union bpf_attr *attr,
1651 struct bpf_prog *prog)
fdb5c453
SY
1652{
1653 return -EINVAL;
1654}
bb0de313
LB
1655
1656static inline int sock_map_prog_detach(const union bpf_attr *attr,
1657 enum bpf_prog_type ptype)
1658{
1659 return -EOPNOTSUPP;
1660}
f747632b 1661#endif /* CONFIG_BPF_STREAM_PARSER */
6bdc9c4c 1662
5dc4c4b7
MKL
1663#if defined(CONFIG_INET) && defined(CONFIG_BPF_SYSCALL)
1664void bpf_sk_reuseport_detach(struct sock *sk);
1665int bpf_fd_reuseport_array_lookup_elem(struct bpf_map *map, void *key,
1666 void *value);
1667int bpf_fd_reuseport_array_update_elem(struct bpf_map *map, void *key,
1668 void *value, u64 map_flags);
1669#else
1670static inline void bpf_sk_reuseport_detach(struct sock *sk)
1671{
1672}
1673
1674#ifdef CONFIG_BPF_SYSCALL
1675static inline int bpf_fd_reuseport_array_lookup_elem(struct bpf_map *map,
1676 void *key, void *value)
1677{
1678 return -EOPNOTSUPP;
1679}
1680
1681static inline int bpf_fd_reuseport_array_update_elem(struct bpf_map *map,
1682 void *key, void *value,
1683 u64 map_flags)
1684{
1685 return -EOPNOTSUPP;
1686}
1687#endif /* CONFIG_BPF_SYSCALL */
1688#endif /* defined(CONFIG_INET) && defined(CONFIG_BPF_SYSCALL) */
1689
d0003ec0 1690/* verifier prototypes for helper functions called from eBPF programs */
a2c83fff
DB
1691extern const struct bpf_func_proto bpf_map_lookup_elem_proto;
1692extern const struct bpf_func_proto bpf_map_update_elem_proto;
1693extern const struct bpf_func_proto bpf_map_delete_elem_proto;
f1a2e44a
MV
1694extern const struct bpf_func_proto bpf_map_push_elem_proto;
1695extern const struct bpf_func_proto bpf_map_pop_elem_proto;
1696extern const struct bpf_func_proto bpf_map_peek_elem_proto;
d0003ec0 1697
03e69b50 1698extern const struct bpf_func_proto bpf_get_prandom_u32_proto;
c04167ce 1699extern const struct bpf_func_proto bpf_get_smp_processor_id_proto;
2d0e30c3 1700extern const struct bpf_func_proto bpf_get_numa_node_id_proto;
04fd61ab 1701extern const struct bpf_func_proto bpf_tail_call_proto;
17ca8cbf 1702extern const struct bpf_func_proto bpf_ktime_get_ns_proto;
71d19214 1703extern const struct bpf_func_proto bpf_ktime_get_boot_ns_proto;
ffeedafb
AS
1704extern const struct bpf_func_proto bpf_get_current_pid_tgid_proto;
1705extern const struct bpf_func_proto bpf_get_current_uid_gid_proto;
1706extern const struct bpf_func_proto bpf_get_current_comm_proto;
d5a3b1f6 1707extern const struct bpf_func_proto bpf_get_stackid_proto;
c195651e 1708extern const struct bpf_func_proto bpf_get_stack_proto;
fa28dcb8 1709extern const struct bpf_func_proto bpf_get_task_stack_proto;
7b04d6d6
SL
1710extern const struct bpf_func_proto bpf_get_stackid_proto_pe;
1711extern const struct bpf_func_proto bpf_get_stack_proto_pe;
174a79ff 1712extern const struct bpf_func_proto bpf_sock_map_update_proto;
81110384 1713extern const struct bpf_func_proto bpf_sock_hash_update_proto;
bf6fa2c8 1714extern const struct bpf_func_proto bpf_get_current_cgroup_id_proto;
0f09abd1 1715extern const struct bpf_func_proto bpf_get_current_ancestor_cgroup_id_proto;
604326b4
DB
1716extern const struct bpf_func_proto bpf_msg_redirect_hash_proto;
1717extern const struct bpf_func_proto bpf_msg_redirect_map_proto;
1718extern const struct bpf_func_proto bpf_sk_redirect_hash_proto;
1719extern const struct bpf_func_proto bpf_sk_redirect_map_proto;
d83525ca
AS
1720extern const struct bpf_func_proto bpf_spin_lock_proto;
1721extern const struct bpf_func_proto bpf_spin_unlock_proto;
cd339431 1722extern const struct bpf_func_proto bpf_get_local_storage_proto;
d7a4cb9b
AI
1723extern const struct bpf_func_proto bpf_strtol_proto;
1724extern const struct bpf_func_proto bpf_strtoul_proto;
0d01da6a 1725extern const struct bpf_func_proto bpf_tcp_sock_proto;
5576b991 1726extern const struct bpf_func_proto bpf_jiffies64_proto;
b4490c5c 1727extern const struct bpf_func_proto bpf_get_ns_current_pid_tgid_proto;
0456ea17 1728extern const struct bpf_func_proto bpf_event_output_data_proto;
457f4436
AN
1729extern const struct bpf_func_proto bpf_ringbuf_output_proto;
1730extern const struct bpf_func_proto bpf_ringbuf_reserve_proto;
1731extern const struct bpf_func_proto bpf_ringbuf_submit_proto;
1732extern const struct bpf_func_proto bpf_ringbuf_discard_proto;
1733extern const struct bpf_func_proto bpf_ringbuf_query_proto;
af7ec138 1734extern const struct bpf_func_proto bpf_skc_to_tcp6_sock_proto;
478cfbdf
YS
1735extern const struct bpf_func_proto bpf_skc_to_tcp_sock_proto;
1736extern const struct bpf_func_proto bpf_skc_to_tcp_timewait_sock_proto;
1737extern const struct bpf_func_proto bpf_skc_to_tcp_request_sock_proto;
0d4fad3e 1738extern const struct bpf_func_proto bpf_skc_to_udp6_sock_proto;
cd339431 1739
fc611f47
KS
1740const struct bpf_func_proto *bpf_tracing_func_proto(
1741 enum bpf_func_id func_id, const struct bpf_prog *prog);
1742
958a3f2d
JO
1743const struct bpf_func_proto *tracing_prog_func_proto(
1744 enum bpf_func_id func_id, const struct bpf_prog *prog);
1745
3ad00405
DB
1746/* Shared helpers among cBPF and eBPF. */
1747void bpf_user_rnd_init_once(void);
1748u64 bpf_user_rnd_u32(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5);
6890896b 1749u64 bpf_get_raw_cpu_id(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5);
3ad00405 1750
c64b7983 1751#if defined(CONFIG_NET)
46f8bc92
MKL
1752bool bpf_sock_common_is_valid_access(int off, int size,
1753 enum bpf_access_type type,
1754 struct bpf_insn_access_aux *info);
c64b7983
JS
1755bool bpf_sock_is_valid_access(int off, int size, enum bpf_access_type type,
1756 struct bpf_insn_access_aux *info);
1757u32 bpf_sock_convert_ctx_access(enum bpf_access_type type,
1758 const struct bpf_insn *si,
1759 struct bpf_insn *insn_buf,
1760 struct bpf_prog *prog,
1761 u32 *target_size);
1762#else
46f8bc92
MKL
1763static inline bool bpf_sock_common_is_valid_access(int off, int size,
1764 enum bpf_access_type type,
1765 struct bpf_insn_access_aux *info)
1766{
1767 return false;
1768}
c64b7983
JS
1769static inline bool bpf_sock_is_valid_access(int off, int size,
1770 enum bpf_access_type type,
1771 struct bpf_insn_access_aux *info)
1772{
1773 return false;
1774}
1775static inline u32 bpf_sock_convert_ctx_access(enum bpf_access_type type,
1776 const struct bpf_insn *si,
1777 struct bpf_insn *insn_buf,
1778 struct bpf_prog *prog,
1779 u32 *target_size)
1780{
1781 return 0;
1782}
1783#endif
1784
655a51e5 1785#ifdef CONFIG_INET
91cc1a99
AS
1786struct sk_reuseport_kern {
1787 struct sk_buff *skb;
1788 struct sock *sk;
1789 struct sock *selected_sk;
1790 void *data_end;
1791 u32 hash;
1792 u32 reuseport_id;
1793 bool bind_inany;
1794};
655a51e5
MKL
1795bool bpf_tcp_sock_is_valid_access(int off, int size, enum bpf_access_type type,
1796 struct bpf_insn_access_aux *info);
1797
1798u32 bpf_tcp_sock_convert_ctx_access(enum bpf_access_type type,
1799 const struct bpf_insn *si,
1800 struct bpf_insn *insn_buf,
1801 struct bpf_prog *prog,
1802 u32 *target_size);
7f94208c
Y
1803
1804bool bpf_xdp_sock_is_valid_access(int off, int size, enum bpf_access_type type,
1805 struct bpf_insn_access_aux *info);
1806
1807u32 bpf_xdp_sock_convert_ctx_access(enum bpf_access_type type,
1808 const struct bpf_insn *si,
1809 struct bpf_insn *insn_buf,
1810 struct bpf_prog *prog,
1811 u32 *target_size);
655a51e5
MKL
1812#else
1813static inline bool bpf_tcp_sock_is_valid_access(int off, int size,
1814 enum bpf_access_type type,
1815 struct bpf_insn_access_aux *info)
1816{
1817 return false;
1818}
1819
1820static inline u32 bpf_tcp_sock_convert_ctx_access(enum bpf_access_type type,
1821 const struct bpf_insn *si,
1822 struct bpf_insn *insn_buf,
1823 struct bpf_prog *prog,
1824 u32 *target_size)
1825{
1826 return 0;
1827}
7f94208c
Y
1828static inline bool bpf_xdp_sock_is_valid_access(int off, int size,
1829 enum bpf_access_type type,
1830 struct bpf_insn_access_aux *info)
1831{
1832 return false;
1833}
1834
1835static inline u32 bpf_xdp_sock_convert_ctx_access(enum bpf_access_type type,
1836 const struct bpf_insn *si,
1837 struct bpf_insn *insn_buf,
1838 struct bpf_prog *prog,
1839 u32 *target_size)
1840{
1841 return 0;
1842}
655a51e5
MKL
1843#endif /* CONFIG_INET */
1844
5964b200 1845enum bpf_text_poke_type {
b553a6ec
DB
1846 BPF_MOD_CALL,
1847 BPF_MOD_JUMP,
5964b200 1848};
4b3da77b 1849
5964b200
AS
1850int bpf_arch_text_poke(void *ip, enum bpf_text_poke_type t,
1851 void *addr1, void *addr2);
1852
99c55f7d 1853#endif /* _LINUX_BPF_H */