nps/server/server.go

472 lines
12 KiB
Go
Raw Normal View History

2019-01-09 04:33:00 -08:00
package server
import (
"errors"
2019-02-02 20:40:43 -08:00
"github.com/cnlh/nps/bridge"
2019-02-16 04:43:26 -08:00
"github.com/cnlh/nps/lib/common"
2019-02-09 01:07:47 -08:00
"github.com/cnlh/nps/lib/file"
2019-02-12 11:54:00 -08:00
"github.com/cnlh/nps/server/proxy"
"github.com/cnlh/nps/server/tool"
2019-02-16 04:43:26 -08:00
"github.com/cnlh/nps/vender/github.com/astaxie/beego"
2019-02-23 07:29:48 -08:00
"github.com/cnlh/nps/vender/github.com/astaxie/beego/logs"
"github.com/shirou/gopsutil/cpu"
"github.com/shirou/gopsutil/load"
"github.com/shirou/gopsutil/mem"
"github.com/shirou/gopsutil/net"
"math"
2019-02-23 07:29:48 -08:00
"os"
"strconv"
2019-03-23 07:19:59 -07:00
"strings"
2019-02-23 07:29:48 -08:00
"time"
2019-01-09 04:33:00 -08:00
)
var (
Bridge *bridge.Bridge
RunList map[int]interface{} //运行中的任务
serverStatus []map[string]interface{}
2019-01-09 04:33:00 -08:00
)
func init() {
RunList = make(map[int]interface{})
serverStatus = make([]map[string]interface{}, 0, 1500)
go getSeverStatus()
2019-01-09 04:33:00 -08:00
}
//从csv文件中恢复任务
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)
file.GetCsvDb().NewClient(c)
RunList[c.Id] = nil
}
2019-02-12 11:54:00 -08:00
//Initialize services in server-side files
2019-03-23 07:19:59 -07:00
file.GetCsvDb().Tasks.Range(func(key, value interface{}) bool {
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-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:
DelTunnelAndHostByClientId(id)
file.GetCsvDb().DelClient(id)
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-02-26 06:40:28 -08:00
if t := file.GetCsvDb().GetTaskByMd5Password(s.Password); t != nil {
2019-02-23 07:29:48 -08:00
if !t.Client.GetConn() {
logs.Info("Connections exceed the current client %d limit", t.Client.Id)
s.Conn.Close()
2019-02-23 21:17:43 -08:00
} else if t.Status {
2019-03-25 03:39:31 -07:00
go proxy.NewBaseServer(Bridge, t).DealClient(s.Conn, t.Client, t.Target, nil, common.CONN_TCP, nil, t.Flow)
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
2019-02-09 01:07:47 -08:00
func StartNewServer(bridgePort int, cnf *file.Tunnel, bridgeType string) {
2019-03-04 17:23:18 -08:00
Bridge = bridge.NewTunnel(bridgePort, bridgeType, common.GetBoolByStr(beego.AppConfig.String("ip_limit")), RunList)
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 {
logs.Info("start p2p server port", p)
2019-02-26 06:40:28 -08:00
go proxy.NewP2PServer(p).Start()
}
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
}
2019-02-17 09:05:05 -08:00
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)
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)
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",
Target: "",
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-02-17 09:05:05 -08:00
service = proxy.NewHttp(Bridge, c)
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 {
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
}
if t, err := file.GetCsvDb().GetTask(id); err != nil {
return err
} else {
t.Status = false
file.GetCsvDb().UpdateTask(t)
2019-01-09 04:33:00 -08:00
}
2019-02-12 11:54:00 -08:00
delete(RunList, 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
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
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)
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-02-09 01:07:47 -08:00
if t, err := file.GetCsvDb().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-02-09 01:07:47 -08:00
file.GetCsvDb().UpdateTask(t)
2019-01-09 04:33:00 -08:00
}
return nil
}
//delete task
func DelTask(id int) error {
2019-02-12 11:54:00 -08:00
if _, ok := RunList[id]; ok {
if err := StopServer(id); err != nil {
return err
2019-01-09 04:33:00 -08:00
}
}
2019-02-12 11:54:00 -08:00
return file.GetCsvDb().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-23 07:19:59 -07:00
keys := common.GetMapKeys(file.GetCsvDb().Tasks)
for _, key := range keys {
if value, ok := file.GetCsvDb().Tasks.Load(key); ok {
v := value.(*file.Tunnel)
if (typeVal != "" && v.Mode != typeVal) || (typeVal == "" && clientId != v.Client.Id) {
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 {
if length--; length > 0 {
if _, ok := RunList[v.Id]; ok {
v.RunStatus = true
} else {
v.RunStatus = false
}
list = append(list, v)
2019-01-09 04:33:00 -08:00
}
}
}
}
return list, cnt
}
//获取客户端列表
2019-03-23 07:19:59 -07:00
func GetClientList(start, length int, search string) (list []*file.Client, cnt int) {
list, cnt = file.GetCsvDb().GetClientList(start, length, search)
dealClientData()
return
}
2019-03-23 07:19:59 -07:00
func dealClientData() {
file.GetCsvDb().Clients.Range(func(key, value interface{}) bool {
v := value.(*file.Client)
if _, ok := Bridge.Client.Load(v.Id); ok {
v.IsConnect = true
} else {
v.IsConnect = false
}
v.Flow.InletFlow = 0
v.Flow.ExportFlow = 0
2019-03-23 07:19:59 -07:00
file.GetCsvDb().Hosts.Range(func(key, value interface{}) bool {
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
})
file.GetCsvDb().Tasks.Range(func(key, value interface{}) bool {
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
}
//根据客户端id删除其所属的所有隧道和域名
func DelTunnelAndHostByClientId(clientId int) {
2019-02-12 11:54:00 -08:00
var ids []int
2019-03-23 07:19:59 -07:00
file.GetCsvDb().Tasks.Range(func(key, value interface{}) bool {
v := value.(*file.Tunnel)
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-23 07:19:59 -07:00
file.GetCsvDb().Hosts.Range(func(key, value interface{}) bool {
v := value.(*file.Host)
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 {
file.GetCsvDb().DelHost(id)
}
}
//关闭客户端连接
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{})
2019-03-23 07:19:59 -07:00
data["hostCount"] = file.GetCsvDb().GetMapLen(file.GetCsvDb().Hosts)
data["clientCount"] = file.GetCsvDb().GetMapLen(file.GetCsvDb().Clients) - 1 //Remove the public key client
dealClientData()
c := 0
var in, out int64
2019-03-23 07:19:59 -07:00
file.GetCsvDb().Clients.Range(func(key, value interface{}) bool {
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-23 07:19:59 -07:00
file.GetCsvDb().Tasks.Range(func(key, value interface{}) bool {
switch value.(*file.Tunnel).Mode {
case "tcp":
tcp += 1
case "socks5":
udp += 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
file.GetCsvDb().Clients.Range(func(key, value interface{}) bool {
tcpCount += value.(*file.Client).NowConn
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
if len(serverStatus) >= 10 {
fg = len(serverStatus) / 10
for i := 0; i <= 9; i++ {
data["sys"+strconv.Itoa(i+1)] = 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)
for {
select {
case <-ticker.C:
file.GetCsvDb().StoreHostToCsv()
file.GetCsvDb().StoreTasksToCsv()
}
}
}
func getSeverStatus() {
for {
if len(serverStatus) < 10 {
time.Sleep(time.Second)
} else {
time.Sleep(time.Minute)
}
cpuPercet, _ := cpu.Percent(0, true)
var cpuAll float64
for _, v := range cpuPercet {
cpuAll += v
}
m := make(map[string]interface{})
loads, _ := load.Avg()
m["load1"] = loads.Load1
m["load5"] = loads.Load5
m["load15"] = loads.Load15
m["cpu"] = math.Round(cpuAll / float64(len(cpuPercet)))
swap, _ := mem.SwapMemory()
m["swap_mem"] = math.Round(swap.UsedPercent)
vir, _ := mem.VirtualMemory()
m["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 {
m["io_send"] = (io2[0].BytesSent - io1[0].BytesSent) * 2
m["io_recv"] = (io2[0].BytesRecv - io1[0].BytesRecv) * 2
}
t := time.Now()
m["time"] = strconv.Itoa(t.Hour()) + ":" + strconv.Itoa(t.Minute()) + ":" + strconv.Itoa(t.Second())
for _, v := range conn {
m[v.Protocol] = v.Stats["CurrEstab"]
}
if len(serverStatus) >= 1440 {
serverStatus = serverStatus[1:]
}
serverStatus = append(serverStatus, m)
}
}