Обновление снапшота с v0.0.0-20250811.0 на пин, которого требует sing-box после мержа 235 коммитов (upstream d620bbbf2 "Update gvisor to 20260727.0"). Прежний снапшот был взят 2026-08-04 ровно с той версии, на которой тогда стоял апстрим; разрыв возник 2026-08-05 вместе с его бампом. За год апстрим-gvisor изменил ~14 000 строк в 292 файлах. Значимое для нас — сетевой стек: tcp/connect.go (PMTU-discovery + исправление начального RTT/RTO: раньше задержка ACK внутри стека завышала стартовый таймаут на несколько RTT), tcp/snd.go, tcp/rcv.go, stack/conntrack.go, stack/packet_buffer.go. Всего 30 файлов в TCP и 37 в stack. Баг SPEC 048 апстрим НЕ исправил — проверено по коду новой версии: handleConnecting по-прежнему проверяет состояние endpoint'а, но не ep.h, а performHandshake так же зануляет h и отпускает мьютекс до Close(). Поэтому guard перенесён (12 строк) вместе со своим тестом (45 строк). Red/green проверен на новой базе: без guard'а тест падает с той же nil-паникой, что в полевом крашдампе; с ним зелёный.
113 lines
3.1 KiB
Go
113 lines
3.1 KiB
Go
// Copyright 2021 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 linux
|
|
|
|
import (
|
|
"structs"
|
|
|
|
"github.com/sagernet/gvisor/pkg/marshal/primitive"
|
|
)
|
|
|
|
// Linux-specific control commands. Source: include/uapi/linux/msg.h
|
|
const (
|
|
MSG_STAT = 11
|
|
MSG_INFO = 12
|
|
MSG_STAT_ANY = 13
|
|
)
|
|
|
|
// msgrcv(2) options. Source: include/uapi/linux/msg.h
|
|
const (
|
|
MSG_NOERROR = 0o10000 // No error if message is too big.
|
|
MSG_EXCEPT = 0o20000 // Receive any message except of specified type.
|
|
MSG_COPY = 0o40000 // Copy (not remove) all queue messages.
|
|
)
|
|
|
|
// System-wide limits for message queues. Source: include/uapi/linux/msg.h
|
|
const (
|
|
MSGMNI = 32000 // Maximum number of message queue identifiers.
|
|
MSGMAX = 8192 // Maximum size of message (bytes).
|
|
MSGMNB = 16384 // Default max size of a message queue.
|
|
)
|
|
|
|
// System-wide limits. Unused. Source: include/uapi/linux/msg.h
|
|
const (
|
|
MSGPOOL = (MSGMNI * MSGMNB / 1024)
|
|
MSGTQL = MSGMNB
|
|
MSGMAP = MSGMNB
|
|
MSGSSZ = 16
|
|
|
|
// MSGSEG is simplified due to the inexistance of a ternary operator.
|
|
MSGSEG = 0xffff
|
|
)
|
|
|
|
// MsqidDS is equivalent to struct msqid64_ds. Source:
|
|
// include/uapi/asm-generic/shmbuf.h
|
|
//
|
|
// +marshal
|
|
type MsqidDS struct {
|
|
_ structs.HostLayout
|
|
MsgPerm IPCPerm // IPC permissions.
|
|
MsgStime TimeT // Last msgsnd time.
|
|
MsgRtime TimeT // Last msgrcv time.
|
|
MsgCtime TimeT // Last change time.
|
|
MsgCbytes uint64 // Current number of bytes on the queue.
|
|
MsgQnum uint64 // Number of messages in the queue.
|
|
MsgQbytes uint64 // Max number of bytes in the queue.
|
|
MsgLspid int32 // PID of last msgsnd.
|
|
MsgLrpid int32 // PID of last msgrcv.
|
|
unused4 uint64
|
|
unused5 uint64
|
|
}
|
|
|
|
// MsgBuf is equivalent to struct msgbuf. Source: include/uapi/linux/msg.h
|
|
//
|
|
// +marshal dynamic
|
|
type MsgBuf struct {
|
|
_ structs.HostLayout
|
|
Type primitive.Int64
|
|
Text primitive.ByteSlice `hostlayout:"ignore"`
|
|
}
|
|
|
|
// SizeBytes implements marshal.Marshallable.SizeBytes.
|
|
func (b *MsgBuf) SizeBytes() int {
|
|
return b.Type.SizeBytes() + b.Text.SizeBytes()
|
|
}
|
|
|
|
// MarshalBytes implements marshal.Marshallable.MarshalBytes.
|
|
func (b *MsgBuf) MarshalBytes(dst []byte) []byte {
|
|
dst = b.Type.MarshalUnsafe(dst)
|
|
return b.Text.MarshalBytes(dst)
|
|
}
|
|
|
|
// UnmarshalBytes implements marshal.Marshallable.UnmarshalBytes.
|
|
func (b *MsgBuf) UnmarshalBytes(src []byte) []byte {
|
|
src = b.Type.UnmarshalUnsafe(src)
|
|
return b.Text.UnmarshalBytes(src)
|
|
}
|
|
|
|
// MsgInfo is equivalent to struct msginfo. Source: include/uapi/linux/msg.h
|
|
//
|
|
// +marshal
|
|
type MsgInfo struct {
|
|
_ structs.HostLayout
|
|
MsgPool int32
|
|
MsgMap int32
|
|
MsgMax int32
|
|
MsgMnb int32
|
|
MsgMni int32
|
|
MsgSsz int32
|
|
MsgTql int32
|
|
MsgSeg uint16 `marshal:"unaligned"`
|
|
}
|