2017-04-13 20:48:32 +00:00
|
|
|
package mysql
|
|
|
|
|
|
|
|
import (
|
2017-12-14 22:03:11 +00:00
|
|
|
"context"
|
2017-04-13 20:48:32 +00:00
|
|
|
"database/sql"
|
2018-03-21 19:05:56 +00:00
|
|
|
"errors"
|
2020-10-09 17:32:38 +00:00
|
|
|
"fmt"
|
2017-04-13 20:48:32 +00:00
|
|
|
"strings"
|
|
|
|
|
2020-10-09 17:32:38 +00:00
|
|
|
"github.com/hashicorp/errwrap"
|
2017-05-02 21:40:11 +00:00
|
|
|
"github.com/hashicorp/vault/api"
|
2019-04-15 18:10:07 +00:00
|
|
|
"github.com/hashicorp/vault/sdk/database/helper/credsutil"
|
|
|
|
"github.com/hashicorp/vault/sdk/database/helper/dbutil"
|
2020-10-09 17:32:38 +00:00
|
|
|
"github.com/hashicorp/vault/sdk/database/newdbplugin"
|
2019-04-13 07:44:06 +00:00
|
|
|
"github.com/hashicorp/vault/sdk/helper/strutil"
|
2020-10-09 17:32:38 +00:00
|
|
|
|
|
|
|
stdmysql "github.com/go-sql-driver/mysql"
|
2017-04-13 20:48:32 +00:00
|
|
|
)
|
|
|
|
|
2017-05-03 20:33:56 +00:00
|
|
|
const (
|
|
|
|
defaultMysqlRevocationStmts = `
|
|
|
|
REVOKE ALL PRIVILEGES, GRANT OPTION FROM '{{name}}'@'%';
|
|
|
|
DROP USER '{{name}}'@'%'
|
|
|
|
`
|
2018-03-21 19:05:56 +00:00
|
|
|
|
2019-07-05 18:52:56 +00:00
|
|
|
defaultMySQLRotateCredentialsSQL = `
|
2018-03-21 19:05:56 +00:00
|
|
|
ALTER USER '{{username}}'@'%' IDENTIFIED BY '{{password}}';
|
|
|
|
`
|
|
|
|
|
2017-05-03 20:33:56 +00:00
|
|
|
mySQLTypeName = "mysql"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2017-06-06 13:49:49 +00:00
|
|
|
MetadataLen int = 10
|
|
|
|
LegacyMetadataLen int = 4
|
|
|
|
UsernameLen int = 32
|
|
|
|
LegacyUsernameLen int = 16
|
2017-05-03 20:33:56 +00:00
|
|
|
)
|
2017-04-13 20:48:32 +00:00
|
|
|
|
2020-10-09 17:32:38 +00:00
|
|
|
var _ newdbplugin.Database = (*MySQL)(nil)
|
2017-12-14 22:03:11 +00:00
|
|
|
|
2017-04-13 20:48:32 +00:00
|
|
|
type MySQL struct {
|
2020-06-17 18:46:01 +00:00
|
|
|
*mySQLConnectionProducer
|
2020-10-09 17:32:38 +00:00
|
|
|
legacy bool
|
2017-04-13 20:48:32 +00:00
|
|
|
}
|
|
|
|
|
2017-04-21 16:10:26 +00:00
|
|
|
// New implements builtinplugins.BuiltinFactory
|
2020-10-09 17:32:38 +00:00
|
|
|
func New(legacy bool) func() (interface{}, error) {
|
2017-05-03 20:33:56 +00:00
|
|
|
return func() (interface{}, error) {
|
2020-10-09 17:32:38 +00:00
|
|
|
db := new(legacy)
|
2018-03-21 19:05:56 +00:00
|
|
|
// Wrap the plugin with middleware to sanitize errors
|
2020-10-09 17:32:38 +00:00
|
|
|
dbType := newdbplugin.NewDatabaseErrorSanitizerMiddleware(db, db.SecretValues)
|
2017-05-03 20:33:56 +00:00
|
|
|
|
|
|
|
return dbType, nil
|
2017-04-13 20:48:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-09 17:32:38 +00:00
|
|
|
func new(legacy bool) *MySQL {
|
2020-06-17 18:46:01 +00:00
|
|
|
connProducer := &mySQLConnectionProducer{}
|
2018-03-21 19:05:56 +00:00
|
|
|
|
|
|
|
return &MySQL{
|
2020-06-17 18:46:01 +00:00
|
|
|
mySQLConnectionProducer: connProducer,
|
2020-10-09 17:32:38 +00:00
|
|
|
legacy: legacy,
|
2018-03-21 19:05:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-13 20:48:32 +00:00
|
|
|
// Run instantiates a MySQL object, and runs the RPC server for the plugin
|
2017-05-02 21:40:11 +00:00
|
|
|
func Run(apiTLSConfig *api.TLSConfig) error {
|
2017-08-11 01:28:18 +00:00
|
|
|
return runCommon(false, apiTLSConfig)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run instantiates a MySQL object, and runs the RPC server for the plugin
|
|
|
|
func RunLegacy(apiTLSConfig *api.TLSConfig) error {
|
|
|
|
return runCommon(true, apiTLSConfig)
|
|
|
|
}
|
|
|
|
|
|
|
|
func runCommon(legacy bool, apiTLSConfig *api.TLSConfig) error {
|
|
|
|
var f func() (interface{}, error)
|
2020-10-09 17:32:38 +00:00
|
|
|
f = New(legacy)
|
2017-05-03 20:33:56 +00:00
|
|
|
dbType, err := f()
|
2017-04-21 01:46:41 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-04-13 20:48:32 +00:00
|
|
|
|
2020-10-09 17:32:38 +00:00
|
|
|
newdbplugin.Serve(dbType.(newdbplugin.Database), api.VaultPluginTLSProvider(apiTLSConfig))
|
2017-04-13 20:48:32 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *MySQL) Type() (string, error) {
|
|
|
|
return mySQLTypeName, nil
|
|
|
|
}
|
|
|
|
|
2017-12-14 22:03:11 +00:00
|
|
|
func (m *MySQL) getConnection(ctx context.Context) (*sql.DB, error) {
|
|
|
|
db, err := m.Connection(ctx)
|
2017-04-13 20:48:32 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return db.(*sql.DB), nil
|
|
|
|
}
|
|
|
|
|
2020-10-09 17:32:38 +00:00
|
|
|
func (m *MySQL) Initialize(ctx context.Context, req newdbplugin.InitializeRequest) (newdbplugin.InitializeResponse, error) {
|
|
|
|
err := m.mySQLConnectionProducer.Initialize(ctx, req.Config, req.VerifyConnection)
|
2017-04-13 20:48:32 +00:00
|
|
|
if err != nil {
|
2020-10-09 17:32:38 +00:00
|
|
|
return newdbplugin.InitializeResponse{}, err
|
2017-04-13 20:48:32 +00:00
|
|
|
}
|
2020-10-09 17:32:38 +00:00
|
|
|
resp := newdbplugin.InitializeResponse{
|
|
|
|
Config: req.Config,
|
|
|
|
}
|
|
|
|
return resp, nil
|
|
|
|
}
|
2017-04-13 20:48:32 +00:00
|
|
|
|
2020-10-09 17:32:38 +00:00
|
|
|
func (m *MySQL) NewUser(ctx context.Context, req newdbplugin.NewUserRequest) (newdbplugin.NewUserResponse, error) {
|
|
|
|
if len(req.Statements.Commands) == 0 {
|
|
|
|
return newdbplugin.NewUserResponse{}, dbutil.ErrEmptyCreationStatement
|
2017-04-13 20:48:32 +00:00
|
|
|
}
|
|
|
|
|
2020-10-09 17:32:38 +00:00
|
|
|
username, err := m.generateUsername(req)
|
2017-04-13 20:48:32 +00:00
|
|
|
if err != nil {
|
2020-10-09 17:32:38 +00:00
|
|
|
return newdbplugin.NewUserResponse{}, err
|
2017-04-13 20:48:32 +00:00
|
|
|
}
|
|
|
|
|
2020-10-09 17:32:38 +00:00
|
|
|
password := req.Password
|
|
|
|
|
|
|
|
expirationStr := req.Expiration.Format("2006-01-02 15:04:05-0700")
|
|
|
|
|
2019-07-05 18:52:56 +00:00
|
|
|
queryMap := map[string]string{
|
|
|
|
"name": username,
|
2020-02-03 20:57:28 +00:00
|
|
|
"username": username,
|
2019-07-05 18:52:56 +00:00
|
|
|
"password": password,
|
|
|
|
"expiration": expirationStr,
|
2017-04-13 20:48:32 +00:00
|
|
|
}
|
|
|
|
|
2020-10-09 17:32:38 +00:00
|
|
|
if err := m.executePreparedStatementsWithMap(ctx, req.Statements.Commands, queryMap); err != nil {
|
|
|
|
return newdbplugin.NewUserResponse{}, err
|
2017-04-13 20:48:32 +00:00
|
|
|
}
|
2020-10-09 17:32:38 +00:00
|
|
|
|
|
|
|
resp := newdbplugin.NewUserResponse{
|
|
|
|
Username: username,
|
|
|
|
}
|
|
|
|
return resp, nil
|
2017-04-13 20:48:32 +00:00
|
|
|
}
|
|
|
|
|
2020-10-09 17:32:38 +00:00
|
|
|
func (m *MySQL) generateUsername(req newdbplugin.NewUserRequest) (string, error) {
|
|
|
|
var dispNameLen, roleNameLen, maxLen int
|
|
|
|
|
|
|
|
if m.legacy {
|
|
|
|
dispNameLen = LegacyUsernameLen
|
|
|
|
roleNameLen = LegacyMetadataLen
|
|
|
|
maxLen = LegacyUsernameLen
|
|
|
|
} else {
|
|
|
|
dispNameLen = UsernameLen
|
|
|
|
roleNameLen = MetadataLen
|
|
|
|
maxLen = UsernameLen
|
|
|
|
}
|
|
|
|
|
|
|
|
username, err := credsutil.GenerateUsername(
|
|
|
|
credsutil.DisplayName(req.UsernameConfig.DisplayName, dispNameLen),
|
|
|
|
credsutil.RoleName(req.UsernameConfig.RoleName, roleNameLen),
|
|
|
|
credsutil.MaxLength(maxLen),
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return "", errwrap.Wrapf("error generating username: {{err}}", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return username, nil
|
2017-04-13 20:48:32 +00:00
|
|
|
}
|
|
|
|
|
2020-10-09 17:32:38 +00:00
|
|
|
func (m *MySQL) DeleteUser(ctx context.Context, req newdbplugin.DeleteUserRequest) (newdbplugin.DeleteUserResponse, error) {
|
2017-04-13 20:48:32 +00:00
|
|
|
// Grab the read lock
|
|
|
|
m.Lock()
|
|
|
|
defer m.Unlock()
|
|
|
|
|
|
|
|
// Get the connection
|
2017-12-14 22:03:11 +00:00
|
|
|
db, err := m.getConnection(ctx)
|
2017-04-13 20:48:32 +00:00
|
|
|
if err != nil {
|
2020-10-09 17:32:38 +00:00
|
|
|
return newdbplugin.DeleteUserResponse{}, err
|
2017-04-13 20:48:32 +00:00
|
|
|
}
|
|
|
|
|
2020-10-09 17:32:38 +00:00
|
|
|
revocationStmts := req.Statements.Commands
|
2017-04-13 20:48:32 +00:00
|
|
|
// Use a default SQL statement for revocation if one cannot be fetched from the role
|
2018-03-21 19:05:56 +00:00
|
|
|
if len(revocationStmts) == 0 {
|
|
|
|
revocationStmts = []string{defaultMysqlRevocationStmts}
|
2017-04-13 20:48:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Start a transaction
|
2017-12-14 22:03:11 +00:00
|
|
|
tx, err := db.BeginTx(ctx, nil)
|
2017-04-13 20:48:32 +00:00
|
|
|
if err != nil {
|
2020-10-09 17:32:38 +00:00
|
|
|
return newdbplugin.DeleteUserResponse{}, err
|
2017-04-13 20:48:32 +00:00
|
|
|
}
|
|
|
|
defer tx.Rollback()
|
|
|
|
|
2018-03-21 19:05:56 +00:00
|
|
|
for _, stmt := range revocationStmts {
|
|
|
|
for _, query := range strutil.ParseArbitraryStringSlice(stmt, ";") {
|
|
|
|
query = strings.TrimSpace(query)
|
|
|
|
if len(query) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
2017-04-13 20:48:32 +00:00
|
|
|
|
2018-03-21 19:05:56 +00:00
|
|
|
// This is not a prepared statement because not all commands are supported
|
|
|
|
// 1295: This command is not supported in the prepared statement protocol yet
|
|
|
|
// Reference https://mariadb.com/kb/en/mariadb/prepare-statement/
|
2020-10-09 17:32:38 +00:00
|
|
|
query = strings.Replace(query, "{{name}}", req.Username, -1)
|
|
|
|
query = strings.Replace(query, "{{username}}", req.Username, -1)
|
2018-03-21 19:05:56 +00:00
|
|
|
_, err = tx.ExecContext(ctx, query)
|
|
|
|
if err != nil {
|
2020-10-09 17:32:38 +00:00
|
|
|
return newdbplugin.DeleteUserResponse{}, err
|
2018-03-21 19:05:56 +00:00
|
|
|
}
|
2017-04-13 20:48:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Commit the transaction
|
2020-10-09 17:32:38 +00:00
|
|
|
err = tx.Commit()
|
|
|
|
return newdbplugin.DeleteUserResponse{}, err
|
2017-04-13 20:48:32 +00:00
|
|
|
}
|
2018-03-21 19:05:56 +00:00
|
|
|
|
2020-10-09 17:32:38 +00:00
|
|
|
func (m *MySQL) UpdateUser(ctx context.Context, req newdbplugin.UpdateUserRequest) (newdbplugin.UpdateUserResponse, error) {
|
|
|
|
if req.Password == nil && req.Expiration == nil {
|
|
|
|
return newdbplugin.UpdateUserResponse{}, fmt.Errorf("no change requested")
|
2018-03-21 19:05:56 +00:00
|
|
|
}
|
|
|
|
|
2020-10-09 17:32:38 +00:00
|
|
|
if req.Password != nil {
|
|
|
|
err := m.changeUserPassword(ctx, req.Username, req.Password.NewPassword, req.Password.Statements.Commands)
|
|
|
|
if err != nil {
|
|
|
|
return newdbplugin.UpdateUserResponse{}, fmt.Errorf("failed to change password: %w", err)
|
2018-03-21 19:05:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-09 17:32:38 +00:00
|
|
|
// Expiration change/update is currently a no-op
|
2018-03-21 19:05:56 +00:00
|
|
|
|
2020-10-09 17:32:38 +00:00
|
|
|
return newdbplugin.UpdateUserResponse{}, nil
|
2018-03-21 19:05:56 +00:00
|
|
|
}
|
2019-07-05 18:52:56 +00:00
|
|
|
|
2020-10-09 17:32:38 +00:00
|
|
|
func (m *MySQL) changeUserPassword(ctx context.Context, username, password string, rotateStatements []string) error {
|
|
|
|
if username == "" || password == "" {
|
|
|
|
return errors.New("must provide both username and password")
|
2019-07-05 18:52:56 +00:00
|
|
|
}
|
|
|
|
|
2020-10-09 17:32:38 +00:00
|
|
|
if len(rotateStatements) == 0 {
|
|
|
|
rotateStatements = []string{defaultMySQLRotateCredentialsSQL}
|
2019-07-05 18:52:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
queryMap := map[string]string{
|
|
|
|
"name": username,
|
2020-02-03 20:57:28 +00:00
|
|
|
"username": username,
|
2019-07-05 18:52:56 +00:00
|
|
|
"password": password,
|
|
|
|
}
|
|
|
|
|
2020-10-09 17:32:38 +00:00
|
|
|
if err := m.executePreparedStatementsWithMap(ctx, rotateStatements, queryMap); err != nil {
|
|
|
|
return err
|
2019-07-05 18:52:56 +00:00
|
|
|
}
|
2020-10-09 17:32:38 +00:00
|
|
|
return nil
|
2019-07-05 18:52:56 +00:00
|
|
|
}
|
|
|
|
|
2020-10-09 17:32:38 +00:00
|
|
|
// executePreparedStatementsWithMap loops through the given templated SQL statements and
|
2020-02-13 22:11:33 +00:00
|
|
|
// applies the map to them, interpolating values into the templates, returning
|
|
|
|
// the resulting username and password
|
2020-10-09 17:32:38 +00:00
|
|
|
func (m *MySQL) executePreparedStatementsWithMap(ctx context.Context, statements []string, queryMap map[string]string) error {
|
2019-07-05 18:52:56 +00:00
|
|
|
// Grab the lock
|
|
|
|
m.Lock()
|
|
|
|
defer m.Unlock()
|
|
|
|
|
|
|
|
// Get the connection
|
|
|
|
db, err := m.getConnection(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// Start a transaction
|
|
|
|
tx, err := db.BeginTx(ctx, nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
_ = tx.Rollback()
|
|
|
|
}()
|
|
|
|
|
|
|
|
// Execute each query
|
|
|
|
for _, stmt := range statements {
|
|
|
|
for _, query := range strutil.ParseArbitraryStringSlice(stmt, ";") {
|
|
|
|
query = strings.TrimSpace(query)
|
|
|
|
if len(query) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
query = dbutil.QueryHelper(query, queryMap)
|
|
|
|
|
|
|
|
stmt, err := tx.PrepareContext(ctx, query)
|
|
|
|
if err != nil {
|
|
|
|
// If the error code we get back is Error 1295: This command is not
|
|
|
|
// supported in the prepared statement protocol yet, we will execute
|
|
|
|
// the statement without preparing it. This allows the caller to
|
|
|
|
// manually prepare statements, as well as run other not yet
|
|
|
|
// prepare supported commands. If there is no error when running we
|
|
|
|
// will continue to the next statement.
|
|
|
|
if e, ok := err.(*stdmysql.MySQLError); ok && e.Number == 1295 {
|
|
|
|
_, err = tx.ExecContext(ctx, query)
|
|
|
|
if err != nil {
|
|
|
|
stmt.Close()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if _, err := stmt.ExecContext(ctx); err != nil {
|
|
|
|
stmt.Close()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
stmt.Close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Commit the transaction
|
|
|
|
if err := tx.Commit(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|