1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
|
package csbouncer
import (
"context"
"crypto/tls"
"crypto/x509"
"errors"
"fmt"
"io"
"net/http"
"net/url"
"os"
"strings"
"time"
"github.com/prometheus/client_golang/prometheus"
log "github.com/sirupsen/logrus"
"gopkg.in/yaml.v2"
"github.com/crowdsecurity/crowdsec/pkg/apiclient"
"github.com/crowdsecurity/crowdsec/pkg/models"
)
var TotalLAPIError prometheus.Counter = prometheus.NewCounter(prometheus.CounterOpts{
Name: "lapi_requests_failures_total",
Help: "The total number of failed calls to CrowdSec LAPI",
},
)
var TotalLAPICalls prometheus.Counter = prometheus.NewCounter(prometheus.CounterOpts{
Name: "lapi_requests_total",
Help: "The total number of calls to CrowdSec LAPI",
},
)
type StreamBouncer struct {
APIKey string `yaml:"api_key"`
APIUrl string `yaml:"api_url"`
InsecureSkipVerify *bool `yaml:"insecure_skip_verify"`
CertPath string `yaml:"cert_path"`
KeyPath string `yaml:"key_path"`
CAPath string `yaml:"ca_cert_path"`
TickerInterval string `yaml:"update_frequency"`
Scopes []string `yaml:"scopes"`
ScenariosContaining []string `yaml:"scenarios_containing"`
ScenariosNotContaining []string `yaml:"scenarios_not_containing"`
Origins []string `yaml:"origins"`
TickerIntervalDuration time.Duration
Stream chan *models.DecisionsStreamResponse
APIClient *apiclient.ApiClient
UserAgent string
Opts apiclient.DecisionsStreamOpts
}
// Config() fills the struct with configuration values from a file. It is not
// aware of .yaml.local files so it is recommended to use ConfigReader() instead
func (b *StreamBouncer) Config(configPath string) error {
reader, err := os.Open(configPath)
if err != nil {
return fmt.Errorf("unable to read config file '%s': %w", configPath, err)
}
return b.ConfigReader(reader)
}
func (b *StreamBouncer) ConfigReader(configReader io.Reader) error {
content, err := io.ReadAll(configReader)
if err != nil {
return fmt.Errorf("unable to read configuration: %w", err)
}
err = yaml.Unmarshal(content, b)
if err != nil {
return fmt.Errorf("unable to unmarshal config file: %w", err)
}
if b.Scopes != nil {
b.Opts.Scopes = strings.Join(b.Scopes, ",")
}
if b.ScenariosContaining != nil {
b.Opts.ScenariosContaining = strings.Join(b.ScenariosContaining, ",")
}
if b.ScenariosNotContaining != nil {
b.Opts.ScenariosNotContaining = strings.Join(b.ScenariosNotContaining, ",")
}
if b.Origins != nil {
b.Opts.Origins = strings.Join(b.Origins, ",")
}
if b.APIUrl == "" {
return fmt.Errorf("config does not contain LAPI url")
}
if !strings.HasSuffix(b.APIUrl, "/") {
b.APIUrl += "/"
}
if b.APIKey == "" && b.CertPath == "" && b.KeyPath == "" {
return fmt.Errorf("config does not contain LAPI key or certificate")
}
return nil
}
func (b *StreamBouncer) Init() error {
var (
err error
apiURL *url.URL
client *http.Client
caCertPool *x509.CertPool
ok bool
InsecureSkipVerify bool
)
b.Stream = make(chan *models.DecisionsStreamResponse)
apiURL, err = url.Parse(b.APIUrl)
if err != nil {
return fmt.Errorf("local API Url '%s': %w", b.APIUrl, err)
}
if b.InsecureSkipVerify == nil {
InsecureSkipVerify = false
} else {
InsecureSkipVerify = *b.InsecureSkipVerify
}
if b.CAPath != "" {
log.Infof("Using CA cert '%s'", b.CAPath)
caCert, err := os.ReadFile(b.CAPath)
if err != nil {
return fmt.Errorf("unable to load CA certificate '%s': %w", b.CAPath, err)
}
caCertPool = x509.NewCertPool()
caCertPool.AppendCertsFromPEM(caCert)
} else {
caCertPool = nil
}
if b.APIKey != "" {
log.Infof("Using API key auth")
var transport *apiclient.APIKeyTransport
if apiURL.Scheme == "https" {
transport = &apiclient.APIKeyTransport{
APIKey: b.APIKey,
Transport: &http.Transport{
TLSClientConfig: &tls.Config{
RootCAs: caCertPool,
InsecureSkipVerify: InsecureSkipVerify,
},
},
}
} else {
transport = &apiclient.APIKeyTransport{
APIKey: b.APIKey,
}
}
client = transport.Client()
ok = true
}
if b.CertPath != "" && b.KeyPath != "" {
var certificate tls.Certificate
log.Infof("Using cert auth with cert '%s' and key '%s'", b.CertPath, b.KeyPath)
certificate, err = tls.LoadX509KeyPair(b.CertPath, b.KeyPath)
if err != nil {
return fmt.Errorf("unable to load certificate '%s' and key '%s': %w", b.CertPath, b.KeyPath, err)
}
client = &http.Client{}
client.Transport = &http.Transport{
TLSClientConfig: &tls.Config{
RootCAs: caCertPool,
Certificates: []tls.Certificate{certificate},
InsecureSkipVerify: InsecureSkipVerify,
},
}
ok = true
}
if !ok {
return errors.New("no API key nor certificate provided")
}
b.APIClient, err = apiclient.NewDefaultClient(apiURL, "v1", b.UserAgent, client)
if err != nil {
return fmt.Errorf("api client init: %w", err)
}
b.TickerIntervalDuration, err = time.ParseDuration(b.TickerInterval)
if err != nil {
return fmt.Errorf("unable to parse duration '%s': %w", b.TickerInterval, err)
}
return nil
}
func (b *StreamBouncer) Run() {
ticker := time.NewTicker(b.TickerIntervalDuration)
b.Opts.Startup = true
getDecisionStream := func() (*models.DecisionsStreamResponse, *apiclient.Response, error) {
data, resp, err := b.APIClient.Decisions.GetStream(context.Background(), b.Opts)
TotalLAPICalls.Inc()
if err != nil {
TotalLAPIError.Inc()
}
return data, resp, err
}
data, resp, err := getDecisionStream()
if resp != nil && resp.Response != nil {
resp.Response.Body.Close()
}
if err != nil {
log.Errorf(err.Error())
return
}
b.Stream <- data
b.Opts.Startup = false
for range ticker.C {
data, resp, err := getDecisionStream()
if err != nil {
if resp != nil && resp.Response != nil {
resp.Response.Body.Close()
}
log.Errorf(err.Error())
continue
}
if resp != nil && resp.Response != nil {
resp.Response.Body.Close()
}
b.Stream <- data
}
}
|