2017-04-13 20:48:32 +00:00
|
|
|
package mssql
|
|
|
|
|
|
|
|
import (
|
2017-12-14 22:03:11 +00:00
|
|
|
"context"
|
2017-04-13 20:48:32 +00:00
|
|
|
"database/sql"
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2017-07-07 17:38:12 +00:00
|
|
|
_ "github.com/denisenkom/go-mssqldb"
|
2017-05-02 21:40:11 +00:00
|
|
|
"github.com/hashicorp/vault/api"
|
2017-04-13 20:48:32 +00:00
|
|
|
"github.com/hashicorp/vault/builtin/logical/database/dbplugin"
|
|
|
|
"github.com/hashicorp/vault/helper/strutil"
|
2017-05-02 21:40:11 +00:00
|
|
|
"github.com/hashicorp/vault/plugins"
|
2017-04-13 20:48:32 +00:00
|
|
|
"github.com/hashicorp/vault/plugins/helper/database/connutil"
|
|
|
|
"github.com/hashicorp/vault/plugins/helper/database/credsutil"
|
|
|
|
"github.com/hashicorp/vault/plugins/helper/database/dbutil"
|
|
|
|
)
|
|
|
|
|
|
|
|
const msSQLTypeName = "mssql"
|
|
|
|
|
2017-12-14 22:03:11 +00:00
|
|
|
var _ dbplugin.Database = &MSSQL{}
|
|
|
|
|
2017-04-24 20:59:12 +00:00
|
|
|
// MSSQL is an implementation of Database interface
|
2017-04-13 20:48:32 +00:00
|
|
|
type MSSQL struct {
|
|
|
|
connutil.ConnectionProducer
|
|
|
|
credsutil.CredentialsProducer
|
|
|
|
}
|
|
|
|
|
2017-04-26 17:34:45 +00:00
|
|
|
func New() (interface{}, error) {
|
2017-04-13 20:48:32 +00:00
|
|
|
connProducer := &connutil.SQLConnectionProducer{}
|
|
|
|
connProducer.Type = msSQLTypeName
|
|
|
|
|
|
|
|
credsProducer := &credsutil.SQLCredentialsProducer{
|
2017-04-28 05:59:22 +00:00
|
|
|
DisplayNameLen: 20,
|
2017-06-06 13:49:49 +00:00
|
|
|
RoleNameLen: 20,
|
2017-04-28 05:59:22 +00:00
|
|
|
UsernameLen: 128,
|
2017-06-06 13:49:49 +00:00
|
|
|
Separator: "-",
|
2017-04-13 20:48:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dbType := &MSSQL{
|
|
|
|
ConnectionProducer: connProducer,
|
|
|
|
CredentialsProducer: credsProducer,
|
|
|
|
}
|
|
|
|
|
2017-04-26 17:34:45 +00:00
|
|
|
return dbType, nil
|
2017-04-13 20:48:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Run instantiates a MSSQL object, and runs the RPC server for the plugin
|
2017-05-02 21:40:11 +00:00
|
|
|
func Run(apiTLSConfig *api.TLSConfig) error {
|
2017-04-26 17:34:45 +00:00
|
|
|
dbType, err := New()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-04-13 20:48:32 +00:00
|
|
|
|
2017-05-02 21:40:11 +00:00
|
|
|
plugins.Serve(dbType.(*MSSQL), apiTLSConfig)
|
2017-04-13 20:48:32 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Type returns the TypeName for this backend
|
|
|
|
func (m *MSSQL) Type() (string, error) {
|
|
|
|
return msSQLTypeName, nil
|
|
|
|
}
|
|
|
|
|
2017-12-14 22:03:11 +00:00
|
|
|
func (m *MSSQL) 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
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateUser generates the username/password on the underlying MSSQL secret backend as instructed by
|
|
|
|
// the CreationStatement provided.
|
2017-12-14 22:03:11 +00:00
|
|
|
func (m *MSSQL) CreateUser(ctx context.Context, statements dbplugin.Statements, usernameConfig dbplugin.UsernameConfig, expiration time.Time) (username string, password string, err error) {
|
2017-04-13 20:48:32 +00:00
|
|
|
// Grab the 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 {
|
|
|
|
return "", "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
if statements.CreationStatements == "" {
|
|
|
|
return "", "", dbutil.ErrEmptyCreationStatement
|
|
|
|
}
|
|
|
|
|
2017-06-06 13:49:49 +00:00
|
|
|
username, err = m.GenerateUsername(usernameConfig)
|
2017-04-13 20:48:32 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
password, err = m.GeneratePassword()
|
|
|
|
if err != nil {
|
|
|
|
return "", "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
expirationStr, err := m.GenerateExpiration(expiration)
|
|
|
|
if err != nil {
|
|
|
|
return "", "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start a transaction
|
2017-12-15 18:26:17 +00:00
|
|
|
tx, err := db.BeginTx(ctx, nil)
|
2017-04-13 20:48:32 +00:00
|
|
|
if err != nil {
|
|
|
|
return "", "", err
|
|
|
|
}
|
|
|
|
defer tx.Rollback()
|
|
|
|
|
|
|
|
// Execute each query
|
|
|
|
for _, query := range strutil.ParseArbitraryStringSlice(statements.CreationStatements, ";") {
|
|
|
|
query = strings.TrimSpace(query)
|
|
|
|
if len(query) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2017-12-15 18:26:17 +00:00
|
|
|
stmt, err := tx.PrepareContext(ctx, dbutil.QueryHelper(query, map[string]string{
|
2017-04-13 20:48:32 +00:00
|
|
|
"name": username,
|
|
|
|
"password": password,
|
|
|
|
"expiration": expirationStr,
|
|
|
|
}))
|
|
|
|
if err != nil {
|
|
|
|
return "", "", err
|
|
|
|
}
|
|
|
|
defer stmt.Close()
|
2017-12-15 18:26:17 +00:00
|
|
|
if _, err := stmt.ExecContext(ctx); err != nil {
|
2017-04-13 20:48:32 +00:00
|
|
|
return "", "", err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Commit the transaction
|
|
|
|
if err := tx.Commit(); err != nil {
|
|
|
|
return "", "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return username, password, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// RenewUser is not supported on MSSQL, so this is a no-op.
|
2017-12-14 22:03:11 +00:00
|
|
|
func (m *MSSQL) RenewUser(ctx context.Context, statements dbplugin.Statements, username string, expiration time.Time) error {
|
2017-04-13 20:48:32 +00:00
|
|
|
// NOOP
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// RevokeUser attempts to drop the specified user. It will first attempt to disable login,
|
|
|
|
// then kill pending connections from that user, and finally drop the user and login from the
|
|
|
|
// database instance.
|
2017-12-14 22:03:11 +00:00
|
|
|
func (m *MSSQL) RevokeUser(ctx context.Context, statements dbplugin.Statements, username string) error {
|
2017-04-28 05:56:06 +00:00
|
|
|
if statements.RevocationStatements == "" {
|
2017-12-14 22:03:11 +00:00
|
|
|
return m.revokeUserDefault(ctx, username)
|
2017-04-28 05:56:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get connection
|
2017-12-14 22:03:11 +00:00
|
|
|
db, err := m.getConnection(ctx)
|
2017-04-28 05:56:06 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start a transaction
|
2017-12-15 18:26:17 +00:00
|
|
|
tx, err := db.BeginTx(ctx, nil)
|
2017-04-28 05:56:06 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer tx.Rollback()
|
|
|
|
|
|
|
|
// Execute each query
|
|
|
|
for _, query := range strutil.ParseArbitraryStringSlice(statements.RevocationStatements, ";") {
|
|
|
|
query = strings.TrimSpace(query)
|
|
|
|
if len(query) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2017-12-15 18:26:17 +00:00
|
|
|
stmt, err := tx.PrepareContext(ctx, dbutil.QueryHelper(query, map[string]string{
|
2017-04-28 05:56:06 +00:00
|
|
|
"name": username,
|
|
|
|
}))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer stmt.Close()
|
2017-12-15 18:26:17 +00:00
|
|
|
if _, err := stmt.ExecContext(ctx); err != nil {
|
2017-04-28 05:56:06 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Commit the transaction
|
|
|
|
if err := tx.Commit(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-12-14 22:03:11 +00:00
|
|
|
func (m *MSSQL) revokeUserDefault(ctx context.Context, username string) error {
|
2017-04-13 20:48:32 +00:00
|
|
|
// Get 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 {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// First disable server login
|
2017-12-15 18:26:17 +00:00
|
|
|
disableStmt, err := db.PrepareContext(ctx, fmt.Sprintf("ALTER LOGIN [%s] DISABLE;", username))
|
2017-04-13 20:48:32 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer disableStmt.Close()
|
2017-12-15 18:26:17 +00:00
|
|
|
if _, err := disableStmt.ExecContext(ctx); err != nil {
|
2017-04-13 20:48:32 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Query for sessions for the login so that we can kill any outstanding
|
|
|
|
// sessions. There cannot be any active sessions before we drop the logins
|
|
|
|
// This isn't done in a transaction because even if we fail along the way,
|
|
|
|
// we want to remove as much access as possible
|
2017-12-15 18:26:17 +00:00
|
|
|
sessionStmt, err := db.PrepareContext(ctx, fmt.Sprintf(
|
2017-04-13 20:48:32 +00:00
|
|
|
"SELECT session_id FROM sys.dm_exec_sessions WHERE login_name = '%s';", username))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer sessionStmt.Close()
|
|
|
|
|
2017-12-15 18:26:17 +00:00
|
|
|
sessionRows, err := sessionStmt.QueryContext(ctx)
|
2017-04-13 20:48:32 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer sessionRows.Close()
|
|
|
|
|
|
|
|
var revokeStmts []string
|
|
|
|
for sessionRows.Next() {
|
|
|
|
var sessionID int
|
|
|
|
err = sessionRows.Scan(&sessionID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
revokeStmts = append(revokeStmts, fmt.Sprintf("KILL %d;", sessionID))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Query for database users using undocumented stored procedure for now since
|
|
|
|
// it is the easiest way to get this information;
|
|
|
|
// we need to drop the database users before we can drop the login and the role
|
|
|
|
// This isn't done in a transaction because even if we fail along the way,
|
|
|
|
// we want to remove as much access as possible
|
2017-12-15 18:26:17 +00:00
|
|
|
stmt, err := db.PrepareContext(ctx, fmt.Sprintf("EXEC master.dbo.sp_msloginmappings '%s';", username))
|
2017-04-13 20:48:32 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer stmt.Close()
|
|
|
|
|
2017-12-15 18:26:17 +00:00
|
|
|
rows, err := stmt.QueryContext(ctx)
|
2017-04-13 20:48:32 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
|
|
|
|
|
|
|
for rows.Next() {
|
|
|
|
var loginName, dbName, qUsername string
|
|
|
|
var aliasName sql.NullString
|
|
|
|
err = rows.Scan(&loginName, &dbName, &qUsername, &aliasName)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
revokeStmts = append(revokeStmts, fmt.Sprintf(dropUserSQL, dbName, username, username))
|
|
|
|
}
|
|
|
|
|
|
|
|
// we do not stop on error, as we want to remove as
|
|
|
|
// many permissions as possible right now
|
|
|
|
var lastStmtError error
|
|
|
|
for _, query := range revokeStmts {
|
2017-12-15 18:26:17 +00:00
|
|
|
stmt, err := db.PrepareContext(ctx, query)
|
2017-04-13 20:48:32 +00:00
|
|
|
if err != nil {
|
|
|
|
lastStmtError = err
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
defer stmt.Close()
|
2017-12-15 18:26:17 +00:00
|
|
|
_, err = stmt.ExecContext(ctx)
|
2017-04-13 20:48:32 +00:00
|
|
|
if err != nil {
|
|
|
|
lastStmtError = err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// can't drop if not all database users are dropped
|
|
|
|
if rows.Err() != nil {
|
|
|
|
return fmt.Errorf("cound not generate sql statements for all rows: %s", rows.Err())
|
|
|
|
}
|
|
|
|
if lastStmtError != nil {
|
|
|
|
return fmt.Errorf("could not perform all sql statements: %s", lastStmtError)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Drop this login
|
2017-12-15 18:26:17 +00:00
|
|
|
stmt, err = db.PrepareContext(ctx, fmt.Sprintf(dropLoginSQL, username, username))
|
2017-04-13 20:48:32 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer stmt.Close()
|
2017-12-15 18:26:17 +00:00
|
|
|
if _, err := stmt.ExecContext(ctx); err != nil {
|
2017-04-13 20:48:32 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
const dropUserSQL = `
|
|
|
|
USE [%s]
|
|
|
|
IF EXISTS
|
|
|
|
(SELECT name
|
|
|
|
FROM sys.database_principals
|
|
|
|
WHERE name = N'%s')
|
|
|
|
BEGIN
|
|
|
|
DROP USER [%s]
|
|
|
|
END
|
|
|
|
`
|
|
|
|
|
|
|
|
const dropLoginSQL = `
|
|
|
|
IF EXISTS
|
|
|
|
(SELECT name
|
|
|
|
FROM master.sys.server_principals
|
|
|
|
WHERE name = N'%s')
|
|
|
|
BEGIN
|
|
|
|
DROP LOGIN [%s]
|
|
|
|
END
|
|
|
|
`
|