mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
062d255124
* replace ioutil.ReadFile -> os.ReadFile * replace ioutil.ReadAll -> io.ReadAll * replace ioutil.TempFile -> os.CreateTemp * replace ioutil.NopCloser -> io.NopCloser * replace ioutil.WriteFile -> os.WriteFile * replace ioutil.TempDir -> os.MkdirTemp * replace ioutil.Discard -> io.Discard
44 lines
1.2 KiB
Go
44 lines
1.2 KiB
Go
package sqlstore
|
|
|
|
import (
|
|
"crypto/tls"
|
|
"crypto/x509"
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/grafana/grafana/pkg/infra/log"
|
|
)
|
|
|
|
var tlslog = log.New("tls_mysql")
|
|
|
|
func makeCert(config DatabaseConfig) (*tls.Config, error) {
|
|
rootCertPool := x509.NewCertPool()
|
|
pem, err := os.ReadFile(config.CaCertPath)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not read DB CA Cert path %q: %w", config.CaCertPath, err)
|
|
}
|
|
if ok := rootCertPool.AppendCertsFromPEM(pem); !ok {
|
|
return nil, err
|
|
}
|
|
|
|
tlsConfig := &tls.Config{
|
|
RootCAs: rootCertPool,
|
|
}
|
|
if config.ClientCertPath != "" && config.ClientKeyPath != "" {
|
|
tlsConfig.GetClientCertificate = func(*tls.CertificateRequestInfo) (*tls.Certificate, error) {
|
|
tlslog.Debug("Loading client certificate")
|
|
cert, err := tls.LoadX509KeyPair(config.ClientCertPath, config.ClientKeyPath)
|
|
return &cert, err
|
|
}
|
|
}
|
|
tlsConfig.ServerName = config.ServerCertName
|
|
if config.SslMode == "skip-verify" {
|
|
tlsConfig.InsecureSkipVerify = true
|
|
}
|
|
// Return more meaningful error before it is too late
|
|
if config.ServerCertName == "" && !tlsConfig.InsecureSkipVerify {
|
|
return nil, fmt.Errorf("server_cert_name is missing. Consider using ssl_mode = skip-verify")
|
|
}
|
|
return tlsConfig, nil
|
|
}
|