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