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

Feature #90: adding TLS mutual authentication to vertica-sql-go #117

Merged
merged 31 commits into from
Jun 3, 2021

Conversation

bmyers-csu
Copy link
Contributor

@bmyers-csu bmyers-csu commented May 28, 2021

Feature #90
Add support for custom TLS configurations implemented in the same structure as mysql Go client.
@mjskier contributed as well

Some code taken from @ehrt74 and this PR will replace #91

Copy link
Member

@sitingren sitingren left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the effort to put them together! It looks good overall. See comments for my concern about testing.

- name: Run tests
run: |
go test -race . -args --locator localhost:5433 --user dbadmin
go test -race . -args --locator localhost:5433 --user dbadmin --use_prepared_statements=0
# go test -race . -args --locator localhost:5433 --user dbadmin --use_prepared_statements=0
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would you please uncomment this line for test coverage?

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

connection.go Outdated
connectionLogger.Info("enabling SSL/TLS custom mode")
config, ok := tlsConfigs.get(sslFlag)
if !ok {
err := fmt.Errorf("tls config %s not registered", sslFlag)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it is better to provide guidance about how to register with "RegisterTLSConfig()" in this error message.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done (referred to the README.md which has an example on how to register and use a custom config)

err := fmt.Errorf("unsupported tlsmode flag: %s - should be 'server', 'server-strict' or 'none'", sslFlag)
connectionLogger.Error(err.Error())
return err
connectionLogger.Info("enabling SSL/TLS custom mode")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Adding a comment to indicate this is the implementation for "mutual ssl mode" will be helpful for other developers in the future.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done. Good suggestion, I agree that "custom TLS" doesn't have any hint that it is used for mutual ssl mode.

driver_test.go Outdated
// adminDB := openConnection(t, "test_connection_closed_pre")
// defer closeConnection(t, adminDB, "test_connection_closed_post")
// const userQuery = "select 1 as test"
// func TestConnectionClosure(t *testing.T) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need to undo extra whitespaces for this function.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

: ${ORG:=SQL}
: ${CN:=localhost}

: ${CERT_LOC:=./resources/tests/ssl}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is this ?

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm sorry, I don't understand the question. Github shows me a box with OBJ in it before the question mark.
Are you asking about the value of these fields, or the construct to get their values, or...

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Github shows me a box with OBJ in it. Is this a meaningful value or a typo?

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Weird. It must be an artifact of copy/paste. Invisible in my editors.
Do you see it anywhere else besides the end of line 10?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's the only place I saw this symbol. It is visible in Sublime with UTF-8 encoding from my end. Probably this is a matter of the setting of your editor.

@CLAassistant
Copy link

CLAassistant commented Jun 1, 2021

CLA assistant check
All committers have signed the CLA.

README.md Outdated
}
tlsConfig := &tls.Config{RootCAs: rootCertPool, ServerName: host}
vertigo.RegisterTLSConfig("myCustomName", tlsConfig)
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Syntax error: extra }

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

@sitingren sitingren merged commit 451afe6 into vertica:master Jun 3, 2021
@sitingren sitingren mentioned this pull request Jun 3, 2021
@sitingren
Copy link
Member

Merged. Thanks for the contribution!

@mjskier mjskier deleted the custom-tls-config branch June 4, 2021 02:57
@haihongren
Copy link

@sitingren
When will a new release( which includes this tls feature) be available ? Thanks

@sitingren
Copy link
Member

@sitingren When will a new release( which includes this tls feature) be available ? Thanks

Hi @haihongren This PR has been included in release v1.2.0.

@haihongren
Copy link

@sitingren many thanks 👍

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants