Содержимое пина, зафиксированного в go.mod sing-box-lx, одним коммитом без истории. Полная история SagerNet/gvisor — 1.45 ГБ и клонируется в каждой CI-джобе; наша дельта — одна вставка в одну функцию, история для неё не нужна. Module path github.com/sagernet/gvisor сохранён намеренно: на него опирается replace-директива суперпроекта. Патч поверх — отдельным коммитом, чтобы дельта читалась одним git show и переносилась на новый пин копированием. SPECS/TASKS/048-GVISOR_HANDSHAKE_NIL_CRASH
399 lines
12 KiB
Go
399 lines
12 KiB
Go
// Copyright 2018 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 sniffer provides the implementation of data-link layer endpoints that
|
|
// wrap another endpoint and logs inbound and outbound packets.
|
|
//
|
|
// Sniffer endpoints can be used in the networking stack by calling New(eID) to
|
|
// create a new endpoint, where eID is the ID of the endpoint being wrapped,
|
|
// and then passing it as an argument to Stack.CreateNIC().
|
|
package sniffer
|
|
|
|
import (
|
|
"encoding/binary"
|
|
"fmt"
|
|
"io"
|
|
"time"
|
|
|
|
"github.com/sagernet/gvisor/pkg/atomicbitops"
|
|
"github.com/sagernet/gvisor/pkg/log"
|
|
"github.com/sagernet/gvisor/pkg/tcpip"
|
|
"github.com/sagernet/gvisor/pkg/tcpip/header"
|
|
"github.com/sagernet/gvisor/pkg/tcpip/header/parse"
|
|
"github.com/sagernet/gvisor/pkg/tcpip/link/nested"
|
|
"github.com/sagernet/gvisor/pkg/tcpip/stack"
|
|
)
|
|
|
|
// LogPackets is a flag used to enable or disable packet logging via the log
|
|
// package. Valid values are 0 or 1.
|
|
var LogPackets atomicbitops.Uint32 = atomicbitops.FromUint32(1)
|
|
|
|
// Endpoint is used to sniff and log network traffic.
|
|
//
|
|
// +stateify savable
|
|
type Endpoint struct {
|
|
nested.Endpoint
|
|
writer io.Writer
|
|
maxPCAPLen uint32
|
|
logPrefix string
|
|
}
|
|
|
|
var (
|
|
_ stack.GSOEndpoint = (*Endpoint)(nil)
|
|
_ stack.LinkEndpoint = (*Endpoint)(nil)
|
|
_ stack.NetworkDispatcher = (*Endpoint)(nil)
|
|
)
|
|
|
|
// A Direction indicates whether the packing is being sent or received.
|
|
type Direction int
|
|
|
|
const (
|
|
// DirectionSend indicates a sent packet.
|
|
DirectionSend = iota
|
|
// DirectionRecv indicates a received packet.
|
|
DirectionRecv
|
|
)
|
|
|
|
func (dr Direction) String() string {
|
|
switch dr {
|
|
case DirectionSend:
|
|
return "send"
|
|
case DirectionRecv:
|
|
return "recv"
|
|
default:
|
|
panic(fmt.Sprintf("invalid Direction %d", dr))
|
|
}
|
|
}
|
|
|
|
// New creates a new sniffer link-layer endpoint. It wraps around another
|
|
// endpoint and logs packets and they traverse the endpoint.
|
|
func New(lower stack.LinkEndpoint) *Endpoint {
|
|
return NewWithPrefix(lower, "")
|
|
}
|
|
|
|
// NewWithPrefix creates a new sniffer link-layer endpoint. It wraps around
|
|
// another endpoint and logs packets prefixed with logPrefix as they traverse
|
|
// the endpoint.
|
|
//
|
|
// logPrefix is prepended to the log line without any separators.
|
|
// E.g. logPrefix = "NIC:en0/" will produce log lines like
|
|
// "NIC:en0/send udp [...]".
|
|
func NewWithPrefix(lower stack.LinkEndpoint, logPrefix string) *Endpoint {
|
|
sniffer := &Endpoint{logPrefix: logPrefix}
|
|
sniffer.Endpoint.Init(lower, sniffer)
|
|
return sniffer
|
|
}
|
|
|
|
func zoneOffset() (int32, error) {
|
|
date := time.Date(0, 0, 0, 0, 0, 0, 0, time.Local)
|
|
_, offset := date.Zone()
|
|
return int32(offset), nil
|
|
}
|
|
|
|
func writePCAPHeader(w io.Writer, maxLen uint32) error {
|
|
offset, err := zoneOffset()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return binary.Write(w, binary.LittleEndian, pcapHeader{
|
|
// From https://wiki.wireshark.org/Development/LibpcapFileFormat
|
|
MagicNumber: 0xa1b2c3d4,
|
|
|
|
VersionMajor: 2,
|
|
VersionMinor: 4,
|
|
Thiszone: offset,
|
|
Sigfigs: 0,
|
|
Snaplen: maxLen,
|
|
Network: 101, // LINKTYPE_RAW
|
|
})
|
|
}
|
|
|
|
// NewWithWriter creates a new sniffer link-layer endpoint. It wraps around
|
|
// another endpoint and logs packets as they traverse the endpoint.
|
|
//
|
|
// Each packet is written to writer in the pcap format in a single Write call
|
|
// without synchronization. A sniffer created with this function will not emit
|
|
// packets using the standard log package.
|
|
//
|
|
// snapLen is the maximum amount of a packet to be saved. Packets with a length
|
|
// less than or equal to snapLen will be saved in their entirety. Longer
|
|
// packets will be truncated to snapLen.
|
|
func NewWithWriter(lower stack.LinkEndpoint, writer io.Writer, snapLen uint32) (*Endpoint, error) {
|
|
if err := writePCAPHeader(writer, snapLen); err != nil {
|
|
return nil, err
|
|
}
|
|
sniffer := &Endpoint{
|
|
writer: writer,
|
|
maxPCAPLen: snapLen,
|
|
}
|
|
sniffer.Endpoint.Init(lower, sniffer)
|
|
return sniffer, nil
|
|
}
|
|
|
|
// DeliverNetworkPacket implements the stack.NetworkDispatcher interface. It is
|
|
// called by the link-layer endpoint being wrapped when a packet arrives, and
|
|
// logs the packet before forwarding to the actual dispatcher.
|
|
func (e *Endpoint) DeliverNetworkPacket(protocol tcpip.NetworkProtocolNumber, pkt *stack.PacketBuffer) {
|
|
e.DumpPacket(DirectionRecv, protocol, pkt, nil)
|
|
e.Endpoint.DeliverNetworkPacket(protocol, pkt)
|
|
}
|
|
|
|
// DumpPacket logs a packet, depending on configuration, to stderr and/or a
|
|
// pcap file. ts is an optional timestamp for the packet.
|
|
func (e *Endpoint) DumpPacket(dir Direction, protocol tcpip.NetworkProtocolNumber, pkt *stack.PacketBuffer, ts *time.Time) {
|
|
if LogPackets.Load() == 1 {
|
|
LogPacket(e.logPrefix, dir, protocol, pkt)
|
|
}
|
|
if e.writer != nil {
|
|
packet := pcapPacket{
|
|
packet: pkt,
|
|
maxCaptureLen: int(e.maxPCAPLen),
|
|
}
|
|
if ts == nil {
|
|
packet.timestamp = time.Now()
|
|
} else {
|
|
packet.timestamp = *ts
|
|
}
|
|
b, err := packet.MarshalBinary()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
if _, err := e.writer.Write(b); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
}
|
|
|
|
// WritePackets implements the stack.LinkEndpoint interface. It is called by
|
|
// higher-level protocols to write packets; it just logs the packet and
|
|
// forwards the request to the lower endpoint.
|
|
func (e *Endpoint) WritePackets(pkts stack.PacketBufferList) (int, tcpip.Error) {
|
|
for _, pkt := range pkts.AsSlice() {
|
|
e.DumpPacket(DirectionSend, pkt.NetworkProtocolNumber, pkt, nil)
|
|
}
|
|
return e.Endpoint.WritePackets(pkts)
|
|
}
|
|
|
|
// LogPacket logs a packet to stdout.
|
|
func LogPacket(prefix string, dir Direction, protocol tcpip.NetworkProtocolNumber, pkt *stack.PacketBuffer) {
|
|
// Figure out the network layer info.
|
|
var transProto uint8
|
|
var src tcpip.Address
|
|
var dst tcpip.Address
|
|
var size uint16
|
|
var id uint32
|
|
var fragmentOffset uint16
|
|
var moreFragments bool
|
|
|
|
clone := trimmedClone(pkt)
|
|
defer clone.DecRef()
|
|
switch protocol {
|
|
case header.IPv4ProtocolNumber:
|
|
if ok := parse.IPv4(clone); !ok {
|
|
return
|
|
}
|
|
|
|
ipv4 := header.IPv4(clone.NetworkHeader().Slice())
|
|
fragmentOffset = ipv4.FragmentOffset()
|
|
moreFragments = ipv4.Flags()&header.IPv4FlagMoreFragments == header.IPv4FlagMoreFragments
|
|
src = ipv4.SourceAddress()
|
|
dst = ipv4.DestinationAddress()
|
|
transProto = ipv4.Protocol()
|
|
size = ipv4.TotalLength() - uint16(ipv4.HeaderLength())
|
|
id = uint32(ipv4.ID())
|
|
|
|
case header.IPv6ProtocolNumber:
|
|
proto, fragID, fragOffset, fragMore, ok := parse.IPv6(clone)
|
|
if !ok {
|
|
return
|
|
}
|
|
|
|
ipv6 := header.IPv6(clone.NetworkHeader().Slice())
|
|
src = ipv6.SourceAddress()
|
|
dst = ipv6.DestinationAddress()
|
|
transProto = uint8(proto)
|
|
size = ipv6.PayloadLength()
|
|
id = fragID
|
|
moreFragments = fragMore
|
|
fragmentOffset = fragOffset
|
|
|
|
case header.ARPProtocolNumber:
|
|
if !parse.ARP(clone) {
|
|
return
|
|
}
|
|
|
|
arp := header.ARP(clone.NetworkHeader().Slice())
|
|
log.Infof(
|
|
"%s%s arp %s (%s) -> %s (%s) valid:%t",
|
|
prefix,
|
|
dir,
|
|
tcpip.AddrFromSlice(arp.ProtocolAddressSender()), tcpip.LinkAddress(arp.HardwareAddressSender()),
|
|
tcpip.AddrFromSlice(arp.ProtocolAddressTarget()), tcpip.LinkAddress(arp.HardwareAddressTarget()),
|
|
arp.IsValid(),
|
|
)
|
|
return
|
|
default:
|
|
log.Infof("%s%s unknown network protocol: %d", prefix, dir, protocol)
|
|
return
|
|
}
|
|
|
|
// Figure out the transport layer info.
|
|
transName := "unknown"
|
|
srcPort := uint16(0)
|
|
dstPort := uint16(0)
|
|
details := ""
|
|
switch tcpip.TransportProtocolNumber(transProto) {
|
|
case header.ICMPv4ProtocolNumber:
|
|
transName = "icmp"
|
|
hdr, ok := clone.Data().PullUp(header.ICMPv4MinimumSize)
|
|
if !ok {
|
|
break
|
|
}
|
|
icmp := header.ICMPv4(hdr)
|
|
icmpType := "unknown"
|
|
if fragmentOffset == 0 {
|
|
switch icmp.Type() {
|
|
case header.ICMPv4EchoReply:
|
|
icmpType = "echo reply"
|
|
case header.ICMPv4DstUnreachable:
|
|
icmpType = "destination unreachable"
|
|
case header.ICMPv4SrcQuench:
|
|
icmpType = "source quench"
|
|
case header.ICMPv4Redirect:
|
|
icmpType = "redirect"
|
|
case header.ICMPv4Echo:
|
|
icmpType = "echo"
|
|
case header.ICMPv4TimeExceeded:
|
|
icmpType = "time exceeded"
|
|
case header.ICMPv4ParamProblem:
|
|
icmpType = "param problem"
|
|
case header.ICMPv4Timestamp:
|
|
icmpType = "timestamp"
|
|
case header.ICMPv4TimestampReply:
|
|
icmpType = "timestamp reply"
|
|
case header.ICMPv4InfoRequest:
|
|
icmpType = "info request"
|
|
case header.ICMPv4InfoReply:
|
|
icmpType = "info reply"
|
|
}
|
|
}
|
|
log.Infof("%s%s %s %s -> %s %s len:%d id:%04x code:%d", prefix, dir, transName, src, dst, icmpType, size, id, icmp.Code())
|
|
return
|
|
|
|
case header.ICMPv6ProtocolNumber:
|
|
transName = "icmp"
|
|
hdr, ok := clone.Data().PullUp(header.ICMPv6MinimumSize)
|
|
if !ok {
|
|
break
|
|
}
|
|
icmp := header.ICMPv6(hdr)
|
|
icmpType := "unknown"
|
|
switch icmp.Type() {
|
|
case header.ICMPv6DstUnreachable:
|
|
icmpType = "destination unreachable"
|
|
case header.ICMPv6PacketTooBig:
|
|
icmpType = "packet too big"
|
|
case header.ICMPv6TimeExceeded:
|
|
icmpType = "time exceeded"
|
|
case header.ICMPv6ParamProblem:
|
|
icmpType = "param problem"
|
|
case header.ICMPv6EchoRequest:
|
|
icmpType = "echo request"
|
|
case header.ICMPv6EchoReply:
|
|
icmpType = "echo reply"
|
|
case header.ICMPv6RouterSolicit:
|
|
icmpType = "router solicit"
|
|
case header.ICMPv6RouterAdvert:
|
|
icmpType = "router advert"
|
|
case header.ICMPv6NeighborSolicit:
|
|
icmpType = "neighbor solicit"
|
|
case header.ICMPv6NeighborAdvert:
|
|
icmpType = "neighbor advert"
|
|
case header.ICMPv6RedirectMsg:
|
|
icmpType = "redirect message"
|
|
}
|
|
log.Infof("%s%s %s %s -> %s %s len:%d id:%04x code:%d", prefix, dir, transName, src, dst, icmpType, size, id, icmp.Code())
|
|
return
|
|
|
|
case header.UDPProtocolNumber:
|
|
transName = "udp"
|
|
if ok := parse.UDP(clone); !ok {
|
|
break
|
|
}
|
|
|
|
udp := header.UDP(clone.TransportHeader().Slice())
|
|
if fragmentOffset == 0 {
|
|
srcPort = udp.SourcePort()
|
|
dstPort = udp.DestinationPort()
|
|
details = fmt.Sprintf("xsum: 0x%x", udp.Checksum())
|
|
size -= header.UDPMinimumSize
|
|
}
|
|
|
|
case header.TCPProtocolNumber:
|
|
transName = "tcp"
|
|
if ok := parse.TCP(clone); !ok {
|
|
break
|
|
}
|
|
|
|
tcp := header.TCP(clone.TransportHeader().Slice())
|
|
if fragmentOffset == 0 {
|
|
offset := int(tcp.DataOffset())
|
|
if offset < header.TCPMinimumSize {
|
|
details += fmt.Sprintf("invalid packet: tcp data offset too small %d", offset)
|
|
break
|
|
}
|
|
if size := clone.Data().Size() + len(tcp); offset > size && !moreFragments {
|
|
details += fmt.Sprintf("invalid packet: tcp data offset %d larger than tcp packet length %d", offset, size)
|
|
break
|
|
}
|
|
|
|
srcPort = tcp.SourcePort()
|
|
dstPort = tcp.DestinationPort()
|
|
size -= uint16(offset)
|
|
|
|
// Initialize the TCP flags.
|
|
flags := tcp.Flags()
|
|
details = fmt.Sprintf("flags:%s seqnum:%d ack:%d win:%d xsum:0x%x", flags, tcp.SequenceNumber(), tcp.AckNumber(), tcp.WindowSize(), tcp.Checksum())
|
|
if flags&header.TCPFlagSyn != 0 {
|
|
details += fmt.Sprintf(" options:%+v", header.ParseSynOptions(tcp.Options(), flags&header.TCPFlagAck != 0))
|
|
} else {
|
|
details += fmt.Sprintf(" options:%+v", tcp.ParsedOptions())
|
|
}
|
|
}
|
|
|
|
default:
|
|
log.Infof("%s%s %s -> %s unknown transport protocol: %d", prefix, dir, src, dst, transProto)
|
|
return
|
|
}
|
|
|
|
if pkt.GSOOptions.Type != stack.GSONone {
|
|
details += fmt.Sprintf(" gso:%#v", pkt.GSOOptions)
|
|
}
|
|
|
|
log.Infof("%s%s %s %s:%d -> %s:%d len:%d id:0x%04x %s", prefix, dir, transName, src, srcPort, dst, dstPort, size, id, details)
|
|
}
|
|
|
|
// trimmedClone clones the packet buffer to not modify the original. It trims
|
|
// anything before the network header.
|
|
func trimmedClone(pkt *stack.PacketBuffer) *stack.PacketBuffer {
|
|
// We don't clone the original packet buffer so that the new packet buffer
|
|
// does not have any of its headers set.
|
|
//
|
|
// We trim the link headers from the cloned buffer as the sniffer doesn't
|
|
// handle link headers.
|
|
buf := pkt.ToBuffer()
|
|
buf.TrimFront(int64(len(pkt.VirtioNetHeader().Slice())))
|
|
buf.TrimFront(int64(len(pkt.LinkHeader().Slice())))
|
|
return stack.NewPacketBuffer(stack.PacketBufferOptions{Payload: buf})
|
|
}
|