123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375 |
- package v1
- import (
- "encoding/json"
- "fmt"
- "net/http"
- "strconv"
- "time"
- "github.com/crowdsecurity/crowdsec/pkg/database/ent"
- "github.com/crowdsecurity/crowdsec/pkg/fflag"
- "github.com/crowdsecurity/crowdsec/pkg/models"
- "github.com/gin-gonic/gin"
- log "github.com/sirupsen/logrus"
- )
- // Format decisions for the bouncers
- func FormatDecisions(decisions []*ent.Decision) []*models.Decision {
- var results []*models.Decision
- for _, dbDecision := range decisions {
- duration := dbDecision.Until.Sub(time.Now().UTC()).String()
- decision := models.Decision{
- ID: int64(dbDecision.ID),
- Duration: &duration,
- Scenario: &dbDecision.Scenario,
- Scope: &dbDecision.Scope,
- Value: &dbDecision.Value,
- Type: &dbDecision.Type,
- Origin: &dbDecision.Origin,
- UUID: dbDecision.UUID,
- }
- results = append(results, &decision)
- }
- return results
- }
- func (c *Controller) GetDecision(gctx *gin.Context) {
- var err error
- var results []*models.Decision
- var data []*ent.Decision
- bouncerInfo, err := getBouncerFromContext(gctx)
- if err != nil {
- gctx.JSON(http.StatusUnauthorized, gin.H{"message": "not allowed"})
- return
- }
- data, err = c.DBClient.QueryDecisionWithFilter(gctx.Request.URL.Query())
- if err != nil {
- c.HandleDBErrors(gctx, err)
- return
- }
- results = FormatDecisions(data)
- /*let's follow a naive logic : when a bouncer queries /decisions, if the answer is empty, we assume there is no decision for this ip/user/...,
- but if it's non-empty, it means that there is one or more decisions for this target*/
- if len(results) > 0 {
- PrometheusBouncersHasNonEmptyDecision(gctx)
- } else {
- PrometheusBouncersHasEmptyDecision(gctx)
- }
- if gctx.Request.Method == http.MethodHead {
- gctx.String(http.StatusOK, "")
- return
- }
- if time.Now().UTC().Sub(bouncerInfo.LastPull) >= time.Minute {
- if err := c.DBClient.UpdateBouncerLastPull(time.Now().UTC(), bouncerInfo.ID); err != nil {
- log.Errorf("failed to update bouncer last pull: %v", err)
- }
- }
- gctx.JSON(http.StatusOK, results)
- }
- func (c *Controller) DeleteDecisionById(gctx *gin.Context) {
- var err error
- decisionIDStr := gctx.Param("decision_id")
- decisionID, err := strconv.Atoi(decisionIDStr)
- if err != nil {
- gctx.JSON(http.StatusBadRequest, gin.H{"message": "decision_id must be valid integer"})
- return
- }
- nbDeleted, deletedFromDB, err := c.DBClient.SoftDeleteDecisionByID(decisionID)
- if err != nil {
- c.HandleDBErrors(gctx, err)
- return
- }
- //transform deleted decisions to be sendable to capi
- deletedDecisions := FormatDecisions(deletedFromDB)
- if err != nil {
- log.Warningf("failed to format decisions: %v", err)
- }
- if c.DecisionDeleteChan != nil {
- c.DecisionDeleteChan <- deletedDecisions
- }
- deleteDecisionResp := models.DeleteDecisionResponse{
- NbDeleted: strconv.Itoa(nbDeleted),
- }
- gctx.JSON(http.StatusOK, deleteDecisionResp)
- }
- func (c *Controller) DeleteDecisions(gctx *gin.Context) {
- var err error
- nbDeleted, deletedFromDB, err := c.DBClient.SoftDeleteDecisionsWithFilter(gctx.Request.URL.Query())
- if err != nil {
- c.HandleDBErrors(gctx, err)
- return
- }
- //transform deleted decisions to be sendable to capi
- deletedDecisions := FormatDecisions(deletedFromDB)
- if err != nil {
- log.Warningf("failed to format decisions: %v", err)
- }
- if c.DecisionDeleteChan != nil {
- c.DecisionDeleteChan <- deletedDecisions
- }
- deleteDecisionResp := models.DeleteDecisionResponse{
- NbDeleted: nbDeleted,
- }
- gctx.JSON(http.StatusOK, deleteDecisionResp)
- }
- func writeStartupDecisions(gctx *gin.Context, filters map[string][]string, dbFunc func(map[string][]string) ([]*ent.Decision, error)) error {
- // respBuffer := bytes.NewBuffer([]byte{})
- limit := 30000 //FIXME : make it configurable
- needComma := false
- lastId := 0
- limitStr := fmt.Sprintf("%d", limit)
- filters["limit"] = []string{limitStr}
- for {
- if lastId > 0 {
- lastIdStr := fmt.Sprintf("%d", lastId)
- filters["id_gt"] = []string{lastIdStr}
- }
- data, err := dbFunc(filters)
- if err != nil {
- return err
- }
- if len(data) > 0 {
- lastId = data[len(data)-1].ID
- results := FormatDecisions(data)
- for _, decision := range results {
- decisionJSON, _ := json.Marshal(decision)
- if needComma {
- //respBuffer.Write([]byte(","))
- gctx.Writer.Write([]byte(","))
- } else {
- needComma = true
- }
- //respBuffer.Write(decisionJSON)
- //_, err := gctx.Writer.Write(respBuffer.Bytes())
- _, err := gctx.Writer.Write(decisionJSON)
- if err != nil {
- gctx.Writer.Flush()
- return err
- }
- //respBuffer.Reset()
- }
- }
- log.Debugf("startup: %d decisions returned (limit: %d, lastid: %d)", len(data), limit, lastId)
- if len(data) < limit {
- gctx.Writer.Flush()
- break
- }
- }
- return nil
- }
- func writeDeltaDecisions(gctx *gin.Context, filters map[string][]string, lastPull time.Time, dbFunc func(time.Time, map[string][]string) ([]*ent.Decision, error)) error {
- //respBuffer := bytes.NewBuffer([]byte{})
- limit := 30000 //FIXME : make it configurable
- needComma := false
- lastId := 0
- limitStr := fmt.Sprintf("%d", limit)
- filters["limit"] = []string{limitStr}
- for {
- if lastId > 0 {
- lastIdStr := fmt.Sprintf("%d", lastId)
- filters["id_gt"] = []string{lastIdStr}
- }
- data, err := dbFunc(lastPull, filters)
- if err != nil {
- return err
- }
- if len(data) > 0 {
- lastId = data[len(data)-1].ID
- results := FormatDecisions(data)
- for _, decision := range results {
- decisionJSON, _ := json.Marshal(decision)
- if needComma {
- //respBuffer.Write([]byte(","))
- gctx.Writer.Write([]byte(","))
- } else {
- needComma = true
- }
- //respBuffer.Write(decisionJSON)
- //_, err := gctx.Writer.Write(respBuffer.Bytes())
- _, err := gctx.Writer.Write(decisionJSON)
- if err != nil {
- gctx.Writer.Flush()
- return err
- }
- //respBuffer.Reset()
- }
- }
- log.Debugf("startup: %d decisions returned (limit: %d, lastid: %d)", len(data), limit, lastId)
- if len(data) < limit {
- gctx.Writer.Flush()
- break
- }
- }
- return nil
- }
- func (c *Controller) StreamDecisionChunked(gctx *gin.Context, bouncerInfo *ent.Bouncer, streamStartTime time.Time, filters map[string][]string) error {
- var err error
- gctx.Writer.Header().Set("Content-Type", "application/json")
- gctx.Writer.Header().Set("Transfer-Encoding", "chunked")
- gctx.Writer.WriteHeader(http.StatusOK)
- gctx.Writer.Write([]byte(`{"new": [`)) //No need to check for errors, the doc says it always returns nil
- // if the blocker just start, return all decisions
- if val, ok := gctx.Request.URL.Query()["startup"]; ok && val[0] == "true" {
- //Active decisions
- err := writeStartupDecisions(gctx, filters, c.DBClient.QueryAllDecisionsWithFilters)
- if err != nil {
- log.Errorf("failed sending new decisions for startup: %v", err)
- gctx.Writer.Write([]byte(`], "deleted": []}`))
- gctx.Writer.Flush()
- return err
- }
- gctx.Writer.Write([]byte(`], "deleted": [`))
- //Expired decisions
- err = writeStartupDecisions(gctx, filters, c.DBClient.QueryExpiredDecisionsWithFilters)
- if err != nil {
- log.Errorf("failed sending expired decisions for startup: %v", err)
- gctx.Writer.Write([]byte(`]}`))
- gctx.Writer.Flush()
- return err
- }
- gctx.Writer.Write([]byte(`]}`))
- gctx.Writer.Flush()
- } else {
- err = writeDeltaDecisions(gctx, filters, bouncerInfo.LastPull, c.DBClient.QueryNewDecisionsSinceWithFilters)
- if err != nil {
- log.Errorf("failed sending new decisions for delta: %v", err)
- gctx.Writer.Write([]byte(`], "deleted": []}`))
- gctx.Writer.Flush()
- return err
- }
- gctx.Writer.Write([]byte(`], "deleted": [`))
- err = writeDeltaDecisions(gctx, filters, bouncerInfo.LastPull, c.DBClient.QueryExpiredDecisionsSinceWithFilters)
- if err != nil {
- log.Errorf("failed sending expired decisions for delta: %v", err)
- gctx.Writer.Write([]byte(`]}`))
- gctx.Writer.Flush()
- return err
- }
- gctx.Writer.Write([]byte(`]}`))
- gctx.Writer.Flush()
- }
- return nil
- }
- func (c *Controller) StreamDecisionNonChunked(gctx *gin.Context, bouncerInfo *ent.Bouncer, streamStartTime time.Time, filters map[string][]string) error {
- var data []*ent.Decision
- var err error
- ret := make(map[string][]*models.Decision, 0)
- ret["new"] = []*models.Decision{}
- ret["deleted"] = []*models.Decision{}
- if val, ok := gctx.Request.URL.Query()["startup"]; ok {
- if val[0] == "true" {
- data, err = c.DBClient.QueryAllDecisionsWithFilters(filters)
- if err != nil {
- log.Errorf("failed querying decisions: %v", err)
- gctx.JSON(http.StatusInternalServerError, gin.H{"message": err.Error()})
- return err
- }
- //data = KeepLongestDecision(data)
- ret["new"] = FormatDecisions(data)
- // getting expired decisions
- data, err = c.DBClient.QueryExpiredDecisionsWithFilters(filters)
- if err != nil {
- log.Errorf("unable to query expired decision for '%s' : %v", bouncerInfo.Name, err)
- gctx.JSON(http.StatusInternalServerError, gin.H{"message": err.Error()})
- return err
- }
- ret["deleted"] = FormatDecisions(data)
- gctx.JSON(http.StatusOK, ret)
- return nil
- }
- }
- // getting new decisions
- data, err = c.DBClient.QueryNewDecisionsSinceWithFilters(bouncerInfo.LastPull, filters)
- if err != nil {
- log.Errorf("unable to query new decision for '%s' : %v", bouncerInfo.Name, err)
- gctx.JSON(http.StatusInternalServerError, gin.H{"message": err.Error()})
- return err
- }
- //data = KeepLongestDecision(data)
- ret["new"] = FormatDecisions(data)
- // getting expired decisions
- data, err = c.DBClient.QueryExpiredDecisionsSinceWithFilters(bouncerInfo.LastPull.Add((-2 * time.Second)), filters) // do we want to give exactly lastPull time ?
- if err != nil {
- log.Errorf("unable to query expired decision for '%s' : %v", bouncerInfo.Name, err)
- gctx.JSON(http.StatusInternalServerError, gin.H{"message": err.Error()})
- return err
- }
- ret["deleted"] = FormatDecisions(data)
- gctx.JSON(http.StatusOK, ret)
- return nil
- }
- func (c *Controller) StreamDecision(gctx *gin.Context) {
- var err error
- streamStartTime := time.Now().UTC()
- bouncerInfo, err := getBouncerFromContext(gctx)
- if err != nil {
- gctx.JSON(http.StatusUnauthorized, gin.H{"message": "not allowed"})
- return
- }
- if gctx.Request.Method == http.MethodHead {
- //For HEAD, just return as the bouncer won't get a body anyway, so no need to query the db
- //We also don't update the last pull time, as it would mess with the delta sent on the next request (if done without startup=true)
- gctx.String(http.StatusOK, "")
- return
- }
- filters := gctx.Request.URL.Query()
- if _, ok := filters["scopes"]; !ok {
- filters["scopes"] = []string{"ip,range"}
- }
- if fflag.ChunkedDecisionsStream.IsEnabled() {
- err = c.StreamDecisionChunked(gctx, bouncerInfo, streamStartTime, filters)
- } else {
- err = c.StreamDecisionNonChunked(gctx, bouncerInfo, streamStartTime, filters)
- }
- if err == nil {
- //Only update the last pull time if no error occurred when sending the decisions to avoid missing decisions
- if err := c.DBClient.UpdateBouncerLastPull(streamStartTime, bouncerInfo.ID); err != nil {
- log.Errorf("unable to update bouncer '%s' pull: %v", bouncerInfo.Name, err)
- }
- }
- }
|