2015-06-19 17:10:19 +00:00
package cassandra
import (
2018-01-08 18:31:38 +00:00
"context"
2015-06-19 17:10:19 +00:00
"fmt"
2019-04-13 07:44:06 +00:00
"github.com/hashicorp/vault/sdk/framework"
2019-04-12 21:54:35 +00:00
"github.com/hashicorp/vault/sdk/helper/certutil"
2019-04-12 22:26:54 +00:00
"github.com/hashicorp/vault/sdk/helper/tlsutil"
2019-04-12 21:54:35 +00:00
"github.com/hashicorp/vault/sdk/logical"
2015-06-19 17:10:19 +00:00
)
func pathConfigConnection ( b * backend ) * framework . Path {
return & framework . Path {
Pattern : "config/connection" ,
Fields : map [ string ] * framework . FieldSchema {
2021-04-08 16:43:39 +00:00
"hosts" : {
2015-06-19 17:10:19 +00:00
Type : framework . TypeString ,
Description : "Comma-separated list of hosts" ,
} ,
2021-04-08 16:43:39 +00:00
"username" : {
2015-06-19 17:10:19 +00:00
Type : framework . TypeString ,
Description : "The username to use for connecting to the cluster" ,
} ,
2021-04-08 16:43:39 +00:00
"password" : {
2015-06-19 17:10:19 +00:00
Type : framework . TypeString ,
Description : "The password to use for connecting to the cluster" ,
} ,
2021-04-08 16:43:39 +00:00
"tls" : {
2015-06-19 17:10:19 +00:00
Type : framework . TypeBool ,
Description : ` Whether to use TLS . If pem_bundle or pem_json are
set , this is automatically set to true ` ,
} ,
2021-04-08 16:43:39 +00:00
"insecure_tls" : {
2015-06-19 17:10:19 +00:00
Type : framework . TypeBool ,
Description : ` Whether to use TLS but skip verification ; has no
effect if a CA certificate is provided ` ,
} ,
2020-02-15 19:40:18 +00:00
// TLS 1.3 is not supported as this engine is deprecated. Please switch to the Cassandra database secrets engine
2021-04-08 16:43:39 +00:00
"tls_min_version" : {
2016-07-12 23:32:47 +00:00
Type : framework . TypeString ,
Default : "tls12" ,
Description : "Minimum TLS version to use. Accepted values are 'tls10', 'tls11' or 'tls12'. Defaults to 'tls12'" ,
} ,
2021-04-08 16:43:39 +00:00
"pem_bundle" : {
2015-06-19 17:10:19 +00:00
Type : framework . TypeString ,
Description : ` PEM - format , concatenated unencrypted secret key
and certificate , with optional CA certificate ` ,
} ,
2021-04-08 16:43:39 +00:00
"pem_json" : {
2015-06-19 17:10:19 +00:00
Type : framework . TypeString ,
Description : ` JSON containing a PEM - format , unencrypted secret
key and certificate , with optional CA certificate .
The JSON output of a certificate issued with the PKI
backend can be directly passed into this parameter .
If both this and "pem_bundle" are specified , this will
take precedence . ` ,
} ,
2016-02-01 15:27:26 +00:00
2021-04-08 16:43:39 +00:00
"protocol_version" : {
2016-02-01 15:27:26 +00:00
Type : framework . TypeInt ,
Description : ` The protocol version to use. Defaults to 2. ` ,
} ,
2016-07-01 19:18:11 +00:00
2021-04-08 16:43:39 +00:00
"connect_timeout" : {
2016-07-01 20:24:48 +00:00
Type : framework . TypeDurationSecond ,
Default : 5 ,
Description : ` The connection timeout to use. Defaults to 5. ` ,
2016-07-01 19:18:11 +00:00
} ,
2015-06-19 17:10:19 +00:00
} ,
Callbacks : map [ logical . Operation ] framework . OperationFunc {
2016-02-01 15:27:26 +00:00
logical . ReadOperation : b . pathConnectionRead ,
2016-01-07 15:30:47 +00:00
logical . UpdateOperation : b . pathConnectionWrite ,
2015-06-19 17:10:19 +00:00
} ,
HelpSynopsis : pathConfigConnectionHelpSyn ,
HelpDescription : pathConfigConnectionHelpDesc ,
}
}
2018-01-08 18:31:38 +00:00
func ( b * backend ) pathConnectionRead ( ctx context . Context , req * logical . Request , data * framework . FieldData ) ( * logical . Response , error ) {
2018-01-19 06:44:44 +00:00
entry , err := req . Storage . Get ( ctx , "config/connection" )
2015-06-19 17:10:19 +00:00
if err != nil {
return nil , err
}
if entry == nil {
return logical . ErrorResponse ( fmt . Sprintf ( "Configure the DB connection with config/connection first" ) ) , nil
}
config := & sessionConfig { }
if err := entry . DecodeJSON ( config ) ; err != nil {
return nil , err
}
2018-03-30 14:17:39 +00:00
resp := & logical . Response {
Data : map [ string ] interface { } {
"hosts" : config . Hosts ,
"username" : config . Username ,
"tls" : config . TLS ,
"insecure_tls" : config . InsecureTLS ,
"certificate" : config . Certificate ,
"issuing_ca" : config . IssuingCA ,
"protocol_version" : config . ProtocolVersion ,
"connect_timeout" : config . ConnectTimeout ,
"tls_min_version" : config . TLSMinVersion ,
} ,
2015-06-19 17:10:19 +00:00
}
2018-03-30 14:17:39 +00:00
return resp , nil
2015-06-19 17:10:19 +00:00
}
2018-01-08 18:31:38 +00:00
func ( b * backend ) pathConnectionWrite ( ctx context . Context , req * logical . Request , data * framework . FieldData ) ( * logical . Response , error ) {
2015-06-19 17:10:19 +00:00
hosts := data . Get ( "hosts" ) . ( string )
username := data . Get ( "username" ) . ( string )
password := data . Get ( "password" ) . ( string )
switch {
case len ( hosts ) == 0 :
return logical . ErrorResponse ( "Hosts cannot be empty" ) , nil
case len ( username ) == 0 :
return logical . ErrorResponse ( "Username cannot be empty" ) , nil
case len ( password ) == 0 :
return logical . ErrorResponse ( "Password cannot be empty" ) , nil
}
config := & sessionConfig {
2016-02-01 15:27:26 +00:00
Hosts : hosts ,
Username : username ,
Password : password ,
TLS : data . Get ( "tls" ) . ( bool ) ,
InsecureTLS : data . Get ( "insecure_tls" ) . ( bool ) ,
ProtocolVersion : data . Get ( "protocol_version" ) . ( int ) ,
2016-07-01 20:24:48 +00:00
ConnectTimeout : data . Get ( "connect_timeout" ) . ( int ) ,
2015-06-19 17:10:19 +00:00
}
2016-07-13 15:52:26 +00:00
config . TLSMinVersion = data . Get ( "tls_min_version" ) . ( string )
if config . TLSMinVersion == "" {
2016-07-12 23:56:35 +00:00
return logical . ErrorResponse ( "failed to get 'tls_min_version' value" ) , nil
}
var ok bool
2016-07-13 15:52:26 +00:00
_ , ok = tlsutil . TLSLookup [ config . TLSMinVersion ]
2016-07-12 23:56:35 +00:00
if ! ok {
return logical . ErrorResponse ( "invalid 'tls_min_version'" ) , nil
2016-07-12 23:32:47 +00:00
}
2015-06-19 17:10:19 +00:00
if config . InsecureTLS {
config . TLS = true
}
pemBundle := data . Get ( "pem_bundle" ) . ( string )
pemJSON := data . Get ( "pem_json" ) . ( string )
var certBundle * certutil . CertBundle
var parsedCertBundle * certutil . ParsedCertBundle
var err error
switch {
case len ( pemJSON ) != 0 :
parsedCertBundle , err = certutil . ParsePKIJSON ( [ ] byte ( pemJSON ) )
if err != nil {
return logical . ErrorResponse ( fmt . Sprintf ( "Could not parse given JSON; it must be in the format of the output of the PKI backend certificate issuing command: %s" , err ) ) , nil
}
certBundle , err = parsedCertBundle . ToCertBundle ( )
if err != nil {
return logical . ErrorResponse ( fmt . Sprintf ( "Error marshaling PEM information: %s" , err ) ) , nil
}
config . Certificate = certBundle . Certificate
config . PrivateKey = certBundle . PrivateKey
config . IssuingCA = certBundle . IssuingCA
config . TLS = true
case len ( pemBundle ) != 0 :
parsedCertBundle , err = certutil . ParsePEMBundle ( pemBundle )
if err != nil {
return logical . ErrorResponse ( fmt . Sprintf ( "Error parsing the given PEM information: %s" , err ) ) , nil
}
certBundle , err = parsedCertBundle . ToCertBundle ( )
if err != nil {
return logical . ErrorResponse ( fmt . Sprintf ( "Error marshaling PEM information: %s" , err ) ) , nil
}
config . Certificate = certBundle . Certificate
config . PrivateKey = certBundle . PrivateKey
config . IssuingCA = certBundle . IssuingCA
config . TLS = true
}
2016-07-01 20:24:48 +00:00
session , err := createSession ( config , req . Storage )
2015-06-19 17:10:19 +00:00
if err != nil {
return logical . ErrorResponse ( err . Error ( ) ) , nil
}
// Store it
entry , err := logical . StorageEntryJSON ( "config/connection" , config )
if err != nil {
return nil , err
}
2018-01-19 06:44:44 +00:00
if err := req . Storage . Put ( ctx , entry ) ; err != nil {
2015-06-19 17:10:19 +00:00
return nil , err
}
// Reset the DB connection
b . ResetDB ( session )
return nil , nil
}
const pathConfigConnectionHelpSyn = `
Configure the connection information to talk to Cassandra .
`
const pathConfigConnectionHelpDesc = `
This path configures the connection information used to connect to Cassandra .
2018-03-20 18:54:10 +00:00
"hosts" is a comma - delimited list of hostnames in the Cassandra cluster .
2015-06-19 17:10:19 +00:00
"username" and "password" are self - explanatory , although the given user
must have superuser access within Cassandra . Note that since this backend
issues username / password credentials , Cassandra must be configured to use
PasswordAuthenticator or a similar backend for its authentication . If you wish
to have no authorization in Cassandra and want to use TLS client certificates ,
see the PKI backend .
TLS works as follows :
* If "tls" is set to true , the connection will use TLS ; this happens automatically if "pem_bundle" , "pem_json" , or "insecure_tls" is set
* If "insecure_tls" is set to true , the connection will not perform verification of the server certificate ; this also sets "tls" to true
* If only "issuing_ca" is set in "pem_json" , or the only certificate in "pem_bundle" is a CA certificate , the given CA certificate will be used for server certificate verification ; otherwise the system CA certificates will be used
* If "certificate" and "private_key" are set in "pem_bundle" or "pem_json" , client auth will be turned on for the connection
"pem_bundle" should be a PEM - concatenated bundle of a private key + client certificate , an issuing CA certificate , or both . "pem_json" should contain the same information ; for convenience , the JSON format is the same as that output by the issue command from the PKI backend .
When configuring the connection information , the backend will verify its
validity .
`