* Cache decrypted securejsondata
* Models: Add datasource cache tests
(cherry picked from commit 3fc5f4552a)
159 lines
3.6 KiB
Go
159 lines
3.6 KiB
Go
package models
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"crypto/x509"
|
|
"errors"
|
|
"net"
|
|
"net/http"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/grafana/grafana/pkg/setting"
|
|
)
|
|
|
|
type proxyTransportCache struct {
|
|
cache map[int64]cachedTransport
|
|
sync.Mutex
|
|
}
|
|
|
|
type cachedTransport struct {
|
|
updated time.Time
|
|
|
|
*http.Transport
|
|
}
|
|
|
|
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: 30 * time.Second,
|
|
Transport: transport,
|
|
}, nil
|
|
}
|
|
|
|
func (ds *DataSource) GetHttpTransport() (*http.Transport, error) {
|
|
ptc.Lock()
|
|
defer ptc.Unlock()
|
|
|
|
if t, present := ptc.cache[ds.Id]; present && ds.Updated.Equal(t.updated) {
|
|
return t.Transport, nil
|
|
}
|
|
|
|
tlsConfig, err := ds.GetTLSConfig()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
tlsConfig.Renegotiation = tls.RenegotiateFreelyAsClient
|
|
|
|
transport := &http.Transport{
|
|
TLSClientConfig: tlsConfig,
|
|
Proxy: http.ProxyFromEnvironment,
|
|
Dial: (&net.Dialer{
|
|
Timeout: time.Duration(setting.DataProxyTimeout) * time.Second,
|
|
KeepAlive: 30 * time.Second,
|
|
}).Dial,
|
|
TLSHandshakeTimeout: 10 * time.Second,
|
|
ExpectContinueTimeout: 1 * time.Second,
|
|
MaxIdleConns: 100,
|
|
IdleConnTimeout: 90 * time.Second,
|
|
}
|
|
|
|
ptc.cache[ds.Id] = cachedTransport{
|
|
Transport: transport,
|
|
updated: ds.Updated,
|
|
}
|
|
|
|
return transport, nil
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
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)
|
|
}
|