mirror of
https://github.com/grafana/grafana.git
synced 2024-11-27 11:20:27 -06:00
4d2b20f727
* remove forward header and add extra steps for encoding * add comment * re-use forwarded header * fix service param * Make SDK the default auth option in UI * use SDK code instead * propagate err * refactor flow * fix prom service namespace
318 lines
9.1 KiB
Go
318 lines
9.1 KiB
Go
package models
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"crypto/x509"
|
|
"errors"
|
|
"fmt"
|
|
"net"
|
|
"net/http"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/grafana/grafana/pkg/infra/metrics/metricutil"
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
|
)
|
|
|
|
var datasourceRequestCounter = prometheus.NewCounterVec(
|
|
prometheus.CounterOpts{
|
|
Namespace: "grafana",
|
|
Name: "datasource_request_total",
|
|
Help: "A counter for outgoing requests for a datasource",
|
|
},
|
|
[]string{"datasource", "code", "method"},
|
|
)
|
|
|
|
var datasourceRequestSummary = prometheus.NewSummaryVec(
|
|
prometheus.SummaryOpts{
|
|
Namespace: "grafana",
|
|
Name: "datasource_request_duration_seconds",
|
|
Help: "summary of outgoing datasource requests sent from Grafana",
|
|
Objectives: map[float64]float64{0.5: 0.05, 0.9: 0.01, 0.99: 0.001},
|
|
}, []string{"datasource", "code", "method"},
|
|
)
|
|
|
|
var datasourceResponseSummary = prometheus.NewSummaryVec(
|
|
prometheus.SummaryOpts{
|
|
Namespace: "grafana",
|
|
Name: "datasource_response_size_bytes",
|
|
Help: "summary of datasource response sizes returned to Grafana",
|
|
Objectives: map[float64]float64{0.5: 0.05, 0.9: 0.01, 0.99: 0.001},
|
|
}, []string{"datasource"},
|
|
)
|
|
|
|
var datasourceRequestsInFlight = prometheus.NewGaugeVec(
|
|
prometheus.GaugeOpts{
|
|
Namespace: "grafana",
|
|
Name: "datasource_request_in_flight",
|
|
Help: "A gauge of outgoing datasource requests currently being sent by Grafana",
|
|
},
|
|
[]string{"datasource"},
|
|
)
|
|
|
|
func init() {
|
|
prometheus.MustRegister(datasourceRequestSummary,
|
|
datasourceRequestCounter,
|
|
datasourceRequestsInFlight,
|
|
datasourceResponseSummary)
|
|
}
|
|
|
|
type proxyTransportCache struct {
|
|
cache map[int64]cachedTransport
|
|
sync.Mutex
|
|
}
|
|
|
|
// dataSourceTransport implements http.RoundTripper (https://golang.org/pkg/net/http/#RoundTripper)
|
|
type dataSourceTransport struct {
|
|
datasourceName string
|
|
headers map[string]string
|
|
transport *http.Transport
|
|
next http.RoundTripper
|
|
}
|
|
|
|
func instrumentRoundtrip(datasourceName string, next http.RoundTripper) promhttp.RoundTripperFunc {
|
|
return promhttp.RoundTripperFunc(func(r *http.Request) (*http.Response, error) {
|
|
datasourceLabelName, err := metricutil.SanitizeLabelName(datasourceName)
|
|
// if the datasource named cannot be turned into a prometheus
|
|
// label we will skip instrumenting these metrics.
|
|
if err != nil {
|
|
return next.RoundTrip(r)
|
|
}
|
|
|
|
datasourceLabel := prometheus.Labels{"datasource": datasourceLabelName}
|
|
|
|
requestCounter := datasourceRequestCounter.MustCurryWith(datasourceLabel)
|
|
requestSummary := datasourceRequestSummary.MustCurryWith(datasourceLabel)
|
|
requestInFlight := datasourceRequestsInFlight.With(datasourceLabel)
|
|
responseSizeSummary := datasourceResponseSummary.With(datasourceLabel)
|
|
|
|
res, err := promhttp.InstrumentRoundTripperDuration(requestSummary,
|
|
promhttp.InstrumentRoundTripperCounter(requestCounter,
|
|
promhttp.InstrumentRoundTripperInFlight(requestInFlight, next))).
|
|
RoundTrip(r)
|
|
|
|
// we avoid measuring contentlength less than zero because it indicates
|
|
// that the content size is unknown. https://godoc.org/github.com/badu/http#Response
|
|
if res != nil && res.ContentLength > 0 {
|
|
responseSizeSummary.Observe(float64(res.ContentLength))
|
|
}
|
|
|
|
return res, err
|
|
})
|
|
}
|
|
|
|
// RoundTrip executes a single HTTP transaction, returning a Response for the provided Request.
|
|
func (d *dataSourceTransport) RoundTrip(req *http.Request) (*http.Response, error) {
|
|
for key, value := range d.headers {
|
|
req.Header.Set(key, value)
|
|
}
|
|
|
|
return instrumentRoundtrip(d.datasourceName, d.next).RoundTrip(req)
|
|
}
|
|
|
|
type cachedTransport struct {
|
|
updated time.Time
|
|
|
|
*dataSourceTransport
|
|
}
|
|
|
|
var ptc = proxyTransportCache{
|
|
cache: make(map[int64]cachedTransport),
|
|
}
|
|
|
|
func (ds *DataSource) GetHttpClient() (*http.Client, error) {
|
|
transport, err := ds.GetHttpTransport()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &http.Client{
|
|
Timeout: time.Duration(setting.DataProxyTimeout) * time.Second,
|
|
Transport: transport,
|
|
}, nil
|
|
}
|
|
|
|
// Creates a HTTP Transport middleware chain
|
|
func (ds *DataSource) GetHttpTransport() (*dataSourceTransport, error) {
|
|
ptc.Lock()
|
|
defer ptc.Unlock()
|
|
|
|
if t, present := ptc.cache[ds.Id]; present && ds.Updated.Equal(t.updated) {
|
|
return t.dataSourceTransport, nil
|
|
}
|
|
|
|
tlsConfig, err := ds.GetTLSConfig()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
tlsConfig.Renegotiation = tls.RenegotiateFreelyAsClient
|
|
|
|
// Create transport which adds all
|
|
customHeaders := ds.getCustomHeaders()
|
|
transport := &http.Transport{
|
|
TLSClientConfig: tlsConfig,
|
|
Proxy: http.ProxyFromEnvironment,
|
|
Dial: (&net.Dialer{
|
|
Timeout: time.Duration(setting.DataProxyTimeout) * time.Second,
|
|
KeepAlive: time.Duration(setting.DataProxyKeepAlive) * time.Second,
|
|
}).Dial,
|
|
TLSHandshakeTimeout: time.Duration(setting.DataProxyTLSHandshakeTimeout) * time.Second,
|
|
ExpectContinueTimeout: time.Duration(setting.DataProxyExpectContinueTimeout) * time.Second,
|
|
MaxIdleConns: setting.DataProxyMaxIdleConns,
|
|
IdleConnTimeout: time.Duration(setting.DataProxyIdleConnTimeout) * time.Second,
|
|
}
|
|
|
|
// Set default next round tripper to the default transport
|
|
next := http.RoundTripper(transport)
|
|
|
|
// Add SigV4 middleware if enabled, which will then defer to the default transport
|
|
if ds.JsonData != nil && ds.JsonData.Get("sigV4Auth").MustBool() && setting.SigV4AuthEnabled {
|
|
next = ds.sigV4Middleware(transport)
|
|
}
|
|
|
|
dsTransport := &dataSourceTransport{
|
|
datasourceName: ds.Name,
|
|
headers: customHeaders,
|
|
transport: transport,
|
|
next: next,
|
|
}
|
|
|
|
ptc.cache[ds.Id] = cachedTransport{
|
|
dataSourceTransport: dsTransport,
|
|
updated: ds.Updated,
|
|
}
|
|
|
|
return dsTransport, nil
|
|
}
|
|
|
|
func (ds *DataSource) sigV4Middleware(next http.RoundTripper) http.RoundTripper {
|
|
decrypted := ds.DecryptedValues()
|
|
|
|
return &SigV4Middleware{
|
|
Config: &Config{
|
|
DatasourceType: ds.Type,
|
|
AccessKey: decrypted["sigV4AccessKey"],
|
|
SecretKey: decrypted["sigV4SecretKey"],
|
|
Region: ds.JsonData.Get("sigV4Region").MustString(),
|
|
AssumeRoleARN: ds.JsonData.Get("sigV4AssumeRoleArn").MustString(),
|
|
AuthType: ds.JsonData.Get("sigV4AuthType").MustString(),
|
|
ExternalID: ds.JsonData.Get("sigV4ExternalId").MustString(),
|
|
Profile: ds.JsonData.Get("sigV4Profile").MustString(),
|
|
},
|
|
Next: next,
|
|
}
|
|
}
|
|
|
|
func (ds *DataSource) GetTLSConfig() (*tls.Config, error) {
|
|
var tlsSkipVerify, tlsClientAuth, tlsAuthWithCACert bool
|
|
if ds.JsonData != nil {
|
|
tlsClientAuth = ds.JsonData.Get("tlsAuth").MustBool(false)
|
|
tlsAuthWithCACert = ds.JsonData.Get("tlsAuthWithCACert").MustBool(false)
|
|
tlsSkipVerify = ds.JsonData.Get("tlsSkipVerify").MustBool(false)
|
|
}
|
|
|
|
tlsConfig := &tls.Config{
|
|
InsecureSkipVerify: tlsSkipVerify,
|
|
}
|
|
|
|
if tlsClientAuth || tlsAuthWithCACert {
|
|
decrypted := ds.SecureJsonData.Decrypt()
|
|
if tlsAuthWithCACert && len(decrypted["tlsCACert"]) > 0 {
|
|
caPool := x509.NewCertPool()
|
|
ok := caPool.AppendCertsFromPEM([]byte(decrypted["tlsCACert"]))
|
|
if !ok {
|
|
return nil, errors.New("Failed to parse TLS CA PEM certificate")
|
|
}
|
|
tlsConfig.RootCAs = caPool
|
|
}
|
|
|
|
if tlsClientAuth {
|
|
cert, err := tls.X509KeyPair([]byte(decrypted["tlsClientCert"]), []byte(decrypted["tlsClientKey"]))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
tlsConfig.Certificates = []tls.Certificate{cert}
|
|
}
|
|
}
|
|
|
|
return tlsConfig, nil
|
|
}
|
|
|
|
// getCustomHeaders returns a map with all the to be set headers
|
|
// The map key represents the HeaderName and the value represents this header's value
|
|
func (ds *DataSource) getCustomHeaders() map[string]string {
|
|
headers := make(map[string]string)
|
|
if ds.JsonData == nil {
|
|
return headers
|
|
}
|
|
|
|
decrypted := ds.SecureJsonData.Decrypt()
|
|
index := 1
|
|
for {
|
|
headerNameSuffix := fmt.Sprintf("httpHeaderName%d", index)
|
|
headerValueSuffix := fmt.Sprintf("httpHeaderValue%d", index)
|
|
|
|
key := ds.JsonData.Get(headerNameSuffix).MustString()
|
|
if key == "" {
|
|
// No (more) header values are available
|
|
break
|
|
}
|
|
|
|
if val, ok := decrypted[headerValueSuffix]; ok {
|
|
headers[key] = val
|
|
}
|
|
index++
|
|
}
|
|
|
|
return headers
|
|
}
|
|
|
|
type cachedDecryptedJSON struct {
|
|
updated time.Time
|
|
json map[string]string
|
|
}
|
|
|
|
type secureJSONDecryptionCache struct {
|
|
cache map[int64]cachedDecryptedJSON
|
|
sync.Mutex
|
|
}
|
|
|
|
var dsDecryptionCache = secureJSONDecryptionCache{
|
|
cache: make(map[int64]cachedDecryptedJSON),
|
|
}
|
|
|
|
// DecryptedValues returns cached decrypted values from secureJsonData.
|
|
func (ds *DataSource) DecryptedValues() map[string]string {
|
|
dsDecryptionCache.Lock()
|
|
defer dsDecryptionCache.Unlock()
|
|
|
|
if item, present := dsDecryptionCache.cache[ds.Id]; present && ds.Updated.Equal(item.updated) {
|
|
return item.json
|
|
}
|
|
|
|
json := ds.SecureJsonData.Decrypt()
|
|
dsDecryptionCache.cache[ds.Id] = cachedDecryptedJSON{
|
|
updated: ds.Updated,
|
|
json: json,
|
|
}
|
|
|
|
return json
|
|
}
|
|
|
|
// DecryptedValue returns cached decrypted value from cached secureJsonData.
|
|
func (ds *DataSource) DecryptedValue(key string) (string, bool) {
|
|
value, exists := ds.DecryptedValues()[key]
|
|
return value, exists
|
|
}
|
|
|
|
// ClearDSDecryptionCache clears the datasource decryption cache.
|
|
func ClearDSDecryptionCache() {
|
|
dsDecryptionCache.Lock()
|
|
defer dsDecryptionCache.Unlock()
|
|
|
|
dsDecryptionCache.cache = make(map[int64]cachedDecryptedJSON)
|
|
}
|