XDP (eXpress Data Path)
XDP (eXpress Data Path) is a high-performance data path framework within the Linux kernel that enables programmable packet processing at the earliest possible point—directly within the network driver. By executing lightweight eBPF (extended Berkeley Packet Filter) programs before packets enter the main kernel networking stack, XDP bypasses significant processing overhead, allowing for operations like dropping, forwarding, or modifying packets at near line-rate speeds. This makes it an exceptionally powerful technology for building high-speed network functions such as DDoS mitigation systems, efficient load balancers, and advanced firewalls, where processing millions of packets per second is critical.
- Introduction to High-Performance Networking
Go to top
Next
2. XDP Fundamentals