snapshot: sagernet/gvisor v0.0.0-20250811.0-sing-box-mod.1
Содержимое пина, зафиксированного в 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
This commit is contained in:
commit
2c4ae3b0a4
712 changed files with 185689 additions and 0 deletions
783
pkg/tcpip/transport/raw/endpoint.go
Normal file
783
pkg/tcpip/transport/raw/endpoint.go
Normal file
|
|
@ -0,0 +1,783 @@
|
|||
// Copyright 2019 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 raw provides the implementation of raw sockets (see raw(7)). Raw
|
||||
// sockets allow applications to:
|
||||
//
|
||||
// - manually write and inspect transport layer headers and payloads
|
||||
// - receive all traffic of a given transport protocol (e.g. ICMP or UDP)
|
||||
// - optionally write and inspect network layer headers of packets
|
||||
//
|
||||
// Raw sockets don't have any notion of ports, and incoming packets are
|
||||
// demultiplexed solely by protocol number. Thus, a raw UDP endpoint will
|
||||
// receive every UDP packet received by netstack. bind(2) and connect(2) can be
|
||||
// used to filter incoming packets by source and destination.
|
||||
package raw
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"io"
|
||||
"time"
|
||||
|
||||
"github.com/sagernet/gvisor/pkg/buffer"
|
||||
"github.com/sagernet/gvisor/pkg/sync"
|
||||
"github.com/sagernet/gvisor/pkg/tcpip"
|
||||
"github.com/sagernet/gvisor/pkg/tcpip/checksum"
|
||||
"github.com/sagernet/gvisor/pkg/tcpip/header"
|
||||
"github.com/sagernet/gvisor/pkg/tcpip/stack"
|
||||
"github.com/sagernet/gvisor/pkg/tcpip/transport"
|
||||
"github.com/sagernet/gvisor/pkg/tcpip/transport/internal/network"
|
||||
"github.com/sagernet/gvisor/pkg/waiter"
|
||||
)
|
||||
|
||||
// +stateify savable
|
||||
type rawPacket struct {
|
||||
rawPacketEntry
|
||||
// data holds the actual packet data, including any headers and
|
||||
// payload.
|
||||
data *stack.PacketBuffer
|
||||
receivedAt time.Time `state:".(int64)"`
|
||||
// senderAddr is the network address of the sender.
|
||||
senderAddr tcpip.FullAddress
|
||||
packetInfo tcpip.IPPacketInfo
|
||||
|
||||
// tosOrTClass stores either the Type of Service for IPv4 or the Traffic Class
|
||||
// for IPv6.
|
||||
tosOrTClass uint8
|
||||
// ttlOrHopLimit stores either the TTL for IPv4 or the HopLimit for IPv6
|
||||
ttlOrHopLimit uint8
|
||||
}
|
||||
|
||||
// endpoint is the raw socket implementation of tcpip.Endpoint. It is legal to
|
||||
// have goroutines make concurrent calls into the endpoint.
|
||||
//
|
||||
// Lock order:
|
||||
//
|
||||
// endpoint.mu
|
||||
// endpoint.rcvMu
|
||||
//
|
||||
// +stateify savable
|
||||
type endpoint struct {
|
||||
tcpip.DefaultSocketOptionsHandler
|
||||
|
||||
// The following fields are initialized at creation time and are
|
||||
// immutable.
|
||||
stack *stack.Stack
|
||||
transProto tcpip.TransportProtocolNumber
|
||||
waiterQueue *waiter.Queue
|
||||
associated bool
|
||||
|
||||
net network.Endpoint
|
||||
stats tcpip.TransportEndpointStats
|
||||
ops tcpip.SocketOptions
|
||||
|
||||
rcvMu sync.Mutex `state:"nosave"`
|
||||
// +checklocks:rcvMu
|
||||
rcvList rawPacketList
|
||||
// +checklocks:rcvMu
|
||||
rcvBufSize int
|
||||
// +checklocks:rcvMu
|
||||
rcvClosed bool
|
||||
// +checklocks:rcvMu
|
||||
rcvDisabled bool
|
||||
|
||||
mu sync.RWMutex `state:"nosave"`
|
||||
|
||||
// ipv6ChecksumOffset indicates the offset to populate the IPv6 checksum at.
|
||||
//
|
||||
// A negative value indicates no checksum should be calculated.
|
||||
//
|
||||
// +checklocks:mu
|
||||
ipv6ChecksumOffset int
|
||||
// icmp6Filter holds the filter for ICMPv6 packets.
|
||||
//
|
||||
// +checklocks:mu
|
||||
icmpv6Filter tcpip.ICMPv6Filter
|
||||
}
|
||||
|
||||
// NewEndpoint returns a raw endpoint for the given protocols.
|
||||
func NewEndpoint(stack *stack.Stack, netProto tcpip.NetworkProtocolNumber, transProto tcpip.TransportProtocolNumber, waiterQueue *waiter.Queue) (tcpip.Endpoint, tcpip.Error) {
|
||||
return newEndpoint(stack, netProto, transProto, waiterQueue, true /* associated */)
|
||||
}
|
||||
|
||||
func newEndpoint(s *stack.Stack, netProto tcpip.NetworkProtocolNumber, transProto tcpip.TransportProtocolNumber, waiterQueue *waiter.Queue, associated bool) (tcpip.Endpoint, tcpip.Error) {
|
||||
// Calculating the upper-layer checksum is disabled by default for raw IPv6
|
||||
// endpoints, unless the upper-layer protocol is ICMPv6.
|
||||
//
|
||||
// As per RFC 3542 section 3.1,
|
||||
//
|
||||
// The kernel will calculate and insert the ICMPv6 checksum for ICMPv6
|
||||
// raw sockets, since this checksum is mandatory.
|
||||
ipv6ChecksumOffset := -1
|
||||
if netProto == header.IPv6ProtocolNumber && transProto == header.ICMPv6ProtocolNumber {
|
||||
ipv6ChecksumOffset = header.ICMPv6ChecksumOffset
|
||||
}
|
||||
|
||||
e := &endpoint{
|
||||
stack: s,
|
||||
transProto: transProto,
|
||||
waiterQueue: waiterQueue,
|
||||
associated: associated,
|
||||
ipv6ChecksumOffset: ipv6ChecksumOffset,
|
||||
}
|
||||
e.ops.InitHandler(e, e.stack, tcpip.GetStackSendBufferLimits, tcpip.GetStackReceiveBufferLimits)
|
||||
e.ops.SetMulticastLoop(true)
|
||||
e.ops.SetHeaderIncluded(!associated)
|
||||
e.ops.SetSendBufferSize(32*1024, false /* notify */)
|
||||
e.ops.SetReceiveBufferSize(32*1024, false /* notify */)
|
||||
e.net.Init(s, netProto, transProto, &e.ops, waiterQueue)
|
||||
|
||||
// Override with stack defaults.
|
||||
var ss tcpip.SendBufferSizeOption
|
||||
if err := s.Option(&ss); err == nil {
|
||||
e.ops.SetSendBufferSize(int64(ss.Default), false /* notify */)
|
||||
}
|
||||
|
||||
var rs tcpip.ReceiveBufferSizeOption
|
||||
if err := s.Option(&rs); err == nil {
|
||||
e.ops.SetReceiveBufferSize(int64(rs.Default), false /* notify */)
|
||||
}
|
||||
|
||||
// Unassociated endpoints are write-only and users call Write() with IP
|
||||
// headers included. Because they're write-only, We don't need to
|
||||
// register with the stack.
|
||||
if !associated {
|
||||
e.ops.SetReceiveBufferSize(0, false /* notify */)
|
||||
e.waiterQueue = nil
|
||||
return e, nil
|
||||
}
|
||||
|
||||
if err := e.stack.RegisterRawTransportEndpoint(netProto, e.transProto, e); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return e, nil
|
||||
}
|
||||
|
||||
// WakeupWriters implements tcpip.SocketOptionsHandler.
|
||||
func (e *endpoint) WakeupWriters() {
|
||||
e.net.MaybeSignalWritable()
|
||||
}
|
||||
|
||||
// HasNIC implements tcpip.SocketOptionsHandler.
|
||||
func (e *endpoint) HasNIC(id int32) bool {
|
||||
return e.stack.HasNIC(tcpip.NICID(id))
|
||||
}
|
||||
|
||||
// Abort implements stack.TransportEndpoint.Abort.
|
||||
func (e *endpoint) Abort() {
|
||||
e.Close()
|
||||
}
|
||||
|
||||
// Close implements tcpip.Endpoint.Close.
|
||||
func (e *endpoint) Close() {
|
||||
e.mu.Lock()
|
||||
defer e.mu.Unlock()
|
||||
|
||||
if e.net.State() == transport.DatagramEndpointStateClosed {
|
||||
return
|
||||
}
|
||||
|
||||
e.net.Close()
|
||||
|
||||
if !e.associated {
|
||||
return
|
||||
}
|
||||
|
||||
e.stack.UnregisterRawTransportEndpoint(e.net.NetProto(), e.transProto, e)
|
||||
|
||||
e.rcvMu.Lock()
|
||||
defer e.rcvMu.Unlock()
|
||||
|
||||
// Clear the receive list.
|
||||
e.rcvClosed = true
|
||||
e.rcvBufSize = 0
|
||||
for !e.rcvList.Empty() {
|
||||
p := e.rcvList.Front()
|
||||
e.rcvList.Remove(p)
|
||||
p.data.DecRef()
|
||||
}
|
||||
|
||||
e.waiterQueue.Notify(waiter.EventHUp | waiter.EventErr | waiter.ReadableEvents | waiter.WritableEvents)
|
||||
}
|
||||
|
||||
// ModerateRecvBuf implements tcpip.Endpoint.ModerateRecvBuf.
|
||||
func (*endpoint) ModerateRecvBuf(int) {}
|
||||
|
||||
func (e *endpoint) SetOwner(owner tcpip.PacketOwner) {
|
||||
e.net.SetOwner(owner)
|
||||
}
|
||||
|
||||
// Read implements tcpip.Endpoint.Read.
|
||||
func (e *endpoint) Read(dst io.Writer, opts tcpip.ReadOptions) (tcpip.ReadResult, tcpip.Error) {
|
||||
e.rcvMu.Lock()
|
||||
|
||||
// If there's no data to read, return that read would block or that the
|
||||
// endpoint is closed.
|
||||
if e.rcvList.Empty() {
|
||||
var err tcpip.Error = &tcpip.ErrWouldBlock{}
|
||||
if e.rcvClosed {
|
||||
e.stats.ReadErrors.ReadClosed.Increment()
|
||||
err = &tcpip.ErrClosedForReceive{}
|
||||
}
|
||||
e.rcvMu.Unlock()
|
||||
return tcpip.ReadResult{}, err
|
||||
}
|
||||
|
||||
pkt := e.rcvList.Front()
|
||||
if !opts.Peek {
|
||||
e.rcvList.Remove(pkt)
|
||||
defer pkt.data.DecRef()
|
||||
e.rcvBufSize -= pkt.data.Data().Size()
|
||||
}
|
||||
|
||||
e.rcvMu.Unlock()
|
||||
|
||||
// Control Messages
|
||||
// TODO(https://gvisor.dev/issue/7012): Share control message code with other
|
||||
// network endpoints.
|
||||
cm := tcpip.ReceivableControlMessages{
|
||||
HasTimestamp: true,
|
||||
Timestamp: pkt.receivedAt,
|
||||
}
|
||||
switch netProto := e.net.NetProto(); netProto {
|
||||
case header.IPv4ProtocolNumber:
|
||||
if e.ops.GetReceiveTOS() {
|
||||
cm.HasTOS = true
|
||||
cm.TOS = pkt.tosOrTClass
|
||||
}
|
||||
if e.ops.GetReceiveTTL() {
|
||||
cm.HasTTL = true
|
||||
cm.TTL = pkt.ttlOrHopLimit
|
||||
}
|
||||
if e.ops.GetReceivePacketInfo() {
|
||||
cm.HasIPPacketInfo = true
|
||||
cm.PacketInfo = pkt.packetInfo
|
||||
}
|
||||
case header.IPv6ProtocolNumber:
|
||||
if e.ops.GetReceiveTClass() {
|
||||
cm.HasTClass = true
|
||||
// Although TClass is an 8-bit value it's read in the CMsg as a uint32.
|
||||
cm.TClass = uint32(pkt.tosOrTClass)
|
||||
}
|
||||
if e.ops.GetReceiveHopLimit() {
|
||||
cm.HasHopLimit = true
|
||||
cm.HopLimit = pkt.ttlOrHopLimit
|
||||
}
|
||||
if e.ops.GetIPv6ReceivePacketInfo() {
|
||||
cm.HasIPv6PacketInfo = true
|
||||
cm.IPv6PacketInfo = tcpip.IPv6PacketInfo{
|
||||
NIC: pkt.packetInfo.NIC,
|
||||
Addr: pkt.packetInfo.DestinationAddr,
|
||||
}
|
||||
}
|
||||
default:
|
||||
panic(fmt.Sprintf("unrecognized network protocol = %d", netProto))
|
||||
}
|
||||
|
||||
res := tcpip.ReadResult{
|
||||
Total: pkt.data.Data().Size(),
|
||||
ControlMessages: cm,
|
||||
}
|
||||
if opts.NeedRemoteAddr {
|
||||
res.RemoteAddr = pkt.senderAddr
|
||||
}
|
||||
|
||||
n, err := pkt.data.Data().ReadTo(dst, opts.Peek)
|
||||
if n == 0 && err != nil {
|
||||
return res, &tcpip.ErrBadBuffer{}
|
||||
}
|
||||
res.Count = n
|
||||
return res, nil
|
||||
}
|
||||
|
||||
// Write implements tcpip.Endpoint.Write.
|
||||
func (e *endpoint) Write(p tcpip.Payloader, opts tcpip.WriteOptions) (int64, tcpip.Error) {
|
||||
netProto := e.net.NetProto()
|
||||
// We can create, but not write to, unassociated IPv6 endpoints.
|
||||
if !e.associated && netProto == header.IPv6ProtocolNumber {
|
||||
return 0, &tcpip.ErrInvalidOptionValue{}
|
||||
}
|
||||
|
||||
if opts.To != nil {
|
||||
// Raw sockets do not support sending to a IPv4 address on a IPv6 endpoint.
|
||||
if netProto == header.IPv6ProtocolNumber && opts.To.Addr.BitLen() != header.IPv6AddressSizeBits {
|
||||
return 0, &tcpip.ErrInvalidOptionValue{}
|
||||
}
|
||||
}
|
||||
|
||||
n, err := e.write(p, opts)
|
||||
switch err.(type) {
|
||||
case nil:
|
||||
e.stats.PacketsSent.Increment()
|
||||
case *tcpip.ErrMessageTooLong, *tcpip.ErrInvalidOptionValue:
|
||||
e.stats.WriteErrors.InvalidArgs.Increment()
|
||||
case *tcpip.ErrClosedForSend:
|
||||
e.stats.WriteErrors.WriteClosed.Increment()
|
||||
case *tcpip.ErrInvalidEndpointState:
|
||||
e.stats.WriteErrors.InvalidEndpointState.Increment()
|
||||
case *tcpip.ErrHostUnreachable, *tcpip.ErrBroadcastDisabled, *tcpip.ErrNetworkUnreachable:
|
||||
// Errors indicating any problem with IP routing of the packet.
|
||||
e.stats.SendErrors.NoRoute.Increment()
|
||||
default:
|
||||
// For all other errors when writing to the network layer.
|
||||
e.stats.SendErrors.SendToNetworkFailed.Increment()
|
||||
}
|
||||
return n, err
|
||||
}
|
||||
|
||||
func (e *endpoint) write(p tcpip.Payloader, opts tcpip.WriteOptions) (int64, tcpip.Error) {
|
||||
e.mu.Lock()
|
||||
ctx, err := e.net.AcquireContextForWrite(opts)
|
||||
ipv6ChecksumOffset := e.ipv6ChecksumOffset
|
||||
e.mu.Unlock()
|
||||
if err != nil {
|
||||
return 0, err
|
||||
}
|
||||
defer ctx.Release()
|
||||
|
||||
if p.Len() > int(ctx.MTU()) {
|
||||
return 0, &tcpip.ErrMessageTooLong{}
|
||||
}
|
||||
|
||||
// Prevents giant buffer allocations.
|
||||
if p.Len() > header.DatagramMaximumSize {
|
||||
return 0, &tcpip.ErrMessageTooLong{}
|
||||
}
|
||||
|
||||
var payload buffer.Buffer
|
||||
defer payload.Release()
|
||||
if _, err := payload.WriteFromReader(p, int64(p.Len())); err != nil {
|
||||
return 0, &tcpip.ErrBadBuffer{}
|
||||
}
|
||||
payloadSz := payload.Size()
|
||||
|
||||
if packetInfo := ctx.PacketInfo(); packetInfo.NetProto == header.IPv6ProtocolNumber && ipv6ChecksumOffset >= 0 {
|
||||
// Make sure we can fit the checksum.
|
||||
if payload.Size() < int64(ipv6ChecksumOffset+checksum.Size) {
|
||||
return 0, &tcpip.ErrInvalidOptionValue{}
|
||||
}
|
||||
|
||||
payloadView, _ := payload.PullUp(ipv6ChecksumOffset, int(payload.Size())-ipv6ChecksumOffset)
|
||||
xsum := header.PseudoHeaderChecksum(e.transProto, packetInfo.LocalAddress, packetInfo.RemoteAddress, uint16(payload.Size()))
|
||||
checksum.Put(payloadView.AsSlice(), 0)
|
||||
xsum = checksum.Combine(payload.Checksum(0), xsum)
|
||||
checksum.Put(payloadView.AsSlice(), ^xsum)
|
||||
}
|
||||
|
||||
pkt := ctx.TryNewPacketBuffer(int(ctx.PacketInfo().MaxHeaderLength), payload.Clone())
|
||||
if pkt == nil {
|
||||
return 0, &tcpip.ErrWouldBlock{}
|
||||
}
|
||||
defer pkt.DecRef()
|
||||
|
||||
if err := ctx.WritePacket(pkt, e.ops.GetHeaderIncluded()); err != nil {
|
||||
return 0, err
|
||||
}
|
||||
|
||||
return payloadSz, nil
|
||||
}
|
||||
|
||||
// Disconnect implements tcpip.Endpoint.Disconnect.
|
||||
func (*endpoint) Disconnect() tcpip.Error {
|
||||
return &tcpip.ErrNotSupported{}
|
||||
}
|
||||
|
||||
// Connect implements tcpip.Endpoint.Connect.
|
||||
func (e *endpoint) Connect(addr tcpip.FullAddress) tcpip.Error {
|
||||
netProto := e.net.NetProto()
|
||||
|
||||
// Raw sockets do not support connecting to a IPv4 address on a IPv6 endpoint.
|
||||
if netProto == header.IPv6ProtocolNumber && addr.Addr.BitLen() != header.IPv6AddressSizeBits {
|
||||
return &tcpip.ErrAddressFamilyNotSupported{}
|
||||
}
|
||||
|
||||
return e.net.ConnectAndThen(addr, func(_ tcpip.NetworkProtocolNumber, _, _ stack.TransportEndpointID) tcpip.Error {
|
||||
if e.associated {
|
||||
// Re-register the endpoint with the appropriate NIC.
|
||||
if err := e.stack.RegisterRawTransportEndpoint(netProto, e.transProto, e); err != nil {
|
||||
return err
|
||||
}
|
||||
e.stack.UnregisterRawTransportEndpoint(netProto, e.transProto, e)
|
||||
}
|
||||
|
||||
return nil
|
||||
})
|
||||
}
|
||||
|
||||
// Shutdown implements tcpip.Endpoint.Shutdown. It's a noop for raw sockets.
|
||||
func (e *endpoint) Shutdown(tcpip.ShutdownFlags) tcpip.Error {
|
||||
if e.net.State() != transport.DatagramEndpointStateConnected {
|
||||
return &tcpip.ErrNotConnected{}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// Listen implements tcpip.Endpoint.Listen.
|
||||
func (*endpoint) Listen(int) tcpip.Error {
|
||||
return &tcpip.ErrNotSupported{}
|
||||
}
|
||||
|
||||
// Accept implements tcpip.Endpoint.Accept.
|
||||
func (*endpoint) Accept(*tcpip.FullAddress) (tcpip.Endpoint, *waiter.Queue, tcpip.Error) {
|
||||
return nil, nil, &tcpip.ErrNotSupported{}
|
||||
}
|
||||
|
||||
// Bind implements tcpip.Endpoint.Bind.
|
||||
func (e *endpoint) Bind(addr tcpip.FullAddress) tcpip.Error {
|
||||
return e.net.BindAndThen(addr, func(netProto tcpip.NetworkProtocolNumber, _ tcpip.Address) tcpip.Error {
|
||||
if !e.associated {
|
||||
return nil
|
||||
}
|
||||
|
||||
// Re-register the endpoint with the appropriate NIC.
|
||||
if err := e.stack.RegisterRawTransportEndpoint(netProto, e.transProto, e); err != nil {
|
||||
return err
|
||||
}
|
||||
e.stack.UnregisterRawTransportEndpoint(netProto, e.transProto, e)
|
||||
return nil
|
||||
})
|
||||
}
|
||||
|
||||
// GetLocalAddress implements tcpip.Endpoint.GetLocalAddress.
|
||||
func (e *endpoint) GetLocalAddress() (tcpip.FullAddress, tcpip.Error) {
|
||||
a := e.net.GetLocalAddress()
|
||||
// Linux returns the protocol in the port field.
|
||||
a.Port = uint16(e.transProto)
|
||||
return a, nil
|
||||
}
|
||||
|
||||
// GetRemoteAddress implements tcpip.Endpoint.GetRemoteAddress.
|
||||
func (*endpoint) GetRemoteAddress() (tcpip.FullAddress, tcpip.Error) {
|
||||
// Even a connected socket doesn't return a remote address.
|
||||
return tcpip.FullAddress{}, &tcpip.ErrNotConnected{}
|
||||
}
|
||||
|
||||
// Readiness implements tcpip.Endpoint.Readiness.
|
||||
func (e *endpoint) Readiness(mask waiter.EventMask) waiter.EventMask {
|
||||
var result waiter.EventMask
|
||||
|
||||
if e.net.HasSendSpace() {
|
||||
result |= waiter.WritableEvents & mask
|
||||
}
|
||||
|
||||
// Determine whether the endpoint is readable.
|
||||
if (mask & waiter.ReadableEvents) != 0 {
|
||||
e.rcvMu.Lock()
|
||||
if !e.rcvList.Empty() || e.rcvClosed {
|
||||
result |= waiter.ReadableEvents
|
||||
}
|
||||
e.rcvMu.Unlock()
|
||||
}
|
||||
|
||||
return result
|
||||
}
|
||||
|
||||
// SetSockOpt implements tcpip.Endpoint.SetSockOpt.
|
||||
func (e *endpoint) SetSockOpt(opt tcpip.SettableSocketOption) tcpip.Error {
|
||||
switch opt := opt.(type) {
|
||||
case *tcpip.SocketDetachFilterOption:
|
||||
return nil
|
||||
|
||||
case *tcpip.ICMPv6Filter:
|
||||
if e.net.NetProto() != header.IPv6ProtocolNumber {
|
||||
return &tcpip.ErrUnknownProtocolOption{}
|
||||
}
|
||||
|
||||
if e.transProto != header.ICMPv6ProtocolNumber {
|
||||
return &tcpip.ErrInvalidOptionValue{}
|
||||
}
|
||||
|
||||
e.mu.Lock()
|
||||
defer e.mu.Unlock()
|
||||
e.icmpv6Filter = *opt
|
||||
return nil
|
||||
default:
|
||||
return e.net.SetSockOpt(opt)
|
||||
}
|
||||
}
|
||||
|
||||
func (e *endpoint) SetSockOptInt(opt tcpip.SockOptInt, v int) tcpip.Error {
|
||||
switch opt {
|
||||
case tcpip.IPv6Checksum:
|
||||
if e.net.NetProto() != header.IPv6ProtocolNumber {
|
||||
return &tcpip.ErrUnknownProtocolOption{}
|
||||
}
|
||||
|
||||
if e.transProto == header.ICMPv6ProtocolNumber {
|
||||
// As per RFC 3542 section 3.1,
|
||||
//
|
||||
// An attempt to set IPV6_CHECKSUM for an ICMPv6 socket will fail.
|
||||
return &tcpip.ErrInvalidOptionValue{}
|
||||
}
|
||||
|
||||
// Make sure the offset is aligned properly if checksum is requested.
|
||||
if v > 0 && v%checksum.Size != 0 {
|
||||
return &tcpip.ErrInvalidOptionValue{}
|
||||
}
|
||||
|
||||
e.mu.Lock()
|
||||
defer e.mu.Unlock()
|
||||
e.ipv6ChecksumOffset = v
|
||||
return nil
|
||||
default:
|
||||
return e.net.SetSockOptInt(opt, v)
|
||||
}
|
||||
}
|
||||
|
||||
// GetSockOpt implements tcpip.Endpoint.GetSockOpt.
|
||||
func (e *endpoint) GetSockOpt(opt tcpip.GettableSocketOption) tcpip.Error {
|
||||
switch opt := opt.(type) {
|
||||
case *tcpip.ICMPv6Filter:
|
||||
if e.net.NetProto() != header.IPv6ProtocolNumber {
|
||||
return &tcpip.ErrUnknownProtocolOption{}
|
||||
}
|
||||
|
||||
if e.transProto != header.ICMPv6ProtocolNumber {
|
||||
return &tcpip.ErrInvalidOptionValue{}
|
||||
}
|
||||
|
||||
e.mu.RLock()
|
||||
defer e.mu.RUnlock()
|
||||
*opt = e.icmpv6Filter
|
||||
return nil
|
||||
|
||||
default:
|
||||
return e.net.GetSockOpt(opt)
|
||||
}
|
||||
}
|
||||
|
||||
// GetSockOptInt implements tcpip.Endpoint.GetSockOptInt.
|
||||
func (e *endpoint) GetSockOptInt(opt tcpip.SockOptInt) (int, tcpip.Error) {
|
||||
switch opt {
|
||||
case tcpip.ReceiveQueueSizeOption:
|
||||
v := 0
|
||||
e.rcvMu.Lock()
|
||||
if !e.rcvList.Empty() {
|
||||
p := e.rcvList.Front()
|
||||
v = p.data.Data().Size()
|
||||
}
|
||||
e.rcvMu.Unlock()
|
||||
return v, nil
|
||||
|
||||
case tcpip.IPv6Checksum:
|
||||
if e.net.NetProto() != header.IPv6ProtocolNumber {
|
||||
return 0, &tcpip.ErrUnknownProtocolOption{}
|
||||
}
|
||||
|
||||
e.mu.Lock()
|
||||
defer e.mu.Unlock()
|
||||
return e.ipv6ChecksumOffset, nil
|
||||
|
||||
default:
|
||||
return e.net.GetSockOptInt(opt)
|
||||
}
|
||||
}
|
||||
|
||||
// HandlePacket implements stack.RawTransportEndpoint.HandlePacket.
|
||||
func (e *endpoint) HandlePacket(pkt *stack.PacketBuffer) {
|
||||
notifyReadableEvents := func() bool {
|
||||
e.mu.RLock()
|
||||
defer e.mu.RUnlock()
|
||||
e.rcvMu.Lock()
|
||||
defer e.rcvMu.Unlock()
|
||||
|
||||
// Drop the packet if our buffer is currently full or if this is an unassociated
|
||||
// endpoint (i.e endpoint created w/ IPPROTO_RAW). Such endpoints are send only
|
||||
// See: https://man7.org/linux/man-pages/man7/raw.7.html
|
||||
//
|
||||
// An IPPROTO_RAW socket is send only. If you really want to receive
|
||||
// all IP packets, use a packet(7) socket with the ETH_P_IP protocol.
|
||||
// Note that packet sockets don't reassemble IP fragments, unlike raw
|
||||
// sockets.
|
||||
if e.rcvClosed || !e.associated {
|
||||
e.stack.Stats().DroppedPackets.Increment()
|
||||
e.stats.ReceiveErrors.ClosedReceiver.Increment()
|
||||
return false
|
||||
}
|
||||
|
||||
rcvBufSize := e.ops.GetReceiveBufferSize()
|
||||
if e.rcvDisabled || e.rcvBufSize >= int(rcvBufSize) {
|
||||
e.stack.Stats().DroppedPackets.Increment()
|
||||
e.stats.ReceiveErrors.ReceiveBufferOverflow.Increment()
|
||||
return false
|
||||
}
|
||||
|
||||
net := pkt.Network()
|
||||
dstAddr := net.DestinationAddress()
|
||||
srcAddr := net.SourceAddress()
|
||||
info := e.net.Info()
|
||||
|
||||
switch state := e.net.State(); state {
|
||||
case transport.DatagramEndpointStateInitial:
|
||||
case transport.DatagramEndpointStateConnected:
|
||||
// If connected, only accept packets from the remote address we
|
||||
// connected to.
|
||||
if info.ID.RemoteAddress != srcAddr {
|
||||
return false
|
||||
}
|
||||
|
||||
// Connected sockets may also have been bound to a specific
|
||||
// address/NIC.
|
||||
fallthrough
|
||||
case transport.DatagramEndpointStateBound:
|
||||
// If bound to a NIC, only accept data for that NIC.
|
||||
if info.BindNICID != 0 && info.BindNICID != pkt.NICID {
|
||||
return false
|
||||
}
|
||||
|
||||
// If bound to an address, only accept data for that address.
|
||||
if info.BindAddr != (tcpip.Address{}) && info.BindAddr != dstAddr {
|
||||
return false
|
||||
}
|
||||
default:
|
||||
panic(fmt.Sprintf("unhandled state = %s", state))
|
||||
}
|
||||
|
||||
wasEmpty := e.rcvBufSize == 0
|
||||
|
||||
// Push new packet into receive list and increment the buffer size.
|
||||
packet := &rawPacket{
|
||||
senderAddr: tcpip.FullAddress{
|
||||
NIC: pkt.NICID,
|
||||
Addr: srcAddr,
|
||||
},
|
||||
packetInfo: tcpip.IPPacketInfo{
|
||||
// TODO(gvisor.dev/issue/3556): dstAddr may be a multicast or broadcast
|
||||
// address. LocalAddr should hold a unicast address that can be
|
||||
// used to respond to the incoming packet.
|
||||
LocalAddr: dstAddr,
|
||||
DestinationAddr: dstAddr,
|
||||
NIC: pkt.NICID,
|
||||
},
|
||||
}
|
||||
|
||||
// Save any useful information from the network header to the packet.
|
||||
packet.tosOrTClass, _ = pkt.Network().TOS()
|
||||
switch pkt.NetworkProtocolNumber {
|
||||
case header.IPv4ProtocolNumber:
|
||||
packet.ttlOrHopLimit = header.IPv4(pkt.NetworkHeader().Slice()).TTL()
|
||||
case header.IPv6ProtocolNumber:
|
||||
packet.ttlOrHopLimit = header.IPv6(pkt.NetworkHeader().Slice()).HopLimit()
|
||||
}
|
||||
|
||||
// Raw IPv4 endpoints return the IP header, but IPv6 endpoints do not.
|
||||
// We copy headers' underlying bytes because pkt.*Header may point to
|
||||
// the middle of a slice, and another struct may point to the "outer"
|
||||
// slice. Save/restore doesn't support overlapping slices and will fail.
|
||||
//
|
||||
// TODO(https://gvisor.dev/issue/6517): Avoid the copy once S/R supports
|
||||
// overlapping slices.
|
||||
transportHeader := pkt.TransportHeader().Slice()
|
||||
var combinedBuf buffer.Buffer
|
||||
defer combinedBuf.Release()
|
||||
switch info.NetProto {
|
||||
case header.IPv4ProtocolNumber:
|
||||
networkHeader := pkt.NetworkHeader().Slice()
|
||||
headers := buffer.NewView(len(networkHeader) + len(transportHeader))
|
||||
headers.Write(networkHeader)
|
||||
headers.Write(transportHeader)
|
||||
combinedBuf = buffer.MakeWithView(headers)
|
||||
pktBuf := pkt.Data().ToBuffer()
|
||||
combinedBuf.Merge(&pktBuf)
|
||||
case header.IPv6ProtocolNumber:
|
||||
/*if e.transProto == header.ICMPv6ProtocolNumber {
|
||||
if len(transportHeader) < header.ICMPv6MinimumSize {
|
||||
return false
|
||||
}
|
||||
|
||||
if e.icmpv6Filter.ShouldDeny(uint8(header.ICMPv6(transportHeader).Type())) {
|
||||
return false
|
||||
}
|
||||
}
|
||||
|
||||
combinedBuf = buffer.MakeWithView(pkt.TransportHeader().View())
|
||||
pktBuf := pkt.Data().ToBuffer()
|
||||
combinedBuf.Merge(&pktBuf)
|
||||
|
||||
if checksumOffset := e.ipv6ChecksumOffset; checksumOffset >= 0 {
|
||||
bufSize := int(combinedBuf.Size())
|
||||
if bufSize < checksumOffset+checksum.Size {
|
||||
// Message too small to fit checksum.
|
||||
return false
|
||||
}
|
||||
|
||||
xsum := header.PseudoHeaderChecksum(e.transProto, srcAddr, dstAddr, uint16(bufSize))
|
||||
xsum = checksum.Combine(combinedBuf.Checksum(0), xsum)
|
||||
if xsum != 0xFFFF {
|
||||
// Invalid checksum.
|
||||
return false
|
||||
}
|
||||
}*/
|
||||
networkHeader := pkt.NetworkHeader().Slice()
|
||||
headers := buffer.NewView(len(networkHeader) + len(transportHeader))
|
||||
headers.Write(networkHeader)
|
||||
headers.Write(transportHeader)
|
||||
combinedBuf = buffer.MakeWithView(headers)
|
||||
pktBuf := pkt.Data().ToBuffer()
|
||||
combinedBuf.Merge(&pktBuf)
|
||||
default:
|
||||
panic(fmt.Sprintf("unrecognized protocol number = %d", info.NetProto))
|
||||
}
|
||||
|
||||
packet.data = stack.NewPacketBuffer(stack.PacketBufferOptions{Payload: combinedBuf.Clone()})
|
||||
packet.receivedAt = e.stack.Clock().Now()
|
||||
|
||||
e.rcvList.PushBack(packet)
|
||||
e.rcvBufSize += packet.data.Data().Size()
|
||||
e.stats.PacketsReceived.Increment()
|
||||
|
||||
// Notify waiters that there is data to be read now.
|
||||
return wasEmpty
|
||||
}()
|
||||
|
||||
if notifyReadableEvents {
|
||||
e.waiterQueue.Notify(waiter.ReadableEvents)
|
||||
}
|
||||
}
|
||||
|
||||
// State implements socket.Socket.State.
|
||||
func (e *endpoint) State() uint32 {
|
||||
return uint32(e.net.State())
|
||||
}
|
||||
|
||||
// Info returns a copy of the endpoint info.
|
||||
func (e *endpoint) Info() tcpip.EndpointInfo {
|
||||
ret := e.net.Info()
|
||||
return &ret
|
||||
}
|
||||
|
||||
// Stats returns a pointer to the endpoint stats.
|
||||
func (e *endpoint) Stats() tcpip.EndpointStats {
|
||||
return &e.stats
|
||||
}
|
||||
|
||||
// Wait implements stack.TransportEndpoint.Wait.
|
||||
func (*endpoint) Wait() {}
|
||||
|
||||
// LastError implements tcpip.Endpoint.LastError.
|
||||
func (*endpoint) LastError() tcpip.Error {
|
||||
return nil
|
||||
}
|
||||
|
||||
// SocketOptions implements tcpip.Endpoint.SocketOptions.
|
||||
func (e *endpoint) SocketOptions() *tcpip.SocketOptions {
|
||||
return &e.ops
|
||||
}
|
||||
|
||||
func (e *endpoint) setReceiveDisabled(v bool) {
|
||||
e.rcvMu.Lock()
|
||||
defer e.rcvMu.Unlock()
|
||||
e.rcvDisabled = v
|
||||
}
|
||||
78
pkg/tcpip/transport/raw/endpoint_state.go
Normal file
78
pkg/tcpip/transport/raw/endpoint_state.go
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
// 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 raw
|
||||
|
||||
import (
|
||||
"context"
|
||||
"time"
|
||||
|
||||
"github.com/sagernet/gvisor/pkg/log"
|
||||
"github.com/sagernet/gvisor/pkg/tcpip"
|
||||
"github.com/sagernet/gvisor/pkg/tcpip/stack"
|
||||
)
|
||||
|
||||
// saveReceivedAt is invoked by stateify.
|
||||
func (p *rawPacket) saveReceivedAt() int64 {
|
||||
return p.receivedAt.UnixNano()
|
||||
}
|
||||
|
||||
// loadReceivedAt is invoked by stateify.
|
||||
func (p *rawPacket) loadReceivedAt(_ context.Context, nsec int64) {
|
||||
p.receivedAt = time.Unix(0, nsec)
|
||||
}
|
||||
|
||||
// afterLoad is invoked by stateify.
|
||||
func (e *endpoint) afterLoad(ctx context.Context) {
|
||||
if e.stack.IsSaveRestoreEnabled() {
|
||||
e.stack.RegisterRestoredEndpoint(e)
|
||||
} else {
|
||||
stack.RestoreStackFromContext(ctx).RegisterRestoredEndpoint(e)
|
||||
}
|
||||
}
|
||||
|
||||
// beforeSave is invoked by stateify.
|
||||
func (e *endpoint) beforeSave() {
|
||||
e.setReceiveDisabled(true)
|
||||
e.stack.RegisterResumableEndpoint(e)
|
||||
}
|
||||
|
||||
// Restore implements tcpip.RestoredEndpoint.Restore.
|
||||
func (e *endpoint) Restore(s *stack.Stack) {
|
||||
if err := e.net.Resume(s); err != nil {
|
||||
log.Warningf("Closing the raw endpoint as it cannot be restored, err: %v", err)
|
||||
e.Close()
|
||||
return
|
||||
}
|
||||
e.setReceiveDisabled(false)
|
||||
if e.stack.IsSaveRestoreEnabled() {
|
||||
e.ops.InitHandler(e, e.stack, tcpip.GetStackSendBufferLimits, tcpip.GetStackReceiveBufferLimits)
|
||||
return
|
||||
}
|
||||
|
||||
e.stack = s
|
||||
e.ops.InitHandler(e, e.stack, tcpip.GetStackSendBufferLimits, tcpip.GetStackReceiveBufferLimits)
|
||||
|
||||
if e.associated {
|
||||
netProto := e.net.NetProto()
|
||||
if err := e.stack.RegisterRawTransportEndpoint(netProto, e.transProto, e); err != nil {
|
||||
panic("RegisterRawTransportEndpoint failed during restore")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Resume implements tcpip.ResumableEndpoint.Resume.
|
||||
func (e *endpoint) Resume() {
|
||||
e.setReceiveDisabled(false)
|
||||
}
|
||||
55
pkg/tcpip/transport/raw/protocol.go
Normal file
55
pkg/tcpip/transport/raw/protocol.go
Normal file
|
|
@ -0,0 +1,55 @@
|
|||
// Copyright 2019 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 raw
|
||||
|
||||
import (
|
||||
"github.com/sagernet/gvisor/pkg/tcpip"
|
||||
"github.com/sagernet/gvisor/pkg/tcpip/stack"
|
||||
"github.com/sagernet/gvisor/pkg/tcpip/transport/internal/noop"
|
||||
"github.com/sagernet/gvisor/pkg/tcpip/transport/packet"
|
||||
"github.com/sagernet/gvisor/pkg/waiter"
|
||||
)
|
||||
|
||||
// EndpointFactory implements stack.RawFactory.
|
||||
//
|
||||
// +stateify savable
|
||||
type EndpointFactory struct{}
|
||||
|
||||
// NewUnassociatedEndpoint implements stack.RawFactory.NewUnassociatedEndpoint.
|
||||
func (EndpointFactory) NewUnassociatedEndpoint(stack *stack.Stack, netProto tcpip.NetworkProtocolNumber, transProto tcpip.TransportProtocolNumber, waiterQueue *waiter.Queue) (tcpip.Endpoint, tcpip.Error) {
|
||||
return newEndpoint(stack, netProto, transProto, waiterQueue, false /* associated */)
|
||||
}
|
||||
|
||||
// NewPacketEndpoint implements stack.RawFactory.NewPacketEndpoint.
|
||||
func (EndpointFactory) NewPacketEndpoint(stack *stack.Stack, cooked bool, netProto tcpip.NetworkProtocolNumber, waiterQueue *waiter.Queue) (tcpip.Endpoint, tcpip.Error) {
|
||||
return packet.NewEndpoint(stack, cooked, netProto, waiterQueue), nil
|
||||
}
|
||||
|
||||
// CreateOnlyFactory implements stack.RawFactory. It allows creation of raw
|
||||
// endpoints that do not support reading, writing, binding, etc.
|
||||
//
|
||||
// +stateify savable
|
||||
type CreateOnlyFactory struct{}
|
||||
|
||||
// NewUnassociatedEndpoint implements stack.RawFactory.NewUnassociatedEndpoint.
|
||||
func (CreateOnlyFactory) NewUnassociatedEndpoint(stk *stack.Stack, _ tcpip.NetworkProtocolNumber, _ tcpip.TransportProtocolNumber, _ *waiter.Queue) (tcpip.Endpoint, tcpip.Error) {
|
||||
return noop.New(stk), nil
|
||||
}
|
||||
|
||||
// NewPacketEndpoint implements stack.RawFactory.NewPacketEndpoint.
|
||||
func (CreateOnlyFactory) NewPacketEndpoint(*stack.Stack, bool, tcpip.NetworkProtocolNumber, *waiter.Queue) (tcpip.Endpoint, tcpip.Error) {
|
||||
// This isn't needed by anything, so it isn't implemented.
|
||||
return nil, &tcpip.ErrNotPermitted{}
|
||||
}
|
||||
239
pkg/tcpip/transport/raw/raw_packet_list.go
Normal file
239
pkg/tcpip/transport/raw/raw_packet_list.go
Normal file
|
|
@ -0,0 +1,239 @@
|
|||
package raw
|
||||
|
||||
// ElementMapper provides an identity mapping by default.
|
||||
//
|
||||
// This can be replaced to provide a struct that maps elements to linker
|
||||
// objects, if they are not the same. An ElementMapper is not typically
|
||||
// required if: Linker is left as is, Element is left as is, or Linker and
|
||||
// Element are the same type.
|
||||
type rawPacketElementMapper struct{}
|
||||
|
||||
// linkerFor maps an Element to a Linker.
|
||||
//
|
||||
// This default implementation should be inlined.
|
||||
//
|
||||
//go:nosplit
|
||||
func (rawPacketElementMapper) linkerFor(elem *rawPacket) *rawPacket { return elem }
|
||||
|
||||
// List is an intrusive list. Entries can be added to or removed from the list
|
||||
// in O(1) time and with no additional memory allocations.
|
||||
//
|
||||
// The zero value for List is an empty list ready to use.
|
||||
//
|
||||
// To iterate over a list (where l is a List):
|
||||
//
|
||||
// for e := l.Front(); e != nil; e = e.Next() {
|
||||
// // do something with e.
|
||||
// }
|
||||
//
|
||||
// +stateify savable
|
||||
type rawPacketList struct {
|
||||
head *rawPacket
|
||||
tail *rawPacket
|
||||
}
|
||||
|
||||
// Reset resets list l to the empty state.
|
||||
func (l *rawPacketList) Reset() {
|
||||
l.head = nil
|
||||
l.tail = nil
|
||||
}
|
||||
|
||||
// Empty returns true iff the list is empty.
|
||||
//
|
||||
//go:nosplit
|
||||
func (l *rawPacketList) Empty() bool {
|
||||
return l.head == nil
|
||||
}
|
||||
|
||||
// Front returns the first element of list l or nil.
|
||||
//
|
||||
//go:nosplit
|
||||
func (l *rawPacketList) Front() *rawPacket {
|
||||
return l.head
|
||||
}
|
||||
|
||||
// Back returns the last element of list l or nil.
|
||||
//
|
||||
//go:nosplit
|
||||
func (l *rawPacketList) Back() *rawPacket {
|
||||
return l.tail
|
||||
}
|
||||
|
||||
// Len returns the number of elements in the list.
|
||||
//
|
||||
// NOTE: This is an O(n) operation.
|
||||
//
|
||||
//go:nosplit
|
||||
func (l *rawPacketList) Len() (count int) {
|
||||
for e := l.Front(); e != nil; e = (rawPacketElementMapper{}.linkerFor(e)).Next() {
|
||||
count++
|
||||
}
|
||||
return count
|
||||
}
|
||||
|
||||
// PushFront inserts the element e at the front of list l.
|
||||
//
|
||||
//go:nosplit
|
||||
func (l *rawPacketList) PushFront(e *rawPacket) {
|
||||
linker := rawPacketElementMapper{}.linkerFor(e)
|
||||
linker.SetNext(l.head)
|
||||
linker.SetPrev(nil)
|
||||
if l.head != nil {
|
||||
rawPacketElementMapper{}.linkerFor(l.head).SetPrev(e)
|
||||
} else {
|
||||
l.tail = e
|
||||
}
|
||||
|
||||
l.head = e
|
||||
}
|
||||
|
||||
// PushFrontList inserts list m at the start of list l, emptying m.
|
||||
//
|
||||
//go:nosplit
|
||||
func (l *rawPacketList) PushFrontList(m *rawPacketList) {
|
||||
if l.head == nil {
|
||||
l.head = m.head
|
||||
l.tail = m.tail
|
||||
} else if m.head != nil {
|
||||
rawPacketElementMapper{}.linkerFor(l.head).SetPrev(m.tail)
|
||||
rawPacketElementMapper{}.linkerFor(m.tail).SetNext(l.head)
|
||||
|
||||
l.head = m.head
|
||||
}
|
||||
m.head = nil
|
||||
m.tail = nil
|
||||
}
|
||||
|
||||
// PushBack inserts the element e at the back of list l.
|
||||
//
|
||||
//go:nosplit
|
||||
func (l *rawPacketList) PushBack(e *rawPacket) {
|
||||
linker := rawPacketElementMapper{}.linkerFor(e)
|
||||
linker.SetNext(nil)
|
||||
linker.SetPrev(l.tail)
|
||||
if l.tail != nil {
|
||||
rawPacketElementMapper{}.linkerFor(l.tail).SetNext(e)
|
||||
} else {
|
||||
l.head = e
|
||||
}
|
||||
|
||||
l.tail = e
|
||||
}
|
||||
|
||||
// PushBackList inserts list m at the end of list l, emptying m.
|
||||
//
|
||||
//go:nosplit
|
||||
func (l *rawPacketList) PushBackList(m *rawPacketList) {
|
||||
if l.head == nil {
|
||||
l.head = m.head
|
||||
l.tail = m.tail
|
||||
} else if m.head != nil {
|
||||
rawPacketElementMapper{}.linkerFor(l.tail).SetNext(m.head)
|
||||
rawPacketElementMapper{}.linkerFor(m.head).SetPrev(l.tail)
|
||||
|
||||
l.tail = m.tail
|
||||
}
|
||||
m.head = nil
|
||||
m.tail = nil
|
||||
}
|
||||
|
||||
// InsertAfter inserts e after b.
|
||||
//
|
||||
//go:nosplit
|
||||
func (l *rawPacketList) InsertAfter(b, e *rawPacket) {
|
||||
bLinker := rawPacketElementMapper{}.linkerFor(b)
|
||||
eLinker := rawPacketElementMapper{}.linkerFor(e)
|
||||
|
||||
a := bLinker.Next()
|
||||
|
||||
eLinker.SetNext(a)
|
||||
eLinker.SetPrev(b)
|
||||
bLinker.SetNext(e)
|
||||
|
||||
if a != nil {
|
||||
rawPacketElementMapper{}.linkerFor(a).SetPrev(e)
|
||||
} else {
|
||||
l.tail = e
|
||||
}
|
||||
}
|
||||
|
||||
// InsertBefore inserts e before a.
|
||||
//
|
||||
//go:nosplit
|
||||
func (l *rawPacketList) InsertBefore(a, e *rawPacket) {
|
||||
aLinker := rawPacketElementMapper{}.linkerFor(a)
|
||||
eLinker := rawPacketElementMapper{}.linkerFor(e)
|
||||
|
||||
b := aLinker.Prev()
|
||||
eLinker.SetNext(a)
|
||||
eLinker.SetPrev(b)
|
||||
aLinker.SetPrev(e)
|
||||
|
||||
if b != nil {
|
||||
rawPacketElementMapper{}.linkerFor(b).SetNext(e)
|
||||
} else {
|
||||
l.head = e
|
||||
}
|
||||
}
|
||||
|
||||
// Remove removes e from l.
|
||||
//
|
||||
//go:nosplit
|
||||
func (l *rawPacketList) Remove(e *rawPacket) {
|
||||
linker := rawPacketElementMapper{}.linkerFor(e)
|
||||
prev := linker.Prev()
|
||||
next := linker.Next()
|
||||
|
||||
if prev != nil {
|
||||
rawPacketElementMapper{}.linkerFor(prev).SetNext(next)
|
||||
} else if l.head == e {
|
||||
l.head = next
|
||||
}
|
||||
|
||||
if next != nil {
|
||||
rawPacketElementMapper{}.linkerFor(next).SetPrev(prev)
|
||||
} else if l.tail == e {
|
||||
l.tail = prev
|
||||
}
|
||||
|
||||
linker.SetNext(nil)
|
||||
linker.SetPrev(nil)
|
||||
}
|
||||
|
||||
// Entry is a default implementation of Linker. Users can add anonymous fields
|
||||
// of this type to their structs to make them automatically implement the
|
||||
// methods needed by List.
|
||||
//
|
||||
// +stateify savable
|
||||
type rawPacketEntry struct {
|
||||
next *rawPacket
|
||||
prev *rawPacket
|
||||
}
|
||||
|
||||
// Next returns the entry that follows e in the list.
|
||||
//
|
||||
//go:nosplit
|
||||
func (e *rawPacketEntry) Next() *rawPacket {
|
||||
return e.next
|
||||
}
|
||||
|
||||
// Prev returns the entry that precedes e in the list.
|
||||
//
|
||||
//go:nosplit
|
||||
func (e *rawPacketEntry) Prev() *rawPacket {
|
||||
return e.prev
|
||||
}
|
||||
|
||||
// SetNext assigns 'entry' as the entry that follows e in the list.
|
||||
//
|
||||
//go:nosplit
|
||||
func (e *rawPacketEntry) SetNext(elem *rawPacket) {
|
||||
e.next = elem
|
||||
}
|
||||
|
||||
// SetPrev assigns 'entry' as the entry that precedes e in the list.
|
||||
//
|
||||
//go:nosplit
|
||||
func (e *rawPacketEntry) SetPrev(elem *rawPacket) {
|
||||
e.prev = elem
|
||||
}
|
||||
222
pkg/tcpip/transport/raw/raw_state_autogen.go
Normal file
222
pkg/tcpip/transport/raw/raw_state_autogen.go
Normal file
|
|
@ -0,0 +1,222 @@
|
|||
// automatically generated by stateify.
|
||||
|
||||
package raw
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
"github.com/sagernet/gvisor/pkg/state"
|
||||
)
|
||||
|
||||
func (p *rawPacket) StateTypeName() string {
|
||||
return "pkg/tcpip/transport/raw.rawPacket"
|
||||
}
|
||||
|
||||
func (p *rawPacket) StateFields() []string {
|
||||
return []string{
|
||||
"rawPacketEntry",
|
||||
"data",
|
||||
"receivedAt",
|
||||
"senderAddr",
|
||||
"packetInfo",
|
||||
"tosOrTClass",
|
||||
"ttlOrHopLimit",
|
||||
}
|
||||
}
|
||||
|
||||
func (p *rawPacket) beforeSave() {}
|
||||
|
||||
// +checklocksignore
|
||||
func (p *rawPacket) StateSave(stateSinkObject state.Sink) {
|
||||
p.beforeSave()
|
||||
var receivedAtValue int64
|
||||
receivedAtValue = p.saveReceivedAt()
|
||||
stateSinkObject.SaveValue(2, receivedAtValue)
|
||||
stateSinkObject.Save(0, &p.rawPacketEntry)
|
||||
stateSinkObject.Save(1, &p.data)
|
||||
stateSinkObject.Save(3, &p.senderAddr)
|
||||
stateSinkObject.Save(4, &p.packetInfo)
|
||||
stateSinkObject.Save(5, &p.tosOrTClass)
|
||||
stateSinkObject.Save(6, &p.ttlOrHopLimit)
|
||||
}
|
||||
|
||||
func (p *rawPacket) afterLoad(context.Context) {}
|
||||
|
||||
// +checklocksignore
|
||||
func (p *rawPacket) StateLoad(ctx context.Context, stateSourceObject state.Source) {
|
||||
stateSourceObject.Load(0, &p.rawPacketEntry)
|
||||
stateSourceObject.Load(1, &p.data)
|
||||
stateSourceObject.Load(3, &p.senderAddr)
|
||||
stateSourceObject.Load(4, &p.packetInfo)
|
||||
stateSourceObject.Load(5, &p.tosOrTClass)
|
||||
stateSourceObject.Load(6, &p.ttlOrHopLimit)
|
||||
stateSourceObject.LoadValue(2, new(int64), func(y any) { p.loadReceivedAt(ctx, y.(int64)) })
|
||||
}
|
||||
|
||||
func (e *endpoint) StateTypeName() string {
|
||||
return "pkg/tcpip/transport/raw.endpoint"
|
||||
}
|
||||
|
||||
func (e *endpoint) StateFields() []string {
|
||||
return []string{
|
||||
"DefaultSocketOptionsHandler",
|
||||
"stack",
|
||||
"transProto",
|
||||
"waiterQueue",
|
||||
"associated",
|
||||
"net",
|
||||
"stats",
|
||||
"ops",
|
||||
"rcvList",
|
||||
"rcvBufSize",
|
||||
"rcvClosed",
|
||||
"rcvDisabled",
|
||||
"ipv6ChecksumOffset",
|
||||
"icmpv6Filter",
|
||||
}
|
||||
}
|
||||
|
||||
// +checklocksignore
|
||||
func (e *endpoint) StateSave(stateSinkObject state.Sink) {
|
||||
e.beforeSave()
|
||||
stateSinkObject.Save(0, &e.DefaultSocketOptionsHandler)
|
||||
stateSinkObject.Save(1, &e.stack)
|
||||
stateSinkObject.Save(2, &e.transProto)
|
||||
stateSinkObject.Save(3, &e.waiterQueue)
|
||||
stateSinkObject.Save(4, &e.associated)
|
||||
stateSinkObject.Save(5, &e.net)
|
||||
stateSinkObject.Save(6, &e.stats)
|
||||
stateSinkObject.Save(7, &e.ops)
|
||||
stateSinkObject.Save(8, &e.rcvList)
|
||||
stateSinkObject.Save(9, &e.rcvBufSize)
|
||||
stateSinkObject.Save(10, &e.rcvClosed)
|
||||
stateSinkObject.Save(11, &e.rcvDisabled)
|
||||
stateSinkObject.Save(12, &e.ipv6ChecksumOffset)
|
||||
stateSinkObject.Save(13, &e.icmpv6Filter)
|
||||
}
|
||||
|
||||
// +checklocksignore
|
||||
func (e *endpoint) StateLoad(ctx context.Context, stateSourceObject state.Source) {
|
||||
stateSourceObject.Load(0, &e.DefaultSocketOptionsHandler)
|
||||
stateSourceObject.Load(1, &e.stack)
|
||||
stateSourceObject.Load(2, &e.transProto)
|
||||
stateSourceObject.Load(3, &e.waiterQueue)
|
||||
stateSourceObject.Load(4, &e.associated)
|
||||
stateSourceObject.Load(5, &e.net)
|
||||
stateSourceObject.Load(6, &e.stats)
|
||||
stateSourceObject.Load(7, &e.ops)
|
||||
stateSourceObject.Load(8, &e.rcvList)
|
||||
stateSourceObject.Load(9, &e.rcvBufSize)
|
||||
stateSourceObject.Load(10, &e.rcvClosed)
|
||||
stateSourceObject.Load(11, &e.rcvDisabled)
|
||||
stateSourceObject.Load(12, &e.ipv6ChecksumOffset)
|
||||
stateSourceObject.Load(13, &e.icmpv6Filter)
|
||||
stateSourceObject.AfterLoad(func() { e.afterLoad(ctx) })
|
||||
}
|
||||
|
||||
func (e *EndpointFactory) StateTypeName() string {
|
||||
return "pkg/tcpip/transport/raw.EndpointFactory"
|
||||
}
|
||||
|
||||
func (e *EndpointFactory) StateFields() []string {
|
||||
return []string{}
|
||||
}
|
||||
|
||||
func (e *EndpointFactory) beforeSave() {}
|
||||
|
||||
// +checklocksignore
|
||||
func (e *EndpointFactory) StateSave(stateSinkObject state.Sink) {
|
||||
e.beforeSave()
|
||||
}
|
||||
|
||||
func (e *EndpointFactory) afterLoad(context.Context) {}
|
||||
|
||||
// +checklocksignore
|
||||
func (e *EndpointFactory) StateLoad(ctx context.Context, stateSourceObject state.Source) {
|
||||
}
|
||||
|
||||
func (c *CreateOnlyFactory) StateTypeName() string {
|
||||
return "pkg/tcpip/transport/raw.CreateOnlyFactory"
|
||||
}
|
||||
|
||||
func (c *CreateOnlyFactory) StateFields() []string {
|
||||
return []string{}
|
||||
}
|
||||
|
||||
func (c *CreateOnlyFactory) beforeSave() {}
|
||||
|
||||
// +checklocksignore
|
||||
func (c *CreateOnlyFactory) StateSave(stateSinkObject state.Sink) {
|
||||
c.beforeSave()
|
||||
}
|
||||
|
||||
func (c *CreateOnlyFactory) afterLoad(context.Context) {}
|
||||
|
||||
// +checklocksignore
|
||||
func (c *CreateOnlyFactory) StateLoad(ctx context.Context, stateSourceObject state.Source) {
|
||||
}
|
||||
|
||||
func (l *rawPacketList) StateTypeName() string {
|
||||
return "pkg/tcpip/transport/raw.rawPacketList"
|
||||
}
|
||||
|
||||
func (l *rawPacketList) StateFields() []string {
|
||||
return []string{
|
||||
"head",
|
||||
"tail",
|
||||
}
|
||||
}
|
||||
|
||||
func (l *rawPacketList) beforeSave() {}
|
||||
|
||||
// +checklocksignore
|
||||
func (l *rawPacketList) StateSave(stateSinkObject state.Sink) {
|
||||
l.beforeSave()
|
||||
stateSinkObject.Save(0, &l.head)
|
||||
stateSinkObject.Save(1, &l.tail)
|
||||
}
|
||||
|
||||
func (l *rawPacketList) afterLoad(context.Context) {}
|
||||
|
||||
// +checklocksignore
|
||||
func (l *rawPacketList) StateLoad(ctx context.Context, stateSourceObject state.Source) {
|
||||
stateSourceObject.Load(0, &l.head)
|
||||
stateSourceObject.Load(1, &l.tail)
|
||||
}
|
||||
|
||||
func (e *rawPacketEntry) StateTypeName() string {
|
||||
return "pkg/tcpip/transport/raw.rawPacketEntry"
|
||||
}
|
||||
|
||||
func (e *rawPacketEntry) StateFields() []string {
|
||||
return []string{
|
||||
"next",
|
||||
"prev",
|
||||
}
|
||||
}
|
||||
|
||||
func (e *rawPacketEntry) beforeSave() {}
|
||||
|
||||
// +checklocksignore
|
||||
func (e *rawPacketEntry) StateSave(stateSinkObject state.Sink) {
|
||||
e.beforeSave()
|
||||
stateSinkObject.Save(0, &e.next)
|
||||
stateSinkObject.Save(1, &e.prev)
|
||||
}
|
||||
|
||||
func (e *rawPacketEntry) afterLoad(context.Context) {}
|
||||
|
||||
// +checklocksignore
|
||||
func (e *rawPacketEntry) StateLoad(ctx context.Context, stateSourceObject state.Source) {
|
||||
stateSourceObject.Load(0, &e.next)
|
||||
stateSourceObject.Load(1, &e.prev)
|
||||
}
|
||||
|
||||
func init() {
|
||||
state.Register((*rawPacket)(nil))
|
||||
state.Register((*endpoint)(nil))
|
||||
state.Register((*EndpointFactory)(nil))
|
||||
state.Register((*CreateOnlyFactory)(nil))
|
||||
state.Register((*rawPacketList)(nil))
|
||||
state.Register((*rawPacketEntry)(nil))
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue