123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370 |
- package job
- import (
- "encoding/json"
- "os"
- "regexp"
- "sync"
- "x-ui/database"
- "x-ui/database/model"
- "x-ui/logger"
- "x-ui/web/service"
- "x-ui/xray"
- "net"
- "sort"
- "strings"
- "time"
- "github.com/go-cmd/cmd"
- )
- type CheckClientIpJob struct {
- xrayService service.XrayService
- AllowedIps []string
- mutex sync.Mutex
- }
- var job *CheckClientIpJob
- var AllowedIps []string
- var ipRegx *regexp.Regexp = regexp.MustCompile(`[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+`)
- var emailRegx *regexp.Regexp = regexp.MustCompile(`email:.+`)
- func NewCheckClientIpJob() *CheckClientIpJob {
- job := &CheckClientIpJob{}
- return job
- }
- func (j *CheckClientIpJob) Run() {
- logger.Debug("Check Client IP Job...")
- j.processLogFile()
- // AllowedIps = []string{"192.168.1.183","192.168.1.197"}
- allowedIps := []byte(strings.Join(j.getAllowedIps(), ","))
- // check if file exists, if not create one
- _, err := os.Stat(xray.GetAllowedIPsPath())
- if os.IsNotExist(err) {
- _, err = os.OpenFile(xray.GetAllowedIPsPath(), os.O_RDWR|os.O_CREATE, 0755)
- checkError(err)
- }
- err = os.WriteFile(xray.GetAllowedIPsPath(), allowedIps, 0755)
- checkError(err)
- }
- func (j *CheckClientIpJob) processLogFile() {
- accessLogPath := GetAccessLogPath()
- if accessLogPath == "" {
- logger.Warning("access.log doesn't exist in your config.json")
- return
- }
- data, err := os.ReadFile(accessLogPath)
- InboundClientIps := make(map[string][]string)
- checkError(err)
- // clean log
- if err := os.Truncate(GetAccessLogPath(), 0); err != nil {
- checkError(err)
- }
- lines := strings.Split(string(data), "\n")
- for _, line := range lines {
- matchesIp := ipRegx.FindString(line)
- if len(matchesIp) > 0 {
- ip := string(matchesIp)
- if ip == "127.0.0.1" || ip == "1.1.1.1" {
- continue
- }
- matchesEmail := emailRegx.FindString(line)
- if matchesEmail == "" {
- continue
- }
- matchesEmail = strings.TrimSpace(strings.Split(matchesEmail, "email: ")[1])
- if !contains(InboundClientIps[matchesEmail], ip) {
- InboundClientIps[matchesEmail] = append(InboundClientIps[matchesEmail], ip)
- }
- }
- }
- j.setAllowedIps([]string{})
- for clientEmail, ips := range InboundClientIps {
- inboundClientIps, err := GetInboundClientIps(clientEmail)
- sort.Strings(ips)
- if err != nil {
- addInboundClientIps(clientEmail, ips)
- } else {
- j.updateInboundClientIps(inboundClientIps, clientEmail, ips)
- }
- }
- // check if inbound connection is more than limited ip and drop connection
- LimitDevice := func() { LimitDevice() }
- stop := schedule(LimitDevice, 1000*time.Millisecond)
- time.Sleep(10 * time.Second)
- stop <- true
- }
- func GetAccessLogPath() string {
- config, err := os.ReadFile(xray.GetConfigPath())
- checkError(err)
- jsonConfig := map[string]interface{}{}
- err = json.Unmarshal([]byte(config), &jsonConfig)
- checkError(err)
- if jsonConfig["log"] != nil {
- jsonLog := jsonConfig["log"].(map[string]interface{})
- if jsonLog["access"] != nil {
- accessLogPath := jsonLog["access"].(string)
- return accessLogPath
- }
- }
- return ""
- }
- func checkError(e error) {
- if e != nil {
- logger.Warning("client ip job err:", e)
- }
- }
- func contains(s []string, str string) bool {
- for _, v := range s {
- if v == str {
- return true
- }
- }
- return false
- }
- func GetInboundClientIps(clientEmail string) (*model.InboundClientIps, error) {
- db := database.GetDB()
- InboundClientIps := &model.InboundClientIps{}
- err := db.Model(model.InboundClientIps{}).Where("client_email = ?", clientEmail).First(InboundClientIps).Error
- if err != nil {
- return nil, err
- }
- return InboundClientIps, nil
- }
- func addInboundClientIps(clientEmail string, ips []string) error {
- inboundClientIps := &model.InboundClientIps{}
- jsonIps, err := json.Marshal(ips)
- checkError(err)
- inboundClientIps.ClientEmail = clientEmail
- inboundClientIps.Ips = string(jsonIps)
- db := database.GetDB()
- tx := db.Begin()
- defer func() {
- if r := recover(); r != nil {
- tx.Rollback()
- } else {
- tx.Commit()
- }
- }()
- err = tx.Save(inboundClientIps).Error
- if err != nil {
- return err
- }
- return nil
- }
- func (j *CheckClientIpJob) updateInboundClientIps(inboundClientIps *model.InboundClientIps, clientEmail string, ips []string) error {
- // check inbound limitation
- inbound, err := GetInboundByEmail(clientEmail)
- checkError(err)
- if inbound.Settings == "" {
- logger.Debug("wrong data ", inbound)
- return nil
- }
- settings := map[string][]model.Client{}
- json.Unmarshal([]byte(inbound.Settings), &settings)
- clients := settings["clients"]
- for _, client := range clients {
- if client.Email == clientEmail {
- limitIp := client.LimitIP
- if limitIp < len(ips) && limitIp != 0 && inbound.Enable {
- for _, ip := range ips[:limitIp] {
- j.addAllowedIp(ip)
- }
- }
- }
- }
- jsonIps, err := json.Marshal(ips) // marshal the possibly truncated list of IPs
- checkError(err)
- inboundClientIps.ClientEmail = clientEmail
- inboundClientIps.Ips = string(jsonIps)
- logger.Debug("Allowed IPs: ", ips)
- db := database.GetDB()
- err = db.Save(inboundClientIps).Error
- if err != nil {
- return err
- }
- return nil
- }
- func (j *CheckClientIpJob) setAllowedIps(ips []string) {
- j.mutex.Lock()
- defer j.mutex.Unlock()
- j.AllowedIps = ips
- }
- func (j *CheckClientIpJob) addAllowedIp(ip string) {
- j.mutex.Lock()
- defer j.mutex.Unlock()
- j.AllowedIps = append(j.AllowedIps, ip)
- }
- func (j *CheckClientIpJob) getAllowedIps() []string {
- j.mutex.Lock()
- defer j.mutex.Unlock()
- return j.AllowedIps
- }
- func DisableInbound(id int) error {
- db := database.GetDB()
- result := db.Model(model.Inbound{}).
- Where("id = ? and enable = ?", id, true).
- Update("enable", false)
- err := result.Error
- logger.Warning("disable inbound with id:", id)
- if err == nil {
- job.xrayService.SetToNeedRestart()
- }
- return err
- }
- func GetInboundByEmail(clientEmail string) (*model.Inbound, error) {
- db := database.GetDB()
- var inbounds *model.Inbound
- err := db.Model(model.Inbound{}).Where("settings LIKE ?", "%"+clientEmail+"%").Find(&inbounds).Error
- if err != nil {
- return nil, err
- }
- return inbounds, nil
- }
- func LimitDevice() {
- localIp, err := LocalIP()
- checkError(err)
- c := cmd.NewCmd("bash", "-c", "ss --tcp | grep -E '"+IPsToRegex(localIp)+"'| awk '{if($1==\"ESTAB\") print $4,$5;}'", "| sort | uniq -c | sort -nr | head")
- <-c.Start()
- if len(c.Status().Stdout) > 0 {
- ipRegx, _ := regexp.Compile(`[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+`)
- portRegx, _ := regexp.Compile(`(?:(:))([0-9]..[^.][0-9]+)`)
- for _, row := range c.Status().Stdout {
- data := strings.Split(row, " ")
- destIp, destPort, srcIp, srcPort := "", "", "", ""
- destIp = string(ipRegx.FindString(data[0]))
- destPort = portRegx.FindString(data[0])
- destPort = strings.Replace(destPort, ":", "", -1)
- srcIp = string(ipRegx.FindString(data[1]))
- srcPort = portRegx.FindString(data[1])
- srcPort = strings.Replace(srcPort, ":", "", -1)
- if contains(AllowedIps, srcIp) {
- dropCmd := cmd.NewCmd("bash", "-c", "ss -K dport = "+srcPort)
- dropCmd.Start()
- logger.Debug("request droped : ", srcIp, srcPort, "to", destIp, destPort)
- }
- }
- }
- }
- func LocalIP() ([]string, error) {
- // get machine ips
- ifaces, err := net.Interfaces()
- ips := []string{}
- if err != nil {
- return ips, err
- }
- for _, i := range ifaces {
- addrs, err := i.Addrs()
- if err != nil {
- return ips, err
- }
- for _, addr := range addrs {
- var ip net.IP
- switch v := addr.(type) {
- case *net.IPNet:
- ip = v.IP
- case *net.IPAddr:
- ip = v.IP
- }
- ips = append(ips, ip.String())
- }
- }
- logger.Debug("System IPs : ", ips)
- return ips, nil
- }
- func IPsToRegex(ips []string) string {
- regx := ""
- for _, ip := range ips {
- regx += "(" + strings.Replace(ip, ".", "\\.", -1) + ")"
- }
- regx = "(" + strings.Replace(regx, ")(", ")|(.", -1) + ")"
- return regx
- }
- func schedule(LimitDevice func(), delay time.Duration) chan bool {
- stop := make(chan bool)
- go func() {
- for {
- LimitDevice()
- select {
- case <-time.After(delay):
- case <-stop:
- return
- }
- }
- }()
- return stop
- }
|