SlideShare a Scribd company logo
1 of 41
Download to read offline
BPF – in-kernel virtual machine
1!
BPF is
•  Berkeley Packet Filter
•  low level instruction set
•  kernel infrastructure around it
•  interpreter
•  JITs
•  maps
•  helper functions
Agenda
•  status and new use cases
•  architecture and design
•  demo
extended BPF JITs and compilers
•  x64 JIT upstreamed
•  arm64 JIT upstreamed
•  s390 JIT in progress
•  ppc JIT in progress
•  LLVM backend is upstreamed
•  gcc backend is in progress
extended BPF use cases
1.  networking
2.  tracing (analytics, monitoring, debugging)
3.  in-kernel optimizations
4.  hw modeling
5.  crazy stuff...
1. extended BPF in networking
•  socket filters
•  four use cases of bpf in openvswitch (bpf+ovs)
•  bpf as an action on flow-hit
•  bpf as fallback on flow-miss
•  bpf as packet parser before flow lookup
•  bpf to completely replace ovs datapath
•  two use cases in traffic control (bpf+tc)
•  cls – packet parser and classifier
•  act – action
•  bpf as net_device
2. extended BPF in tracing
•  bpf+kprobe – dtrace/systemtap like
•  bpf+syscalls – analytics and monitoring
•  bpf+tracepoints – faster alternative to kprobes
•  TCP stack instrumentation with bpf+tracepoints as non-
intrusive alternative to web10g
•  disk latency monitoring
•  live kernel debugging (with and without debug info)
3. extended BPF for in-kernel optimizations
•  kernel interface is kept unmodified. subsystems use bpf to
accelerate internal execution
•  predicate tree walker of tracing filters -> bpf
•  nft (netfilter tables) -> bpf
4. extended BPF for HW modeling
•  p4 – language for programing flexible network switches
•  p4 compiler into bpf (userspace)
•  pass bpf into kernel via switchdev abstraction
•  rocker device (part of qemu) to execute bpf
5. other crazy uses of BPF
•  'reverse BPF' was proposed
•  in-kernel NIC drivers expose BPF back to user space as generic program to
construct hw specific data structures
•  bpf -> NPUs
•  some networking HW vendors planning to translate bpf directly to HW
classic BPF
•  BPF - Berkeley Packet Filter
•  inspired by BSD
•  introduced in linux in 1997 in version 2.1.75
•  initially used as socket filter by packet capture tool tcpdump
(via libpcap)
classic BPF
•  two 32-bit registers: A, X
•  implicit stack of 16 32-bit slots (LD_MEM, ST_MEM insns)
•  full integer arithmetic
•  explicit load/store from packet (LD_ABS, LD_IND insns)
•  conditional branches (with two destinations: jump true/false)
Ex: tcpdump syntax and classic BPF assembler
•  tcpdump –d 'ip and tcp port 22’
(000) ldh [12] // fetch eth proto

(001) jeq #0x800 jt 2"jf 12 // is it IPv4 ?

(002) ldb [23] // fetch ip proto

(003) jeq #0x6 jt 4"jf 12 // is it TCP ?

(004) ldh [20] // fetch frag_off

(005) jset #0x1fff jt 12 jf 6 // is it a frag?

(006) ldxb 4*([14]&0xf) // fetch ip header len

(007) ldh [x + 14] // fetch src port

(008) jeq #0x16 jt 11 jf 9 // is it 22 ?

(009) ldh [x + 16] // fetch dest port

(010) jeq #0x16 jt 11 jf 12 // is it 22 ?

(011) ret #65535 // trim packet and pass

(012) ret #0 // ignore packet"
Classic BPF for use cases
•  socket filters (drop or trim packet and pass to user space)
•  used by tcpdump/libpcap, wireshark, nmap, dhcp, arpd, ...
•  in networking subsystems
•  cls_bpf (TC classifier), xt_bpf, ppp, team, ...
•  seccomp (chrome sandboxing)
•  introduced in 2012 to filter syscall arguments with bpf program
Classic BPF safety
•  verifier checks all instructions, forward jumps only, stack slot
load/store, etc
•  instruction set has some built-in safety (no exposed stack
pointer, instead load instruction has ‘mem’ modifier)
•  dynamic packet-boundary checks
Classic BPF extensions
•  over years multiple extensions were added in the form of ‘load
from negative hard coded offset’
•  LD_ABS -0x1000 – skb->protocol
LD_ABS -0x1000+4 – skb->pkt_type
LD_ABS -0x1000+56 – get_random()
Extended BPF
•  design goals:
•  parse, lookup, update, modify network packets
•  loadable as kernel modules on demand, on live traffic
•  safe on production system
•  performance equal to native x86 code
•  fast interpreter speed (good performance on all architectures)
•  calls into bpf and calls from bpf to kernel should be free (no FFI overhead)
in kernel 3.15
tcpdump dhclient chrome
cls,
xt,
team,
ppp,
…
classic -> extended
bpf engine
in kernel 3.18
tcpdump
dhclient
chrome
gcc/llvm
libbpf
classic -> extended
bpf engine
bpf syscall
verifier
x64 JIT
arm64 JIT
Early prototypes
•  Failed approach #1 (design a VM from scratch)
•  performance was too slow, user tools need to be developed from scratch as
well
•  Failed approach #2 (have kernel disassemble and verify x86
instructions)
•  too many instruction combinations, disasm/verifier needs to be rewritten for
every architecture
Extended BPF
•  take a mix of real CPU instructions
•  10% classic BPF + 70% x86 + 25% arm64 + 5% risc
•  rename every x86 instruction ‘mov rax, rbx’ into ‘mov r1, r2’
•  analyze x86/arm64/risc calling conventions and define a
common one for this ‘renamed’ instruction set
•  make instruction encoding fixed size (for high interpreter
speed)
•  reuse classic BPF instruction encoding (for trivial classic-
>extended conversion)
extended vs classic BPF
•  ten 64-bit registers vs two 32-bit registers
•  arbitrary load/store vs stack load/store
•  call instruction
Performance
•  user space compiler ‘thinks’ that it’s emitting simplified x86
code
•  kernel verifies this ‘simplified x86’ code
•  kernel JIT translates each ‘simplified x86’ insn into real x86
•  all registers map one-to-one
•  most of instructions map one-to-one
•  bpf ‘call’ instruction maps to x86 ‘call’
Extended BPF calling convention
•  BPF calling convention was carefully selected to match a
subset of amd64/arm64 ABIs to avoid extra copy in calls:
•  R0 – return value
•  R1..R5 – function arguments
•  R6..R9 – callee saved
•  R10 – frame pointer
Mapping of BPF registers to x86
•  R0 – rax return value from function

R1 – rdi 1st argument

R2 – rsi 2nd argument

R3 – rdx 3rd argument

R4 – rcx 4th argument

R5 – r8 5th argument

R6 – rbx callee saved

R7 - r13 callee saved

R8 - r14 callee saved

R9 - r15 callee saved

R10 – rbp frame pointer"
calls and helper functions
•  bpf ‘call’ and set of in-kernel helper functions define what bpf
programs can do
•  bpf code itself is a ‘glue’ between calls to in-kernel helper
functions
•  helpers
•  map_lookup/update/delete
•  ktime_get
•  packet_write
•  fetch
BPF maps
•  maps is a generic storage of different types for sharing data between
kernel and userspace
•  The maps are accessed from user space via BPF syscall, which has
commands:
•  create a map with given type and attributes
map_fd = bpf(BPF_MAP_CREATE, union bpf_attr *attr, u32 size)
•  lookup key/value, update, delete, iterate, delete a map
•  userspace programs use this syscall to create/access maps that BPF
programs are concurrently updating
BPF compilers
•  BPF backend for LLVM is in trunk and will be released as part of 3.7
•  BPF backend for GCC is being worked on
•  C front-end (clang) is used today to compile C code into BPF
•  tracing and networking use cases may need custom languages
•  BPF backend only knows how to emit instructions (calls to helper
functions look like normal calls)
Extended BPF assembler
0: r1 = *(u64 *)(r1 +8)

1: *(u64 *)(r10 -8) = r1

2: r1 = 1

3: *(u64 *)(r10 -16) = r1

4: r1 = map_fd

6: r2 = r10

7: r2 += -8

8: call 1

9: if r0 == 0x0 goto pc+4

10: r1 = *(u64 *)(r0 +0)

11: r1 += 1

12: *(u64 *)(r0 +0) = r1

13: goto pc+8

14: r1 = map_fd

16: r2 = r10

17: r2 += -8

18: r3 = r10

19: r3 += -16

20: r4 = 0

21: call 2

22: r0 = 0

23: exit"
int bpf_prog(struct bpf_context *ctx)

{

u64 loc = ctx->arg2;

u64 init_val = 1;

u64 *value;



value = bpf_map_lookup_elem(&my_map, &loc);

if (value)

*value += 1;

else

bpf_map_update_elem(&my_map, &loc,

&init_val, BPF_ANY);

return 0;

}"
"
compiled by LLVM from C to bpf asm
compiler as a library
tracing script in .txt file
bpf_create_map
.txt parser
llvm mcjit api
bpf
backend
x64
backend
bpf code x86 code
bpf_prog_load
user
kernel
libllvm
perf
binary
run it
BPF verifier (CFG check)
•  To minimize run-time overhead anything that can be checked
statically is done by verifier
•  all jumps of a program form a CFG which is checked for loops
•  DAG check = non-recursive depth-first-search
•  if back-edge exists -> there is a loop -> reject program
•  jumps back are allowed if they don’t form loops
•  bpf compiler can move cold basic blocks out of critical path
•  likely/unlikely() hints give extra performance
BPF verifier (instruction walking)
•  once it’s known that all paths through the program reach final ‘exit’
instruction, brute force analyzer of all instructions starts
•  it descents all possible paths from the 1st insn till ‘exit’ insn
•  it simulates execution of every insn and updates the state change of
registers and stack
BPF verifier
•  at the start of the program:
•  type of R1 = PTR_TO_CTX
type of R10 = FRAME_PTR
other registers and stack is unreadable
•  when verifier sees:
•  ‘R2 = R1’ instruction it copies the type of R1 into R2
•  ‘R3 = 123’ instruction, the type of R3 becomes CONST_IMM
•  ‘exit’ instruction, it checks that R0 is readable
•  ‘if (R4 == 456) goto pc+5’ instruction, it checks that R4 is readable and forks current
state of registers and stack into ‘true’ and ‘false’ branches
BPF verifier (state pruning)
•  every branch adds another fork for verifier to explore, therefore
branch pruning is important
•  when verifiers sees an old state that has more strict register state and
more strict stack state then the current branch doesn't need to be
explored further, since verifier already concluded that more strict state
leads to valid ‘exit’
•  two states are equivalent if register state is more conservative and
explored stack state is more conservative than the current one
unprivileged programs?
•  today extended BPF is root only
•  to consider unprivileged access:
•  teach verifier to conditionally reject programs that expose kernel addresses to
user space
•  constant blinding pass
BPF for tracing
•  BPF is seen as alternative to systemtap/dtrace
•  provides in-kernel aggregation, event filtering
•  can be 'always on'
•  must have minimal overhead
BPF for tracing (kernel part)
struct bpf_map_def SEC("maps") my_hist_map = {
.type = BPF_MAP_TYPE_ARRAY,
.key_size = sizeof(u32),
.value_size = sizeof(u64),
.max_entries = 64,
};
SEC("events/syscalls/sys_enter_write")
int bpf_prog(struct bpf_context *ctx)
{
u64 write_size = ctx->arg3;
u32 index = log2(write_size);
u64 *value;
value = bpf_map_lookup_elem(&my_hist_map, &index);
if (value)
__sync_fetch_and_add(value, 1);
return 0;
}
sent to kernel as bpf map via bpf() syscall
compiled by llvm into .o and
loaded via bpf() syscall
name of elf section - tracing event to attach via perf_event ioctl
BPF for tracing (user part)
u64 data[64] = {}; u32 key; u64 value;
for (key = 0; key < 64; key++) {
bpf_lookup_elem(fd, &key, &value);
data[key] = value;
if (value && key > max_ind)
max_ind = key;
if (value > max_value)
max_value = value;
}
printf("syscall write() statsn");
user space walks the map and fetches elements via bpf() syscall
syscall write() stats"
byte_size : count distribution"
1 -> 1 : 9 |*************************** |"
2 -> 3 : 0 | |"
4 -> 7 : 0 | |"
8 -> 15 : 2 |***** |"
16 -> 31 : 0 | |"
32 -> 63 : 10 |****************************** |"
64 -> 127 : 12 |************************************* |"
128 -> 255 : 1 |** |"
256 -> 511 : 2 |***** |"
(Brendan Gregg’s slide)
Extended BPF
demo
41!

More Related Content

What's hot

Linux BPF Superpowers
Linux BPF SuperpowersLinux BPF Superpowers
Linux BPF SuperpowersBrendan Gregg
 
ebpf and IO Visor: The What, how, and what next!
ebpf and IO Visor: The What, how, and what next!ebpf and IO Visor: The What, how, and what next!
ebpf and IO Visor: The What, how, and what next!Affan Syed
 
LinuxCon 2015 Linux Kernel Networking Walkthrough
LinuxCon 2015 Linux Kernel Networking WalkthroughLinuxCon 2015 Linux Kernel Networking Walkthrough
LinuxCon 2015 Linux Kernel Networking WalkthroughThomas Graf
 
eBPF Perf Tools 2019
eBPF Perf Tools 2019eBPF Perf Tools 2019
eBPF Perf Tools 2019Brendan Gregg
 
Kubernetes Networking with Cilium - Deep Dive
Kubernetes Networking with Cilium - Deep DiveKubernetes Networking with Cilium - Deep Dive
Kubernetes Networking with Cilium - Deep DiveMichal Rostecki
 
EBPF and Linux Networking
EBPF and Linux NetworkingEBPF and Linux Networking
EBPF and Linux NetworkingPLUMgrid
 
Introduction to eBPF and XDP
Introduction to eBPF and XDPIntroduction to eBPF and XDP
Introduction to eBPF and XDPlcplcp1
 
Replacing iptables with eBPF in Kubernetes with Cilium
Replacing iptables with eBPF in Kubernetes with CiliumReplacing iptables with eBPF in Kubernetes with Cilium
Replacing iptables with eBPF in Kubernetes with CiliumMichal Rostecki
 
Introduction to eBPF
Introduction to eBPFIntroduction to eBPF
Introduction to eBPFRogerColl2
 
Cilium - Container Networking with BPF & XDP
Cilium - Container Networking with BPF & XDPCilium - Container Networking with BPF & XDP
Cilium - Container Networking with BPF & XDPThomas Graf
 
BPF / XDP 8월 세미나 KossLab
BPF / XDP 8월 세미나 KossLabBPF / XDP 8월 세미나 KossLab
BPF / XDP 8월 세미나 KossLabTaeung Song
 
Xdp and ebpf_maps
Xdp and ebpf_mapsXdp and ebpf_maps
Xdp and ebpf_mapslcplcp1
 
Faster packet processing in Linux: XDP
Faster packet processing in Linux: XDPFaster packet processing in Linux: XDP
Faster packet processing in Linux: XDPDaniel T. Lee
 
BPF & Cilium - Turning Linux into a Microservices-aware Operating System
BPF  & Cilium - Turning Linux into a Microservices-aware Operating SystemBPF  & Cilium - Turning Linux into a Microservices-aware Operating System
BPF & Cilium - Turning Linux into a Microservices-aware Operating SystemThomas Graf
 
Accelerating Envoy and Istio with Cilium and the Linux Kernel
Accelerating Envoy and Istio with Cilium and the Linux KernelAccelerating Envoy and Istio with Cilium and the Linux Kernel
Accelerating Envoy and Istio with Cilium and the Linux KernelThomas Graf
 
Performance Wins with eBPF: Getting Started (2021)
Performance Wins with eBPF: Getting Started (2021)Performance Wins with eBPF: Getting Started (2021)
Performance Wins with eBPF: Getting Started (2021)Brendan Gregg
 

What's hot (20)

Linux BPF Superpowers
Linux BPF SuperpowersLinux BPF Superpowers
Linux BPF Superpowers
 
ebpf and IO Visor: The What, how, and what next!
ebpf and IO Visor: The What, how, and what next!ebpf and IO Visor: The What, how, and what next!
ebpf and IO Visor: The What, how, and what next!
 
LinuxCon 2015 Linux Kernel Networking Walkthrough
LinuxCon 2015 Linux Kernel Networking WalkthroughLinuxCon 2015 Linux Kernel Networking Walkthrough
LinuxCon 2015 Linux Kernel Networking Walkthrough
 
eBPF Perf Tools 2019
eBPF Perf Tools 2019eBPF Perf Tools 2019
eBPF Perf Tools 2019
 
Kubernetes Networking with Cilium - Deep Dive
Kubernetes Networking with Cilium - Deep DiveKubernetes Networking with Cilium - Deep Dive
Kubernetes Networking with Cilium - Deep Dive
 
eBPF Basics
eBPF BasicseBPF Basics
eBPF Basics
 
EBPF and Linux Networking
EBPF and Linux NetworkingEBPF and Linux Networking
EBPF and Linux Networking
 
Introduction to eBPF and XDP
Introduction to eBPF and XDPIntroduction to eBPF and XDP
Introduction to eBPF and XDP
 
Linux Network Stack
Linux Network StackLinux Network Stack
Linux Network Stack
 
Replacing iptables with eBPF in Kubernetes with Cilium
Replacing iptables with eBPF in Kubernetes with CiliumReplacing iptables with eBPF in Kubernetes with Cilium
Replacing iptables with eBPF in Kubernetes with Cilium
 
eBPF Workshop
eBPF WorkshopeBPF Workshop
eBPF Workshop
 
Introduction to eBPF
Introduction to eBPFIntroduction to eBPF
Introduction to eBPF
 
Cilium - Container Networking with BPF & XDP
Cilium - Container Networking with BPF & XDPCilium - Container Networking with BPF & XDP
Cilium - Container Networking with BPF & XDP
 
BPF / XDP 8월 세미나 KossLab
BPF / XDP 8월 세미나 KossLabBPF / XDP 8월 세미나 KossLab
BPF / XDP 8월 세미나 KossLab
 
Xdp and ebpf_maps
Xdp and ebpf_mapsXdp and ebpf_maps
Xdp and ebpf_maps
 
eBPF maps 101
eBPF maps 101eBPF maps 101
eBPF maps 101
 
Faster packet processing in Linux: XDP
Faster packet processing in Linux: XDPFaster packet processing in Linux: XDP
Faster packet processing in Linux: XDP
 
BPF & Cilium - Turning Linux into a Microservices-aware Operating System
BPF  & Cilium - Turning Linux into a Microservices-aware Operating SystemBPF  & Cilium - Turning Linux into a Microservices-aware Operating System
BPF & Cilium - Turning Linux into a Microservices-aware Operating System
 
Accelerating Envoy and Istio with Cilium and the Linux Kernel
Accelerating Envoy and Istio with Cilium and the Linux KernelAccelerating Envoy and Istio with Cilium and the Linux Kernel
Accelerating Envoy and Istio with Cilium and the Linux Kernel
 
Performance Wins with eBPF: Getting Started (2021)
Performance Wins with eBPF: Getting Started (2021)Performance Wins with eBPF: Getting Started (2021)
Performance Wins with eBPF: Getting Started (2021)
 

Similar to BPF - in-kernel virtual machine

Modern Linux Tracing Landscape
Modern Linux Tracing LandscapeModern Linux Tracing Landscape
Modern Linux Tracing LandscapeSasha Goldshtein
 
Berkeley Packet Filters
Berkeley Packet FiltersBerkeley Packet Filters
Berkeley Packet FiltersKernel TLV
 
MM-4105, Realtime 4K HDR Decoding with GPU ACES, by Gary Demos
MM-4105, Realtime 4K HDR Decoding with GPU ACES, by Gary DemosMM-4105, Realtime 4K HDR Decoding with GPU ACES, by Gary Demos
MM-4105, Realtime 4K HDR Decoding with GPU ACES, by Gary DemosAMD Developer Central
 
Kernel Recipes 2019 - BPF at Facebook
Kernel Recipes 2019 - BPF at FacebookKernel Recipes 2019 - BPF at Facebook
Kernel Recipes 2019 - BPF at FacebookAnne Nicolas
 
Dynamic Instrumentation- OpenEBS Golang Meetup July 2017
Dynamic Instrumentation- OpenEBS Golang Meetup July 2017Dynamic Instrumentation- OpenEBS Golang Meetup July 2017
Dynamic Instrumentation- OpenEBS Golang Meetup July 2017OpenEBS
 
OSN days 2019 - Open Networking and Programmable Switch
OSN days 2019 - Open Networking and Programmable SwitchOSN days 2019 - Open Networking and Programmable Switch
OSN days 2019 - Open Networking and Programmable SwitchChun Ming Ou
 
SF-TAP: Scalable and Flexible Traffic Analysis Platform (USENIX LISA 2015)
SF-TAP: Scalable and Flexible Traffic Analysis Platform (USENIX LISA 2015)SF-TAP: Scalable and Flexible Traffic Analysis Platform (USENIX LISA 2015)
SF-TAP: Scalable and Flexible Traffic Analysis Platform (USENIX LISA 2015)Yuuki Takano
 
Comprehensive XDP Off‌load-handling the Edge Cases
Comprehensive XDP Off‌load-handling the Edge CasesComprehensive XDP Off‌load-handling the Edge Cases
Comprehensive XDP Off‌load-handling the Edge CasesNetronome
 
Network Programming: Data Plane Development Kit (DPDK)
Network Programming: Data Plane Development Kit (DPDK)Network Programming: Data Plane Development Kit (DPDK)
Network Programming: Data Plane Development Kit (DPDK)Andriy Berestovskyy
 
BKK16-103 OpenCSD - Open for Business!
BKK16-103 OpenCSD - Open for Business!BKK16-103 OpenCSD - Open for Business!
BKK16-103 OpenCSD - Open for Business!Linaro
 
DEF CON 27 - JEFF DILEO - evil e bpf in depth
DEF CON 27 - JEFF DILEO - evil e bpf in depthDEF CON 27 - JEFF DILEO - evil e bpf in depth
DEF CON 27 - JEFF DILEO - evil e bpf in depthFelipe Prado
 
Routing basics/CEF
Routing basics/CEFRouting basics/CEF
Routing basics/CEFDmitry Figol
 
The Next Generation Firewall for Red Hat Enterprise Linux 7 RC
The Next Generation Firewall for Red Hat Enterprise Linux 7 RCThe Next Generation Firewall for Red Hat Enterprise Linux 7 RC
The Next Generation Firewall for Red Hat Enterprise Linux 7 RCThomas Graf
 
Microchip's PIC Micro Controller
Microchip's PIC Micro ControllerMicrochip's PIC Micro Controller
Microchip's PIC Micro ControllerMidhu S V Unnithan
 
Lec15 Computer Architecture by Hsien-Hsin Sean Lee Georgia Tech -- EPIC VLIW
Lec15 Computer Architecture by Hsien-Hsin Sean Lee Georgia Tech -- EPIC VLIWLec15 Computer Architecture by Hsien-Hsin Sean Lee Georgia Tech -- EPIC VLIW
Lec15 Computer Architecture by Hsien-Hsin Sean Lee Georgia Tech -- EPIC VLIWHsien-Hsin Sean Lee, Ph.D.
 
POWER processor and features presentation
POWER processor and features presentationPOWER processor and features presentation
POWER processor and features presentationGanesan Narayanasamy
 
Spying on the Linux kernel for fun and profit
Spying on the Linux kernel for fun and profitSpying on the Linux kernel for fun and profit
Spying on the Linux kernel for fun and profitAndrea Righi
 

Similar to BPF - in-kernel virtual machine (20)

Modern Linux Tracing Landscape
Modern Linux Tracing LandscapeModern Linux Tracing Landscape
Modern Linux Tracing Landscape
 
Ebpf ovsconf-2016
Ebpf ovsconf-2016Ebpf ovsconf-2016
Ebpf ovsconf-2016
 
Berkeley Packet Filters
Berkeley Packet FiltersBerkeley Packet Filters
Berkeley Packet Filters
 
MM-4105, Realtime 4K HDR Decoding with GPU ACES, by Gary Demos
MM-4105, Realtime 4K HDR Decoding with GPU ACES, by Gary DemosMM-4105, Realtime 4K HDR Decoding with GPU ACES, by Gary Demos
MM-4105, Realtime 4K HDR Decoding with GPU ACES, by Gary Demos
 
Kernel Recipes 2019 - BPF at Facebook
Kernel Recipes 2019 - BPF at FacebookKernel Recipes 2019 - BPF at Facebook
Kernel Recipes 2019 - BPF at Facebook
 
Dynamic Instrumentation- OpenEBS Golang Meetup July 2017
Dynamic Instrumentation- OpenEBS Golang Meetup July 2017Dynamic Instrumentation- OpenEBS Golang Meetup July 2017
Dynamic Instrumentation- OpenEBS Golang Meetup July 2017
 
OSN days 2019 - Open Networking and Programmable Switch
OSN days 2019 - Open Networking and Programmable SwitchOSN days 2019 - Open Networking and Programmable Switch
OSN days 2019 - Open Networking and Programmable Switch
 
SF-TAP: Scalable and Flexible Traffic Analysis Platform (USENIX LISA 2015)
SF-TAP: Scalable and Flexible Traffic Analysis Platform (USENIX LISA 2015)SF-TAP: Scalable and Flexible Traffic Analysis Platform (USENIX LISA 2015)
SF-TAP: Scalable and Flexible Traffic Analysis Platform (USENIX LISA 2015)
 
Comprehensive XDP Off‌load-handling the Edge Cases
Comprehensive XDP Off‌load-handling the Edge CasesComprehensive XDP Off‌load-handling the Edge Cases
Comprehensive XDP Off‌load-handling the Edge Cases
 
Network Programming: Data Plane Development Kit (DPDK)
Network Programming: Data Plane Development Kit (DPDK)Network Programming: Data Plane Development Kit (DPDK)
Network Programming: Data Plane Development Kit (DPDK)
 
Netlink-Optimization.pptx
Netlink-Optimization.pptxNetlink-Optimization.pptx
Netlink-Optimization.pptx
 
BKK16-103 OpenCSD - Open for Business!
BKK16-103 OpenCSD - Open for Business!BKK16-103 OpenCSD - Open for Business!
BKK16-103 OpenCSD - Open for Business!
 
15 ia64
15 ia6415 ia64
15 ia64
 
DEF CON 27 - JEFF DILEO - evil e bpf in depth
DEF CON 27 - JEFF DILEO - evil e bpf in depthDEF CON 27 - JEFF DILEO - evil e bpf in depth
DEF CON 27 - JEFF DILEO - evil e bpf in depth
 
Routing basics/CEF
Routing basics/CEFRouting basics/CEF
Routing basics/CEF
 
The Next Generation Firewall for Red Hat Enterprise Linux 7 RC
The Next Generation Firewall for Red Hat Enterprise Linux 7 RCThe Next Generation Firewall for Red Hat Enterprise Linux 7 RC
The Next Generation Firewall for Red Hat Enterprise Linux 7 RC
 
Microchip's PIC Micro Controller
Microchip's PIC Micro ControllerMicrochip's PIC Micro Controller
Microchip's PIC Micro Controller
 
Lec15 Computer Architecture by Hsien-Hsin Sean Lee Georgia Tech -- EPIC VLIW
Lec15 Computer Architecture by Hsien-Hsin Sean Lee Georgia Tech -- EPIC VLIWLec15 Computer Architecture by Hsien-Hsin Sean Lee Georgia Tech -- EPIC VLIW
Lec15 Computer Architecture by Hsien-Hsin Sean Lee Georgia Tech -- EPIC VLIW
 
POWER processor and features presentation
POWER processor and features presentationPOWER processor and features presentation
POWER processor and features presentation
 
Spying on the Linux kernel for fun and profit
Spying on the Linux kernel for fun and profitSpying on the Linux kernel for fun and profit
Spying on the Linux kernel for fun and profit
 

Recently uploaded

The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...ICS
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsAlberto González Trastoy
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataBradBedford3
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfjoe51371421
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️anilsa9823
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfkalichargn70th171
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxbodapatigopi8531
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...kellynguyen01
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...MyIntelliSource, Inc.
 
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfkalichargn70th171
 
Active Directory Penetration Testing, cionsystems.com.pdf
Active Directory Penetration Testing, cionsystems.com.pdfActive Directory Penetration Testing, cionsystems.com.pdf
Active Directory Penetration Testing, cionsystems.com.pdfCionsystems
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...OnePlan Solutions
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...soniya singh
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)OPEN KNOWLEDGE GmbH
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...harshavardhanraghave
 

Recently uploaded (20)

The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
The Real-World Challenges of Medical Device Cybersecurity- Mitigating Vulnera...
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdf
 
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online  ☂️
CALL ON ➥8923113531 🔝Call Girls Kakori Lucknow best sexual service Online ☂️
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...Call Girls In Mukherjee Nagar 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
Call Girls In Mukherjee Nagar 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SE...
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
 
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
Short Story: Unveiling the Reasoning Abilities of Large Language Models by Ke...
 
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS LiveVip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
Vip Call Girls Noida ➡️ Delhi ➡️ 9999965857 No Advance 24HRS Live
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
 
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
 
Active Directory Penetration Testing, cionsystems.com.pdf
Active Directory Penetration Testing, cionsystems.com.pdfActive Directory Penetration Testing, cionsystems.com.pdf
Active Directory Penetration Testing, cionsystems.com.pdf
 
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
Tech Tuesday-Harness the Power of Effective Resource Planning with OnePlan’s ...
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)
 
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
Reassessing the Bedrock of Clinical Function Models: An Examination of Large ...
 

BPF - in-kernel virtual machine

  • 1. BPF – in-kernel virtual machine 1!
  • 2. BPF is •  Berkeley Packet Filter •  low level instruction set •  kernel infrastructure around it •  interpreter •  JITs •  maps •  helper functions
  • 3. Agenda •  status and new use cases •  architecture and design •  demo
  • 4. extended BPF JITs and compilers •  x64 JIT upstreamed •  arm64 JIT upstreamed •  s390 JIT in progress •  ppc JIT in progress •  LLVM backend is upstreamed •  gcc backend is in progress
  • 5. extended BPF use cases 1.  networking 2.  tracing (analytics, monitoring, debugging) 3.  in-kernel optimizations 4.  hw modeling 5.  crazy stuff...
  • 6. 1. extended BPF in networking •  socket filters •  four use cases of bpf in openvswitch (bpf+ovs) •  bpf as an action on flow-hit •  bpf as fallback on flow-miss •  bpf as packet parser before flow lookup •  bpf to completely replace ovs datapath •  two use cases in traffic control (bpf+tc) •  cls – packet parser and classifier •  act – action •  bpf as net_device
  • 7. 2. extended BPF in tracing •  bpf+kprobe – dtrace/systemtap like •  bpf+syscalls – analytics and monitoring •  bpf+tracepoints – faster alternative to kprobes •  TCP stack instrumentation with bpf+tracepoints as non- intrusive alternative to web10g •  disk latency monitoring •  live kernel debugging (with and without debug info)
  • 8. 3. extended BPF for in-kernel optimizations •  kernel interface is kept unmodified. subsystems use bpf to accelerate internal execution •  predicate tree walker of tracing filters -> bpf •  nft (netfilter tables) -> bpf
  • 9. 4. extended BPF for HW modeling •  p4 – language for programing flexible network switches •  p4 compiler into bpf (userspace) •  pass bpf into kernel via switchdev abstraction •  rocker device (part of qemu) to execute bpf
  • 10. 5. other crazy uses of BPF •  'reverse BPF' was proposed •  in-kernel NIC drivers expose BPF back to user space as generic program to construct hw specific data structures •  bpf -> NPUs •  some networking HW vendors planning to translate bpf directly to HW
  • 11. classic BPF •  BPF - Berkeley Packet Filter •  inspired by BSD •  introduced in linux in 1997 in version 2.1.75 •  initially used as socket filter by packet capture tool tcpdump (via libpcap)
  • 12. classic BPF •  two 32-bit registers: A, X •  implicit stack of 16 32-bit slots (LD_MEM, ST_MEM insns) •  full integer arithmetic •  explicit load/store from packet (LD_ABS, LD_IND insns) •  conditional branches (with two destinations: jump true/false)
  • 13. Ex: tcpdump syntax and classic BPF assembler •  tcpdump –d 'ip and tcp port 22’ (000) ldh [12] // fetch eth proto
 (001) jeq #0x800 jt 2"jf 12 // is it IPv4 ?
 (002) ldb [23] // fetch ip proto
 (003) jeq #0x6 jt 4"jf 12 // is it TCP ?
 (004) ldh [20] // fetch frag_off
 (005) jset #0x1fff jt 12 jf 6 // is it a frag?
 (006) ldxb 4*([14]&0xf) // fetch ip header len
 (007) ldh [x + 14] // fetch src port
 (008) jeq #0x16 jt 11 jf 9 // is it 22 ?
 (009) ldh [x + 16] // fetch dest port
 (010) jeq #0x16 jt 11 jf 12 // is it 22 ?
 (011) ret #65535 // trim packet and pass
 (012) ret #0 // ignore packet"
  • 14. Classic BPF for use cases •  socket filters (drop or trim packet and pass to user space) •  used by tcpdump/libpcap, wireshark, nmap, dhcp, arpd, ... •  in networking subsystems •  cls_bpf (TC classifier), xt_bpf, ppp, team, ... •  seccomp (chrome sandboxing) •  introduced in 2012 to filter syscall arguments with bpf program
  • 15. Classic BPF safety •  verifier checks all instructions, forward jumps only, stack slot load/store, etc •  instruction set has some built-in safety (no exposed stack pointer, instead load instruction has ‘mem’ modifier) •  dynamic packet-boundary checks
  • 16. Classic BPF extensions •  over years multiple extensions were added in the form of ‘load from negative hard coded offset’ •  LD_ABS -0x1000 – skb->protocol LD_ABS -0x1000+4 – skb->pkt_type LD_ABS -0x1000+56 – get_random()
  • 17. Extended BPF •  design goals: •  parse, lookup, update, modify network packets •  loadable as kernel modules on demand, on live traffic •  safe on production system •  performance equal to native x86 code •  fast interpreter speed (good performance on all architectures) •  calls into bpf and calls from bpf to kernel should be free (no FFI overhead)
  • 18. in kernel 3.15 tcpdump dhclient chrome cls, xt, team, ppp, … classic -> extended bpf engine
  • 19. in kernel 3.18 tcpdump dhclient chrome gcc/llvm libbpf classic -> extended bpf engine bpf syscall verifier x64 JIT arm64 JIT
  • 20. Early prototypes •  Failed approach #1 (design a VM from scratch) •  performance was too slow, user tools need to be developed from scratch as well •  Failed approach #2 (have kernel disassemble and verify x86 instructions) •  too many instruction combinations, disasm/verifier needs to be rewritten for every architecture
  • 21. Extended BPF •  take a mix of real CPU instructions •  10% classic BPF + 70% x86 + 25% arm64 + 5% risc •  rename every x86 instruction ‘mov rax, rbx’ into ‘mov r1, r2’ •  analyze x86/arm64/risc calling conventions and define a common one for this ‘renamed’ instruction set •  make instruction encoding fixed size (for high interpreter speed) •  reuse classic BPF instruction encoding (for trivial classic- >extended conversion)
  • 22. extended vs classic BPF •  ten 64-bit registers vs two 32-bit registers •  arbitrary load/store vs stack load/store •  call instruction
  • 23. Performance •  user space compiler ‘thinks’ that it’s emitting simplified x86 code •  kernel verifies this ‘simplified x86’ code •  kernel JIT translates each ‘simplified x86’ insn into real x86 •  all registers map one-to-one •  most of instructions map one-to-one •  bpf ‘call’ instruction maps to x86 ‘call’
  • 24. Extended BPF calling convention •  BPF calling convention was carefully selected to match a subset of amd64/arm64 ABIs to avoid extra copy in calls: •  R0 – return value •  R1..R5 – function arguments •  R6..R9 – callee saved •  R10 – frame pointer
  • 25. Mapping of BPF registers to x86 •  R0 – rax return value from function
 R1 – rdi 1st argument
 R2 – rsi 2nd argument
 R3 – rdx 3rd argument
 R4 – rcx 4th argument
 R5 – r8 5th argument
 R6 – rbx callee saved
 R7 - r13 callee saved
 R8 - r14 callee saved
 R9 - r15 callee saved
 R10 – rbp frame pointer"
  • 26. calls and helper functions •  bpf ‘call’ and set of in-kernel helper functions define what bpf programs can do •  bpf code itself is a ‘glue’ between calls to in-kernel helper functions •  helpers •  map_lookup/update/delete •  ktime_get •  packet_write •  fetch
  • 27. BPF maps •  maps is a generic storage of different types for sharing data between kernel and userspace •  The maps are accessed from user space via BPF syscall, which has commands: •  create a map with given type and attributes map_fd = bpf(BPF_MAP_CREATE, union bpf_attr *attr, u32 size) •  lookup key/value, update, delete, iterate, delete a map •  userspace programs use this syscall to create/access maps that BPF programs are concurrently updating
  • 28. BPF compilers •  BPF backend for LLVM is in trunk and will be released as part of 3.7 •  BPF backend for GCC is being worked on •  C front-end (clang) is used today to compile C code into BPF •  tracing and networking use cases may need custom languages •  BPF backend only knows how to emit instructions (calls to helper functions look like normal calls)
  • 29. Extended BPF assembler 0: r1 = *(u64 *)(r1 +8)
 1: *(u64 *)(r10 -8) = r1
 2: r1 = 1
 3: *(u64 *)(r10 -16) = r1
 4: r1 = map_fd
 6: r2 = r10
 7: r2 += -8
 8: call 1
 9: if r0 == 0x0 goto pc+4
 10: r1 = *(u64 *)(r0 +0)
 11: r1 += 1
 12: *(u64 *)(r0 +0) = r1
 13: goto pc+8
 14: r1 = map_fd
 16: r2 = r10
 17: r2 += -8
 18: r3 = r10
 19: r3 += -16
 20: r4 = 0
 21: call 2
 22: r0 = 0
 23: exit" int bpf_prog(struct bpf_context *ctx)
 {
 u64 loc = ctx->arg2;
 u64 init_val = 1;
 u64 *value;
 
 value = bpf_map_lookup_elem(&my_map, &loc);
 if (value)
 *value += 1;
 else
 bpf_map_update_elem(&my_map, &loc,
 &init_val, BPF_ANY);
 return 0;
 }" " compiled by LLVM from C to bpf asm
  • 30. compiler as a library tracing script in .txt file bpf_create_map .txt parser llvm mcjit api bpf backend x64 backend bpf code x86 code bpf_prog_load user kernel libllvm perf binary run it
  • 31. BPF verifier (CFG check) •  To minimize run-time overhead anything that can be checked statically is done by verifier •  all jumps of a program form a CFG which is checked for loops •  DAG check = non-recursive depth-first-search •  if back-edge exists -> there is a loop -> reject program •  jumps back are allowed if they don’t form loops •  bpf compiler can move cold basic blocks out of critical path •  likely/unlikely() hints give extra performance
  • 32. BPF verifier (instruction walking) •  once it’s known that all paths through the program reach final ‘exit’ instruction, brute force analyzer of all instructions starts •  it descents all possible paths from the 1st insn till ‘exit’ insn •  it simulates execution of every insn and updates the state change of registers and stack
  • 33. BPF verifier •  at the start of the program: •  type of R1 = PTR_TO_CTX type of R10 = FRAME_PTR other registers and stack is unreadable •  when verifier sees: •  ‘R2 = R1’ instruction it copies the type of R1 into R2 •  ‘R3 = 123’ instruction, the type of R3 becomes CONST_IMM •  ‘exit’ instruction, it checks that R0 is readable •  ‘if (R4 == 456) goto pc+5’ instruction, it checks that R4 is readable and forks current state of registers and stack into ‘true’ and ‘false’ branches
  • 34. BPF verifier (state pruning) •  every branch adds another fork for verifier to explore, therefore branch pruning is important •  when verifiers sees an old state that has more strict register state and more strict stack state then the current branch doesn't need to be explored further, since verifier already concluded that more strict state leads to valid ‘exit’ •  two states are equivalent if register state is more conservative and explored stack state is more conservative than the current one
  • 35. unprivileged programs? •  today extended BPF is root only •  to consider unprivileged access: •  teach verifier to conditionally reject programs that expose kernel addresses to user space •  constant blinding pass
  • 36. BPF for tracing •  BPF is seen as alternative to systemtap/dtrace •  provides in-kernel aggregation, event filtering •  can be 'always on' •  must have minimal overhead
  • 37. BPF for tracing (kernel part) struct bpf_map_def SEC("maps") my_hist_map = { .type = BPF_MAP_TYPE_ARRAY, .key_size = sizeof(u32), .value_size = sizeof(u64), .max_entries = 64, }; SEC("events/syscalls/sys_enter_write") int bpf_prog(struct bpf_context *ctx) { u64 write_size = ctx->arg3; u32 index = log2(write_size); u64 *value; value = bpf_map_lookup_elem(&my_hist_map, &index); if (value) __sync_fetch_and_add(value, 1); return 0; } sent to kernel as bpf map via bpf() syscall compiled by llvm into .o and loaded via bpf() syscall name of elf section - tracing event to attach via perf_event ioctl
  • 38. BPF for tracing (user part) u64 data[64] = {}; u32 key; u64 value; for (key = 0; key < 64; key++) { bpf_lookup_elem(fd, &key, &value); data[key] = value; if (value && key > max_ind) max_ind = key; if (value > max_value) max_value = value; } printf("syscall write() statsn"); user space walks the map and fetches elements via bpf() syscall syscall write() stats" byte_size : count distribution" 1 -> 1 : 9 |*************************** |" 2 -> 3 : 0 | |" 4 -> 7 : 0 | |" 8 -> 15 : 2 |***** |" 16 -> 31 : 0 | |" 32 -> 63 : 10 |****************************** |" 64 -> 127 : 12 |************************************* |" 128 -> 255 : 1 |** |" 256 -> 511 : 2 |***** |"