Обновление снапшота с 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-паникой, что в полевом крашдампе; с ним зелёный.
102 lines
2.2 KiB
Go
102 lines
2.2 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 linux
|
|
|
|
import (
|
|
"encoding/binary"
|
|
"structs"
|
|
)
|
|
|
|
// AIORing is struct aio_ring, from fs/aio.c, without the trailing
|
|
// variable-length array.
|
|
type AIORing struct {
|
|
_ structs.HostLayout
|
|
ID uint32
|
|
Nr uint32
|
|
Head uint32
|
|
Tail uint32
|
|
Magic uint32
|
|
CompatFeatures uint32
|
|
IncompatFeatures uint32
|
|
HeaderLength uint32
|
|
}
|
|
|
|
// AIORingSize is sizeof(struct aio_ring).
|
|
const AIORingSize = 32
|
|
|
|
// AIO_RING_MAGIC is fs/aio.c:AIO_RING_MAGIC, the expected value of
|
|
// AIORing.Magic.
|
|
const AIO_RING_MAGIC = 0xa10a10a1
|
|
|
|
// I/O commands.
|
|
const (
|
|
IOCB_CMD_PREAD = 0
|
|
IOCB_CMD_PWRITE = 1
|
|
IOCB_CMD_FSYNC = 2
|
|
IOCB_CMD_FDSYNC = 3
|
|
// 4 was the experimental IOCB_CMD_PREADX.
|
|
IOCB_CMD_POLL = 5
|
|
IOCB_CMD_NOOP = 6
|
|
IOCB_CMD_PREADV = 7
|
|
IOCB_CMD_PWRITEV = 8
|
|
)
|
|
|
|
// I/O flags.
|
|
const (
|
|
IOCB_FLAG_RESFD = 1
|
|
IOCB_FLAG_IOPRIO = 2
|
|
)
|
|
|
|
// IOCallback describes an I/O request.
|
|
//
|
|
// The priority field is currently ignored in the implementation below. Also
|
|
// note that the IOCB_FLAG_RESFD feature is not supported.
|
|
//
|
|
// +marshal
|
|
type IOCallback struct {
|
|
_ structs.HostLayout
|
|
Data uint64
|
|
Key uint32
|
|
_ uint32
|
|
|
|
OpCode uint16
|
|
ReqPrio int16
|
|
FD int32
|
|
|
|
Buf uint64
|
|
Bytes uint64
|
|
Offset int64
|
|
|
|
Reserved2 uint64
|
|
Flags uint32
|
|
|
|
// eventfd to signal if IOCB_FLAG_RESFD is set in flags.
|
|
ResFD int32
|
|
}
|
|
|
|
// IOEvent describes an I/O result.
|
|
//
|
|
// +marshal
|
|
// +stateify savable
|
|
type IOEvent struct {
|
|
_ structs.HostLayout
|
|
Data uint64
|
|
Obj uint64
|
|
Result int64
|
|
Result2 int64
|
|
}
|
|
|
|
// IOEventSize is the size of an ioEvent encoded.
|
|
var IOEventSize = binary.Size(IOEvent{})
|