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
150
pkg/tcpip/transport/icmp/protocol.go
Normal file
150
pkg/tcpip/transport/icmp/protocol.go
Normal file
|
|
@ -0,0 +1,150 @@
|
|||
// 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 icmp contains the implementation of the ICMP and IPv6-ICMP transport
|
||||
// protocols for use in ping.
|
||||
package icmp
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
||||
"github.com/sagernet/gvisor/pkg/tcpip"
|
||||
"github.com/sagernet/gvisor/pkg/tcpip/header"
|
||||
"github.com/sagernet/gvisor/pkg/tcpip/stack"
|
||||
"github.com/sagernet/gvisor/pkg/tcpip/transport/raw"
|
||||
"github.com/sagernet/gvisor/pkg/waiter"
|
||||
)
|
||||
|
||||
const (
|
||||
// ProtocolNumber4 is the ICMP protocol number.
|
||||
ProtocolNumber4 = header.ICMPv4ProtocolNumber
|
||||
|
||||
// ProtocolNumber6 is the IPv6-ICMP protocol number.
|
||||
ProtocolNumber6 = header.ICMPv6ProtocolNumber
|
||||
)
|
||||
|
||||
// protocol implements stack.TransportProtocol.
|
||||
//
|
||||
// +stateify savable
|
||||
type protocol struct {
|
||||
stack *stack.Stack
|
||||
|
||||
number tcpip.TransportProtocolNumber
|
||||
}
|
||||
|
||||
// Number returns the ICMP protocol number.
|
||||
func (p *protocol) Number() tcpip.TransportProtocolNumber {
|
||||
return p.number
|
||||
}
|
||||
|
||||
func (p *protocol) netProto() tcpip.NetworkProtocolNumber {
|
||||
switch p.number {
|
||||
case ProtocolNumber4:
|
||||
return header.IPv4ProtocolNumber
|
||||
case ProtocolNumber6:
|
||||
return header.IPv6ProtocolNumber
|
||||
}
|
||||
panic(fmt.Sprint("unknown protocol number: ", p.number))
|
||||
}
|
||||
|
||||
// NewEndpoint creates a new icmp endpoint. It implements
|
||||
// stack.TransportProtocol.NewEndpoint.
|
||||
func (p *protocol) NewEndpoint(netProto tcpip.NetworkProtocolNumber, waiterQueue *waiter.Queue) (tcpip.Endpoint, tcpip.Error) {
|
||||
if netProto != p.netProto() {
|
||||
return nil, &tcpip.ErrUnknownProtocol{}
|
||||
}
|
||||
return newEndpoint(p.stack, netProto, p.number, waiterQueue)
|
||||
}
|
||||
|
||||
// NewRawEndpoint creates a new raw icmp endpoint. It implements
|
||||
// stack.TransportProtocol.NewRawEndpoint.
|
||||
func (p *protocol) NewRawEndpoint(netProto tcpip.NetworkProtocolNumber, waiterQueue *waiter.Queue) (tcpip.Endpoint, tcpip.Error) {
|
||||
if netProto != p.netProto() {
|
||||
return nil, &tcpip.ErrUnknownProtocol{}
|
||||
}
|
||||
return raw.NewEndpoint(p.stack, netProto, p.number, waiterQueue)
|
||||
}
|
||||
|
||||
// MinimumPacketSize returns the minimum valid icmp packet size.
|
||||
func (p *protocol) MinimumPacketSize() int {
|
||||
switch p.number {
|
||||
case ProtocolNumber4:
|
||||
return header.ICMPv4MinimumSize
|
||||
case ProtocolNumber6:
|
||||
return header.ICMPv6MinimumSize
|
||||
}
|
||||
panic(fmt.Sprint("unknown protocol number: ", p.number))
|
||||
}
|
||||
|
||||
// ParsePorts in case of ICMP sets src to 0, dst to ICMP ID, and err to nil.
|
||||
func (p *protocol) ParsePorts(v []byte) (src, dst uint16, err tcpip.Error) {
|
||||
switch p.number {
|
||||
case ProtocolNumber4:
|
||||
hdr := header.ICMPv4(v)
|
||||
return 0, hdr.Ident(), nil
|
||||
case ProtocolNumber6:
|
||||
hdr := header.ICMPv6(v)
|
||||
return 0, hdr.Ident(), nil
|
||||
}
|
||||
panic(fmt.Sprint("unknown protocol number: ", p.number))
|
||||
}
|
||||
|
||||
// HandleUnknownDestinationPacket handles packets targeted at this protocol but
|
||||
// that don't match any existing endpoint.
|
||||
func (*protocol) HandleUnknownDestinationPacket(stack.TransportEndpointID, *stack.PacketBuffer) stack.UnknownDestinationPacketDisposition {
|
||||
return stack.UnknownDestinationPacketHandled
|
||||
}
|
||||
|
||||
// SetOption implements stack.TransportProtocol.SetOption.
|
||||
func (*protocol) SetOption(tcpip.SettableTransportProtocolOption) tcpip.Error {
|
||||
return &tcpip.ErrUnknownProtocolOption{}
|
||||
}
|
||||
|
||||
// Option implements stack.TransportProtocol.Option.
|
||||
func (*protocol) Option(tcpip.GettableTransportProtocolOption) tcpip.Error {
|
||||
return &tcpip.ErrUnknownProtocolOption{}
|
||||
}
|
||||
|
||||
// Close implements stack.TransportProtocol.Close.
|
||||
func (*protocol) Close() {}
|
||||
|
||||
// Wait implements stack.TransportProtocol.Wait.
|
||||
func (*protocol) Wait() {}
|
||||
|
||||
// Pause implements stack.TransportProtocol.Pause.
|
||||
func (*protocol) Pause() {}
|
||||
|
||||
// Resume implements stack.TransportProtocol.Resume.
|
||||
func (*protocol) Resume() {}
|
||||
|
||||
// Restore implements stack.TransportProtocol.Restore.
|
||||
func (*protocol) Restore() {}
|
||||
|
||||
// Parse implements stack.TransportProtocol.Parse.
|
||||
func (*protocol) Parse(pkt *stack.PacketBuffer) bool {
|
||||
// Right now, the Parse() method is tied to enabled protocols passed into
|
||||
// stack.New. This works for UDP and TCP, but we handle ICMP traffic even
|
||||
// when netstack users don't pass ICMP as a supported protocol.
|
||||
return false
|
||||
}
|
||||
|
||||
// NewProtocol4 returns an ICMPv4 transport protocol.
|
||||
func NewProtocol4(s *stack.Stack) stack.TransportProtocol {
|
||||
return &protocol{stack: s, number: ProtocolNumber4}
|
||||
}
|
||||
|
||||
// NewProtocol6 returns an ICMPv6 transport protocol.
|
||||
func NewProtocol6(s *stack.Stack) stack.TransportProtocol {
|
||||
return &protocol{stack: s, number: ProtocolNumber6}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue