123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259 |
- package v1
- import (
- "encoding/json"
- "fmt"
- "net/http"
- "strconv"
- "time"
- jwt "github.com/appleboy/gin-jwt/v2"
- "github.com/crowdsecurity/crowdsec/pkg/csplugin"
- "github.com/crowdsecurity/crowdsec/pkg/csprofiles"
- "github.com/crowdsecurity/crowdsec/pkg/database/ent"
- "github.com/crowdsecurity/crowdsec/pkg/models"
- "github.com/gin-gonic/gin"
- "github.com/go-openapi/strfmt"
- log "github.com/sirupsen/logrus"
- )
- func FormatOneAlert(alert *ent.Alert) *models.Alert {
- var outputAlert models.Alert
- var machineID string
- startAt := alert.StartedAt.String()
- StopAt := alert.StoppedAt.String()
- if alert.Edges.Owner == nil {
- machineID = "N/A"
- } else {
- machineID = alert.Edges.Owner.MachineId
- }
- outputAlert = models.Alert{
- ID: int64(alert.ID),
- MachineID: machineID,
- CreatedAt: alert.CreatedAt.Format(time.RFC3339),
- Scenario: &alert.Scenario,
- ScenarioVersion: &alert.ScenarioVersion,
- ScenarioHash: &alert.ScenarioHash,
- Message: &alert.Message,
- EventsCount: &alert.EventsCount,
- StartAt: &startAt,
- StopAt: &StopAt,
- Capacity: &alert.Capacity,
- Leakspeed: &alert.LeakSpeed,
- Simulated: &alert.Simulated,
- Source: &models.Source{
- Scope: &alert.SourceScope,
- Value: &alert.SourceValue,
- IP: alert.SourceIp,
- Range: alert.SourceRange,
- AsNumber: alert.SourceAsNumber,
- AsName: alert.SourceAsName,
- Cn: alert.SourceCountry,
- Latitude: alert.SourceLatitude,
- Longitude: alert.SourceLongitude,
- },
- }
- for _, eventItem := range alert.Edges.Events {
- var Metas models.Meta
- timestamp := eventItem.Time.String()
- if err := json.Unmarshal([]byte(eventItem.Serialized), &Metas); err != nil {
- log.Errorf("unable to unmarshall events meta '%s' : %s", eventItem.Serialized, err)
- }
- outputAlert.Events = append(outputAlert.Events, &models.Event{
- Timestamp: ×tamp,
- Meta: Metas,
- })
- }
- for _, metaItem := range alert.Edges.Metas {
- outputAlert.Meta = append(outputAlert.Meta, &models.MetaItems0{
- Key: metaItem.Key,
- Value: metaItem.Value,
- })
- }
- for _, decisionItem := range alert.Edges.Decisions {
- duration := decisionItem.Until.Sub(time.Now().UTC()).String()
- outputAlert.Decisions = append(outputAlert.Decisions, &models.Decision{
- Duration: &duration, // transform into time.Time ?
- Scenario: &decisionItem.Scenario,
- Type: &decisionItem.Type,
- Scope: &decisionItem.Scope,
- Value: &decisionItem.Value,
- Origin: &decisionItem.Origin,
- Simulated: outputAlert.Simulated,
- ID: int64(decisionItem.ID),
- })
- }
- return &outputAlert
- }
- // FormatAlerts : Format results from the database to be swagger model compliant
- func FormatAlerts(result []*ent.Alert) models.AddAlertsRequest {
- var data models.AddAlertsRequest
- for _, alertItem := range result {
- data = append(data, FormatOneAlert(alertItem))
- }
- return data
- }
- func (c *Controller) sendAlertToPluginChannel(alert *models.Alert, profileID uint) {
- if c.PluginChannel != nil {
- select {
- case c.PluginChannel <- csplugin.ProfileAlert{ProfileID: uint(profileID), Alert: alert}:
- log.Debugf("alert sent to Plugin channel")
- default:
- log.Warningf("Cannot send alert to Plugin channel")
- }
- }
- }
- // CreateAlert : write received alerts in body to the database
- func (c *Controller) CreateAlert(gctx *gin.Context) {
- var input models.AddAlertsRequest
- claims := jwt.ExtractClaims(gctx)
- /*TBD : use defines rather than hardcoded key to find back owner*/
- machineID := claims["id"].(string)
- if err := gctx.ShouldBindJSON(&input); err != nil {
- gctx.JSON(http.StatusBadRequest, gin.H{"message": err.Error()})
- return
- }
- if err := input.Validate(strfmt.Default); err != nil {
- c.HandleDBErrors(gctx, err)
- return
- }
- stopFlush := false
- for _, alert := range input {
- alert.MachineID = machineID
- if len(alert.Decisions) != 0 {
- for pIdx, profile := range c.Profiles {
- _, matched, err := csprofiles.EvaluateProfile(profile, alert)
- if err != nil {
- gctx.JSON(http.StatusInternalServerError, gin.H{"message": err.Error()})
- return
- }
- if !matched {
- continue
- }
- c.sendAlertToPluginChannel(alert, uint(pIdx))
- if profile.OnSuccess == "break" {
- break
- }
- }
- decision := alert.Decisions[0]
- if decision.Origin != nil && *decision.Origin == "cscli-import" {
- stopFlush = true
- }
- continue
- }
- for pIdx, profile := range c.Profiles {
- profileDecisions, matched, err := csprofiles.EvaluateProfile(profile, alert)
- if err != nil {
- gctx.JSON(http.StatusInternalServerError, gin.H{"message": err.Error()})
- return
- }
- if !matched {
- continue
- }
- if len(alert.Decisions) == 0 { // non manual decision
- alert.Decisions = append(alert.Decisions, profileDecisions...)
- }
- profileAlert := *alert
- c.sendAlertToPluginChannel(&profileAlert, uint(pIdx))
- if profile.OnSuccess == "break" {
- break
- }
- }
- }
- if stopFlush {
- c.DBClient.CanFlush = false
- }
- alerts, err := c.DBClient.CreateAlert(machineID, input)
- c.DBClient.CanFlush = true
- if err != nil {
- c.HandleDBErrors(gctx, err)
- return
- }
- if c.CAPIChan != nil {
- select {
- case c.CAPIChan <- input:
- log.Debug("alert sent to CAPI channel")
- default:
- log.Warning("Cannot send alert to Central API channel")
- }
- }
- gctx.JSON(http.StatusCreated, alerts)
- return
- }
- // FindAlerts : return alerts from database based on the specified filter
- func (c *Controller) FindAlerts(gctx *gin.Context) {
- result, err := c.DBClient.QueryAlertWithFilter(gctx.Request.URL.Query())
- if err != nil {
- c.HandleDBErrors(gctx, err)
- return
- }
- data := FormatAlerts(result)
- if gctx.Request.Method == "HEAD" {
- gctx.String(http.StatusOK, "")
- return
- }
- gctx.JSON(http.StatusOK, data)
- return
- }
- // FindAlertByID return the alert assiocated to the ID
- func (c *Controller) FindAlertByID(gctx *gin.Context) {
- alertIDStr := gctx.Param("alert_id")
- alertID, err := strconv.Atoi(alertIDStr)
- if err != nil {
- gctx.JSON(http.StatusBadRequest, gin.H{"message": "alert_id must be valid integer"})
- return
- }
- result, err := c.DBClient.GetAlertByID(alertID)
- if err != nil {
- c.HandleDBErrors(gctx, err)
- return
- }
- data := FormatOneAlert(result)
- if gctx.Request.Method == "HEAD" {
- gctx.String(http.StatusOK, "")
- return
- }
- gctx.JSON(http.StatusOK, data)
- return
- }
- // DeleteAlerts : delete alerts from database based on the specified filter
- func (c *Controller) DeleteAlerts(gctx *gin.Context) {
- if gctx.ClientIP() != "127.0.0.1" && gctx.ClientIP() != "::1" {
- gctx.JSON(http.StatusForbidden, gin.H{"message": fmt.Sprintf("access forbidden from this IP (%s)", gctx.ClientIP())})
- return
- }
- var err error
- nbDeleted, err := c.DBClient.DeleteAlertWithFilter(gctx.Request.URL.Query())
- if err != nil {
- c.HandleDBErrors(gctx, err)
- return
- }
- deleteAlertsResp := models.DeleteAlertsResponse{
- NbDeleted: strconv.Itoa(nbDeleted),
- }
- gctx.JSON(http.StatusOK, deleteAlertsResp)
- return
- }
|