mirror of https://github.com/v2ray/v2ray-core
alternative user ids
parent
43f76d4704
commit
4ca43c3121
|
@ -1,6 +1,8 @@
|
||||||
package uuid
|
package uuid
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"bytes"
|
||||||
|
"crypto/md5"
|
||||||
"crypto/rand"
|
"crypto/rand"
|
||||||
"encoding/hex"
|
"encoding/hex"
|
||||||
"errors"
|
"errors"
|
||||||
|
@ -22,7 +24,30 @@ func (this *UUID) String() string {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (this *UUID) Bytes() []byte {
|
func (this *UUID) Bytes() []byte {
|
||||||
return this.byteValue[:]
|
return this.byteValue
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *UUID) Equals(another *UUID) bool {
|
||||||
|
if this == nil && another == nil {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
if this == nil || another == nil {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
return bytes.Equal(this.Bytes(), another.Bytes())
|
||||||
|
}
|
||||||
|
|
||||||
|
// Next generates a deterministic random UUID based on this UUID.
|
||||||
|
func (this *UUID) Next() *UUID {
|
||||||
|
md5hash := md5.New()
|
||||||
|
md5hash.Write(this.Bytes())
|
||||||
|
md5hash.Write([]byte("16167dc8-16b6-4e6d-b8bb-65dd68113a81"))
|
||||||
|
for {
|
||||||
|
newid, _ := ParseBytes(md5hash.Sum(nil))
|
||||||
|
if !newid.Equals(this) {
|
||||||
|
return newid
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func bytesToString(bytes []byte) string {
|
func bytesToString(bytes []byte) string {
|
||||||
|
|
|
@ -29,6 +29,10 @@ func (this *ID) String() string {
|
||||||
return this.uuid.String()
|
return this.uuid.String()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (this *ID) UUID() *uuid.UUID {
|
||||||
|
return this.uuid
|
||||||
|
}
|
||||||
|
|
||||||
func NewID(uuid *uuid.UUID) *ID {
|
func NewID(uuid *uuid.UUID) *ID {
|
||||||
md5hash := md5.New()
|
md5hash := md5.New()
|
||||||
md5hash.Write(uuid.Bytes())
|
md5hash.Write(uuid.Bytes())
|
||||||
|
|
|
@ -45,6 +45,10 @@ func (this *VMessInboundHandler) Close() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (this *VMessInboundHandler) AddUser(user vmess.User) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
func (this *VMessInboundHandler) Listen(port v2net.Port) error {
|
func (this *VMessInboundHandler) Listen(port v2net.Port) error {
|
||||||
listener, err := net.ListenTCP("tcp", &net.TCPAddr{
|
listener, err := net.ListenTCP("tcp", &net.TCPAddr{
|
||||||
IP: []byte{0, 0, 0, 0},
|
IP: []byte{0, 0, 0, 0},
|
||||||
|
|
|
@ -2,6 +2,7 @@ package json
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"math/rand"
|
||||||
|
|
||||||
"github.com/v2ray/v2ray-core/common/uuid"
|
"github.com/v2ray/v2ray-core/common/uuid"
|
||||||
"github.com/v2ray/v2ray-core/proxy/vmess"
|
"github.com/v2ray/v2ray-core/proxy/vmess"
|
||||||
|
@ -12,13 +13,15 @@ type ConfigUser struct {
|
||||||
Id *vmess.ID
|
Id *vmess.ID
|
||||||
Email string
|
Email string
|
||||||
LevelValue vmess.UserLevel
|
LevelValue vmess.UserLevel
|
||||||
|
AlterIds []*vmess.ID
|
||||||
}
|
}
|
||||||
|
|
||||||
func (u *ConfigUser) UnmarshalJSON(data []byte) error {
|
func (u *ConfigUser) UnmarshalJSON(data []byte) error {
|
||||||
type rawUser struct {
|
type rawUser struct {
|
||||||
IdString string `json:"id"`
|
IdString string `json:"id"`
|
||||||
EmailString string `json:"email"`
|
EmailString string `json:"email"`
|
||||||
LevelInt int `json:"level"`
|
LevelInt int `json:"level"`
|
||||||
|
AlterIdCount int `json:"alterId"`
|
||||||
}
|
}
|
||||||
var rawUserValue rawUser
|
var rawUserValue rawUser
|
||||||
if err := json.Unmarshal(data, &rawUserValue); err != nil {
|
if err := json.Unmarshal(data, &rawUserValue); err != nil {
|
||||||
|
@ -31,6 +34,18 @@ func (u *ConfigUser) UnmarshalJSON(data []byte) error {
|
||||||
u.Id = vmess.NewID(id)
|
u.Id = vmess.NewID(id)
|
||||||
u.Email = rawUserValue.EmailString
|
u.Email = rawUserValue.EmailString
|
||||||
u.LevelValue = vmess.UserLevel(rawUserValue.LevelInt)
|
u.LevelValue = vmess.UserLevel(rawUserValue.LevelInt)
|
||||||
|
|
||||||
|
if rawUserValue.AlterIdCount > 0 {
|
||||||
|
prevId := u.Id.UUID()
|
||||||
|
// TODO: check duplicate
|
||||||
|
u.AlterIds = make([]*vmess.ID, rawUserValue.AlterIdCount)
|
||||||
|
for idx, _ := range u.AlterIds {
|
||||||
|
newid := prevId.Next()
|
||||||
|
u.AlterIds[idx] = vmess.NewID(newid)
|
||||||
|
prevId = newid
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -41,3 +56,18 @@ func (u *ConfigUser) ID() *vmess.ID {
|
||||||
func (this *ConfigUser) Level() vmess.UserLevel {
|
func (this *ConfigUser) Level() vmess.UserLevel {
|
||||||
return this.LevelValue
|
return this.LevelValue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (this *ConfigUser) AlterIDs() []*vmess.ID {
|
||||||
|
return this.AlterIds
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *ConfigUser) AnyValidID() *vmess.ID {
|
||||||
|
if len(this.AlterIds) == 0 {
|
||||||
|
return this.ID()
|
||||||
|
}
|
||||||
|
if len(this.AlterIds) == 1 {
|
||||||
|
return this.AlterIds[0]
|
||||||
|
}
|
||||||
|
idIdx := rand.Intn(len(this.AlterIds))
|
||||||
|
return this.AlterIds[idIdx]
|
||||||
|
}
|
||||||
|
|
|
@ -17,6 +17,14 @@ func (this *StaticUser) Level() vmess.UserLevel {
|
||||||
return vmess.UserLevelUntrusted
|
return vmess.UserLevelUntrusted
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (this *StaticUser) AlterIDs() []*vmess.ID {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *StaticUser) AnyValidID() *vmess.ID {
|
||||||
|
return this.id
|
||||||
|
}
|
||||||
|
|
||||||
type StaticUserSet struct {
|
type StaticUserSet struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -69,6 +69,9 @@ func (us *TimedUserSet) updateUserHash(tick <-chan time.Time) {
|
||||||
nowSec := now.Unix() + cacheDurationSec
|
nowSec := now.Unix() + cacheDurationSec
|
||||||
for idx, user := range us.validUsers {
|
for idx, user := range us.validUsers {
|
||||||
us.generateNewHashes(lastSec, nowSec, idx, user.ID())
|
us.generateNewHashes(lastSec, nowSec, idx, user.ID())
|
||||||
|
for _, alterid := range user.AlterIDs() {
|
||||||
|
us.generateNewHashes(lastSec, nowSec, idx, alterid)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
lastSec = nowSec
|
lastSec = nowSec
|
||||||
}
|
}
|
||||||
|
@ -82,6 +85,9 @@ func (us *TimedUserSet) AddUser(user vmess.User) error {
|
||||||
nowSec := time.Now().Unix()
|
nowSec := time.Now().Unix()
|
||||||
lastSec := nowSec - cacheDurationSec
|
lastSec := nowSec - cacheDurationSec
|
||||||
us.generateNewHashes(lastSec, nowSec+cacheDurationSec, idx, id)
|
us.generateNewHashes(lastSec, nowSec+cacheDurationSec, idx, id)
|
||||||
|
for _, alterid := range user.AlterIDs() {
|
||||||
|
us.generateNewHashes(lastSec, nowSec+cacheDurationSec, idx, alterid)
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -175,7 +175,7 @@ func (this *VMessRequest) ToBytes(idHash user.CounterHash, randomRangeInt64 user
|
||||||
}
|
}
|
||||||
|
|
||||||
counter := randomRangeInt64(time.Now().Unix(), 30)
|
counter := randomRangeInt64(time.Now().Unix(), 30)
|
||||||
hash := idHash.Hash(this.User.ID().Bytes(), counter)
|
hash := idHash.Hash(this.User.AnyValidID().Bytes(), counter)
|
||||||
|
|
||||||
buffer.Append(hash)
|
buffer.Append(hash)
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,5 @@
|
||||||
package vmess
|
package vmess
|
||||||
|
|
||||||
import (
|
|
||||||
"time"
|
|
||||||
)
|
|
||||||
|
|
||||||
type UserLevel int
|
type UserLevel int
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
@ -13,12 +9,9 @@ const (
|
||||||
|
|
||||||
type User interface {
|
type User interface {
|
||||||
ID() *ID
|
ID() *ID
|
||||||
|
AlterIDs() []*ID
|
||||||
Level() UserLevel
|
Level() UserLevel
|
||||||
}
|
AnyValidID() *ID
|
||||||
|
|
||||||
type SecondaryID interface {
|
|
||||||
ID() *ID
|
|
||||||
ValidUntil() time.Time
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type UserSettings struct {
|
type UserSettings struct {
|
||||||
|
|
|
@ -16,7 +16,10 @@
|
||||||
"address": "127.0.0.1",
|
"address": "127.0.0.1",
|
||||||
"port": 50001,
|
"port": 50001,
|
||||||
"users": [
|
"users": [
|
||||||
{"id": "d17a1af7-efa5-42ca-b7e9-6a35282d737f"}
|
{
|
||||||
|
"id": "d17a1af7-efa5-42ca-b7e9-6a35282d737f",
|
||||||
|
"alterId": 10
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -11,7 +11,8 @@
|
||||||
"clients": [
|
"clients": [
|
||||||
{
|
{
|
||||||
"id": "d17a1af7-efa5-42ca-b7e9-6a35282d737f",
|
"id": "d17a1af7-efa5-42ca-b7e9-6a35282d737f",
|
||||||
"level": 1
|
"level": 1,
|
||||||
|
"alterId": 10
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue