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

Further secure TLS communications #97

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions web/testdata/web_config_auth_client_common_name.bad.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
tls_server_config:
cert_file: "server.crt"
key_file: "server.key"
client_auth_type: "RequireAndVerifyClientCert"
client_ca_file: "client_selfsigned.pem"
client_cert_allowed_cn: "bad"
6 changes: 6 additions & 0 deletions web/testdata/web_config_auth_client_common_name.good.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
tls_server_config:
cert_file: "server.crt"
key_file: "server.key"
client_auth_type: "RequireAndVerifyClientCert"
client_ca_file: "client_selfsigned.pem"
client_cert_allowed_cn: "test"
14 changes: 14 additions & 0 deletions web/tls_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ type TLSStruct struct {
MinVersion tlsVersion `yaml:"min_version"`
MaxVersion tlsVersion `yaml:"max_version"`
PreferServerCipherSuites bool `yaml:"prefer_server_cipher_suites"`
ClientCertAllowedCN string `yaml:"client_cert_allowed_cn"`
}

// SetDirectory joins any relative file paths with dir.
Expand Down Expand Up @@ -155,6 +156,19 @@ func ConfigToTLSConfig(c *TLSStruct) (*tls.Config, error) {
cfg.ClientCAs = clientCAPool
}

if c.ClientCertAllowedCN != "" {
cfg.VerifyPeerCertificate = func(rawCerts [][]byte, verifiedChains [][]*x509.Certificate) error {
for _, chains := range verifiedChains {
if len(chains) != 0 {
if c.ClientCertAllowedCN == chains[0].Subject.CommonName {
return nil
}
}
}
return errors.New("CommonName authentication failed")
}
}

switch c.ClientAuth {
case "RequestClientCert":
cfg.ClientAuth = tls.RequestClientCert
Expand Down
15 changes: 15 additions & 0 deletions web/tls_config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ var (
"Bad certificate": regexp.MustCompile(`bad certificate`),
"Invalid value": regexp.MustCompile(`invalid value for`),
"Invalid header": regexp.MustCompile(`HTTP header ".*" can not be configured`),
"Invalid common-name": regexp.MustCompile(`bad certificate`),
}
)

Expand Down Expand Up @@ -337,6 +338,20 @@ func TestServerBehaviour(t *testing.T) {
ClientCertificate: "client2_selfsigned",
ExpectedError: ErrorMap["Bad certificate"],
},
{
Name: `valid tls config yml and tls client with VerifyPeerCertificate (present good common-name)`,
YAMLConfigPath: "testdata/web_config_auth_client_common_name.good.yaml",
UseTLSClient: true,
ClientCertificate: "client_selfsigned",
ExpectedError: nil,
},
{
Name: `valid tls config yml and tls client with VerifyPeerCertificate (present invalid common-name)`,
YAMLConfigPath: "testdata/web_config_auth_client_common_name.bad.yaml",
UseTLSClient: true,
ClientCertificate: "client_selfsigned",
ExpectedError: ErrorMap["Invalid common-name"],
},
}
for _, testInputs := range testTables {
t.Run(testInputs.Name, testInputs.Test)
Expand Down