1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
|
// Copyright 2018 The gVisor Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Package bpf provides tools for working with Berkeley Packet Filter (BPF)
// programs. More information on BPF can be found at
// https://www.freebsd.org/cgi/man.cgi?bpf(4)
package bpf
import (
"fmt"
"gvisor.dev/gvisor/pkg/abi/linux"
)
const (
// MaxInstructions is the maximum number of instructions in a BPF program,
// and is equal to Linux's BPF_MAXINSNS.
MaxInstructions = 4096
// ScratchMemRegisters is the number of M registers in a BPF virtual machine,
// and is equal to Linux's BPF_MEMWORDS.
ScratchMemRegisters = 16
)
// Parts of a linux.BPFInstruction.OpCode. Compare to the Linux kernel's
// include/uapi/linux/filter.h.
//
// In the comments below:
//
// - A, X, and M[] are BPF virtual machine registers.
//
// - K refers to the instruction field linux.BPFInstruction.K.
//
// - Bits are counted from the LSB position.
const (
// Instruction class, stored in bits 0-2.
Ld = 0x00 // load into A
Ldx = 0x01 // load into X
St = 0x02 // store from A
Stx = 0x03 // store from X
Alu = 0x04 // arithmetic
Jmp = 0x05 // jump
Ret = 0x06 // return
Misc = 0x07
instructionClassMask = 0x07
// Size of a load, stored in bits 3-4.
W = 0x00 // 32 bits
H = 0x08 // 16 bits
B = 0x10 // 8 bits
loadSizeMask = 0x18
// Source operand for a load, stored in bits 5-7.
// Address mode numbers in the comments come from Linux's
// Documentation/networking/filter.txt.
Imm = 0x00 // immediate value K (mode 4)
Abs = 0x20 // data in input at byte offset K (mode 1)
Ind = 0x40 // data in input at byte offset X+K (mode 2)
Mem = 0x60 // M[K] (mode 3)
Len = 0x80 // length of the input in bytes ("BPF extension len")
Msh = 0xa0 // 4 * lower nibble of input at byte offset K (mode 5)
loadModeMask = 0xe0
// Source operands for arithmetic, jump, and return instructions.
// Arithmetic and jump instructions can use K or X as source operands.
// Return instructions can use K or A as source operands.
K = 0x00 // still mode 4
X = 0x08 // mode 0
A = 0x10 // mode 9
operandMask = K | X | A
srcAluJmpMask = 0x08
srcRetMask = 0x18
// Arithmetic instructions, stored in bits 4-7.
Add = 0x00
Sub = 0x10 // A - src
Mul = 0x20
Div = 0x30 // A / src
Or = 0x40
And = 0x50
Lsh = 0x60 // A << src
Rsh = 0x70 // A >> src
Neg = 0x80 // -A (src ignored)
Mod = 0x90 // A % src
Xor = 0xa0
aluMask = 0xf0
// Jump instructions, stored in bits 4-7.
Ja = 0x00 // unconditional (uses K for jump offset)
Jeq = 0x10 // if A == src
Jgt = 0x20 // if A > src
Jge = 0x30 // if A >= src
Jset = 0x40 // if (A & src) != 0
jmpMask = 0xf0
// Miscellaneous instructions, stored in bits 3-7.
Tax = 0x00 // A = X
Txa = 0x80 // X = A
miscMask = 0xf8
// Masks for bits that should be zero.
unusedBitsMask = 0xff00 // all valid instructions use only bits 0-7
storeUnusedBitsMask = 0xf8 // stores only use instruction class
retUnusedBitsMask = 0xe0 // returns only use instruction class and source operand
)
// Instruction is a type alias for linux.BPFInstruction.
// It adds a human-readable stringification and other helper functions.
//
// +marshal slice:InstructionSlice
// +stateify savable
// +stateify identtype
type Instruction linux.BPFInstruction
// String returns a human-readable version of the instruction.
func (ins *Instruction) String() string {
s, err := Decode(*ins)
if err != nil {
return fmt.Sprintf("[invalid %v: %v]", (*linux.BPFInstruction)(ins), err)
}
return s
}
// Stmt returns an Instruction representing a BPF non-jump instruction.
func Stmt(code uint16, k uint32) Instruction {
return Instruction{
OpCode: code,
K: k,
}
}
// Jump returns an Instruction representing a BPF jump instruction.
func Jump(code uint16, k uint32, jt, jf uint8) Instruction {
return Instruction{
OpCode: code,
JumpIfTrue: jt,
JumpIfFalse: jf,
K: k,
}
}
// Equal returns whether this instruction is equivalent to `other`.
func (ins Instruction) Equal(other Instruction) bool {
if ins.OpCode != other.OpCode {
// If instructions don't have the same opcode, they are not equal.
return false
}
switch ins.OpCode & instructionClassMask {
case Ld, Ldx:
if ins.OpCode&loadModeMask == Len {
// Length instructions are independent of the K register.
return true
}
// Two load instructions are the same if they load from the same offset.
return ins.K == other.K
case St, Stx:
// Two store instructions are the same if they store at the same offset.
return ins.K == other.K
case Alu:
if ins.OpCode == Alu|Neg {
return true // The negation instruction has no operands.
}
if ins.OpCode&operandMask == X {
// If we use X, no need to check anything.
return true
}
if ins.OpCode&operandMask == K {
// If use K, check that it's the same.
return ins.K == other.K
}
// Otherwise, we use the whole instruction.
case Ret:
switch ins.OpCode {
case Ret | A:
// All instructions that return the A register are equivalent.
return true
case Ret | K:
// All instructions that return the same value are equivalent.
return ins.K == other.K
}
case Jmp:
if ins.IsUnconditionalJump() {
// Unconditional jumps to the same offset are equivalent.
return ins.K == other.K
}
if ins.OpCode&operandMask == X {
// If we use X as the operand, check the conditional jump targets only.
return ins.JumpIfTrue == other.JumpIfTrue && ins.JumpIfFalse == other.JumpIfFalse
}
// Otherwise, we use the whole instruction.
case Misc:
if ins.OpCode == Misc|Tax || ins.OpCode == Misc|Txa {
// Swapping X and A, we don't care about the other fields.
return true
}
}
// All other instructions need full bit-for-bit comparison.
return ins == other
}
// IsReturn returns true if `ins` is a return instruction.
func (ins Instruction) IsReturn() bool {
return ins.OpCode&instructionClassMask == Ret
}
// IsJump returns true if `ins` is a jump instruction.
func (ins Instruction) IsJump() bool {
return ins.OpCode&instructionClassMask == Jmp
}
// IsConditionalJump returns true if `ins` is a conditional jump instruction.
func (ins Instruction) IsConditionalJump() bool {
return ins.IsJump() && ins.OpCode&jmpMask != Ja
}
// IsUnconditionalJump returns true if `ins` is a conditional jump instruction.
func (ins Instruction) IsUnconditionalJump() bool {
return ins.IsJump() && ins.OpCode&jmpMask == Ja
}
// JumpOffset is a possible jump offset that an instruction may jump to.
type JumpOffset struct {
// Type is the type of jump that an instruction may execute.
Type JumpType
// Offset is the number of instructions that the jump skips over.
Offset uint32
}
// JumpOffsets returns the set of instruction offsets that this instruction
// may jump to. Returns a nil slice if this is not a jump instruction.
func (ins Instruction) JumpOffsets() []JumpOffset {
if !ins.IsJump() {
return nil
}
if ins.IsConditionalJump() {
return []JumpOffset{
{JumpTrue, uint32(ins.JumpIfTrue)},
{JumpFalse, uint32(ins.JumpIfFalse)},
}
}
return []JumpOffset{{JumpDirect, ins.K}}
}
// ModifiesRegisterA returns true iff this instruction modifies the value
// of the "A" register.
func (ins Instruction) ModifiesRegisterA() bool {
switch ins.OpCode & instructionClassMask {
case Ld:
return true
case Alu:
return true
case Misc:
return ins.OpCode == Misc|Tax
default:
return false
}
}
|