]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/uapi/linux/bpf.h
xfrm: policy: remove family field
[mirror_ubuntu-artful-kernel.git] / include / uapi / linux / bpf.h
CommitLineData
daedfb22
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 _UAPI__LINUX_BPF_H__
8#define _UAPI__LINUX_BPF_H__
9
10#include <linux/types.h>
c15952dc 11#include <linux/bpf_common.h>
daedfb22
AS
12
13/* Extended instruction set based on top of classic BPF */
14
15/* instruction classes */
16#define BPF_ALU64 0x07 /* alu mode in double word width */
17
18/* ld/ldx fields */
19#define BPF_DW 0x18 /* double word */
20#define BPF_XADD 0xc0 /* exclusive add */
21
22/* alu/jmp fields */
23#define BPF_MOV 0xb0 /* mov reg to reg */
24#define BPF_ARSH 0xc0 /* sign extending arithmetic shift right */
25
26/* change endianness of a register */
27#define BPF_END 0xd0 /* flags for endianness conversion: */
28#define BPF_TO_LE 0x00 /* convert to little-endian */
29#define BPF_TO_BE 0x08 /* convert to big-endian */
30#define BPF_FROM_LE BPF_TO_LE
31#define BPF_FROM_BE BPF_TO_BE
32
33#define BPF_JNE 0x50 /* jump != */
34#define BPF_JSGT 0x60 /* SGT is signed '>', GT in x86 */
35#define BPF_JSGE 0x70 /* SGE is signed '>=', GE in x86 */
36#define BPF_CALL 0x80 /* function call */
37#define BPF_EXIT 0x90 /* function return */
38
39/* Register numbers */
40enum {
41 BPF_REG_0 = 0,
42 BPF_REG_1,
43 BPF_REG_2,
44 BPF_REG_3,
45 BPF_REG_4,
46 BPF_REG_5,
47 BPF_REG_6,
48 BPF_REG_7,
49 BPF_REG_8,
50 BPF_REG_9,
51 BPF_REG_10,
52 __MAX_BPF_REG,
53};
54
55/* BPF has 10 general purpose 64-bit registers and stack frame. */
56#define MAX_BPF_REG __MAX_BPF_REG
57
58struct bpf_insn {
59 __u8 code; /* opcode */
60 __u8 dst_reg:4; /* dest register */
61 __u8 src_reg:4; /* source register */
62 __s16 off; /* signed offset */
63 __s32 imm; /* signed immediate constant */
64};
65
b95a5c4d
DM
66/* Key of an a BPF_MAP_TYPE_LPM_TRIE entry */
67struct bpf_lpm_trie_key {
68 __u32 prefixlen; /* up to 32 for AF_INET, 128 for AF_INET6 */
69 __u8 data[0]; /* Arbitrary size */
70};
71
b2197755 72/* BPF syscall commands, see bpf(2) man-page for details. */
99c55f7d 73enum bpf_cmd {
99c55f7d 74 BPF_MAP_CREATE,
db20fd2b 75 BPF_MAP_LOOKUP_ELEM,
db20fd2b 76 BPF_MAP_UPDATE_ELEM,
db20fd2b 77 BPF_MAP_DELETE_ELEM,
db20fd2b 78 BPF_MAP_GET_NEXT_KEY,
09756af4 79 BPF_PROG_LOAD,
b2197755
DB
80 BPF_OBJ_PIN,
81 BPF_OBJ_GET,
f4324551
DM
82 BPF_PROG_ATTACH,
83 BPF_PROG_DETACH,
99c55f7d
AS
84};
85
86enum bpf_map_type {
87 BPF_MAP_TYPE_UNSPEC,
0f8e4bd8 88 BPF_MAP_TYPE_HASH,
28fbcfa0 89 BPF_MAP_TYPE_ARRAY,
04fd61ab 90 BPF_MAP_TYPE_PROG_ARRAY,
ea317b26 91 BPF_MAP_TYPE_PERF_EVENT_ARRAY,
824bd0ce 92 BPF_MAP_TYPE_PERCPU_HASH,
a10423b8 93 BPF_MAP_TYPE_PERCPU_ARRAY,
d5a3b1f6 94 BPF_MAP_TYPE_STACK_TRACE,
4ed8ec52 95 BPF_MAP_TYPE_CGROUP_ARRAY,
29ba732a 96 BPF_MAP_TYPE_LRU_HASH,
8f844938 97 BPF_MAP_TYPE_LRU_PERCPU_HASH,
b95a5c4d 98 BPF_MAP_TYPE_LPM_TRIE,
99c55f7d
AS
99};
100
09756af4
AS
101enum bpf_prog_type {
102 BPF_PROG_TYPE_UNSPEC,
ddd872bc 103 BPF_PROG_TYPE_SOCKET_FILTER,
2541517c 104 BPF_PROG_TYPE_KPROBE,
96be4325 105 BPF_PROG_TYPE_SCHED_CLS,
94caee8c 106 BPF_PROG_TYPE_SCHED_ACT,
98b5c2c6 107 BPF_PROG_TYPE_TRACEPOINT,
6a773a15 108 BPF_PROG_TYPE_XDP,
0515e599 109 BPF_PROG_TYPE_PERF_EVENT,
0e33661d 110 BPF_PROG_TYPE_CGROUP_SKB,
61023658 111 BPF_PROG_TYPE_CGROUP_SOCK,
3a0af8fd
TG
112 BPF_PROG_TYPE_LWT_IN,
113 BPF_PROG_TYPE_LWT_OUT,
114 BPF_PROG_TYPE_LWT_XMIT,
09756af4
AS
115};
116
0e33661d
DM
117enum bpf_attach_type {
118 BPF_CGROUP_INET_INGRESS,
119 BPF_CGROUP_INET_EGRESS,
61023658 120 BPF_CGROUP_INET_SOCK_CREATE,
0e33661d
DM
121 __MAX_BPF_ATTACH_TYPE
122};
123
124#define MAX_BPF_ATTACH_TYPE __MAX_BPF_ATTACH_TYPE
125
f1a66f85
DB
126#define BPF_PSEUDO_MAP_FD 1
127
3274f520
AS
128/* flags for BPF_MAP_UPDATE_ELEM command */
129#define BPF_ANY 0 /* create new element or update existing */
130#define BPF_NOEXIST 1 /* create new element if it didn't exist */
131#define BPF_EXIST 2 /* update existing element */
132
6c905981 133#define BPF_F_NO_PREALLOC (1U << 0)
29ba732a 134/* Instead of having one common LRU list in the
8f844938 135 * BPF_MAP_TYPE_LRU_[PERCPU_]HASH map, use a percpu LRU list
29ba732a
MKL
136 * which can scale and perform better.
137 * Note, the LRU nodes (including free nodes) cannot be moved
138 * across different LRU lists.
139 */
140#define BPF_F_NO_COMMON_LRU (1U << 1)
6c905981 141
99c55f7d
AS
142union bpf_attr {
143 struct { /* anonymous struct used by BPF_MAP_CREATE command */
144 __u32 map_type; /* one of enum bpf_map_type */
145 __u32 key_size; /* size of key in bytes */
146 __u32 value_size; /* size of value in bytes */
147 __u32 max_entries; /* max number of entries in a map */
6c905981 148 __u32 map_flags; /* prealloc or not */
99c55f7d 149 };
db20fd2b
AS
150
151 struct { /* anonymous struct used by BPF_MAP_*_ELEM commands */
152 __u32 map_fd;
153 __aligned_u64 key;
154 union {
155 __aligned_u64 value;
156 __aligned_u64 next_key;
157 };
3274f520 158 __u64 flags;
db20fd2b 159 };
09756af4
AS
160
161 struct { /* anonymous struct used by BPF_PROG_LOAD command */
162 __u32 prog_type; /* one of enum bpf_prog_type */
163 __u32 insn_cnt;
164 __aligned_u64 insns;
165 __aligned_u64 license;
cbd35700
AS
166 __u32 log_level; /* verbosity level of verifier */
167 __u32 log_size; /* size of user buffer */
168 __aligned_u64 log_buf; /* user supplied buffer */
2541517c 169 __u32 kern_version; /* checked when prog_type=kprobe */
09756af4 170 };
b2197755
DB
171
172 struct { /* anonymous struct used by BPF_OBJ_* commands */
173 __aligned_u64 pathname;
174 __u32 bpf_fd;
175 };
f4324551
DM
176
177 struct { /* anonymous struct used by BPF_PROG_ATTACH/DETACH commands */
178 __u32 target_fd; /* container object to attach to */
179 __u32 attach_bpf_fd; /* eBPF program to attach */
180 __u32 attach_type;
181 };
99c55f7d
AS
182} __attribute__((aligned(8)));
183
ebb676da
TG
184/* BPF helper function descriptions:
185 *
186 * void *bpf_map_lookup_elem(&map, &key)
187 * Return: Map value or NULL
188 *
189 * int bpf_map_update_elem(&map, &key, &value, flags)
190 * Return: 0 on success or negative error
191 *
192 * int bpf_map_delete_elem(&map, &key)
193 * Return: 0 on success or negative error
194 *
195 * int bpf_probe_read(void *dst, int size, void *src)
196 * Return: 0 on success or negative error
197 *
198 * u64 bpf_ktime_get_ns(void)
199 * Return: current ktime
200 *
201 * int bpf_trace_printk(const char *fmt, int fmt_size, ...)
202 * Return: length of buffer written or negative error
203 *
204 * u32 bpf_prandom_u32(void)
205 * Return: random value
206 *
207 * u32 bpf_raw_smp_processor_id(void)
208 * Return: SMP processor ID
209 *
210 * int bpf_skb_store_bytes(skb, offset, from, len, flags)
211 * store bytes into packet
212 * @skb: pointer to skb
213 * @offset: offset within packet from skb->mac_header
214 * @from: pointer where to copy bytes from
215 * @len: number of bytes to store into packet
216 * @flags: bit 0 - if true, recompute skb->csum
217 * other bits - reserved
218 * Return: 0 on success or negative error
219 *
220 * int bpf_l3_csum_replace(skb, offset, from, to, flags)
221 * recompute IP checksum
222 * @skb: pointer to skb
223 * @offset: offset within packet where IP checksum is located
224 * @from: old value of header field
225 * @to: new value of header field
226 * @flags: bits 0-3 - size of header field
227 * other bits - reserved
228 * Return: 0 on success or negative error
229 *
230 * int bpf_l4_csum_replace(skb, offset, from, to, flags)
231 * recompute TCP/UDP checksum
232 * @skb: pointer to skb
233 * @offset: offset within packet where TCP/UDP checksum is located
234 * @from: old value of header field
235 * @to: new value of header field
236 * @flags: bits 0-3 - size of header field
237 * bit 4 - is pseudo header
238 * other bits - reserved
239 * Return: 0 on success or negative error
240 *
241 * int bpf_tail_call(ctx, prog_array_map, index)
242 * jump into another BPF program
243 * @ctx: context pointer passed to next program
244 * @prog_array_map: pointer to map which type is BPF_MAP_TYPE_PROG_ARRAY
245 * @index: index inside array that selects specific program to run
246 * Return: 0 on success or negative error
247 *
248 * int bpf_clone_redirect(skb, ifindex, flags)
249 * redirect to another netdev
250 * @skb: pointer to skb
251 * @ifindex: ifindex of the net device
252 * @flags: bit 0 - if set, redirect to ingress instead of egress
253 * other bits - reserved
254 * Return: 0 on success or negative error
255 *
256 * u64 bpf_get_current_pid_tgid(void)
257 * Return: current->tgid << 32 | current->pid
258 *
259 * u64 bpf_get_current_uid_gid(void)
260 * Return: current_gid << 32 | current_uid
261 *
262 * int bpf_get_current_comm(char *buf, int size_of_buf)
263 * stores current->comm into buf
264 * Return: 0 on success or negative error
265 *
266 * u32 bpf_get_cgroup_classid(skb)
267 * retrieve a proc's classid
268 * @skb: pointer to skb
269 * Return: classid if != 0
270 *
271 * int bpf_skb_vlan_push(skb, vlan_proto, vlan_tci)
272 * Return: 0 on success or negative error
273 *
274 * int bpf_skb_vlan_pop(skb)
275 * Return: 0 on success or negative error
276 *
277 * int bpf_skb_get_tunnel_key(skb, key, size, flags)
278 * int bpf_skb_set_tunnel_key(skb, key, size, flags)
279 * retrieve or populate tunnel metadata
280 * @skb: pointer to skb
281 * @key: pointer to 'struct bpf_tunnel_key'
282 * @size: size of 'struct bpf_tunnel_key'
283 * @flags: room for future extensions
284 * Return: 0 on success or negative error
285 *
286 * u64 bpf_perf_event_read(&map, index)
287 * Return: Number events read or error code
288 *
289 * int bpf_redirect(ifindex, flags)
290 * redirect to another netdev
291 * @ifindex: ifindex of the net device
292 * @flags: bit 0 - if set, redirect to ingress instead of egress
293 * other bits - reserved
294 * Return: TC_ACT_REDIRECT
295 *
296 * u32 bpf_get_route_realm(skb)
297 * retrieve a dst's tclassid
298 * @skb: pointer to skb
299 * Return: realm if != 0
300 *
301 * int bpf_perf_event_output(ctx, map, index, data, size)
302 * output perf raw sample
303 * @ctx: struct pt_regs*
304 * @map: pointer to perf_event_array map
305 * @index: index of event in the map
306 * @data: data on stack to be output as raw data
307 * @size: size of data
308 * Return: 0 on success or negative error
309 *
310 * int bpf_get_stackid(ctx, map, flags)
311 * walk user or kernel stack and return id
312 * @ctx: struct pt_regs*
313 * @map: pointer to stack_trace map
314 * @flags: bits 0-7 - numer of stack frames to skip
315 * bit 8 - collect user stack instead of kernel
316 * bit 9 - compare stacks by hash only
317 * bit 10 - if two different stacks hash into the same stackid
318 * discard old
319 * other bits - reserved
320 * Return: >= 0 stackid on success or negative error
321 *
322 * s64 bpf_csum_diff(from, from_size, to, to_size, seed)
323 * calculate csum diff
324 * @from: raw from buffer
325 * @from_size: length of from buffer
326 * @to: raw to buffer
327 * @to_size: length of to buffer
328 * @seed: optional seed
329 * Return: csum result or negative error code
330 *
331 * int bpf_skb_get_tunnel_opt(skb, opt, size)
332 * retrieve tunnel options metadata
333 * @skb: pointer to skb
334 * @opt: pointer to raw tunnel option data
335 * @size: size of @opt
336 * Return: option size
337 *
338 * int bpf_skb_set_tunnel_opt(skb, opt, size)
339 * populate tunnel options metadata
340 * @skb: pointer to skb
341 * @opt: pointer to raw tunnel option data
342 * @size: size of @opt
343 * Return: 0 on success or negative error
344 *
345 * int bpf_skb_change_proto(skb, proto, flags)
346 * Change protocol of the skb. Currently supported is v4 -> v6,
347 * v6 -> v4 transitions. The helper will also resize the skb. eBPF
348 * program is expected to fill the new headers via skb_store_bytes
349 * and lX_csum_replace.
350 * @skb: pointer to skb
351 * @proto: new skb->protocol type
352 * @flags: reserved
353 * Return: 0 on success or negative error
354 *
355 * int bpf_skb_change_type(skb, type)
356 * Change packet type of skb.
357 * @skb: pointer to skb
358 * @type: new skb->pkt_type type
359 * Return: 0 on success or negative error
360 *
361 * int bpf_skb_under_cgroup(skb, map, index)
362 * Check cgroup2 membership of skb
363 * @skb: pointer to skb
364 * @map: pointer to bpf_map in BPF_MAP_TYPE_CGROUP_ARRAY type
365 * @index: index of the cgroup in the bpf_map
366 * Return:
367 * == 0 skb failed the cgroup2 descendant test
368 * == 1 skb succeeded the cgroup2 descendant test
369 * < 0 error
370 *
371 * u32 bpf_get_hash_recalc(skb)
372 * Retrieve and possibly recalculate skb->hash.
373 * @skb: pointer to skb
374 * Return: hash
375 *
376 * u64 bpf_get_current_task(void)
377 * Returns current task_struct
378 * Return: current
379 *
380 * int bpf_probe_write_user(void *dst, void *src, int len)
381 * safely attempt to write to a location
382 * @dst: destination address in userspace
383 * @src: source address on stack
384 * @len: number of bytes to copy
385 * Return: 0 on success or negative error
386 *
387 * int bpf_current_task_under_cgroup(map, index)
388 * Check cgroup2 membership of current task
389 * @map: pointer to bpf_map in BPF_MAP_TYPE_CGROUP_ARRAY type
390 * @index: index of the cgroup in the bpf_map
391 * Return:
392 * == 0 current failed the cgroup2 descendant test
393 * == 1 current succeeded the cgroup2 descendant test
394 * < 0 error
395 *
396 * int bpf_skb_change_tail(skb, len, flags)
397 * The helper will resize the skb to the given new size, to be used f.e.
398 * with control messages.
399 * @skb: pointer to skb
400 * @len: new skb length
401 * @flags: reserved
402 * Return: 0 on success or negative error
403 *
404 * int bpf_skb_pull_data(skb, len)
405 * The helper will pull in non-linear data in case the skb is non-linear
406 * and not all of len are part of the linear section. Only needed for
407 * read/write with direct packet access.
408 * @skb: pointer to skb
409 * @len: len to make read/writeable
410 * Return: 0 on success or negative error
411 *
412 * s64 bpf_csum_update(skb, csum)
413 * Adds csum into skb->csum in case of CHECKSUM_COMPLETE.
414 * @skb: pointer to skb
415 * @csum: csum to add
416 * Return: csum on success or negative error
417 *
418 * void bpf_set_hash_invalid(skb)
419 * Invalidate current skb->hash.
420 * @skb: pointer to skb
421 *
422 * int bpf_get_numa_node_id()
423 * Return: Id of current NUMA node.
3a0af8fd
TG
424 *
425 * int bpf_skb_change_head()
426 * Grows headroom of skb and adjusts MAC header offset accordingly.
427 * Will extends/reallocae as required automatically.
428 * May change skb data pointer and will thus invalidate any check
429 * performed for direct packet access.
430 * @skb: pointer to skb
431 * @len: length of header to be pushed in front
432 * @flags: Flags (unused for now)
433 * Return: 0 on success or negative error
17bedab2
MKL
434 *
435 * int bpf_xdp_adjust_head(xdp_md, delta)
436 * Adjust the xdp_md.data by delta
437 * @xdp_md: pointer to xdp_md
438 * @delta: An positive/negative integer to be added to xdp_md.data
439 * Return: 0 on success or negative on error
a5e8c070
GB
440 *
441 * int bpf_probe_read_str(void *dst, int size, const void *unsafe_ptr)
442 * Copy a NUL terminated string from unsafe address. In case the string
443 * length is smaller than size, the target is not padded with further NUL
444 * bytes. In case the string length is larger than size, just count-1
445 * bytes are copied and the last byte is set to NUL.
446 * @dst: destination address
447 * @size: maximum number of bytes to copy, including the trailing NUL
448 * @unsafe_ptr: unsafe address
449 * Return:
450 * > 0 length of the string including the trailing NUL on success
451 * < 0 error
ebb676da
TG
452 */
453#define __BPF_FUNC_MAPPER(FN) \
454 FN(unspec), \
455 FN(map_lookup_elem), \
456 FN(map_update_elem), \
457 FN(map_delete_elem), \
458 FN(probe_read), \
459 FN(ktime_get_ns), \
460 FN(trace_printk), \
461 FN(get_prandom_u32), \
462 FN(get_smp_processor_id), \
463 FN(skb_store_bytes), \
464 FN(l3_csum_replace), \
465 FN(l4_csum_replace), \
466 FN(tail_call), \
467 FN(clone_redirect), \
468 FN(get_current_pid_tgid), \
469 FN(get_current_uid_gid), \
470 FN(get_current_comm), \
471 FN(get_cgroup_classid), \
472 FN(skb_vlan_push), \
473 FN(skb_vlan_pop), \
474 FN(skb_get_tunnel_key), \
475 FN(skb_set_tunnel_key), \
476 FN(perf_event_read), \
477 FN(redirect), \
478 FN(get_route_realm), \
479 FN(perf_event_output), \
480 FN(skb_load_bytes), \
481 FN(get_stackid), \
482 FN(csum_diff), \
483 FN(skb_get_tunnel_opt), \
484 FN(skb_set_tunnel_opt), \
485 FN(skb_change_proto), \
486 FN(skb_change_type), \
487 FN(skb_under_cgroup), \
488 FN(get_hash_recalc), \
489 FN(get_current_task), \
490 FN(probe_write_user), \
491 FN(current_task_under_cgroup), \
492 FN(skb_change_tail), \
493 FN(skb_pull_data), \
494 FN(csum_update), \
495 FN(set_hash_invalid), \
3a0af8fd 496 FN(get_numa_node_id), \
17bedab2 497 FN(skb_change_head), \
a5e8c070
GB
498 FN(xdp_adjust_head), \
499 FN(probe_read_str),
ebb676da 500
09756af4
AS
501/* integer value in 'imm' field of BPF_CALL instruction selects which helper
502 * function eBPF program intends to call
503 */
ebb676da 504#define __BPF_ENUM_FN(x) BPF_FUNC_ ## x
09756af4 505enum bpf_func_id {
ebb676da 506 __BPF_FUNC_MAPPER(__BPF_ENUM_FN)
09756af4
AS
507 __BPF_FUNC_MAX_ID,
508};
ebb676da 509#undef __BPF_ENUM_FN
09756af4 510
781c53bc
DB
511/* All flags used by eBPF helper functions, placed here. */
512
513/* BPF_FUNC_skb_store_bytes flags. */
514#define BPF_F_RECOMPUTE_CSUM (1ULL << 0)
8afd54c8 515#define BPF_F_INVALIDATE_HASH (1ULL << 1)
781c53bc
DB
516
517/* BPF_FUNC_l3_csum_replace and BPF_FUNC_l4_csum_replace flags.
518 * First 4 bits are for passing the header field size.
519 */
520#define BPF_F_HDR_FIELD_MASK 0xfULL
521
522/* BPF_FUNC_l4_csum_replace flags. */
523#define BPF_F_PSEUDO_HDR (1ULL << 4)
2f72959a 524#define BPF_F_MARK_MANGLED_0 (1ULL << 5)
d1b662ad 525#define BPF_F_MARK_ENFORCE (1ULL << 6)
781c53bc
DB
526
527/* BPF_FUNC_clone_redirect and BPF_FUNC_redirect flags. */
528#define BPF_F_INGRESS (1ULL << 0)
529
c6c33454
DB
530/* BPF_FUNC_skb_set_tunnel_key and BPF_FUNC_skb_get_tunnel_key flags. */
531#define BPF_F_TUNINFO_IPV6 (1ULL << 0)
532
d5a3b1f6
AS
533/* BPF_FUNC_get_stackid flags. */
534#define BPF_F_SKIP_FIELD_MASK 0xffULL
535#define BPF_F_USER_STACK (1ULL << 8)
536#define BPF_F_FAST_STACK_CMP (1ULL << 9)
537#define BPF_F_REUSE_STACKID (1ULL << 10)
538
2da897e5
DB
539/* BPF_FUNC_skb_set_tunnel_key flags. */
540#define BPF_F_ZERO_CSUM_TX (1ULL << 1)
22080870 541#define BPF_F_DONT_FRAGMENT (1ULL << 2)
2da897e5 542
6816a7ff 543/* BPF_FUNC_perf_event_output and BPF_FUNC_perf_event_read flags. */
1e33759c
DB
544#define BPF_F_INDEX_MASK 0xffffffffULL
545#define BPF_F_CURRENT_CPU BPF_F_INDEX_MASK
555c8a86
DB
546/* BPF_FUNC_perf_event_output for sk_buff input context. */
547#define BPF_F_CTXLEN_MASK (0xfffffULL << 32)
1e33759c 548
9bac3d6d
AS
549/* user accessible mirror of in-kernel sk_buff.
550 * new fields can only be added to the end of this structure
551 */
552struct __sk_buff {
553 __u32 len;
554 __u32 pkt_type;
555 __u32 mark;
556 __u32 queue_mapping;
c2497395
AS
557 __u32 protocol;
558 __u32 vlan_present;
559 __u32 vlan_tci;
27cd5452 560 __u32 vlan_proto;
bcad5718 561 __u32 priority;
37e82c2f
AS
562 __u32 ingress_ifindex;
563 __u32 ifindex;
d691f9e8
AS
564 __u32 tc_index;
565 __u32 cb[5];
ba7591d8 566 __u32 hash;
045efa82 567 __u32 tc_classid;
969bf05e
AS
568 __u32 data;
569 __u32 data_end;
9bac3d6d
AS
570};
571
d3aa45ce
AS
572struct bpf_tunnel_key {
573 __u32 tunnel_id;
c6c33454
DB
574 union {
575 __u32 remote_ipv4;
576 __u32 remote_ipv6[4];
577 };
578 __u8 tunnel_tos;
579 __u8 tunnel_ttl;
c0e760c9 580 __u16 tunnel_ext;
4018ab18 581 __u32 tunnel_label;
d3aa45ce
AS
582};
583
3a0af8fd
TG
584/* Generic BPF return codes which all BPF program types may support.
585 * The values are binary compatible with their TC_ACT_* counter-part to
586 * provide backwards compatibility with existing SCHED_CLS and SCHED_ACT
587 * programs.
588 *
589 * XDP is handled seprately, see XDP_*.
590 */
591enum bpf_ret_code {
592 BPF_OK = 0,
593 /* 1 reserved */
594 BPF_DROP = 2,
595 /* 3-6 reserved */
596 BPF_REDIRECT = 7,
597 /* >127 are reserved for prog type specific return codes */
598};
599
61023658
DA
600struct bpf_sock {
601 __u32 bound_dev_if;
aa4c1037
DA
602 __u32 family;
603 __u32 type;
604 __u32 protocol;
61023658
DA
605};
606
17bedab2
MKL
607#define XDP_PACKET_HEADROOM 256
608
6a773a15
BB
609/* User return codes for XDP prog type.
610 * A valid XDP program must return one of these defined values. All other
611 * return codes are reserved for future use. Unknown return codes will result
612 * in packet drop.
613 */
614enum xdp_action {
615 XDP_ABORTED = 0,
616 XDP_DROP,
617 XDP_PASS,
6ce96ca3 618 XDP_TX,
6a773a15
BB
619};
620
621/* user accessible metadata for XDP packet hook
622 * new fields must be added to the end of this structure
623 */
624struct xdp_md {
625 __u32 data;
626 __u32 data_end;
627};
628
daedfb22 629#endif /* _UAPI__LINUX_BPF_H__ */