2023-03-16 20:05:39 +01:00
|
|
|
package limits
|
|
|
|
|
|
|
|
import (
|
2023-03-21 19:06:23 +01:00
|
|
|
"github.com/jmoiron/sqlx"
|
2023-03-27 21:29:25 +02:00
|
|
|
"github.com/openziti/zrok/controller/emailUi"
|
2023-03-16 20:05:39 +01:00
|
|
|
"github.com/openziti/zrok/controller/metrics"
|
|
|
|
"github.com/openziti/zrok/controller/store"
|
|
|
|
"github.com/openziti/zrok/controller/zrokEdgeSdk"
|
2024-05-23 20:08:14 +02:00
|
|
|
"github.com/openziti/zrok/sdk/golang/sdk"
|
2023-03-21 19:06:23 +01:00
|
|
|
"github.com/pkg/errors"
|
2023-03-16 20:05:39 +01:00
|
|
|
"github.com/sirupsen/logrus"
|
2023-03-28 20:39:42 +02:00
|
|
|
"reflect"
|
2023-03-17 18:13:33 +01:00
|
|
|
"time"
|
2023-03-16 20:05:39 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type Agent struct {
|
2024-06-03 19:37:32 +02:00
|
|
|
cfg *Config
|
|
|
|
ifx *influxReader
|
|
|
|
zCfg *zrokEdgeSdk.Config
|
|
|
|
str *store.Store
|
|
|
|
queue chan *metrics.Usage
|
|
|
|
warningActions []AccountAction
|
|
|
|
limitActions []AccountAction
|
|
|
|
relaxActions []AccountAction
|
|
|
|
close chan struct{}
|
|
|
|
join chan struct{}
|
2023-03-16 20:05:39 +01:00
|
|
|
}
|
|
|
|
|
2023-03-27 21:29:25 +02:00
|
|
|
func NewAgent(cfg *Config, ifxCfg *metrics.InfluxConfig, zCfg *zrokEdgeSdk.Config, emailCfg *emailUi.Config, str *store.Store) (*Agent, error) {
|
2023-03-27 17:34:29 +02:00
|
|
|
a := &Agent{
|
2024-06-03 19:37:32 +02:00
|
|
|
cfg: cfg,
|
|
|
|
ifx: newInfluxReader(ifxCfg),
|
|
|
|
zCfg: zCfg,
|
|
|
|
str: str,
|
|
|
|
queue: make(chan *metrics.Usage, 1024),
|
2024-06-04 16:33:39 +02:00
|
|
|
warningActions: []AccountAction{newWarningAction(emailCfg, str)},
|
|
|
|
limitActions: []AccountAction{newLimitAction(str, zCfg)},
|
|
|
|
relaxActions: []AccountAction{newRelaxAction(str, zCfg)},
|
2024-06-03 19:37:32 +02:00
|
|
|
close: make(chan struct{}),
|
|
|
|
join: make(chan struct{}),
|
2023-03-27 17:34:29 +02:00
|
|
|
}
|
|
|
|
return a, nil
|
2023-03-16 20:05:39 +01:00
|
|
|
}
|
|
|
|
|
2023-03-17 18:13:33 +01:00
|
|
|
func (a *Agent) Start() {
|
|
|
|
go a.run()
|
2023-03-16 20:05:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (a *Agent) Stop() {
|
2023-03-17 18:13:33 +01:00
|
|
|
close(a.close)
|
|
|
|
<-a.join
|
2023-03-16 20:05:39 +01:00
|
|
|
}
|
|
|
|
|
2023-03-21 21:34:45 +01:00
|
|
|
func (a *Agent) CanCreateEnvironment(acctId int, trx *sqlx.Tx) (bool, error) {
|
2023-03-29 19:29:12 +02:00
|
|
|
if a.cfg.Enforcing {
|
2024-05-15 21:48:42 +02:00
|
|
|
if err := a.str.LimitCheckLock(acctId, trx); err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
2024-06-04 22:27:05 +02:00
|
|
|
|
|
|
|
alcs, err := a.str.FindAppliedLimitClassesForAccount(acctId, trx)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
maxEnvironments := a.cfg.Environments
|
|
|
|
var lcId *int
|
|
|
|
for _, alc := range alcs {
|
|
|
|
if alc.ShareMode == "" && alc.BackendMode == "" && alc.Environments > maxEnvironments {
|
|
|
|
maxEnvironments = alc.Environments
|
|
|
|
lcId = &alc.Id
|
2023-04-05 19:57:22 +02:00
|
|
|
}
|
2024-06-04 22:27:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if lcId == nil {
|
|
|
|
if empty, err := a.str.IsBandwidthLimitJournalEmptyForGlobal(acctId, trx); err == nil && !empty {
|
|
|
|
lj, err := a.str.FindLatestBandwidthLimitJournalForGlobal(acctId, trx)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
if lj.Action == store.LimitLimitAction {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if empty, err := a.str.IsBandwidthLimitJournalEmptyForLimitClass(acctId, *lcId, trx); err == nil && !empty {
|
|
|
|
lj, err := a.str.FindLatestBandwidthLimitJournalForLimitClass(acctId, *lcId, trx)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
if lj.Action == store.LimitLimitAction {
|
|
|
|
return false, nil
|
|
|
|
}
|
2023-04-05 19:57:22 +02:00
|
|
|
}
|
2023-03-21 21:34:45 +01:00
|
|
|
}
|
2023-03-29 19:29:12 +02:00
|
|
|
|
2024-06-04 22:27:05 +02:00
|
|
|
if maxEnvironments > Unlimited {
|
2023-03-29 19:29:12 +02:00
|
|
|
envs, err := a.str.FindEnvironmentsForAccount(acctId, trx)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
if len(envs)+1 > a.cfg.Environments {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
}
|
2023-03-21 21:34:45 +01:00
|
|
|
}
|
2024-06-04 22:27:05 +02:00
|
|
|
|
2023-03-21 21:34:45 +01:00
|
|
|
return true, nil
|
|
|
|
}
|
2023-03-21 21:18:17 +01:00
|
|
|
|
2024-05-30 20:27:39 +02:00
|
|
|
func (a *Agent) CanCreateShare(acctId, envId int, reserved, uniqueName bool, _ sdk.ShareMode, _ sdk.BackendMode, trx *sqlx.Tx) (bool, error) {
|
2023-03-29 19:29:12 +02:00
|
|
|
if a.cfg.Enforcing {
|
2024-05-15 21:48:42 +02:00
|
|
|
if err := a.str.LimitCheckLock(acctId, trx); err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
2024-05-31 20:26:29 +02:00
|
|
|
if empty, err := a.str.IsBandwidthLimitJournalEmpty(acctId, trx); err == nil && !empty {
|
|
|
|
alj, err := a.str.FindLatestBandwidthLimitJournal(acctId, trx)
|
2023-03-29 19:29:12 +02:00
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
2024-05-14 19:24:48 +02:00
|
|
|
if alj.Action == store.LimitLimitAction {
|
2023-03-29 19:29:12 +02:00
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
} else if err != nil {
|
2023-03-21 21:18:17 +01:00
|
|
|
return false, err
|
|
|
|
}
|
2023-03-29 19:29:12 +02:00
|
|
|
|
2024-05-22 22:21:52 +02:00
|
|
|
if a.cfg.Shares > Unlimited || (reserved && a.cfg.ReservedShares > Unlimited) || (reserved && uniqueName && a.cfg.UniqueNames > Unlimited) {
|
2023-03-29 19:29:12 +02:00
|
|
|
envs, err := a.str.FindEnvironmentsForAccount(acctId, trx)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
total := 0
|
2024-05-22 22:21:52 +02:00
|
|
|
reserveds := 0
|
|
|
|
uniqueNames := 0
|
2023-03-29 19:29:12 +02:00
|
|
|
for i := range envs {
|
|
|
|
shrs, err := a.str.FindSharesForEnvironment(envs[i].Id, trx)
|
|
|
|
if err != nil {
|
|
|
|
return false, errors.Wrapf(err, "unable to find shares for environment '%v'", envs[i].ZId)
|
|
|
|
}
|
|
|
|
total += len(shrs)
|
2024-05-22 22:21:52 +02:00
|
|
|
for _, shr := range shrs {
|
|
|
|
if shr.Reserved {
|
|
|
|
reserveds++
|
|
|
|
}
|
|
|
|
if shr.UniqueName {
|
|
|
|
uniqueNames++
|
|
|
|
}
|
|
|
|
}
|
2023-03-29 19:29:12 +02:00
|
|
|
if total+1 > a.cfg.Shares {
|
2024-05-23 17:50:55 +02:00
|
|
|
logrus.Debugf("account '%d', environment '%d' over shares limit '%d'", acctId, envId, a.cfg.Shares)
|
2023-03-29 19:29:12 +02:00
|
|
|
return false, nil
|
|
|
|
}
|
2024-05-22 22:21:52 +02:00
|
|
|
if reserved && reserveds+1 > a.cfg.ReservedShares {
|
2024-05-23 17:50:55 +02:00
|
|
|
logrus.Debugf("account '%v', environment '%d' over reserved shares limit '%d'", acctId, envId, a.cfg.ReservedShares)
|
2024-05-22 22:21:52 +02:00
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
if reserved && uniqueName && uniqueNames+1 > a.cfg.UniqueNames {
|
2024-05-23 17:50:55 +02:00
|
|
|
logrus.Debugf("account '%v', environment '%d' over unique names limit '%d'", acctId, envId, a.cfg.UniqueNames)
|
2024-05-22 22:21:52 +02:00
|
|
|
return false, nil
|
|
|
|
}
|
2023-03-29 19:29:12 +02:00
|
|
|
logrus.Infof("total = %d", total)
|
|
|
|
}
|
2023-03-21 21:18:17 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
2023-06-06 17:29:22 +02:00
|
|
|
func (a *Agent) CanAccessShare(shrId int, trx *sqlx.Tx) (bool, error) {
|
|
|
|
if a.cfg.Enforcing {
|
|
|
|
shr, err := a.str.GetShare(shrId, trx)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
2024-05-31 20:26:29 +02:00
|
|
|
if empty, err := a.str.IsBandwidthLimitJournalEmpty(shr.Id, trx); err == nil && !empty {
|
|
|
|
slj, err := a.str.FindLatestBandwidthLimitJournal(shr.Id, trx)
|
2023-06-06 17:29:22 +02:00
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
2024-05-14 19:24:48 +02:00
|
|
|
if slj.Action == store.LimitLimitAction {
|
2023-06-06 17:29:22 +02:00
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
} else if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
}
|
2023-06-06 16:54:57 +02:00
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
2023-03-16 20:05:39 +01:00
|
|
|
func (a *Agent) Handle(u *metrics.Usage) error {
|
2023-03-21 18:05:22 +01:00
|
|
|
logrus.Debugf("handling: %v", u)
|
|
|
|
a.queue <- u
|
2023-03-16 20:05:39 +01:00
|
|
|
return nil
|
|
|
|
}
|
2023-03-17 18:13:33 +01:00
|
|
|
|
|
|
|
func (a *Agent) run() {
|
|
|
|
logrus.Info("started")
|
|
|
|
defer logrus.Info("stopped")
|
|
|
|
|
2023-03-29 23:03:42 +02:00
|
|
|
lastCycle := time.Now()
|
2023-03-17 18:13:33 +01:00
|
|
|
mainLoop:
|
|
|
|
for {
|
|
|
|
select {
|
2023-03-21 18:05:22 +01:00
|
|
|
case usage := <-a.queue:
|
2023-06-16 19:18:46 +02:00
|
|
|
if usage.ShareToken != "" {
|
|
|
|
if err := a.enforce(usage); err != nil {
|
|
|
|
logrus.Errorf("error running enforcement: %v", err)
|
|
|
|
}
|
|
|
|
if time.Since(lastCycle) > a.cfg.Cycle {
|
|
|
|
if err := a.relax(); err != nil {
|
|
|
|
logrus.Errorf("error running relax cycle: %v", err)
|
|
|
|
}
|
|
|
|
lastCycle = time.Now()
|
2023-03-29 23:03:42 +02:00
|
|
|
}
|
2023-06-16 19:18:46 +02:00
|
|
|
} else {
|
2023-06-16 19:28:00 +02:00
|
|
|
logrus.Warnf("not enforcing for usage with no share token: %v", usage.String())
|
2023-03-29 23:03:42 +02:00
|
|
|
}
|
2023-03-21 18:05:22 +01:00
|
|
|
|
2023-03-17 18:13:33 +01:00
|
|
|
case <-time.After(a.cfg.Cycle):
|
2023-03-23 20:13:59 +01:00
|
|
|
if err := a.relax(); err != nil {
|
|
|
|
logrus.Errorf("error running relax cycle: %v", err)
|
|
|
|
}
|
2023-03-29 23:03:42 +02:00
|
|
|
lastCycle = time.Now()
|
2023-03-17 18:13:33 +01:00
|
|
|
|
|
|
|
case <-a.close:
|
|
|
|
close(a.join)
|
|
|
|
break mainLoop
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-03-21 18:05:22 +01:00
|
|
|
|
2023-03-21 19:06:23 +01:00
|
|
|
func (a *Agent) enforce(u *metrics.Usage) error {
|
|
|
|
trx, err := a.str.Begin()
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "error starting transaction")
|
|
|
|
}
|
|
|
|
defer func() { _ = trx.Rollback() }()
|
|
|
|
|
2023-06-07 17:00:42 +02:00
|
|
|
acct, err := a.str.GetAccount(int(u.AccountId), trx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if acct.Limitless {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-06-04 20:06:44 +02:00
|
|
|
shr, err := a.str.FindShareWithTokenEvenIfDeleted(u.ShareToken, trx)
|
2024-05-31 22:06:42 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2024-06-04 20:06:44 +02:00
|
|
|
logrus.Debugf("share: '%v', shareMode: '%v', backendMode: '%v'", shr.Token, shr.ShareMode, shr.BackendMode)
|
|
|
|
|
|
|
|
alcs, err := a.str.FindAppliedLimitClassesForAccount(int(u.AccountId), trx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
exceededLc, rxBytes, txBytes, err := a.isOverLimitClass(u, alcs)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "error checking limit classes")
|
|
|
|
}
|
|
|
|
|
|
|
|
if exceededLc != nil {
|
|
|
|
enforced := false
|
|
|
|
var enforcedAt time.Time
|
|
|
|
|
|
|
|
if exceededLc.IsGlobal() {
|
|
|
|
if empty, err := a.str.IsBandwidthLimitJournalEmptyForGlobal(int(u.AccountId), trx); err == nil && !empty {
|
|
|
|
if latest, err := a.str.FindLatestBandwidthLimitJournalForGlobal(int(u.AccountId), trx); err == nil {
|
|
|
|
enforced = latest.Action == exceededLc.GetLimitAction()
|
2023-03-22 19:10:07 +01:00
|
|
|
enforcedAt = latest.UpdatedAt
|
|
|
|
}
|
|
|
|
}
|
2024-06-04 20:06:44 +02:00
|
|
|
} else {
|
|
|
|
if empty, err := a.str.IsBandwidthLimitJournalEmptyForLimitClass(int(u.AccountId), exceededLc.GetLimitClassId(), trx); err == nil && !empty {
|
|
|
|
if latest, err := a.str.FindLatestBandwidthLimitJournalForLimitClass(int(u.AccountId), exceededLc.GetLimitClassId(), trx); err == nil {
|
|
|
|
enforced = latest.Action == exceededLc.GetLimitAction()
|
|
|
|
enforcedAt = latest.UpdatedAt
|
2023-03-22 19:10:07 +01:00
|
|
|
}
|
2023-03-22 18:09:21 +01:00
|
|
|
}
|
2024-06-04 20:06:44 +02:00
|
|
|
}
|
2023-03-22 18:09:21 +01:00
|
|
|
|
2024-06-04 20:06:44 +02:00
|
|
|
if !enforced {
|
|
|
|
je := &store.BandwidthLimitJournalEntry{
|
|
|
|
AccountId: int(u.AccountId),
|
|
|
|
RxBytes: rxBytes,
|
|
|
|
TxBytes: txBytes,
|
|
|
|
Action: exceededLc.GetLimitAction(),
|
2023-03-22 19:10:07 +01:00
|
|
|
}
|
2024-06-04 20:06:44 +02:00
|
|
|
if !exceededLc.IsGlobal() {
|
|
|
|
lcId := exceededLc.GetLimitClassId()
|
|
|
|
je.LimitClassId = &lcId
|
|
|
|
}
|
|
|
|
_, err := a.str.CreateBandwidthLimitJournalEntry(je, trx)
|
2023-03-22 19:10:07 +01:00
|
|
|
|
2024-06-04 20:06:44 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
acct, err := a.str.GetAccount(int(u.AccountId), trx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
switch exceededLc.GetLimitAction() {
|
|
|
|
case store.LimitLimitAction:
|
|
|
|
for _, limitAction := range a.limitActions {
|
|
|
|
if err := limitAction.HandleAccount(acct, rxBytes, txBytes, exceededLc, trx); err != nil {
|
|
|
|
return errors.Wrapf(err, "%v", reflect.TypeOf(limitAction).String())
|
2023-03-27 19:00:05 +02:00
|
|
|
}
|
|
|
|
}
|
2024-06-04 20:06:44 +02:00
|
|
|
|
|
|
|
case store.WarningLimitAction:
|
|
|
|
for _, warningAction := range a.warningActions {
|
|
|
|
if err := warningAction.HandleAccount(acct, rxBytes, txBytes, exceededLc, trx); err != nil {
|
|
|
|
return errors.Wrapf(err, "%v", reflect.TypeOf(warningAction).String())
|
|
|
|
}
|
2023-03-22 19:10:07 +01:00
|
|
|
}
|
|
|
|
}
|
2024-06-04 20:06:44 +02:00
|
|
|
if err := trx.Commit(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
logrus.Debugf("already enforced limit for account '%d' at %v", u.AccountId, enforcedAt)
|
2023-03-21 19:06:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-03-23 20:13:59 +01:00
|
|
|
func (a *Agent) relax() error {
|
2023-03-28 21:19:01 +02:00
|
|
|
logrus.Debug("relaxing")
|
2023-03-23 20:13:59 +01:00
|
|
|
|
|
|
|
trx, err := a.str.Begin()
|
2023-03-21 19:06:23 +01:00
|
|
|
if err != nil {
|
2023-03-23 20:13:59 +01:00
|
|
|
return errors.Wrap(err, "error starting transaction")
|
|
|
|
}
|
|
|
|
defer func() { _ = trx.Rollback() }()
|
|
|
|
|
|
|
|
commit := false
|
|
|
|
|
2024-06-04 20:06:44 +02:00
|
|
|
if bwjes, err := a.str.FindAllBandwidthLimitJournal(trx); err == nil {
|
|
|
|
periodBw := make(map[int]struct {
|
|
|
|
rx int64
|
|
|
|
tx int64
|
|
|
|
})
|
|
|
|
|
|
|
|
accounts := make(map[int]*store.Account)
|
|
|
|
|
|
|
|
for _, bwje := range bwjes {
|
|
|
|
if _, found := accounts[bwje.AccountId]; !found {
|
|
|
|
if acct, err := a.str.GetAccount(bwje.AccountId, trx); err == nil {
|
|
|
|
accounts[bwje.AccountId] = acct
|
|
|
|
} else {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var bwc store.BandwidthClass
|
|
|
|
if bwje.LimitClassId != nil {
|
|
|
|
globalBwcs := newConfigBandwidthClasses(a.cfg.Bandwidth)
|
|
|
|
if bwje.Action == store.WarningLimitAction {
|
|
|
|
bwc = globalBwcs[0]
|
|
|
|
} else {
|
|
|
|
bwc = globalBwcs[1]
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
lc, err := a.str.GetLimitClass(*bwje.LimitClassId, trx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
bwc = lc
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, found := periodBw[bwc.GetPeriodMinutes()]; !found {
|
|
|
|
rx, tx, err := a.ifx.totalRxTxForAccount(int64(bwje.AccountId), time.Duration(bwc.GetPeriodMinutes())*time.Minute)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
periodBw[bwc.GetPeriodMinutes()] = struct {
|
|
|
|
rx int64
|
|
|
|
tx int64
|
|
|
|
}{
|
|
|
|
rx: rx,
|
|
|
|
tx: tx,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
used := periodBw[bwc.GetPeriodMinutes()]
|
|
|
|
if !a.limitExceeded(used.rx, used.tx, bwc) {
|
|
|
|
if bwc.GetLimitAction() == store.LimitLimitAction {
|
|
|
|
for _, action := range a.relaxActions {
|
|
|
|
if err := action.HandleAccount(accounts[bwje.AccountId], used.rx, used.tx, bwc, trx); err != nil {
|
|
|
|
return errors.Wrapf(err, "%v", reflect.TypeOf(action).String())
|
2023-03-23 20:13:59 +01:00
|
|
|
}
|
|
|
|
}
|
2024-06-04 20:06:44 +02:00
|
|
|
} else {
|
|
|
|
logrus.Infof("relaxing warning for '%v'", accounts[bwje.AccountId].Email)
|
|
|
|
}
|
|
|
|
var lcId *int
|
|
|
|
if !bwc.IsGlobal() {
|
|
|
|
newLcId := 0
|
|
|
|
newLcId = bwc.GetLimitClassId()
|
|
|
|
lcId = &newLcId
|
|
|
|
}
|
|
|
|
if err := a.str.DeleteBandwidthLimitJournalEntryForLimitClass(bwje.AccountId, lcId, trx); err == nil {
|
|
|
|
commit = true
|
|
|
|
} else {
|
|
|
|
logrus.Errorf("error deleting bandwidth limit journal entry for '%v': %v", accounts[bwje.AccountId].Email, err)
|
2023-03-23 20:13:59 +01:00
|
|
|
}
|
|
|
|
} else {
|
2024-06-04 20:06:44 +02:00
|
|
|
logrus.Infof("account '%v' still over limit: %v", accounts[bwje.AccountId].Email, bwc)
|
2023-03-23 20:13:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return err
|
2023-03-21 19:06:23 +01:00
|
|
|
}
|
|
|
|
|
2023-03-23 20:13:59 +01:00
|
|
|
if commit {
|
|
|
|
if err := trx.Commit(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-06-04 20:06:44 +02:00
|
|
|
func (a *Agent) isOverLimitClass(u *metrics.Usage, alcs []*store.LimitClass) (store.BandwidthClass, int64, int64, error) {
|
|
|
|
periodBw := make(map[int]struct {
|
|
|
|
rx int64
|
|
|
|
tx int64
|
|
|
|
})
|
|
|
|
|
|
|
|
var allBwcs []store.BandwidthClass
|
|
|
|
for _, alc := range alcs {
|
|
|
|
allBwcs = append(allBwcs, alc)
|
2023-03-21 18:05:22 +01:00
|
|
|
}
|
2024-06-04 20:06:44 +02:00
|
|
|
for _, globBwc := range newConfigBandwidthClasses(a.cfg.Bandwidth) {
|
|
|
|
allBwcs = append(allBwcs, globBwc)
|
2023-03-21 18:05:22 +01:00
|
|
|
}
|
2024-06-04 20:06:44 +02:00
|
|
|
|
|
|
|
// find period data for each class
|
|
|
|
for _, bwc := range allBwcs {
|
|
|
|
if _, found := periodBw[bwc.GetPeriodMinutes()]; !found {
|
|
|
|
rx, tx, err := a.ifx.totalRxTxForAccount(u.AccountId, time.Minute*time.Duration(bwc.GetPeriodMinutes()))
|
|
|
|
if err != nil {
|
|
|
|
return nil, 0, 0, errors.Wrapf(err, "error getting rx/tx for account '%d'", u.AccountId)
|
|
|
|
}
|
|
|
|
periodBw[bwc.GetPeriodMinutes()] = struct {
|
|
|
|
rx int64
|
|
|
|
tx int64
|
|
|
|
}{
|
|
|
|
rx: rx,
|
|
|
|
tx: tx,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// find the highest, most specific limit class that has been exceeded
|
|
|
|
var selectedLc store.BandwidthClass
|
|
|
|
selectedLcPoints := -1
|
|
|
|
var rxBytes int64
|
|
|
|
var txBytes int64
|
|
|
|
for _, bwc := range allBwcs {
|
|
|
|
points := a.bandwidthClassPoints(bwc)
|
|
|
|
if points >= selectedLcPoints {
|
|
|
|
period := periodBw[bwc.GetPeriodMinutes()]
|
|
|
|
if a.limitExceeded(period.rx, period.tx, bwc) {
|
|
|
|
selectedLc = bwc
|
|
|
|
selectedLcPoints = points
|
|
|
|
rxBytes = period.rx
|
|
|
|
txBytes = period.tx
|
|
|
|
}
|
|
|
|
}
|
2023-03-21 18:05:22 +01:00
|
|
|
}
|
2023-03-21 19:06:23 +01:00
|
|
|
|
2024-06-04 20:06:44 +02:00
|
|
|
return selectedLc, rxBytes, txBytes, nil
|
2023-03-21 19:06:23 +01:00
|
|
|
}
|
|
|
|
|
2024-06-04 20:06:44 +02:00
|
|
|
func (a *Agent) bandwidthClassPoints(bwc store.BandwidthClass) int {
|
|
|
|
points := 0
|
|
|
|
if !bwc.IsGlobal() {
|
|
|
|
points++
|
2023-03-21 19:06:23 +01:00
|
|
|
}
|
2024-06-04 20:06:44 +02:00
|
|
|
if bwc.GetLimitAction() == store.WarningLimitAction {
|
|
|
|
points++
|
2023-03-21 19:06:23 +01:00
|
|
|
}
|
2024-06-04 20:06:44 +02:00
|
|
|
if bwc.GetLimitAction() == store.LimitLimitAction {
|
|
|
|
points += 2
|
2023-03-21 19:06:23 +01:00
|
|
|
}
|
2024-06-04 20:06:44 +02:00
|
|
|
if bwc.GetShareMode() != "" {
|
|
|
|
points += 5
|
|
|
|
}
|
|
|
|
if bwc.GetBackendMode() != "" {
|
|
|
|
points += 10
|
|
|
|
}
|
|
|
|
return points
|
|
|
|
}
|
2023-03-21 19:06:23 +01:00
|
|
|
|
2024-06-04 20:06:44 +02:00
|
|
|
func (a *Agent) limitExceeded(rx, tx int64, bwc store.BandwidthClass) bool {
|
|
|
|
if bwc.GetTxBytes() != Unlimited && tx >= bwc.GetTxBytes() {
|
|
|
|
return true
|
2023-03-21 19:06:23 +01:00
|
|
|
}
|
2024-06-04 20:06:44 +02:00
|
|
|
if bwc.GetRxBytes() != Unlimited && rx >= bwc.GetRxBytes() {
|
|
|
|
return true
|
2023-03-21 19:06:23 +01:00
|
|
|
}
|
2024-06-04 20:06:44 +02:00
|
|
|
if bwc.GetTxBytes() != Unlimited && bwc.GetRxBytes() != Unlimited && tx+rx >= bwc.GetTxBytes()+bwc.GetRxBytes() {
|
|
|
|
return true
|
2023-03-21 19:06:23 +01:00
|
|
|
}
|
2024-06-04 20:06:44 +02:00
|
|
|
return false
|
2023-03-21 19:06:23 +01:00
|
|
|
}
|