blob: 028555fcd10d399c23ed664a54a6d023db9edf2f [file] [log] [blame]
Thomas Gleixner25763b32019-05-28 10:10:09 -07001/* SPDX-License-Identifier: GPL-2.0-only */
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07002/* Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07003 */
4#ifndef _LINUX_BPF_H
5#define _LINUX_BPF_H 1
6
7#include <uapi/linux/bpf.h>
Daniel Borkmann74451e662017-02-16 22:24:50 +01008
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07009#include <linux/workqueue.h>
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -070010#include <linux/file.h>
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -080011#include <linux/percpu.h>
Zi Shen Lim002245c2016-06-08 21:18:47 -070012#include <linux/err.h>
Daniel Borkmann74451e662017-02-16 22:24:50 +010013#include <linux/rbtree_latch.h>
David S. Millerd6e1e462017-08-19 23:34:03 -070014#include <linux/numa.h>
Jakub Kicinskiab3f0062017-11-03 13:56:17 -070015#include <linux/wait.h>
Alexei Starovoitov492ecee2019-02-25 14:28:39 -080016#include <linux/u64_stats_sync.h>
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070017
Jakub Kicinskicae19272017-12-27 18:39:05 -080018struct bpf_verifier_env;
Alexei Starovoitov9e15db62019-10-15 20:25:00 -070019struct bpf_verifier_log;
Daniel Borkmann3b1efb12016-06-15 22:47:14 +020020struct perf_event;
John Fastabend174a79f2017-08-15 22:32:47 -070021struct bpf_prog;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070022struct bpf_map;
John Fastabend4f738ad2018-03-18 12:57:10 -070023struct sock;
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -070024struct seq_file;
Roman Gushchin1b2b2342018-12-10 15:43:00 -080025struct btf;
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +020026struct btf_type;
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070027
Quentin Monnet1b9ed842019-08-20 10:31:50 +010028extern struct idr btf_idr;
29extern spinlock_t btf_idr_lock;
30
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070031/* map is generic key/value storage optionally accesible by eBPF programs */
32struct bpf_map_ops {
33 /* funcs callable from userspace (via syscall) */
Jakub Kicinski1110f3a2018-01-11 20:29:03 -080034 int (*map_alloc_check)(union bpf_attr *attr);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070035 struct bpf_map *(*map_alloc)(union bpf_attr *attr);
Daniel Borkmann61d1b6a2016-06-15 22:47:12 +020036 void (*map_release)(struct bpf_map *map, struct file *map_file);
37 void (*map_free)(struct bpf_map *map);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -070038 int (*map_get_next_key)(struct bpf_map *map, void *key, void *next_key);
John Fastabendba6b8de2018-04-23 15:39:23 -070039 void (*map_release_uref)(struct bpf_map *map);
Daniel Borkmannc6110222019-05-14 01:18:55 +020040 void *(*map_lookup_elem_sys_only)(struct bpf_map *map, void *key);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -070041
42 /* funcs callable from userspace and from eBPF programs */
43 void *(*map_lookup_elem)(struct bpf_map *map, void *key);
Alexei Starovoitov3274f522014-11-13 17:36:44 -080044 int (*map_update_elem)(struct bpf_map *map, void *key, void *value, u64 flags);
Alexei Starovoitovdb20fd22014-09-26 00:16:59 -070045 int (*map_delete_elem)(struct bpf_map *map, void *key);
Mauricio Vasquez Bf1a2e442018-10-18 15:16:25 +020046 int (*map_push_elem)(struct bpf_map *map, void *value, u64 flags);
47 int (*map_pop_elem)(struct bpf_map *map, void *value);
48 int (*map_peek_elem)(struct bpf_map *map, void *value);
Wang Nan2a36f0b2015-08-06 07:02:33 +000049
50 /* funcs called by prog_array and perf_event_array map */
Daniel Borkmannd056a782016-06-15 22:47:13 +020051 void *(*map_fd_get_ptr)(struct bpf_map *map, struct file *map_file,
52 int fd);
53 void (*map_fd_put_ptr)(void *ptr);
Alexei Starovoitov81ed18a2017-03-15 18:26:42 -070054 u32 (*map_gen_lookup)(struct bpf_map *map, struct bpf_insn *insn_buf);
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -070055 u32 (*map_fd_sys_lookup_elem)(void *ptr);
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -070056 void (*map_seq_show_elem)(struct bpf_map *map, void *key,
57 struct seq_file *m);
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +020058 int (*map_check_btf)(const struct bpf_map *map,
Roman Gushchin1b2b2342018-12-10 15:43:00 -080059 const struct btf *btf,
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +020060 const struct btf_type *key_type,
61 const struct btf_type *value_type);
Daniel Borkmannd8eca5b2019-04-09 23:20:03 +020062
63 /* Direct value access helpers. */
64 int (*map_direct_value_addr)(const struct bpf_map *map,
65 u64 *imm, u32 off);
66 int (*map_direct_value_meta)(const struct bpf_map *map,
67 u64 imm, u32 *off);
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070068};
69
Roman Gushchin3539b962019-05-29 18:03:57 -070070struct bpf_map_memory {
71 u32 pages;
72 struct user_struct *user;
73};
74
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070075struct bpf_map {
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -070076 /* The first two cachelines with read-mostly members of which some
Daniel Borkmannbe95a842018-01-09 13:17:44 +010077 * are also accessed in fast-path (e.g. ops, max_entries).
78 */
79 const struct bpf_map_ops *ops ____cacheline_aligned;
80 struct bpf_map *inner_map_meta;
81#ifdef CONFIG_SECURITY
82 void *security;
83#endif
Alexei Starovoitov99c55f72014-09-26 00:16:57 -070084 enum bpf_map_type map_type;
85 u32 key_size;
86 u32 value_size;
87 u32 max_entries;
Alexei Starovoitov6c905982016-03-07 21:57:15 -080088 u32 map_flags;
Alexei Starovoitovd83525c2019-01-31 15:40:04 -080089 int spin_lock_off; /* >=0 valid offset, <0 error */
Martin KaFai Lauf3f1c052017-06-05 12:15:47 -070090 u32 id;
Martin KaFai Lau96eabe72017-08-18 11:28:00 -070091 int numa_node;
Martin KaFai Lau9b2cf322018-05-22 14:57:21 -070092 u32 btf_key_type_id;
93 u32 btf_value_type_id;
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -070094 struct btf *btf;
Roman Gushchin3539b962019-05-29 18:03:57 -070095 struct bpf_map_memory memory;
Alexei Starovoitovb2157392018-01-07 17:33:02 -080096 bool unpriv_array;
Daniel Borkmann87df15d2019-04-09 23:20:06 +020097 bool frozen; /* write-once */
98 /* 48 bytes hole */
Daniel Borkmannbe95a842018-01-09 13:17:44 +010099
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700100 /* The 3rd and 4th cacheline with misc members to avoid false sharing
Daniel Borkmannbe95a842018-01-09 13:17:44 +0100101 * particularly with refcounting.
102 */
Roman Gushchin3539b962019-05-29 18:03:57 -0700103 atomic_t refcnt ____cacheline_aligned;
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100104 atomic_t usercnt;
Daniel Borkmannbe95a842018-01-09 13:17:44 +0100105 struct work_struct work;
Martin KaFai Lau067cae42017-10-05 21:52:12 -0700106 char name[BPF_OBJ_NAME_LEN];
Alexei Starovoitov99c55f72014-09-26 00:16:57 -0700107};
108
Alexei Starovoitovd83525c2019-01-31 15:40:04 -0800109static inline bool map_value_has_spin_lock(const struct bpf_map *map)
110{
111 return map->spin_lock_off >= 0;
112}
113
114static inline void check_and_init_map_lock(struct bpf_map *map, void *dst)
115{
116 if (likely(!map_value_has_spin_lock(map)))
117 return;
118 *(struct bpf_spin_lock *)(dst + map->spin_lock_off) =
119 (struct bpf_spin_lock){};
120}
121
122/* copy everything but bpf_spin_lock */
123static inline void copy_map_value(struct bpf_map *map, void *dst, void *src)
124{
125 if (unlikely(map_value_has_spin_lock(map))) {
126 u32 off = map->spin_lock_off;
127
128 memcpy(dst, src, off);
129 memcpy(dst + off + sizeof(struct bpf_spin_lock),
130 src + off + sizeof(struct bpf_spin_lock),
131 map->value_size - off - sizeof(struct bpf_spin_lock));
132 } else {
133 memcpy(dst, src, map->value_size);
134 }
135}
Alexei Starovoitov96049f32019-01-31 15:40:09 -0800136void copy_map_value_locked(struct bpf_map *map, void *dst, void *src,
137 bool lock_src);
Alexei Starovoitovd83525c2019-01-31 15:40:04 -0800138
Jakub Kicinski602144c2018-07-17 10:53:25 -0700139struct bpf_offload_dev;
Jakub Kicinskia3884572018-01-11 20:29:09 -0800140struct bpf_offloaded_map;
141
142struct bpf_map_dev_ops {
143 int (*map_get_next_key)(struct bpf_offloaded_map *map,
144 void *key, void *next_key);
145 int (*map_lookup_elem)(struct bpf_offloaded_map *map,
146 void *key, void *value);
147 int (*map_update_elem)(struct bpf_offloaded_map *map,
148 void *key, void *value, u64 flags);
149 int (*map_delete_elem)(struct bpf_offloaded_map *map, void *key);
150};
151
152struct bpf_offloaded_map {
153 struct bpf_map map;
154 struct net_device *netdev;
155 const struct bpf_map_dev_ops *dev_ops;
156 void *dev_priv;
157 struct list_head offloads;
158};
159
160static inline struct bpf_offloaded_map *map_to_offmap(struct bpf_map *map)
161{
162 return container_of(map, struct bpf_offloaded_map, map);
163}
164
Jakub Kicinski0cd3cbe2018-05-03 18:37:08 -0700165static inline bool bpf_map_offload_neutral(const struct bpf_map *map)
166{
167 return map->map_type == BPF_MAP_TYPE_PERF_EVENT_ARRAY;
168}
169
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700170static inline bool bpf_map_support_seq_show(const struct bpf_map *map)
171{
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +0200172 return map->btf && map->ops->map_seq_show_elem;
Martin KaFai Laua26ca7c2018-04-18 15:56:03 -0700173}
174
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +0200175int map_check_no_btf(const struct bpf_map *map,
Roman Gushchin1b2b2342018-12-10 15:43:00 -0800176 const struct btf *btf,
Daniel Borkmanne8d2bec2018-08-12 01:59:17 +0200177 const struct btf_type *key_type,
178 const struct btf_type *value_type);
179
Jakub Kicinskia3884572018-01-11 20:29:09 -0800180extern const struct bpf_map_ops bpf_map_offload_ops;
181
Alexei Starovoitov17a52672014-09-26 00:17:06 -0700182/* function argument constraints */
183enum bpf_arg_type {
Daniel Borkmann80f1d682015-03-12 17:21:42 +0100184 ARG_DONTCARE = 0, /* unused argument in helper function */
Alexei Starovoitov17a52672014-09-26 00:17:06 -0700185
186 /* the following constraints used to prototype
187 * bpf_map_lookup/update/delete_elem() functions
188 */
189 ARG_CONST_MAP_PTR, /* const argument used as pointer to bpf_map */
190 ARG_PTR_TO_MAP_KEY, /* pointer to stack used as map key */
191 ARG_PTR_TO_MAP_VALUE, /* pointer to stack used as map value */
Mauricio Vasquez B2ea864c2018-10-18 15:16:20 +0200192 ARG_PTR_TO_UNINIT_MAP_VALUE, /* pointer to valid memory used to store a map value */
Martin KaFai Lau6ac99e82019-04-26 16:39:39 -0700193 ARG_PTR_TO_MAP_VALUE_OR_NULL, /* pointer to stack used as map value or NULL */
Alexei Starovoitov17a52672014-09-26 00:17:06 -0700194
195 /* the following constraints used to prototype bpf_memcmp() and other
196 * functions that access data on eBPF program stack
197 */
Alexei Starovoitov39f19ebb2017-01-09 10:19:50 -0800198 ARG_PTR_TO_MEM, /* pointer to valid memory (stack, packet, map value) */
Gianluca Borellodb1ac492017-11-22 18:32:53 +0000199 ARG_PTR_TO_MEM_OR_NULL, /* pointer to valid memory or NULL */
Alexei Starovoitov39f19ebb2017-01-09 10:19:50 -0800200 ARG_PTR_TO_UNINIT_MEM, /* pointer to memory does not need to be initialized,
201 * helper function must fill all bytes or clear
202 * them in error case.
Daniel Borkmann435faee12016-04-13 00:10:51 +0200203 */
204
Alexei Starovoitov39f19ebb2017-01-09 10:19:50 -0800205 ARG_CONST_SIZE, /* number of bytes accessed from memory */
206 ARG_CONST_SIZE_OR_ZERO, /* number of bytes accessed from memory or 0 */
Daniel Borkmann80f1d682015-03-12 17:21:42 +0100207
Alexei Starovoitov608cd712015-03-26 19:53:57 -0700208 ARG_PTR_TO_CTX, /* pointer to context */
Daniel Borkmann80f1d682015-03-12 17:21:42 +0100209 ARG_ANYTHING, /* any (initialized) argument is ok */
Alexei Starovoitovd83525c2019-01-31 15:40:04 -0800210 ARG_PTR_TO_SPIN_LOCK, /* pointer to bpf_spin_lock */
Martin KaFai Lau46f8bc92019-02-09 23:22:20 -0800211 ARG_PTR_TO_SOCK_COMMON, /* pointer to sock_common */
Andrey Ignatov57c3bb72019-03-18 16:57:10 -0700212 ARG_PTR_TO_INT, /* pointer to int */
213 ARG_PTR_TO_LONG, /* pointer to long */
Martin KaFai Lau6ac99e82019-04-26 16:39:39 -0700214 ARG_PTR_TO_SOCKET, /* pointer to bpf_sock (fullsock) */
Alexei Starovoitov17a52672014-09-26 00:17:06 -0700215};
216
217/* type of values returned from helper functions */
218enum bpf_return_type {
219 RET_INTEGER, /* function returns integer */
220 RET_VOID, /* function doesn't return anything */
Roman Gushchin3e6a4b32018-08-02 14:27:22 -0700221 RET_PTR_TO_MAP_VALUE, /* returns a pointer to map elem value */
Alexei Starovoitov17a52672014-09-26 00:17:06 -0700222 RET_PTR_TO_MAP_VALUE_OR_NULL, /* returns a pointer to map elem value or NULL */
Joe Stringerc64b7982018-10-02 13:35:33 -0700223 RET_PTR_TO_SOCKET_OR_NULL, /* returns a pointer to a socket or NULL */
Martin KaFai Lau655a51e2019-02-09 23:22:24 -0800224 RET_PTR_TO_TCP_SOCK_OR_NULL, /* returns a pointer to a tcp_sock or NULL */
Lorenz Bauer85a51f82019-03-22 09:54:00 +0800225 RET_PTR_TO_SOCK_COMMON_OR_NULL, /* returns a pointer to a sock_common or NULL */
Alexei Starovoitov17a52672014-09-26 00:17:06 -0700226};
227
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700228/* eBPF function prototype used by verifier to allow BPF_CALLs from eBPF programs
229 * to in-kernel helper functions and for adjusting imm32 field in BPF_CALL
230 * instructions after verifying
231 */
232struct bpf_func_proto {
233 u64 (*func)(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5);
234 bool gpl_only;
Daniel Borkmann36bbef52016-09-20 00:26:13 +0200235 bool pkt_access;
Alexei Starovoitov17a52672014-09-26 00:17:06 -0700236 enum bpf_return_type ret_type;
237 enum bpf_arg_type arg1_type;
238 enum bpf_arg_type arg2_type;
239 enum bpf_arg_type arg3_type;
240 enum bpf_arg_type arg4_type;
241 enum bpf_arg_type arg5_type;
242};
243
244/* bpf_context is intentionally undefined structure. Pointer to bpf_context is
245 * the first argument to eBPF programs.
246 * For socket filters: 'struct bpf_context *' == 'struct sk_buff *'
247 */
248struct bpf_context;
249
250enum bpf_access_type {
251 BPF_READ = 1,
252 BPF_WRITE = 2
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700253};
254
Alexei Starovoitov19de99f2016-06-15 18:25:38 -0700255/* types of values stored in eBPF registers */
Edward Creef1174f72017-08-07 15:26:19 +0100256/* Pointer types represent:
257 * pointer
258 * pointer + imm
259 * pointer + (u16) var
260 * pointer + (u16) var + imm
261 * if (range > 0) then [ptr, ptr + range - off) is safe to access
262 * if (id > 0) means that some 'var' was added
263 * if (off > 0) means that 'imm' was added
264 */
Alexei Starovoitov19de99f2016-06-15 18:25:38 -0700265enum bpf_reg_type {
266 NOT_INIT = 0, /* nothing was written into register */
Edward Creef1174f72017-08-07 15:26:19 +0100267 SCALAR_VALUE, /* reg doesn't contain a valid pointer */
Alexei Starovoitov19de99f2016-06-15 18:25:38 -0700268 PTR_TO_CTX, /* reg points to bpf_context */
269 CONST_PTR_TO_MAP, /* reg points to struct bpf_map */
270 PTR_TO_MAP_VALUE, /* reg points to map element value */
271 PTR_TO_MAP_VALUE_OR_NULL,/* points to map elem value or NULL */
Edward Creef1174f72017-08-07 15:26:19 +0100272 PTR_TO_STACK, /* reg == frame_pointer + offset */
Daniel Borkmannde8f3a82017-09-25 02:25:51 +0200273 PTR_TO_PACKET_META, /* skb->data - meta_len */
Edward Creef1174f72017-08-07 15:26:19 +0100274 PTR_TO_PACKET, /* reg points to skb->data */
Alexei Starovoitov19de99f2016-06-15 18:25:38 -0700275 PTR_TO_PACKET_END, /* skb->data + headlen */
Petar Penkovd58e4682018-09-14 07:46:18 -0700276 PTR_TO_FLOW_KEYS, /* reg points to bpf_flow_keys */
Joe Stringerc64b7982018-10-02 13:35:33 -0700277 PTR_TO_SOCKET, /* reg points to struct bpf_sock */
278 PTR_TO_SOCKET_OR_NULL, /* reg points to struct bpf_sock or NULL */
Martin KaFai Lau46f8bc92019-02-09 23:22:20 -0800279 PTR_TO_SOCK_COMMON, /* reg points to sock_common */
280 PTR_TO_SOCK_COMMON_OR_NULL, /* reg points to sock_common or NULL */
Martin KaFai Lau655a51e2019-02-09 23:22:24 -0800281 PTR_TO_TCP_SOCK, /* reg points to struct tcp_sock */
282 PTR_TO_TCP_SOCK_OR_NULL, /* reg points to struct tcp_sock or NULL */
Matt Mullins9df1c282019-04-26 11:49:47 -0700283 PTR_TO_TP_BUFFER, /* reg points to a writable raw tp's buffer */
Jonathan Lemonfada7fd2019-06-06 13:59:40 -0700284 PTR_TO_XDP_SOCK, /* reg points to struct xdp_sock */
Alexei Starovoitov9e15db62019-10-15 20:25:00 -0700285 PTR_TO_BTF_ID, /* reg points to kernel struct */
Alexei Starovoitov19de99f2016-06-15 18:25:38 -0700286};
287
Yonghong Song23994632017-06-22 15:07:39 -0700288/* The information passed from prog-specific *_is_valid_access
289 * back to the verifier.
290 */
291struct bpf_insn_access_aux {
292 enum bpf_reg_type reg_type;
Alexei Starovoitov9e15db62019-10-15 20:25:00 -0700293 union {
294 int ctx_field_size;
295 u32 btf_id;
296 };
297 struct bpf_verifier_log *log; /* for verbose logs */
Yonghong Song23994632017-06-22 15:07:39 -0700298};
299
Daniel Borkmannf96da092017-07-02 02:13:27 +0200300static inline void
301bpf_ctx_record_field_size(struct bpf_insn_access_aux *aux, u32 size)
302{
303 aux->ctx_field_size = size;
304}
305
Jakub Kicinski7de16e32017-10-16 16:40:53 -0700306struct bpf_prog_ops {
307 int (*test_run)(struct bpf_prog *prog, const union bpf_attr *kattr,
308 union bpf_attr __user *uattr);
309};
310
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700311struct bpf_verifier_ops {
312 /* return eBPF function prototype for verification */
Andrey Ignatov5e43f892018-03-30 15:08:00 -0700313 const struct bpf_func_proto *
314 (*get_func_proto)(enum bpf_func_id func_id,
315 const struct bpf_prog *prog);
Alexei Starovoitov17a52672014-09-26 00:17:06 -0700316
317 /* return true if 'size' wide access at offset 'off' within bpf_context
318 * with 'type' (read or write) is allowed
319 */
Alexei Starovoitov19de99f2016-06-15 18:25:38 -0700320 bool (*is_valid_access)(int off, int size, enum bpf_access_type type,
Andrey Ignatov5e43f892018-03-30 15:08:00 -0700321 const struct bpf_prog *prog,
Yonghong Song23994632017-06-22 15:07:39 -0700322 struct bpf_insn_access_aux *info);
Daniel Borkmann36bbef52016-09-20 00:26:13 +0200323 int (*gen_prologue)(struct bpf_insn *insn, bool direct_write,
324 const struct bpf_prog *prog);
Daniel Borkmanne0cea7c2018-05-04 01:08:14 +0200325 int (*gen_ld_abs)(const struct bpf_insn *orig,
326 struct bpf_insn *insn_buf);
Daniel Borkmann6b8cc1d2017-01-12 11:51:32 +0100327 u32 (*convert_ctx_access)(enum bpf_access_type type,
328 const struct bpf_insn *src,
329 struct bpf_insn *dst,
Daniel Borkmannf96da092017-07-02 02:13:27 +0200330 struct bpf_prog *prog, u32 *target_size);
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700331};
332
Jakub Kicinskicae19272017-12-27 18:39:05 -0800333struct bpf_prog_offload_ops {
Jakub Kicinski08ca90a2019-01-22 22:45:24 -0800334 /* verifier basic callbacks */
Jakub Kicinskicae19272017-12-27 18:39:05 -0800335 int (*insn_hook)(struct bpf_verifier_env *env,
336 int insn_idx, int prev_insn_idx);
Quentin Monnetc941ce92018-10-07 12:56:47 +0100337 int (*finalize)(struct bpf_verifier_env *env);
Jakub Kicinski08ca90a2019-01-22 22:45:24 -0800338 /* verifier optimization callbacks (called after .finalize) */
339 int (*replace_insn)(struct bpf_verifier_env *env, u32 off,
340 struct bpf_insn *insn);
341 int (*remove_insns)(struct bpf_verifier_env *env, u32 off, u32 cnt);
342 /* program management callbacks */
Quentin Monnet16a8cb5c2018-11-09 13:03:32 +0000343 int (*prepare)(struct bpf_prog *prog);
344 int (*translate)(struct bpf_prog *prog);
Quentin Monneteb911942018-11-09 13:03:30 +0000345 void (*destroy)(struct bpf_prog *prog);
Jakub Kicinskicae19272017-12-27 18:39:05 -0800346};
347
Jakub Kicinski0a9c1992018-01-11 20:29:07 -0800348struct bpf_prog_offload {
Jakub Kicinskiab3f0062017-11-03 13:56:17 -0700349 struct bpf_prog *prog;
350 struct net_device *netdev;
Quentin Monnet341b3e72018-11-09 13:03:26 +0000351 struct bpf_offload_dev *offdev;
Jakub Kicinskiab3f0062017-11-03 13:56:17 -0700352 void *dev_priv;
353 struct list_head offloads;
354 bool dev_state;
Jakub Kicinski08ca90a2019-01-22 22:45:24 -0800355 bool opt_failed;
Jiong Wangfcfb1262018-01-16 16:05:19 -0800356 void *jited_image;
357 u32 jited_len;
Jakub Kicinskiab3f0062017-11-03 13:56:17 -0700358};
359
Roman Gushchin8bad74f2018-09-28 14:45:36 +0000360enum bpf_cgroup_storage_type {
361 BPF_CGROUP_STORAGE_SHARED,
Roman Gushchinb741f162018-09-28 14:45:43 +0000362 BPF_CGROUP_STORAGE_PERCPU,
Roman Gushchin8bad74f2018-09-28 14:45:36 +0000363 __BPF_CGROUP_STORAGE_MAX
364};
365
366#define MAX_BPF_CGROUP_STORAGE_TYPE __BPF_CGROUP_STORAGE_MAX
367
Alexei Starovoitov492ecee2019-02-25 14:28:39 -0800368struct bpf_prog_stats {
369 u64 cnt;
370 u64 nsecs;
371 struct u64_stats_sync syncp;
Eric Dumazet84a081f2019-10-11 11:11:40 -0700372} __aligned(2 * sizeof(u64));
Alexei Starovoitov492ecee2019-02-25 14:28:39 -0800373
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700374struct bpf_prog_aux {
375 atomic_t refcnt;
Daniel Borkmann24701ec2015-03-01 12:31:47 +0100376 u32 used_map_cnt;
Alexei Starovoitov32bbe002016-04-06 18:43:28 -0700377 u32 max_ctx_offset;
Jiong Wange6478152018-11-08 04:08:42 -0500378 u32 max_pkt_offset;
Matt Mullins9df1c282019-04-26 11:49:47 -0700379 u32 max_tp_access;
Alexei Starovoitov87266792017-05-30 13:31:29 -0700380 u32 stack_depth;
Martin KaFai Laudc4bb0e2017-06-05 12:15:46 -0700381 u32 id;
Yonghong Songba64e7d2018-11-24 23:20:44 -0800382 u32 func_cnt; /* used by non-func prog as the number of func progs */
383 u32 func_idx; /* 0 for non-func prog, the index in func array for func prog */
Alexei Starovoitovccfe29eb22019-10-15 20:24:58 -0700384 u32 attach_btf_id; /* in-kernel BTF type id to attach to */
Jiong Wanga4b1d3c2019-05-24 23:25:15 +0100385 bool verifier_zext; /* Zero extensions has been inserted by verifier. */
Jakub Kicinski9a18eed2017-12-27 18:39:04 -0800386 bool offload_requested;
Alexei Starovoitov1c2a0882017-12-14 17:55:15 -0800387 struct bpf_prog **func;
388 void *jit_data; /* JIT specific data. arch dependent */
Daniel Borkmann74451e662017-02-16 22:24:50 +0100389 struct latch_tree_node ksym_tnode;
390 struct list_head ksym_lnode;
Jakub Kicinski7de16e32017-10-16 16:40:53 -0700391 const struct bpf_prog_ops *ops;
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700392 struct bpf_map **used_maps;
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700393 struct bpf_prog *prog;
Alexei Starovoitovaaac3ba2015-10-07 22:23:22 -0700394 struct user_struct *user;
Martin KaFai Laucb4d2b32017-09-27 14:37:52 -0700395 u64 load_time; /* ns since boottime */
Roman Gushchin8bad74f2018-09-28 14:45:36 +0000396 struct bpf_map *cgroup_storage[MAX_BPF_CGROUP_STORAGE_TYPE];
Martin KaFai Lau067cae42017-10-05 21:52:12 -0700397 char name[BPF_OBJ_NAME_LEN];
Chenbo Fengafdb09c2017-10-18 13:00:24 -0700398#ifdef CONFIG_SECURITY
399 void *security;
400#endif
Jakub Kicinski0a9c1992018-01-11 20:29:07 -0800401 struct bpf_prog_offload *offload;
Yonghong Song838e9692018-11-19 15:29:11 -0800402 struct btf *btf;
Yonghong Songba64e7d2018-11-24 23:20:44 -0800403 struct bpf_func_info *func_info;
Martin KaFai Lauc454a462018-12-07 16:42:25 -0800404 /* bpf_line_info loaded from userspace. linfo->insn_off
405 * has the xlated insn offset.
406 * Both the main and sub prog share the same linfo.
407 * The subprog can access its first linfo by
408 * using the linfo_idx.
409 */
410 struct bpf_line_info *linfo;
411 /* jited_linfo is the jited addr of the linfo. It has a
412 * one to one mapping to linfo:
413 * jited_linfo[i] is the jited addr for the linfo[i]->insn_off.
414 * Both the main and sub prog share the same jited_linfo.
415 * The subprog can access its first jited_linfo by
416 * using the linfo_idx.
417 */
418 void **jited_linfo;
Yonghong Songba64e7d2018-11-24 23:20:44 -0800419 u32 func_info_cnt;
Martin KaFai Lauc454a462018-12-07 16:42:25 -0800420 u32 nr_linfo;
421 /* subprog can use linfo_idx to access its first linfo and
422 * jited_linfo.
423 * main prog always has linfo_idx == 0
424 */
425 u32 linfo_idx;
Alexei Starovoitov492ecee2019-02-25 14:28:39 -0800426 struct bpf_prog_stats __percpu *stats;
Alexei Starovoitovabf2e7d2015-05-28 19:26:02 -0700427 union {
428 struct work_struct work;
429 struct rcu_head rcu;
430 };
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700431};
432
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -0700433struct bpf_array {
434 struct bpf_map map;
435 u32 elem_size;
Alexei Starovoitovb2157392018-01-07 17:33:02 -0800436 u32 index_mask;
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -0700437 /* 'ownership' of prog_array is claimed by the first program that
438 * is going to use this map or by the first program which FD is stored
439 * in the map to make sure that all callers and callees have the same
440 * prog_type and JITed flag
441 */
442 enum bpf_prog_type owner_prog_type;
443 bool owner_jited;
444 union {
445 char value[0] __aligned(8);
Wang Nan2a36f0b2015-08-06 07:02:33 +0000446 void *ptrs[0] __aligned(8);
Alexei Starovoitova10423b2016-02-01 22:39:54 -0800447 void __percpu *pptrs[0] __aligned(8);
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -0700448 };
449};
Daniel Borkmann3b1efb12016-06-15 22:47:14 +0200450
Alexei Starovoitovc04c0d22019-04-01 21:27:45 -0700451#define BPF_COMPLEXITY_LIMIT_INSNS 1000000 /* yes. 1M insns */
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -0700452#define MAX_TAIL_CALL_CNT 32
453
Daniel Borkmann591fe982019-04-09 23:20:05 +0200454#define BPF_F_ACCESS_MASK (BPF_F_RDONLY | \
455 BPF_F_RDONLY_PROG | \
456 BPF_F_WRONLY | \
457 BPF_F_WRONLY_PROG)
458
459#define BPF_MAP_CAN_READ BIT(0)
460#define BPF_MAP_CAN_WRITE BIT(1)
461
462static inline u32 bpf_map_flags_to_cap(struct bpf_map *map)
463{
464 u32 access_flags = map->map_flags & (BPF_F_RDONLY_PROG | BPF_F_WRONLY_PROG);
465
466 /* Combination of BPF_F_RDONLY_PROG | BPF_F_WRONLY_PROG is
467 * not possible.
468 */
469 if (access_flags & BPF_F_RDONLY_PROG)
470 return BPF_MAP_CAN_READ;
471 else if (access_flags & BPF_F_WRONLY_PROG)
472 return BPF_MAP_CAN_WRITE;
473 else
474 return BPF_MAP_CAN_READ | BPF_MAP_CAN_WRITE;
475}
476
477static inline bool bpf_map_flags_access_ok(u32 access_flags)
478{
479 return (access_flags & (BPF_F_RDONLY_PROG | BPF_F_WRONLY_PROG)) !=
480 (BPF_F_RDONLY_PROG | BPF_F_WRONLY_PROG);
481}
482
Daniel Borkmann3b1efb12016-06-15 22:47:14 +0200483struct bpf_event_entry {
484 struct perf_event *event;
485 struct file *perf_file;
486 struct file *map_file;
487 struct rcu_head rcu;
488};
489
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -0700490bool bpf_prog_array_compatible(struct bpf_array *array, const struct bpf_prog *fp);
Daniel Borkmannf1f77142017-01-13 23:38:15 +0100491int bpf_prog_calc_tag(struct bpf_prog *fp);
Alexei Starovoitov9e15db62019-10-15 20:25:00 -0700492const char *kernel_type_name(u32 btf_type_id);
Daniel Borkmannbd570ff2016-04-18 21:01:24 +0200493
Alexei Starovoitov0756ea32015-06-12 19:39:13 -0700494const struct bpf_func_proto *bpf_get_trace_printk_proto(void);
Daniel Borkmann555c8a82016-07-14 18:08:05 +0200495
496typedef unsigned long (*bpf_ctx_copy_t)(void *dst, const void *src,
Daniel Borkmannaa7145c2016-07-22 01:19:42 +0200497 unsigned long off, unsigned long len);
Joe Stringerc64b7982018-10-02 13:35:33 -0700498typedef u32 (*bpf_convert_ctx_access_t)(enum bpf_access_type type,
499 const struct bpf_insn *src,
500 struct bpf_insn *dst,
501 struct bpf_prog *prog,
502 u32 *target_size);
Daniel Borkmann555c8a82016-07-14 18:08:05 +0200503
504u64 bpf_event_output(struct bpf_map *map, u64 flags, void *meta, u64 meta_size,
505 void *ctx, u64 ctx_size, bpf_ctx_copy_t ctx_copy);
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -0700506
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -0700507/* an array of programs to be executed under rcu_lock.
508 *
509 * Typical usage:
510 * ret = BPF_PROG_RUN_ARRAY(&bpf_prog_array, ctx, BPF_PROG_RUN);
511 *
512 * the structure returned by bpf_prog_array_alloc() should be populated
513 * with program pointers and the last pointer must be NULL.
514 * The user has to keep refcnt on the program and make sure the program
515 * is removed from the array before bpf_prog_put().
516 * The 'struct bpf_prog_array *' should only be replaced with xchg()
517 * since other cpus are walking the array of pointers in parallel.
518 */
Roman Gushchin394e40a2018-08-02 14:27:21 -0700519struct bpf_prog_array_item {
520 struct bpf_prog *prog;
Roman Gushchin8bad74f2018-09-28 14:45:36 +0000521 struct bpf_cgroup_storage *cgroup_storage[MAX_BPF_CGROUP_STORAGE_TYPE];
Roman Gushchin394e40a2018-08-02 14:27:21 -0700522};
523
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -0700524struct bpf_prog_array {
525 struct rcu_head rcu;
Roman Gushchin394e40a2018-08-02 14:27:21 -0700526 struct bpf_prog_array_item items[0];
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -0700527};
528
Roman Gushchind29ab6e2018-07-13 12:41:10 -0700529struct bpf_prog_array *bpf_prog_array_alloc(u32 prog_cnt, gfp_t flags);
Stanislav Fomichev54e9c9d2019-05-28 14:14:41 -0700530void bpf_prog_array_free(struct bpf_prog_array *progs);
531int bpf_prog_array_length(struct bpf_prog_array *progs);
Stanislav Fomichev0d01da62019-06-27 13:38:47 -0700532bool bpf_prog_array_is_empty(struct bpf_prog_array *array);
Stanislav Fomichev54e9c9d2019-05-28 14:14:41 -0700533int bpf_prog_array_copy_to_user(struct bpf_prog_array *progs,
Alexei Starovoitov468e2f62017-10-02 22:50:22 -0700534 __u32 __user *prog_ids, u32 cnt);
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -0700535
Stanislav Fomichev54e9c9d2019-05-28 14:14:41 -0700536void bpf_prog_array_delete_safe(struct bpf_prog_array *progs,
Yonghong Songe87c6bc382017-10-23 23:53:08 -0700537 struct bpf_prog *old_prog);
Stanislav Fomichev54e9c9d2019-05-28 14:14:41 -0700538int bpf_prog_array_copy_info(struct bpf_prog_array *array,
Yonghong Song3a38bb92018-04-10 09:37:32 -0700539 u32 *prog_ids, u32 request_cnt,
540 u32 *prog_cnt);
Stanislav Fomichev54e9c9d2019-05-28 14:14:41 -0700541int bpf_prog_array_copy(struct bpf_prog_array *old_array,
Yonghong Songe87c6bc382017-10-23 23:53:08 -0700542 struct bpf_prog *exclude_prog,
543 struct bpf_prog *include_prog,
544 struct bpf_prog_array **new_array);
545
546#define __BPF_PROG_RUN_ARRAY(array, ctx, func, check_non_null) \
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -0700547 ({ \
Roman Gushchin394e40a2018-08-02 14:27:21 -0700548 struct bpf_prog_array_item *_item; \
549 struct bpf_prog *_prog; \
Yonghong Songe87c6bc382017-10-23 23:53:08 -0700550 struct bpf_prog_array *_array; \
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -0700551 u32 _ret = 1; \
Roman Gushchin6899b322018-04-23 18:09:21 +0100552 preempt_disable(); \
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -0700553 rcu_read_lock(); \
Yonghong Songe87c6bc382017-10-23 23:53:08 -0700554 _array = rcu_dereference(array); \
555 if (unlikely(check_non_null && !_array))\
556 goto _out; \
Roman Gushchin394e40a2018-08-02 14:27:21 -0700557 _item = &_array->items[0]; \
558 while ((_prog = READ_ONCE(_item->prog))) { \
559 bpf_cgroup_storage_set(_item->cgroup_storage); \
560 _ret &= func(_prog, ctx); \
561 _item++; \
Yonghong Songe87c6bc382017-10-23 23:53:08 -0700562 } \
563_out: \
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -0700564 rcu_read_unlock(); \
Peter Zijlstra0edd6b62019-04-23 21:55:59 +0200565 preempt_enable(); \
Alexei Starovoitov324bda9e62017-10-02 22:50:21 -0700566 _ret; \
567 })
568
brakmo1f52f6c2019-05-28 16:59:35 -0700569/* To be used by __cgroup_bpf_run_filter_skb for EGRESS BPF progs
570 * so BPF programs can request cwr for TCP packets.
571 *
572 * Current cgroup skb programs can only return 0 or 1 (0 to drop the
573 * packet. This macro changes the behavior so the low order bit
574 * indicates whether the packet should be dropped (0) or not (1)
575 * and the next bit is a congestion notification bit. This could be
576 * used by TCP to call tcp_enter_cwr()
577 *
578 * Hence, new allowed return values of CGROUP EGRESS BPF programs are:
579 * 0: drop packet
580 * 1: keep packet
581 * 2: drop packet and cn
582 * 3: keep packet and cn
583 *
584 * This macro then converts it to one of the NET_XMIT or an error
585 * code that is then interpreted as drop packet (and no cn):
586 * 0: NET_XMIT_SUCCESS skb should be transmitted
587 * 1: NET_XMIT_DROP skb should be dropped and cn
588 * 2: NET_XMIT_CN skb should be transmitted and cn
589 * 3: -EPERM skb should be dropped
590 */
591#define BPF_PROG_CGROUP_INET_EGRESS_RUN_ARRAY(array, ctx, func) \
592 ({ \
593 struct bpf_prog_array_item *_item; \
594 struct bpf_prog *_prog; \
595 struct bpf_prog_array *_array; \
596 u32 ret; \
597 u32 _ret = 1; \
598 u32 _cn = 0; \
599 preempt_disable(); \
600 rcu_read_lock(); \
601 _array = rcu_dereference(array); \
602 _item = &_array->items[0]; \
603 while ((_prog = READ_ONCE(_item->prog))) { \
604 bpf_cgroup_storage_set(_item->cgroup_storage); \
605 ret = func(_prog, ctx); \
606 _ret &= (ret & 1); \
607 _cn |= (ret & 2); \
608 _item++; \
609 } \
610 rcu_read_unlock(); \
611 preempt_enable(); \
612 if (_ret) \
613 _ret = (_cn ? NET_XMIT_CN : NET_XMIT_SUCCESS); \
614 else \
615 _ret = (_cn ? NET_XMIT_DROP : -EPERM); \
616 _ret; \
617 })
618
Yonghong Songe87c6bc382017-10-23 23:53:08 -0700619#define BPF_PROG_RUN_ARRAY(array, ctx, func) \
620 __BPF_PROG_RUN_ARRAY(array, ctx, func, false)
621
622#define BPF_PROG_RUN_ARRAY_CHECK(array, ctx, func) \
623 __BPF_PROG_RUN_ARRAY(array, ctx, func, true)
624
Alexei Starovoitov89aa0752014-12-01 15:06:35 -0800625#ifdef CONFIG_BPF_SYSCALL
Alexei Starovoitovb121d1e2016-03-07 21:57:13 -0800626DECLARE_PER_CPU(int, bpf_prog_active);
627
Chenbo Fengf66e4482017-10-18 13:00:26 -0700628extern const struct file_operations bpf_map_fops;
629extern const struct file_operations bpf_prog_fops;
630
Jakub Kicinski7de16e32017-10-16 16:40:53 -0700631#define BPF_PROG_TYPE(_id, _name) \
632 extern const struct bpf_prog_ops _name ## _prog_ops; \
633 extern const struct bpf_verifier_ops _name ## _verifier_ops;
Johannes Berg40077e02017-04-11 15:34:58 +0200634#define BPF_MAP_TYPE(_id, _ops) \
635 extern const struct bpf_map_ops _ops;
Johannes Bergbe9370a2017-04-11 15:34:57 +0200636#include <linux/bpf_types.h>
637#undef BPF_PROG_TYPE
Johannes Berg40077e02017-04-11 15:34:58 +0200638#undef BPF_MAP_TYPE
Daniel Borkmann0fc174d2015-03-01 12:31:44 +0100639
Jakub Kicinskiab3f0062017-11-03 13:56:17 -0700640extern const struct bpf_prog_ops bpf_offload_prog_ops;
Jakub Kicinski4f9218a2017-10-16 16:40:55 -0700641extern const struct bpf_verifier_ops tc_cls_act_analyzer_ops;
642extern const struct bpf_verifier_ops xdp_analyzer_ops;
643
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700644struct bpf_prog *bpf_prog_get(u32 ufd);
Jakub Kicinski248f3462017-11-03 13:56:20 -0700645struct bpf_prog *bpf_prog_get_type_dev(u32 ufd, enum bpf_prog_type type,
Jakub Kicinski288b3de52017-11-20 15:21:54 -0800646 bool attach_drv);
Daniel Borkmann6d67942dd2016-11-19 01:45:03 +0100647struct bpf_prog * __must_check bpf_prog_add(struct bpf_prog *prog, int i);
Daniel Borkmannc5405942016-11-09 22:02:34 +0100648void bpf_prog_sub(struct bpf_prog *prog, int i);
Daniel Borkmann6d67942dd2016-11-19 01:45:03 +0100649struct bpf_prog * __must_check bpf_prog_inc(struct bpf_prog *prog);
John Fastabenda6f6df62017-08-15 22:32:22 -0700650struct bpf_prog * __must_check bpf_prog_inc_not_zero(struct bpf_prog *prog);
Daniel Borkmann61e021f32015-03-02 15:21:55 +0100651void bpf_prog_put(struct bpf_prog *prog);
Daniel Borkmann5ccb0712016-12-18 01:52:58 +0100652int __bpf_prog_charge(struct user_struct *user, u32 pages);
653void __bpf_prog_uncharge(struct user_struct *user, u32 pages);
Daniel Borkmann61e021f32015-03-02 15:21:55 +0100654
Jakub Kicinskiad8ad792017-12-27 18:39:07 -0800655void bpf_prog_free_id(struct bpf_prog *prog, bool do_idr_lock);
Jakub Kicinskia3884572018-01-11 20:29:09 -0800656void bpf_map_free_id(struct bpf_map *map, bool do_idr_lock);
Jakub Kicinskiad8ad792017-12-27 18:39:07 -0800657
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100658struct bpf_map *bpf_map_get_with_uref(u32 ufd);
Daniel Borkmannc2101292015-10-29 14:58:07 +0100659struct bpf_map *__bpf_map_get(struct fd f);
Daniel Borkmann6d67942dd2016-11-19 01:45:03 +0100660struct bpf_map * __must_check bpf_map_inc(struct bpf_map *map, bool uref);
Stanislav Fomichevb0e4701c2019-08-14 10:37:48 -0700661struct bpf_map * __must_check bpf_map_inc_not_zero(struct bpf_map *map,
662 bool uref);
Daniel Borkmannc9da1612015-11-24 21:28:15 +0100663void bpf_map_put_with_uref(struct bpf_map *map);
Daniel Borkmann61e021f32015-03-02 15:21:55 +0100664void bpf_map_put(struct bpf_map *map);
Roman Gushchin0a4c58f2018-08-02 14:27:17 -0700665int bpf_map_charge_memlock(struct bpf_map *map, u32 pages);
666void bpf_map_uncharge_memlock(struct bpf_map *map, u32 pages);
Roman Gushchinc85d6912019-05-29 18:03:59 -0700667int bpf_map_charge_init(struct bpf_map_memory *mem, size_t size);
Roman Gushchinb936ca62019-05-29 18:03:58 -0700668void bpf_map_charge_finish(struct bpf_map_memory *mem);
669void bpf_map_charge_move(struct bpf_map_memory *dst,
670 struct bpf_map_memory *src);
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700671void *bpf_map_area_alloc(size_t size, int numa_node);
Daniel Borkmannd407bd22017-01-18 15:14:17 +0100672void bpf_map_area_free(void *base);
Jakub Kicinskibd475642018-01-11 20:29:06 -0800673void bpf_map_init_from_attr(struct bpf_map *map, union bpf_attr *attr);
Daniel Borkmann61e021f32015-03-02 15:21:55 +0100674
Alexei Starovoitov1be7f752015-10-07 22:23:21 -0700675extern int sysctl_unprivileged_bpf_disabled;
676
Chenbo Feng6e71b042017-10-18 13:00:22 -0700677int bpf_map_new_fd(struct bpf_map *map, int flags);
Daniel Borkmannb2197752015-10-29 14:58:09 +0100678int bpf_prog_new_fd(struct bpf_prog *prog);
679
680int bpf_obj_pin_user(u32 ufd, const char __user *pathname);
Chenbo Feng6e71b042017-10-18 13:00:22 -0700681int bpf_obj_get_user(const char __user *pathname, int flags);
Daniel Borkmannb2197752015-10-29 14:58:09 +0100682
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800683int bpf_percpu_hash_copy(struct bpf_map *map, void *key, void *value);
684int bpf_percpu_array_copy(struct bpf_map *map, void *key, void *value);
685int bpf_percpu_hash_update(struct bpf_map *map, void *key, void *value,
686 u64 flags);
687int bpf_percpu_array_update(struct bpf_map *map, void *key, void *value,
688 u64 flags);
Daniel Borkmannd056a782016-06-15 22:47:13 +0200689
Alexei Starovoitov557c0c62016-03-07 21:57:17 -0800690int bpf_stackmap_copy(struct bpf_map *map, void *key, void *value);
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800691
Daniel Borkmannd056a782016-06-15 22:47:13 +0200692int bpf_fd_array_map_update_elem(struct bpf_map *map, struct file *map_file,
693 void *key, void *value, u64 map_flags);
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -0700694int bpf_fd_array_map_lookup_elem(struct bpf_map *map, void *key, u32 *value);
Martin KaFai Laubcc6b1b2017-03-22 10:00:34 -0700695int bpf_fd_htab_map_update_elem(struct bpf_map *map, struct file *map_file,
696 void *key, void *value, u64 map_flags);
Martin KaFai Lau14dc6f02017-06-27 23:08:34 -0700697int bpf_fd_htab_map_lookup_elem(struct bpf_map *map, void *key, u32 *value);
Daniel Borkmannd056a782016-06-15 22:47:13 +0200698
Chenbo Feng6e71b042017-10-18 13:00:22 -0700699int bpf_get_file_flag(int flags);
Martin KaFai Laudcab51f2018-05-22 15:03:31 -0700700int bpf_check_uarg_tail_zero(void __user *uaddr, size_t expected_size,
701 size_t actual_size);
Chenbo Feng6e71b042017-10-18 13:00:22 -0700702
Alexei Starovoitov15a07b32016-02-01 22:39:55 -0800703/* memcpy that is used with 8-byte aligned pointers, power-of-8 size and
704 * forced to use 'long' read/writes to try to atomically copy long counters.
705 * Best-effort only. No barriers here, since it _will_ race with concurrent
706 * updates from BPF programs. Called from bpf syscall and mostly used with
707 * size 8 or 16 bytes, so ask compiler to inline it.
708 */
709static inline void bpf_long_memcpy(void *dst, const void *src, u32 size)
710{
711 const long *lsrc = src;
712 long *ldst = dst;
713
714 size /= sizeof(long);
715 while (size--)
716 *ldst++ = *lsrc++;
717}
718
Daniel Borkmann61e021f32015-03-02 15:21:55 +0100719/* verify correctness of eBPF program */
Yonghong Song838e9692018-11-19 15:29:11 -0800720int bpf_check(struct bpf_prog **fp, union bpf_attr *attr,
721 union bpf_attr __user *uattr);
Alexei Starovoitov1ea47e02017-12-14 17:55:13 -0800722void bpf_patch_call_args(struct bpf_insn *insn, u32 stack_depth);
John Fastabend46f55cf2017-07-17 21:56:48 -0700723
724/* Map specifics */
Jesper Dangaard Brouer67f29e02018-05-24 16:45:46 +0200725struct xdp_buff;
Toshiaki Makita6d5fc192018-06-14 11:07:42 +0900726struct sk_buff;
Jesper Dangaard Brouer67f29e02018-05-24 16:45:46 +0200727
728struct bpf_dtab_netdev *__dev_map_lookup_elem(struct bpf_map *map, u32 key);
Toke Høiland-Jørgensen6f9d4512019-07-26 18:06:55 +0200729struct bpf_dtab_netdev *__dev_map_hash_lookup_elem(struct bpf_map *map, u32 key);
John Fastabend46f55cf2017-07-17 21:56:48 -0700730void __dev_map_flush(struct bpf_map *map);
Jesper Dangaard Brouer38edddb2018-05-24 16:45:57 +0200731int dev_map_enqueue(struct bpf_dtab_netdev *dst, struct xdp_buff *xdp,
732 struct net_device *dev_rx);
Toshiaki Makita6d5fc192018-06-14 11:07:42 +0900733int dev_map_generic_redirect(struct bpf_dtab_netdev *dst, struct sk_buff *skb,
734 struct bpf_prog *xdp_prog);
John Fastabend46f55cf2017-07-17 21:56:48 -0700735
Jesper Dangaard Brouer9c270af2017-10-16 12:19:34 +0200736struct bpf_cpu_map_entry *__cpu_map_lookup_elem(struct bpf_map *map, u32 key);
Jesper Dangaard Brouer9c270af2017-10-16 12:19:34 +0200737void __cpu_map_flush(struct bpf_map *map);
Jesper Dangaard Brouer9c270af2017-10-16 12:19:34 +0200738int cpu_map_enqueue(struct bpf_cpu_map_entry *rcpu, struct xdp_buff *xdp,
739 struct net_device *dev_rx);
740
Martin KaFai Lau96eabe72017-08-18 11:28:00 -0700741/* Return map's numa specified by userspace */
742static inline int bpf_map_attr_numa_node(const union bpf_attr *attr)
743{
744 return (attr->map_flags & BPF_F_NUMA_NODE) ?
745 attr->numa_node : NUMA_NO_NODE;
746}
747
Al Viro040ee692017-12-02 20:20:38 -0500748struct bpf_prog *bpf_prog_get_type_path(const char *name, enum bpf_prog_type type);
Martin KaFai Lau5dc4c4b2018-08-08 01:01:24 -0700749int array_map_alloc_check(union bpf_attr *attr);
Al Viro040ee692017-12-02 20:20:38 -0500750
Stanislav Fomichevc6958652019-04-11 09:12:02 -0700751int bpf_prog_test_run_xdp(struct bpf_prog *prog, const union bpf_attr *kattr,
752 union bpf_attr __user *uattr);
753int bpf_prog_test_run_skb(struct bpf_prog *prog, const union bpf_attr *kattr,
754 union bpf_attr __user *uattr);
755int bpf_prog_test_run_flow_dissector(struct bpf_prog *prog,
756 const union bpf_attr *kattr,
757 union bpf_attr __user *uattr);
Alexei Starovoitov9e15db62019-10-15 20:25:00 -0700758bool btf_ctx_access(int off, int size, enum bpf_access_type type,
759 const struct bpf_prog *prog,
760 struct bpf_insn_access_aux *info);
761int btf_struct_access(struct bpf_verifier_log *log,
762 const struct btf_type *t, int off, int size,
763 enum bpf_access_type atype,
764 u32 *next_btf_id);
765
Jesper Dangaard Brouer9c270af2017-10-16 12:19:34 +0200766#else /* !CONFIG_BPF_SYSCALL */
Daniel Borkmann0fc174d2015-03-01 12:31:44 +0100767static inline struct bpf_prog *bpf_prog_get(u32 ufd)
768{
769 return ERR_PTR(-EOPNOTSUPP);
770}
771
Jakub Kicinski248f3462017-11-03 13:56:20 -0700772static inline struct bpf_prog *bpf_prog_get_type_dev(u32 ufd,
773 enum bpf_prog_type type,
Jakub Kicinski288b3de52017-11-20 15:21:54 -0800774 bool attach_drv)
Jakub Kicinski248f3462017-11-03 13:56:20 -0700775{
776 return ERR_PTR(-EOPNOTSUPP);
777}
778
Daniel Borkmann6d67942dd2016-11-19 01:45:03 +0100779static inline struct bpf_prog * __must_check bpf_prog_add(struct bpf_prog *prog,
780 int i)
Brenden Blancocc2e0b32016-07-20 07:55:52 -0700781{
782 return ERR_PTR(-EOPNOTSUPP);
783}
Daniel Borkmann113214b2016-06-30 17:24:44 +0200784
Daniel Borkmannc5405942016-11-09 22:02:34 +0100785static inline void bpf_prog_sub(struct bpf_prog *prog, int i)
786{
787}
788
Daniel Borkmann0fc174d2015-03-01 12:31:44 +0100789static inline void bpf_prog_put(struct bpf_prog *prog)
790{
791}
Daniel Borkmann6d67942dd2016-11-19 01:45:03 +0100792
793static inline struct bpf_prog * __must_check bpf_prog_inc(struct bpf_prog *prog)
Alexei Starovoitovaa6a5f32016-09-01 18:37:24 -0700794{
795 return ERR_PTR(-EOPNOTSUPP);
796}
Daniel Borkmann5ccb0712016-12-18 01:52:58 +0100797
John Fastabenda6f6df62017-08-15 22:32:22 -0700798static inline struct bpf_prog *__must_check
799bpf_prog_inc_not_zero(struct bpf_prog *prog)
800{
801 return ERR_PTR(-EOPNOTSUPP);
802}
803
Daniel Borkmann5ccb0712016-12-18 01:52:58 +0100804static inline int __bpf_prog_charge(struct user_struct *user, u32 pages)
805{
806 return 0;
807}
808
809static inline void __bpf_prog_uncharge(struct user_struct *user, u32 pages)
810{
811}
John Fastabend46f55cf2017-07-17 21:56:48 -0700812
Chenbo Feng6e71b042017-10-18 13:00:22 -0700813static inline int bpf_obj_get_user(const char __user *pathname, int flags)
Shmulik Ladkani98589a02017-10-09 15:27:15 +0300814{
815 return -EOPNOTSUPP;
816}
817
John Fastabend46f55cf2017-07-17 21:56:48 -0700818static inline struct net_device *__dev_map_lookup_elem(struct bpf_map *map,
819 u32 key)
820{
821 return NULL;
822}
823
Toke Høiland-Jørgensen6f9d4512019-07-26 18:06:55 +0200824static inline struct net_device *__dev_map_hash_lookup_elem(struct bpf_map *map,
825 u32 key)
826{
827 return NULL;
828}
829
John Fastabend46f55cf2017-07-17 21:56:48 -0700830static inline void __dev_map_flush(struct bpf_map *map)
831{
832}
Jesper Dangaard Brouer9c270af2017-10-16 12:19:34 +0200833
Jesper Dangaard Brouer67f29e02018-05-24 16:45:46 +0200834struct xdp_buff;
835struct bpf_dtab_netdev;
836
837static inline
Jesper Dangaard Brouer38edddb2018-05-24 16:45:57 +0200838int dev_map_enqueue(struct bpf_dtab_netdev *dst, struct xdp_buff *xdp,
839 struct net_device *dev_rx)
Jesper Dangaard Brouer67f29e02018-05-24 16:45:46 +0200840{
841 return 0;
842}
843
Toshiaki Makita6d5fc192018-06-14 11:07:42 +0900844struct sk_buff;
845
846static inline int dev_map_generic_redirect(struct bpf_dtab_netdev *dst,
847 struct sk_buff *skb,
848 struct bpf_prog *xdp_prog)
849{
850 return 0;
851}
852
Jesper Dangaard Brouer9c270af2017-10-16 12:19:34 +0200853static inline
854struct bpf_cpu_map_entry *__cpu_map_lookup_elem(struct bpf_map *map, u32 key)
855{
856 return NULL;
857}
858
Jesper Dangaard Brouer9c270af2017-10-16 12:19:34 +0200859static inline void __cpu_map_flush(struct bpf_map *map)
860{
861}
862
Jesper Dangaard Brouer9c270af2017-10-16 12:19:34 +0200863static inline int cpu_map_enqueue(struct bpf_cpu_map_entry *rcpu,
864 struct xdp_buff *xdp,
865 struct net_device *dev_rx)
866{
867 return 0;
868}
Al Viro040ee692017-12-02 20:20:38 -0500869
870static inline struct bpf_prog *bpf_prog_get_type_path(const char *name,
871 enum bpf_prog_type type)
872{
873 return ERR_PTR(-EOPNOTSUPP);
874}
Stanislav Fomichevc6958652019-04-11 09:12:02 -0700875
876static inline int bpf_prog_test_run_xdp(struct bpf_prog *prog,
877 const union bpf_attr *kattr,
878 union bpf_attr __user *uattr)
879{
880 return -ENOTSUPP;
881}
882
883static inline int bpf_prog_test_run_skb(struct bpf_prog *prog,
884 const union bpf_attr *kattr,
885 union bpf_attr __user *uattr)
886{
887 return -ENOTSUPP;
888}
889
890static inline int bpf_prog_test_run_flow_dissector(struct bpf_prog *prog,
891 const union bpf_attr *kattr,
892 union bpf_attr __user *uattr)
893{
894 return -ENOTSUPP;
895}
Daniel Borkmann61e021f32015-03-02 15:21:55 +0100896#endif /* CONFIG_BPF_SYSCALL */
Alexei Starovoitov09756af2014-09-26 00:17:00 -0700897
Jakub Kicinski479321e2017-11-20 15:21:56 -0800898static inline struct bpf_prog *bpf_prog_get_type(u32 ufd,
899 enum bpf_prog_type type)
900{
901 return bpf_prog_get_type_dev(ufd, type, false);
902}
903
Al Viro040ee692017-12-02 20:20:38 -0500904bool bpf_prog_get_ok(struct bpf_prog *, enum bpf_prog_type *, bool);
905
Jakub Kicinskiab3f0062017-11-03 13:56:17 -0700906int bpf_prog_offload_compile(struct bpf_prog *prog);
907void bpf_prog_offload_destroy(struct bpf_prog *prog);
Jakub Kicinski675fc272017-12-27 18:39:09 -0800908int bpf_prog_offload_info_fill(struct bpf_prog_info *info,
909 struct bpf_prog *prog);
Jakub Kicinskiab3f0062017-11-03 13:56:17 -0700910
Jakub Kicinski52775b32018-01-17 19:13:28 -0800911int bpf_map_offload_info_fill(struct bpf_map_info *info, struct bpf_map *map);
912
Jakub Kicinskia3884572018-01-11 20:29:09 -0800913int bpf_map_offload_lookup_elem(struct bpf_map *map, void *key, void *value);
914int bpf_map_offload_update_elem(struct bpf_map *map,
915 void *key, void *value, u64 flags);
916int bpf_map_offload_delete_elem(struct bpf_map *map, void *key);
917int bpf_map_offload_get_next_key(struct bpf_map *map,
918 void *key, void *next_key);
919
Jakub Kicinski09728262018-07-17 10:53:23 -0700920bool bpf_offload_prog_map_match(struct bpf_prog *prog, struct bpf_map *map);
Jakub Kicinskia3884572018-01-11 20:29:09 -0800921
Quentin Monnet1385d752018-11-09 13:03:25 +0000922struct bpf_offload_dev *
Jakub Kicinskidd27c2e2019-02-12 00:20:39 -0800923bpf_offload_dev_create(const struct bpf_prog_offload_ops *ops, void *priv);
Jakub Kicinski602144c2018-07-17 10:53:25 -0700924void bpf_offload_dev_destroy(struct bpf_offload_dev *offdev);
Jakub Kicinskidd27c2e2019-02-12 00:20:39 -0800925void *bpf_offload_dev_priv(struct bpf_offload_dev *offdev);
Jakub Kicinski602144c2018-07-17 10:53:25 -0700926int bpf_offload_dev_netdev_register(struct bpf_offload_dev *offdev,
927 struct net_device *netdev);
928void bpf_offload_dev_netdev_unregister(struct bpf_offload_dev *offdev,
929 struct net_device *netdev);
Jakub Kicinskifd4f2272018-07-17 10:53:26 -0700930bool bpf_offload_dev_match(struct bpf_prog *prog, struct net_device *netdev);
Jakub Kicinski9fd7c552018-07-17 10:53:24 -0700931
Jakub Kicinskiab3f0062017-11-03 13:56:17 -0700932#if defined(CONFIG_NET) && defined(CONFIG_BPF_SYSCALL)
933int bpf_prog_offload_init(struct bpf_prog *prog, union bpf_attr *attr);
934
Jakub Kicinski0d830032018-05-08 19:37:06 -0700935static inline bool bpf_prog_is_dev_bound(const struct bpf_prog_aux *aux)
Jakub Kicinskiab3f0062017-11-03 13:56:17 -0700936{
Jakub Kicinski9a18eed2017-12-27 18:39:04 -0800937 return aux->offload_requested;
Jakub Kicinskiab3f0062017-11-03 13:56:17 -0700938}
Jakub Kicinskia3884572018-01-11 20:29:09 -0800939
940static inline bool bpf_map_is_dev_bound(struct bpf_map *map)
941{
942 return unlikely(map->ops == &bpf_map_offload_ops);
943}
944
945struct bpf_map *bpf_map_offload_map_alloc(union bpf_attr *attr);
946void bpf_map_offload_map_free(struct bpf_map *map);
Jakub Kicinskiab3f0062017-11-03 13:56:17 -0700947#else
948static inline int bpf_prog_offload_init(struct bpf_prog *prog,
949 union bpf_attr *attr)
950{
951 return -EOPNOTSUPP;
952}
953
954static inline bool bpf_prog_is_dev_bound(struct bpf_prog_aux *aux)
955{
956 return false;
957}
Jakub Kicinskia3884572018-01-11 20:29:09 -0800958
959static inline bool bpf_map_is_dev_bound(struct bpf_map *map)
960{
961 return false;
962}
963
964static inline struct bpf_map *bpf_map_offload_map_alloc(union bpf_attr *attr)
965{
966 return ERR_PTR(-EOPNOTSUPP);
967}
968
969static inline void bpf_map_offload_map_free(struct bpf_map *map)
970{
971}
Jakub Kicinskiab3f0062017-11-03 13:56:17 -0700972#endif /* CONFIG_NET && CONFIG_BPF_SYSCALL */
973
Daniel Borkmann604326b2018-10-13 02:45:58 +0200974#if defined(CONFIG_BPF_STREAM_PARSER)
975int sock_map_prog_update(struct bpf_map *map, struct bpf_prog *prog, u32 which);
976int sock_map_get_from_fd(const union bpf_attr *attr, struct bpf_prog *prog);
John Fastabend6bdc9c42017-08-16 15:02:32 -0700977#else
Daniel Borkmann604326b2018-10-13 02:45:58 +0200978static inline int sock_map_prog_update(struct bpf_map *map,
979 struct bpf_prog *prog, u32 which)
John Fastabend464bc0f2017-08-28 07:10:04 -0700980{
981 return -EOPNOTSUPP;
982}
Sean Youngfdb5c452018-06-19 00:04:24 +0100983
Daniel Borkmann604326b2018-10-13 02:45:58 +0200984static inline int sock_map_get_from_fd(const union bpf_attr *attr,
985 struct bpf_prog *prog)
Sean Youngfdb5c452018-06-19 00:04:24 +0100986{
987 return -EINVAL;
988}
John Fastabend6bdc9c42017-08-16 15:02:32 -0700989#endif
990
Björn Töpelfbfc504a2018-05-02 13:01:28 +0200991#if defined(CONFIG_XDP_SOCKETS)
992struct xdp_sock;
993struct xdp_sock *__xsk_map_lookup_elem(struct bpf_map *map, u32 key);
994int __xsk_map_redirect(struct bpf_map *map, struct xdp_buff *xdp,
995 struct xdp_sock *xs);
996void __xsk_map_flush(struct bpf_map *map);
997#else
998struct xdp_sock;
999static inline struct xdp_sock *__xsk_map_lookup_elem(struct bpf_map *map,
1000 u32 key)
1001{
1002 return NULL;
1003}
1004
1005static inline int __xsk_map_redirect(struct bpf_map *map, struct xdp_buff *xdp,
1006 struct xdp_sock *xs)
1007{
1008 return -EOPNOTSUPP;
1009}
1010
1011static inline void __xsk_map_flush(struct bpf_map *map)
1012{
1013}
1014#endif
1015
Martin KaFai Lau5dc4c4b2018-08-08 01:01:24 -07001016#if defined(CONFIG_INET) && defined(CONFIG_BPF_SYSCALL)
1017void bpf_sk_reuseport_detach(struct sock *sk);
1018int bpf_fd_reuseport_array_lookup_elem(struct bpf_map *map, void *key,
1019 void *value);
1020int bpf_fd_reuseport_array_update_elem(struct bpf_map *map, void *key,
1021 void *value, u64 map_flags);
1022#else
1023static inline void bpf_sk_reuseport_detach(struct sock *sk)
1024{
1025}
1026
1027#ifdef CONFIG_BPF_SYSCALL
1028static inline int bpf_fd_reuseport_array_lookup_elem(struct bpf_map *map,
1029 void *key, void *value)
1030{
1031 return -EOPNOTSUPP;
1032}
1033
1034static inline int bpf_fd_reuseport_array_update_elem(struct bpf_map *map,
1035 void *key, void *value,
1036 u64 map_flags)
1037{
1038 return -EOPNOTSUPP;
1039}
1040#endif /* CONFIG_BPF_SYSCALL */
1041#endif /* defined(CONFIG_INET) && defined(CONFIG_BPF_SYSCALL) */
1042
Alexei Starovoitovd0003ec2014-11-13 17:36:49 -08001043/* verifier prototypes for helper functions called from eBPF programs */
Daniel Borkmanna2c83ff2015-03-01 12:31:42 +01001044extern const struct bpf_func_proto bpf_map_lookup_elem_proto;
1045extern const struct bpf_func_proto bpf_map_update_elem_proto;
1046extern const struct bpf_func_proto bpf_map_delete_elem_proto;
Mauricio Vasquez Bf1a2e442018-10-18 15:16:25 +02001047extern const struct bpf_func_proto bpf_map_push_elem_proto;
1048extern const struct bpf_func_proto bpf_map_pop_elem_proto;
1049extern const struct bpf_func_proto bpf_map_peek_elem_proto;
Alexei Starovoitovd0003ec2014-11-13 17:36:49 -08001050
Daniel Borkmann03e69b52015-03-14 02:27:16 +01001051extern const struct bpf_func_proto bpf_get_prandom_u32_proto;
Daniel Borkmannc04167c2015-03-14 02:27:17 +01001052extern const struct bpf_func_proto bpf_get_smp_processor_id_proto;
Daniel Borkmann2d0e30c2016-10-21 12:46:33 +02001053extern const struct bpf_func_proto bpf_get_numa_node_id_proto;
Alexei Starovoitov04fd61ab2015-05-19 16:59:03 -07001054extern const struct bpf_func_proto bpf_tail_call_proto;
Daniel Borkmann17ca8cb2015-05-29 23:23:06 +02001055extern const struct bpf_func_proto bpf_ktime_get_ns_proto;
Alexei Starovoitovffeedaf2015-06-12 19:39:12 -07001056extern const struct bpf_func_proto bpf_get_current_pid_tgid_proto;
1057extern const struct bpf_func_proto bpf_get_current_uid_gid_proto;
1058extern const struct bpf_func_proto bpf_get_current_comm_proto;
Alexei Starovoitovd5a3b1f2016-02-17 19:58:58 -08001059extern const struct bpf_func_proto bpf_get_stackid_proto;
Yonghong Songc195651e2018-04-28 22:28:08 -07001060extern const struct bpf_func_proto bpf_get_stack_proto;
John Fastabend174a79f2017-08-15 22:32:47 -07001061extern const struct bpf_func_proto bpf_sock_map_update_proto;
John Fastabend81110382018-05-14 10:00:17 -07001062extern const struct bpf_func_proto bpf_sock_hash_update_proto;
Yonghong Songbf6fa2c82018-06-03 15:59:41 -07001063extern const struct bpf_func_proto bpf_get_current_cgroup_id_proto;
Daniel Borkmann604326b2018-10-13 02:45:58 +02001064extern const struct bpf_func_proto bpf_msg_redirect_hash_proto;
1065extern const struct bpf_func_proto bpf_msg_redirect_map_proto;
1066extern const struct bpf_func_proto bpf_sk_redirect_hash_proto;
1067extern const struct bpf_func_proto bpf_sk_redirect_map_proto;
Alexei Starovoitovd83525c2019-01-31 15:40:04 -08001068extern const struct bpf_func_proto bpf_spin_lock_proto;
1069extern const struct bpf_func_proto bpf_spin_unlock_proto;
Roman Gushchincd339432018-08-02 14:27:24 -07001070extern const struct bpf_func_proto bpf_get_local_storage_proto;
Andrey Ignatovd7a4cb92019-03-18 17:55:26 -07001071extern const struct bpf_func_proto bpf_strtol_proto;
1072extern const struct bpf_func_proto bpf_strtoul_proto;
Stanislav Fomichev0d01da62019-06-27 13:38:47 -07001073extern const struct bpf_func_proto bpf_tcp_sock_proto;
Roman Gushchincd339432018-08-02 14:27:24 -07001074
Daniel Borkmann3ad00402015-10-08 01:20:39 +02001075/* Shared helpers among cBPF and eBPF. */
1076void bpf_user_rnd_init_once(void);
1077u64 bpf_user_rnd_u32(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5);
1078
Joe Stringerc64b7982018-10-02 13:35:33 -07001079#if defined(CONFIG_NET)
Martin KaFai Lau46f8bc92019-02-09 23:22:20 -08001080bool bpf_sock_common_is_valid_access(int off, int size,
1081 enum bpf_access_type type,
1082 struct bpf_insn_access_aux *info);
Joe Stringerc64b7982018-10-02 13:35:33 -07001083bool bpf_sock_is_valid_access(int off, int size, enum bpf_access_type type,
1084 struct bpf_insn_access_aux *info);
1085u32 bpf_sock_convert_ctx_access(enum bpf_access_type type,
1086 const struct bpf_insn *si,
1087 struct bpf_insn *insn_buf,
1088 struct bpf_prog *prog,
1089 u32 *target_size);
1090#else
Martin KaFai Lau46f8bc92019-02-09 23:22:20 -08001091static inline bool bpf_sock_common_is_valid_access(int off, int size,
1092 enum bpf_access_type type,
1093 struct bpf_insn_access_aux *info)
1094{
1095 return false;
1096}
Joe Stringerc64b7982018-10-02 13:35:33 -07001097static inline bool bpf_sock_is_valid_access(int off, int size,
1098 enum bpf_access_type type,
1099 struct bpf_insn_access_aux *info)
1100{
1101 return false;
1102}
1103static inline u32 bpf_sock_convert_ctx_access(enum bpf_access_type type,
1104 const struct bpf_insn *si,
1105 struct bpf_insn *insn_buf,
1106 struct bpf_prog *prog,
1107 u32 *target_size)
1108{
1109 return 0;
1110}
1111#endif
1112
Martin KaFai Lau655a51e2019-02-09 23:22:24 -08001113#ifdef CONFIG_INET
1114bool bpf_tcp_sock_is_valid_access(int off, int size, enum bpf_access_type type,
1115 struct bpf_insn_access_aux *info);
1116
1117u32 bpf_tcp_sock_convert_ctx_access(enum bpf_access_type type,
1118 const struct bpf_insn *si,
1119 struct bpf_insn *insn_buf,
1120 struct bpf_prog *prog,
1121 u32 *target_size);
YueHaibing7f942082019-06-12 17:18:47 +08001122
1123bool bpf_xdp_sock_is_valid_access(int off, int size, enum bpf_access_type type,
1124 struct bpf_insn_access_aux *info);
1125
1126u32 bpf_xdp_sock_convert_ctx_access(enum bpf_access_type type,
1127 const struct bpf_insn *si,
1128 struct bpf_insn *insn_buf,
1129 struct bpf_prog *prog,
1130 u32 *target_size);
Martin KaFai Lau655a51e2019-02-09 23:22:24 -08001131#else
1132static inline bool bpf_tcp_sock_is_valid_access(int off, int size,
1133 enum bpf_access_type type,
1134 struct bpf_insn_access_aux *info)
1135{
1136 return false;
1137}
1138
1139static inline u32 bpf_tcp_sock_convert_ctx_access(enum bpf_access_type type,
1140 const struct bpf_insn *si,
1141 struct bpf_insn *insn_buf,
1142 struct bpf_prog *prog,
1143 u32 *target_size)
1144{
1145 return 0;
1146}
YueHaibing7f942082019-06-12 17:18:47 +08001147static inline bool bpf_xdp_sock_is_valid_access(int off, int size,
1148 enum bpf_access_type type,
1149 struct bpf_insn_access_aux *info)
1150{
1151 return false;
1152}
1153
1154static inline u32 bpf_xdp_sock_convert_ctx_access(enum bpf_access_type type,
1155 const struct bpf_insn *si,
1156 struct bpf_insn *insn_buf,
1157 struct bpf_prog *prog,
1158 u32 *target_size)
1159{
1160 return 0;
1161}
Martin KaFai Lau655a51e2019-02-09 23:22:24 -08001162#endif /* CONFIG_INET */
1163
Alexei Starovoitov99c55f72014-09-26 00:16:57 -07001164#endif /* _LINUX_BPF_H */