iPXE
Data Structures | Macros | Enumerations | Functions | Variables
tls.h File Reference

Transport Layer Security Protocol. More...

#include <stdint.h>
#include <ipxe/refcnt.h>
#include <ipxe/interface.h>
#include <ipxe/process.h>
#include <ipxe/crypto.h>
#include <ipxe/md5.h>
#include <ipxe/sha1.h>
#include <ipxe/x509.h>
#include <ipxe/privkey.h>
#include <ipxe/pending.h>
#include <ipxe/iobuf.h>
#include <ipxe/tables.h>

Go to the source code of this file.

Data Structures

struct  tls_header
 A TLS header. More...
 
struct  tls_auth_header
 TLS authentication header. More...
 
struct  tls_verify_data
 TLS verification data. More...
 
struct  tls_key_exchange_algorithm
 A TLS key exchange algorithm. More...
 
struct  tls_cipher_suite
 A TLS cipher suite. More...
 
struct  tls_cipherspec
 A TLS cipher specification. More...
 
struct  tls_signature_hash_id
 A TLS signature and hash algorithm identifier. More...
 
struct  tls_signature_hash_algorithm
 A TLS signature algorithm. More...
 
struct  tls_client_random
 TLS client random data. More...
 
struct  md5_sha1_context
 An MD5+SHA1 context. More...
 
struct  md5_sha1_digest
 An MD5+SHA1 digest. More...
 
struct  tls_session
 A TLS session. More...
 
struct  tls_connection
 A TLS connection. More...
 

Macros

#define TLS_VERSION_TLS_1_1   0x0302
 TLS version 1.1. More...
 
#define TLS_VERSION_TLS_1_2   0x0303
 TLS version 1.2. More...
 
#define TLS_VERSION_MAX   TLS_VERSION_TLS_1_2
 Maximum supported TLS version. More...
 
#define TLS_TYPE_CHANGE_CIPHER   20
 Change cipher content type. More...
 
#define TLS_CHANGE_CIPHER_SPEC   1
 Change cipher spec magic byte. More...
 
#define TLS_TYPE_ALERT   21
 Alert content type. More...
 
#define TLS_TYPE_HANDSHAKE   22
 Handshake content type. More...
 
#define TLS_TYPE_DATA   23
 Application data content type. More...
 
#define TLS_HELLO_REQUEST   0
 
#define TLS_CLIENT_HELLO   1
 
#define TLS_SERVER_HELLO   2
 
#define TLS_NEW_SESSION_TICKET   4
 
#define TLS_CERTIFICATE   11
 
#define TLS_SERVER_KEY_EXCHANGE   12
 
#define TLS_CERTIFICATE_REQUEST   13
 
#define TLS_SERVER_HELLO_DONE   14
 
#define TLS_CERTIFICATE_VERIFY   15
 
#define TLS_CLIENT_KEY_EXCHANGE   16
 
#define TLS_FINISHED   20
 
#define TLS_ALERT_WARNING   1
 
#define TLS_ALERT_FATAL   2
 
#define TLS_RSA_WITH_NULL_MD5   0x0001
 
#define TLS_RSA_WITH_NULL_SHA   0x0002
 
#define TLS_RSA_WITH_AES_128_CBC_SHA   0x002f
 
#define TLS_DHE_RSA_WITH_AES_128_CBC_SHA   0x0033
 
#define TLS_RSA_WITH_AES_256_CBC_SHA   0x0035
 
#define TLS_DHE_RSA_WITH_AES_256_CBC_SHA   0x0039
 
#define TLS_RSA_WITH_AES_128_CBC_SHA256   0x003c
 
#define TLS_RSA_WITH_AES_256_CBC_SHA256   0x003d
 
#define TLS_DHE_RSA_WITH_AES_128_CBC_SHA256   0x0067
 
#define TLS_DHE_RSA_WITH_AES_256_CBC_SHA256   0x006b
 
#define TLS_RSA_WITH_AES_128_GCM_SHA256   0x009c
 
#define TLS_RSA_WITH_AES_256_GCM_SHA384   0x009d
 
#define TLS_DHE_RSA_WITH_AES_128_GCM_SHA256   0x009e
 
#define TLS_DHE_RSA_WITH_AES_256_GCM_SHA384   0x009f
 
#define TLS_MD5_ALGORITHM   1
 
#define TLS_SHA1_ALGORITHM   2
 
#define TLS_SHA224_ALGORITHM   3
 
#define TLS_SHA256_ALGORITHM   4
 
#define TLS_SHA384_ALGORITHM   5
 
#define TLS_SHA512_ALGORITHM   6
 
#define TLS_RSA_ALGORITHM   1
 
#define TLS_SERVER_NAME   0
 
#define TLS_SERVER_NAME_HOST_NAME   0
 
#define TLS_MAX_FRAGMENT_LENGTH   1
 
#define TLS_MAX_FRAGMENT_LENGTH_512   1
 
#define TLS_MAX_FRAGMENT_LENGTH_1024   2
 
#define TLS_MAX_FRAGMENT_LENGTH_2048   3
 
#define TLS_MAX_FRAGMENT_LENGTH_4096   4
 
#define TLS_SIGNATURE_ALGORITHMS   13
 
#define TLS_SESSION_TICKET   35
 
#define TLS_RENEGOTIATION_INFO   0xff01
 
#define TLS_CIPHER_SUITES   __table ( struct tls_cipher_suite, "tls_cipher_suites" )
 TLS cipher suite table. More...
 
#define __tls_cipher_suite(pref)   __table_entry ( TLS_CIPHER_SUITES, pref )
 Declare a TLS cipher suite. More...
 
#define TLS_SIG_HASH_ALGORITHMS
 TLS signature hash algorithm table. More...
 
#define __tls_sig_hash_algorithm   __table_entry ( TLS_SIG_HASH_ALGORITHMS, 01 )
 Declare a TLS signature hash algorithm. More...
 
#define MD5_SHA1_CTX_SIZE   sizeof ( struct md5_sha1_context )
 MD5+SHA1 context size. More...
 
#define MD5_SHA1_DIGEST_SIZE   sizeof ( struct md5_sha1_digest )
 MD5+SHA1 digest size. More...
 
#define TLS_RX_BUFSIZE   4096
 RX I/O buffer size. More...
 
#define TLS_RX_MIN_BUFSIZE   512
 Minimum RX I/O buffer size. More...
 
#define TLS_RX_ALIGN   16
 RX I/O buffer alignment. More...
 

Enumerations

enum  tls_rx_state { TLS_RX_HEADER = 0, TLS_RX_DATA }
 TLS RX state machine state. More...
 
enum  tls_tx_pending {
  TLS_TX_CLIENT_HELLO = 0x0001, TLS_TX_CERTIFICATE = 0x0002, TLS_TX_CLIENT_KEY_EXCHANGE = 0x0004, TLS_TX_CERTIFICATE_VERIFY = 0x0008,
  TLS_TX_CHANGE_CIPHER = 0x0010, TLS_TX_FINISHED = 0x0020
}
 TLS TX pending flags. More...
 

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
 
int add_tls (struct interface *xfer, const char *name, struct x509_root *root, struct private_key *key)
 Add TLS on an interface. More...
 

Variables

struct tls_key_exchange_algorithm tls_pubkey_exchange_algorithm
 Public key exchange algorithm. More...
 
struct tls_key_exchange_algorithm tls_dhe_exchange_algorithm
 Ephemeral Diffie-Hellman key exchange algorithm. More...
 

Detailed Description

Transport Layer Security Protocol.

Definition in file tls.h.

Macro Definition Documentation

◆ TLS_VERSION_TLS_1_1

#define TLS_VERSION_TLS_1_1   0x0302

TLS version 1.1.

Definition at line 44 of file tls.h.

◆ TLS_VERSION_TLS_1_2

#define TLS_VERSION_TLS_1_2   0x0303

TLS version 1.2.

Definition at line 47 of file tls.h.

◆ TLS_VERSION_MAX

#define TLS_VERSION_MAX   TLS_VERSION_TLS_1_2

Maximum supported TLS version.

Definition at line 50 of file tls.h.

◆ TLS_TYPE_CHANGE_CIPHER

#define TLS_TYPE_CHANGE_CIPHER   20

Change cipher content type.

Definition at line 53 of file tls.h.

◆ TLS_CHANGE_CIPHER_SPEC

#define TLS_CHANGE_CIPHER_SPEC   1

Change cipher spec magic byte.

Definition at line 56 of file tls.h.

◆ TLS_TYPE_ALERT

#define TLS_TYPE_ALERT   21

Alert content type.

Definition at line 59 of file tls.h.

◆ TLS_TYPE_HANDSHAKE

#define TLS_TYPE_HANDSHAKE   22

Handshake content type.

Definition at line 62 of file tls.h.

◆ TLS_TYPE_DATA

#define TLS_TYPE_DATA   23

Application data content type.

Definition at line 65 of file tls.h.

◆ TLS_HELLO_REQUEST

#define TLS_HELLO_REQUEST   0

Definition at line 68 of file tls.h.

◆ TLS_CLIENT_HELLO

#define TLS_CLIENT_HELLO   1

Definition at line 69 of file tls.h.

◆ TLS_SERVER_HELLO

#define TLS_SERVER_HELLO   2

Definition at line 70 of file tls.h.

◆ TLS_NEW_SESSION_TICKET

#define TLS_NEW_SESSION_TICKET   4

Definition at line 71 of file tls.h.

◆ TLS_CERTIFICATE

#define TLS_CERTIFICATE   11

Definition at line 72 of file tls.h.

◆ TLS_SERVER_KEY_EXCHANGE

#define TLS_SERVER_KEY_EXCHANGE   12

Definition at line 73 of file tls.h.

◆ TLS_CERTIFICATE_REQUEST

#define TLS_CERTIFICATE_REQUEST   13

Definition at line 74 of file tls.h.

◆ TLS_SERVER_HELLO_DONE

#define TLS_SERVER_HELLO_DONE   14

Definition at line 75 of file tls.h.

◆ TLS_CERTIFICATE_VERIFY

#define TLS_CERTIFICATE_VERIFY   15

Definition at line 76 of file tls.h.

◆ TLS_CLIENT_KEY_EXCHANGE

#define TLS_CLIENT_KEY_EXCHANGE   16

Definition at line 77 of file tls.h.

◆ TLS_FINISHED

#define TLS_FINISHED   20

Definition at line 78 of file tls.h.

◆ TLS_ALERT_WARNING

#define TLS_ALERT_WARNING   1

Definition at line 81 of file tls.h.

◆ TLS_ALERT_FATAL

#define TLS_ALERT_FATAL   2

Definition at line 82 of file tls.h.

◆ TLS_RSA_WITH_NULL_MD5

#define TLS_RSA_WITH_NULL_MD5   0x0001

Definition at line 85 of file tls.h.

◆ TLS_RSA_WITH_NULL_SHA

#define TLS_RSA_WITH_NULL_SHA   0x0002

Definition at line 86 of file tls.h.

◆ TLS_RSA_WITH_AES_128_CBC_SHA

#define TLS_RSA_WITH_AES_128_CBC_SHA   0x002f

Definition at line 87 of file tls.h.

◆ TLS_DHE_RSA_WITH_AES_128_CBC_SHA

#define TLS_DHE_RSA_WITH_AES_128_CBC_SHA   0x0033

Definition at line 88 of file tls.h.

◆ TLS_RSA_WITH_AES_256_CBC_SHA

#define TLS_RSA_WITH_AES_256_CBC_SHA   0x0035

Definition at line 89 of file tls.h.

◆ TLS_DHE_RSA_WITH_AES_256_CBC_SHA

#define TLS_DHE_RSA_WITH_AES_256_CBC_SHA   0x0039

Definition at line 90 of file tls.h.

◆ TLS_RSA_WITH_AES_128_CBC_SHA256

#define TLS_RSA_WITH_AES_128_CBC_SHA256   0x003c

Definition at line 91 of file tls.h.

◆ TLS_RSA_WITH_AES_256_CBC_SHA256

#define TLS_RSA_WITH_AES_256_CBC_SHA256   0x003d

Definition at line 92 of file tls.h.

◆ TLS_DHE_RSA_WITH_AES_128_CBC_SHA256

#define TLS_DHE_RSA_WITH_AES_128_CBC_SHA256   0x0067

Definition at line 93 of file tls.h.

◆ TLS_DHE_RSA_WITH_AES_256_CBC_SHA256

#define TLS_DHE_RSA_WITH_AES_256_CBC_SHA256   0x006b

Definition at line 94 of file tls.h.

◆ TLS_RSA_WITH_AES_128_GCM_SHA256

#define TLS_RSA_WITH_AES_128_GCM_SHA256   0x009c

Definition at line 95 of file tls.h.

◆ TLS_RSA_WITH_AES_256_GCM_SHA384

#define TLS_RSA_WITH_AES_256_GCM_SHA384   0x009d

Definition at line 96 of file tls.h.

◆ TLS_DHE_RSA_WITH_AES_128_GCM_SHA256

#define TLS_DHE_RSA_WITH_AES_128_GCM_SHA256   0x009e

Definition at line 97 of file tls.h.

◆ TLS_DHE_RSA_WITH_AES_256_GCM_SHA384

#define TLS_DHE_RSA_WITH_AES_256_GCM_SHA384   0x009f

Definition at line 98 of file tls.h.

◆ TLS_MD5_ALGORITHM

#define TLS_MD5_ALGORITHM   1

Definition at line 101 of file tls.h.

◆ TLS_SHA1_ALGORITHM

#define TLS_SHA1_ALGORITHM   2

Definition at line 102 of file tls.h.

◆ TLS_SHA224_ALGORITHM

#define TLS_SHA224_ALGORITHM   3

Definition at line 103 of file tls.h.

◆ TLS_SHA256_ALGORITHM

#define TLS_SHA256_ALGORITHM   4

Definition at line 104 of file tls.h.

◆ TLS_SHA384_ALGORITHM

#define TLS_SHA384_ALGORITHM   5

Definition at line 105 of file tls.h.

◆ TLS_SHA512_ALGORITHM

#define TLS_SHA512_ALGORITHM   6

Definition at line 106 of file tls.h.

◆ TLS_RSA_ALGORITHM

#define TLS_RSA_ALGORITHM   1

Definition at line 109 of file tls.h.

◆ TLS_SERVER_NAME

#define TLS_SERVER_NAME   0

Definition at line 112 of file tls.h.

◆ TLS_SERVER_NAME_HOST_NAME

#define TLS_SERVER_NAME_HOST_NAME   0

Definition at line 113 of file tls.h.

◆ TLS_MAX_FRAGMENT_LENGTH

#define TLS_MAX_FRAGMENT_LENGTH   1

Definition at line 116 of file tls.h.

◆ TLS_MAX_FRAGMENT_LENGTH_512

#define TLS_MAX_FRAGMENT_LENGTH_512   1

Definition at line 117 of file tls.h.

◆ TLS_MAX_FRAGMENT_LENGTH_1024

#define TLS_MAX_FRAGMENT_LENGTH_1024   2

Definition at line 118 of file tls.h.

◆ TLS_MAX_FRAGMENT_LENGTH_2048

#define TLS_MAX_FRAGMENT_LENGTH_2048   3

Definition at line 119 of file tls.h.

◆ TLS_MAX_FRAGMENT_LENGTH_4096

#define TLS_MAX_FRAGMENT_LENGTH_4096   4

Definition at line 120 of file tls.h.

◆ TLS_SIGNATURE_ALGORITHMS

#define TLS_SIGNATURE_ALGORITHMS   13

Definition at line 123 of file tls.h.

◆ TLS_SESSION_TICKET

#define TLS_SESSION_TICKET   35

Definition at line 126 of file tls.h.

◆ TLS_RENEGOTIATION_INFO

#define TLS_RENEGOTIATION_INFO   0xff01

Definition at line 129 of file tls.h.

◆ TLS_CIPHER_SUITES

#define TLS_CIPHER_SUITES   __table ( struct tls_cipher_suite, "tls_cipher_suites" )

TLS cipher suite table.

Definition at line 201 of file tls.h.

◆ __tls_cipher_suite

#define __tls_cipher_suite (   pref)    __table_entry ( TLS_CIPHER_SUITES, pref )

Declare a TLS cipher suite.

Definition at line 205 of file tls.h.

◆ TLS_SIG_HASH_ALGORITHMS

#define TLS_SIG_HASH_ALGORITHMS
Value:
"tls_sig_hash_algorithms" )
#define __table(type, name)
Declare a linker table.
Definition: tables.h:179
A TLS signature algorithm.
Definition: tls.h:233

TLS signature hash algorithm table.

Note that the default (TLSv1.1 and earlier) algorithm using MD5+SHA1 is never explicitly specified.

Definition at line 247 of file tls.h.

◆ __tls_sig_hash_algorithm

#define __tls_sig_hash_algorithm   __table_entry ( TLS_SIG_HASH_ALGORITHMS, 01 )

Declare a TLS signature hash algorithm.

Definition at line 252 of file tls.h.

◆ MD5_SHA1_CTX_SIZE

#define MD5_SHA1_CTX_SIZE   sizeof ( struct md5_sha1_context )

MD5+SHA1 context size.

Definition at line 272 of file tls.h.

◆ MD5_SHA1_DIGEST_SIZE

#define MD5_SHA1_DIGEST_SIZE   sizeof ( struct md5_sha1_digest )

MD5+SHA1 digest size.

Definition at line 283 of file tls.h.

◆ TLS_RX_BUFSIZE

#define TLS_RX_BUFSIZE   4096

RX I/O buffer size.

The maximum fragment length extension is optional, and many common implementations (including OpenSSL) do not support it. We must therefore be prepared to receive records of up to 16kB in length. The chance of an allocation of this size failing is non-negligible, so we must split received data into smaller allocations.

Definition at line 413 of file tls.h.

◆ TLS_RX_MIN_BUFSIZE

#define TLS_RX_MIN_BUFSIZE   512

Minimum RX I/O buffer size.

To simplify manipulations, we ensure that no RX I/O buffer is smaller than this size. This allows us to assume that the MAC and padding are entirely contained within the final I/O buffer.

Definition at line 421 of file tls.h.

◆ TLS_RX_ALIGN

#define TLS_RX_ALIGN   16

RX I/O buffer alignment.

Definition at line 424 of file tls.h.

Enumeration Type Documentation

◆ tls_rx_state

TLS RX state machine state.

Enumerator
TLS_RX_HEADER 
TLS_RX_DATA 

Definition at line 148 of file tls.h.

148  {
149  TLS_RX_HEADER = 0,
150  TLS_RX_DATA,
151 };

◆ tls_tx_pending

TLS TX pending flags.

Enumerator
TLS_TX_CLIENT_HELLO 
TLS_TX_CERTIFICATE 
TLS_TX_CLIENT_KEY_EXCHANGE 
TLS_TX_CERTIFICATE_VERIFY 
TLS_TX_CHANGE_CIPHER 
TLS_TX_FINISHED 

Definition at line 154 of file tls.h.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL  )

◆ add_tls()

int add_tls ( struct interface xfer,
const char *  name,
struct x509_root root,
struct private_key key 
)

Add TLS on an interface.

Parameters
xferData transfer interface
nameHost name
rootRoot of trust (or NULL to use default)
keyPrivate key (or NULL to use default)
Return values
rcReturn status code

Definition at line 3588 of file tls.c.

3589  {
3590  struct tls_connection *tls;
3591  int rc;
3592 
3593  /* Allocate and initialise TLS structure */
3594  tls = malloc ( sizeof ( *tls ) );
3595  if ( ! tls ) {
3596  rc = -ENOMEM;
3597  goto err_alloc;
3598  }
3599  memset ( tls, 0, sizeof ( *tls ) );
3600  ref_init ( &tls->refcnt, free_tls );
3601  INIT_LIST_HEAD ( &tls->list );
3602  intf_init ( &tls->plainstream, &tls_plainstream_desc, &tls->refcnt );
3604  intf_init ( &tls->validator, &tls_validator_desc, &tls->refcnt );
3606  &tls->refcnt );
3607  tls->key = privkey_get ( key ? key : &private_key );
3608  tls->root = x509_root_get ( root ? root : &root_certificates );
3609  tls->version = TLS_VERSION_MAX;
3610  tls_clear_cipher ( tls, &tls->tx_cipherspec );
3611  tls_clear_cipher ( tls, &tls->tx_cipherspec_pending );
3612  tls_clear_cipher ( tls, &tls->rx_cipherspec );
3613  tls_clear_cipher ( tls, &tls->rx_cipherspec_pending );
3614  tls_clear_handshake ( tls );
3615  tls->client_random.gmt_unix_time = time ( NULL );
3616  iob_populate ( &tls->rx_header_iobuf, &tls->rx_header, 0,
3617  sizeof ( tls->rx_header ) );
3618  INIT_LIST_HEAD ( &tls->rx_data );
3619  if ( ( rc = tls_generate_random ( tls, &tls->client_random.random,
3620  ( sizeof ( tls->client_random.random ) ) ) ) != 0 ) {
3621  goto err_random;
3622  }
3623  if ( ( rc = tls_session ( tls, name ) ) != 0 )
3624  goto err_session;
3625  list_add_tail ( &tls->list, &tls->session->conn );
3626 
3627  /* Start negotiation */
3628  tls_restart ( tls );
3629 
3630  /* Attach to parent interface, mortalise self, and return */
3631  intf_insert ( xfer, &tls->plainstream, &tls->cipherstream );
3632  ref_put ( &tls->refcnt );
3633  return 0;
3634 
3635  err_session:
3636  err_random:
3637  ref_put ( &tls->refcnt );
3638  err_alloc:
3639  return rc;
3640 }
static void free_tls(struct refcnt *refcnt)
Free TLS connection.
Definition: tls.c:372
struct arbelprm_rc_send_wqe rc
Definition: arbel.h:14
const char * name
Definition: ath9k_hw.c:1984
struct process process
TX process.
Definition: tls.h:389
struct tls_session * session
Session.
Definition: tls.h:320
struct io_buffer rx_header_iobuf
Current received record header (static I/O buffer)
Definition: tls.h:398
static void tls_restart(struct tls_connection *tls)
Restart negotiation.
Definition: tls.c:1078
struct stp_switch root
Root switch.
Definition: stp.h:26
#define ref_init(refcnt, free)
Initialise a reference counter.
Definition: refcnt.h:64
struct refcnt refcnt
Reference counter.
Definition: tls.h:317
struct x509_root root_certificates
Root certificates.
Definition: rootcert.c:73
static struct private_key * privkey_get(struct private_key *key)
Get reference to private key.
Definition: privkey.h:30
struct tls_header rx_header
Current received record header.
Definition: tls.h:396
struct x509_root * root
Root of trust.
Definition: tls.h:371
static void iob_populate(struct io_buffer *iobuf, void *data, size_t len, size_t max_len)
Create a temporary I/O buffer.
Definition: iobuf.h:190
static struct interface_descriptor tls_cipherstream_desc
TLS ciphertext stream interface descriptor.
Definition: tls.c:3306
static struct interface_descriptor tls_validator_desc
TLS certificate validator interface descriptor.
Definition: tls.c:3386
#define ENOMEM
Not enough space.
Definition: errno.h:534
struct tls_cipherspec tx_cipherspec
Current TX cipher specification.
Definition: tls.h:340
#define list_add_tail(new, head)
Add a new entry to the tail of a list.
Definition: list.h:93
struct list_head list
List of connections within the same session.
Definition: tls.h:322
uint32_t gmt_unix_time
GMT Unix time.
Definition: tls.h:258
static struct x509_root * x509_root_get(struct x509_root *root)
Get reference to X.509 root certificate list.
Definition: x509.h:362
struct tls_client_random client_random
Client random bytes.
Definition: tls.h:352
struct interface cipherstream
Ciphertext stream.
Definition: tls.h:335
struct private_key * key
Private key.
Definition: tls.h:362
static void process_init_stopped(struct process *process, struct process_descriptor *desc, struct refcnt *refcnt)
Initialise process without adding to process list.
Definition: process.h:145
struct tls_cipherspec rx_cipherspec
Current RX cipher specification.
Definition: tls.h:344
void * malloc(size_t size)
Allocate memory.
Definition: malloc.c:583
struct tls_cipherspec tx_cipherspec_pending
Next TX cipher specification.
Definition: tls.h:342
#define TLS_VERSION_MAX
Maximum supported TLS version.
Definition: tls.h:50
struct list_head rx_data
List of received data buffers.
Definition: tls.h:400
static struct interface_descriptor tls_plainstream_desc
TLS plaintext stream interface descriptor.
Definition: tls.c:3091
void intf_insert(struct interface *intf, struct interface *upper, struct interface *lower)
Insert a filter interface.
Definition: interface.c:401
#define INIT_LIST_HEAD(list)
Initialise a list head.
Definition: list.h:45
uint8_t random[28]
Random data.
Definition: tls.h:260
struct interface validator
Certificate validator.
Definition: tls.h:375
A TLS session.
Definition: tls.h:286
static struct process_descriptor tls_process_desc
TLS TX process descriptor.
Definition: tls.c:3511
struct tls_cipherspec rx_cipherspec_pending
Next RX cipher specification.
Definition: tls.h:346
uint16_t version
Protocol version.
Definition: tls.h:338
static void tls_clear_handshake(struct tls_connection *tls)
Clear handshake digest algorithm.
Definition: tls.c:745
A private key.
Definition: privkey.h:16
A TLS connection.
Definition: tls.h:315
static void tls_clear_cipher(struct tls_connection *tls, struct tls_cipherspec *cipherspec)
struct list_head conn
List of connections.
Definition: tls.h:311
static int tls_generate_random(struct tls_connection *tls, void *data, size_t len)
Generate random data.
Definition: tls.c:449
static void intf_init(struct interface *intf, struct interface_descriptor *desc, struct refcnt *refcnt)
Initialise an object interface.
Definition: interface.h:203
struct interface plainstream
Plaintext stream.
Definition: tls.h:333
uint64_t time
Current time.
Definition: ntlm.h:20
#define NULL
NULL pointer (VOID *)
Definition: Base.h:321
union @382 key
Sense key.
Definition: scsi.h:18
#define ref_put(refcnt)
Drop reference to object.
Definition: refcnt.h:106
void * memset(void *dest, int character, size_t len) __nonnull

References tls_connection::cipherstream, tls_connection::client_random, tls_session::conn, ENOMEM, free_tls(), tls_client_random::gmt_unix_time, INIT_LIST_HEAD, intf_init(), intf_insert(), iob_populate(), key, tls_connection::key, tls_connection::list, list_add_tail, malloc(), memset(), name, NULL, tls_connection::plainstream, privkey_get(), tls_connection::process, process_init_stopped(), tls_client_random::random, rc, ref_init, ref_put, tls_connection::refcnt, root, tls_connection::root, root_certificates, tls_connection::rx_cipherspec, tls_connection::rx_cipherspec_pending, tls_connection::rx_data, tls_connection::rx_header, tls_connection::rx_header_iobuf, tls_connection::session, time, tls_cipherstream_desc, tls_clear_cipher(), tls_clear_handshake(), tls_generate_random(), tls_plainstream_desc, tls_process_desc, tls_restart(), tls_validator_desc, TLS_VERSION_MAX, tls_connection::tx_cipherspec, tls_connection::tx_cipherspec_pending, tls_connection::validator, tls_connection::version, and x509_root_get().

Referenced by apply_syslogs_settings(), https_filter(), and ipair_rx_session().

Variable Documentation

◆ tls_pubkey_exchange_algorithm

struct tls_key_exchange_algorithm tls_pubkey_exchange_algorithm

Public key exchange algorithm.

Definition at line 1371 of file tls.c.

◆ tls_dhe_exchange_algorithm

struct tls_key_exchange_algorithm tls_dhe_exchange_algorithm

Ephemeral Diffie-Hellman key exchange algorithm.

Definition at line 1570 of file tls.c.