34.19. SSL Support#
- 34.19.1. Client Verification of Server Certificates
- 34.19.2. Client Certificates
- 34.19.3. Protection Provided in Different Modes
- 34.19.4. SSL Client File Usage
- 34.19.5. SSL Library Initialization
PostgreSQLhas native support for usingSSLconnections to encrypt client/server communications usingTLSprotocols for increased security. SeeSection 19.9for details about the server-sideSSLfunctionality.
libpqreads the system-wideOpenSSLconfiguration file. By default, this file is namedopenssl.cnf
and is located in the directory reported byopenssl version -d
. This default can be overridden by setting environment variableOPENSSL_CONF
to the name of the desired configuration file.
34.19.1. Client Verification of Server Certificates#
By default,PostgreSQLwill not perform any verification of the server certificate. This means that it is possible to spoof the server identity (for example by modifying a DNS record or by taking over the server IP address) without the client knowing. In order to prevent spoofing, the client must be able to verify the server's identity via a chain of trust. A chain of trust is established by placing a root (self-signed) certificate authority (CA) certificate on one computer and a leaf certificatesignedby the root certificate on another computer. It is also possible to use an“intermediate”certificate which is signed by the root certificate and signs leaf certificates.
To allow the client to verify the identity of the server, place a root certificate on the client and a leaf certificate signed by the root certificate on the server. To allow the server to verify the identity of the client, place a root certificate on the server and a leaf certificate signed by the root certificate on the client. One or more intermediate certificates (usually stored with the leaf certificate) can also be used to link the leaf certificate to the root certificate.
Once a chain of trust has been established, there are two ways for the client to validate the leaf certificate sent by the server. If the parametersslmode
is set toverify-ca
, libpq will verify that the server is trustworthy by checking the certificate chain up to the root certificate stored on the client. Ifsslmode
is set toverify-full
, libpq willalsoverify that the server host name matches the name stored in the server certificate. The SSL connection will fail if the server certificate cannot be verified.verify-full
is recommended in most security-sensitive environments.
Inverify-full
mode, the host name is matched against the certificate's Subject Alternative Name attribute(s) (SAN), or against the Common Name attribute if no SAN of typedNSName
is present. If the certificate's name attribute starts with an asterisk (*
), the asterisk will be treated as a wildcard, which will match all charactersexcepta dot (.
). This means the certificate will not match subdomains. If the connection is made using an IP address instead of a host name, the IP address will be matched (without doing any DNS lookups) against SANs of typeiPAddress
ordNSName
. If noiPAddress
SAN is present and no matchingdNSName
SAN is present, the host IP address is matched against the Common Name attribute.
Note
For backward compatibility with earlier versions of PostgreSQL, the host IP address is verified in a manner different fromRFC 6125. The host IP address is always matched againstdNSName
SANs as well asiPAddress
SANs, and can be matched against the Common Name attribute if no relevant SANs exist.
To allow server certificate verification, one or more root certificates must be placed in the file~/.postgresql/root.crt
in the user's home directory. (On Microsoft Windows the file is named%APPDATA%\postgresql\root.crt
.) Intermediate certificates should also be added to the file if they are needed to link the certificate chain sent by the server to the root certificates stored on the client.
Certificate Revocation List (CRL) entries are also checked if the file~/.postgresql/root.crl
exists (%APPDATA%\postgresql\root.crl
on Microsoft Windows).
The location of the root certificate file and the CRL can be changed by setting the connection parameterssslrootcert
andsslcrl
or the environment variablesPGSSLROOTCERT
andPGSSLCRL
.sslcrldir
or the environment variablePGSSLCRLDIR
can also be used to specify a directory containing CRL files.
Note
For backwards compatibility with earlier versions of PostgreSQL, if a root CA file exists, the behavior ofsslmode
=require
will be the same as that ofverify-ca
, meaning the server certificate is validated against the CA. Relying on this behavior is discouraged, and applications that need certificate validation should always useverify-ca
orverify-full
.
34.19.2. Client Certificates#
If the server attempts to verify the identity of the client by requesting the client's leaf certificate,libpqwill send the certificate(s) stored in file~/.postgresql/postgresql.crt
in the user's home directory. The certificates must chain to the root certificate trusted by the server. A matching private key file~/.postgresql/postgresql.key
must also be present. On Microsoft Windows these files are named%APPDATA%\postgresql\postgresql.crt
and%APPDATA%\postgresql\postgresql.key
. The location of the certificate and key files can be overridden by the connection parameterssslcert
andsslkey
, or by the environment variablesPGSSLCERT
andPGSSLKEY
.
On Unix systems, the permissions on the private key file must disallow any access to world or group; achieve this by a command such aschmod 0600 ~/.postgresql/postgresql.key
. Alternatively, the file can be owned by root and have group read access (that is,0640
permissions). That setup is intended for installations where certificate and key files are managed by the operating system. The user oflibpqshould then be made a member of the group that has access to those certificate and key files. (On Microsoft Windows, there is no file permissions check, since the%APPDATA%\postgresql
directory is presumed secure.)
The first certificate inpostgresql.crt
must be the client's certificate because it must match the client's private key.“Intermediate”certificates can be optionally appended to the file — doing so avoids requiring storage of intermediate certificates on the server (ssl_ca_file).
The certificate and key may be in PEM or ASN.1 DER format.
The key may be stored in cleartext or encrypted with a passphrase using any algorithm supported byOpenSSL, like AES-128. If the key is stored encrypted, then the passphrase may be provided in thesslpasswordconnection option. If an encrypted key is supplied and thesslpassword
option is absent or blank, a password will be prompted for interactively byOpenSSLwith aEnter PEM pass phrase:
prompt if a TTY is available. Applications can override the client certificate prompt and the handling of thesslpassword
parameter by supplying their own key password callback; seePQsetSSLKeyPassHook_OpenSSL
.
For instructions on creating certificates, seeSection 19.9.5.
34.19.3. Protection Provided in Different Modes#
The different values for thesslmode
parameter provide different levels of protection. SSL can provide protection against three types of attacks:
- Eavesdropping
If a third party can examine the network traffic between the client and the server, it can read both connection information (including the user name and password) and the data that is passed. uses encryption to prevent this.
- Man-in-the-middle ()
If a third party can modify the data while passing between the client and server, it can pretend to be the server and therefore see and modify data even if it is encrypted. The third party can then forward the connection information and data to the original server, making it impossible to detect this attack. Common vectors to do this include DNS poisoning and address hijacking, whereby the client is directed to a different server than intended. There are also several other attack methods that can accomplish this. uses certificate verification to prevent this, by authenticating the server to the client.
- Impersonation
If a third party can pretend to be an authorized client, it can simply access data it should not have access to. Typically this can happen through insecure password management. uses client certificates to prevent this, by making sure that only holders of valid certificates can access the server.
For a connection to be known SSL-secured, SSL usage must be configured onboth the client and the serverbefore the connection is made. If it is only configured on the server, the client may end up sending sensitive information (e.g., passwords) before it knows that the server requires high security. In libpq, secure connections can be ensured by setting thesslmode
parameter toverify-full
orverify-ca
, and providing the system with a root certificate to verify against. This is analogous to using anhttps
URLfor encrypted web browsing.
Once the server has been authenticated, the client can pass sensitive data. This means that up until this point, the client does not need to know if certificates will be used for authentication, making it safe to specify that only in the server configuration.
AllSSLoptions carry overhead in the form of encryption and key-exchange, so there is a trade-off that has to be made between performance and security.Table 34.1illustrates the risks the differentsslmode
values protect against, and what statement they make about security and overhead.
Table 34.1. SSL Mode Descriptions
sslmode | Eavesdropping protection | protection | Statement |
---|---|---|---|
disable | No | No | I don't care about security, and I don't want to pay the overhead of encryption. |
allow | Maybe | No | I don't care about security, but I will pay the overhead of encryption if the server insists on it. |
prefer | Maybe | No | I don't care about encryption, but I wish to pay the overhead of encryption if the server supports it. |
require | Yes | No | I want my data to be encrypted, and I accept the overhead. I trust that the network will make sure I always connect to the server I want. |
verify-ca | Yes | Depends on CA policy | I want my data encrypted, and I accept the overhead. I want to be sure that I connect to a server that I trust. |
verify-full | Yes | Yes | I want my data encrypted, and I accept the overhead. I want to be sure that I connect to a server I trust, and that it's the one I specify. |
The difference betweenverify-ca
andverify-full
depends on the policy of the rootCA. If a publicCAis used,verify-ca
allows connections to a server thatsomebody elsemay have registered with theCA. In this case,verify-full
should always be used. If a localCAis used, or even a self-signed certificate, usingverify-ca
often provides enough protection.
The default value forsslmode
isprefer
. As is shown in the table, this makes no sense from a security point of view, and it only promises performance overhead if possible. It is only provided as the default for backward compatibility, and is not recommended in secure deployments.
34.19.4. SSL Client File Usage#
Table 34.2summarizes the files that are relevant to the SSL setup on the client.
Table 34.2. Libpq/Client SSL File Usage
File | Contents | Effect |
---|---|---|
~/.postgresql/postgresql.crt | client certificate | sent to server |
~/.postgresql/postgresql.key | client private key | proves client certificate sent by owner; does not indicate certificate owner is trustworthy |
~/.postgresql/root.crt | trusted certificate authorities | checks that server certificate is signed by a trusted certificate authority |
~/.postgresql/root.crl | certificates revoked by certificate authorities | server certificate must not be on this list |
34.19.5. SSL Library Initialization#
If your application initializeslibssl
and/orlibcrypto
libraries andlibpqis built withSSLsupport, you should callPQinitOpenSSL
to telllibpqthat thelibssl
and/orlibcrypto
libraries have been initialized by your application, so thatlibpqwill not also initialize those libraries. However, this is unnecessary when usingOpenSSLversion 1.1.0 or later, as duplicate initializations are no longer problematic.
PQinitOpenSSL
#Allows applications to select which security libraries to initialize.
void PQinitOpenSSL(int do_ssl, int do_crypto);
When
do_ssl
is non-zero, libpq will initialize the OpenSSL library before first opening a database connection. Whendo_crypto
is non-zero, thelibcrypto
library will be initialized. By default (ifPQinitOpenSSL
is not called), both libraries are initialized. When SSL support is not compiled in, this function is present but does nothing.If your application uses and initializes either OpenSSL or its underlying
libcrypto
library, you must call this function with zeroes for the appropriate parameter(s) before first opening a database connection. Also be sure that you have done that initialization before opening a database connection.PQinitSSL
#Allows applications to select which security libraries to initialize.
void PQinitSSL(int do_ssl);
This function is equivalent to
PQinitOpenSSL(do_ssl, do_ssl)
. It is sufficient for applications that initialize both or neither of OpenSSL andlibcrypto
.PQinitSSL
has been present since PostgreSQL 8.0, whilePQinitOpenSSL
was added in PostgreSQL 8.4, soPQinitSSL
might be preferable for applications that need to work with older versions of libpq.