xdp_loader: refactor to use subcommands

No change to behavior, just a refactor.

Another program (tunnel) is coming, and the code is becoming unwieldy. Impose
some structure.

PiperOrigin-RevId: 472818768
This commit is contained in:
Kevin Krakauer
2022-09-07 14:55:23 -07:00
committed by gVisor bot
parent 3fb884c2b8
commit 7c8624e575
5 changed files with 368 additions and 192 deletions
+5
View File
@@ -5,7 +5,10 @@ package(licenses = ["notice"])
go_binary(
name = "xdp_loader",
srcs = [
"drop.go",
"main.go",
"pass.go",
"tcpdump.go",
],
embedsrcs = [
"//tools/xdp/bpf:drop_ebpf.o", # keep
@@ -19,8 +22,10 @@ go_binary(
"//pkg/tcpip/link/sniffer",
"//pkg/tcpip/stack",
"//pkg/xdp",
"//runsc/flag",
"@com_github_cilium_ebpf//:go_default_library",
"@com_github_cilium_ebpf//link:go_default_library",
"@com_github_google_subcommands//:go_default_library",
"@org_golang_x_sys//unix:go_default_library",
],
)
+63
View File
@@ -0,0 +1,63 @@
// Copyright 2022 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 main
import (
"context"
_ "embed"
"log"
"github.com/google/subcommands"
"gvisor.dev/gvisor/runsc/flag"
)
//go:embed bpf/drop_ebpf.o
var dropProgram []byte
// DropCommand is a subcommand for dropping packets.
type DropCommand struct {
device string
deviceIndex int
}
// Name implements subcommands.Command.Name.
func (*DropCommand) Name() string {
return "drop"
}
// Synopsis implements subcommands.Command.Synopsis.
func (*DropCommand) Synopsis() string {
return "Drop all packets to the kernel network stack."
}
// Usage implements subcommands.Command.Usage.
func (*DropCommand) Usage() string {
return "drop -device <device> or -devidx <device index>"
}
// SetFlags implements subcommands.Command.SetFlags.
func (pc *DropCommand) SetFlags(fs *flag.FlagSet) {
fs.StringVar(&pc.device, "device", "", "which device to attach to")
fs.IntVar(&pc.deviceIndex, "devidx", 0, "which device to attach to")
}
// Execute implements subcommands.Command.Execute.
func (pc *DropCommand) Execute(context.Context, *flag.FlagSet, ...interface{}) subcommands.ExitStatus {
if err := runBasicProgram(dropProgram, pc.device, pc.deviceIndex); err != nil {
log.Printf("%v", err)
return subcommands.ExitFailure
}
return subcommands.ExitSuccess
}
+62 -192
View File
@@ -21,143 +21,86 @@ package main
import (
"bytes"
"context"
_ "embed"
"errors"
"flag"
"fmt"
"log"
"net"
"os"
"github.com/cilium/ebpf"
"github.com/cilium/ebpf/link"
"github.com/google/subcommands"
"golang.org/x/sys/unix"
"gvisor.dev/gvisor/pkg/bufferv2"
"gvisor.dev/gvisor/pkg/tcpip/header"
"gvisor.dev/gvisor/pkg/tcpip/link/sniffer"
"gvisor.dev/gvisor/pkg/tcpip/stack"
"gvisor.dev/gvisor/pkg/xdp"
"gvisor.dev/gvisor/runsc/flag"
)
// Flags.
var (
device = flag.String("device", "", "which device to attach to")
deviceIndex = flag.Int("devidx", 0, "which device to attach to")
program = flag.String("program", "", "which program to install: one of [pass, drop, tcpdump]")
)
// Builtin programs selectable by users.
var (
//go:embed bpf/pass_ebpf.o
pass []byte
//go:embed bpf/drop_ebpf.o
drop []byte
//go:embed bpf/tcpdump_ebpf.o
tcpdump []byte
)
var programs = map[string][]byte{
"pass": pass,
"drop": drop,
"tcpdump": tcpdump,
}
func main() {
// log.Fatalf skips important defers, so put everythin in the run
// function where it can return errors instead.
if err := run(); err != nil {
log.Fatalf("%v", err)
}
}
func run() error {
// Sanity check.
for name, prog := range programs {
if len(prog) == 0 {
panic(fmt.Sprintf("the %s program failed to embed", name))
}
}
subcommands.Register(new(DropCommand), "")
subcommands.Register(new(PassCommand), "")
subcommands.Register(new(TcpdumpCommand), "")
flag.Parse()
ctx := context.Background()
os.Exit(int(subcommands.Execute(ctx)))
}
// Get a net device.
var iface *net.Interface
var err error
switch {
case *device != "" && *deviceIndex != 0:
return fmt.Errorf("must specify exactly one of -device or -devidx")
case *device != "":
if iface, err = net.InterfaceByName(*device); err != nil {
return fmt.Errorf("unknown device %q: %v", *device, err)
}
case *deviceIndex != 0:
if iface, err = net.InterfaceByIndex(*deviceIndex); err != nil {
return fmt.Errorf("unknown device with index %d: %v", *deviceIndex, err)
}
default:
return fmt.Errorf("must specify -device or -devidx")
func runBasicProgram(progData []byte, device string, deviceIndex int) error {
iface, err := getIface(device, deviceIndex)
if err != nil {
return fmt.Errorf("%v", err)
}
// Choose a program.
if *program == "" {
return fmt.Errorf("must specify -program")
}
progData, ok := programs[*program]
if !ok {
return fmt.Errorf("unknown program %q", *program)
}
// Load into the kernel. Note that this is usually done using bpf2go,
// but since we haven't set up that tool we do everything manually.
// Load into the kernel.
spec, err := ebpf.LoadCollectionSpecFromReader(bytes.NewReader(progData))
if err != nil {
return fmt.Errorf("failed to load spec: %v", err)
}
// We need to pass a struct with a field of a specific type and tag.
var programObject *ebpf.Program
var sockmap *ebpf.Map
switch *program {
case "pass", "drop":
var objects struct {
Program *ebpf.Program `ebpf:"xdp_prog"`
}
if err := spec.LoadAndAssign(&objects, nil); err != nil {
return fmt.Errorf("failed to load program: %v", err)
}
programObject = objects.Program
defer func() {
if err := objects.Program.Close(); err != nil {
log.Printf("failed to close program: %v", err)
}
}()
case "tcpdump":
var objects struct {
Program *ebpf.Program `ebpf:"xdp_prog"`
SockMap *ebpf.Map `ebpf:"sock_map"`
}
if err := spec.LoadAndAssign(&objects, nil); err != nil {
return fmt.Errorf("failed to load program: %v", err)
}
programObject = objects.Program
sockmap = objects.SockMap
defer func() {
if err := objects.Program.Close(); err != nil {
log.Printf("failed to close program: %v", err)
}
if err := objects.SockMap.Close(); err != nil {
log.Printf("failed to close sock map: %v", err)
}
}()
default:
return fmt.Errorf("unknown program %q", *program)
var objects struct {
Program *ebpf.Program `ebpf:"xdp_prog"`
}
if err := spec.LoadAndAssign(&objects, nil); err != nil {
return fmt.Errorf("failed to load program: %v", err)
}
defer func() {
if err := objects.Program.Close(); err != nil {
fmt.Printf("failed to close program: %v", err)
}
}()
// TODO(b/240191988): It would be nice to automatically detatch
// existing XDP programs, although this can be done with iproute2:
// $ ip link set dev eth1 xdp off
cleanup, err := attach(objects.Program, iface)
if err != nil {
return fmt.Errorf("failed to attach: %v", err)
}
defer cleanup()
waitForever()
return nil
}
func getIface(device string, deviceIndex int) (*net.Interface, error) {
switch {
case device != "" && deviceIndex != 0:
return nil, fmt.Errorf("device specified twice")
case device != "":
iface, err := net.InterfaceByName(device)
if err != nil {
return nil, fmt.Errorf("unknown device %q: %v", device, err)
}
return iface, nil
case deviceIndex != 0:
iface, err := net.InterfaceByIndex(deviceIndex)
if err != nil {
return nil, fmt.Errorf("unknown device with index %d: %v", deviceIndex, err)
}
return iface, nil
default:
return nil, fmt.Errorf("no device specified")
}
}
func attach(program *ebpf.Program, iface *net.Interface) (func(), error) {
// Attach the program to the XDP hook on the device. Fallback from best
// to worst mode.
modes := []struct {
@@ -169,9 +112,10 @@ func run() error {
{name: "generic", flag: link.XDPGenericMode},
}
var attached link.Link
var err error
for _, mode := range modes {
attached, err = link.AttachXDP(link.XDPOptions{
Program: programObject,
Program: program,
Interface: iface.Index,
Flags: mode.flag,
})
@@ -182,88 +126,14 @@ func run() error {
log.Printf("failed to attach with mode %q: %v", mode.name, err)
}
if attached == nil {
return fmt.Errorf("failed to attach program")
}
defer attached.Close()
// tcpdump requires opening an AF_XDP socket and having a goroutine
// listen for packets.
if *program == "tcpdump" {
if err := startTcpdump(iface, sockmap); err != nil {
return fmt.Errorf("failed to create AF_XDP socket: %v", err)
}
return nil, fmt.Errorf("failed to attach program")
}
return func() { attached.Close() }, nil
}
func waitForever() {
log.Printf("Successfully attached! Press CTRL-C to quit and remove the program from the device.")
for {
unix.Pause()
}
}
func startTcpdump(iface *net.Interface, sockMap *ebpf.Map) error {
umem, fillQueue, rxQueue, err := xdp.ReadOnlySocket(
uint32(iface.Index), 0 /* queueID */, xdp.DefaultReadOnlyOpts())
if err != nil {
return fmt.Errorf("failed to create socket: %v", err)
}
// Insert our AF_XDP socket into the BPF map that dictates where
// packets are redirected to.
key := uint32(0)
val := umem.SockFD()
if err := sockMap.Update(&key, &val, 0 /* flags */); err != nil {
return fmt.Errorf("failed to insert socket into BPF map: %v", err)
}
log.Printf("updated key %d to value %d", key, val)
// Put as many UMEM buffers into the fill queue as possible.
fillQueue.FillAll()
go func() {
for {
pfds := []unix.PollFd{{Fd: int32(umem.SockFD()), Events: unix.POLLIN}}
_, err := unix.Poll(pfds, -1)
if err != nil {
if errors.Is(err, unix.EINTR) {
continue
}
panic(fmt.Sprintf("poll failed: %v", err))
}
// How many packets did we get?
nReceived, rxIndex := rxQueue.Peek()
if nReceived == 0 {
continue
}
// Keep the fill queue full.
fillQueue.FillAll()
// Read packets one-by-one and log them.
for i := uint32(0); i < nReceived; i++ {
// Wrap the packet in a PacketBuffer.
descriptor := rxQueue.Get(rxIndex + i)
data := umem.Get(descriptor)
pkt := stack.NewPacketBuffer(stack.PacketBufferOptions{
Payload: bufferv2.MakeWithData(data[header.EthernetMinimumSize:]),
})
sniffer.LogPacket("",
sniffer.DirectionRecv, // XDP operates only on ingress.
header.Ethernet(data).Type(),
pkt)
// NOTE: the address is always 256 bytes offset
// from a page boundary. The kernel masks the
// address to the frame size, so this isn't a
// problem.
//
// Note that this limits MTU to 4096-256 bytes.
umem.FreeFrame(descriptor.Addr)
}
rxQueue.Release(nReceived)
}
}()
return nil
}
+63
View File
@@ -0,0 +1,63 @@
// Copyright 2022 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 main
import (
"context"
_ "embed"
"log"
"github.com/google/subcommands"
"gvisor.dev/gvisor/runsc/flag"
)
//go:embed bpf/pass_ebpf.o
var passProgram []byte
// PassCommand is a subcommand for passing packets to the kernel network stack.
type PassCommand struct {
device string
deviceIndex int
}
// Name implements subcommands.Command.Name.
func (*PassCommand) Name() string {
return "pass"
}
// Synopsis implements subcommands.Command.Synopsis.
func (*PassCommand) Synopsis() string {
return "Pass all packets to the kernel network stack."
}
// Usage implements subcommands.Command.Usage.
func (*PassCommand) Usage() string {
return "pass -device <device> or -devidx <device index>"
}
// SetFlags implements subcommands.Command.SetFlags.
func (pc *PassCommand) SetFlags(fs *flag.FlagSet) {
fs.StringVar(&pc.device, "device", "", "which device to attach to")
fs.IntVar(&pc.deviceIndex, "devidx", 0, "which device to attach to")
}
// Execute implements subcommands.Command.Execute.
func (pc *PassCommand) Execute(context.Context, *flag.FlagSet, ...interface{}) subcommands.ExitStatus {
if err := runBasicProgram(passProgram, pc.device, pc.deviceIndex); err != nil {
log.Printf("%v", err)
return subcommands.ExitFailure
}
return subcommands.ExitSuccess
}
+175
View File
@@ -0,0 +1,175 @@
// Copyright 2022 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 main
import (
"bytes"
"context"
_ "embed"
"errors"
"fmt"
"log"
"github.com/cilium/ebpf"
"github.com/google/subcommands"
"golang.org/x/sys/unix"
"gvisor.dev/gvisor/pkg/bufferv2"
"gvisor.dev/gvisor/pkg/tcpip/header"
"gvisor.dev/gvisor/pkg/tcpip/link/sniffer"
"gvisor.dev/gvisor/pkg/tcpip/stack"
"gvisor.dev/gvisor/pkg/xdp"
"gvisor.dev/gvisor/runsc/flag"
)
//go:embed bpf/tcpdump_ebpf.o
var tcpdumpProgram []byte
// TcpdumpCommand is a subcommand for capturing incoming packets.
type TcpdumpCommand struct {
device string
deviceIndex int
}
// Name implements subcommands.Command.Name.
func (*TcpdumpCommand) Name() string {
return "tcpdump"
}
// Synopsis implements subcommands.Command.Synopsis.
func (*TcpdumpCommand) Synopsis() string {
return "Run tcpdump-like program that blocks incoming packets."
}
// Usage implements subcommands.Command.Usage.
func (*TcpdumpCommand) Usage() string {
return "tcpdump -device <device> or -devidx <device index>"
}
// SetFlags implements subcommands.Command.SetFlags.
func (pc *TcpdumpCommand) SetFlags(fs *flag.FlagSet) {
fs.StringVar(&pc.device, "device", "", "which device to attach to")
fs.IntVar(&pc.deviceIndex, "devidx", 0, "which device to attach to")
}
// Execute implements subcommands.Command.Execute.
func (pc *TcpdumpCommand) Execute(context.Context, *flag.FlagSet, ...interface{}) subcommands.ExitStatus {
if err := pc.execute(); err != nil {
fmt.Printf("%v", err)
return subcommands.ExitFailure
}
return subcommands.ExitSuccess
}
func (pc *TcpdumpCommand) execute() error {
iface, err := getIface(pc.device, pc.deviceIndex)
if err != nil {
return fmt.Errorf("%v", err)
}
// Load into the kernel.
spec, err := ebpf.LoadCollectionSpecFromReader(bytes.NewReader(tcpdumpProgram))
if err != nil {
return fmt.Errorf("failed to load spec: %v", err)
}
var objects struct {
Program *ebpf.Program `ebpf:"xdp_prog"`
SockMap *ebpf.Map `ebpf:"sock_map"`
}
if err := spec.LoadAndAssign(&objects, nil); err != nil {
return fmt.Errorf("failed to load program: %v", err)
}
defer func() {
if err := objects.Program.Close(); err != nil {
log.Printf("failed to close program: %v", err)
}
if err := objects.SockMap.Close(); err != nil {
log.Printf("failed to close sock map: %v", err)
}
}()
cleanup, err := attach(objects.Program, iface)
if err != nil {
return fmt.Errorf("failed to attach: %v", err)
}
defer cleanup()
umem, fillQueue, rxQueue, err := xdp.ReadOnlySocket(
uint32(iface.Index), 0 /* queueID */, xdp.DefaultReadOnlyOpts())
if err != nil {
return fmt.Errorf("failed to create socket: %v", err)
}
// Insert our AF_XDP socket into the BPF map that dictates where
// packets are redirected to.
key := uint32(0)
val := umem.SockFD()
if err := objects.SockMap.Update(&key, &val, 0 /* flags */); err != nil {
return fmt.Errorf("failed to insert socket into BPF map: %v", err)
}
log.Printf("updated key %d to value %d", key, val)
// Put as many UMEM buffers into the fill queue as possible.
fillQueue.FillAll()
go func() {
for {
pfds := []unix.PollFd{{Fd: int32(umem.SockFD()), Events: unix.POLLIN}}
_, err := unix.Poll(pfds, -1)
if err != nil {
if errors.Is(err, unix.EINTR) {
continue
}
panic(fmt.Sprintf("poll failed: %v", err))
}
// How many packets did we get?
nReceived, rxIndex := rxQueue.Peek()
if nReceived == 0 {
continue
}
// Keep the fill queue full.
fillQueue.FillAll()
// Read packets one-by-one and log them.
for i := uint32(0); i < nReceived; i++ {
// Wrap the packet in a PacketBuffer.
descriptor := rxQueue.Get(rxIndex + i)
data := umem.Get(descriptor)
pkt := stack.NewPacketBuffer(stack.PacketBufferOptions{
Payload: bufferv2.MakeWithData(data[header.EthernetMinimumSize:]),
})
sniffer.LogPacket("",
sniffer.DirectionRecv, // XDP operates only on ingress.
header.Ethernet(data).Type(),
pkt)
// NOTE: the address is always 256 bytes offset
// from a page boundary. The kernel masks the
// address to the frame size, so this isn't a
// problem.
//
// Note that this limits MTU to 4096-256 bytes.
umem.FreeFrame(descriptor.Addr)
}
rxQueue.Release(nReceived)
}
}()
waitForever()
return nil
}