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
121
pkg/tcpip/link/ethernet/ethernet.go
Normal file
121
pkg/tcpip/link/ethernet/ethernet.go
Normal file
|
|
@ -0,0 +1,121 @@
|
|||
// Copyright 2020 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 ethernet provides an implementation of an ethernet link endpoint that
|
||||
// wraps an inner link endpoint.
|
||||
package ethernet
|
||||
|
||||
import (
|
||||
"github.com/sagernet/gvisor/pkg/tcpip"
|
||||
"github.com/sagernet/gvisor/pkg/tcpip/header"
|
||||
"github.com/sagernet/gvisor/pkg/tcpip/link/nested"
|
||||
"github.com/sagernet/gvisor/pkg/tcpip/stack"
|
||||
)
|
||||
|
||||
var (
|
||||
_ stack.NetworkDispatcher = (*Endpoint)(nil)
|
||||
_ stack.LinkEndpoint = (*Endpoint)(nil)
|
||||
)
|
||||
|
||||
// New returns an ethernet link endpoint that wraps an inner link endpoint.
|
||||
func New(ep stack.LinkEndpoint) *Endpoint {
|
||||
var e Endpoint
|
||||
e.Endpoint.Init(ep, &e)
|
||||
return &e
|
||||
}
|
||||
|
||||
// Endpoint is an ethernet endpoint.
|
||||
//
|
||||
// It adds an ethernet header to packets before sending them out through its
|
||||
// inner link endpoint and consumes an ethernet header before sending the
|
||||
// packet to the stack.
|
||||
//
|
||||
// +stateify savable
|
||||
type Endpoint struct {
|
||||
nested.Endpoint
|
||||
}
|
||||
|
||||
// LinkAddress implements stack.LinkEndpoint.
|
||||
func (e *Endpoint) LinkAddress() tcpip.LinkAddress {
|
||||
if l := e.Endpoint.LinkAddress(); len(l) != 0 {
|
||||
return l
|
||||
}
|
||||
return header.UnspecifiedEthernetAddress
|
||||
}
|
||||
|
||||
// MTU implements stack.LinkEndpoint.
|
||||
func (e *Endpoint) MTU() uint32 {
|
||||
return e.Endpoint.MTU()
|
||||
}
|
||||
|
||||
// DeliverNetworkPacket implements stack.NetworkDispatcher.
|
||||
func (e *Endpoint) DeliverNetworkPacket(_ tcpip.NetworkProtocolNumber, pkt *stack.PacketBuffer) {
|
||||
if !e.ParseHeader(pkt) {
|
||||
return
|
||||
}
|
||||
eth := header.Ethernet(pkt.LinkHeader().Slice())
|
||||
dst := eth.DestinationAddress()
|
||||
if dst == header.EthernetBroadcastAddress {
|
||||
pkt.PktType = tcpip.PacketBroadcast
|
||||
} else if header.IsMulticastEthernetAddress(dst) {
|
||||
pkt.PktType = tcpip.PacketMulticast
|
||||
} else if dst == e.LinkAddress() {
|
||||
pkt.PktType = tcpip.PacketHost
|
||||
} else {
|
||||
pkt.PktType = tcpip.PacketOtherHost
|
||||
}
|
||||
|
||||
// Note, there is no need to check the destination link address here since
|
||||
// the ethernet hardware filters frames based on their destination addresses.
|
||||
e.Endpoint.DeliverNetworkPacket(eth.Type() /* protocol */, pkt)
|
||||
}
|
||||
|
||||
// Capabilities implements stack.LinkEndpoint.
|
||||
func (e *Endpoint) Capabilities() stack.LinkEndpointCapabilities {
|
||||
c := e.Endpoint.Capabilities()
|
||||
if c&stack.CapabilityLoopback == 0 {
|
||||
c |= stack.CapabilityResolutionRequired
|
||||
}
|
||||
return c
|
||||
}
|
||||
|
||||
// MaxHeaderLength implements stack.LinkEndpoint.
|
||||
func (e *Endpoint) MaxHeaderLength() uint16 {
|
||||
return header.EthernetMinimumSize + e.Endpoint.MaxHeaderLength()
|
||||
}
|
||||
|
||||
// ARPHardwareType implements stack.LinkEndpoint.
|
||||
func (e *Endpoint) ARPHardwareType() header.ARPHardwareType {
|
||||
if a := e.Endpoint.ARPHardwareType(); a != header.ARPHardwareNone {
|
||||
return a
|
||||
}
|
||||
return header.ARPHardwareEther
|
||||
}
|
||||
|
||||
// AddHeader implements stack.LinkEndpoint.
|
||||
func (*Endpoint) AddHeader(pkt *stack.PacketBuffer) {
|
||||
eth := header.Ethernet(pkt.LinkHeader().Push(header.EthernetMinimumSize))
|
||||
fields := header.EthernetFields{
|
||||
SrcAddr: pkt.EgressRoute.LocalLinkAddress,
|
||||
DstAddr: pkt.EgressRoute.RemoteLinkAddress,
|
||||
Type: pkt.NetworkProtocolNumber,
|
||||
}
|
||||
eth.Encode(&fields)
|
||||
}
|
||||
|
||||
// ParseHeader implements stack.LinkEndpoint.
|
||||
func (*Endpoint) ParseHeader(pkt *stack.PacketBuffer) bool {
|
||||
_, ok := pkt.LinkHeader().Consume(header.EthernetMinimumSize)
|
||||
return ok
|
||||
}
|
||||
38
pkg/tcpip/link/ethernet/ethernet_state_autogen.go
Normal file
38
pkg/tcpip/link/ethernet/ethernet_state_autogen.go
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
// automatically generated by stateify.
|
||||
|
||||
package ethernet
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
"github.com/sagernet/gvisor/pkg/state"
|
||||
)
|
||||
|
||||
func (e *Endpoint) StateTypeName() string {
|
||||
return "pkg/tcpip/link/ethernet.Endpoint"
|
||||
}
|
||||
|
||||
func (e *Endpoint) StateFields() []string {
|
||||
return []string{
|
||||
"Endpoint",
|
||||
}
|
||||
}
|
||||
|
||||
func (e *Endpoint) beforeSave() {}
|
||||
|
||||
// +checklocksignore
|
||||
func (e *Endpoint) StateSave(stateSinkObject state.Sink) {
|
||||
e.beforeSave()
|
||||
stateSinkObject.Save(0, &e.Endpoint)
|
||||
}
|
||||
|
||||
func (e *Endpoint) afterLoad(context.Context) {}
|
||||
|
||||
// +checklocksignore
|
||||
func (e *Endpoint) StateLoad(ctx context.Context, stateSourceObject state.Source) {
|
||||
stateSourceObject.Load(0, &e.Endpoint)
|
||||
}
|
||||
|
||||
func init() {
|
||||
state.Register((*Endpoint)(nil))
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue