connection.h 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. /* Copyright (c) 2001 Matej Pfajfar.
  2. * Copyright (c) 2001-2004, Roger Dingledine.
  3. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  4. * Copyright (c) 2007-2013, The Tor Project, Inc. */
  5. /* See LICENSE for licensing information */
  6. /**
  7. * \file connection.h
  8. * \brief Header file for connection.c.
  9. **/
  10. #ifndef TOR_CONNECTION_H
  11. #define TOR_CONNECTION_H
  12. /* XXXX For buf_datalen in inline function */
  13. #include "buffers.h"
  14. const char *conn_type_to_string(int type);
  15. const char *conn_state_to_string(int type, int state);
  16. dir_connection_t *dir_connection_new(int socket_family);
  17. or_connection_t *or_connection_new(int type, int socket_family);
  18. edge_connection_t *edge_connection_new(int type, int socket_family);
  19. entry_connection_t *entry_connection_new(int type, int socket_family);
  20. control_connection_t *control_connection_new(int socket_family);
  21. listener_connection_t *listener_connection_new(int type, int socket_family);
  22. connection_t *connection_new(int type, int socket_family);
  23. void connection_link_connections(connection_t *conn_a, connection_t *conn_b);
  24. void connection_free(connection_t *conn);
  25. void connection_free_all(void);
  26. void connection_about_to_close_connection(connection_t *conn);
  27. void connection_close_immediate(connection_t *conn);
  28. void connection_mark_for_close_(connection_t *conn,
  29. int line, const char *file);
  30. void connection_mark_for_close_internal_(connection_t *conn,
  31. int line, const char *file);
  32. #define connection_mark_for_close(c) \
  33. connection_mark_for_close_((c), __LINE__, SHORT_FILE__)
  34. #define connection_mark_for_close_internal(c) \
  35. connection_mark_for_close_internal_((c), __LINE__, SHORT_FILE__)
  36. /**
  37. * Mark 'c' for close, but try to hold it open until all the data is written.
  38. * Use the _internal versions of connection_mark_for_close; this should be
  39. * called when you either are sure that if this is an or_connection_t the
  40. * controlling channel has been notified (e.g. with
  41. * connection_or_notify_error()), or you actually are the
  42. * connection_or_close_for_error() or connection_or_close_normally function.
  43. * For all other cases, use connection_mark_and_flush() instead, which
  44. * checks for or_connection_t properly, instead. See below.
  45. */
  46. #define connection_mark_and_flush_internal_(c,line,file) \
  47. do { \
  48. connection_t *tmp_conn_ = (c); \
  49. connection_mark_for_close_internal_(tmp_conn_, (line), (file)); \
  50. tmp_conn_->hold_open_until_flushed = 1; \
  51. IF_HAS_BUFFEREVENT(tmp_conn_, \
  52. connection_start_writing(tmp_conn_)); \
  53. } while (0)
  54. #define connection_mark_and_flush_internal(c) \
  55. connection_mark_and_flush_internal_((c), __LINE__, SHORT_FILE__)
  56. /**
  57. * Mark 'c' for close, but try to hold it open until all the data is written.
  58. */
  59. #define connection_mark_and_flush_(c,line,file) \
  60. do { \
  61. connection_t *tmp_conn_ = (c); \
  62. if (tmp_conn_->type == CONN_TYPE_OR) { \
  63. log_warn(LD_CHANNEL | LD_BUG, \
  64. "Something tried to close (and flush) an or_connection_t" \
  65. " without going through channels at %s:%d", \
  66. file, line); \
  67. connection_or_close_for_error(TO_OR_CONN(tmp_conn_), 1); \
  68. } else { \
  69. connection_mark_and_flush_internal_(c, line, file); \
  70. } \
  71. } while (0)
  72. #define connection_mark_and_flush(c) \
  73. connection_mark_and_flush_((c), __LINE__, SHORT_FILE__)
  74. void connection_expire_held_open(void);
  75. int connection_connect(connection_t *conn, const char *address,
  76. const tor_addr_t *addr,
  77. uint16_t port, int *socket_error);
  78. /** Maximum size of information that we can fit into SOCKS5 username
  79. or password fields. */
  80. #define MAX_SOCKS5_AUTH_FIELD_SIZE 255
  81. /** Total maximum size of information that we can fit into SOCKS5
  82. username and password fields. */
  83. #define MAX_SOCKS5_AUTH_SIZE_TOTAL 2*MAX_SOCKS5_AUTH_FIELD_SIZE
  84. int connection_proxy_connect(connection_t *conn, int type);
  85. int connection_read_proxy_handshake(connection_t *conn);
  86. void log_failed_proxy_connection(connection_t *conn);
  87. int get_proxy_addrport(tor_addr_t *addr, uint16_t *port, int *proxy_type,
  88. const connection_t *conn);
  89. int retry_all_listeners(smartlist_t *replaced_conns,
  90. smartlist_t *new_conns,
  91. int close_all_noncontrol);
  92. void connection_mark_all_noncontrol_listeners(void);
  93. void connection_mark_all_noncontrol_connections(void);
  94. ssize_t connection_bucket_write_limit(connection_t *conn, time_t now);
  95. int global_write_bucket_low(connection_t *conn, size_t attempt, int priority);
  96. void connection_bucket_init(void);
  97. void connection_bucket_refill(int seconds_elapsed, time_t now);
  98. int connection_handle_read(connection_t *conn);
  99. int connection_fetch_from_buf(char *string, size_t len, connection_t *conn);
  100. int connection_fetch_from_buf_line(connection_t *conn, char *data,
  101. size_t *data_len);
  102. int connection_fetch_from_buf_http(connection_t *conn,
  103. char **headers_out, size_t max_headerlen,
  104. char **body_out, size_t *body_used,
  105. size_t max_bodylen, int force_complete);
  106. int connection_wants_to_flush(connection_t *conn);
  107. int connection_outbuf_too_full(connection_t *conn);
  108. int connection_handle_write(connection_t *conn, int force);
  109. int connection_flush(connection_t *conn);
  110. void connection_write_to_buf_impl_(const char *string, size_t len,
  111. connection_t *conn, int zlib);
  112. /* DOCDOC connection_write_to_buf */
  113. static void connection_write_to_buf(const char *string, size_t len,
  114. connection_t *conn);
  115. /* DOCDOC connection_write_to_buf_zlib */
  116. static void connection_write_to_buf_zlib(const char *string, size_t len,
  117. dir_connection_t *conn, int done);
  118. static INLINE void
  119. connection_write_to_buf(const char *string, size_t len, connection_t *conn)
  120. {
  121. connection_write_to_buf_impl_(string, len, conn, 0);
  122. }
  123. static INLINE void
  124. connection_write_to_buf_zlib(const char *string, size_t len,
  125. dir_connection_t *conn, int done)
  126. {
  127. connection_write_to_buf_impl_(string, len, TO_CONN(conn), done ? -1 : 1);
  128. }
  129. /* DOCDOC connection_get_inbuf_len */
  130. static size_t connection_get_inbuf_len(connection_t *conn);
  131. /* DOCDOC connection_get_outbuf_len */
  132. static size_t connection_get_outbuf_len(connection_t *conn);
  133. static INLINE size_t
  134. connection_get_inbuf_len(connection_t *conn)
  135. {
  136. IF_HAS_BUFFEREVENT(conn, {
  137. return evbuffer_get_length(bufferevent_get_input(conn->bufev));
  138. }) ELSE_IF_NO_BUFFEREVENT {
  139. return conn->inbuf ? buf_datalen(conn->inbuf) : 0;
  140. }
  141. }
  142. static INLINE size_t
  143. connection_get_outbuf_len(connection_t *conn)
  144. {
  145. IF_HAS_BUFFEREVENT(conn, {
  146. return evbuffer_get_length(bufferevent_get_output(conn->bufev));
  147. }) ELSE_IF_NO_BUFFEREVENT {
  148. return conn->outbuf ? buf_datalen(conn->outbuf) : 0;
  149. }
  150. }
  151. connection_t *connection_get_by_global_id(uint64_t id);
  152. connection_t *connection_get_by_type(int type);
  153. connection_t *connection_get_by_type_purpose(int type, int purpose);
  154. connection_t *connection_get_by_type_addr_port_purpose(int type,
  155. const tor_addr_t *addr,
  156. uint16_t port, int purpose);
  157. connection_t *connection_get_by_type_state(int type, int state);
  158. connection_t *connection_get_by_type_state_rendquery(int type, int state,
  159. const char *rendquery);
  160. dir_connection_t *connection_dir_get_by_purpose_and_resource(
  161. int state, const char *resource);
  162. #define connection_speaks_cells(conn) ((conn)->type == CONN_TYPE_OR)
  163. int connection_is_listener(connection_t *conn);
  164. int connection_state_is_open(connection_t *conn);
  165. int connection_state_is_connecting(connection_t *conn);
  166. char *alloc_http_authenticator(const char *authenticator);
  167. void assert_connection_ok(connection_t *conn, time_t now);
  168. int connection_or_nonopen_was_started_here(or_connection_t *conn);
  169. void connection_dump_buffer_mem_stats(int severity);
  170. void remove_file_if_very_old(const char *fname, time_t now);
  171. #ifdef USE_BUFFEREVENTS
  172. int connection_type_uses_bufferevent(connection_t *conn);
  173. void connection_configure_bufferevent_callbacks(connection_t *conn);
  174. void connection_handle_read_cb(struct bufferevent *bufev, void *arg);
  175. void connection_handle_write_cb(struct bufferevent *bufev, void *arg);
  176. void connection_handle_event_cb(struct bufferevent *bufev, short event,
  177. void *arg);
  178. void connection_get_rate_limit_totals(uint64_t *read_out,
  179. uint64_t *written_out);
  180. void connection_enable_rate_limiting(connection_t *conn);
  181. #else
  182. #define connection_type_uses_bufferevent(c) (0)
  183. #endif
  184. #ifdef CONNECTION_PRIVATE
  185. STATIC void connection_free_(connection_t *conn);
  186. #endif
  187. #endif