1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00
v2fly/proxy/vmess/vmess.go

144 lines
3.6 KiB
Go
Raw Normal View History

2015-12-04 11:07:32 +00:00
// Package vmess contains the implementation of VMess protocol and transportation.
//
// VMess contains both inbound and outbound connections. VMess inbound is usually used on servers
// together with 'freedom' to talk to final destination, while VMess outbound is usually used on
// clients with 'socks' for proxying.
2016-08-19 17:05:15 +02:00
package vmess
2016-07-25 17:36:24 +02:00
import (
2017-01-29 12:58:52 +01:00
"context"
2016-07-25 17:36:24 +02:00
"sync"
"time"
2016-08-20 20:55:45 +02:00
"v2ray.com/core/common/protocol"
2016-07-25 17:36:24 +02:00
)
const (
updateIntervalSec = 10
cacheDurationSec = 120
)
type idEntry struct {
id *protocol.ID
userIdx int
lastSec protocol.Timestamp
lastSecRemoval protocol.Timestamp
}
type TimedUserValidator struct {
sync.RWMutex
2017-01-29 12:58:52 +01:00
ctx context.Context
2016-07-25 17:36:24 +02:00
validUsers []*protocol.User
2017-04-06 23:11:36 +02:00
userHash map[[16]byte]indexTimePair
2016-07-25 17:36:24 +02:00
ids []*idEntry
hasher protocol.IDHash
2017-04-06 23:11:36 +02:00
baseTime protocol.Timestamp
2016-07-25 17:36:24 +02:00
}
type indexTimePair struct {
index int
2017-04-06 23:11:36 +02:00
timeInc uint32
2016-07-25 17:36:24 +02:00
}
2017-01-29 12:58:52 +01:00
func NewTimedUserValidator(ctx context.Context, hasher protocol.IDHash) protocol.UserValidator {
2016-07-25 17:36:24 +02:00
tus := &TimedUserValidator{
2017-01-29 12:58:52 +01:00
ctx: ctx,
2016-07-25 17:36:24 +02:00
validUsers: make([]*protocol.User, 0, 16),
2017-04-06 23:11:36 +02:00
userHash: make(map[[16]byte]indexTimePair, 512),
2016-07-25 17:36:24 +02:00
ids: make([]*idEntry, 0, 512),
hasher: hasher,
2017-04-06 23:11:36 +02:00
baseTime: protocol.Timestamp(time.Now().Unix() - cacheDurationSec*3),
2016-07-25 17:36:24 +02:00
}
go tus.updateUserHash(updateIntervalSec * time.Second)
return tus
}
2016-11-27 21:39:09 +01:00
func (v *TimedUserValidator) generateNewHashes(nowSec protocol.Timestamp, idx int, entry *idEntry) {
2016-07-25 17:36:24 +02:00
var hashValue [16]byte
var hashValueRemoval [16]byte
2016-11-27 21:39:09 +01:00
idHash := v.hasher(entry.id.Bytes())
2016-07-25 17:36:24 +02:00
for entry.lastSec <= nowSec {
idHash.Write(entry.lastSec.Bytes(nil))
idHash.Sum(hashValue[:0])
idHash.Reset()
idHash.Write(entry.lastSecRemoval.Bytes(nil))
idHash.Sum(hashValueRemoval[:0])
idHash.Reset()
2016-11-27 21:39:09 +01:00
delete(v.userHash, hashValueRemoval)
2017-04-06 23:11:36 +02:00
v.userHash[hashValue] = indexTimePair{
index: idx,
timeInc: uint32(entry.lastSec - v.baseTime),
}
2016-07-25 17:36:24 +02:00
entry.lastSec++
entry.lastSecRemoval++
}
}
2016-11-27 21:39:09 +01:00
func (v *TimedUserValidator) updateUserHash(interval time.Duration) {
2016-07-25 17:36:24 +02:00
for {
select {
case now := <-time.After(interval):
nowSec := protocol.Timestamp(now.Unix() + cacheDurationSec)
2016-12-27 21:33:34 +01:00
v.Lock()
2016-11-27 21:39:09 +01:00
for _, entry := range v.ids {
v.generateNewHashes(nowSec, entry.userIdx, entry)
2016-07-25 17:36:24 +02:00
}
2016-12-27 21:33:34 +01:00
v.Unlock()
2017-01-29 12:58:52 +01:00
case <-v.ctx.Done():
2016-11-18 21:30:03 +01:00
return
2016-07-25 17:36:24 +02:00
}
}
}
2016-11-27 21:39:09 +01:00
func (v *TimedUserValidator) Add(user *protocol.User) error {
2016-12-27 21:33:34 +01:00
v.Lock()
defer v.Unlock()
2016-11-27 21:39:09 +01:00
idx := len(v.validUsers)
v.validUsers = append(v.validUsers, user)
2016-10-16 14:22:21 +02:00
rawAccount, err := user.GetTypedAccount()
2016-09-18 00:41:21 +02:00
if err != nil {
return err
}
2016-10-12 18:43:55 +02:00
account := rawAccount.(*InternalAccount)
2016-07-25 17:36:24 +02:00
nowSec := time.Now().Unix()
entry := &idEntry{
id: account.ID,
userIdx: idx,
lastSec: protocol.Timestamp(nowSec - cacheDurationSec),
lastSecRemoval: protocol.Timestamp(nowSec - cacheDurationSec*3),
}
2016-11-27 21:39:09 +01:00
v.generateNewHashes(protocol.Timestamp(nowSec+cacheDurationSec), idx, entry)
v.ids = append(v.ids, entry)
2016-07-25 17:36:24 +02:00
for _, alterid := range account.AlterIDs {
entry := &idEntry{
id: alterid,
userIdx: idx,
lastSec: protocol.Timestamp(nowSec - cacheDurationSec),
lastSecRemoval: protocol.Timestamp(nowSec - cacheDurationSec*3),
}
2016-11-27 21:39:09 +01:00
v.generateNewHashes(protocol.Timestamp(nowSec+cacheDurationSec), idx, entry)
v.ids = append(v.ids, entry)
2016-07-25 17:36:24 +02:00
}
return nil
}
2016-11-27 21:39:09 +01:00
func (v *TimedUserValidator) Get(userHash []byte) (*protocol.User, protocol.Timestamp, bool) {
defer v.RUnlock()
v.RLock()
2016-07-25 17:36:24 +02:00
var fixedSizeHash [16]byte
copy(fixedSizeHash[:], userHash)
2016-11-27 21:39:09 +01:00
pair, found := v.userHash[fixedSizeHash]
2016-07-25 17:36:24 +02:00
if found {
2017-04-06 23:11:36 +02:00
return v.validUsers[pair.index], protocol.Timestamp(pair.timeInc) + v.baseTime, true
2016-07-25 17:36:24 +02:00
}
return nil, 0, false
}