blob: d5093b52b4855f5ec0fbd6d29df265da80945a68 [file] [log] [blame]
Jakub Kicinski58e2af8b2016-09-21 11:43:57 +01001/* 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_VERIFIER_H
8#define _LINUX_BPF_VERIFIER_H 1
9
10#include <linux/bpf.h> /* for enum bpf_reg_type */
11#include <linux/filter.h> /* for MAX_BPF_STACK */
12
Josef Bacik48461132016-09-28 10:54:32 -040013 /* Just some arbitrary values so we can safely do math without overflowing and
14 * are obviously wrong for any sort of memory access.
15 */
16#define BPF_REGISTER_MAX_RANGE (1024 * 1024 * 1024)
Josef Bacikf23cc642016-11-14 15:45:36 -050017#define BPF_REGISTER_MIN_RANGE -1
Josef Bacik48461132016-09-28 10:54:32 -040018
Jakub Kicinski58e2af8b2016-09-21 11:43:57 +010019struct bpf_reg_state {
20 enum bpf_reg_type type;
21 union {
22 /* valid when type == CONST_IMM | PTR_TO_STACK | UNKNOWN_VALUE */
23 s64 imm;
24
25 /* valid when type == PTR_TO_PACKET* */
26 struct {
Jakub Kicinski58e2af8b2016-09-21 11:43:57 +010027 u16 off;
28 u16 range;
29 };
30
31 /* valid when type == CONST_PTR_TO_MAP | PTR_TO_MAP_VALUE |
32 * PTR_TO_MAP_VALUE_OR_NULL
33 */
34 struct bpf_map *map_ptr;
35 };
Alexei Starovoitovd2a4dd32016-12-07 10:57:59 -080036 u32 id;
37 /* Used to determine if any memory access using this register will
38 * result in a bad access. These two fields must be last.
39 * See states_equal()
40 */
41 s64 min_value;
42 u64 max_value;
David S. Millerd1174412017-05-10 11:22:52 -070043 u32 min_align;
44 u32 aux_off;
45 u32 aux_off_align;
Jakub Kicinski58e2af8b2016-09-21 11:43:57 +010046};
47
48enum bpf_stack_slot_type {
49 STACK_INVALID, /* nothing was stored in this stack slot */
50 STACK_SPILL, /* register spilled into stack */
51 STACK_MISC /* BPF program wrote some data into this slot */
52};
53
54#define BPF_REG_SIZE 8 /* size of eBPF register in bytes */
55
56/* state of the program:
57 * type of all registers and stack info
58 */
59struct bpf_verifier_state {
60 struct bpf_reg_state regs[MAX_BPF_REG];
61 u8 stack_slot_type[MAX_BPF_STACK];
62 struct bpf_reg_state spilled_regs[MAX_BPF_STACK / BPF_REG_SIZE];
63};
64
65/* linked list of verifier states used to prune search */
66struct bpf_verifier_state_list {
67 struct bpf_verifier_state state;
68 struct bpf_verifier_state_list *next;
69};
70
71struct bpf_insn_aux_data {
Alexei Starovoitov81ed18a2017-03-15 18:26:42 -070072 union {
73 enum bpf_reg_type ptr_type; /* pointer type for load/store insns */
74 struct bpf_map *map_ptr; /* pointer for call insn into lookup_elem */
75 };
Jakub Kicinski58e2af8b2016-09-21 11:43:57 +010076};
77
78#define MAX_USED_MAPS 64 /* max number of maps accessed by one eBPF program */
79
Jakub Kicinski13a27df2016-09-21 11:43:58 +010080struct bpf_verifier_env;
81struct bpf_ext_analyzer_ops {
82 int (*insn_hook)(struct bpf_verifier_env *env,
83 int insn_idx, int prev_insn_idx);
84};
85
Jakub Kicinski58e2af8b2016-09-21 11:43:57 +010086/* single container for all structs
87 * one verifier_env per bpf_check() call
88 */
89struct bpf_verifier_env {
90 struct bpf_prog *prog; /* eBPF program being verified */
91 struct bpf_verifier_stack_elem *head; /* stack of verifier states to be processed */
92 int stack_size; /* number of states to be processed */
David S. Millere07b98d2017-05-10 11:38:07 -070093 bool strict_alignment; /* perform strict pointer alignment checks */
Jakub Kicinski58e2af8b2016-09-21 11:43:57 +010094 struct bpf_verifier_state cur_state; /* current verifier state */
95 struct bpf_verifier_state_list **explored_states; /* search pruning optimization */
Jakub Kicinski13a27df2016-09-21 11:43:58 +010096 const struct bpf_ext_analyzer_ops *analyzer_ops; /* external analyzer ops */
97 void *analyzer_priv; /* pointer to external analyzer's private data */
Jakub Kicinski58e2af8b2016-09-21 11:43:57 +010098 struct bpf_map *used_maps[MAX_USED_MAPS]; /* array of map's used by eBPF program */
99 u32 used_map_cnt; /* number of used maps */
100 u32 id_gen; /* used to generate unique reg IDs */
101 bool allow_ptr_leaks;
102 bool seen_direct_write;
Josef Bacik48461132016-09-28 10:54:32 -0400103 bool varlen_map_value_access;
Jakub Kicinski58e2af8b2016-09-21 11:43:57 +0100104 struct bpf_insn_aux_data *insn_aux_data; /* array of per-insn state */
105};
106
Jakub Kicinski13a27df2016-09-21 11:43:58 +0100107int bpf_analyzer(struct bpf_prog *prog, const struct bpf_ext_analyzer_ops *ops,
108 void *priv);
109
Jakub Kicinski58e2af8b2016-09-21 11:43:57 +0100110#endif /* _LINUX_BPF_VERIFIER_H */