channel.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399
  1. /* * Copyright (c) 2012, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. /**
  4. * \file channel.h
  5. * \brief Header file for channel.c
  6. **/
  7. #ifndef _TOR_CHANNEL_H
  8. #define _TOR_CHANNEL_H
  9. #include "or.h"
  10. /*
  11. * Channel struct; see thw channel_t typedef in or.h. A channel is an
  12. * abstract interface for the OR-to-OR connection, similar to connection_or_t,
  13. * but without the strong coupling to the underlying TLS implementation. They
  14. * are constructed by calling a protocol-specific function to open a channel
  15. * to a particular node, and once constructed support the abstract operations
  16. * defined below.
  17. */
  18. struct channel_s {
  19. /* Current channel state */
  20. channel_state_t state;
  21. /* Globally unique ID number for a channel over the lifetime of a Tor
  22. * process.
  23. */
  24. uint64_t global_identifier;
  25. /* Should we expect to see this channel in the channel lists? */
  26. unsigned char registered:1;
  27. /** Set this if this channel is created in CHANNEL_STATE_LISTEN, so
  28. * lower-layer close methods that see the channel in CHANNEL_STATE_CLOSING
  29. * know.
  30. */
  31. unsigned int is_listener:1;
  32. /** Why did we close?
  33. */
  34. enum {
  35. CHANNEL_NOT_CLOSING = 0,
  36. CHANNEL_CLOSE_REQUESTED,
  37. CHANNEL_CLOSE_FROM_BELOW,
  38. CHANNEL_CLOSE_FOR_ERROR
  39. } reason_for_closing;
  40. /* Timestamps for both cell channels and listeners */
  41. time_t timestamp_created; /* Channel created */
  42. time_t timestamp_active; /* Any activity */
  43. /* Methods implemented by the lower layer */
  44. /* Free a channel */
  45. void (*free)(channel_t *);
  46. /* Close an open channel */
  47. void (*close)(channel_t *);
  48. union {
  49. struct {
  50. /* Registered listen handler to call on incoming connection */
  51. void (*listener)(channel_t *, channel_t *);
  52. /* List of pending incoming connections */
  53. smartlist_t *incoming_list;
  54. } listener;
  55. struct {
  56. /* Registered handlers for incoming cells */
  57. void (*cell_handler)(channel_t *, cell_t *);
  58. void (*var_cell_handler)(channel_t *, var_cell_t *);
  59. /* Methods implemented by the lower layer */
  60. /*
  61. * Ask the underlying transport what the remote endpoint address is, in
  62. * a tor_addr_t. This is optional and subclasses may leave this NULL.
  63. * If they implement it, they should write the address out to the
  64. * provided tor_addr_t *, and return 1 if successful or 0 if no address
  65. * available.
  66. */
  67. int (*get_remote_addr)(channel_t *, tor_addr_t *);
  68. /*
  69. * Get a text description of the remote endpoint; canonicalized if the
  70. * arg is 0, or the one we originally connected to/received from if it's
  71. * 1.
  72. */
  73. const char * (*get_remote_descr)(channel_t *, int);
  74. /* Check if the lower layer has queued writes */
  75. int (*has_queued_writes)(channel_t *);
  76. /*
  77. * If the second param is zero, ask the lower layer if this is
  78. * 'canonical', for a transport-specific definition of canonical; if
  79. * it is 1, ask if the answer to the preceding query is safe to rely
  80. * on.
  81. */
  82. int (*is_canonical)(channel_t *, int);
  83. /* Check if this channel matches a specified extend_info_t */
  84. int (*matches_extend_info)(channel_t *, extend_info_t *);
  85. /* Check if this channel matches a target address when extending */
  86. int (*matches_target)(channel_t *, const tor_addr_t *);
  87. /* Write a cell to an open channel */
  88. int (*write_cell)(channel_t *, cell_t *);
  89. /* Write a packed cell to an open channel */
  90. int (*write_packed_cell)(channel_t *, packed_cell_t *);
  91. /* Write a variable-length cell to an open channel */
  92. int (*write_var_cell)(channel_t *, var_cell_t *);
  93. /*
  94. * Hash of the public RSA key for the other side's identity key, or
  95. * zeroes if the other side hasn't shown us a valid identity key.
  96. */
  97. char identity_digest[DIGEST_LEN];
  98. /* Nickname of the OR on the other side, or NULL if none. */
  99. char *nickname;
  100. /*
  101. * Linked list of channels with the same identity digest, for the
  102. * digest->channel map
  103. */
  104. channel_t *next_with_same_id, *prev_with_same_id;
  105. /* List of incoming cells to handle */
  106. smartlist_t *cell_queue;
  107. /* List of queued outgoing cells */
  108. smartlist_t *outgoing_queue;
  109. /*
  110. * When we last used this conn for any client traffic. If not
  111. * recent, we can rate limit it further.
  112. */
  113. time_t client_used;
  114. /* Circuit stuff for use by relay.c */
  115. /*
  116. * Double-linked ring of circuits with queued cells waiting for room to
  117. * free up on this connection's outbuf. Every time we pull cells from
  118. * a circuit, we advance this pointer to the next circuit in the ring.
  119. */
  120. struct circuit_t *active_circuits;
  121. /*
  122. * Priority queue of cell_ewma_t for circuits with queued cells waiting
  123. * for room to free up on this connection's outbuf. Kept in heap order
  124. * according to EWMA.
  125. *
  126. * This is redundant with active_circuits; if we ever decide only to use
  127. * the cell_ewma algorithm for choosing circuits, we can remove
  128. * active_circuits.
  129. */
  130. smartlist_t *active_circuit_pqueue;
  131. /*
  132. * The tick on which the cell_ewma_ts in active_circuit_pqueue last had
  133. * their ewma values rescaled.
  134. */
  135. unsigned active_circuit_pqueue_last_recalibrated;
  136. /* Circuit ID generation stuff for use by circuitbuild.c */
  137. /*
  138. * When we send CREATE cells along this connection, which half of the
  139. * space should we use?
  140. */
  141. circ_id_type_t circ_id_type:2;
  142. /*
  143. * Which circ_id do we try to use next on this connection? This is
  144. * always in the range 0..1<<15-1.
  145. */
  146. circid_t next_circ_id;
  147. /* How many circuits use this connection as p_chan or n_chan? */
  148. int n_circuits;
  149. /*
  150. * True iff this channel shouldn't get any new circs attached to it,
  151. * because the connection is too old, or because there's a better one.
  152. * More generally, this flag is used to note an unhealthy connection;
  153. * for example, if a bad connection fails we shouldn't assume that the
  154. * router itself has a problem.
  155. */
  156. unsigned int is_bad_for_new_circs:1;
  157. /** True iff we have decided that the other end of this connection
  158. * is a client. Channels with this flag set should never be used
  159. * to satisfy an EXTEND request. */
  160. unsigned int is_client:1;
  161. /** Set if the channel was initiated remotely (came from a listener) */
  162. unsigned int is_incoming:1;
  163. /** Set by lower layer if this is local; i.e., everything it communicates
  164. * with for this channel returns true for is_local_addr(). This is used
  165. * to decide whether to declare reachability when we receive something on
  166. * this channel in circuitbuild.c
  167. */
  168. unsigned int is_local:1;
  169. /** Channel timestamps for cell channels */
  170. time_t timestamp_client; /* Client used this, according to relay.c */
  171. time_t timestamp_drained; /* Output queue empty */
  172. time_t timestamp_recv; /* Cell received from lower layer */
  173. time_t timestamp_xmit; /* Cell sent to lower layer */
  174. /* Timestamp for relay.c */
  175. time_t timestamp_last_added_nonpadding;
  176. /** Unique ID for measuring direct network status requests;vtunneled ones
  177. * come over a circuit_t, which has a dirreq_id field as well, but is a
  178. * distinct namespace. */
  179. uint64_t dirreq_id;
  180. } cell_chan;
  181. } u;
  182. };
  183. /* Channel state manipulations */
  184. int channel_state_is_valid(channel_state_t state);
  185. int channel_state_can_transition(channel_state_t from, channel_state_t to);
  186. const char * channel_state_to_string(channel_state_t state);
  187. /* Abstract channel operations */
  188. void channel_request_close(channel_t *chan);
  189. void channel_write_cell(channel_t *chan, cell_t *cell);
  190. void channel_write_packed_cell(channel_t *chan, packed_cell_t *cell);
  191. void channel_write_var_cell(channel_t *chan, var_cell_t *cell);
  192. /* Channel callback registrations */
  193. /* Listener callback */
  194. void (* channel_get_listener(channel_t *chan))(channel_t *, channel_t *);
  195. void channel_set_listener(channel_t *chan,
  196. void (*listener)(channel_t *, channel_t *) );
  197. /* Incoming cell callbacks */
  198. void (* channel_get_cell_handler(channel_t *chan))
  199. (channel_t *, cell_t *);
  200. void (* channel_get_var_cell_handler(channel_t *chan))
  201. (channel_t *, var_cell_t *);
  202. void channel_set_cell_handler(channel_t *chan,
  203. void (*cell_handler)(channel_t *, cell_t *));
  204. void channel_set_cell_handlers(channel_t *chan,
  205. void (*cell_handler)(channel_t *, cell_t *),
  206. void (*var_cell_handler)(channel_t *,
  207. var_cell_t *));
  208. void channel_set_var_cell_handler(channel_t *chan,
  209. void (*var_cell_handler)(channel_t *,
  210. var_cell_t *));
  211. /* Clean up closed channels periodically; called from run_scheduled_events()
  212. * in main.c
  213. */
  214. void channel_run_cleanup(void);
  215. /* Close all channels and deallocate everything */
  216. void channel_free_all(void);
  217. #ifdef _TOR_CHANNEL_INTERNAL
  218. /* Channel operations for subclasses and internal use only */
  219. /* Initialize a newly allocated channel - do this first in subclass
  220. * constructors.
  221. */
  222. void channel_init_for_cells(channel_t *chan);
  223. void channel_init_listener(channel_t *chan);
  224. /* Channel registration/unregistration */
  225. void channel_register(channel_t *chan);
  226. void channel_unregister(channel_t *chan);
  227. /* Close from below */
  228. void channel_close_from_lower_layer(channel_t *chan);
  229. void channel_close_for_error(channel_t *chan);
  230. void channel_closed(channel_t *chan);
  231. /* Free a channel */
  232. void channel_free(channel_t *chan);
  233. void channel_force_free(channel_t *chan);
  234. /* State/metadata setters */
  235. void channel_change_state(channel_t *chan, channel_state_t to_state);
  236. void channel_clear_identity_digest(channel_t *chan);
  237. void channel_clear_remote_end(channel_t *chan);
  238. void channel_mark_local(channel_t *chan);
  239. void channel_mark_incoming(channel_t *chan);
  240. void channel_mark_outgoing(channel_t *chan);
  241. void channel_set_identity_digest(channel_t *chan,
  242. const char *identity_digest);
  243. void channel_set_remote_end(channel_t *chan,
  244. const char *identity_digest,
  245. const char *nickname);
  246. /* Timestamp updates */
  247. void channel_timestamp_created(channel_t *chan);
  248. void channel_timestamp_active(channel_t *chan);
  249. void channel_timestamp_drained(channel_t *chan);
  250. void channel_timestamp_recv(channel_t *chan);
  251. void channel_timestamp_xmit(channel_t *chan);
  252. /* Incoming channel handling */
  253. void channel_process_incoming(channel_t *listener);
  254. void channel_queue_incoming(channel_t *listener, channel_t *incoming);
  255. /* Incoming cell handling */
  256. void channel_process_cells(channel_t *chan);
  257. void channel_queue_cell(channel_t *chan, cell_t *cell);
  258. void channel_queue_var_cell(channel_t *chan, var_cell_t *var_cell);
  259. /* Outgoing cell handling */
  260. void channel_flush_cells(channel_t *chan);
  261. /* Request from lower layer for more cells if available */
  262. ssize_t channel_flush_some_cells(channel_t *chan, ssize_t num_cells);
  263. /* Query if data available on this channel */
  264. int channel_more_to_flush(channel_t *chan);
  265. /* Notify flushed outgoing for dirreq handling */
  266. void channel_notify_flushed(channel_t *chan);
  267. /* Handle stuff we need to do on open like notifying circuits */
  268. void channel_do_open_actions(channel_t *chan);
  269. #endif
  270. /* Helper functions to perform operations on channels */
  271. int channel_send_destroy(circid_t circ_id, channel_t *chan,
  272. int reason);
  273. /*
  274. * Outside abstract interfaces that should eventually get turned into
  275. * something transport/address format independent.
  276. */
  277. channel_t * channel_connect(const tor_addr_t *addr, uint16_t port,
  278. const char *id_digest);
  279. channel_t * channel_get_for_extend(const char *digest,
  280. const tor_addr_t *target_addr,
  281. const char **msg_out,
  282. int *launch_out);
  283. /* Ask which of two channels is better for circuit-extension purposes */
  284. int channel_is_better(time_t now,
  285. channel_t *a, channel_t *b,
  286. int forgive_new_connections);
  287. /** Channel lookups
  288. */
  289. channel_t * channel_find_by_global_id(uint64_t global_identifier);
  290. channel_t * channel_find_by_remote_digest(const char *identity_digest);
  291. channel_t * channel_find_by_remote_nickname(const char *nickname);
  292. /** For things returned by channel_find_by_remote_digest(), walk the list.
  293. */
  294. channel_t * channel_next_with_digest(channel_t *chan);
  295. channel_t * channel_prev_with_digest(channel_t *chan);
  296. /*
  297. * Metadata queries/updates
  298. */
  299. const char * channel_get_actual_remote_descr(channel_t *chan);
  300. int channel_get_addr_if_possible(channel_t *chan, tor_addr_t *addr_out);
  301. const char * channel_get_canonical_remote_descr(channel_t *chan);
  302. int channel_has_queued_writes(channel_t *chan);
  303. int channel_is_bad_for_new_circs(channel_t *chan);
  304. void channel_mark_bad_for_new_circs(channel_t *chan);
  305. int channel_is_canonical(channel_t *chan);
  306. int channel_is_canonical_is_reliable(channel_t *chan);
  307. int channel_is_client(channel_t *chan);
  308. int channel_is_local(channel_t *chan);
  309. int channel_is_incoming(channel_t *chan);
  310. int channel_is_outgoing(channel_t *chan);
  311. void channel_mark_client(channel_t *chan);
  312. int channel_matches_extend_info(channel_t *chan, extend_info_t *extend_info);
  313. int channel_matches_target_addr_for_extend(channel_t *chan,
  314. const tor_addr_t *target);
  315. void channel_set_circid_type(channel_t *chan, crypto_pk_t *identity_rcvd);
  316. void channel_timestamp_client(channel_t *chan);
  317. /* Timestamp queries */
  318. time_t channel_when_created(channel_t *chan);
  319. time_t channel_when_last_active(channel_t *chan);
  320. time_t channel_when_last_client(channel_t *chan);
  321. time_t channel_when_last_drained(channel_t *chan);
  322. time_t channel_when_last_recv(channel_t *chan);
  323. time_t channel_when_last_xmit(channel_t *chan);
  324. #endif