2005-04-01 22:15:56 +02:00
|
|
|
/* Copyright 2003 Roger Dingledine
|
2007-02-12 22:39:53 +01:00
|
|
|
* Copyright 2004-2007 Roger Dingledine, Nick Mathewson */
|
2003-09-04 18:05:08 +02:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#ifndef _TORTLS_H
|
|
|
|
#define _TORTLS_H
|
2004-11-29 23:25:31 +01:00
|
|
|
#define TORTLS_H_ID "$Id$"
|
2003-09-04 18:05:08 +02:00
|
|
|
|
2004-05-10 09:54:13 +02:00
|
|
|
/**
|
|
|
|
* \file tortls.h
|
|
|
|
* \brief Headers for tortls.c
|
|
|
|
**/
|
|
|
|
|
2007-08-08 07:50:31 +02:00
|
|
|
#include "crypto.h"
|
|
|
|
#include "compat.h"
|
2003-09-04 18:05:08 +02:00
|
|
|
|
2004-05-01 22:46:28 +02:00
|
|
|
/* Opaque structure to hold a TLS connection. */
|
2005-10-06 06:33:40 +02:00
|
|
|
typedef struct tor_tls_t tor_tls_t;
|
2003-09-04 18:05:08 +02:00
|
|
|
|
2004-05-01 22:46:28 +02:00
|
|
|
/* Possible return values for most tor_tls_* functions. */
|
2007-01-15 22:21:05 +01:00
|
|
|
#define _MIN_TOR_TLS_ERROR_VAL -9
|
2007-01-15 22:13:37 +01:00
|
|
|
#define TOR_TLS_ERROR_MISC -9
|
2007-11-07 17:37:08 +01:00
|
|
|
/* Rename to unexpected close or something. XXX020 */
|
2007-01-15 22:13:37 +01:00
|
|
|
#define TOR_TLS_ERROR_IO -8
|
|
|
|
#define TOR_TLS_ERROR_CONNREFUSED -7
|
|
|
|
#define TOR_TLS_ERROR_CONNRESET -6
|
|
|
|
#define TOR_TLS_ERROR_NO_ROUTE -5
|
|
|
|
#define TOR_TLS_ERROR_TIMEOUT -4
|
|
|
|
#define TOR_TLS_CLOSE -3
|
|
|
|
#define TOR_TLS_WANTREAD -2
|
|
|
|
#define TOR_TLS_WANTWRITE -1
|
|
|
|
#define TOR_TLS_DONE 0
|
2003-09-04 18:05:08 +02:00
|
|
|
|
2007-02-02 21:06:43 +01:00
|
|
|
/** Use this macro in a switch statement to catch _any_ TLS error. That way,
|
2007-01-15 22:21:05 +01:00
|
|
|
* if more errors are added, your switches will still work. */
|
|
|
|
#define CASE_TOR_TLS_ERROR_ANY \
|
|
|
|
case TOR_TLS_ERROR_MISC: \
|
|
|
|
case TOR_TLS_ERROR_IO: \
|
|
|
|
case TOR_TLS_ERROR_CONNREFUSED: \
|
|
|
|
case TOR_TLS_ERROR_CONNRESET: \
|
|
|
|
case TOR_TLS_ERROR_NO_ROUTE: \
|
|
|
|
case TOR_TLS_ERROR_TIMEOUT
|
|
|
|
|
2007-11-05 19:15:47 +01:00
|
|
|
/**DOCDOC*/
|
|
|
|
#define TOR_TLS_RANDOM_LEN 32
|
|
|
|
|
2007-01-15 22:21:05 +01:00
|
|
|
#define TOR_TLS_IS_ERROR(rv) ((rv) < TOR_TLS_CLOSE)
|
2007-11-07 17:37:08 +01:00
|
|
|
const char *tor_tls_err_to_string(int err);
|
2007-01-15 22:21:05 +01:00
|
|
|
|
2005-02-11 02:41:19 +01:00
|
|
|
void tor_tls_free_all(void);
|
2006-06-07 08:10:54 +02:00
|
|
|
int tor_tls_context_new(crypto_pk_env_t *rsa,
|
2004-04-25 00:17:50 +02:00
|
|
|
const char *nickname, unsigned int key_lifetime);
|
2006-06-07 08:21:11 +02:00
|
|
|
tor_tls_t *tor_tls_new(int sock, int is_server);
|
2005-10-06 06:33:40 +02:00
|
|
|
int tor_tls_is_server(tor_tls_t *tls);
|
|
|
|
void tor_tls_free(tor_tls_t *tls);
|
|
|
|
int tor_tls_peer_has_cert(tor_tls_t *tls);
|
2007-11-05 19:15:50 +01:00
|
|
|
int tor_tls_get_cert_digests(tor_tls_t *tls, char *my_digest_out,
|
|
|
|
char *peer_digest_out);
|
2007-11-05 19:15:54 +01:00
|
|
|
char *tor_tls_encode_my_certificate(tor_tls_t *tls, size_t *size_out,
|
|
|
|
int conn_cert);
|
2007-11-05 20:19:46 +01:00
|
|
|
crypto_pk_env_t *tor_tls_dup_private_key(tor_tls_t *tls);
|
2007-11-05 19:15:50 +01:00
|
|
|
int tor_tls_verify_v1(int severity, tor_tls_t *tls,
|
|
|
|
crypto_pk_env_t **identity);
|
2007-12-01 09:09:46 +01:00
|
|
|
#if 0
|
2007-11-06 19:00:07 +01:00
|
|
|
int tor_tls_verify_certs_v2(int severity, tor_tls_t *tls,
|
|
|
|
const char *cert_str, size_t cert_len,
|
|
|
|
const char *id_cert_str, size_t id_cert_len,
|
|
|
|
crypto_pk_env_t **cert_key_out,
|
|
|
|
char *conn_cert_digest_out,
|
2007-11-14 21:01:12 +01:00
|
|
|
crypto_pk_env_t **id_key_out,
|
2007-11-06 19:00:07 +01:00
|
|
|
char *id_digest_out);
|
2007-12-01 09:09:46 +01:00
|
|
|
#endif
|
2005-10-06 06:33:40 +02:00
|
|
|
int tor_tls_check_lifetime(tor_tls_t *tls, int tolerance);
|
|
|
|
int tor_tls_read(tor_tls_t *tls, char *cp, size_t len);
|
2007-01-30 23:19:41 +01:00
|
|
|
int tor_tls_write(tor_tls_t *tls, const char *cp, size_t n);
|
2005-10-06 06:33:40 +02:00
|
|
|
int tor_tls_handshake(tor_tls_t *tls);
|
2007-12-01 09:09:46 +01:00
|
|
|
int tor_tls_renegotiate(tor_tls_t *tls);
|
2005-10-06 06:33:40 +02:00
|
|
|
int tor_tls_shutdown(tor_tls_t *tls);
|
|
|
|
int tor_tls_get_pending_bytes(tor_tls_t *tls);
|
2006-12-13 23:46:42 +01:00
|
|
|
size_t tor_tls_get_forced_write_size(tor_tls_t *tls);
|
2005-10-06 06:33:40 +02:00
|
|
|
|
2006-12-29 04:42:46 +01:00
|
|
|
void tor_tls_get_n_raw_bytes(tor_tls_t *tls,
|
|
|
|
size_t *n_read, size_t *n_written);
|
2004-01-13 02:19:02 +01:00
|
|
|
|
2007-10-30 22:46:02 +01:00
|
|
|
int tor_tls_used_v1_handshake(tor_tls_t *tls);
|
2007-11-05 19:15:47 +01:00
|
|
|
int tor_tls_get_random_values(tor_tls_t *tls, char *client_random_out,
|
|
|
|
char *server_random_out);
|
|
|
|
int tor_tls_hmac_with_master_secret(tor_tls_t *tls, char *hmac_out,
|
|
|
|
const char *data, size_t data_len);
|
2007-10-30 22:46:02 +01:00
|
|
|
|
2004-05-01 22:46:28 +02:00
|
|
|
/* Log and abort if there are unhandled TLS errors in OpenSSL's error stack.
|
|
|
|
*/
|
2005-10-25 09:05:03 +02:00
|
|
|
#define check_no_tls_errors() _check_no_tls_errors(__FILE__,__LINE__)
|
2004-04-27 01:00:07 +02:00
|
|
|
|
2005-04-23 16:26:02 +02:00
|
|
|
void _check_no_tls_errors(const char *fname, int line);
|
2004-04-27 01:00:07 +02:00
|
|
|
|
2003-09-04 18:05:08 +02:00
|
|
|
#endif
|
2005-06-09 21:03:31 +02:00
|
|
|
|