Documentation ¶
Overview ¶
Package afpacket provides Go bindings for MMap'd AF_PACKET socket reading.
Index ¶
- Constants
- Variables
- type FanoutType
- type OptBlockSize
- type OptBlockTimeout
- type OptFrameSize
- type OptInterface
- type OptNumBlocks
- type OptPollTimeout
- type OptSocketType
- type OptTPacketVersion
- type SocketStats
- type SocketStatsV3
- type Stats
- type TPacket
- func (h *TPacket) Close()
- func (h *TPacket) InitSocketStats() error
- func (h *TPacket) ReadPacketData() (data []byte, ci gopacket.CaptureInfo, err error)
- func (h *TPacket) ReadPacketDataTo(data []byte) (ci gopacket.CaptureInfo, err error)
- func (h *TPacket) SetBPF(filter []bpf.RawInstruction) error
- func (h *TPacket) SetFanout(t FanoutType, id uint16) error
- func (h *TPacket) SocketStats() (SocketStats, SocketStatsV3, error)
- func (h *TPacket) Stats() (Stats, error)
- func (h *TPacket) WritePacketData(pkt []byte) error
- func (h *TPacket) ZeroCopyReadPacketData() (data []byte, ci gopacket.CaptureInfo, err error)
Constants ¶
const ( // TPacketVersionHighestAvailable tells NewHandle to use the highest available version of tpacket the kernel has available. // This is the default, should a version number not be given in NewHandle's options. TPacketVersionHighestAvailable = OptTPacketVersion(-1) TPacketVersion1 = OptTPacketVersion(C.TPACKET_V1) TPacketVersion2 = OptTPacketVersion(C.TPACKET_V2) TPacketVersion3 = OptTPacketVersion(C.TPACKET_V3) // SocketRaw is the default socket type. It returns packet data // including the link layer (ethernet headers, etc). SocketRaw = OptSocketType(C.SOCK_RAW) // SocketDgram strips off the link layer when reading packets, and adds // the link layer back automatically on packet writes (coming soon...) SocketDgram = OptSocketType(C.SOCK_DGRAM) )
TPacket version numbers for use with NewHandle.
const ( DefaultFrameSize = 4096 // Default value for OptFrameSize. DefaultBlockSize = DefaultFrameSize * 128 // Default value for OptBlockSize. DefaultNumBlocks = 128 // Default value for OptNumBlocks. DefaultBlockTimeout = 64 * time.Millisecond // Default value for OptBlockTimeout. DefaultPollTimeout = -1 * time.Millisecond // Default value for OptPollTimeout. This blocks forever. )
Default constants used by options.
Variables ¶
var ErrPoll = errors.New("packet poll failed")
ErrPoll returned by poll
var ErrTimeout = errors.New("packet poll timeout expired")
ErrTimeout returned on poll timeout
Functions ¶
This section is empty.
Types ¶
type FanoutType ¶
type FanoutType int
FanoutType determines the type of fanout to use with a TPacket SetFanout call.
const ( FanoutHash FanoutType = 0 // It appears that defrag only works with FanoutHash, see: // http://lxr.free-electrons.com/source/net/packet/af_packet.c#L1204 FanoutHashWithDefrag FanoutType = 0x8000 FanoutLoadBalance FanoutType = 1 FanoutCPU FanoutType = 2 )
FanoutType values.
type OptBlockSize ¶
type OptBlockSize int
OptBlockSize is TPacket's tp_block_size It can be passed into NewTPacket.
type OptBlockTimeout ¶
OptBlockTimeout is TPacket v3's tp_retire_blk_tov. Note that it has only millisecond granularity, so must be >= 1 ms. It can be passed into NewTPacket.
type OptFrameSize ¶
type OptFrameSize int
OptFrameSize is TPacket's tp_frame_size It can be passed into NewTPacket.
type OptInterface ¶
type OptInterface string
OptInterface is the specific interface to bind to. It can be passed into NewTPacket.
type OptNumBlocks ¶
type OptNumBlocks int
OptNumBlocks is TPacket's tp_block_nr It can be passed into NewTPacket.
type OptPollTimeout ¶ added in v1.1.13
OptPollTimeout is the number of milliseconds that poll() should block waiting for a file descriptor to become ready. Specifying a negative value in time‐out means an infinite timeout.
type OptSocketType ¶
type OptSocketType int
OptSocketType is the socket type used to open the TPacket socket.
func (OptSocketType) String ¶
func (t OptSocketType) String() string
type OptTPacketVersion ¶
type OptTPacketVersion int
OptTPacketVersion is the version of TPacket to use. It can be passed into NewTPacket.
func (OptTPacketVersion) String ¶
func (t OptTPacketVersion) String() string
String returns a string representation of the version, generally of the form V#.
type SocketStats ¶ added in v1.1.12
type SocketStats C.struct_tpacket_stats
SocketStats is a struct where socket stats are stored
type SocketStatsV3 ¶ added in v1.1.12
type SocketStatsV3 C.struct_tpacket_stats_v3
SocketStatsV3 is a struct where socket stats for TPacketV3 are stored
type Stats ¶
type Stats struct { // Packets is the total number of packets returned to the caller. Packets int64 // Polls is the number of blocking syscalls made waiting for packets. // This should always be <= Packets, since with TPacket one syscall // can (and often does) return many results. Polls int64 }
Stats is a set of counters detailing the work TPacket has done so far.
type TPacket ¶
type TPacket struct {
// contains filtered or unexported fields
}
TPacket implements packet receiving for Linux AF_PACKET versions 1, 2, and 3.
func NewTPacket ¶
NewTPacket returns a new TPacket object for reading packets off the wire. Its behavior may be modified by passing in any/all of afpacket.Opt* to this function. If this function succeeds, the user should be sure to Close the returned TPacket when finished with it.
func (*TPacket) Close ¶
func (h *TPacket) Close()
Close cleans up the TPacket. It should not be used after the Close call.
func (*TPacket) InitSocketStats ¶ added in v1.1.12
InitSocketStats clears socket counters and return empty stats.
func (*TPacket) ReadPacketData ¶
func (h *TPacket) ReadPacketData() (data []byte, ci gopacket.CaptureInfo, err error)
ReadPacketData reads the next packet, copies it into a new buffer, and returns that buffer. Since the buffer is allocated by ReadPacketData, it is safe for long-term use. This implements gopacket.PacketDataSource.
func (*TPacket) ReadPacketDataTo ¶
func (h *TPacket) ReadPacketDataTo(data []byte) (ci gopacket.CaptureInfo, err error)
ReadPacketDataTo reads packet data into a user-supplied buffer. This function reads up to the length of the passed-in slice. The number of bytes read into data will be returned in ci.CaptureLength, which is the minimum of the size of the passed-in buffer and the size of the captured packet.
func (*TPacket) SetBPF ¶ added in v1.1.13
func (h *TPacket) SetBPF(filter []bpf.RawInstruction) error
SetBPF attaches a BPF filter to the underlying socket
func (*TPacket) SetFanout ¶
func (h *TPacket) SetFanout(t FanoutType, id uint16) error
SetFanout activates TPacket's fanout ability. Use of Fanout requires creating multiple TPacket objects and the same id/type to a SetFanout call on each. Note that this can be done cross-process, so if two different processes both call SetFanout with the same type/id, they'll share packets between them. The same should work for multiple TPacket objects within the same process.
func (*TPacket) SocketStats ¶ added in v1.1.12
func (h *TPacket) SocketStats() (SocketStats, SocketStatsV3, error)
SocketStats saves stats from the socket to the TPacket instance.
func (*TPacket) WritePacketData ¶ added in v1.1.9
WritePacketData transmits a raw packet.
func (*TPacket) ZeroCopyReadPacketData ¶
func (h *TPacket) ZeroCopyReadPacketData() (data []byte, ci gopacket.CaptureInfo, err error)
ZeroCopyReadPacketData reads the next packet off the wire, and returns its data. The slice returned by ZeroCopyReadPacketData points to bytes owned by the TPacket. Each call to ZeroCopyReadPacketData invalidates any data previously returned by ZeroCopyReadPacketData. Care must be taken not to keep pointers to old bytes when using ZeroCopyReadPacketData... if you need to keep data past the next time you call ZeroCopyReadPacketData, use ReadPacketData, which copies the bytes into a new buffer for you.
tp, _ := NewTPacket(...) data1, _, _ := tp.ZeroCopyReadPacketData() // do everything you want with data1 here, copying bytes out of it if you'd like to keep them around. data2, _, _ := tp.ZeroCopyReadPacketData() // invalidates bytes in data1