Содержимое пина, зафиксированного в 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
439 lines
14 KiB
Go
439 lines
14 KiB
Go
package locking
|
|
|
|
import (
|
|
"sync/atomic"
|
|
"unsafe"
|
|
|
|
"github.com/sagernet/gvisor/pkg/gohacks"
|
|
"github.com/sagernet/gvisor/pkg/sync"
|
|
)
|
|
|
|
const (
|
|
// ShardOrder is an optional parameter specifying the base-2 log of the
|
|
// number of shards per AtomicPtrMap. Higher values of ShardOrder reduce
|
|
// unnecessary synchronization between unrelated concurrent operations,
|
|
// improving performance for write-heavy workloads, but increase memory
|
|
// usage for small maps.
|
|
goroutineLocksShardOrder = 0
|
|
)
|
|
|
|
// Hasher is an optional type parameter. If Hasher is provided, it must define
|
|
// the Init and Hash methods. One Hasher will be shared by all AtomicPtrMaps.
|
|
type goroutineLocksHasher struct {
|
|
goroutineLocksdefaultHasher
|
|
}
|
|
|
|
// defaultHasher is the default Hasher. This indirection exists because
|
|
// defaultHasher must exist even if a custom Hasher is provided, to prevent the
|
|
// Go compiler from complaining about defaultHasher's unused imports.
|
|
type goroutineLocksdefaultHasher struct {
|
|
fn func(unsafe.Pointer, uintptr) uintptr
|
|
seed uintptr
|
|
}
|
|
|
|
// Init initializes the Hasher.
|
|
func (h *goroutineLocksdefaultHasher) Init() {
|
|
h.fn = sync.MapKeyHasher(map[int64]*goroutineLocks(nil))
|
|
h.seed = sync.RandUintptr()
|
|
}
|
|
|
|
// Hash returns the hash value for the given Key.
|
|
func (h *goroutineLocksdefaultHasher) Hash(key int64) uintptr {
|
|
return h.fn(gohacks.Noescape(unsafe.Pointer(&key)), h.seed)
|
|
}
|
|
|
|
var goroutineLockshasher goroutineLocksHasher
|
|
|
|
func init() {
|
|
goroutineLockshasher.Init()
|
|
}
|
|
|
|
// An AtomicPtrMap maps Keys to non-nil pointers to Values. AtomicPtrMap are
|
|
// safe for concurrent use from multiple goroutines without additional
|
|
// synchronization.
|
|
//
|
|
// The zero value of AtomicPtrMap is empty (maps all Keys to nil) and ready for
|
|
// use. AtomicPtrMaps must not be copied after first use.
|
|
//
|
|
// sync.Map may be faster than AtomicPtrMap if most operations on the map are
|
|
// concurrent writes to a fixed set of keys. AtomicPtrMap is usually faster in
|
|
// other circumstances.
|
|
type goroutineLocksAtomicPtrMap struct {
|
|
shards [1 << goroutineLocksShardOrder]goroutineLocksapmShard
|
|
}
|
|
|
|
func (m *goroutineLocksAtomicPtrMap) shard(hash uintptr) *goroutineLocksapmShard {
|
|
// Go defines right shifts >= width of shifted unsigned operand as 0, so
|
|
// this is correct even if ShardOrder is 0 (although nogo complains because
|
|
// nogo is dumb).
|
|
const indexLSB = unsafe.Sizeof(uintptr(0))*8 - goroutineLocksShardOrder
|
|
index := hash >> indexLSB
|
|
return (*goroutineLocksapmShard)(unsafe.Pointer(uintptr(unsafe.Pointer(&m.shards)) + (index * unsafe.Sizeof(goroutineLocksapmShard{}))))
|
|
}
|
|
|
|
type goroutineLocksapmShard struct {
|
|
goroutineLocksapmShardMutationData
|
|
_ [goroutineLocksapmShardMutationDataPadding]byte
|
|
goroutineLocksapmShardLookupData
|
|
_ [goroutineLocksapmShardLookupDataPadding]byte
|
|
}
|
|
|
|
type goroutineLocksapmShardMutationData struct {
|
|
dirtyMu sync.Mutex // serializes slot transitions out of empty
|
|
dirty uintptr // # slots with val != nil
|
|
count uintptr // # slots with val != nil and val != tombstone()
|
|
rehashMu sync.Mutex // serializes rehashing
|
|
}
|
|
|
|
type goroutineLocksapmShardLookupData struct {
|
|
seq sync.SeqCount // allows atomic reads of slots+mask
|
|
slots unsafe.Pointer // [mask+1]slot or nil; protected by rehashMu/seq
|
|
mask uintptr // always (a power of 2) - 1; protected by rehashMu/seq
|
|
}
|
|
|
|
const (
|
|
goroutineLockscacheLineBytes = 64
|
|
// Cache line padding is enabled if sharding is.
|
|
goroutineLocksapmEnablePadding = (goroutineLocksShardOrder + 63) >> 6 // 0 if ShardOrder == 0, 1 otherwise
|
|
// The -1 and +1 below are required to ensure that if unsafe.Sizeof(T) %
|
|
// cacheLineBytes == 0, then padding is 0 (rather than cacheLineBytes).
|
|
goroutineLocksapmShardMutationDataRequiredPadding = goroutineLockscacheLineBytes - (((unsafe.Sizeof(goroutineLocksapmShardMutationData{}) - 1) % goroutineLockscacheLineBytes) + 1)
|
|
goroutineLocksapmShardMutationDataPadding = goroutineLocksapmEnablePadding * goroutineLocksapmShardMutationDataRequiredPadding
|
|
goroutineLocksapmShardLookupDataRequiredPadding = goroutineLockscacheLineBytes - (((unsafe.Sizeof(goroutineLocksapmShardLookupData{}) - 1) % goroutineLockscacheLineBytes) + 1)
|
|
goroutineLocksapmShardLookupDataPadding = goroutineLocksapmEnablePadding * goroutineLocksapmShardLookupDataRequiredPadding
|
|
|
|
// These define fractional thresholds for when apmShard.rehash() is called
|
|
// (i.e. the load factor) and when it rehases to a larger table
|
|
// respectively. They are chosen such that the rehash threshold = the
|
|
// expansion threshold + 1/2, so that when reuse of deleted slots is rare
|
|
// or non-existent, rehashing occurs after the insertion of at least 1/2
|
|
// the table's size in new entries, which is acceptably infrequent.
|
|
goroutineLocksapmRehashThresholdNum = 2
|
|
goroutineLocksapmRehashThresholdDen = 3
|
|
goroutineLocksapmExpansionThresholdNum = 1
|
|
goroutineLocksapmExpansionThresholdDen = 6
|
|
)
|
|
|
|
type goroutineLocksapmSlot struct {
|
|
// slot states are indicated by val:
|
|
//
|
|
// * Empty: val == nil; key is meaningless. May transition to full or
|
|
// evacuated with dirtyMu locked.
|
|
//
|
|
// * Full: val != nil, tombstone(), or evacuated(); key is immutable. val
|
|
// is the Value mapped to key. May transition to deleted or evacuated.
|
|
//
|
|
// * Deleted: val == tombstone(); key is still immutable. key is mapped to
|
|
// no Value. May transition to full or evacuated.
|
|
//
|
|
// * Evacuated: val == evacuated(); key is immutable. Set by rehashing on
|
|
// slots that have already been moved, requiring readers to wait for
|
|
// rehashing to complete and use the new table. Terminal state.
|
|
//
|
|
// Note that once val is non-nil, it cannot become nil again. That is, the
|
|
// transition from empty to non-empty is irreversible for a given slot;
|
|
// the only way to create more empty slots is by rehashing.
|
|
val unsafe.Pointer
|
|
key int64
|
|
}
|
|
|
|
func goroutineLocksapmSlotAt(slots unsafe.Pointer, pos uintptr) *goroutineLocksapmSlot {
|
|
return (*goroutineLocksapmSlot)(unsafe.Pointer(uintptr(slots) + pos*unsafe.Sizeof(goroutineLocksapmSlot{})))
|
|
}
|
|
|
|
var goroutineLockstombstoneObj byte
|
|
|
|
func goroutineLockstombstone() unsafe.Pointer {
|
|
return unsafe.Pointer(&goroutineLockstombstoneObj)
|
|
}
|
|
|
|
var goroutineLocksevacuatedObj byte
|
|
|
|
func goroutineLocksevacuated() unsafe.Pointer {
|
|
return unsafe.Pointer(&goroutineLocksevacuatedObj)
|
|
}
|
|
|
|
// Load returns the Value stored in m for key.
|
|
func (m *goroutineLocksAtomicPtrMap) Load(key int64) *goroutineLocks {
|
|
hash := goroutineLockshasher.Hash(key)
|
|
shard := m.shard(hash)
|
|
|
|
retry:
|
|
epoch := shard.seq.BeginRead()
|
|
slots := atomic.LoadPointer(&shard.slots)
|
|
mask := atomic.LoadUintptr(&shard.mask)
|
|
if !shard.seq.ReadOk(epoch) {
|
|
goto retry
|
|
}
|
|
if slots == nil {
|
|
return nil
|
|
}
|
|
|
|
i := hash & mask
|
|
inc := uintptr(1)
|
|
for {
|
|
slot := goroutineLocksapmSlotAt(slots, i)
|
|
slotVal := atomic.LoadPointer(&slot.val)
|
|
if slotVal == nil {
|
|
return nil
|
|
}
|
|
if slotVal == goroutineLocksevacuated() {
|
|
goto retry
|
|
}
|
|
if slot.key == key {
|
|
if slotVal == goroutineLockstombstone() {
|
|
return nil
|
|
}
|
|
return (*goroutineLocks)(slotVal)
|
|
}
|
|
i = (i + inc) & mask
|
|
inc++
|
|
}
|
|
}
|
|
|
|
// Store stores the Value val for key.
|
|
func (m *goroutineLocksAtomicPtrMap) Store(key int64, val *goroutineLocks) {
|
|
m.maybeCompareAndSwap(key, false, nil, val)
|
|
}
|
|
|
|
// Swap stores the Value val for key and returns the previously-mapped Value.
|
|
func (m *goroutineLocksAtomicPtrMap) Swap(key int64, val *goroutineLocks) *goroutineLocks {
|
|
return m.maybeCompareAndSwap(key, false, nil, val)
|
|
}
|
|
|
|
// CompareAndSwap checks that the Value stored for key is oldVal; if it is, it
|
|
// stores the Value newVal for key. CompareAndSwap returns the previous Value
|
|
// stored for key, whether or not it stores newVal.
|
|
func (m *goroutineLocksAtomicPtrMap) CompareAndSwap(key int64, oldVal, newVal *goroutineLocks) *goroutineLocks {
|
|
return m.maybeCompareAndSwap(key, true, oldVal, newVal)
|
|
}
|
|
|
|
func (m *goroutineLocksAtomicPtrMap) maybeCompareAndSwap(key int64, compare bool, typedOldVal, typedNewVal *goroutineLocks) *goroutineLocks {
|
|
hash := goroutineLockshasher.Hash(key)
|
|
shard := m.shard(hash)
|
|
oldVal := goroutineLockstombstone()
|
|
if typedOldVal != nil {
|
|
oldVal = unsafe.Pointer(typedOldVal)
|
|
}
|
|
newVal := goroutineLockstombstone()
|
|
if typedNewVal != nil {
|
|
newVal = unsafe.Pointer(typedNewVal)
|
|
}
|
|
|
|
retry:
|
|
epoch := shard.seq.BeginRead()
|
|
slots := atomic.LoadPointer(&shard.slots)
|
|
mask := atomic.LoadUintptr(&shard.mask)
|
|
if !shard.seq.ReadOk(epoch) {
|
|
goto retry
|
|
}
|
|
if slots == nil {
|
|
if (compare && oldVal != goroutineLockstombstone()) || newVal == goroutineLockstombstone() {
|
|
return nil
|
|
}
|
|
|
|
shard.rehash(nil)
|
|
goto retry
|
|
}
|
|
|
|
i := hash & mask
|
|
inc := uintptr(1)
|
|
for {
|
|
slot := goroutineLocksapmSlotAt(slots, i)
|
|
slotVal := atomic.LoadPointer(&slot.val)
|
|
if slotVal == nil {
|
|
if (compare && oldVal != goroutineLockstombstone()) || newVal == goroutineLockstombstone() {
|
|
return nil
|
|
}
|
|
|
|
shard.dirtyMu.Lock()
|
|
slotVal = atomic.LoadPointer(&slot.val)
|
|
if slotVal == nil {
|
|
|
|
if dirty, capacity := shard.dirty+1, mask+1; dirty*goroutineLocksapmRehashThresholdDen >= capacity*goroutineLocksapmRehashThresholdNum {
|
|
shard.dirtyMu.Unlock()
|
|
shard.rehash(slots)
|
|
goto retry
|
|
}
|
|
slot.key = key
|
|
atomic.StorePointer(&slot.val, newVal)
|
|
shard.dirty++
|
|
atomic.AddUintptr(&shard.count, 1)
|
|
shard.dirtyMu.Unlock()
|
|
return nil
|
|
}
|
|
|
|
shard.dirtyMu.Unlock()
|
|
}
|
|
if slotVal == goroutineLocksevacuated() {
|
|
goto retry
|
|
}
|
|
if slot.key == key {
|
|
for {
|
|
if (compare && oldVal != slotVal) || newVal == slotVal {
|
|
if slotVal == goroutineLockstombstone() {
|
|
return nil
|
|
}
|
|
return (*goroutineLocks)(slotVal)
|
|
}
|
|
if atomic.CompareAndSwapPointer(&slot.val, slotVal, newVal) {
|
|
if slotVal == goroutineLockstombstone() {
|
|
atomic.AddUintptr(&shard.count, 1)
|
|
return nil
|
|
}
|
|
if newVal == goroutineLockstombstone() {
|
|
atomic.AddUintptr(&shard.count, ^uintptr(0))
|
|
}
|
|
return (*goroutineLocks)(slotVal)
|
|
}
|
|
slotVal = atomic.LoadPointer(&slot.val)
|
|
if slotVal == goroutineLocksevacuated() {
|
|
goto retry
|
|
}
|
|
}
|
|
}
|
|
|
|
i = (i + inc) & mask
|
|
inc++
|
|
}
|
|
}
|
|
|
|
// rehash is marked nosplit to avoid preemption during table copying.
|
|
//
|
|
//go:nosplit
|
|
func (shard *goroutineLocksapmShard) rehash(oldSlots unsafe.Pointer) {
|
|
shard.rehashMu.Lock()
|
|
defer shard.rehashMu.Unlock()
|
|
|
|
if shard.slots != oldSlots {
|
|
return
|
|
}
|
|
|
|
newSize := uintptr(8)
|
|
if oldSlots != nil {
|
|
oldSize := shard.mask + 1
|
|
newSize = oldSize
|
|
if count := atomic.LoadUintptr(&shard.count) + 1; count*goroutineLocksapmExpansionThresholdDen > oldSize*goroutineLocksapmExpansionThresholdNum {
|
|
newSize *= 2
|
|
}
|
|
}
|
|
|
|
newSlotsSlice := make([]goroutineLocksapmSlot, newSize)
|
|
newSlots := unsafe.Pointer(&newSlotsSlice[0])
|
|
newMask := newSize - 1
|
|
|
|
shard.dirtyMu.Lock()
|
|
shard.seq.BeginWrite()
|
|
|
|
if oldSlots != nil {
|
|
realCount := uintptr(0)
|
|
|
|
oldMask := shard.mask
|
|
for i := uintptr(0); i <= oldMask; i++ {
|
|
oldSlot := goroutineLocksapmSlotAt(oldSlots, i)
|
|
val := atomic.SwapPointer(&oldSlot.val, goroutineLocksevacuated())
|
|
if val == nil || val == goroutineLockstombstone() {
|
|
continue
|
|
}
|
|
hash := goroutineLockshasher.Hash(oldSlot.key)
|
|
j := hash & newMask
|
|
inc := uintptr(1)
|
|
for {
|
|
newSlot := goroutineLocksapmSlotAt(newSlots, j)
|
|
if newSlot.val == nil {
|
|
newSlot.val = val
|
|
newSlot.key = oldSlot.key
|
|
break
|
|
}
|
|
j = (j + inc) & newMask
|
|
inc++
|
|
}
|
|
realCount++
|
|
}
|
|
|
|
shard.dirty = realCount
|
|
}
|
|
|
|
atomic.StorePointer(&shard.slots, newSlots)
|
|
atomic.StoreUintptr(&shard.mask, newMask)
|
|
|
|
shard.seq.EndWrite()
|
|
shard.dirtyMu.Unlock()
|
|
}
|
|
|
|
// Range invokes f on each Key-Value pair stored in m. If any call to f returns
|
|
// false, Range stops iteration and returns.
|
|
//
|
|
// Range does not necessarily correspond to any consistent snapshot of the
|
|
// Map's contents: no Key will be visited more than once, but if the Value for
|
|
// any Key is stored or deleted concurrently, Range may reflect any mapping for
|
|
// that Key from any point during the Range call.
|
|
//
|
|
// f must not call other methods on m.
|
|
func (m *goroutineLocksAtomicPtrMap) Range(f func(key int64, val *goroutineLocks) bool) {
|
|
for si := 0; si < len(m.shards); si++ {
|
|
shard := &m.shards[si]
|
|
if !shard.doRange(f) {
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
func (shard *goroutineLocksapmShard) doRange(f func(key int64, val *goroutineLocks) bool) bool {
|
|
shard.rehashMu.Lock()
|
|
defer shard.rehashMu.Unlock()
|
|
slots := shard.slots
|
|
if slots == nil {
|
|
return true
|
|
}
|
|
mask := shard.mask
|
|
for i := uintptr(0); i <= mask; i++ {
|
|
slot := goroutineLocksapmSlotAt(slots, i)
|
|
slotVal := atomic.LoadPointer(&slot.val)
|
|
if slotVal == nil || slotVal == goroutineLockstombstone() {
|
|
continue
|
|
}
|
|
if !f(slot.key, (*goroutineLocks)(slotVal)) {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
// RangeRepeatable is like Range, but:
|
|
//
|
|
// - RangeRepeatable may visit the same Key multiple times in the presence of
|
|
// concurrent mutators, possibly passing different Values to f in different
|
|
// calls.
|
|
//
|
|
// - It is safe for f to call other methods on m.
|
|
func (m *goroutineLocksAtomicPtrMap) RangeRepeatable(f func(key int64, val *goroutineLocks) bool) {
|
|
for si := 0; si < len(m.shards); si++ {
|
|
shard := &m.shards[si]
|
|
|
|
retry:
|
|
epoch := shard.seq.BeginRead()
|
|
slots := atomic.LoadPointer(&shard.slots)
|
|
mask := atomic.LoadUintptr(&shard.mask)
|
|
if !shard.seq.ReadOk(epoch) {
|
|
goto retry
|
|
}
|
|
if slots == nil {
|
|
continue
|
|
}
|
|
|
|
for i := uintptr(0); i <= mask; i++ {
|
|
slot := goroutineLocksapmSlotAt(slots, i)
|
|
slotVal := atomic.LoadPointer(&slot.val)
|
|
if slotVal == goroutineLocksevacuated() {
|
|
goto retry
|
|
}
|
|
if slotVal == nil || slotVal == goroutineLockstombstone() {
|
|
continue
|
|
}
|
|
if !f(slot.key, (*goroutineLocks)(slotVal)) {
|
|
return
|
|
}
|
|
}
|
|
}
|
|
}
|