server.go 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618
  1. package service
  2. import (
  3. "archive/zip"
  4. "bytes"
  5. "encoding/json"
  6. "fmt"
  7. "io"
  8. "io/fs"
  9. "mime/multipart"
  10. "net/http"
  11. "os"
  12. "os/exec"
  13. "runtime"
  14. "strconv"
  15. "strings"
  16. "time"
  17. "x-ui/config"
  18. "x-ui/database"
  19. "x-ui/logger"
  20. "x-ui/util/common"
  21. "x-ui/util/sys"
  22. "x-ui/xray"
  23. "github.com/shirou/gopsutil/v4/cpu"
  24. "github.com/shirou/gopsutil/v4/disk"
  25. "github.com/shirou/gopsutil/v4/host"
  26. "github.com/shirou/gopsutil/v4/load"
  27. "github.com/shirou/gopsutil/v4/mem"
  28. "github.com/shirou/gopsutil/v4/net"
  29. )
  30. type ProcessState string
  31. const (
  32. Running ProcessState = "running"
  33. Stop ProcessState = "stop"
  34. Error ProcessState = "error"
  35. )
  36. type Status struct {
  37. T time.Time `json:"-"`
  38. Cpu float64 `json:"cpu"`
  39. CpuCores int `json:"cpuCores"`
  40. LogicalPro int `json:"logicalPro"`
  41. CpuSpeedMhz float64 `json:"cpuSpeedMhz"`
  42. Mem struct {
  43. Current uint64 `json:"current"`
  44. Total uint64 `json:"total"`
  45. } `json:"mem"`
  46. Swap struct {
  47. Current uint64 `json:"current"`
  48. Total uint64 `json:"total"`
  49. } `json:"swap"`
  50. Disk struct {
  51. Current uint64 `json:"current"`
  52. Total uint64 `json:"total"`
  53. } `json:"disk"`
  54. Xray struct {
  55. State ProcessState `json:"state"`
  56. ErrorMsg string `json:"errorMsg"`
  57. Version string `json:"version"`
  58. } `json:"xray"`
  59. Uptime uint64 `json:"uptime"`
  60. Loads []float64 `json:"loads"`
  61. TcpCount int `json:"tcpCount"`
  62. UdpCount int `json:"udpCount"`
  63. NetIO struct {
  64. Up uint64 `json:"up"`
  65. Down uint64 `json:"down"`
  66. } `json:"netIO"`
  67. NetTraffic struct {
  68. Sent uint64 `json:"sent"`
  69. Recv uint64 `json:"recv"`
  70. } `json:"netTraffic"`
  71. PublicIP struct {
  72. IPv4 string `json:"ipv4"`
  73. IPv6 string `json:"ipv6"`
  74. } `json:"publicIP"`
  75. AppStats struct {
  76. Threads uint32 `json:"threads"`
  77. Mem uint64 `json:"mem"`
  78. Uptime uint64 `json:"uptime"`
  79. } `json:"appStats"`
  80. }
  81. type Release struct {
  82. TagName string `json:"tag_name"`
  83. }
  84. type ServerService struct {
  85. xrayService XrayService
  86. inboundService InboundService
  87. cachedIPv4 string
  88. cachedIPv6 string
  89. }
  90. func getPublicIP(url string) string {
  91. resp, err := http.Get(url)
  92. if err != nil {
  93. return "N/A"
  94. }
  95. defer resp.Body.Close()
  96. ip, err := io.ReadAll(resp.Body)
  97. if err != nil {
  98. return "N/A"
  99. }
  100. ipString := string(ip)
  101. if ipString == "" {
  102. return "N/A"
  103. }
  104. return ipString
  105. }
  106. func (s *ServerService) GetStatus(lastStatus *Status) *Status {
  107. now := time.Now()
  108. status := &Status{
  109. T: now,
  110. }
  111. // CPU stats
  112. percents, err := cpu.Percent(0, false)
  113. if err != nil {
  114. logger.Warning("get cpu percent failed:", err)
  115. } else {
  116. status.Cpu = percents[0]
  117. }
  118. status.CpuCores, err = cpu.Counts(false)
  119. if err != nil {
  120. logger.Warning("get cpu cores count failed:", err)
  121. }
  122. status.LogicalPro = runtime.NumCPU()
  123. cpuInfos, err := cpu.Info()
  124. if err != nil {
  125. logger.Warning("get cpu info failed:", err)
  126. } else if len(cpuInfos) > 0 {
  127. status.CpuSpeedMhz = cpuInfos[0].Mhz
  128. } else {
  129. logger.Warning("could not find cpu info")
  130. }
  131. // Uptime
  132. upTime, err := host.Uptime()
  133. if err != nil {
  134. logger.Warning("get uptime failed:", err)
  135. } else {
  136. status.Uptime = upTime
  137. }
  138. // Memory stats
  139. memInfo, err := mem.VirtualMemory()
  140. if err != nil {
  141. logger.Warning("get virtual memory failed:", err)
  142. } else {
  143. status.Mem.Current = memInfo.Used
  144. status.Mem.Total = memInfo.Total
  145. }
  146. swapInfo, err := mem.SwapMemory()
  147. if err != nil {
  148. logger.Warning("get swap memory failed:", err)
  149. } else {
  150. status.Swap.Current = swapInfo.Used
  151. status.Swap.Total = swapInfo.Total
  152. }
  153. // Disk stats
  154. diskInfo, err := disk.Usage("/")
  155. if err != nil {
  156. logger.Warning("get disk usage failed:", err)
  157. } else {
  158. status.Disk.Current = diskInfo.Used
  159. status.Disk.Total = diskInfo.Total
  160. }
  161. // Load averages
  162. avgState, err := load.Avg()
  163. if err != nil {
  164. logger.Warning("get load avg failed:", err)
  165. } else {
  166. status.Loads = []float64{avgState.Load1, avgState.Load5, avgState.Load15}
  167. }
  168. // Network stats
  169. ioStats, err := net.IOCounters(false)
  170. if err != nil {
  171. logger.Warning("get io counters failed:", err)
  172. } else if len(ioStats) > 0 {
  173. ioStat := ioStats[0]
  174. status.NetTraffic.Sent = ioStat.BytesSent
  175. status.NetTraffic.Recv = ioStat.BytesRecv
  176. if lastStatus != nil {
  177. duration := now.Sub(lastStatus.T)
  178. seconds := float64(duration) / float64(time.Second)
  179. up := uint64(float64(status.NetTraffic.Sent-lastStatus.NetTraffic.Sent) / seconds)
  180. down := uint64(float64(status.NetTraffic.Recv-lastStatus.NetTraffic.Recv) / seconds)
  181. status.NetIO.Up = up
  182. status.NetIO.Down = down
  183. }
  184. } else {
  185. logger.Warning("can not find io counters")
  186. }
  187. // TCP/UDP connections
  188. status.TcpCount, err = sys.GetTCPCount()
  189. if err != nil {
  190. logger.Warning("get tcp connections failed:", err)
  191. }
  192. status.UdpCount, err = sys.GetUDPCount()
  193. if err != nil {
  194. logger.Warning("get udp connections failed:", err)
  195. }
  196. // IP fetching with caching
  197. if s.cachedIPv4 == "" || s.cachedIPv6 == "" {
  198. s.cachedIPv4 = getPublicIP("https://api.ipify.org")
  199. s.cachedIPv6 = getPublicIP("https://api6.ipify.org")
  200. }
  201. status.PublicIP.IPv4 = s.cachedIPv4
  202. status.PublicIP.IPv6 = s.cachedIPv6
  203. // Xray status
  204. if s.xrayService.IsXrayRunning() {
  205. status.Xray.State = Running
  206. status.Xray.ErrorMsg = ""
  207. } else {
  208. err := s.xrayService.GetXrayErr()
  209. if err != nil {
  210. status.Xray.State = Error
  211. } else {
  212. status.Xray.State = Stop
  213. }
  214. status.Xray.ErrorMsg = s.xrayService.GetXrayResult()
  215. }
  216. status.Xray.Version = s.xrayService.GetXrayVersion()
  217. // Application stats
  218. var rtm runtime.MemStats
  219. runtime.ReadMemStats(&rtm)
  220. status.AppStats.Mem = rtm.Sys
  221. status.AppStats.Threads = uint32(runtime.NumGoroutine())
  222. if p != nil && p.IsRunning() {
  223. status.AppStats.Uptime = p.GetUptime()
  224. } else {
  225. status.AppStats.Uptime = 0
  226. }
  227. return status
  228. }
  229. func (s *ServerService) GetXrayVersions() ([]string, error) {
  230. const (
  231. XrayURL = "https://api.github.com/repos/XTLS/Xray-core/releases"
  232. bufferSize = 8192
  233. )
  234. resp, err := http.Get(XrayURL)
  235. if err != nil {
  236. return nil, err
  237. }
  238. defer resp.Body.Close()
  239. buffer := bytes.NewBuffer(make([]byte, bufferSize))
  240. buffer.Reset()
  241. if _, err := buffer.ReadFrom(resp.Body); err != nil {
  242. return nil, err
  243. }
  244. var releases []Release
  245. if err := json.Unmarshal(buffer.Bytes(), &releases); err != nil {
  246. return nil, err
  247. }
  248. var versions []string
  249. for _, release := range releases {
  250. tagVersion := strings.TrimPrefix(release.TagName, "v")
  251. tagParts := strings.Split(tagVersion, ".")
  252. if len(tagParts) != 3 {
  253. continue
  254. }
  255. major, err1 := strconv.Atoi(tagParts[0])
  256. minor, err2 := strconv.Atoi(tagParts[1])
  257. patch, err3 := strconv.Atoi(tagParts[2])
  258. if err1 != nil || err2 != nil || err3 != nil {
  259. continue
  260. }
  261. if major > 25 || (major == 25 && minor > 3) || (major == 25 && minor == 3 && patch >= 3) {
  262. versions = append(versions, release.TagName)
  263. }
  264. }
  265. return versions, nil
  266. }
  267. func (s *ServerService) StopXrayService() (string error) {
  268. err := s.xrayService.StopXray()
  269. if err != nil {
  270. logger.Error("stop xray failed:", err)
  271. return err
  272. }
  273. return nil
  274. }
  275. func (s *ServerService) RestartXrayService() (string error) {
  276. s.xrayService.StopXray()
  277. defer func() {
  278. err := s.xrayService.RestartXray(true)
  279. if err != nil {
  280. logger.Error("start xray failed:", err)
  281. }
  282. }()
  283. return nil
  284. }
  285. func (s *ServerService) downloadXRay(version string) (string, error) {
  286. osName := runtime.GOOS
  287. arch := runtime.GOARCH
  288. switch osName {
  289. case "darwin":
  290. osName = "macos"
  291. }
  292. switch arch {
  293. case "amd64":
  294. arch = "64"
  295. case "arm64":
  296. arch = "arm64-v8a"
  297. case "armv7":
  298. arch = "arm32-v7a"
  299. case "armv6":
  300. arch = "arm32-v6"
  301. case "armv5":
  302. arch = "arm32-v5"
  303. case "386":
  304. arch = "32"
  305. case "s390x":
  306. arch = "s390x"
  307. }
  308. fileName := fmt.Sprintf("Xray-%s-%s.zip", osName, arch)
  309. url := fmt.Sprintf("https://github.com/XTLS/Xray-core/releases/download/%s/%s", version, fileName)
  310. resp, err := http.Get(url)
  311. if err != nil {
  312. return "", err
  313. }
  314. defer resp.Body.Close()
  315. os.Remove(fileName)
  316. file, err := os.Create(fileName)
  317. if err != nil {
  318. return "", err
  319. }
  320. defer file.Close()
  321. _, err = io.Copy(file, resp.Body)
  322. if err != nil {
  323. return "", err
  324. }
  325. return fileName, nil
  326. }
  327. func (s *ServerService) UpdateXray(version string) error {
  328. zipFileName, err := s.downloadXRay(version)
  329. if err != nil {
  330. return err
  331. }
  332. zipFile, err := os.Open(zipFileName)
  333. if err != nil {
  334. return err
  335. }
  336. defer func() {
  337. zipFile.Close()
  338. os.Remove(zipFileName)
  339. }()
  340. stat, err := zipFile.Stat()
  341. if err != nil {
  342. return err
  343. }
  344. reader, err := zip.NewReader(zipFile, stat.Size())
  345. if err != nil {
  346. return err
  347. }
  348. s.xrayService.StopXray()
  349. defer func() {
  350. err := s.xrayService.RestartXray(true)
  351. if err != nil {
  352. logger.Error("start xray failed:", err)
  353. }
  354. }()
  355. copyZipFile := func(zipName string, fileName string) error {
  356. zipFile, err := reader.Open(zipName)
  357. if err != nil {
  358. return err
  359. }
  360. os.Remove(fileName)
  361. file, err := os.OpenFile(fileName, os.O_CREATE|os.O_RDWR|os.O_TRUNC, fs.ModePerm)
  362. if err != nil {
  363. return err
  364. }
  365. defer file.Close()
  366. _, err = io.Copy(file, zipFile)
  367. return err
  368. }
  369. err = copyZipFile("xray", xray.GetBinaryPath())
  370. if err != nil {
  371. return err
  372. }
  373. return nil
  374. }
  375. func (s *ServerService) GetLogs(count string, level string, syslog string) []string {
  376. c, _ := strconv.Atoi(count)
  377. var lines []string
  378. if syslog == "true" {
  379. cmdArgs := []string{"journalctl", "-u", "x-ui", "--no-pager", "-n", count, "-p", level}
  380. // Run the command
  381. cmd := exec.Command(cmdArgs[0], cmdArgs[1:]...)
  382. var out bytes.Buffer
  383. cmd.Stdout = &out
  384. err := cmd.Run()
  385. if err != nil {
  386. return []string{"Failed to run journalctl command!"}
  387. }
  388. lines = strings.Split(out.String(), "\n")
  389. } else {
  390. lines = logger.GetLogs(c, level)
  391. }
  392. return lines
  393. }
  394. func (s *ServerService) GetConfigJson() (any, error) {
  395. config, err := s.xrayService.GetXrayConfig()
  396. if err != nil {
  397. return nil, err
  398. }
  399. contents, err := json.MarshalIndent(config, "", " ")
  400. if err != nil {
  401. return nil, err
  402. }
  403. var jsonData any
  404. err = json.Unmarshal(contents, &jsonData)
  405. if err != nil {
  406. return nil, err
  407. }
  408. return jsonData, nil
  409. }
  410. func (s *ServerService) GetDb() ([]byte, error) {
  411. // Update by manually trigger a checkpoint operation
  412. err := database.Checkpoint()
  413. if err != nil {
  414. return nil, err
  415. }
  416. // Open the file for reading
  417. file, err := os.Open(config.GetDBPath())
  418. if err != nil {
  419. return nil, err
  420. }
  421. defer file.Close()
  422. // Read the file contents
  423. fileContents, err := io.ReadAll(file)
  424. if err != nil {
  425. return nil, err
  426. }
  427. return fileContents, nil
  428. }
  429. func (s *ServerService) ImportDB(file multipart.File) error {
  430. // Check if the file is a SQLite database
  431. isValidDb, err := database.IsSQLiteDB(file)
  432. if err != nil {
  433. return common.NewErrorf("Error checking db file format: %v", err)
  434. }
  435. if !isValidDb {
  436. return common.NewError("Invalid db file format")
  437. }
  438. // Reset the file reader to the beginning
  439. _, err = file.Seek(0, 0)
  440. if err != nil {
  441. return common.NewErrorf("Error resetting file reader: %v", err)
  442. }
  443. // Save the file as temporary file
  444. tempPath := fmt.Sprintf("%s.temp", config.GetDBPath())
  445. // Remove the existing fallback file (if any) before creating one
  446. _, err = os.Stat(tempPath)
  447. if err == nil {
  448. errRemove := os.Remove(tempPath)
  449. if errRemove != nil {
  450. return common.NewErrorf("Error removing existing temporary db file: %v", errRemove)
  451. }
  452. }
  453. // Create the temporary file
  454. tempFile, err := os.Create(tempPath)
  455. if err != nil {
  456. return common.NewErrorf("Error creating temporary db file: %v", err)
  457. }
  458. defer tempFile.Close()
  459. // Remove temp file before returning
  460. defer os.Remove(tempPath)
  461. // Save uploaded file to temporary file
  462. _, err = io.Copy(tempFile, file)
  463. if err != nil {
  464. return common.NewErrorf("Error saving db: %v", err)
  465. }
  466. // Check if we can init db or not
  467. err = database.InitDB(tempPath)
  468. if err != nil {
  469. return common.NewErrorf("Error checking db: %v", err)
  470. }
  471. // Stop Xray
  472. s.StopXrayService()
  473. // Backup the current database for fallback
  474. fallbackPath := fmt.Sprintf("%s.backup", config.GetDBPath())
  475. // Remove the existing fallback file (if any)
  476. _, err = os.Stat(fallbackPath)
  477. if err == nil {
  478. errRemove := os.Remove(fallbackPath)
  479. if errRemove != nil {
  480. return common.NewErrorf("Error removing existing fallback db file: %v", errRemove)
  481. }
  482. }
  483. // Move the current database to the fallback location
  484. err = os.Rename(config.GetDBPath(), fallbackPath)
  485. if err != nil {
  486. return common.NewErrorf("Error backing up temporary db file: %v", err)
  487. }
  488. // Remove the temporary file before returning
  489. defer os.Remove(fallbackPath)
  490. // Move temp to DB path
  491. err = os.Rename(tempPath, config.GetDBPath())
  492. if err != nil {
  493. errRename := os.Rename(fallbackPath, config.GetDBPath())
  494. if errRename != nil {
  495. return common.NewErrorf("Error moving db file and restoring fallback: %v", errRename)
  496. }
  497. return common.NewErrorf("Error moving db file: %v", err)
  498. }
  499. // Migrate DB
  500. err = database.InitDB(config.GetDBPath())
  501. if err != nil {
  502. errRename := os.Rename(fallbackPath, config.GetDBPath())
  503. if errRename != nil {
  504. return common.NewErrorf("Error migrating db and restoring fallback: %v", errRename)
  505. }
  506. return common.NewErrorf("Error migrating db: %v", err)
  507. }
  508. s.inboundService.MigrateDB()
  509. // Start Xray
  510. err = s.RestartXrayService()
  511. if err != nil {
  512. return common.NewErrorf("Imported DB but Failed to start Xray: %v", err)
  513. }
  514. return nil
  515. }
  516. func (s *ServerService) GetNewX25519Cert() (any, error) {
  517. // Run the command
  518. cmd := exec.Command(xray.GetBinaryPath(), "x25519")
  519. var out bytes.Buffer
  520. cmd.Stdout = &out
  521. err := cmd.Run()
  522. if err != nil {
  523. return nil, err
  524. }
  525. lines := strings.Split(out.String(), "\n")
  526. privateKeyLine := strings.Split(lines[0], ":")
  527. publicKeyLine := strings.Split(lines[1], ":")
  528. privateKey := strings.TrimSpace(privateKeyLine[1])
  529. publicKey := strings.TrimSpace(publicKeyLine[1])
  530. keyPair := map[string]any{
  531. "privateKey": privateKey,
  532. "publicKey": publicKey,
  533. }
  534. return keyPair, nil
  535. }