nps/server/server.go

461 lines
12 KiB
Go
Raw Normal View History

2019-01-09 04:33:00 -08:00
package server
import (
2020-01-08 05:57:14 -08:00
"ehang.io/nps/lib/version"
2019-01-09 04:33:00 -08:00
"errors"
"math"
"os"
"strconv"
"strings"
"sync"
"time"
2020-01-08 05:57:14 -08:00
"ehang.io/nps/bridge"
"ehang.io/nps/lib/common"
"ehang.io/nps/lib/file"
"ehang.io/nps/server/proxy"
"ehang.io/nps/server/tool"
2019-08-09 20:15:25 -07:00
"github.com/astaxie/beego"
"github.com/astaxie/beego/logs"
2021-04-07 05:02:47 -07:00
"github.com/shirou/gopsutil/v3/cpu"
"github.com/shirou/gopsutil/v3/load"
"github.com/shirou/gopsutil/v3/mem"
"github.com/shirou/gopsutil/v3/net"
2019-01-09 04:33:00 -08:00
)
var (
2019-03-29 00:21:30 -07:00
Bridge *bridge.Bridge
RunList sync.Map //map[int]interface{}
2019-01-09 04:33:00 -08:00
)
func init() {
RunList = sync.Map{}
2019-01-09 04:33:00 -08:00
}
2019-03-29 00:21:30 -07:00
//init task from db
2019-01-09 04:33:00 -08:00
func InitFromCsv() {
2019-02-12 11:54:00 -08:00
//Add a public password
2019-03-04 17:23:18 -08:00
if vkey := beego.AppConfig.String("public_vkey"); vkey != "" {
2019-02-16 04:43:26 -08:00
c := file.NewClient(vkey, true, true)
2019-03-29 00:21:30 -07:00
file.GetDb().NewClient(c)
RunList.Store(c.Id, nil)
//RunList[c.Id] = nil
2019-02-16 04:43:26 -08:00
}
2019-02-12 11:54:00 -08:00
//Initialize services in server-side files
2019-03-29 00:21:30 -07:00
file.GetDb().JsonDb.Tasks.Range(func(key, value interface{}) bool {
2019-03-23 07:19:59 -07:00
if value.(*file.Tunnel).Status {
AddTask(value.(*file.Tunnel))
2019-01-09 04:33:00 -08:00
}
2019-03-23 07:19:59 -07:00
return true
})
2019-01-09 04:33:00 -08:00
}
2019-02-17 09:05:05 -08:00
2019-03-29 00:21:30 -07:00
//get bridge command
2019-02-12 11:54:00 -08:00
func DealBridgeTask() {
for {
select {
case t := <-Bridge.OpenTask:
AddTask(t)
2019-03-14 23:03:49 -07:00
case t := <-Bridge.CloseTask:
StopServer(t.Id)
2019-02-12 11:54:00 -08:00
case id := <-Bridge.CloseClient:
2019-03-28 19:41:57 -07:00
DelTunnelAndHostByClientId(id, true)
2019-03-29 00:21:30 -07:00
if v, ok := file.GetDb().JsonDb.Clients.Load(id); ok {
2019-03-28 19:41:57 -07:00
if v.(*file.Client).NoStore {
2019-03-29 00:21:30 -07:00
file.GetDb().DelClient(id)
2019-03-28 19:41:57 -07:00
}
}
2019-03-14 23:03:49 -07:00
case tunnel := <-Bridge.OpenTask:
StartTask(tunnel.Id)
2019-02-23 07:29:48 -08:00
case s := <-Bridge.SecretChan:
logs.Trace("New secret connection, addr", s.Conn.Conn.RemoteAddr())
2019-03-29 00:21:30 -07:00
if t := file.GetDb().GetTaskByMd5Password(s.Password); t != nil {
2019-04-13 04:48:34 -07:00
if t.Status {
2019-04-08 02:01:08 -07:00
go proxy.NewBaseServer(Bridge, t).DealClient(s.Conn, t.Client, t.Target.TargetStr, nil, common.CONN_TCP, nil, t.Flow, t.Target.LocalProxy)
2019-02-23 21:17:43 -08:00
} else {
s.Conn.Close()
logs.Trace("This key %s cannot be processed,status is close", s.Password)
2019-02-23 07:29:48 -08:00
}
} else {
logs.Trace("This key %s cannot be processed", s.Password)
s.Conn.Close()
}
2019-02-12 11:54:00 -08:00
}
}
}
2019-01-09 04:33:00 -08:00
//start a new server
func StartNewServer(bridgePort int, cnf *file.Tunnel, bridgeType string, bridgeDisconnect int) {
Bridge = bridge.NewTunnel(bridgePort, bridgeType, common.GetBoolByStr(beego.AppConfig.String("ip_limit")), RunList, bridgeDisconnect)
2019-03-23 07:19:59 -07:00
go func() {
if err := Bridge.StartTunnel(); err != nil {
logs.Error("start server bridge error", err)
os.Exit(0)
}
}()
2019-03-04 17:23:18 -08:00
if p, err := beego.AppConfig.Int("p2p_port"); err == nil {
2019-02-26 06:40:28 -08:00
go proxy.NewP2PServer(p).Start()
2019-04-21 08:03:58 -07:00
go proxy.NewP2PServer(p + 1).Start()
go proxy.NewP2PServer(p + 2).Start()
2019-02-26 06:40:28 -08:00
}
2019-02-12 11:54:00 -08:00
go DealBridgeTask()
2019-03-17 23:18:58 -07:00
go dealClientFlow()
2019-02-05 08:35:23 -08:00
if svr := NewMode(Bridge, cnf); svr != nil {
2019-02-17 09:05:05 -08:00
if err := svr.Start(); err != nil {
2019-02-23 07:29:48 -08:00
logs.Error(err)
2019-01-09 04:33:00 -08:00
}
RunList.Store(cnf.Id, svr)
//RunList[cnf.Id] = svr
2019-02-05 08:35:23 -08:00
} else {
2019-02-23 07:29:48 -08:00
logs.Error("Incorrect startup mode %s", cnf.Mode)
2019-01-09 04:33:00 -08:00
}
}
2019-03-17 23:18:58 -07:00
func dealClientFlow() {
ticker := time.NewTicker(time.Minute)
defer ticker.Stop()
2019-03-17 23:18:58 -07:00
for {
select {
case <-ticker.C:
2019-03-23 07:19:59 -07:00
dealClientData()
2019-03-17 23:18:58 -07:00
}
}
}
2019-01-09 04:33:00 -08:00
//new a server by mode name
2019-02-17 09:05:05 -08:00
func NewMode(Bridge *bridge.Bridge, c *file.Tunnel) proxy.Service {
var service proxy.Service
2019-01-26 01:27:28 -08:00
switch c.Mode {
2019-03-02 01:43:21 -08:00
case "tcp", "file":
2019-02-17 09:05:05 -08:00
service = proxy.NewTunnelModeServer(proxy.ProcessTunnel, Bridge, c)
case "socks5":
2019-02-17 09:05:05 -08:00
service = proxy.NewSock5ModeServer(Bridge, c)
case "httpProxy":
2019-02-17 09:05:05 -08:00
service = proxy.NewTunnelModeServer(proxy.ProcessHttp, Bridge, c)
2019-04-21 08:03:58 -07:00
case "tcpTrans":
service = proxy.NewTunnelModeServer(proxy.HandleTrans, Bridge, c)
case "udp":
2019-02-17 09:05:05 -08:00
service = proxy.NewUdpModeServer(Bridge, c)
2019-01-09 04:33:00 -08:00
case "webServer":
InitFromCsv()
2019-02-09 01:07:47 -08:00
t := &file.Tunnel{
2019-02-12 11:54:00 -08:00
Port: 0,
Mode: "httpHostServer",
Status: true,
2019-01-09 04:33:00 -08:00
}
AddTask(t)
2019-02-17 09:05:05 -08:00
service = proxy.NewWebServer(Bridge)
2019-01-09 04:33:00 -08:00
case "httpHostServer":
2019-04-08 02:01:08 -07:00
httpPort, _ := beego.AppConfig.Int("http_proxy_port")
httpsPort, _ := beego.AppConfig.Int("https_proxy_port")
useCache, _ := beego.AppConfig.Bool("http_cache")
cacheLen, _ := beego.AppConfig.Int("http_cache_length")
2020-01-13 02:31:03 -08:00
addOrigin, _ := beego.AppConfig.Bool("http_add_origin_header")
service = proxy.NewHttp(Bridge, c, httpPort, httpsPort, useCache, cacheLen, addOrigin)
2019-01-09 04:33:00 -08:00
}
2019-02-17 09:05:05 -08:00
return service
2019-01-09 04:33:00 -08:00
}
//stop server
func StopServer(id int) error {
//if v, ok := RunList[id]; ok {
if v, ok := RunList.Load(id); ok {
2019-02-17 09:05:05 -08:00
if svr, ok := v.(proxy.Service); ok {
if err := svr.Close(); err != nil {
return err
}
2019-03-02 01:43:21 -08:00
logs.Info("stop server id %d", id)
2019-03-23 07:19:59 -07:00
} else {
logs.Warn("stop server id %d error", id)
2019-02-23 07:29:48 -08:00
}
2019-03-29 00:21:30 -07:00
if t, err := file.GetDb().GetTask(id); err != nil {
2019-02-23 07:29:48 -08:00
return err
} else {
t.Status = false
2019-03-29 00:21:30 -07:00
file.GetDb().UpdateTask(t)
2019-01-09 04:33:00 -08:00
}
//delete(RunList, id)
RunList.Delete(id)
2019-01-09 04:33:00 -08:00
return nil
}
2019-03-02 01:43:21 -08:00
return errors.New("task is not running")
2019-01-09 04:33:00 -08:00
}
//add task
2019-02-09 01:07:47 -08:00
func AddTask(t *file.Tunnel) error {
if t.Mode == "secret" || t.Mode == "p2p" {
2019-02-23 07:29:48 -08:00
logs.Info("secret task %s start ", t.Remark)
//RunList[t.Id] = nil
RunList.Store(t.Id, nil)
2019-02-23 07:29:48 -08:00
return nil
}
2019-02-12 11:54:00 -08:00
if b := tool.TestServerPort(t.Port, t.Mode); !b && t.Mode != "httpHostServer" {
2019-02-23 07:29:48 -08:00
logs.Error("taskId %d start error port %d open failed", t.Id, t.Port)
2019-02-15 06:59:28 -08:00
return errors.New("the port open error")
2019-02-12 11:54:00 -08:00
}
2019-03-04 17:23:18 -08:00
if minute, err := beego.AppConfig.Int("flow_store_interval"); err == nil && minute > 0 {
2019-02-23 07:29:48 -08:00
go flowSession(time.Minute * time.Duration(minute))
}
2019-01-09 04:33:00 -08:00
if svr := NewMode(Bridge, t); svr != nil {
2019-02-23 07:29:48 -08:00
logs.Info("tunnel task %s start mode%s port %d", t.Remark, t.Mode, t.Port)
//RunList[t.Id] = svr
RunList.Store(t.Id, svr)
2019-01-09 04:33:00 -08:00
go func() {
2019-02-17 09:05:05 -08:00
if err := svr.Start(); err != nil {
2019-02-23 07:29:48 -08:00
logs.Error("clientId %d taskId %d start error %s", t.Client.Id, t.Id, err)
//delete(RunList, t.Id)
RunList.Delete(t.Id)
2019-02-12 11:54:00 -08:00
return
2019-01-09 04:33:00 -08:00
}
}()
} else {
2019-02-12 11:54:00 -08:00
return errors.New("the mode is not correct")
2019-01-09 04:33:00 -08:00
}
return nil
}
//start task
func StartTask(id int) error {
2019-03-29 00:21:30 -07:00
if t, err := file.GetDb().GetTask(id); err != nil {
2019-01-09 04:33:00 -08:00
return err
} else {
AddTask(t)
2019-01-26 01:27:28 -08:00
t.Status = true
2019-03-29 00:21:30 -07:00
file.GetDb().UpdateTask(t)
2019-01-09 04:33:00 -08:00
}
return nil
}
//delete task
func DelTask(id int) error {
//if _, ok := RunList[id]; ok {
if _, ok := RunList.Load(id); ok {
2019-02-12 11:54:00 -08:00
if err := StopServer(id); err != nil {
return err
2019-01-09 04:33:00 -08:00
}
}
2019-03-29 00:21:30 -07:00
return file.GetDb().DelTask(id)
2019-01-09 04:33:00 -08:00
}
//get task list by page num
2019-03-23 07:19:59 -07:00
func GetTunnel(start, length int, typeVal string, clientId int, search string) ([]*file.Tunnel, int) {
2019-02-09 01:07:47 -08:00
list := make([]*file.Tunnel, 0)
2019-01-09 04:33:00 -08:00
var cnt int
2019-03-29 00:21:30 -07:00
keys := file.GetMapKeys(file.GetDb().JsonDb.Tasks, false, "", "")
2019-03-23 07:19:59 -07:00
for _, key := range keys {
2019-03-29 00:21:30 -07:00
if value, ok := file.GetDb().JsonDb.Tasks.Load(key); ok {
2019-03-23 07:19:59 -07:00
v := value.(*file.Tunnel)
if (typeVal != "" && v.Mode != typeVal || (clientId != 0 && v.Client.Id != clientId)) || (typeVal == "" && clientId != v.Client.Id) {
2019-03-23 07:19:59 -07:00
continue
}
if search != "" && !(v.Id == common.GetIntNoErrByStr(search) || v.Port == common.GetIntNoErrByStr(search) || strings.Contains(v.Password, search) || strings.Contains(v.Remark, search)) {
continue
}
cnt++
if _, ok := Bridge.Client.Load(v.Client.Id); ok {
v.Client.IsConnect = true
} else {
v.Client.IsConnect = false
}
if start--; start < 0 {
2019-04-19 19:45:04 -07:00
if length--; length >= 0 {
//if _, ok := RunList[v.Id]; ok {
if _, ok := RunList.Load(v.Id); ok {
2019-03-23 07:19:59 -07:00
v.RunStatus = true
} else {
v.RunStatus = false
}
list = append(list, v)
2019-01-09 04:33:00 -08:00
}
}
}
}
return list, cnt
}
2019-03-29 00:21:30 -07:00
//get client list
2019-03-28 19:41:57 -07:00
func GetClientList(start, length int, search, sort, order string, clientId int) (list []*file.Client, cnt int) {
2019-03-29 00:21:30 -07:00
list, cnt = file.GetDb().GetClientList(start, length, search, sort, order, clientId)
2019-03-23 07:19:59 -07:00
dealClientData()
return
}
2019-03-23 07:19:59 -07:00
func dealClientData() {
2019-03-29 00:21:30 -07:00
file.GetDb().JsonDb.Clients.Range(func(key, value interface{}) bool {
2019-03-23 07:19:59 -07:00
v := value.(*file.Client)
if vv, ok := Bridge.Client.Load(v.Id); ok {
v.IsConnect = true
v.Version = vv.(*bridge.Client).Version
} else {
v.IsConnect = false
}
v.Flow.InletFlow = 0
v.Flow.ExportFlow = 0
2019-03-29 00:21:30 -07:00
file.GetDb().JsonDb.Hosts.Range(func(key, value interface{}) bool {
2019-03-23 07:19:59 -07:00
h := value.(*file.Host)
2019-01-26 01:27:28 -08:00
if h.Client.Id == v.Id {
v.Flow.InletFlow += h.Flow.InletFlow
v.Flow.ExportFlow += h.Flow.ExportFlow
}
2019-03-23 07:19:59 -07:00
return true
})
2019-03-29 00:21:30 -07:00
file.GetDb().JsonDb.Tasks.Range(func(key, value interface{}) bool {
2019-03-23 07:19:59 -07:00
t := value.(*file.Tunnel)
2019-01-26 01:27:28 -08:00
if t.Client.Id == v.Id {
v.Flow.InletFlow += t.Flow.InletFlow
v.Flow.ExportFlow += t.Flow.ExportFlow
}
2019-03-23 07:19:59 -07:00
return true
})
return true
})
return
}
2019-03-29 00:21:30 -07:00
//delete all host and tasks by client id
2019-03-28 19:41:57 -07:00
func DelTunnelAndHostByClientId(clientId int, justDelNoStore bool) {
2019-02-12 11:54:00 -08:00
var ids []int
2019-03-29 00:21:30 -07:00
file.GetDb().JsonDb.Tasks.Range(func(key, value interface{}) bool {
2019-03-23 07:19:59 -07:00
v := value.(*file.Tunnel)
2019-03-28 19:41:57 -07:00
if justDelNoStore && !v.NoStore {
return true
}
2019-01-26 01:27:28 -08:00
if v.Client.Id == clientId {
2019-02-12 11:54:00 -08:00
ids = append(ids, v.Id)
}
2019-03-23 07:19:59 -07:00
return true
})
2019-02-12 11:54:00 -08:00
for _, id := range ids {
DelTask(id)
}
2019-03-14 23:03:49 -07:00
ids = ids[:0]
2019-03-29 00:21:30 -07:00
file.GetDb().JsonDb.Hosts.Range(func(key, value interface{}) bool {
2019-03-23 07:19:59 -07:00
v := value.(*file.Host)
2019-03-28 19:41:57 -07:00
if justDelNoStore && !v.NoStore {
return true
}
2019-01-26 01:27:28 -08:00
if v.Client.Id == clientId {
2019-03-14 23:03:49 -07:00
ids = append(ids, v.Id)
}
2019-03-23 07:19:59 -07:00
return true
})
2019-03-14 23:03:49 -07:00
for _, id := range ids {
2019-03-29 00:21:30 -07:00
file.GetDb().DelHost(id)
2019-03-14 23:03:49 -07:00
}
}
2019-03-29 00:21:30 -07:00
//close the client
func DelClientConnect(clientId int) {
2019-03-23 07:19:59 -07:00
Bridge.DelClient(clientId)
}
func GetDashboardData() map[string]interface{} {
data := make(map[string]interface{})
data["version"] = version.VERSION
2019-03-29 00:21:30 -07:00
data["hostCount"] = common.GeSynctMapLen(file.GetDb().JsonDb.Hosts)
2019-12-06 07:42:37 -08:00
data["clientCount"] = common.GeSynctMapLen(file.GetDb().JsonDb.Clients)
if beego.AppConfig.String("public_vkey") != "" { //remove public vkey
data["clientCount"] = data["clientCount"].(int) - 1
}
2019-03-23 07:19:59 -07:00
dealClientData()
c := 0
var in, out int64
2019-03-29 00:21:30 -07:00
file.GetDb().JsonDb.Clients.Range(func(key, value interface{}) bool {
2019-03-23 07:19:59 -07:00
v := value.(*file.Client)
if v.IsConnect {
c += 1
}
in += v.Flow.InletFlow
out += v.Flow.ExportFlow
2019-03-23 07:19:59 -07:00
return true
})
data["clientOnlineCount"] = c
data["inletFlowCount"] = int(in)
data["exportFlowCount"] = int(out)
var tcp, udp, secret, socks5, p2p, http int
2019-03-29 00:21:30 -07:00
file.GetDb().JsonDb.Tasks.Range(func(key, value interface{}) bool {
2019-03-23 07:19:59 -07:00
switch value.(*file.Tunnel).Mode {
case "tcp":
tcp += 1
case "socks5":
socks5 += 1
case "httpProxy":
http += 1
case "udp":
udp += 1
case "p2p":
p2p += 1
case "secret":
secret += 1
}
2019-03-23 07:19:59 -07:00
return true
})
data["tcpC"] = tcp
data["udpCount"] = udp
data["socks5Count"] = socks5
data["httpProxyCount"] = http
data["secretCount"] = secret
data["p2pCount"] = p2p
2019-03-04 17:23:18 -08:00
data["bridgeType"] = beego.AppConfig.String("bridge_type")
data["httpProxyPort"] = beego.AppConfig.String("http_proxy_port")
data["httpsProxyPort"] = beego.AppConfig.String("https_proxy_port")
data["ipLimit"] = beego.AppConfig.String("ip_limit")
data["flowStoreInterval"] = beego.AppConfig.String("flow_store_interval")
data["serverIp"] = beego.AppConfig.String("p2p_ip")
data["p2pPort"] = beego.AppConfig.String("p2p_port")
data["logLevel"] = beego.AppConfig.String("log_level")
2019-02-23 07:29:48 -08:00
tcpCount := 0
2019-03-23 07:19:59 -07:00
2019-03-29 00:21:30 -07:00
file.GetDb().JsonDb.Clients.Range(func(key, value interface{}) bool {
2019-03-28 19:41:57 -07:00
tcpCount += int(value.(*file.Client).NowConn)
2019-03-23 07:19:59 -07:00
return true
})
2019-02-23 07:29:48 -08:00
data["tcpCount"] = tcpCount
cpuPercet, _ := cpu.Percent(0, true)
var cpuAll float64
for _, v := range cpuPercet {
cpuAll += v
}
loads, _ := load.Avg()
data["load"] = loads.String()
data["cpu"] = math.Round(cpuAll / float64(len(cpuPercet)))
swap, _ := mem.SwapMemory()
data["swap_mem"] = math.Round(swap.UsedPercent)
vir, _ := mem.VirtualMemory()
data["virtual_mem"] = math.Round(vir.UsedPercent)
conn, _ := net.ProtoCounters(nil)
io1, _ := net.IOCounters(false)
time.Sleep(time.Millisecond * 500)
io2, _ := net.IOCounters(false)
if len(io2) > 0 && len(io1) > 0 {
data["io_send"] = (io2[0].BytesSent - io1[0].BytesSent) * 2
data["io_recv"] = (io2[0].BytesRecv - io1[0].BytesRecv) * 2
}
for _, v := range conn {
data[v.Protocol] = v.Stats["CurrEstab"]
}
//chart
var fg int
2019-03-29 00:21:30 -07:00
if len(tool.ServerStatus) >= 10 {
fg = len(tool.ServerStatus) / 10
for i := 0; i <= 9; i++ {
2019-03-29 00:21:30 -07:00
data["sys"+strconv.Itoa(i+1)] = tool.ServerStatus[i*fg]
}
}
return data
2019-01-09 04:33:00 -08:00
}
2019-02-23 07:29:48 -08:00
func flowSession(m time.Duration) {
ticker := time.NewTicker(m)
defer ticker.Stop()
2019-02-23 07:29:48 -08:00
for {
select {
case <-ticker.C:
2019-03-29 00:21:30 -07:00
file.GetDb().JsonDb.StoreHostToJsonFile()
file.GetDb().JsonDb.StoreTasksToJsonFile()
file.GetDb().JsonDb.StoreClientsToJsonFile()
2019-02-23 07:29:48 -08:00
}
}
}