connection.h 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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-2012, 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 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,int line, const char *file);
  29. #define connection_mark_for_close(c) \
  30. connection_mark_for_close_((c), __LINE__, SHORT_FILE__)
  31. /**
  32. * Mark 'c' for close, but try to hold it open until all the data is written.
  33. */
  34. #define connection_mark_and_flush_(c,line,file) \
  35. do { \
  36. connection_t *tmp_conn_ = (c); \
  37. connection_mark_for_close_(tmp_conn_, (line), (file)); \
  38. tmp_conn_->hold_open_until_flushed = 1; \
  39. IF_HAS_BUFFEREVENT(tmp_conn_, \
  40. connection_start_writing(tmp_conn_)); \
  41. } while (0)
  42. #define connection_mark_and_flush(c) \
  43. connection_mark_and_flush_((c), __LINE__, SHORT_FILE__)
  44. void connection_expire_held_open(void);
  45. int connection_connect(connection_t *conn, const char *address,
  46. const tor_addr_t *addr,
  47. uint16_t port, int *socket_error);
  48. int connection_proxy_connect(connection_t *conn, int type);
  49. int connection_read_proxy_handshake(connection_t *conn);
  50. void log_failed_proxy_connection(connection_t *conn);
  51. int get_proxy_addrport(tor_addr_t *addr, uint16_t *port, int *proxy_type,
  52. const connection_t *conn);
  53. int retry_all_listeners(smartlist_t *replaced_conns,
  54. smartlist_t *new_conns,
  55. int close_all_noncontrol);
  56. void connection_mark_all_noncontrol_listeners(void);
  57. void connection_mark_all_noncontrol_connections(void);
  58. ssize_t connection_bucket_write_limit(connection_t *conn, time_t now);
  59. int global_write_bucket_low(connection_t *conn, size_t attempt, int priority);
  60. void connection_bucket_init(void);
  61. void connection_bucket_refill(int seconds_elapsed, time_t now);
  62. int connection_handle_read(connection_t *conn);
  63. int connection_fetch_from_buf(char *string, size_t len, connection_t *conn);
  64. int connection_fetch_from_buf_line(connection_t *conn, char *data,
  65. size_t *data_len);
  66. int connection_fetch_from_buf_http(connection_t *conn,
  67. char **headers_out, size_t max_headerlen,
  68. char **body_out, size_t *body_used,
  69. size_t max_bodylen, int force_complete);
  70. int connection_wants_to_flush(connection_t *conn);
  71. int connection_outbuf_too_full(connection_t *conn);
  72. int connection_handle_write(connection_t *conn, int force);
  73. int connection_flush(connection_t *conn);
  74. void connection_write_to_buf_impl_(const char *string, size_t len,
  75. connection_t *conn, int zlib);
  76. /* DOCDOC connection_write_to_buf */
  77. static void connection_write_to_buf(const char *string, size_t len,
  78. connection_t *conn);
  79. /* DOCDOC connection_write_to_buf_zlib */
  80. static void connection_write_to_buf_zlib(const char *string, size_t len,
  81. dir_connection_t *conn, int done);
  82. static INLINE void
  83. connection_write_to_buf(const char *string, size_t len, connection_t *conn)
  84. {
  85. connection_write_to_buf_impl_(string, len, conn, 0);
  86. }
  87. static INLINE void
  88. connection_write_to_buf_zlib(const char *string, size_t len,
  89. dir_connection_t *conn, int done)
  90. {
  91. connection_write_to_buf_impl_(string, len, TO_CONN(conn), done ? -1 : 1);
  92. }
  93. /* DOCDOC connection_get_inbuf_len */
  94. static size_t connection_get_inbuf_len(connection_t *conn);
  95. /* DOCDOC connection_get_outbuf_len */
  96. static size_t connection_get_outbuf_len(connection_t *conn);
  97. static INLINE size_t
  98. connection_get_inbuf_len(connection_t *conn)
  99. {
  100. IF_HAS_BUFFEREVENT(conn, {
  101. return evbuffer_get_length(bufferevent_get_input(conn->bufev));
  102. }) ELSE_IF_NO_BUFFEREVENT {
  103. return conn->inbuf ? buf_datalen(conn->inbuf) : 0;
  104. }
  105. }
  106. static INLINE size_t
  107. connection_get_outbuf_len(connection_t *conn)
  108. {
  109. IF_HAS_BUFFEREVENT(conn, {
  110. return evbuffer_get_length(bufferevent_get_output(conn->bufev));
  111. }) ELSE_IF_NO_BUFFEREVENT {
  112. return conn->outbuf ? buf_datalen(conn->outbuf) : 0;
  113. }
  114. }
  115. connection_t *connection_get_by_global_id(uint64_t id);
  116. connection_t *connection_get_by_type(int type);
  117. connection_t *connection_get_by_type_purpose(int type, int purpose);
  118. connection_t *connection_get_by_type_addr_port_purpose(int type,
  119. const tor_addr_t *addr,
  120. uint16_t port, int purpose);
  121. connection_t *connection_get_by_type_state(int type, int state);
  122. connection_t *connection_get_by_type_state_rendquery(int type, int state,
  123. const char *rendquery);
  124. dir_connection_t *connection_dir_get_by_purpose_and_resource(
  125. int state, const char *resource);
  126. #define connection_speaks_cells(conn) ((conn)->type == CONN_TYPE_OR)
  127. int connection_is_listener(connection_t *conn);
  128. int connection_state_is_open(connection_t *conn);
  129. int connection_state_is_connecting(connection_t *conn);
  130. char *alloc_http_authenticator(const char *authenticator);
  131. void assert_connection_ok(connection_t *conn, time_t now);
  132. int connection_or_nonopen_was_started_here(or_connection_t *conn);
  133. void connection_dump_buffer_mem_stats(int severity);
  134. void remove_file_if_very_old(const char *fname, time_t now);
  135. #ifdef USE_BUFFEREVENTS
  136. int connection_type_uses_bufferevent(connection_t *conn);
  137. void connection_configure_bufferevent_callbacks(connection_t *conn);
  138. void connection_handle_read_cb(struct bufferevent *bufev, void *arg);
  139. void connection_handle_write_cb(struct bufferevent *bufev, void *arg);
  140. void connection_handle_event_cb(struct bufferevent *bufev, short event,
  141. void *arg);
  142. void connection_get_rate_limit_totals(uint64_t *read_out,
  143. uint64_t *written_out);
  144. void connection_enable_rate_limiting(connection_t *conn);
  145. #else
  146. #define connection_type_uses_bufferevent(c) (0)
  147. #endif
  148. #endif