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