mirror of
https://github.com/tailscale/tailscale.git
synced 2025-12-05 04:11:59 +00:00
derp/xdp,cmd/xdpderper: initial skeleton (#12390)
This commit introduces a userspace program for managing an experimental eBPF XDP STUN server program. derp/xdp contains the eBPF pseudo-C along with a Go pkg for loading it and exporting its metrics. cmd/xdpderper is a package main user of derp/xdp. Updates tailscale/corp#20689 Signed-off-by: Jordan Whited <jordan@tailscale.com>
This commit is contained in:
45
derp/xdp/xdp.go
Normal file
45
derp/xdp/xdp.go
Normal file
@@ -0,0 +1,45 @@
|
||||
// Copyright (c) Tailscale Inc & AUTHORS
|
||||
// SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
package xdp
|
||||
|
||||
// XDPAttachFlags represents how XDP program will be attached to interface. This
|
||||
// is a mirror of cilium/ebpf/link.AttachFlags, without pulling it in for
|
||||
// non-Linux.
|
||||
type XDPAttachFlags uint32
|
||||
|
||||
const (
|
||||
// XDPDriverFallbackGenericMode attempts XDPDriverMode, and falls back to
|
||||
// XDPGenericMode if the driver does not support XDP.
|
||||
XDPDriverFallbackGenericMode = 0
|
||||
)
|
||||
|
||||
const (
|
||||
// XDPGenericMode (SKB) links XDP BPF program for drivers which do
|
||||
// not yet support native XDP.
|
||||
XDPGenericMode XDPAttachFlags = 1 << (iota + 1)
|
||||
// XDPDriverMode links XDP BPF program into the driver’s receive path.
|
||||
XDPDriverMode
|
||||
// XDPOffloadMode offloads the entire XDP BPF program into hardware.
|
||||
XDPOffloadMode
|
||||
)
|
||||
|
||||
// STUNServerConfig represents the configuration of a STUNServer.
|
||||
type STUNServerConfig struct {
|
||||
DeviceName string
|
||||
DstPort int
|
||||
AttachFlags XDPAttachFlags
|
||||
// Return XDP verifier errors in their entirety. This is a multiline error
|
||||
// that can be very long. Full verifier errors are primarily useful during
|
||||
// development, but should be mostly unexpected in a production environment.
|
||||
FullVerifierErr bool
|
||||
}
|
||||
|
||||
type STUNServerOption interface {
|
||||
apply(*stunServerOptions)
|
||||
}
|
||||
|
||||
type stunServerOptions struct {
|
||||
//lint:ignore U1000 used in xdp_linux_test.go
|
||||
noAttach bool
|
||||
}
|
||||
Reference in New Issue
Block a user