123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651 |
- package waf
- import (
- "context"
- "encoding/json"
- "fmt"
- v1 "github.com/go-nunu/nunu-layout-advanced/api/v1"
- "github.com/go-nunu/nunu-layout-advanced/internal/model"
- "github.com/go-nunu/nunu-layout-advanced/internal/repository"
- flexCdnRep "github.com/go-nunu/nunu-layout-advanced/internal/repository/api/flexCdn"
- "github.com/go-nunu/nunu-layout-advanced/internal/repository/api/waf"
- "github.com/go-nunu/nunu-layout-advanced/internal/service"
- "github.com/go-nunu/nunu-layout-advanced/internal/service/api/flexCdn"
- "github.com/go-nunu/nunu-layout-advanced/pkg/rabbitmq"
- amqp "github.com/rabbitmq/amqp091-go"
- "go.uber.org/zap"
- "golang.org/x/net/idna"
- "golang.org/x/net/publicsuffix"
- "golang.org/x/sync/errgroup"
- "net"
- "slices"
- "strconv"
- "strings"
- )
- type WafFormatterService interface {
- Require(ctx context.Context, req v1.GlobalRequire) (RequireResponse, error)
- validateWafPortCount(ctx context.Context, hostId int) error
- validateWafDomainCount(ctx context.Context, req v1.GlobalRequire) error
- ConvertToWildcardDomain(ctx context.Context, domain string) (string, error)
- AppendWafIp(ctx context.Context, req []string, returnSourceIp string) ([]v1.IpInfo, error)
- WashIps(ctx context.Context, req []string) ([]string, error)
- PublishIpWhitelistTask(ips []string, action string, returnSourceIp string, color string)
- PublishDomainWhitelistTask(domain, ip, action string)
- findIpDifferences(oldIps, newIps []string) ([]string, []string)
- WashDeleteWafIp(ctx context.Context, backendList []string) ([]string, error)
- WashEditWafIp(ctx context.Context, newBackendList []string, oldBackendList []string) ([]string, []string, error)
- //cdn添加网站
- AddOrigin(ctx context.Context, req v1.WebJson) (int64, error)
- // 获取ip数量等于1的源站过白ip
- WashDelIps(ctx context.Context, ips []string) ([]string, error)
- // 判断域名是否是IDN,如果是,转换为 Punycode
- ConvertToPunycodeIfIDN(ctx context.Context, domain string) (isIDN bool, punycodeDomain string, err error)
- // 验证端口重复
- VerifyPort(ctx context.Context,protocol string, id int64, port string,hostId int64,domain string) error
- // 获取节点集群id
- GetNodeClusterId(ctx context.Context,hostId int64) (int64, error)
- }
- func NewWafFormatterService(
- service *service.Service,
- globalRep waf.GlobalLimitRepository,
- hostRep repository.HostRepository,
- required service.RequiredService,
- parser service.ParserService,
- tcpforwardingRep waf.TcpforwardingRepository,
- udpForWardingRep waf.UdpForWardingRepository,
- webForwardingRep waf.WebForwardingRepository,
- mq *rabbitmq.RabbitMQ,
- host service.HostService,
- gatewayIpRep waf.GatewayipRepository,
- gatewayIp GatewayipService,
- cdn flexCdn.CdnService,
- cdnRep flexCdnRep.CdnRepository,
- ) WafFormatterService {
- return &wafFormatterService{
- Service: service,
- globalRep: globalRep,
- hostRep: hostRep,
- required: required,
- parser: parser,
- tcpforwardingRep: tcpforwardingRep,
- udpForWardingRep: udpForWardingRep,
- webForwardingRep: webForwardingRep,
- host: host,
- mq: mq,
- gatewayIpRep: gatewayIpRep,
- cdn: cdn,
- gatewayIp : gatewayIp,
- cdnRep: cdnRep,
- }
- }
- type wafFormatterService struct {
- *service.Service
- globalRep waf.GlobalLimitRepository
- hostRep repository.HostRepository
- required service.RequiredService
- parser service.ParserService
- tcpforwardingRep waf.TcpforwardingRepository
- udpForWardingRep waf.UdpForWardingRepository
- webForwardingRep waf.WebForwardingRepository
- host service.HostService
- mq *rabbitmq.RabbitMQ
- gatewayIpRep waf.GatewayipRepository
- cdn flexCdn.CdnService
- gatewayIp GatewayipService
- cdnRep flexCdnRep.CdnRepository
- }
- type RequireResponse struct {
- model.GlobalLimit `json:"globalLimit" form:"globalLimit"`
- GatewayIps []string `json:"ips" form:"ips"`
- Tag string `json:"tag" form:"tag"`
- }
- func (s *wafFormatterService) Require(ctx context.Context, req v1.GlobalRequire) (RequireResponse, error) {
- var res RequireResponse
- // 获取全局配置信息
- globalLimit, err := s.globalRep.GetGlobalLimitByHostId(ctx, int64(req.HostId))
- if err != nil {
- return RequireResponse{}, err
- }
- if globalLimit != nil {
- res.GlobalLimit = *globalLimit
- }
- // 获取主机名
- domain, err := s.hostRep.GetDomainById(ctx, req.HostId)
- if err != nil {
- return RequireResponse{}, err
- }
- res.Tag = strconv.Itoa(req.Uid) + "_" + strconv.Itoa(req.HostId) + "_" + domain + "_" + req.Comment
- res.GatewayIps, err = s.gatewayIp.GetGatewayipOnlyIpByHostIdAll(ctx, int64(req.HostId), int64(req.Uid))
- if err != nil {
- return RequireResponse{}, err
- }
- if res.GatewayIps == nil {
- return RequireResponse{}, fmt.Errorf("请先配置实例")
- }
- // 检查是否过期
- expired, err := s.host.CheckExpired(ctx, int64(req.Uid), int64(req.HostId))
- if err != nil {
- return RequireResponse{}, err
- }
- if !expired {
- return RequireResponse{}, fmt.Errorf("实例已过期")
- }
- return res, nil
- }
- func (s *wafFormatterService) validateWafPortCount(ctx context.Context, hostId int) error {
- congfig, err := s.host.GetGlobalLimitConfig(ctx, hostId)
- if err != nil {
- return err
- }
- tcpCount, err := s.tcpforwardingRep.GetTcpForwardingPortCountByHostId(ctx, hostId)
- if err != nil {
- return err
- }
- udpCount, err := s.udpForWardingRep.GetUdpForwardingPortCountByHostId(ctx, hostId)
- if err != nil {
- return err
- }
- webCount, err := s.webForwardingRep.GetWebForwardingPortCountByHostId(ctx, hostId)
- if err != nil {
- return err
- }
- if int64(congfig.PortCount) > tcpCount+udpCount+webCount {
- return nil
- }
- return fmt.Errorf("端口数量超出套餐限制,已配置%d个端口,套餐限制为%d个端口", tcpCount+udpCount+webCount, congfig.PortCount)
- }
- func (s *wafFormatterService) validateWafDomainCount(ctx context.Context, req v1.GlobalRequire) error {
- congfig, err := s.host.GetGlobalLimitConfig(ctx, req.HostId)
- if err != nil {
- return err
- }
- domainCount, domainSlice, err := s.webForwardingRep.GetWebForwardingDomainCountByHostId(ctx, req.HostId)
- if err != nil {
- return err
- }
- if req.Domain != "" {
- if !slices.Contains(domainSlice, req.Domain) {
- domainCount += 1
- if domainCount > int64(congfig.DomainCount) {
- return fmt.Errorf("域名数量已达到上限,已配置%d个域名,套餐限制为%d个域名", domainCount, congfig.DomainCount)
- }
- }
- }
- return nil
- }
- func (s *wafFormatterService) ConvertToWildcardDomain(ctx context.Context, domain string) (string, error) {
- // 1. 使用 EffectiveTLDPlusOne 获取可注册域名部分。
- // 例如,对于 "www.google.com",这将返回 "google.com"。
- // 对于 "a.b.c.tokyo.jp",这将返回 "c.tokyo.jp"。
- if domain == "" {
- return "", nil
- }
- registrableDomain, err := publicsuffix.EffectiveTLDPlusOne(domain)
- if err != nil {
- s.Logger.Error("无效的域名", zap.String("domain", domain), zap.Error(err))
- // 如果域名无效(如 IP 地址、localhost),则返回错误。
- return "", nil
- }
- // 2. 比较原始域名和可注册域名。
- // 如果它们不相等,说明原始域名包含子域名。
- if domain != registrableDomain {
- // 3. 如果存在子域名,则用 "*." 加上可注册域名来构造通配符域名。
- return registrableDomain, nil
- }
- // 4. 如果原始域名和可注册域名相同(例如,输入就是 "google.com"),
- // 则说明没有子域名可替换,直接返回原始域名。
- return domain, nil
- }
- func (s *wafFormatterService) AppendWafIp(ctx context.Context, req []string, returnSourceIp string) ([]v1.IpInfo, error) {
- var ips []v1.IpInfo
- for _, v := range req {
- ips = append(ips, v1.IpInfo{
- FType: "0",
- FStartIp: v,
- FEndIp: v,
- FRemark: "宁波高防IP过白",
- FServerIp: returnSourceIp,
- })
- }
- return ips, nil
- }
- func (s *wafFormatterService) AppendWafIpByRemovePort(ctx context.Context, req []string) ([]v1.IpInfo, error) {
- var ips []v1.IpInfo
- for _, v := range req {
- ip, _, err := net.SplitHostPort(v)
- if err != nil {
- return nil, err
- }
- ips = append(ips, v1.IpInfo{
- FType: "0",
- FStartIp: ip,
- FEndIp: ip,
- FRemark: "宁波高防IP过白",
- FServerIp: "",
- })
- }
- return ips, nil
- }
- func (s *wafFormatterService) WashIps(ctx context.Context, req []string) ([]string, error) {
- var res []string
- for _, v := range req {
- res = append(res, v)
- }
- return res, nil
- }
- // publishDomainWhitelistTask is a helper function to publish domain whitelist tasks to RabbitMQ.
- // It can handle different actions like "add" or "del".
- func (s *wafFormatterService) PublishDomainWhitelistTask(domain, ip, action string) {
- // Define message payload, including the action
- type domainTaskPayload struct {
- Domain string `json:"domain"`
- Ip string `json:"ip"`
- Action string `json:"action"`
- }
- payload := domainTaskPayload{
- Domain: domain,
- Ip: ip,
- Action: action,
- }
- // Serialize the message
- msgBody, err := json.Marshal(payload)
- if err != nil {
- s.Logger.Error("Failed to serialize domain whitelist task message", zap.Error(err), zap.String("domain", domain), zap.String("ip", ip), zap.String("action", action))
- return
- }
- // Get task configuration
- taskCfg, ok := s.mq.GetTaskConfig("domain_whitelist")
- if !ok {
- s.Logger.Error("Failed to get 'domain_whitelist' task configuration")
- return
- }
- // Construct the routing key dynamically based on the action
- routingKey := fmt.Sprintf("whitelist.domain.%s", action)
- // Construct the amqp.Publishing message
- publishingMsg := amqp.Publishing{
- ContentType: "application/json",
- Body: msgBody,
- DeliveryMode: amqp.Persistent, // Persistent message
- }
- // Publish the message
- err = s.mq.PublishWithCh(taskCfg.Exchange, routingKey, publishingMsg)
- if err != nil {
- s.Logger.Error("发布 域名 白名单任务到 MQ 失败", zap.Error(err), zap.String("domain", domain), zap.String("action", action))
- } else {
- s.Logger.Info("成功将 域名 白名单任务发布到 MQ", zap.String("domain", domain), zap.String("action", action))
- }
- }
- func (s *wafFormatterService) PublishIpWhitelistTask(ips []string, action string, returnSourceIp string, color string) {
- // Define message payload, including the action
- type ipTaskPayload struct {
- Ips []string `json:"ips"`
- Action string `json:"action"`
- ReturnSourceIp string `json:"return_source_ip"`
- Color string `json:"color"`
- }
- payload := ipTaskPayload{
- Ips: ips,
- Action: action,
- ReturnSourceIp: returnSourceIp,
- Color: color,
- }
- // Serialize the message
- msgBody, err := json.Marshal(payload)
- if err != nil {
- s.Logger.Error("序列化 IP 白名单任务消息失败", zap.Error(err), zap.Any("IPs", ips), zap.String("action", action), zap.String("color", color))
- return
- }
- // Get task configuration
- taskCfg, ok := s.mq.GetTaskConfig("ip_white")
- if !ok {
- s.Logger.Error("无法获取“ip_white”任务配置")
- return
- }
- // Construct the routing key dynamically based on the action
- routingKey := fmt.Sprintf("task.ip_white.%s", action)
- // Construct the amqp.Publishing message
- publishingMsg := amqp.Publishing{
- ContentType: "application/json",
- Body: msgBody,
- DeliveryMode: amqp.Persistent, // Persistent message
- }
- // Publish the message
- err = s.mq.PublishWithCh(taskCfg.Exchange, routingKey, publishingMsg)
- if err != nil {
- s.Logger.Error("发布 IP 白名单任务到 MQ 失败", zap.Error(err), zap.String("action", action), zap.String("color", color))
- } else {
- s.Logger.Info("成功将 IP 白名单任务发布到 MQ", zap.String("action", action), zap.String("color", color))
- }
- }
- func (s *wafFormatterService) findIpDifferences(oldIps, newIps []string) ([]string, []string) {
- // 使用 map 实现 set,用于快速查找
- oldIpsSet := make(map[string]struct{}, len(oldIps))
- for _, ip := range oldIps {
- oldIpsSet[ip] = struct{}{}
- }
- newIpsSet := make(map[string]struct{}, len(newIps))
- for _, ip := range newIps {
- newIpsSet[ip] = struct{}{}
- }
- var addedIps []string
- // 查找新增的 IP:存在于 newIpsSet 但不存在于 oldIpsSet
- for ip := range newIpsSet {
- if _, found := oldIpsSet[ip]; !found {
- addedIps = append(addedIps, ip)
- }
- }
- var removedIps []string
- // 查找移除的 IP:存在于 oldIpsSet 但不存在于 newIpsSet
- for ip := range oldIpsSet {
- if _, found := newIpsSet[ip]; !found {
- removedIps = append(removedIps, ip)
- }
- }
- return addedIps, removedIps
- }
- func (s *wafFormatterService) WashDeleteWafIp(ctx context.Context, backendList []string) ([]string, error) {
- var res []string
- for _, v := range backendList {
- ip, _, err := net.SplitHostPort(v)
- if err != nil {
- return nil, err
- }
- res = append(res, ip)
- }
- return res, nil
- }
- func (s *wafFormatterService) WashEditWafIp(ctx context.Context, newBackendList []string, oldBackendList []string) ([]string, []string, error) {
- var oldIps []string
- var newIps []string
- for _, v := range oldBackendList {
- ip, _, err := net.SplitHostPort(v)
- if err != nil {
- return nil, nil, err
- }
- oldIps = append(oldIps, ip)
- }
- if newBackendList != nil {
- for _, v := range newBackendList {
- ip, _, err := net.SplitHostPort(v)
- if err != nil {
- return nil, nil, err
- }
- newIps = append(newIps, ip)
- }
- }
- addedIps, removedIps := s.findIpDifferences(oldIps, newIps)
- return addedIps, removedIps, nil
- }
- func (s *wafFormatterService) AddOrigin(ctx context.Context, req v1.WebJson) (int64, error) {
- ip, port, err := net.SplitHostPort(req.BackendList)
- if err != nil {
- return 0, fmt.Errorf("无效的后端地址: %s", err)
- }
- addr := v1.Addr{
- Protocol: req.ApiType,
- Host: ip,
- Port: port,
- }
- id, err := s.cdn.CreateOrigin(ctx, v1.Origin{
- Addr: addr,
- Weight: 10,
- Description: req.Comment,
- Host: req.Host,
- IsOn: true,
- TlsSecurityVerifyMode: "auto",
- })
- if err != nil {
- return 0, err
- }
- return id, nil
- }
- // 获取ip数量等于1的源站过白ip
- func (s *wafFormatterService) WashDelIps(ctx context.Context, ips []string) ([]string, error) {
- var udpIpCounts, tcpIpCounts, webIpCounts []v1.IpCountResult
- g, gCtx := errgroup.WithContext(ctx)
- // 1. 查询 IP 的数量
- g.Go(func() error {
- var err error
- udpIpCounts, err = s.udpForWardingRep.GetIpCountByIp(gCtx, ips)
- if err != nil {
- return fmt.Errorf("in udp repository: %w", err)
- }
- return nil
- })
- g.Go(func() error {
- var err error
- tcpIpCounts, err = s.tcpforwardingRep.GetIpCountByIp(gCtx, ips)
- if err != nil {
- return fmt.Errorf("in tcp repository: %w", err)
- }
- return nil
- })
- g.Go(func() error {
- var err error
- webIpCounts, err = s.webForwardingRep.GetIpCountByIp(gCtx, ips)
- if err != nil {
- return fmt.Errorf("in web repository: %w", err)
- }
- return nil
- })
- if err := g.Wait(); err != nil {
- return nil, err
- }
- // 2. 汇总所有计数结果
- totalCountMap := make(map[string]int)
- // 将多个 for 循环合并到一个函数中
- accumulateCounts := func(counts []v1.IpCountResult) {
- for _, result := range counts {
- totalCountMap[result.Ip] += result.Count
- }
- }
- accumulateCounts(udpIpCounts)
- accumulateCounts(tcpIpCounts)
- accumulateCounts(webIpCounts)
- // 3. 筛选出总引用数等于 1 的 IP
- var ipsToDelist []string
- for _, ip := range ips {
- if totalCountMap[ip] == 1 {
- ipsToDelist = append(ipsToDelist, ip)
- }
- }
- return ipsToDelist, nil
- }
- // 判断域名是否为 中文域名,如果是,转换为 Punycode
- func (s *wafFormatterService) ConvertToPunycodeIfIDN(ctx context.Context, domain string) (isIDN bool, punycodeDomain string, err error) {
- // 使用 idna.ToASCII 将域名转换为 Punycode。
- // 这个函数同时会根据 IDNA 规范验证域名的合法性。
- punycodeDomain, err = idna.ToASCII(domain)
- if err != nil {
- // 如果转换出错,说明域名格式不符合 IDNA 标准。
- return false, "", fmt.Errorf("域名 '%s' 格式无效: %v", domain, err)
- }
- // 判断是否为 IDN 的关键:
- // 比较转换后的 Punycode 域名和原始域名(忽略大小写)。
- // 如果不相等,说明原始域名包含非 ASCII 字符,即为 IDN。
- isIDN = !strings.EqualFold(domain, punycodeDomain)
- return isIDN, punycodeDomain, nil
- }
- // 验证端口重复
- func (s *wafFormatterService) VerifyPort(ctx context.Context,protocol string, id int64, port string,hostId int64,domain string) error {
- switch protocol {
- case "http", "https":
- return s.verifyWebForwardingPort(ctx, protocol, id, port, hostId, domain)
- case "tcp":
- return s.verifyTCPPort(ctx, hostId, port)
- case "udp":
- return s.verifyUDPPort(ctx, hostId, port)
- default:
- return fmt.Errorf("不支持的协议类型:%s", protocol)
- }
- }
- // verifyWebForwardingPort 专门处理 HTTP 和 HTTPS 的端口校验逻辑。
- func (s *wafFormatterService) verifyWebForwardingPort(ctx context.Context, protocol string, id int64, port string, hostId int64, domain string) error {
- errPortInUse := fmt.Errorf("端口 %s 已经被使用,无法添加", port)
- // 1. 检查是否存在 TCP 转发规则占用该端口
- tcpCount, err := s.tcpforwardingRep.GetPortCount(ctx, hostId, port)
- if err != nil {
- return err
- }
- if tcpCount > 0 {
- return errPortInUse
- }
- // 2. 获取该主机和端口上所有已存在的 Web 转发规则
- existingRules, err := s.webForwardingRep.GetDomainByHostIdPort(ctx, hostId, port)
- if err != nil {
- return err
- }
- // 如果没有任何规则,则该端口可用,直接返回
- if len(existingRules) == 0 {
- return nil
- }
- // 3. 核心逻辑:检查协议冲突和域名冲突
- isNewRuleHTTPS := 0
- if protocol == "https" {
- isNewRuleHTTPS = 1
- }
- for _, rule := range existingRules {
- // 关键检查:HTTP 和 HTTPS 不能在同一个端口上共存。
- if rule.IsHttps != isNewRuleHTTPS {
- return errPortInUse
- }
- // 如果现有规则是“全匹配”规则(空域名或IP),并且不是我们正在编辑的规则,则冲突。
- isExistingRuleCatchAll := rule.Domain == "" || net.ParseIP(rule.Domain) != nil
- if isExistingRuleCatchAll && int64(rule.Id) != id {
- return errPortInUse
- }
- }
- // 4. 反向检查:如果要添加/修改的规则是“全匹配”规则,则该端口上不能有其他规则。
- isNewRuleCatchAll := domain == "" || net.ParseIP(domain) != nil
- if isNewRuleCatchAll {
- // 如果已存在规则数大于1,则必然冲突。
- if len(existingRules) > 1 {
- return errPortInUse
- }
- // 如果只存在1条规则,但其ID和当前要修改的ID不同,也冲突。
- // (此场景意味着你在为一个已有其他规则的端口添加一条新的“全匹配”规则)
- if len(existingRules) == 1 && int64(existingRules[0].Id) != id {
- return errPortInUse
- }
- }
- return nil
- }
- // verifyTCPPort 专门处理 TCP 的端口校验逻辑。
- func (s *wafFormatterService) verifyTCPPort(ctx context.Context, hostId int64, port string) error {
- errPortInUse := fmt.Errorf("端口 %s 已经被使用,无法添加", port)
- // TCP 规则不能与已有的 TCP 规则共存
- tcpCount, err := s.tcpforwardingRep.GetPortCount(ctx, hostId, port)
- if err != nil {
- return err
- }
- if tcpCount > 0 {
- return errPortInUse
- }
- // TCP 规则也不能与已有的 Web 转发(HTTP/HTTPS)规则共存
- webRules, err := s.webForwardingRep.GetDomainByHostIdPort(ctx, hostId, port)
- if err != nil {
- return err
- }
- if len(webRules) > 0 {
- return errPortInUse
- }
- return nil
- }
- // verifyUDPPort 专门处理 UDP 的端口校验逻辑。
- func (s *wafFormatterService) verifyUDPPort(ctx context.Context, hostId int64, port string) error {
- errPortInUse := fmt.Errorf("端口 %s 已经被使用,无法添加", port)
- // UDP 规则不能与已有的 UDP 规则共存
- count, err := s.udpForWardingRep.GetPortCount(ctx, hostId, port)
- if err != nil {
- return err
- }
- if count > 0 {
- return errPortInUse
- }
- return nil
- }
- // 获取节点集群id
- func (s *wafFormatterService) GetNodeClusterId(ctx context.Context,hostId int64) (int64, error) {
- config, err := s.host.GetGlobalLimitConfig(ctx, int(hostId))
- if err != nil {
- return 0, err
- }
- nodeClusterId, err := s.cdnRep.GetNodeClusterId(ctx, config.NodeArea)
- if err != nil {
- return 0, err
- }
- if nodeClusterId == 0 {
- return 0, fmt.Errorf("节点集群获取失败")
- }
- return nodeClusterId, nil
- }
|