mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
9f0fc60477
* sql: remove xorm * sql: remove pkg/util dependency (#78821) sql: removed md5-util dependency
55 lines
1.8 KiB
Go
55 lines
1.8 KiB
Go
package mysql
|
|
|
|
import (
|
|
"context"
|
|
"crypto/md5"
|
|
"fmt"
|
|
"net"
|
|
|
|
"github.com/go-sql-driver/mysql"
|
|
sdkproxy "github.com/grafana/grafana-plugin-sdk-go/backend/proxy"
|
|
"golang.org/x/net/proxy"
|
|
)
|
|
|
|
// registerProxyDialerContext registers a new dialer context to be used by mysql when the proxy network is
|
|
// specified in the connection string
|
|
func registerProxyDialerContext(protocol, cnnstr string, opts *sdkproxy.Options) (string, error) {
|
|
// the dialer contains the true network used behind the scenes
|
|
dialer, err := getProxyDialerContext(protocol, opts)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// the dialer context can be updated everytime the datasource is updated
|
|
// have a unique network per connection string
|
|
hash := fmt.Sprintf("%x", md5.Sum([]byte(cnnstr)))
|
|
network := "proxy-" + hash
|
|
mysql.RegisterDialContext(network, dialer.DialContext)
|
|
|
|
return network, nil
|
|
}
|
|
|
|
// mySQLContextDialer turns a golang proxy driver into a MySQL proxy driver
|
|
type mySQLContextDialer struct {
|
|
dialer proxy.ContextDialer
|
|
network string
|
|
}
|
|
|
|
// getProxyDialerContext returns a context dialer that will send the request through to the secure socks proxy
|
|
func getProxyDialerContext(actualNetwork string, opts *sdkproxy.Options) (*mySQLContextDialer, error) {
|
|
dialer, err := sdkproxy.New(opts).NewSecureSocksProxyContextDialer()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
contextDialer, ok := dialer.(proxy.ContextDialer)
|
|
if !ok {
|
|
return nil, err
|
|
}
|
|
return &mySQLContextDialer{dialer: contextDialer, network: actualNetwork}, nil
|
|
}
|
|
|
|
// DialContext implements the MySQL requirements for a proxy driver, and uses the underlying golang proxy driver with the assigned network
|
|
func (d *mySQLContextDialer) DialContext(ctx context.Context, addr string) (net.Conn, error) {
|
|
return d.dialer.DialContext(ctx, d.network, addr)
|
|
}
|