2019-02-09 01:07:47 -08:00
|
|
|
package file
|
2019-01-31 10:06:30 -08:00
|
|
|
|
|
|
|
import (
|
2019-02-09 01:07:47 -08:00
|
|
|
"github.com/cnlh/nps/lib/rate"
|
2019-02-02 08:54:43 -08:00
|
|
|
"strings"
|
2019-01-31 10:06:30 -08:00
|
|
|
"sync"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Flow struct {
|
|
|
|
ExportFlow int64 //出口流量
|
|
|
|
InletFlow int64 //入口流量
|
|
|
|
FlowLimit int64 //流量限制,出口+入口 /M
|
|
|
|
sync.RWMutex
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Flow) Add(in, out int) {
|
|
|
|
s.Lock()
|
|
|
|
defer s.Unlock()
|
|
|
|
s.InletFlow += int64(in)
|
|
|
|
s.ExportFlow += int64(out)
|
|
|
|
}
|
|
|
|
|
|
|
|
type Client struct {
|
|
|
|
Cnf *Config
|
2019-02-09 01:07:47 -08:00
|
|
|
Id int //id
|
|
|
|
VerifyKey string //验证密钥
|
|
|
|
Addr string //客户端ip地址
|
|
|
|
Remark string //备注
|
|
|
|
Status bool //是否开启
|
|
|
|
IsConnect bool //是否连接
|
|
|
|
RateLimit int //速度限制 /kb
|
|
|
|
Flow *Flow //流量
|
|
|
|
Rate *rate.Rate //速度控制
|
2019-01-31 10:06:30 -08:00
|
|
|
id int
|
|
|
|
sync.RWMutex
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Client) GetId() int {
|
|
|
|
s.Lock()
|
|
|
|
defer s.Unlock()
|
|
|
|
s.id++
|
|
|
|
return s.id
|
|
|
|
}
|
|
|
|
|
|
|
|
type Tunnel struct {
|
|
|
|
Id int //Id
|
2019-02-09 01:07:47 -08:00
|
|
|
TcpPort int //服务端监听端口
|
2019-01-31 10:06:30 -08:00
|
|
|
Mode string //启动方式
|
|
|
|
Target string //目标
|
|
|
|
Status bool //是否开启
|
|
|
|
Client *Client //所属客户端id
|
|
|
|
Flow *Flow
|
|
|
|
Config *Config
|
|
|
|
UseClientCnf bool //是否继承客户端配置
|
|
|
|
Remark string //备注
|
|
|
|
}
|
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
U string //socks5验证用户名
|
|
|
|
P string //socks5验证密码
|
|
|
|
Compress string //压缩方式
|
|
|
|
Crypt bool //是否加密
|
|
|
|
CompressEncode int //加密方式
|
|
|
|
CompressDecode int //解密方式
|
|
|
|
}
|
|
|
|
|
|
|
|
type Host struct {
|
|
|
|
Host string //启动方式
|
|
|
|
Target string //目标
|
|
|
|
HeaderChange string //host修改
|
|
|
|
HostChange string //host修改
|
|
|
|
Flow *Flow
|
|
|
|
Client *Client
|
|
|
|
Remark string //备注
|
2019-02-02 08:54:43 -08:00
|
|
|
NowIndex int
|
|
|
|
TargetArr []string
|
|
|
|
sync.RWMutex
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Host) GetRandomTarget() string {
|
|
|
|
if s.TargetArr == nil {
|
|
|
|
s.TargetArr = strings.Split(s.Target, "\n")
|
|
|
|
}
|
|
|
|
s.Lock()
|
|
|
|
defer s.Unlock()
|
|
|
|
if s.NowIndex >= len(s.TargetArr)-1 {
|
|
|
|
s.NowIndex = 0
|
|
|
|
} else {
|
|
|
|
s.NowIndex++
|
|
|
|
}
|
|
|
|
return s.TargetArr[s.NowIndex]
|
2019-01-31 10:06:30 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
//深拷贝Config
|
|
|
|
func DeepCopyConfig(c *Config) *Config {
|
|
|
|
return &Config{
|
|
|
|
U: c.U,
|
|
|
|
P: c.P,
|
|
|
|
Compress: c.Compress,
|
|
|
|
Crypt: c.Crypt,
|
|
|
|
CompressEncode: c.CompressEncode,
|
|
|
|
CompressDecode: c.CompressDecode,
|
|
|
|
}
|
|
|
|
}
|