control.go 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. package client
  2. import (
  3. "encoding/base64"
  4. "encoding/binary"
  5. "errors"
  6. "github.com/cnlh/nps/lib/common"
  7. "github.com/cnlh/nps/lib/config"
  8. "github.com/cnlh/nps/lib/conn"
  9. "github.com/cnlh/nps/lib/crypt"
  10. "github.com/cnlh/nps/lib/version"
  11. "github.com/cnlh/nps/vender/github.com/astaxie/beego/logs"
  12. "github.com/cnlh/nps/vender/github.com/xtaci/kcp"
  13. "github.com/cnlh/nps/vender/golang.org/x/net/proxy"
  14. "io/ioutil"
  15. "log"
  16. "net"
  17. "net/http"
  18. "net/http/httputil"
  19. "net/url"
  20. "os"
  21. "path/filepath"
  22. "strconv"
  23. "strings"
  24. "time"
  25. )
  26. func GetTaskStatus(path string) {
  27. cnf, err := config.NewConfig(path)
  28. if err != nil {
  29. log.Fatalln(err)
  30. }
  31. c, err := NewConn(cnf.CommonConfig.Tp, cnf.CommonConfig.VKey, cnf.CommonConfig.Server, common.WORK_CONFIG, cnf.CommonConfig.ProxyUrl)
  32. if err != nil {
  33. log.Fatalln(err)
  34. }
  35. if _, err := c.Write([]byte(common.WORK_STATUS)); err != nil {
  36. log.Fatalln(err)
  37. }
  38. //read now vKey and write to server
  39. if f, err := common.ReadAllFromFile(filepath.Join(common.GetTmpPath(), "npc_vkey.txt")); err != nil {
  40. log.Fatalln(err)
  41. } else if _, err := c.Write([]byte(crypt.Md5(string(f)))); err != nil {
  42. log.Fatalln(err)
  43. }
  44. var isPub bool
  45. binary.Read(c, binary.LittleEndian, &isPub)
  46. if l, err := c.GetLen(); err != nil {
  47. log.Fatalln(err)
  48. } else if b, err := c.GetShortContent(l); err != nil {
  49. log.Fatalln(err)
  50. } else {
  51. arr := strings.Split(string(b), common.CONN_DATA_SEQ)
  52. for _, v := range cnf.Hosts {
  53. if common.InStrArr(arr, v.Remark) {
  54. log.Println(v.Remark, "ok")
  55. } else {
  56. log.Println(v.Remark, "not running")
  57. }
  58. }
  59. for _, v := range cnf.Tasks {
  60. ports := common.GetPorts(v.Ports)
  61. if v.Mode == "secret" {
  62. ports = append(ports, 0)
  63. }
  64. for _, vv := range ports {
  65. var remark string
  66. if len(ports) > 1 {
  67. remark = v.Remark + "_" + strconv.Itoa(vv)
  68. } else {
  69. remark = v.Remark
  70. }
  71. if common.InStrArr(arr, remark) {
  72. log.Println(remark, "ok")
  73. } else {
  74. log.Println(remark, "not running")
  75. }
  76. }
  77. }
  78. }
  79. os.Exit(0)
  80. }
  81. var errAdd = errors.New("The server returned an error, which port or host may have been occupied or not allowed to open.")
  82. func StartFromFile(path string) {
  83. first := true
  84. cnf, err := config.NewConfig(path)
  85. if err != nil || cnf.CommonConfig == nil {
  86. logs.Error("Config file %s loading error %s", path, err.Error())
  87. os.Exit(0)
  88. }
  89. logs.Info("Loading configuration file %s successfully", path)
  90. re:
  91. if first || cnf.CommonConfig.AutoReconnection {
  92. if !first {
  93. logs.Info("Reconnecting...")
  94. time.Sleep(time.Second * 5)
  95. }
  96. } else {
  97. return
  98. }
  99. first = false
  100. c, err := NewConn(cnf.CommonConfig.Tp, cnf.CommonConfig.VKey, cnf.CommonConfig.Server, common.WORK_CONFIG, cnf.CommonConfig.ProxyUrl)
  101. if err != nil {
  102. logs.Error(err)
  103. goto re
  104. }
  105. var isPub bool
  106. binary.Read(c, binary.LittleEndian, &isPub)
  107. // get tmp password
  108. var b []byte
  109. vkey := cnf.CommonConfig.VKey
  110. if isPub {
  111. // send global configuration to server and get status of config setting
  112. if _, err := c.SendInfo(cnf.CommonConfig.Client, common.NEW_CONF); err != nil {
  113. logs.Error(err)
  114. goto re
  115. }
  116. if !c.GetAddStatus() {
  117. logs.Error("the web_user may have been occupied!")
  118. goto re
  119. }
  120. if b, err = c.GetShortContent(16); err != nil {
  121. logs.Error(err)
  122. goto re
  123. }
  124. vkey = string(b)
  125. }
  126. ioutil.WriteFile(filepath.Join(common.GetTmpPath(), "npc_vkey.txt"), []byte(vkey), 0600)
  127. //send hosts to server
  128. for _, v := range cnf.Hosts {
  129. if _, err := c.SendInfo(v, common.NEW_HOST); err != nil {
  130. logs.Error(err)
  131. goto re
  132. }
  133. if !c.GetAddStatus() {
  134. logs.Error(errAdd, v.Host)
  135. goto re
  136. }
  137. }
  138. //send task to server
  139. for _, v := range cnf.Tasks {
  140. if _, err := c.SendInfo(v, common.NEW_TASK); err != nil {
  141. logs.Error(err)
  142. goto re
  143. }
  144. if !c.GetAddStatus() {
  145. logs.Error(errAdd, v.Ports, v.Remark)
  146. goto re
  147. }
  148. if v.Mode == "file" {
  149. //start local file server
  150. go startLocalFileServer(cnf.CommonConfig, v, vkey)
  151. }
  152. }
  153. //create local server secret or p2p
  154. for _, v := range cnf.LocalServer {
  155. go StartLocalServer(v, cnf.CommonConfig)
  156. }
  157. c.Close()
  158. if cnf.CommonConfig.Client.WebUserName == "" || cnf.CommonConfig.Client.WebPassword == "" {
  159. logs.Notice("web access login username:user password:%s", vkey)
  160. } else {
  161. logs.Notice("web access login username:%s password:%s", cnf.CommonConfig.Client.WebUserName, cnf.CommonConfig.Client.WebPassword)
  162. }
  163. NewRPClient(cnf.CommonConfig.Server, vkey, cnf.CommonConfig.Tp, cnf.CommonConfig.ProxyUrl, cnf).Start()
  164. CloseLocalServer()
  165. goto re
  166. }
  167. // Create a new connection with the server and verify it
  168. func NewConn(tp string, vkey string, server string, connType string, proxyUrl string) (*conn.Conn, error) {
  169. var err error
  170. var connection net.Conn
  171. var sess *kcp.UDPSession
  172. if tp == "tcp" {
  173. if proxyUrl != "" {
  174. u, er := url.Parse(proxyUrl)
  175. if er != nil {
  176. return nil, er
  177. }
  178. switch u.Scheme {
  179. case "socks5":
  180. n, er := proxy.FromURL(u, nil)
  181. if er != nil {
  182. return nil, er
  183. }
  184. connection, err = n.Dial("tcp", server)
  185. case "http":
  186. connection, err = NewHttpProxyConn(u, server)
  187. }
  188. } else {
  189. connection, err = net.Dial("tcp", server)
  190. }
  191. } else {
  192. sess, err = kcp.DialWithOptions(server, nil, 10, 3)
  193. if err == nil {
  194. conn.SetUdpSession(sess)
  195. connection = sess
  196. }
  197. }
  198. if err != nil {
  199. return nil, err
  200. }
  201. c := conn.NewConn(connection)
  202. if _, err := c.Write([]byte(common.CONN_TEST)); err != nil {
  203. logs.Error(err)
  204. os.Exit(0)
  205. }
  206. if _, err := c.Write([]byte(crypt.Md5(version.GetVersion()))); err != nil {
  207. logs.Error(err)
  208. os.Exit(0)
  209. }
  210. if b, err := c.GetShortContent(32); err != nil || crypt.Md5(version.GetVersion()) != string(b) {
  211. logs.Error("The client does not match the server version. The current version of the client is", version.GetVersion())
  212. os.Exit(0)
  213. }
  214. if _, err := c.Write([]byte(common.Getverifyval(vkey))); err != nil {
  215. logs.Error(err)
  216. os.Exit(0)
  217. }
  218. if s, err := c.ReadFlag(); err != nil {
  219. logs.Error(err)
  220. os.Exit(0)
  221. } else if s == common.VERIFY_EER {
  222. logs.Error("Validation key %s incorrect", vkey)
  223. os.Exit(0)
  224. }
  225. if _, err := c.Write([]byte(connType)); err != nil {
  226. logs.Error(err)
  227. os.Exit(0)
  228. }
  229. c.SetAlive(tp)
  230. return c, nil
  231. }
  232. func NewHttpProxyConn(url *url.URL, remoteAddr string) (net.Conn, error) {
  233. req := &http.Request{
  234. Method: "CONNECT",
  235. URL: url,
  236. Host: remoteAddr,
  237. Header: http.Header{},
  238. Proto: "HTTP/1.1",
  239. }
  240. password, _ := url.User.Password()
  241. req.Header.Set("Proxy-Authorization", "Basic "+basicAuth(url.User.Username(), password))
  242. b, err := httputil.DumpRequest(req, false)
  243. if err != nil {
  244. return nil, err
  245. }
  246. proxyConn, err := net.Dial("tcp", url.Host)
  247. if err != nil {
  248. return nil, err
  249. }
  250. if _, err := proxyConn.Write(b); err != nil {
  251. return nil, err
  252. }
  253. buf := make([]byte, 1024)
  254. if _, err := proxyConn.Read(buf); err != nil {
  255. return nil, err
  256. }
  257. return proxyConn, nil
  258. }
  259. func basicAuth(username, password string) string {
  260. auth := username + ":" + password
  261. return base64.StdEncoding.EncodeToString([]byte(auth))
  262. }