tortls.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /* Copyright 2003 Roger Dingledine
  2. * Copyright 2004-2007 Roger Dingledine, Nick Mathewson */
  3. /* See LICENSE for licensing information */
  4. /* $Id$ */
  5. #ifndef _TORTLS_H
  6. #define _TORTLS_H
  7. #define TORTLS_H_ID "$Id$"
  8. /**
  9. * \file tortls.h
  10. * \brief Headers for tortls.c
  11. **/
  12. #include "../common/crypto.h"
  13. #include "../common/compat.h"
  14. /* Opaque structure to hold a TLS connection. */
  15. typedef struct tor_tls_t tor_tls_t;
  16. /* Possible return values for most tor_tls_* functions. */
  17. #define _MIN_TOR_TLS_ERROR_VAL -9
  18. #define TOR_TLS_ERROR_MISC -9
  19. #define TOR_TLS_ERROR_IO -8
  20. #define TOR_TLS_ERROR_CONNREFUSED -7
  21. #define TOR_TLS_ERROR_CONNRESET -6
  22. #define TOR_TLS_ERROR_NO_ROUTE -5
  23. #define TOR_TLS_ERROR_TIMEOUT -4
  24. #define TOR_TLS_CLOSE -3
  25. #define TOR_TLS_WANTREAD -2
  26. #define TOR_TLS_WANTWRITE -1
  27. #define TOR_TLS_DONE 0
  28. /** Use this macro in a switch statement to catch _any_ TLS error. That way,
  29. * if more errors are added, your switches will still work. */
  30. #define CASE_TOR_TLS_ERROR_ANY \
  31. case TOR_TLS_ERROR_MISC: \
  32. case TOR_TLS_ERROR_IO: \
  33. case TOR_TLS_ERROR_CONNREFUSED: \
  34. case TOR_TLS_ERROR_CONNRESET: \
  35. case TOR_TLS_ERROR_NO_ROUTE: \
  36. case TOR_TLS_ERROR_TIMEOUT
  37. #define TOR_TLS_IS_ERROR(rv) ((rv) < TOR_TLS_CLOSE)
  38. void tor_tls_free_all(void);
  39. int tor_tls_context_new(crypto_pk_env_t *rsa,
  40. const char *nickname, unsigned int key_lifetime);
  41. tor_tls_t *tor_tls_new(int sock, int is_server);
  42. int tor_tls_is_server(tor_tls_t *tls);
  43. void tor_tls_free(tor_tls_t *tls);
  44. int tor_tls_peer_has_cert(tor_tls_t *tls);
  45. int tor_tls_get_peer_cert_nickname(int severity, tor_tls_t *tls,
  46. char *buf, size_t buflen);
  47. int tor_tls_verify(int severity, tor_tls_t *tls, crypto_pk_env_t **identity);
  48. int tor_tls_check_lifetime(tor_tls_t *tls, int tolerance);
  49. int tor_tls_read(tor_tls_t *tls, char *cp, size_t len);
  50. int tor_tls_write(tor_tls_t *tls, const char *cp, size_t n);
  51. int tor_tls_handshake(tor_tls_t *tls);
  52. int tor_tls_shutdown(tor_tls_t *tls);
  53. int tor_tls_get_pending_bytes(tor_tls_t *tls);
  54. size_t tor_tls_get_forced_write_size(tor_tls_t *tls);
  55. void tor_tls_get_n_raw_bytes(tor_tls_t *tls,
  56. size_t *n_read, size_t *n_written);
  57. /* Log and abort if there are unhandled TLS errors in OpenSSL's error stack.
  58. */
  59. #define check_no_tls_errors() _check_no_tls_errors(__FILE__,__LINE__)
  60. void _check_no_tls_errors(const char *fname, int line);
  61. #endif