2003-09-04 18:05:08 +02:00
|
|
|
/* Copyright 2003 Roger Dingledine */
|
|
|
|
/* 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
|
|
|
|
**/
|
|
|
|
|
2003-09-04 18:05:08 +02:00
|
|
|
#include "../common/crypto.h"
|
2004-12-22 03:32:26 +01:00
|
|
|
#include "../common/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. */
|
2003-09-04 18:05:08 +02:00
|
|
|
typedef struct tor_tls_st tor_tls;
|
|
|
|
|
2004-05-01 22:46:28 +02:00
|
|
|
/* Possible return values for most tor_tls_* functions. */
|
2003-09-04 18:05:08 +02:00
|
|
|
#define TOR_TLS_ERROR -4
|
|
|
|
#define TOR_TLS_CLOSE -3
|
|
|
|
#define TOR_TLS_WANTREAD -2
|
|
|
|
#define TOR_TLS_WANTWRITE -1
|
|
|
|
#define TOR_TLS_DONE 0
|
|
|
|
|
2005-02-11 02:41:19 +01:00
|
|
|
void tor_tls_free_all(void);
|
2004-04-25 00:17:50 +02:00
|
|
|
int tor_tls_context_new(crypto_pk_env_t *rsa, int isServer,
|
|
|
|
const char *nickname, unsigned int key_lifetime);
|
2004-07-22 06:53:34 +02:00
|
|
|
tor_tls *tor_tls_new(int sock, int is_server, int use_no_cert);
|
2003-09-04 18:05:08 +02:00
|
|
|
void tor_tls_free(tor_tls *tls);
|
2003-09-10 02:47:39 +02:00
|
|
|
int tor_tls_peer_has_cert(tor_tls *tls);
|
2004-10-14 04:48:57 +02:00
|
|
|
int tor_tls_get_peer_cert_nickname(tor_tls *tls, char *buf, size_t buflen);
|
2004-07-21 02:44:04 +02:00
|
|
|
int tor_tls_verify(tor_tls *tls, crypto_pk_env_t **identity);
|
2004-11-14 23:07:48 +01:00
|
|
|
int tor_tls_check_lifetime(tor_tls *tls, int tolerance);
|
2004-10-14 04:48:57 +02:00
|
|
|
int tor_tls_read(tor_tls *tls, char *cp, size_t len);
|
|
|
|
int tor_tls_write(tor_tls *tls, char *cp, size_t n);
|
2003-09-04 18:05:08 +02:00
|
|
|
int tor_tls_handshake(tor_tls *tls);
|
|
|
|
int tor_tls_shutdown(tor_tls *tls);
|
2003-09-28 08:47:29 +02:00
|
|
|
int tor_tls_get_pending_bytes(tor_tls *tls);
|
2003-09-04 18:05:08 +02:00
|
|
|
|
2004-01-13 02:19:02 +01:00
|
|
|
unsigned long tor_tls_get_n_bytes_read(tor_tls *tls);
|
|
|
|
unsigned long tor_tls_get_n_bytes_written(tor_tls *tls);
|
|
|
|
|
2004-05-01 22:46:28 +02:00
|
|
|
/* Log and abort if there are unhandled TLS errors in OpenSSL's error stack.
|
|
|
|
*/
|
2004-12-22 03:32:26 +01:00
|
|
|
#define assert_no_tls_errors() _assert_no_tls_errors(_SHORT_FILE_,__LINE__)
|
2004-04-27 01:00:07 +02:00
|
|
|
|
|
|
|
void _assert_no_tls_errors(const char *fname, int line);
|
|
|
|
|
2003-09-04 18:05:08 +02:00
|
|
|
#endif
|
2004-04-06 05:44:36 +02:00
|
|
|
|