selftests/bpf: Test file_pos field in bpf_sysctl ctx
[linux-2.6-block.git] / include / linux / bpf.h
CommitLineData
99c55f7d
AS
1/* Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com
2 *
3 * This program is free software; you can redistribute it and/or
4 * modify it under the terms of version 2 of the GNU General Public
5 * License as published by the Free Software Foundation.
6 */
7#ifndef _LINUX_BPF_H
8#define _LINUX_BPF_H 1
9
10#include <uapi/linux/bpf.h>
74451e66 11
99c55f7d 12#include <linux/workqueue.h>
db20fd2b 13#include <linux/file.h>
b121d1e7 14#include <linux/percpu.h>
002245cc 15#include <linux/err.h>
74451e66 16#include <linux/rbtree_latch.h>
d6e1e46f 17#include <linux/numa.h>
ab3f0063 18#include <linux/wait.h>
492ecee8 19#include <linux/u64_stats_sync.h>
99c55f7d 20
cae1927c 21struct bpf_verifier_env;
3b1efb19 22struct perf_event;
174a79ff 23struct bpf_prog;
99c55f7d 24struct bpf_map;
4f738adb 25struct sock;
a26ca7c9 26struct seq_file;
1b2b234b 27struct btf;
e8d2bec0 28struct btf_type;
99c55f7d
AS
29
30/* map is generic key/value storage optionally accesible by eBPF programs */
31struct bpf_map_ops {
32 /* funcs callable from userspace (via syscall) */
1110f3a9 33 int (*map_alloc_check)(union bpf_attr *attr);
99c55f7d 34 struct bpf_map *(*map_alloc)(union bpf_attr *attr);
61d1b6a4
DB
35 void (*map_release)(struct bpf_map *map, struct file *map_file);
36 void (*map_free)(struct bpf_map *map);
db20fd2b 37 int (*map_get_next_key)(struct bpf_map *map, void *key, void *next_key);
ba6b8de4 38 void (*map_release_uref)(struct bpf_map *map);
db20fd2b
AS
39
40 /* funcs callable from userspace and from eBPF programs */
41 void *(*map_lookup_elem)(struct bpf_map *map, void *key);
3274f520 42 int (*map_update_elem)(struct bpf_map *map, void *key, void *value, u64 flags);
db20fd2b 43 int (*map_delete_elem)(struct bpf_map *map, void *key);
f1a2e44a
MV
44 int (*map_push_elem)(struct bpf_map *map, void *value, u64 flags);
45 int (*map_pop_elem)(struct bpf_map *map, void *value);
46 int (*map_peek_elem)(struct bpf_map *map, void *value);
2a36f0b9
WN
47
48 /* funcs called by prog_array and perf_event_array map */
d056a788
DB
49 void *(*map_fd_get_ptr)(struct bpf_map *map, struct file *map_file,
50 int fd);
51 void (*map_fd_put_ptr)(void *ptr);
81ed18ab 52 u32 (*map_gen_lookup)(struct bpf_map *map, struct bpf_insn *insn_buf);
14dc6f04 53 u32 (*map_fd_sys_lookup_elem)(void *ptr);
a26ca7c9
MKL
54 void (*map_seq_show_elem)(struct bpf_map *map, void *key,
55 struct seq_file *m);
e8d2bec0 56 int (*map_check_btf)(const struct bpf_map *map,
1b2b234b 57 const struct btf *btf,
e8d2bec0
DB
58 const struct btf_type *key_type,
59 const struct btf_type *value_type);
d8eca5bb
DB
60
61 /* Direct value access helpers. */
62 int (*map_direct_value_addr)(const struct bpf_map *map,
63 u64 *imm, u32 off);
64 int (*map_direct_value_meta)(const struct bpf_map *map,
65 u64 imm, u32 *off);
99c55f7d
AS
66};
67
68struct bpf_map {
a26ca7c9 69 /* The first two cachelines with read-mostly members of which some
be95a845
DB
70 * are also accessed in fast-path (e.g. ops, max_entries).
71 */
72 const struct bpf_map_ops *ops ____cacheline_aligned;
73 struct bpf_map *inner_map_meta;
74#ifdef CONFIG_SECURITY
75 void *security;
76#endif
99c55f7d
AS
77 enum bpf_map_type map_type;
78 u32 key_size;
79 u32 value_size;
80 u32 max_entries;
6c905981 81 u32 map_flags;
d83525ca 82 int spin_lock_off; /* >=0 valid offset, <0 error */
f3f1c054 83 u32 id;
96eabe7a 84 int numa_node;
9b2cf328
MKL
85 u32 btf_key_type_id;
86 u32 btf_value_type_id;
a26ca7c9 87 struct btf *btf;
d83525ca 88 u32 pages;
b2157399 89 bool unpriv_array;
87df15de
DB
90 bool frozen; /* write-once */
91 /* 48 bytes hole */
be95a845 92
a26ca7c9 93 /* The 3rd and 4th cacheline with misc members to avoid false sharing
be95a845
DB
94 * particularly with refcounting.
95 */
96 struct user_struct *user ____cacheline_aligned;
97 atomic_t refcnt;
c9da161c 98 atomic_t usercnt;
be95a845 99 struct work_struct work;
067cae47 100 char name[BPF_OBJ_NAME_LEN];
99c55f7d
AS
101};
102
d83525ca
AS
103static inline bool map_value_has_spin_lock(const struct bpf_map *map)
104{
105 return map->spin_lock_off >= 0;
106}
107
108static inline void check_and_init_map_lock(struct bpf_map *map, void *dst)
109{
110 if (likely(!map_value_has_spin_lock(map)))
111 return;
112 *(struct bpf_spin_lock *)(dst + map->spin_lock_off) =
113 (struct bpf_spin_lock){};
114}
115
116/* copy everything but bpf_spin_lock */
117static inline void copy_map_value(struct bpf_map *map, void *dst, void *src)
118{
119 if (unlikely(map_value_has_spin_lock(map))) {
120 u32 off = map->spin_lock_off;
121
122 memcpy(dst, src, off);
123 memcpy(dst + off + sizeof(struct bpf_spin_lock),
124 src + off + sizeof(struct bpf_spin_lock),
125 map->value_size - off - sizeof(struct bpf_spin_lock));
126 } else {
127 memcpy(dst, src, map->value_size);
128 }
129}
96049f3a
AS
130void copy_map_value_locked(struct bpf_map *map, void *dst, void *src,
131 bool lock_src);
d83525ca 132
602144c2 133struct bpf_offload_dev;
a3884572
JK
134struct bpf_offloaded_map;
135
136struct bpf_map_dev_ops {
137 int (*map_get_next_key)(struct bpf_offloaded_map *map,
138 void *key, void *next_key);
139 int (*map_lookup_elem)(struct bpf_offloaded_map *map,
140 void *key, void *value);
141 int (*map_update_elem)(struct bpf_offloaded_map *map,
142 void *key, void *value, u64 flags);
143 int (*map_delete_elem)(struct bpf_offloaded_map *map, void *key);
144};
145
146struct bpf_offloaded_map {
147 struct bpf_map map;
148 struct net_device *netdev;
149 const struct bpf_map_dev_ops *dev_ops;
150 void *dev_priv;
151 struct list_head offloads;
152};
153
154static inline struct bpf_offloaded_map *map_to_offmap(struct bpf_map *map)
155{
156 return container_of(map, struct bpf_offloaded_map, map);
157}
158
0cd3cbed
JK
159static inline bool bpf_map_offload_neutral(const struct bpf_map *map)
160{
161 return map->map_type == BPF_MAP_TYPE_PERF_EVENT_ARRAY;
162}
163
a26ca7c9
MKL
164static inline bool bpf_map_support_seq_show(const struct bpf_map *map)
165{
e8d2bec0 166 return map->btf && map->ops->map_seq_show_elem;
a26ca7c9
MKL
167}
168
e8d2bec0 169int map_check_no_btf(const struct bpf_map *map,
1b2b234b 170 const struct btf *btf,
e8d2bec0
DB
171 const struct btf_type *key_type,
172 const struct btf_type *value_type);
173
a3884572
JK
174extern const struct bpf_map_ops bpf_map_offload_ops;
175
17a52670
AS
176/* function argument constraints */
177enum bpf_arg_type {
80f1d68c 178 ARG_DONTCARE = 0, /* unused argument in helper function */
17a52670
AS
179
180 /* the following constraints used to prototype
181 * bpf_map_lookup/update/delete_elem() functions
182 */
183 ARG_CONST_MAP_PTR, /* const argument used as pointer to bpf_map */
184 ARG_PTR_TO_MAP_KEY, /* pointer to stack used as map key */
185 ARG_PTR_TO_MAP_VALUE, /* pointer to stack used as map value */
2ea864c5 186 ARG_PTR_TO_UNINIT_MAP_VALUE, /* pointer to valid memory used to store a map value */
17a52670
AS
187
188 /* the following constraints used to prototype bpf_memcmp() and other
189 * functions that access data on eBPF program stack
190 */
39f19ebb 191 ARG_PTR_TO_MEM, /* pointer to valid memory (stack, packet, map value) */
db1ac496 192 ARG_PTR_TO_MEM_OR_NULL, /* pointer to valid memory or NULL */
39f19ebb
AS
193 ARG_PTR_TO_UNINIT_MEM, /* pointer to memory does not need to be initialized,
194 * helper function must fill all bytes or clear
195 * them in error case.
435faee1
DB
196 */
197
39f19ebb
AS
198 ARG_CONST_SIZE, /* number of bytes accessed from memory */
199 ARG_CONST_SIZE_OR_ZERO, /* number of bytes accessed from memory or 0 */
80f1d68c 200
608cd71a 201 ARG_PTR_TO_CTX, /* pointer to context */
80f1d68c 202 ARG_ANYTHING, /* any (initialized) argument is ok */
d83525ca 203 ARG_PTR_TO_SPIN_LOCK, /* pointer to bpf_spin_lock */
46f8bc92 204 ARG_PTR_TO_SOCK_COMMON, /* pointer to sock_common */
17a52670
AS
205};
206
207/* type of values returned from helper functions */
208enum bpf_return_type {
209 RET_INTEGER, /* function returns integer */
210 RET_VOID, /* function doesn't return anything */
3e6a4b3e 211 RET_PTR_TO_MAP_VALUE, /* returns a pointer to map elem value */
17a52670 212 RET_PTR_TO_MAP_VALUE_OR_NULL, /* returns a pointer to map elem value or NULL */
c64b7983 213 RET_PTR_TO_SOCKET_OR_NULL, /* returns a pointer to a socket or NULL */
655a51e5 214 RET_PTR_TO_TCP_SOCK_OR_NULL, /* returns a pointer to a tcp_sock or NULL */
85a51f8c 215 RET_PTR_TO_SOCK_COMMON_OR_NULL, /* returns a pointer to a sock_common or NULL */
17a52670
AS
216};
217
09756af4
AS
218/* eBPF function prototype used by verifier to allow BPF_CALLs from eBPF programs
219 * to in-kernel helper functions and for adjusting imm32 field in BPF_CALL
220 * instructions after verifying
221 */
222struct bpf_func_proto {
223 u64 (*func)(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5);
224 bool gpl_only;
36bbef52 225 bool pkt_access;
17a52670
AS
226 enum bpf_return_type ret_type;
227 enum bpf_arg_type arg1_type;
228 enum bpf_arg_type arg2_type;
229 enum bpf_arg_type arg3_type;
230 enum bpf_arg_type arg4_type;
231 enum bpf_arg_type arg5_type;
232};
233
234/* bpf_context is intentionally undefined structure. Pointer to bpf_context is
235 * the first argument to eBPF programs.
236 * For socket filters: 'struct bpf_context *' == 'struct sk_buff *'
237 */
238struct bpf_context;
239
240enum bpf_access_type {
241 BPF_READ = 1,
242 BPF_WRITE = 2
09756af4
AS
243};
244
19de99f7 245/* types of values stored in eBPF registers */
f1174f77
EC
246/* Pointer types represent:
247 * pointer
248 * pointer + imm
249 * pointer + (u16) var
250 * pointer + (u16) var + imm
251 * if (range > 0) then [ptr, ptr + range - off) is safe to access
252 * if (id > 0) means that some 'var' was added
253 * if (off > 0) means that 'imm' was added
254 */
19de99f7
AS
255enum bpf_reg_type {
256 NOT_INIT = 0, /* nothing was written into register */
f1174f77 257 SCALAR_VALUE, /* reg doesn't contain a valid pointer */
19de99f7
AS
258 PTR_TO_CTX, /* reg points to bpf_context */
259 CONST_PTR_TO_MAP, /* reg points to struct bpf_map */
260 PTR_TO_MAP_VALUE, /* reg points to map element value */
261 PTR_TO_MAP_VALUE_OR_NULL,/* points to map elem value or NULL */
f1174f77 262 PTR_TO_STACK, /* reg == frame_pointer + offset */
de8f3a83 263 PTR_TO_PACKET_META, /* skb->data - meta_len */
f1174f77 264 PTR_TO_PACKET, /* reg points to skb->data */
19de99f7 265 PTR_TO_PACKET_END, /* skb->data + headlen */
d58e468b 266 PTR_TO_FLOW_KEYS, /* reg points to bpf_flow_keys */
c64b7983
JS
267 PTR_TO_SOCKET, /* reg points to struct bpf_sock */
268 PTR_TO_SOCKET_OR_NULL, /* reg points to struct bpf_sock or NULL */
46f8bc92
MKL
269 PTR_TO_SOCK_COMMON, /* reg points to sock_common */
270 PTR_TO_SOCK_COMMON_OR_NULL, /* reg points to sock_common or NULL */
655a51e5
MKL
271 PTR_TO_TCP_SOCK, /* reg points to struct tcp_sock */
272 PTR_TO_TCP_SOCK_OR_NULL, /* reg points to struct tcp_sock or NULL */
19de99f7
AS
273};
274
23994631
YS
275/* The information passed from prog-specific *_is_valid_access
276 * back to the verifier.
277 */
278struct bpf_insn_access_aux {
279 enum bpf_reg_type reg_type;
280 int ctx_field_size;
23994631
YS
281};
282
f96da094
DB
283static inline void
284bpf_ctx_record_field_size(struct bpf_insn_access_aux *aux, u32 size)
285{
286 aux->ctx_field_size = size;
287}
288
7de16e3a
JK
289struct bpf_prog_ops {
290 int (*test_run)(struct bpf_prog *prog, const union bpf_attr *kattr,
291 union bpf_attr __user *uattr);
292};
293
09756af4
AS
294struct bpf_verifier_ops {
295 /* return eBPF function prototype for verification */
5e43f899
AI
296 const struct bpf_func_proto *
297 (*get_func_proto)(enum bpf_func_id func_id,
298 const struct bpf_prog *prog);
17a52670
AS
299
300 /* return true if 'size' wide access at offset 'off' within bpf_context
301 * with 'type' (read or write) is allowed
302 */
19de99f7 303 bool (*is_valid_access)(int off, int size, enum bpf_access_type type,
5e43f899 304 const struct bpf_prog *prog,
23994631 305 struct bpf_insn_access_aux *info);
36bbef52
DB
306 int (*gen_prologue)(struct bpf_insn *insn, bool direct_write,
307 const struct bpf_prog *prog);
e0cea7ce
DB
308 int (*gen_ld_abs)(const struct bpf_insn *orig,
309 struct bpf_insn *insn_buf);
6b8cc1d1
DB
310 u32 (*convert_ctx_access)(enum bpf_access_type type,
311 const struct bpf_insn *src,
312 struct bpf_insn *dst,
f96da094 313 struct bpf_prog *prog, u32 *target_size);
09756af4
AS
314};
315
cae1927c 316struct bpf_prog_offload_ops {
08ca90af 317 /* verifier basic callbacks */
cae1927c
JK
318 int (*insn_hook)(struct bpf_verifier_env *env,
319 int insn_idx, int prev_insn_idx);
c941ce9c 320 int (*finalize)(struct bpf_verifier_env *env);
08ca90af
JK
321 /* verifier optimization callbacks (called after .finalize) */
322 int (*replace_insn)(struct bpf_verifier_env *env, u32 off,
323 struct bpf_insn *insn);
324 int (*remove_insns)(struct bpf_verifier_env *env, u32 off, u32 cnt);
325 /* program management callbacks */
16a8cb5c
QM
326 int (*prepare)(struct bpf_prog *prog);
327 int (*translate)(struct bpf_prog *prog);
eb911947 328 void (*destroy)(struct bpf_prog *prog);
cae1927c
JK
329};
330
0a9c1991 331struct bpf_prog_offload {
ab3f0063
JK
332 struct bpf_prog *prog;
333 struct net_device *netdev;
341b3e7b 334 struct bpf_offload_dev *offdev;
ab3f0063
JK
335 void *dev_priv;
336 struct list_head offloads;
337 bool dev_state;
08ca90af 338 bool opt_failed;
fcfb126d
JW
339 void *jited_image;
340 u32 jited_len;
ab3f0063
JK
341};
342
8bad74f9
RG
343enum bpf_cgroup_storage_type {
344 BPF_CGROUP_STORAGE_SHARED,
b741f163 345 BPF_CGROUP_STORAGE_PERCPU,
8bad74f9
RG
346 __BPF_CGROUP_STORAGE_MAX
347};
348
349#define MAX_BPF_CGROUP_STORAGE_TYPE __BPF_CGROUP_STORAGE_MAX
350
492ecee8
AS
351struct bpf_prog_stats {
352 u64 cnt;
353 u64 nsecs;
354 struct u64_stats_sync syncp;
355};
356
09756af4
AS
357struct bpf_prog_aux {
358 atomic_t refcnt;
24701ece 359 u32 used_map_cnt;
32bbe007 360 u32 max_ctx_offset;
e647815a 361 u32 max_pkt_offset;
8726679a 362 u32 stack_depth;
dc4bb0e2 363 u32 id;
ba64e7d8
YS
364 u32 func_cnt; /* used by non-func prog as the number of func progs */
365 u32 func_idx; /* 0 for non-func prog, the index in func array for func prog */
9a18eedb 366 bool offload_requested;
1c2a088a
AS
367 struct bpf_prog **func;
368 void *jit_data; /* JIT specific data. arch dependent */
74451e66
DB
369 struct latch_tree_node ksym_tnode;
370 struct list_head ksym_lnode;
7de16e3a 371 const struct bpf_prog_ops *ops;
09756af4 372 struct bpf_map **used_maps;
09756af4 373 struct bpf_prog *prog;
aaac3ba9 374 struct user_struct *user;
cb4d2b3f 375 u64 load_time; /* ns since boottime */
8bad74f9 376 struct bpf_map *cgroup_storage[MAX_BPF_CGROUP_STORAGE_TYPE];
067cae47 377 char name[BPF_OBJ_NAME_LEN];
afdb09c7
CF
378#ifdef CONFIG_SECURITY
379 void *security;
380#endif
0a9c1991 381 struct bpf_prog_offload *offload;
838e9690 382 struct btf *btf;
ba64e7d8 383 struct bpf_func_info *func_info;
c454a46b
MKL
384 /* bpf_line_info loaded from userspace. linfo->insn_off
385 * has the xlated insn offset.
386 * Both the main and sub prog share the same linfo.
387 * The subprog can access its first linfo by
388 * using the linfo_idx.
389 */
390 struct bpf_line_info *linfo;
391 /* jited_linfo is the jited addr of the linfo. It has a
392 * one to one mapping to linfo:
393 * jited_linfo[i] is the jited addr for the linfo[i]->insn_off.
394 * Both the main and sub prog share the same jited_linfo.
395 * The subprog can access its first jited_linfo by
396 * using the linfo_idx.
397 */
398 void **jited_linfo;
ba64e7d8 399 u32 func_info_cnt;
c454a46b
MKL
400 u32 nr_linfo;
401 /* subprog can use linfo_idx to access its first linfo and
402 * jited_linfo.
403 * main prog always has linfo_idx == 0
404 */
405 u32 linfo_idx;
492ecee8 406 struct bpf_prog_stats __percpu *stats;
abf2e7d6
AS
407 union {
408 struct work_struct work;
409 struct rcu_head rcu;
410 };
09756af4
AS
411};
412
04fd61ab
AS
413struct bpf_array {
414 struct bpf_map map;
415 u32 elem_size;
b2157399 416 u32 index_mask;
04fd61ab
AS
417 /* 'ownership' of prog_array is claimed by the first program that
418 * is going to use this map or by the first program which FD is stored
419 * in the map to make sure that all callers and callees have the same
420 * prog_type and JITed flag
421 */
422 enum bpf_prog_type owner_prog_type;
423 bool owner_jited;
424 union {
425 char value[0] __aligned(8);
2a36f0b9 426 void *ptrs[0] __aligned(8);
a10423b8 427 void __percpu *pptrs[0] __aligned(8);
04fd61ab
AS
428 };
429};
3b1efb19 430
c04c0d2b 431#define BPF_COMPLEXITY_LIMIT_INSNS 1000000 /* yes. 1M insns */
04fd61ab
AS
432#define MAX_TAIL_CALL_CNT 32
433
591fe988
DB
434#define BPF_F_ACCESS_MASK (BPF_F_RDONLY | \
435 BPF_F_RDONLY_PROG | \
436 BPF_F_WRONLY | \
437 BPF_F_WRONLY_PROG)
438
439#define BPF_MAP_CAN_READ BIT(0)
440#define BPF_MAP_CAN_WRITE BIT(1)
441
442static inline u32 bpf_map_flags_to_cap(struct bpf_map *map)
443{
444 u32 access_flags = map->map_flags & (BPF_F_RDONLY_PROG | BPF_F_WRONLY_PROG);
445
446 /* Combination of BPF_F_RDONLY_PROG | BPF_F_WRONLY_PROG is
447 * not possible.
448 */
449 if (access_flags & BPF_F_RDONLY_PROG)
450 return BPF_MAP_CAN_READ;
451 else if (access_flags & BPF_F_WRONLY_PROG)
452 return BPF_MAP_CAN_WRITE;
453 else
454 return BPF_MAP_CAN_READ | BPF_MAP_CAN_WRITE;
455}
456
457static inline bool bpf_map_flags_access_ok(u32 access_flags)
458{
459 return (access_flags & (BPF_F_RDONLY_PROG | BPF_F_WRONLY_PROG)) !=
460 (BPF_F_RDONLY_PROG | BPF_F_WRONLY_PROG);
461}
462
3b1efb19
DB
463struct bpf_event_entry {
464 struct perf_event *event;
465 struct file *perf_file;
466 struct file *map_file;
467 struct rcu_head rcu;
468};
469
04fd61ab 470bool bpf_prog_array_compatible(struct bpf_array *array, const struct bpf_prog *fp);
f1f7714e 471int bpf_prog_calc_tag(struct bpf_prog *fp);
bd570ff9 472
0756ea3e 473const struct bpf_func_proto *bpf_get_trace_printk_proto(void);
555c8a86
DB
474
475typedef unsigned long (*bpf_ctx_copy_t)(void *dst, const void *src,
aa7145c1 476 unsigned long off, unsigned long len);
c64b7983
JS
477typedef u32 (*bpf_convert_ctx_access_t)(enum bpf_access_type type,
478 const struct bpf_insn *src,
479 struct bpf_insn *dst,
480 struct bpf_prog *prog,
481 u32 *target_size);
555c8a86
DB
482
483u64 bpf_event_output(struct bpf_map *map, u64 flags, void *meta, u64 meta_size,
484 void *ctx, u64 ctx_size, bpf_ctx_copy_t ctx_copy);
04fd61ab 485
324bda9e
AS
486/* an array of programs to be executed under rcu_lock.
487 *
488 * Typical usage:
489 * ret = BPF_PROG_RUN_ARRAY(&bpf_prog_array, ctx, BPF_PROG_RUN);
490 *
491 * the structure returned by bpf_prog_array_alloc() should be populated
492 * with program pointers and the last pointer must be NULL.
493 * The user has to keep refcnt on the program and make sure the program
494 * is removed from the array before bpf_prog_put().
495 * The 'struct bpf_prog_array *' should only be replaced with xchg()
496 * since other cpus are walking the array of pointers in parallel.
497 */
394e40a2
RG
498struct bpf_prog_array_item {
499 struct bpf_prog *prog;
8bad74f9 500 struct bpf_cgroup_storage *cgroup_storage[MAX_BPF_CGROUP_STORAGE_TYPE];
394e40a2
RG
501};
502
324bda9e
AS
503struct bpf_prog_array {
504 struct rcu_head rcu;
394e40a2 505 struct bpf_prog_array_item items[0];
324bda9e
AS
506};
507
d29ab6e1 508struct bpf_prog_array *bpf_prog_array_alloc(u32 prog_cnt, gfp_t flags);
324bda9e 509void bpf_prog_array_free(struct bpf_prog_array __rcu *progs);
468e2f64
AS
510int bpf_prog_array_length(struct bpf_prog_array __rcu *progs);
511int bpf_prog_array_copy_to_user(struct bpf_prog_array __rcu *progs,
512 __u32 __user *prog_ids, u32 cnt);
324bda9e 513
e87c6bc3
YS
514void bpf_prog_array_delete_safe(struct bpf_prog_array __rcu *progs,
515 struct bpf_prog *old_prog);
f371b304 516int bpf_prog_array_copy_info(struct bpf_prog_array __rcu *array,
3a38bb98
YS
517 u32 *prog_ids, u32 request_cnt,
518 u32 *prog_cnt);
e87c6bc3
YS
519int bpf_prog_array_copy(struct bpf_prog_array __rcu *old_array,
520 struct bpf_prog *exclude_prog,
521 struct bpf_prog *include_prog,
522 struct bpf_prog_array **new_array);
523
524#define __BPF_PROG_RUN_ARRAY(array, ctx, func, check_non_null) \
324bda9e 525 ({ \
394e40a2
RG
526 struct bpf_prog_array_item *_item; \
527 struct bpf_prog *_prog; \
e87c6bc3 528 struct bpf_prog_array *_array; \
324bda9e 529 u32 _ret = 1; \
6899b32b 530 preempt_disable(); \
324bda9e 531 rcu_read_lock(); \
e87c6bc3
YS
532 _array = rcu_dereference(array); \
533 if (unlikely(check_non_null && !_array))\
534 goto _out; \
394e40a2
RG
535 _item = &_array->items[0]; \
536 while ((_prog = READ_ONCE(_item->prog))) { \
537 bpf_cgroup_storage_set(_item->cgroup_storage); \
538 _ret &= func(_prog, ctx); \
539 _item++; \
e87c6bc3
YS
540 } \
541_out: \
324bda9e 542 rcu_read_unlock(); \
6899b32b 543 preempt_enable_no_resched(); \
324bda9e
AS
544 _ret; \
545 })
546
e87c6bc3
YS
547#define BPF_PROG_RUN_ARRAY(array, ctx, func) \
548 __BPF_PROG_RUN_ARRAY(array, ctx, func, false)
549
550#define BPF_PROG_RUN_ARRAY_CHECK(array, ctx, func) \
551 __BPF_PROG_RUN_ARRAY(array, ctx, func, true)
552
89aa0758 553#ifdef CONFIG_BPF_SYSCALL
b121d1e7
AS
554DECLARE_PER_CPU(int, bpf_prog_active);
555
f66e448c
CF
556extern const struct file_operations bpf_map_fops;
557extern const struct file_operations bpf_prog_fops;
558
7de16e3a
JK
559#define BPF_PROG_TYPE(_id, _name) \
560 extern const struct bpf_prog_ops _name ## _prog_ops; \
561 extern const struct bpf_verifier_ops _name ## _verifier_ops;
40077e0c
JB
562#define BPF_MAP_TYPE(_id, _ops) \
563 extern const struct bpf_map_ops _ops;
be9370a7
JB
564#include <linux/bpf_types.h>
565#undef BPF_PROG_TYPE
40077e0c 566#undef BPF_MAP_TYPE
0fc174de 567
ab3f0063 568extern const struct bpf_prog_ops bpf_offload_prog_ops;
4f9218aa
JK
569extern const struct bpf_verifier_ops tc_cls_act_analyzer_ops;
570extern const struct bpf_verifier_ops xdp_analyzer_ops;
571
0fc174de 572struct bpf_prog *bpf_prog_get(u32 ufd);
248f346f 573struct bpf_prog *bpf_prog_get_type_dev(u32 ufd, enum bpf_prog_type type,
288b3de5 574 bool attach_drv);
6d67942d 575struct bpf_prog * __must_check bpf_prog_add(struct bpf_prog *prog, int i);
c540594f 576void bpf_prog_sub(struct bpf_prog *prog, int i);
6d67942d 577struct bpf_prog * __must_check bpf_prog_inc(struct bpf_prog *prog);
a6f6df69 578struct bpf_prog * __must_check bpf_prog_inc_not_zero(struct bpf_prog *prog);
61e021f3 579void bpf_prog_put(struct bpf_prog *prog);
5ccb071e
DB
580int __bpf_prog_charge(struct user_struct *user, u32 pages);
581void __bpf_prog_uncharge(struct user_struct *user, u32 pages);
61e021f3 582
ad8ad79f 583void bpf_prog_free_id(struct bpf_prog *prog, bool do_idr_lock);
a3884572 584void bpf_map_free_id(struct bpf_map *map, bool do_idr_lock);
ad8ad79f 585
c9da161c 586struct bpf_map *bpf_map_get_with_uref(u32 ufd);
c2101297 587struct bpf_map *__bpf_map_get(struct fd f);
6d67942d 588struct bpf_map * __must_check bpf_map_inc(struct bpf_map *map, bool uref);
c9da161c 589void bpf_map_put_with_uref(struct bpf_map *map);
61e021f3 590void bpf_map_put(struct bpf_map *map);
6c905981 591int bpf_map_precharge_memlock(u32 pages);
0a4c58f5
RG
592int bpf_map_charge_memlock(struct bpf_map *map, u32 pages);
593void bpf_map_uncharge_memlock(struct bpf_map *map, u32 pages);
96eabe7a 594void *bpf_map_area_alloc(size_t size, int numa_node);
d407bd25 595void bpf_map_area_free(void *base);
bd475643 596void bpf_map_init_from_attr(struct bpf_map *map, union bpf_attr *attr);
61e021f3 597
1be7f75d 598extern int sysctl_unprivileged_bpf_disabled;
492ecee8 599extern int sysctl_bpf_stats_enabled;
1be7f75d 600
6e71b04a 601int bpf_map_new_fd(struct bpf_map *map, int flags);
b2197755
DB
602int bpf_prog_new_fd(struct bpf_prog *prog);
603
604int bpf_obj_pin_user(u32 ufd, const char __user *pathname);
6e71b04a 605int bpf_obj_get_user(const char __user *pathname, int flags);
b2197755 606
15a07b33
AS
607int bpf_percpu_hash_copy(struct bpf_map *map, void *key, void *value);
608int bpf_percpu_array_copy(struct bpf_map *map, void *key, void *value);
609int bpf_percpu_hash_update(struct bpf_map *map, void *key, void *value,
610 u64 flags);
611int bpf_percpu_array_update(struct bpf_map *map, void *key, void *value,
612 u64 flags);
d056a788 613
557c0c6e 614int bpf_stackmap_copy(struct bpf_map *map, void *key, void *value);
15a07b33 615
d056a788
DB
616int bpf_fd_array_map_update_elem(struct bpf_map *map, struct file *map_file,
617 void *key, void *value, u64 map_flags);
14dc6f04 618int bpf_fd_array_map_lookup_elem(struct bpf_map *map, void *key, u32 *value);
bcc6b1b7
MKL
619int bpf_fd_htab_map_update_elem(struct bpf_map *map, struct file *map_file,
620 void *key, void *value, u64 map_flags);
14dc6f04 621int bpf_fd_htab_map_lookup_elem(struct bpf_map *map, void *key, u32 *value);
d056a788 622
6e71b04a 623int bpf_get_file_flag(int flags);
dcab51f1
MKL
624int bpf_check_uarg_tail_zero(void __user *uaddr, size_t expected_size,
625 size_t actual_size);
6e71b04a 626
15a07b33
AS
627/* memcpy that is used with 8-byte aligned pointers, power-of-8 size and
628 * forced to use 'long' read/writes to try to atomically copy long counters.
629 * Best-effort only. No barriers here, since it _will_ race with concurrent
630 * updates from BPF programs. Called from bpf syscall and mostly used with
631 * size 8 or 16 bytes, so ask compiler to inline it.
632 */
633static inline void bpf_long_memcpy(void *dst, const void *src, u32 size)
634{
635 const long *lsrc = src;
636 long *ldst = dst;
637
638 size /= sizeof(long);
639 while (size--)
640 *ldst++ = *lsrc++;
641}
642
61e021f3 643/* verify correctness of eBPF program */
838e9690
YS
644int bpf_check(struct bpf_prog **fp, union bpf_attr *attr,
645 union bpf_attr __user *uattr);
1ea47e01 646void bpf_patch_call_args(struct bpf_insn *insn, u32 stack_depth);
46f55cff
JF
647
648/* Map specifics */
67f29e07 649struct xdp_buff;
6d5fc195 650struct sk_buff;
67f29e07
JDB
651
652struct bpf_dtab_netdev *__dev_map_lookup_elem(struct bpf_map *map, u32 key);
46f55cff
JF
653void __dev_map_insert_ctx(struct bpf_map *map, u32 index);
654void __dev_map_flush(struct bpf_map *map);
38edddb8
JDB
655int dev_map_enqueue(struct bpf_dtab_netdev *dst, struct xdp_buff *xdp,
656 struct net_device *dev_rx);
6d5fc195
TM
657int dev_map_generic_redirect(struct bpf_dtab_netdev *dst, struct sk_buff *skb,
658 struct bpf_prog *xdp_prog);
46f55cff 659
9c270af3
JDB
660struct bpf_cpu_map_entry *__cpu_map_lookup_elem(struct bpf_map *map, u32 key);
661void __cpu_map_insert_ctx(struct bpf_map *map, u32 index);
662void __cpu_map_flush(struct bpf_map *map);
9c270af3
JDB
663int cpu_map_enqueue(struct bpf_cpu_map_entry *rcpu, struct xdp_buff *xdp,
664 struct net_device *dev_rx);
665
96eabe7a
MKL
666/* Return map's numa specified by userspace */
667static inline int bpf_map_attr_numa_node(const union bpf_attr *attr)
668{
669 return (attr->map_flags & BPF_F_NUMA_NODE) ?
670 attr->numa_node : NUMA_NO_NODE;
671}
672
040ee692 673struct bpf_prog *bpf_prog_get_type_path(const char *name, enum bpf_prog_type type);
5dc4c4b7 674int array_map_alloc_check(union bpf_attr *attr);
040ee692 675
c695865c
SF
676int bpf_prog_test_run_xdp(struct bpf_prog *prog, const union bpf_attr *kattr,
677 union bpf_attr __user *uattr);
678int bpf_prog_test_run_skb(struct bpf_prog *prog, const union bpf_attr *kattr,
679 union bpf_attr __user *uattr);
680int bpf_prog_test_run_flow_dissector(struct bpf_prog *prog,
681 const union bpf_attr *kattr,
682 union bpf_attr __user *uattr);
9c270af3 683#else /* !CONFIG_BPF_SYSCALL */
0fc174de
DB
684static inline struct bpf_prog *bpf_prog_get(u32 ufd)
685{
686 return ERR_PTR(-EOPNOTSUPP);
687}
688
248f346f
JK
689static inline struct bpf_prog *bpf_prog_get_type_dev(u32 ufd,
690 enum bpf_prog_type type,
288b3de5 691 bool attach_drv)
248f346f
JK
692{
693 return ERR_PTR(-EOPNOTSUPP);
694}
695
6d67942d
DB
696static inline struct bpf_prog * __must_check bpf_prog_add(struct bpf_prog *prog,
697 int i)
cc2e0b3f
BB
698{
699 return ERR_PTR(-EOPNOTSUPP);
700}
113214be 701
c540594f
DB
702static inline void bpf_prog_sub(struct bpf_prog *prog, int i)
703{
704}
705
0fc174de
DB
706static inline void bpf_prog_put(struct bpf_prog *prog)
707{
708}
6d67942d
DB
709
710static inline struct bpf_prog * __must_check bpf_prog_inc(struct bpf_prog *prog)
aa6a5f3c
AS
711{
712 return ERR_PTR(-EOPNOTSUPP);
713}
5ccb071e 714
a6f6df69
JF
715static inline struct bpf_prog *__must_check
716bpf_prog_inc_not_zero(struct bpf_prog *prog)
717{
718 return ERR_PTR(-EOPNOTSUPP);
719}
720
5ccb071e
DB
721static inline int __bpf_prog_charge(struct user_struct *user, u32 pages)
722{
723 return 0;
724}
725
726static inline void __bpf_prog_uncharge(struct user_struct *user, u32 pages)
727{
728}
46f55cff 729
6e71b04a 730static inline int bpf_obj_get_user(const char __user *pathname, int flags)
98589a09
SL
731{
732 return -EOPNOTSUPP;
733}
734
46f55cff
JF
735static inline struct net_device *__dev_map_lookup_elem(struct bpf_map *map,
736 u32 key)
737{
738 return NULL;
739}
740
741static inline void __dev_map_insert_ctx(struct bpf_map *map, u32 index)
742{
743}
744
745static inline void __dev_map_flush(struct bpf_map *map)
746{
747}
9c270af3 748
67f29e07
JDB
749struct xdp_buff;
750struct bpf_dtab_netdev;
751
752static inline
38edddb8
JDB
753int dev_map_enqueue(struct bpf_dtab_netdev *dst, struct xdp_buff *xdp,
754 struct net_device *dev_rx)
67f29e07
JDB
755{
756 return 0;
757}
758
6d5fc195
TM
759struct sk_buff;
760
761static inline int dev_map_generic_redirect(struct bpf_dtab_netdev *dst,
762 struct sk_buff *skb,
763 struct bpf_prog *xdp_prog)
764{
765 return 0;
766}
767
9c270af3
JDB
768static inline
769struct bpf_cpu_map_entry *__cpu_map_lookup_elem(struct bpf_map *map, u32 key)
770{
771 return NULL;
772}
773
774static inline void __cpu_map_insert_ctx(struct bpf_map *map, u32 index)
775{
776}
777
778static inline void __cpu_map_flush(struct bpf_map *map)
779{
780}
781
9c270af3
JDB
782static inline int cpu_map_enqueue(struct bpf_cpu_map_entry *rcpu,
783 struct xdp_buff *xdp,
784 struct net_device *dev_rx)
785{
786 return 0;
787}
040ee692
AV
788
789static inline struct bpf_prog *bpf_prog_get_type_path(const char *name,
790 enum bpf_prog_type type)
791{
792 return ERR_PTR(-EOPNOTSUPP);
793}
c695865c
SF
794
795static inline int bpf_prog_test_run_xdp(struct bpf_prog *prog,
796 const union bpf_attr *kattr,
797 union bpf_attr __user *uattr)
798{
799 return -ENOTSUPP;
800}
801
802static inline int bpf_prog_test_run_skb(struct bpf_prog *prog,
803 const union bpf_attr *kattr,
804 union bpf_attr __user *uattr)
805{
806 return -ENOTSUPP;
807}
808
809static inline int bpf_prog_test_run_flow_dissector(struct bpf_prog *prog,
810 const union bpf_attr *kattr,
811 union bpf_attr __user *uattr)
812{
813 return -ENOTSUPP;
814}
61e021f3 815#endif /* CONFIG_BPF_SYSCALL */
09756af4 816
479321e9
JK
817static inline struct bpf_prog *bpf_prog_get_type(u32 ufd,
818 enum bpf_prog_type type)
819{
820 return bpf_prog_get_type_dev(ufd, type, false);
821}
822
040ee692
AV
823bool bpf_prog_get_ok(struct bpf_prog *, enum bpf_prog_type *, bool);
824
ab3f0063
JK
825int bpf_prog_offload_compile(struct bpf_prog *prog);
826void bpf_prog_offload_destroy(struct bpf_prog *prog);
675fc275
JK
827int bpf_prog_offload_info_fill(struct bpf_prog_info *info,
828 struct bpf_prog *prog);
ab3f0063 829
52775b33
JK
830int bpf_map_offload_info_fill(struct bpf_map_info *info, struct bpf_map *map);
831
a3884572
JK
832int bpf_map_offload_lookup_elem(struct bpf_map *map, void *key, void *value);
833int bpf_map_offload_update_elem(struct bpf_map *map,
834 void *key, void *value, u64 flags);
835int bpf_map_offload_delete_elem(struct bpf_map *map, void *key);
836int bpf_map_offload_get_next_key(struct bpf_map *map,
837 void *key, void *next_key);
838
09728266 839bool bpf_offload_prog_map_match(struct bpf_prog *prog, struct bpf_map *map);
a3884572 840
1385d755 841struct bpf_offload_dev *
dd27c2e3 842bpf_offload_dev_create(const struct bpf_prog_offload_ops *ops, void *priv);
602144c2 843void bpf_offload_dev_destroy(struct bpf_offload_dev *offdev);
dd27c2e3 844void *bpf_offload_dev_priv(struct bpf_offload_dev *offdev);
602144c2
JK
845int bpf_offload_dev_netdev_register(struct bpf_offload_dev *offdev,
846 struct net_device *netdev);
847void bpf_offload_dev_netdev_unregister(struct bpf_offload_dev *offdev,
848 struct net_device *netdev);
fd4f227d 849bool bpf_offload_dev_match(struct bpf_prog *prog, struct net_device *netdev);
9fd7c555 850
ab3f0063
JK
851#if defined(CONFIG_NET) && defined(CONFIG_BPF_SYSCALL)
852int bpf_prog_offload_init(struct bpf_prog *prog, union bpf_attr *attr);
853
0d830032 854static inline bool bpf_prog_is_dev_bound(const struct bpf_prog_aux *aux)
ab3f0063 855{
9a18eedb 856 return aux->offload_requested;
ab3f0063 857}
a3884572
JK
858
859static inline bool bpf_map_is_dev_bound(struct bpf_map *map)
860{
861 return unlikely(map->ops == &bpf_map_offload_ops);
862}
863
864struct bpf_map *bpf_map_offload_map_alloc(union bpf_attr *attr);
865void bpf_map_offload_map_free(struct bpf_map *map);
ab3f0063
JK
866#else
867static inline int bpf_prog_offload_init(struct bpf_prog *prog,
868 union bpf_attr *attr)
869{
870 return -EOPNOTSUPP;
871}
872
873static inline bool bpf_prog_is_dev_bound(struct bpf_prog_aux *aux)
874{
875 return false;
876}
a3884572
JK
877
878static inline bool bpf_map_is_dev_bound(struct bpf_map *map)
879{
880 return false;
881}
882
883static inline struct bpf_map *bpf_map_offload_map_alloc(union bpf_attr *attr)
884{
885 return ERR_PTR(-EOPNOTSUPP);
886}
887
888static inline void bpf_map_offload_map_free(struct bpf_map *map)
889{
890}
ab3f0063
JK
891#endif /* CONFIG_NET && CONFIG_BPF_SYSCALL */
892
604326b4
DB
893#if defined(CONFIG_BPF_STREAM_PARSER)
894int sock_map_prog_update(struct bpf_map *map, struct bpf_prog *prog, u32 which);
895int sock_map_get_from_fd(const union bpf_attr *attr, struct bpf_prog *prog);
6bdc9c4c 896#else
604326b4
DB
897static inline int sock_map_prog_update(struct bpf_map *map,
898 struct bpf_prog *prog, u32 which)
464bc0fd
JF
899{
900 return -EOPNOTSUPP;
901}
fdb5c453 902
604326b4
DB
903static inline int sock_map_get_from_fd(const union bpf_attr *attr,
904 struct bpf_prog *prog)
fdb5c453
SY
905{
906 return -EINVAL;
907}
6bdc9c4c
JF
908#endif
909
fbfc504a
BT
910#if defined(CONFIG_XDP_SOCKETS)
911struct xdp_sock;
912struct xdp_sock *__xsk_map_lookup_elem(struct bpf_map *map, u32 key);
913int __xsk_map_redirect(struct bpf_map *map, struct xdp_buff *xdp,
914 struct xdp_sock *xs);
915void __xsk_map_flush(struct bpf_map *map);
916#else
917struct xdp_sock;
918static inline struct xdp_sock *__xsk_map_lookup_elem(struct bpf_map *map,
919 u32 key)
920{
921 return NULL;
922}
923
924static inline int __xsk_map_redirect(struct bpf_map *map, struct xdp_buff *xdp,
925 struct xdp_sock *xs)
926{
927 return -EOPNOTSUPP;
928}
929
930static inline void __xsk_map_flush(struct bpf_map *map)
931{
932}
933#endif
934
5dc4c4b7
MKL
935#if defined(CONFIG_INET) && defined(CONFIG_BPF_SYSCALL)
936void bpf_sk_reuseport_detach(struct sock *sk);
937int bpf_fd_reuseport_array_lookup_elem(struct bpf_map *map, void *key,
938 void *value);
939int bpf_fd_reuseport_array_update_elem(struct bpf_map *map, void *key,
940 void *value, u64 map_flags);
941#else
942static inline void bpf_sk_reuseport_detach(struct sock *sk)
943{
944}
945
946#ifdef CONFIG_BPF_SYSCALL
947static inline int bpf_fd_reuseport_array_lookup_elem(struct bpf_map *map,
948 void *key, void *value)
949{
950 return -EOPNOTSUPP;
951}
952
953static inline int bpf_fd_reuseport_array_update_elem(struct bpf_map *map,
954 void *key, void *value,
955 u64 map_flags)
956{
957 return -EOPNOTSUPP;
958}
959#endif /* CONFIG_BPF_SYSCALL */
960#endif /* defined(CONFIG_INET) && defined(CONFIG_BPF_SYSCALL) */
961
d0003ec0 962/* verifier prototypes for helper functions called from eBPF programs */
a2c83fff
DB
963extern const struct bpf_func_proto bpf_map_lookup_elem_proto;
964extern const struct bpf_func_proto bpf_map_update_elem_proto;
965extern const struct bpf_func_proto bpf_map_delete_elem_proto;
f1a2e44a
MV
966extern const struct bpf_func_proto bpf_map_push_elem_proto;
967extern const struct bpf_func_proto bpf_map_pop_elem_proto;
968extern const struct bpf_func_proto bpf_map_peek_elem_proto;
d0003ec0 969
03e69b50 970extern const struct bpf_func_proto bpf_get_prandom_u32_proto;
c04167ce 971extern const struct bpf_func_proto bpf_get_smp_processor_id_proto;
2d0e30c3 972extern const struct bpf_func_proto bpf_get_numa_node_id_proto;
04fd61ab 973extern const struct bpf_func_proto bpf_tail_call_proto;
17ca8cbf 974extern const struct bpf_func_proto bpf_ktime_get_ns_proto;
ffeedafb
AS
975extern const struct bpf_func_proto bpf_get_current_pid_tgid_proto;
976extern const struct bpf_func_proto bpf_get_current_uid_gid_proto;
977extern const struct bpf_func_proto bpf_get_current_comm_proto;
d5a3b1f6 978extern const struct bpf_func_proto bpf_get_stackid_proto;
c195651e 979extern const struct bpf_func_proto bpf_get_stack_proto;
174a79ff 980extern const struct bpf_func_proto bpf_sock_map_update_proto;
81110384 981extern const struct bpf_func_proto bpf_sock_hash_update_proto;
bf6fa2c8 982extern const struct bpf_func_proto bpf_get_current_cgroup_id_proto;
604326b4
DB
983extern const struct bpf_func_proto bpf_msg_redirect_hash_proto;
984extern const struct bpf_func_proto bpf_msg_redirect_map_proto;
985extern const struct bpf_func_proto bpf_sk_redirect_hash_proto;
986extern const struct bpf_func_proto bpf_sk_redirect_map_proto;
d83525ca
AS
987extern const struct bpf_func_proto bpf_spin_lock_proto;
988extern const struct bpf_func_proto bpf_spin_unlock_proto;
cd339431
RG
989extern const struct bpf_func_proto bpf_get_local_storage_proto;
990
3ad00405
DB
991/* Shared helpers among cBPF and eBPF. */
992void bpf_user_rnd_init_once(void);
993u64 bpf_user_rnd_u32(u64 r1, u64 r2, u64 r3, u64 r4, u64 r5);
994
c64b7983 995#if defined(CONFIG_NET)
46f8bc92
MKL
996bool bpf_sock_common_is_valid_access(int off, int size,
997 enum bpf_access_type type,
998 struct bpf_insn_access_aux *info);
c64b7983
JS
999bool bpf_sock_is_valid_access(int off, int size, enum bpf_access_type type,
1000 struct bpf_insn_access_aux *info);
1001u32 bpf_sock_convert_ctx_access(enum bpf_access_type type,
1002 const struct bpf_insn *si,
1003 struct bpf_insn *insn_buf,
1004 struct bpf_prog *prog,
1005 u32 *target_size);
1006#else
46f8bc92
MKL
1007static inline bool bpf_sock_common_is_valid_access(int off, int size,
1008 enum bpf_access_type type,
1009 struct bpf_insn_access_aux *info)
1010{
1011 return false;
1012}
c64b7983
JS
1013static inline bool bpf_sock_is_valid_access(int off, int size,
1014 enum bpf_access_type type,
1015 struct bpf_insn_access_aux *info)
1016{
1017 return false;
1018}
1019static inline u32 bpf_sock_convert_ctx_access(enum bpf_access_type type,
1020 const struct bpf_insn *si,
1021 struct bpf_insn *insn_buf,
1022 struct bpf_prog *prog,
1023 u32 *target_size)
1024{
1025 return 0;
1026}
1027#endif
1028
655a51e5
MKL
1029#ifdef CONFIG_INET
1030bool bpf_tcp_sock_is_valid_access(int off, int size, enum bpf_access_type type,
1031 struct bpf_insn_access_aux *info);
1032
1033u32 bpf_tcp_sock_convert_ctx_access(enum bpf_access_type type,
1034 const struct bpf_insn *si,
1035 struct bpf_insn *insn_buf,
1036 struct bpf_prog *prog,
1037 u32 *target_size);
1038#else
1039static inline bool bpf_tcp_sock_is_valid_access(int off, int size,
1040 enum bpf_access_type type,
1041 struct bpf_insn_access_aux *info)
1042{
1043 return false;
1044}
1045
1046static inline u32 bpf_tcp_sock_convert_ctx_access(enum bpf_access_type type,
1047 const struct bpf_insn *si,
1048 struct bpf_insn *insn_buf,
1049 struct bpf_prog *prog,
1050 u32 *target_size)
1051{
1052 return 0;
1053}
1054#endif /* CONFIG_INET */
1055
99c55f7d 1056#endif /* _LINUX_BPF_H */