src/openvpn/tls_crypt.h
c6e24fa3
 /*
  *  OpenVPN -- An application to securely tunnel IP networks
  *             over a single TCP/UDP port, with support for SSL/TLS-based
  *             session authentication and key exchange,
  *             packet encryption, packet authentication, and
  *             packet compression.
  *
49979459
  *  Copyright (C) 2016-2018 Fox Crypto B.V. <openvpn@fox-it.com>
c6e24fa3
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License version 2
  *  as published by the Free Software Foundation.
  *
  *  This program is distributed in the hope that it will be useful,
  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *  GNU General Public License for more details.
  *
caa54ac3
  *  You should have received a copy of the GNU General Public License along
  *  with this program; if not, write to the Free Software Foundation, Inc.,
  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
c6e24fa3
  */
 
 /**
9d59029a
  * @defgroup tls_crypt Control channel encryption (--tls-crypt, --tls-crypt-v2)
c6e24fa3
  * @ingroup control_tls
  * @{
  *
  * Control channel encryption uses a pre-shared static key (like the --tls-auth
  * key) to encrypt control channel packets.
  *
  * Encrypting control channel packets has three main advantages:
  *  - It provides more privacy by hiding the certificate used for the TLS
  *    connection.
  *  - It is harder to identify OpenVPN traffic as such.
  *  - It provides "poor-man's" post-quantum security, against attackers who
  *    will never know the pre-shared key (i.e. no forward secrecy).
  *
9d59029a
  * --tls-crypt uses a tls-auth-style group key, where all servers and clients
  * share the same group key. --tls-crypt-v2 adds support for client-specific
  * keys, where all servers share the same client-key encryption key, and each
  * clients receives a unique client key, both in plaintext and in encrypted
  * form.  When connecting to a server, the client sends the encrypted key to
  * the server in the first packet (P_CONTROL_HARD_RESET_CLIENT_V3). The server
  * then decrypts that key, and both parties can use the same client-specific
  * key for tls-crypt packets. See doc/tls-crypt-v2.txt for more details.
  *
  * @par On-the-wire tls-crypt packet specification
  * @parblock
c6e24fa3
  * Control channel encryption is based on the SIV construction [0], to achieve
  * nonce misuse-resistant authenticated encryption:
  *
  * \code{.unparsed}
  * msg      = control channel plaintext
  * header   = opcode (1 byte) || session_id (8 bytes) || packet_id (8 bytes)
  * Ka       = authentication key (256 bits)
  * Ke       = encryption key (256 bits)
  * (Ka and Ke are pre-shared keys, like with --tls-auth)
  *
  * auth_tag = HMAC-SHA256(Ka, header || msg)
  * IV       = 128 most-significant bits of auth_tag
  * ciph     = AES256-CTR(Ke, IV, msg)
  *
  * output   = Header || Tag || Ciph
  * \endcode
  *
  * This boils down to the following on-the-wire packet format:
  *
  * \code{.unparsed}
  * - opcode - || - session_id - || - packet_id - || auth_tag || * payload *
  * \endcode
  *
  * Where
  * <tt>- XXX -</tt> means authenticated, and
  * <tt>* XXX *</tt> means authenticated and encrypted.
9d59029a
  *
  * @endparblock
c6e24fa3
  */
 
 #ifndef TLSCRYPT_H
 #define TLSCRYPT_H
 
9d59029a
 #include "base64.h"
c6e24fa3
 #include "buffer.h"
 #include "crypto.h"
 #include "session_id.h"
19dffdbd
 #include "ssl_common.h"
c6e24fa3
 
 #define TLS_CRYPT_TAG_SIZE (256/8)
81d882d5
 #define TLS_CRYPT_PID_SIZE (sizeof(packet_id_type) + sizeof(net_time_t))
c6e24fa3
 #define TLS_CRYPT_BLOCK_SIZE (128/8)
 
 #define TLS_CRYPT_OFF_PID (1 + SID_SIZE)
 #define TLS_CRYPT_OFF_TAG (TLS_CRYPT_OFF_PID + TLS_CRYPT_PID_SIZE)
 #define TLS_CRYPT_OFF_CT (TLS_CRYPT_OFF_TAG + TLS_CRYPT_TAG_SIZE)
 
9d59029a
 #define TLS_CRYPT_V2_MAX_WKC_LEN (1024)
 #define TLS_CRYPT_V2_CLIENT_KEY_LEN (2048 / 8)
 #define TLS_CRYPT_V2_SERVER_KEY_LEN (sizeof(struct key))
 #define TLS_CRYPT_V2_TAG_SIZE (TLS_CRYPT_TAG_SIZE)
 #define TLS_CRYPT_V2_MAX_METADATA_LEN (unsigned)(TLS_CRYPT_V2_MAX_WKC_LEN \
          - (TLS_CRYPT_V2_CLIENT_KEY_LEN + TLS_CRYPT_V2_TAG_SIZE \
             + sizeof(uint16_t)))
 #define TLS_CRYPT_V2_MAX_B64_METADATA_LEN \
         OPENVPN_BASE64_LENGTH(TLS_CRYPT_V2_MAX_METADATA_LEN - 1)
 
c6e24fa3
 /**
  * Initialize a key_ctx_bi structure for use with --tls-crypt.
  *
81d882d5
  * @param key           The key context to initialize
  * @param key_file      The file to read the key from (or the inline tag to
  *                      indicate and inline key).
  * @param key_inline    Array containing (zero-terminated) inline key, or NULL
  *                      if not used.
  * @param tls_server    Must be set to true is this is a TLS server instance.
c6e24fa3
  */
81d882d5
 void tls_crypt_init_key(struct key_ctx_bi *key, const char *key_file,
                         const char *key_inline, bool tls_server);
c6e24fa3
 
 /**
  * Returns the maximum overhead (in bytes) added to the destination buffer by
  * tls_crypt_wrap().
  */
 int tls_crypt_buf_overhead(void);
 
 /**
  * Adjust frame parameters for --tls-crypt overhead.
  */
 void tls_crypt_adjust_frame_parameters(struct frame *frame);
 
 /**
  * Wrap a control channel packet (both authenticates and encrypts the data).
  *
81d882d5
  * @param src   Data to authenticate and encrypt.
  * @param dst   Any data present in this buffer is first authenticated, then
  *              the wrapped packet id and data from the src buffer are appended.
  *              Must have at least tls_crypt_buf_overhead()+BLEN(src) headroom.
  * @param opt   The crypto state for this --tls-crypt instance.
c6e24fa3
  *
  * @returns true iff wrapping succeeded.
  */
81d882d5
 bool tls_crypt_wrap(const struct buffer *src, struct buffer *dst,
                     struct crypto_options *opt);
c6e24fa3
 
 /**
  * Unwrap a control channel packet (decrypts, authenticates and performs
  * replay checks).
  *
81d882d5
  * @param src   Data to decrypt and authenticate.
  * @param dst   Returns the decrypted data, if unwrapping was successful.
  * @param opt   The crypto state for this --tls-crypt instance.
c6e24fa3
  *
  * @returns true iff unwrapping succeeded (data authenticated correctly and was
  * no replay).
  */
81d882d5
 bool tls_crypt_unwrap(const struct buffer *src, struct buffer *dst,
                       struct crypto_options *opt);
c6e24fa3
 
9d59029a
 /**
  * Initialize a tls-crypt-v2 server key (used to encrypt/decrypt client keys).
  *
  * @param key           Key structure to be initialized.  Must be non-NULL.
  * @parem encrypt       If true, initialize the key structure for encryption,
  *                      otherwise for decryption.
  * @param key_file      File path of the key file to load, or INLINE tag.
  * @param key_inline    Inline key file contents (or NULL if not inline).
  */
 void tls_crypt_v2_init_server_key(struct key_ctx *key_ctx, bool encrypt,
                                   const char *key_file, const char *key_inline);
 
 /**
  * Initialize a tls-crypt-v2 client key.
  *
  * @param key               Key structure to be initialized with the client
  *                          key.
  * @param wrapped_key_buf   Returns buffer containing the wrapped key that will
  *                          be sent to the server when connecting.  Caller must
  *                          free this buffer when no longer needed.
  * @param key_file          File path of the key file to load, or INLINE tag.
  * @param key_inline        Inline key file contents (or NULL if not inline).
  */
 void tls_crypt_v2_init_client_key(struct key_ctx_bi *key,
                                   struct buffer *wrapped_key_buf,
                                   const char *key_file,
                                   const char *key_inline);
 
 /**
19dffdbd
  * Extract a tls-crypt-v2 client key from a P_CONTROL_HARD_RESET_CLIENT_V3
  * message, and load the key into the supplied tls wrap context.
  *
  * @param buf   Buffer containing a received P_CONTROL_HARD_RESET_CLIENT_V3
  *              message.
  * @param ctx   tls-wrap context to be initialized with the client key.
  *
  * @returns true if a key was successfully extracted.
  */
 bool tls_crypt_v2_extract_client_key(struct buffer *buf,
ff931c5e
                                      struct tls_wrap_ctx *ctx,
                                      const struct tls_options *opt);
19dffdbd
 
 /**
9d59029a
  * Generate a tls-crypt-v2 server key, and write to file.
  *
  * @param filename          Filename of the server key file to create.
  */
 void tls_crypt_v2_write_server_key_file(const char *filename);
 
 /**
  * Generate a tls-crypt-v2 client key, and write to file.
  *
  * @param filename          Filename of the client key file to create.
  * @param b64_metadata      Base64 metadata to be included in the client key.
  * @param server_key_file   File path of the server key to use for wrapping the
  *                          client key, or INLINE tag.
  * @param server_key_inline Inline server key file contents (or NULL if not
  *                          inline).
  */
 void tls_crypt_v2_write_client_key_file(const char *filename,
                                         const char *b64_metadata,
                                         const char *key_file,
                                         const char *key_inline);
 
c6e24fa3
 /** @} */
 
 #endif /* TLSCRYPT_H */