-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WIP]: Add clickhouse SSL\TLS connection
- Loading branch information
Showing
9 changed files
with
1,424 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1,198 changes: 1,198 additions & 0 deletions
1,198
clickhouse-native-jdbc/src/test/resources/clickhouse/config/config.xml
Large diffs are not rendered by default.
Oops, something went wrong.
123 changes: 123 additions & 0 deletions
123
clickhouse-native-jdbc/src/test/resources/clickhouse/config/users.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
<?xml version="1.0"?> | ||
<yandex> | ||
<!-- See also the files in users.d directory where the settings can be overridden. --> | ||
|
||
<!-- Profiles of settings. --> | ||
<profiles> | ||
<!-- Default settings. --> | ||
<default> | ||
<!-- Maximum memory usage for processing single query, in bytes. --> | ||
<max_memory_usage>10000000000</max_memory_usage> | ||
|
||
<!-- How to choose between replicas during distributed query processing. | ||
random - choose random replica from set of replicas with minimum number of errors | ||
nearest_hostname - from set of replicas with minimum number of errors, choose replica | ||
with minimum number of different symbols between replica's hostname and local hostname | ||
(Hamming distance). | ||
in_order - first live replica is chosen in specified order. | ||
first_or_random - if first replica one has higher number of errors, pick a random one from replicas with minimum number of errors. | ||
--> | ||
<load_balancing>random</load_balancing> | ||
</default> | ||
|
||
<!-- Profile that allows only read queries. --> | ||
<readonly> | ||
<readonly>1</readonly> | ||
</readonly> | ||
</profiles> | ||
|
||
<!-- Users and ACL. --> | ||
<users> | ||
<!-- If user name was not specified, 'default' user is used. --> | ||
<default> | ||
<!-- See also the files in users.d directory where the password can be overridden. | ||
Password could be specified in plaintext or in SHA256 (in hex format). | ||
If you want to specify password in plaintext (not recommended), place it in 'password' element. | ||
Example: <password>qwerty</password>. | ||
Password could be empty. | ||
If you want to specify SHA256, place it in 'password_sha256_hex' element. | ||
Example: <password_sha256_hex>65e84be33532fb784c48129675f9eff3a682b27168c0ea744b2cf58ee02337c5</password_sha256_hex> | ||
Restrictions of SHA256: impossibility to connect to ClickHouse using MySQL JS client (as of July 2019). | ||
If you want to specify double SHA1, place it in 'password_double_sha1_hex' element. | ||
Example: <password_double_sha1_hex>e395796d6546b1b65db9d665cd43f0e858dd4303</password_double_sha1_hex> | ||
If you want to specify a previously defined LDAP server (see 'ldap_servers' in the main config) for authentication, | ||
place its name in 'server' element inside 'ldap' element. | ||
Example: <ldap><server>my_ldap_server</server></ldap> | ||
If you want to authenticate the user via Kerberos (assuming Kerberos is enabled, see 'kerberos' in the main config), | ||
place 'kerberos' element instead of 'password' (and similar) elements. | ||
The name part of the canonical principal name of the initiator must match the user name for authentication to succeed. | ||
You can also place 'realm' element inside 'kerberos' element to further restrict authentication to only those requests | ||
whose initiator's realm matches it. | ||
Example: <kerberos /> | ||
Example: <kerberos><realm>EXAMPLE.COM</realm></kerberos> | ||
How to generate decent password: | ||
Execute: PASSWORD=$(base64 < /dev/urandom | head -c8); echo "$PASSWORD"; echo -n "$PASSWORD" | sha256sum | tr -d '-' | ||
In first line will be password and in second - corresponding SHA256. | ||
How to generate double SHA1: | ||
Execute: PASSWORD=$(base64 < /dev/urandom | head -c8); echo "$PASSWORD"; echo -n "$PASSWORD" | sha1sum | tr -d '-' | xxd -r -p | sha1sum | tr -d '-' | ||
In first line will be password and in second - corresponding double SHA1. | ||
--> | ||
<password></password> | ||
|
||
<!-- List of networks with open access. | ||
To open access from everywhere, specify: | ||
<ip>::/0</ip> | ||
To open access only from localhost, specify: | ||
<ip>::1</ip> | ||
<ip>127.0.0.1</ip> | ||
Each element of list has one of the following forms: | ||
<ip> IP-address or network mask. Examples: 213.180.204.3 or 10.0.0.1/8 or 10.0.0.1/255.255.255.0 | ||
2a02:6b8::3 or 2a02:6b8::3/64 or 2a02:6b8::3/ffff:ffff:ffff:ffff::. | ||
<host> Hostname. Example: server01.yandex.ru. | ||
To check access, DNS query is performed, and all received addresses compared to peer address. | ||
<host_regexp> Regular expression for host names. Example, ^server\d\d-\d\d-\d\.yandex\.ru$ | ||
To check access, DNS PTR query is performed for peer address and then regexp is applied. | ||
Then, for result of PTR query, another DNS query is performed and all received addresses compared to peer address. | ||
Strongly recommended that regexp is ends with $ | ||
All results of DNS requests are cached till server restart. | ||
--> | ||
<networks> | ||
<ip>::/0</ip> | ||
</networks> | ||
|
||
<!-- Settings profile for user. --> | ||
<profile>default</profile> | ||
|
||
<!-- Quota for user. --> | ||
<quota>default</quota> | ||
|
||
<!-- User can create other users and grant rights to them. --> | ||
<!-- <access_management>1</access_management> --> | ||
</default> | ||
</users> | ||
|
||
<!-- Quotas. --> | ||
<quotas> | ||
<!-- Name of quota. --> | ||
<default> | ||
<!-- Limits for time interval. You could specify many intervals with different limits. --> | ||
<interval> | ||
<!-- Length of interval. --> | ||
<duration>3600</duration> | ||
|
||
<!-- No limits. Just calculate resource usage for time interval. --> | ||
<queries>0</queries> | ||
<errors>0</errors> | ||
<result_rows>0</result_rows> | ||
<read_rows>0</read_rows> | ||
<execution_time>0</execution_time> | ||
</interval> | ||
</default> | ||
</quotas> | ||
</yandex> |
19 changes: 19 additions & 0 deletions
19
clickhouse-native-jdbc/src/test/resources/clickhouse/server.crt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
-----BEGIN CERTIFICATE----- | ||
MIIDCTCCAfGgAwIBAgIUGiof/tcvWR9ITSWwONatZC68ys0wDQYJKoZIhvcNAQEL | ||
BQAwFDESMBAGA1UEAwwJbG9jYWxob3N0MB4XDTIzMDgyNjIxMTczN1oXDTI0MDgy | ||
NTIxMTczN1owFDESMBAGA1UEAwwJbG9jYWxob3N0MIIBIjANBgkqhkiG9w0BAQEF | ||
AAOCAQ8AMIIBCgKCAQEAmC1y+HO3QzDIk5DnK6ouUoxCIH6c/zeT/uYSCmvUQU1l | ||
rEWQ5+U/iEAQkmIyK/7yvyHromp+ZfzoVlDANF/5d3OaRcXxLKjVBf1xxELlEzXR | ||
Jw2Vx3KnrxO0P9RXwmuc+n8alYZwxIbt1IPlqGJzgUHd3cFcjXe7Z8dnhAO3zekr | ||
UDRP028LdIrLPGpBanHNKiJv73o3QrNJKLw9l5kDPMlmrXb/9uot4xxYj6L3Kz84 | ||
lACApL04tkH3+W6vadwdzWjPEvFwlLIoRBV1YXnzKUlgNwey6PLDo5jE+2AXR433 | ||
6UPHZJ5XNTtJ1zSe+wiC8xqA5zgv2f/S6KNrGAZ4JQIDAQABo1MwUTAdBgNVHQ4E | ||
FgQUucBNLF7S0DEqgJYTpD0Y6rKZx6kwHwYDVR0jBBgwFoAUucBNLF7S0DEqgJYT | ||
pD0Y6rKZx6kwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAQEAN9i6 | ||
xLrh4DyJOV1KsIM1nrWq1P5wZjQny9i4TmU6doGXIiTIAipXyL8liX5/3qVGZkBb | ||
WYWgQTdfjjZJENSawxUiIQnsvqO83dyzRaMg+yKRUPf6MZTQDxjgmK3BZ6qmMLbj | ||
BhMYAA5r6b6oTW5pmqo+wQxP7doZOiX/Xcjw2iHBtL1jy4rEwsEoOYpH7u0ywWiQ | ||
9WsaYNcm+b452MJBYWeRqxJx4gtvcBFAii2Win5AT/SUTtHQcQKrDxv+osGS5vZj | ||
v+2LxCCNfTmJfIsGPSsyiqulvzzn4xcNE6ETzAcvudx+to9YfUogJYmhsQpc/CBa | ||
7DYS2q7Uf7a7d7xZDw== | ||
-----END CERTIFICATE----- |
Binary file not shown.
28 changes: 28 additions & 0 deletions
28
clickhouse-native-jdbc/src/test/resources/clickhouse/server.key
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
-----BEGIN PRIVATE KEY----- | ||
MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQCYLXL4c7dDMMiT | ||
kOcrqi5SjEIgfpz/N5P+5hIKa9RBTWWsRZDn5T+IQBCSYjIr/vK/Ieuian5l/OhW | ||
UMA0X/l3c5pFxfEsqNUF/XHEQuUTNdEnDZXHcqevE7Q/1FfCa5z6fxqVhnDEhu3U | ||
g+WoYnOBQd3dwVyNd7tnx2eEA7fN6StQNE/Tbwt0iss8akFqcc0qIm/vejdCs0ko | ||
vD2XmQM8yWatdv/26i3jHFiPovcrPziUAICkvTi2Qff5bq9p3B3NaM8S8XCUsihE | ||
FXVhefMpSWA3B7Lo8sOjmMT7YBdHjffpQ8dknlc1O0nXNJ77CILzGoDnOC/Z/9Lo | ||
o2sYBnglAgMBAAECggEAFJKXB48+jWb+brNOX+D5XdqCpA70iCzfepG9ivV0iUF+ | ||
hxwT0MMgDs+OY05tdvTX+fk1eExfpcew3IkSeuImARKP9B0kPhky90TXSPo8KsKB | ||
8dQh1V1NiFsoaTVP30OaF2Pwgu9dC7csAX4KoZ7G+7NHsbokGic/dB0JLwKA/4/v | ||
vSAEpyZpoCEK9AjfqkFNYHTtuAmuIfBvHGcDdcDHsCh+c1MevqTlL5wBElr8RKJ7 | ||
Vxb4eApwwWLB2aQnmcyCOpJQtb/XpuMNZ5/IsBNVmUDCRNYbKCFx4Ts/mwVbL1jz | ||
e4YD1DKiEtZ9Wzy7saZFIM2L7k8JuUomGucuqUHaLwKBgQDWnFLtwB7Lcbmv3QWz | ||
CDrNqFOTTrlLEbLgawXeCFyuL/QKSiI7VLGYo3FfCBMKE9bQf11AYKlP6dhW7f/G | ||
z0iHuy4wKhPHPKDmsJT3lnJlshayxjyr5RfT29bfz0vw/UJ+U4bEs46rTkEi6ZyW | ||
pCopD+az0BvyidkjQAMjbBW1HwKBgQC1hrOJ8eZkX5tCflRNVqmuX6QkINOLhErw | ||
4I41i0oaJVD0KU3hLHtTD57bn36q8tWuaFrubUir9OSz9r1nLCc4uu2OUUn0t9sy | ||
IvoG4JHWHkFdaOxGheWFdoCkTRnyU8mb4196h7C2MIQ6a6SwuaF9y9/p7l1/JjWu | ||
PI6vq1kGOwKBgQCGWwWb7Iwa587NJ7z6sWtG91ujPETKl4D5+GaK84c6UbEhg/nc | ||
VRB+M8y1JvPsejEhBKuXsywsaITVH1ji2UBaITgwVRdewzkkU2ZffmOOASkusOao | ||
4trA+r+SDFBJxfQL7DTSDmuCGZKzzbcHpCz02gyfg+kLNXuoEtokIfWRFwKBgGFR | ||
YOmgfTLsqrEgRxPbVUa90aLo0mDmwMKYsMT18vlHbjon9q+0iD1Ej5cQz/jYDUTe | ||
f3l5r085EG+G5Y3tdu2MEZWN8Qc4llQvujl7pdPUDpkEij9Yw28k09zB1Ro8X0aq | ||
xGJNYqiaJBmp4fY43uIxLc8dUpS7KGZL4vc89pJHAoGAET1i4vxlD6BMgwJCyCmc | ||
afJ5Eh4WrrBYM+E4emGS0/pgeRkjRk5cCaKJ/IEO8x2uxr/EGmlZa+ki8ETc8/9m | ||
LG9sX9za2lg9tiZW8A676hheVHe4IOIjkldey9ovxm8ar12PECwgkkJ6WXeG4uzJ | ||
lqaPsbBiOzZvBiBBJLpydYY= | ||
-----END PRIVATE KEY----- |
Binary file not shown.
This file was deleted.
Oops, something went wrong.
42 changes: 42 additions & 0 deletions
42
clickhouse-native-jdbc/src/test/resources/keymanagement/bin/generate.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
#!/bin/sh | ||
|
||
# Versions: | ||
# Windows 10 | ||
# OpenSSL Version: OpenSSL 3.1.2 1 | ||
# Keytool Version: openjdk-17.0.2 | ||
|
||
KEY_FILE=server.key | ||
CRT_FILE=server.crt | ||
PKCS12_FILE=server.p12 | ||
JKS_FILE=server.jks | ||
PASSWORD=mypassword | ||
ALIAS=myalias | ||
|
||
echo "Generating the private key and certificate..." | ||
openssl req -subj "//CN=localhost" -new -newkey rsa:2048 -days 365 -nodes -x509 -keyout ${KEY_FILE} -out ${CRT_FILE} | ||
if [ $? -ne 0 ]; then | ||
echo "Failed to generate the private key and certificate." | ||
exit 1 | ||
fi | ||
|
||
echo "Converting to PKCS12 format..." | ||
openssl pkcs12 -export -in ${CRT_FILE} -inkey ${KEY_FILE} -out ${PKCS12_FILE} -name ${ALIAS} -password pass:${PASSWORD} | ||
if [ $? -ne 0 ]; then | ||
echo "Failed to convert to PKCS12 format." | ||
exit 1 | ||
fi | ||
|
||
echo "Importing keystore ${PKCS12_FILE} to ${JKS_FILE}..." | ||
keytool -importkeystore\ | ||
-srckeystore ${PKCS12_FILE}\ | ||
-srcstoretype PKCS12\ | ||
-srcstorepass ${PASSWORD}\ | ||
-destkeystore ${JKS_FILE}\ | ||
-deststoretype JKS\ | ||
-deststorepass ${PASSWORD} | ||
if [ $? -ne 0 ]; then | ||
echo "Failed to import keystore." | ||
exit 1 | ||
fi | ||
|
||
echo "Done!" |