123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- package exprhelpers
- import (
- "fmt"
- "time"
- "github.com/bluele/gcache"
- "github.com/crowdsecurity/crowdsec/pkg/cticlient"
- "github.com/crowdsecurity/crowdsec/pkg/types"
- "github.com/pkg/errors"
- log "github.com/sirupsen/logrus"
- )
- var CTIUrl = "https://cti.api.crowdsec.net"
- var CTIUrlSuffix = "/v2/smoke/"
- var CTIApiKey = ""
- // this is set for non-recoverable errors, such as 403 when querying API or empty API key
- var CTIApiEnabled = true
- // when hitting quotas or auth errors, we temporarily disable the API
- var CTIBackOffUntil time.Time
- var CTIBackOffDuration time.Duration = 5 * time.Minute
- var ctiClient *cticlient.CrowdsecCTIClient
- func InitCrowdsecCTI(Key *string, TTL *time.Duration, Size *int, LogLevel *log.Level) error {
- if Key != nil {
- CTIApiKey = *Key
- } else {
- CTIApiEnabled = false
- return fmt.Errorf("CTI API key not set, CTI will not be available")
- }
- if Size == nil {
- Size = new(int)
- *Size = 1000
- }
- if TTL == nil {
- TTL = new(time.Duration)
- *TTL = 5 * time.Minute
- }
- //dedicated logger
- clog := log.New()
- if err := types.ConfigureLogger(clog); err != nil {
- return errors.Wrap(err, "while configuring datasource logger")
- }
- if LogLevel != nil {
- clog.SetLevel(*LogLevel)
- }
- customLog := log.Fields{
- "type": "crowdsec-cti",
- }
- subLogger := clog.WithFields(customLog)
- CrowdsecCTIInitCache(*Size, *TTL)
- ctiClient = cticlient.NewCrowdsecCTIClient(cticlient.WithAPIKey(CTIApiKey), cticlient.WithLogger(subLogger))
- return nil
- }
- func ShutdownCrowdsecCTI() {
- if CTICache != nil {
- CTICache.Purge()
- }
- CTIApiKey = ""
- CTIApiEnabled = true
- }
- // Cache for responses
- var CTICache gcache.Cache
- var CacheExpiration time.Duration
- func CrowdsecCTIInitCache(size int, ttl time.Duration) {
- CTICache = gcache.New(size).LRU().Build()
- CacheExpiration = ttl
- }
- func CrowdsecCTI(ip string) (*cticlient.SmokeItem, error) {
- if !CTIApiEnabled {
- ctiClient.Logger.Warningf("Crowdsec CTI API is disabled, please check your configuration")
- return &cticlient.SmokeItem{}, cticlient.ErrDisabled
- }
- if CTIApiKey == "" {
- ctiClient.Logger.Warningf("CrowdsecCTI : no key provided, skipping")
- return &cticlient.SmokeItem{}, cticlient.ErrDisabled
- }
- if ctiClient == nil {
- ctiClient.Logger.Warningf("CrowdsecCTI: no client, skipping")
- return &cticlient.SmokeItem{}, cticlient.ErrDisabled
- }
- if val, err := CTICache.Get(ip); err == nil && val != nil {
- ctiClient.Logger.Debugf("cti cache fetch for %s", ip)
- ret, ok := val.(*cticlient.SmokeItem)
- if !ok {
- ctiClient.Logger.Warningf("CrowdsecCTI: invalid type in cache, removing")
- CTICache.Remove(ip)
- } else {
- return ret, nil
- }
- }
- if !CTIBackOffUntil.IsZero() && time.Now().Before(CTIBackOffUntil) {
- //ctiClient.Logger.Warningf("Crowdsec CTI client is in backoff mode, ending in %s", time.Until(CTIBackOffUntil))
- return &cticlient.SmokeItem{}, cticlient.ErrLimit
- }
- ctiClient.Logger.Infof("cti call for %s", ip)
- before := time.Now()
- ctiResp, err := ctiClient.GetIPInfo(ip)
- ctiClient.Logger.Debugf("request for %s took %v", ip, time.Since(before))
- if err != nil {
- if err == cticlient.ErrUnauthorized {
- CTIApiEnabled = false
- ctiClient.Logger.Errorf("Invalid API key provided, disabling CTI API")
- return &cticlient.SmokeItem{}, cticlient.ErrUnauthorized
- } else if err == cticlient.ErrLimit {
- CTIBackOffUntil = time.Now().Add(CTIBackOffDuration)
- ctiClient.Logger.Errorf("CTI API is throttled, will try again in %s", CTIBackOffDuration)
- return &cticlient.SmokeItem{}, cticlient.ErrLimit
- } else {
- ctiClient.Logger.Warnf("CTI API error : %s", err)
- return &cticlient.SmokeItem{}, fmt.Errorf("unexpected error : %v", err)
- }
- }
- if err := CTICache.SetWithExpire(ip, ctiResp, CacheExpiration); err != nil {
- ctiClient.Logger.Warningf("IpCTI : error while caching CTI : %s", err)
- return &cticlient.SmokeItem{}, cticlient.ErrUnknown
- }
- ctiClient.Logger.Tracef("CTI response : %v", *ctiResp)
- return ctiResp, nil
- }
|