Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Separate SQL session management into a dedicated file #2391

Merged
merged 2 commits into from
Jan 19, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
106 changes: 8 additions & 98 deletions common/persistence/sql/sqlplugin/mysql/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,33 +25,20 @@
package mysql

import (
"strings"

"github.com/go-sql-driver/mysql"
"github.com/iancoleman/strcase"
"github.com/jmoiron/sqlx"

"go.temporal.io/server/common/config"
"go.temporal.io/server/common/persistence/sql"
"go.temporal.io/server/common/persistence/sql/sqlplugin"
"go.temporal.io/server/common/persistence/sql/sqlplugin/mysql/session"
"go.temporal.io/server/common/resolver"
)

const (
// PluginName is the name of the plugin
PluginName = "mysql"
isolationLevelAttrName = "transaction_isolation"
isolationLevelAttrNameLegacy = "tx_isolation"
defaultIsolationLevel = "'READ-COMMITTED'"
// customTLSName is the name used if a custom tls configuration is created
customTLSName = "tls-custom"
PluginName = "mysql"
)

var dsnAttrOverrides = map[string]string{
"parseTime": "true",
"clientFoundRows": "true",
}

type plugin struct{}

var _ sqlplugin.Plugin = (*plugin)(nil)
Expand Down Expand Up @@ -92,90 +79,13 @@ func (p *plugin) CreateAdminDB(
// underlying SQL database. The returned object is to tied to a single
// SQL database and the object can be used to perform CRUD operations on
// the tables in the database
func (p *plugin) createDBConnection(cfg *config.SQL, r resolver.ServiceResolver) (*sqlx.DB, error) {
err := registerTLSConfig(cfg)
if err != nil {
return nil, err
}

db, err := sqlx.Connect(PluginName, buildDSN(cfg, r))
func (p *plugin) createDBConnection(
cfg *config.SQL,
resolver resolver.ServiceResolver,
) (*sqlx.DB, error) {
mysqlSession, err := session.NewSession(cfg, resolver)
if err != nil {
return nil, err
}
if cfg.MaxConns > 0 {
db.SetMaxOpenConns(cfg.MaxConns)
}
if cfg.MaxIdleConns > 0 {
db.SetMaxIdleConns(cfg.MaxIdleConns)
}
if cfg.MaxConnLifetime > 0 {
db.SetConnMaxLifetime(cfg.MaxConnLifetime)
}

// Maps struct names in CamelCase to snake without need for db struct tags.
db.MapperFunc(strcase.ToSnake)
return db, nil
}

func buildDSN(cfg *config.SQL, r resolver.ServiceResolver) string {
mysqlConfig := mysql.NewConfig()

mysqlConfig.User = cfg.User
mysqlConfig.Passwd = cfg.Password
mysqlConfig.Addr = r.Resolve(cfg.ConnectAddr)[0]
mysqlConfig.DBName = cfg.DatabaseName
mysqlConfig.Net = cfg.ConnectProtocol
mysqlConfig.Params = buildDSNAttrs(cfg)

// https://github.com/go-sql-driver/mysql/blob/v1.5.0/dsn.go#L104-L106
// https://github.com/go-sql-driver/mysql/blob/v1.5.0/dsn.go#L182-L189
if mysqlConfig.Net == "" {
mysqlConfig.Net = "tcp"
}

// https://github.com/go-sql-driver/mysql#rejectreadonly
// https://github.com/temporalio/temporal/issues/1703
mysqlConfig.RejectReadOnly = true

return mysqlConfig.FormatDSN()
}

func buildDSNAttrs(cfg *config.SQL) map[string]string {
attrs := make(map[string]string, len(dsnAttrOverrides)+len(cfg.ConnectAttributes)+1)
for k, v := range cfg.ConnectAttributes {
k1, v1 := sanitizeAttr(k, v)
attrs[k1] = v1
}

// only override isolation level if not specified
if !hasAttr(attrs, isolationLevelAttrName) &&
!hasAttr(attrs, isolationLevelAttrNameLegacy) {
attrs[isolationLevelAttrName] = defaultIsolationLevel
}

// these attrs are always overriden
for k, v := range dsnAttrOverrides {
attrs[k] = v
}

return attrs
}

func hasAttr(attrs map[string]string, key string) bool {
_, ok := attrs[key]
return ok
}

func sanitizeAttr(inkey string, invalue string) (string, string) {
key := strings.ToLower(strings.TrimSpace(inkey))
value := strings.ToLower(strings.TrimSpace(invalue))
switch key {
case isolationLevelAttrName, isolationLevelAttrNameLegacy:
if value[0] != '\'' { // mysql sys variable values must be enclosed in single quotes
value = "'" + value + "'"
}
return key, value
default:
return inkey, invalue
}
return mysqlSession.DB, nil
}
221 changes: 221 additions & 0 deletions common/persistence/sql/sqlplugin/mysql/session/session.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,221 @@
// The MIT License
//
// Copyright (c) 2020 Temporal Technologies Inc. All rights reserved.
//
// Copyright (c) 2020 Uber Technologies, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

package session

import (
"crypto/tls"
"crypto/x509"
"fmt"
"os"
"strings"

"github.com/go-sql-driver/mysql"
"github.com/iancoleman/strcase"
"github.com/jmoiron/sqlx"

"go.temporal.io/server/common/auth"
"go.temporal.io/server/common/config"
"go.temporal.io/server/common/resolver"
)

const (
driverName = "mysql"

isolationLevelAttrName = "transaction_isolation"
isolationLevelAttrNameLegacy = "tx_isolation"
defaultIsolationLevel = "'READ-COMMITTED'"
// customTLSName is the name used if a custom tls configuration is created
customTLSName = "tls-custom"
)

var dsnAttrOverrides = map[string]string{
"parseTime": "true",
"clientFoundRows": "true",
}

type Session struct {
*sqlx.DB
}

func NewSession(
cfg *config.SQL,
resolver resolver.ServiceResolver,
) (*Session, error) {
db, err := createConnection(cfg, resolver)
if err != nil {
return nil, err
}
return &Session{DB: db}, nil
}

func (s *Session) Close() {
if s.DB != nil {
_ = s.DB.Close()
}
}

func createConnection(
cfg *config.SQL,
resolver resolver.ServiceResolver,
) (*sqlx.DB, error) {
err := registerTLSConfig(cfg)
if err != nil {
return nil, err
}

db, err := sqlx.Connect(driverName, buildDSN(cfg, resolver))
if err != nil {
return nil, err
}
if cfg.MaxConns > 0 {
db.SetMaxOpenConns(cfg.MaxConns)
}
if cfg.MaxIdleConns > 0 {
db.SetMaxIdleConns(cfg.MaxIdleConns)
}
if cfg.MaxConnLifetime > 0 {
db.SetConnMaxLifetime(cfg.MaxConnLifetime)
}

// Maps struct names in CamelCase to snake without need for db struct tags.
db.MapperFunc(strcase.ToSnake)
return db, nil
}

func buildDSN(cfg *config.SQL, r resolver.ServiceResolver) string {
mysqlConfig := mysql.NewConfig()

mysqlConfig.User = cfg.User
mysqlConfig.Passwd = cfg.Password
mysqlConfig.Addr = r.Resolve(cfg.ConnectAddr)[0]
mysqlConfig.DBName = cfg.DatabaseName
mysqlConfig.Net = cfg.ConnectProtocol
mysqlConfig.Params = buildDSNAttrs(cfg)

// https://github.com/go-sql-driver/mysql/blob/v1.5.0/dsn.go#L104-L106
// https://github.com/go-sql-driver/mysql/blob/v1.5.0/dsn.go#L182-L189
if mysqlConfig.Net == "" {
mysqlConfig.Net = "tcp"
}

// https://github.com/go-sql-driver/mysql#rejectreadonly
// https://github.com/temporalio/temporal/issues/1703
mysqlConfig.RejectReadOnly = true

return mysqlConfig.FormatDSN()
}

func buildDSNAttrs(cfg *config.SQL) map[string]string {
attrs := make(map[string]string, len(dsnAttrOverrides)+len(cfg.ConnectAttributes)+1)
for k, v := range cfg.ConnectAttributes {
k1, v1 := sanitizeAttr(k, v)
attrs[k1] = v1
}

// only override isolation level if not specified
if !hasAttr(attrs, isolationLevelAttrName) &&
!hasAttr(attrs, isolationLevelAttrNameLegacy) {
attrs[isolationLevelAttrName] = defaultIsolationLevel
}

// these attrs are always overriden
for k, v := range dsnAttrOverrides {
attrs[k] = v
}

return attrs
}

func hasAttr(attrs map[string]string, key string) bool {
_, ok := attrs[key]
return ok
}

func sanitizeAttr(inkey string, invalue string) (string, string) {
key := strings.ToLower(strings.TrimSpace(inkey))
value := strings.ToLower(strings.TrimSpace(invalue))
switch key {
case isolationLevelAttrName, isolationLevelAttrNameLegacy:
if value[0] != '\'' { // mysql sys variable values must be enclosed in single quotes
value = "'" + value + "'"
}
return key, value
default:
return inkey, invalue
}
}

func registerTLSConfig(cfg *config.SQL) error {
if cfg.TLS == nil || !cfg.TLS.Enabled {
return nil
}

// TODO: create a way to set MinVersion and CipherSuites via cfg.
tlsConfig := auth.NewTLSConfigForServer(cfg.TLS.ServerName, cfg.TLS.EnableHostVerification)

if cfg.TLS.CaFile != "" {
rootCertPool := x509.NewCertPool()
pem, err := os.ReadFile(cfg.TLS.CaFile)
if err != nil {
return fmt.Errorf("failed to load CA files: %v", err)
}
if ok := rootCertPool.AppendCertsFromPEM(pem); !ok {
return fmt.Errorf("failed to append CA file")
}
tlsConfig.RootCAs = rootCertPool
}

if cfg.TLS.CertFile != "" && cfg.TLS.KeyFile != "" {
clientCert := make([]tls.Certificate, 0, 1)
certs, err := tls.LoadX509KeyPair(
cfg.TLS.CertFile,
cfg.TLS.KeyFile,
)
if err != nil {
return fmt.Errorf("failed to load tls x509 key pair: %v", err)
}
clientCert = append(clientCert, certs)
tlsConfig.Certificates = clientCert
}

// In order to use the TLS configuration you need to register it. Once registered you use it by specifying
// `tls` in the connect attributes.
err := mysql.RegisterTLSConfig(customTLSName, tlsConfig)
if err != nil {
return fmt.Errorf("failed to register tls config: %v", err)
}

if cfg.ConnectAttributes == nil {
cfg.ConnectAttributes = map[string]string{}
}

// If no `tls` connect attribute is provided then we override it to our newly registered tls config automatically.
// This allows users to simply provide a tls config without needing to remember to also set the connect attribute
if cfg.ConnectAttributes["tls"] == "" {
cfg.ConnectAttributes["tls"] = customTLSName
}

return nil
}
Loading