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