channeltls.c 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857
  1. /* * Copyright (c) 2012, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. /**
  4. * \file channeltls.c
  5. * \brief channel_t concrete subclass using or_connection_t
  6. **/
  7. /*
  8. * Define this so channel.h gives us things only channel_t subclasses
  9. * should touch.
  10. */
  11. #define _TOR_CHANNEL_INTERNAL
  12. #include "or.h"
  13. #include "channel.h"
  14. #include "channeltls.h"
  15. #include "config.h"
  16. #include "connection.h"
  17. #include "connection_or.h"
  18. #include "control.h"
  19. #include "relay.h"
  20. #include "router.h"
  21. #include "routerlist.h"
  22. /** How many CELL_PADDING cells have we received, ever? */
  23. uint64_t stats_n_padding_cells_processed = 0;
  24. /** How many CELL_VERSIONS cells have we received, ever? */
  25. uint64_t stats_n_versions_cells_processed = 0;
  26. /** How many CELL_NETINFO cells have we received, ever? */
  27. uint64_t stats_n_netinfo_cells_processed = 0;
  28. /** How many CELL_VPADDING cells have we received, ever? */
  29. uint64_t stats_n_vpadding_cells_processed = 0;
  30. /** How many CELL_CERTS cells have we received, ever? */
  31. uint64_t stats_n_certs_cells_processed = 0;
  32. /** How many CELL_AUTH_CHALLENGE cells have we received, ever? */
  33. uint64_t stats_n_auth_challenge_cells_processed = 0;
  34. /** How many CELL_AUTHENTICATE cells have we received, ever? */
  35. uint64_t stats_n_authenticate_cells_processed = 0;
  36. /** How many CELL_AUTHORIZE cells have we received, ever? */
  37. uint64_t stats_n_authorize_cells_processed = 0;
  38. /** Active listener, if any */
  39. channel_listener_t *channel_tls_listener = NULL;
  40. /* channel_tls_t method declarations */
  41. static void channel_tls_close_method(channel_t *chan);
  42. static const char * channel_tls_describe_transport_method(channel_t *chan);
  43. static int
  44. channel_tls_get_remote_addr_method(channel_t *chan, tor_addr_t *addr_out);
  45. static const char *
  46. channel_tls_get_remote_descr_method(channel_t *chan, int req);
  47. static int channel_tls_has_queued_writes_method(channel_t *chan);
  48. static int channel_tls_is_canonical_method(channel_t *chan, int req);
  49. static int
  50. channel_tls_matches_extend_info_method(channel_t *chan,
  51. extend_info_t *extend_info);
  52. static int channel_tls_matches_target_method(channel_t *chan,
  53. const tor_addr_t *target);
  54. static int channel_tls_write_cell_method(channel_t *chan,
  55. cell_t *cell);
  56. static int channel_tls_write_packed_cell_method(channel_t *chan,
  57. packed_cell_t *packed_cell);
  58. static int channel_tls_write_var_cell_method(channel_t *chan,
  59. var_cell_t *var_cell);
  60. /* channel_listener_tls_t method declarations */
  61. static void channel_tls_listener_close_method(channel_listener_t *chan_l);
  62. static const char *
  63. channel_tls_listener_describe_transport_method(channel_listener_t *chan_l);
  64. /** Handle incoming cells for the handshake stuff here rather than
  65. * passing them on up. */
  66. static void channel_tls_process_versions_cell(var_cell_t *cell,
  67. channel_tls_t *tlschan);
  68. static void channel_tls_process_netinfo_cell(cell_t *cell,
  69. channel_tls_t *tlschan);
  70. static void channel_tls_process_certs_cell(var_cell_t *cell,
  71. channel_tls_t *tlschan);
  72. static void channel_tls_process_auth_challenge_cell(var_cell_t *cell,
  73. channel_tls_t *tlschan);
  74. static void channel_tls_process_authenticate_cell(var_cell_t *cell,
  75. channel_tls_t *tlschan);
  76. static int command_allowed_before_handshake(uint8_t command);
  77. static int enter_v3_handshake_with_cell(var_cell_t *cell,
  78. channel_tls_t *tlschan);
  79. /**
  80. * Start a new TLS channel
  81. *
  82. * Launch a new OR connection to <b>addr</b>:<b>port</b> and expect to
  83. * handshake with an OR with identity digest <b>id_digest</b>, and wrap
  84. * it in a channel_tls_t.
  85. */
  86. channel_t *
  87. channel_tls_connect(const tor_addr_t *addr, uint16_t port,
  88. const char *id_digest)
  89. {
  90. channel_tls_t *tlschan = tor_malloc_zero(sizeof(*tlschan));
  91. channel_t *chan = TLS_CHAN_TO_BASE(tlschan);
  92. channel_init(chan);
  93. chan->state = CHANNEL_STATE_OPENING;
  94. chan->close = channel_tls_close_method;
  95. chan->describe_transport = channel_tls_describe_transport_method;
  96. chan->get_remote_addr = channel_tls_get_remote_addr_method;
  97. chan->get_remote_descr = channel_tls_get_remote_descr_method;
  98. chan->has_queued_writes = channel_tls_has_queued_writes_method;
  99. chan->is_canonical = channel_tls_is_canonical_method;
  100. chan->matches_extend_info = channel_tls_matches_extend_info_method;
  101. chan->matches_target = channel_tls_matches_target_method;
  102. chan->write_cell = channel_tls_write_cell_method;
  103. chan->write_packed_cell = channel_tls_write_packed_cell_method;
  104. chan->write_var_cell = channel_tls_write_var_cell_method;
  105. log_debug(LD_CHANNEL,
  106. "In channel_tls_connect() for channel %p "
  107. "(global id " U64_FORMAT ")",
  108. tlschan,
  109. U64_PRINTF_ARG(chan->global_identifier));
  110. if (is_local_addr(addr)) channel_mark_local(chan);
  111. channel_mark_outgoing(chan);
  112. chan->active_circuit_pqueue = smartlist_new();
  113. chan->active_circuit_pqueue_last_recalibrated = cell_ewma_get_tick();
  114. /* Set up or_connection stuff */
  115. tlschan->conn = connection_or_connect(addr, port, id_digest, tlschan);
  116. /* connection_or_connect() will fill in tlschan->conn */
  117. if (!(tlschan->conn)) {
  118. channel_change_state(chan, CHANNEL_STATE_ERROR);
  119. goto err;
  120. }
  121. log_debug(LD_CHANNEL,
  122. "Got orconn %p for channel with global id " U64_FORMAT,
  123. tlschan->conn, U64_PRINTF_ARG(chan->global_identifier));
  124. goto done;
  125. err:
  126. smartlist_free(chan->active_circuit_pqueue);
  127. tor_free(tlschan);
  128. chan = NULL;
  129. done:
  130. /* If we got one, we should register it */
  131. if (chan) channel_register(chan);
  132. return chan;
  133. }
  134. /**
  135. * Return the current channel_tls_t listener
  136. *
  137. * Returns the current channel listener for incoming TLS connections, or
  138. * NULL if none has been established
  139. */
  140. channel_listener_t *
  141. channel_tls_get_listener(void)
  142. {
  143. return channel_tls_listener;
  144. }
  145. /**
  146. * Start a channel_tls_t listener if necessary
  147. *
  148. * Return the current channel_tls_t listener, or start one if we haven't yet,
  149. * and return that.
  150. */
  151. channel_listener_t *
  152. channel_tls_start_listener(void)
  153. {
  154. channel_listener_t *listener;
  155. if (!channel_tls_listener) {
  156. listener = tor_malloc_zero(sizeof(*listener));
  157. channel_init_listener(listener);
  158. listener->state = CHANNEL_LISTENER_STATE_LISTENING;
  159. listener->close = channel_tls_listener_close_method;
  160. listener->describe_transport =
  161. channel_tls_listener_describe_transport_method;
  162. channel_tls_listener = listener;
  163. log_debug(LD_CHANNEL,
  164. "Starting TLS channel listener %p with global id " U64_FORMAT,
  165. listener, U64_PRINTF_ARG(listener->global_identifier));
  166. channel_listener_register(listener);
  167. } else listener = channel_tls_listener;
  168. return listener;
  169. }
  170. /**
  171. * Free everything on shutdown
  172. *
  173. * Not much to do here, since channel_free_all() takes care of a lot, but let's
  174. * get rid of the listener.
  175. */
  176. void
  177. channel_tls_free_all(void)
  178. {
  179. log_debug(LD_CHANNEL,
  180. "Shutting down TLS channels...");
  181. if (channel_tls_listener) {
  182. channel_listener_unregister(channel_tls_listener);
  183. channel_listener_mark_for_close(channel_tls_listener);
  184. channel_listener_free(channel_tls_listener);
  185. channel_tls_listener = NULL;
  186. }
  187. log_debug(LD_CHANNEL,
  188. "Done shutting down TLS channels");
  189. }
  190. /**
  191. * Create a new channel around an incoming or_connection_t
  192. */
  193. channel_t *
  194. channel_tls_handle_incoming(or_connection_t *orconn)
  195. {
  196. channel_tls_t *tlschan = tor_malloc_zero(sizeof(*tlschan));
  197. channel_t *chan = TLS_CHAN_TO_BASE(tlschan);
  198. tor_assert(orconn);
  199. tor_assert(!(orconn->chan));
  200. channel_init(chan);
  201. chan->state = CHANNEL_STATE_OPENING;
  202. chan->close = channel_tls_close_method;
  203. chan->describe_transport = channel_tls_describe_transport_method;
  204. chan->get_remote_descr = channel_tls_get_remote_descr_method;
  205. chan->has_queued_writes = channel_tls_has_queued_writes_method;
  206. chan->is_canonical = channel_tls_is_canonical_method;
  207. chan->matches_extend_info = channel_tls_matches_extend_info_method;
  208. chan->matches_target = channel_tls_matches_target_method;
  209. chan->write_cell = channel_tls_write_cell_method;
  210. chan->write_packed_cell = channel_tls_write_packed_cell_method;
  211. chan->write_var_cell = channel_tls_write_var_cell_method;
  212. /* Link the channel and orconn to each other */
  213. tlschan->conn = orconn;
  214. orconn->chan = tlschan;
  215. if (is_local_addr(&(TO_CONN(orconn)->addr))) channel_mark_local(chan);
  216. channel_mark_incoming(chan);
  217. chan->active_circuit_pqueue = smartlist_new();
  218. chan->active_circuit_pqueue_last_recalibrated = cell_ewma_get_tick();
  219. /* If we got one, we should register it */
  220. if (chan) channel_register(chan);
  221. return chan;
  222. }
  223. /********************************************
  224. * Method implementations for channel_tls_t *
  225. *******************************************/
  226. /**
  227. * Close a channel_tls_t
  228. *
  229. * This implements the close method for channel_tls_t
  230. */
  231. static void
  232. channel_tls_close_method(channel_t *chan)
  233. {
  234. channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan);
  235. tor_assert(tlschan);
  236. if (tlschan->conn) connection_or_close_normally(tlschan->conn, 1);
  237. else {
  238. /* Weird - we'll have to change the state ourselves, I guess */
  239. log_info(LD_CHANNEL,
  240. "Tried to close channel_tls_t %p with NULL conn",
  241. tlschan);
  242. channel_change_state(chan, CHANNEL_STATE_ERROR);
  243. }
  244. }
  245. /**
  246. * Describe the transport for a channel_tls_t
  247. *
  248. * This returns the string "TLS channel on connection <id>" to the upper
  249. * layer.
  250. */
  251. static const char *
  252. channel_tls_describe_transport_method(channel_t *chan)
  253. {
  254. static char *buf = NULL;
  255. uint64_t id;
  256. channel_tls_t *tlschan;
  257. const char *rv = NULL;
  258. tor_assert(chan);
  259. tlschan = BASE_CHAN_TO_TLS(chan);
  260. if (tlschan->conn) {
  261. id = TO_CONN(tlschan->conn)->global_identifier;
  262. if (buf) tor_free(buf);
  263. tor_asprintf(&buf,
  264. "TLS channel (connection " U64_FORMAT ")",
  265. U64_PRINTF_ARG(id));
  266. rv = buf;
  267. } else {
  268. rv = "TLS channel (no connection)";
  269. }
  270. return rv;
  271. }
  272. /**
  273. * Get the remote address of a channel_tls_t
  274. *
  275. * This implements the get_remote_addr method for channel_tls_t; copy the
  276. * remote endpoint of the channel to addr_out and return 1 (always
  277. * succeeds for this transport).
  278. */
  279. static int
  280. channel_tls_get_remote_addr_method(channel_t *chan, tor_addr_t *addr_out)
  281. {
  282. channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan);
  283. tor_assert(tlschan);
  284. tor_assert(addr_out);
  285. tor_assert(tlschan->conn);
  286. tor_addr_copy(addr_out, &(TO_CONN(tlschan->conn)->addr));
  287. return 1;
  288. }
  289. /**
  290. * Get endpoint description of a channel_tls_t
  291. *
  292. * This implements the get_remote_descr method for channel_tls_t; it returns
  293. * a text description of the remote endpoint of the channel suitable for use
  294. * in log messages. The req parameter is 0 for the canonical address or 1 for
  295. * the actual address seen.
  296. */
  297. static const char *
  298. channel_tls_get_remote_descr_method(channel_t *chan, int req)
  299. {
  300. #define MAX_DESCR_LEN 32
  301. static char buf[MAX_DESCR_LEN + 1];
  302. channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan);
  303. connection_t *conn;
  304. const char *answer = NULL;
  305. char *addr_str;
  306. tor_assert(tlschan);
  307. tor_assert(tlschan->conn);
  308. conn = TO_CONN(tlschan->conn);
  309. switch (req) {
  310. case 0:
  311. /* Canonical address */
  312. tor_snprintf(buf, MAX_DESCR_LEN + 1,
  313. "%s:%u", conn->address, conn->port);
  314. answer = buf;
  315. break;
  316. case 1:
  317. /* Actual address */
  318. addr_str = tor_dup_addr(&(tlschan->conn->real_addr));
  319. tor_snprintf(buf, MAX_DESCR_LEN + 1,
  320. "%s:%u", addr_str, conn->port);
  321. tor_free(addr_str);
  322. answer = buf;
  323. break;
  324. default:
  325. /* Something's broken in channel.c */
  326. tor_assert(1);
  327. }
  328. return answer;
  329. }
  330. /**
  331. * Tell the upper layer if we have queued writes
  332. *
  333. * This implements the has_queued_writes method for channel_tls _t; it returns
  334. * 1 iff we have queued writes on the outbuf of the underlying or_connection_t.
  335. */
  336. static int
  337. channel_tls_has_queued_writes_method(channel_t *chan)
  338. {
  339. size_t outbuf_len;
  340. channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan);
  341. tor_assert(tlschan);
  342. tor_assert(tlschan->conn);
  343. outbuf_len = connection_get_outbuf_len(TO_CONN(tlschan->conn));
  344. return (outbuf_len > 0);
  345. }
  346. /**
  347. * Tell the upper layer if we're canonical
  348. *
  349. * This implements the is_canonical method for channel_tls_t; if req is zero,
  350. * it returns whether this is a canonical channel, and if it is one it returns
  351. * whether that can be relied upon.
  352. */
  353. static int
  354. channel_tls_is_canonical_method(channel_t *chan, int req)
  355. {
  356. int answer = 0;
  357. channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan);
  358. tor_assert(tlschan);
  359. tor_assert(tlschan->conn);
  360. switch (req) {
  361. case 0:
  362. answer = tlschan->conn->is_canonical;
  363. break;
  364. case 1:
  365. /*
  366. * Is the is_canonical bit reliable? In protocols version 2 and up
  367. * we get the canonical address from a NETINFO cell, but in older
  368. * versions it might be based on an obsolete descriptor.
  369. */
  370. answer = (tlschan->conn->link_proto >= 2);
  371. break;
  372. default:
  373. /* This shouldn't happen; channel.c is broken if it does */
  374. tor_assert(1);
  375. }
  376. return answer;
  377. }
  378. /**
  379. * Check if we match an extend_info_t
  380. *
  381. * This implements the matches_extend_info method for channel_tls_t; the upper
  382. * layer wants to know if this channel matches an extend_info_t.
  383. */
  384. static int
  385. channel_tls_matches_extend_info_method(channel_t *chan,
  386. extend_info_t *extend_info)
  387. {
  388. channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan);
  389. tor_assert(tlschan);
  390. tor_assert(extend_info);
  391. return (tor_addr_eq(&(extend_info->addr),
  392. &(TO_CONN(tlschan->conn)->addr)) &&
  393. (extend_info->port == TO_CONN(tlschan->conn)->port));
  394. }
  395. /**
  396. * Check if we match a target address
  397. *
  398. * This implements the matches_target method for channel_tls _t; the upper
  399. * layer wants to know if this channel matches a target address when extending
  400. * a circuit.
  401. */
  402. static int
  403. channel_tls_matches_target_method(channel_t *chan,
  404. const tor_addr_t *target)
  405. {
  406. channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan);
  407. tor_assert(tlschan);
  408. tor_assert(target);
  409. tor_assert(tlschan->conn);
  410. return tor_addr_compare(&(tlschan->conn->real_addr),
  411. target, CMP_EXACT);
  412. }
  413. /**
  414. * Write a cell to a channel_tls_t
  415. *
  416. * This implements the write_cell method for channel_tls_t; given a
  417. * channel_tls_t and a cell_t, transmit the cell_t.
  418. */
  419. static int
  420. channel_tls_write_cell_method(channel_t *chan, cell_t *cell)
  421. {
  422. channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan);
  423. tor_assert(tlschan);
  424. tor_assert(cell);
  425. tor_assert(tlschan->conn);
  426. connection_or_write_cell_to_buf(cell, tlschan->conn);
  427. return 1;
  428. }
  429. /**
  430. * Write a packed cell to a channel_tls_t
  431. *
  432. * This implements the write_packed_cell method for channel_tls_t; given a
  433. * channel_tls_t and a packed_cell_t, transmit the packed_cell_t.
  434. */
  435. static int
  436. channel_tls_write_packed_cell_method(channel_t *chan,
  437. packed_cell_t *packed_cell)
  438. {
  439. channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan);
  440. tor_assert(tlschan);
  441. tor_assert(packed_cell);
  442. tor_assert(tlschan->conn);
  443. connection_write_to_buf(packed_cell->body, CELL_NETWORK_SIZE,
  444. TO_CONN(tlschan->conn));
  445. /* This is where the cell is finished; used to be done from relay.c */
  446. packed_cell_free(packed_cell);
  447. return 1;
  448. }
  449. /**
  450. * Write a variable-length cell to a channel_tls_t
  451. *
  452. * This implements the write_var_cell method for channel_tls_t; given a
  453. * channel_tls_t and a var_cell_t, transmit the var_cell_t.
  454. */
  455. static int
  456. channel_tls_write_var_cell_method(channel_t *chan, var_cell_t *var_cell)
  457. {
  458. channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan);
  459. tor_assert(tlschan);
  460. tor_assert(var_cell);
  461. tor_assert(tlschan->conn);
  462. connection_or_write_var_cell_to_buf(var_cell, tlschan->conn);
  463. return 1;
  464. }
  465. /*************************************************
  466. * Method implementations for channel_listener_t *
  467. ************************************************/
  468. /**
  469. * Close a channel_listener_t
  470. *
  471. * This implements the close method for channel_listener_t
  472. */
  473. static void
  474. channel_tls_listener_close_method(channel_listener_t *chan_l)
  475. {
  476. tor_assert(chan_l);
  477. /*
  478. * Listeners we just go ahead and change state through to CLOSED, but
  479. * make sure to check if they're channel_tls_listener to NULL it out.
  480. */
  481. if (chan_l == channel_tls_listener)
  482. channel_tls_listener = NULL;
  483. if (!(chan_l->state == CHANNEL_LISTENER_STATE_CLOSING ||
  484. chan_l->state == CHANNEL_LISTENER_STATE_CLOSED ||
  485. chan_l->state == CHANNEL_LISTENER_STATE_ERROR)) {
  486. channel_listener_change_state(chan_l, CHANNEL_LISTENER_STATE_CLOSING);
  487. }
  488. if (chan_l->incoming_list) {
  489. SMARTLIST_FOREACH_BEGIN(chan_l->incoming_list,
  490. channel_t *, ichan) {
  491. channel_mark_for_close(ichan);
  492. } SMARTLIST_FOREACH_END(ichan);
  493. smartlist_free(chan_l->incoming_list);
  494. chan_l->incoming_list = NULL;
  495. }
  496. if (!(chan_l->state == CHANNEL_LISTENER_STATE_CLOSED ||
  497. chan_l->state == CHANNEL_LISTENER_STATE_ERROR)) {
  498. channel_listener_change_state(chan_l, CHANNEL_LISTENER_STATE_CLOSED);
  499. }
  500. }
  501. /**
  502. * Describe the transport for a channel_listener_t
  503. *
  504. * This returns the string "TLS channel (listening)" to the upper
  505. * layer.
  506. */
  507. static const char *
  508. channel_tls_listener_describe_transport_method(channel_listener_t *chan_l)
  509. {
  510. tor_assert(chan_l);
  511. return "TLS channel (listening)";
  512. }
  513. /*******************************************************
  514. * Functions for handling events on an or_connection_t *
  515. ******************************************************/
  516. /**
  517. * Handle an orconn state change
  518. *
  519. * This function will be called by connection_or.c when the or_connection_t
  520. * associated with this channel_tls_t changes state.
  521. */
  522. void
  523. channel_tls_handle_state_change_on_orconn(channel_tls_t *chan,
  524. or_connection_t *conn,
  525. uint8_t old_state,
  526. uint8_t state)
  527. {
  528. channel_t *base_chan;
  529. tor_assert(chan);
  530. tor_assert(conn);
  531. tor_assert(conn->chan == chan);
  532. tor_assert(chan->conn == conn);
  533. /* -Werror appeasement */
  534. tor_assert(old_state == old_state);
  535. base_chan = TLS_CHAN_TO_BASE(chan);
  536. /* Make sure the base connection state makes sense - shouldn't be error,
  537. * closed or listening. */
  538. tor_assert(base_chan->state == CHANNEL_STATE_OPENING ||
  539. base_chan->state == CHANNEL_STATE_OPEN ||
  540. base_chan->state == CHANNEL_STATE_MAINT ||
  541. base_chan->state == CHANNEL_STATE_CLOSING);
  542. /* Did we just go to state open? */
  543. if (state == OR_CONN_STATE_OPEN) {
  544. /*
  545. * We can go to CHANNEL_STATE_OPEN from CHANNEL_STATE_OPENING or
  546. * CHANNEL_STATE_MAINT on this.
  547. */
  548. channel_change_state(base_chan, CHANNEL_STATE_OPEN);
  549. } else {
  550. /*
  551. * Not open, so from CHANNEL_STATE_OPEN we go to CHANNEL_STATE_MAINT,
  552. * otherwise no change.
  553. */
  554. if (base_chan->state == CHANNEL_STATE_OPEN) {
  555. channel_change_state(base_chan, CHANNEL_STATE_MAINT);
  556. }
  557. }
  558. }
  559. /**
  560. * Flush cells from a channel_tls_t
  561. *
  562. * Try to flush up to about num_cells cells, and return how many we flushed.
  563. */
  564. ssize_t
  565. channel_tls_flush_some_cells(channel_tls_t *chan, ssize_t num_cells)
  566. {
  567. ssize_t flushed = 0;
  568. tor_assert(chan);
  569. if (flushed >= num_cells) goto done;
  570. /*
  571. * If channel_tls_t ever buffers anything below the channel_t layer, flush
  572. * that first here.
  573. */
  574. flushed += channel_flush_some_cells(TLS_CHAN_TO_BASE(chan),
  575. num_cells - flushed);
  576. /*
  577. * If channel_tls_t ever buffers anything below the channel_t layer, check
  578. * how much we actually got and push it on down here.
  579. */
  580. done:
  581. return flushed;
  582. }
  583. /**
  584. * Check if a channel_tls_t has anything to flush
  585. *
  586. * Return true if there is any more to flush on this channel (cells in queue
  587. * or active circuits).
  588. */
  589. int
  590. channel_tls_more_to_flush(channel_tls_t *chan)
  591. {
  592. tor_assert(chan);
  593. /*
  594. * If channel_tls_t ever buffers anything below channel_t, the
  595. * check for that should go here first.
  596. */
  597. return channel_more_to_flush(TLS_CHAN_TO_BASE(chan));
  598. }
  599. #ifdef KEEP_TIMING_STATS
  600. /**
  601. * Timing states wrapper
  602. *
  603. * This is a wrapper function around the actual function that processes the
  604. * <b>cell</b> that just arrived on <b>chan</b>. Increment <b>*time</b>
  605. * by the number of microseconds used by the call to <b>*func(cell, chan)</b>.
  606. */
  607. static void
  608. channel_tls_time_process_cell(cell_t *cell, channel_tls_t *chan, int *time,
  609. void (*func)(cell_t *, channel_tls_t *))
  610. {
  611. struct timeval start, end;
  612. long time_passed;
  613. tor_gettimeofday(&start);
  614. (*func)(cell, chan);
  615. tor_gettimeofday(&end);
  616. time_passed = tv_udiff(&start, &end) ;
  617. if (time_passed > 10000) { /* more than 10ms */
  618. log_debug(LD_OR,"That call just took %ld ms.",time_passed/1000);
  619. }
  620. if (time_passed < 0) {
  621. log_info(LD_GENERAL,"That call took us back in time!");
  622. time_passed = 0;
  623. }
  624. *time += time_passed;
  625. }
  626. #endif
  627. /**
  628. * Handle an incoming cell on a channel_tls_t
  629. *
  630. * This is called from connection_or.c to handle an arriving cell; it checks
  631. * for cell types specific to the handshake for this transport protocol and
  632. * handles them, and queues all other cells to the channel_t layer, which
  633. * eventually will hand them off to command.c.
  634. */
  635. void
  636. channel_tls_handle_cell(cell_t *cell, or_connection_t *conn)
  637. {
  638. channel_tls_t *chan;
  639. int handshaking;
  640. #ifdef KEEP_TIMING_STATS
  641. #define PROCESS_CELL(tp, cl, cn) STMT_BEGIN { \
  642. ++num ## tp; \
  643. channel_tls_time_process_cell(cl, cn, & tp ## time , \
  644. channel_tls_process_ ## tp ## _cell); \
  645. } STMT_END
  646. #else
  647. #define PROCESS_CELL(tp, cl, cn) channel_tls_process_ ## tp ## _cell(cl, cn)
  648. #endif
  649. tor_assert(cell);
  650. tor_assert(conn);
  651. chan = conn->chan;
  652. if (!chan) {
  653. log_warn(LD_CHANNEL,
  654. "Got a cell_t on an OR connection with no channel");
  655. return;
  656. }
  657. handshaking = (TO_CONN(conn)->state != OR_CONN_STATE_OPEN);
  658. if (conn->_base.marked_for_close)
  659. return;
  660. /* Reject all but VERSIONS and NETINFO when handshaking. */
  661. /* (VERSIONS should actually be impossible; it's variable-length.) */
  662. if (handshaking && cell->command != CELL_VERSIONS &&
  663. cell->command != CELL_NETINFO) {
  664. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  665. "Received unexpected cell command %d in chan state %s / "
  666. "conn state %s; closing the connection.",
  667. (int)cell->command,
  668. channel_state_to_string(TLS_CHAN_TO_BASE(chan)->state),
  669. conn_state_to_string(CONN_TYPE_OR, TO_CONN(conn)->state));
  670. connection_or_close_for_error(conn, 0);
  671. return;
  672. }
  673. if (conn->_base.state == OR_CONN_STATE_OR_HANDSHAKING_V3)
  674. or_handshake_state_record_cell(conn->handshake_state, cell, 1);
  675. switch (cell->command) {
  676. case CELL_PADDING:
  677. ++stats_n_padding_cells_processed;
  678. /* do nothing */
  679. break;
  680. case CELL_VERSIONS:
  681. tor_fragile_assert();
  682. break;
  683. case CELL_NETINFO:
  684. ++stats_n_netinfo_cells_processed;
  685. PROCESS_CELL(netinfo, cell, chan);
  686. break;
  687. case CELL_CREATE:
  688. case CELL_CREATE_FAST:
  689. case CELL_CREATED:
  690. case CELL_CREATED_FAST:
  691. case CELL_RELAY:
  692. case CELL_RELAY_EARLY:
  693. case CELL_DESTROY:
  694. /*
  695. * These are all transport independent and we pass them up through the
  696. * channel_t mechanism. They are ultimately handled in command.c.
  697. */
  698. channel_queue_cell(TLS_CHAN_TO_BASE(chan), cell);
  699. break;
  700. default:
  701. log_fn(LOG_INFO, LD_PROTOCOL,
  702. "Cell of unknown type (%d) received in channeltls.c. "
  703. "Dropping.",
  704. cell->command);
  705. break;
  706. }
  707. }
  708. /**
  709. * Handle an incoming variable-length cell on a channel_tls_t
  710. *
  711. * Process a <b>var_cell</b> that was just received on <b>conn</b>. Keep
  712. * internal statistics about how many of each cell we've processed so far
  713. * this second, and the total number of microseconds it took to
  714. * process each type of cell. All the var_cell commands are handshake-
  715. * related and live below the channel_t layer, so no variable-length
  716. * cells ever get delivered in the current implementation, but I've left
  717. * the mechanism in place for future use.
  718. */
  719. void
  720. channel_tls_handle_var_cell(var_cell_t *var_cell, or_connection_t *conn)
  721. {
  722. channel_tls_t *chan;
  723. int handshaking;
  724. #ifdef KEEP_TIMING_STATS
  725. /* how many of each cell have we seen so far this second? needs better
  726. * name. */
  727. static int num_versions = 0, num_certs = 0;
  728. static time_t current_second = 0; /* from previous calls to time */
  729. time_t now = time(NULL);
  730. if (current_second == 0) current_second = now;
  731. if (now > current_second) { /* the second has rolled over */
  732. /* print stats */
  733. log_info(LD_OR,
  734. "At end of second: %d versions (%d ms), %d certs (%d ms)",
  735. num_versions, versions_time / ((now - current_second) * 1000),
  736. num_certs, certs_time / ((now - current_second) * 1000));
  737. num_versions = num_certs = 0;
  738. versions_time = certs_time = 0;
  739. /* remember which second it is, for next time */
  740. current_second = now;
  741. }
  742. #endif
  743. tor_assert(var_cell);
  744. tor_assert(conn);
  745. chan = conn->chan;
  746. if (!chan) {
  747. log_warn(LD_CHANNEL,
  748. "Got a var_cell_t on an OR connection with no channel");
  749. return;
  750. }
  751. handshaking = (TO_CONN(conn)->state != OR_CONN_STATE_OPEN);
  752. if (TO_CONN(conn)->marked_for_close)
  753. return;
  754. switch (TO_CONN(conn)->state) {
  755. case OR_CONN_STATE_OR_HANDSHAKING_V2:
  756. if (var_cell->command != CELL_VERSIONS) {
  757. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  758. "Received a cell with command %d in unexpected "
  759. "orconn state \"%s\" [%d], channel state \"%s\" [%d]; "
  760. "closing the connection.",
  761. (int)(var_cell->command),
  762. conn_state_to_string(CONN_TYPE_OR, TO_CONN(conn)->state),
  763. TO_CONN(conn)->state,
  764. channel_state_to_string(TLS_CHAN_TO_BASE(chan)->state),
  765. (int)(TLS_CHAN_TO_BASE(chan)->state));
  766. /*
  767. * The code in connection_or.c will tell channel_t to close for
  768. * error; it will go to CHANNEL_STATE_CLOSING, and then to
  769. * CHANNEL_STATE_ERROR when conn is closed.
  770. */
  771. connection_or_close_for_error(conn, 0);
  772. return;
  773. }
  774. break;
  775. case OR_CONN_STATE_TLS_HANDSHAKING:
  776. /* If we're using bufferevents, it's entirely possible for us to
  777. * notice "hey, data arrived!" before we notice "hey, the handshake
  778. * finished!" And we need to be accepting both at once to handle both
  779. * the v2 and v3 handshakes. */
  780. /* fall through */
  781. case OR_CONN_STATE_TLS_SERVER_RENEGOTIATING:
  782. if (!(command_allowed_before_handshake(var_cell->command))) {
  783. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  784. "Received a cell with command %d in unexpected "
  785. "orconn state \"%s\" [%d], channel state \"%s\" [%d]; "
  786. "closing the connection.",
  787. (int)(var_cell->command),
  788. conn_state_to_string(CONN_TYPE_OR, TO_CONN(conn)->state),
  789. (int)(TO_CONN(conn)->state),
  790. channel_state_to_string(TLS_CHAN_TO_BASE(chan)->state),
  791. (int)(TLS_CHAN_TO_BASE(chan)->state));
  792. /* see above comment about CHANNEL_STATE_ERROR */
  793. connection_or_close_for_error(conn, 0);
  794. return;
  795. } else {
  796. if (enter_v3_handshake_with_cell(var_cell, chan) < 0)
  797. return;
  798. }
  799. break;
  800. case OR_CONN_STATE_OR_HANDSHAKING_V3:
  801. if (var_cell->command != CELL_AUTHENTICATE)
  802. or_handshake_state_record_var_cell(conn->handshake_state, var_cell, 1);
  803. break; /* Everything is allowed */
  804. case OR_CONN_STATE_OPEN:
  805. if (conn->link_proto < 3) {
  806. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  807. "Received a variable-length cell with command %d in orconn "
  808. "state %s [%d], channel state %s [%d] with link protocol %d; "
  809. "ignoring it.",
  810. (int)(var_cell->command),
  811. conn_state_to_string(CONN_TYPE_OR, TO_CONN(conn)->state),
  812. (int)(TO_CONN(conn)->state),
  813. channel_state_to_string(TLS_CHAN_TO_BASE(chan)->state),
  814. (int)(TLS_CHAN_TO_BASE(chan)->state),
  815. (int)(conn->link_proto));
  816. return;
  817. }
  818. break;
  819. default:
  820. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  821. "Received var-length cell with command %d in unexpected "
  822. "orconn state \"%s\" [%d], channel state \"%s\" [%d]; "
  823. "ignoring it.",
  824. (int)(var_cell->command),
  825. conn_state_to_string(CONN_TYPE_OR, TO_CONN(conn)->state),
  826. (int)(TO_CONN(conn)->state),
  827. channel_state_to_string(TLS_CHAN_TO_BASE(chan)->state),
  828. (int)(TLS_CHAN_TO_BASE(chan)->state));
  829. return;
  830. }
  831. /* Now handle the cell */
  832. switch (var_cell->command) {
  833. case CELL_VERSIONS:
  834. ++stats_n_versions_cells_processed;
  835. PROCESS_CELL(versions, var_cell, chan);
  836. break;
  837. case CELL_VPADDING:
  838. ++stats_n_vpadding_cells_processed;
  839. /* Do nothing */
  840. break;
  841. case CELL_CERTS:
  842. ++stats_n_certs_cells_processed;
  843. PROCESS_CELL(certs, var_cell, chan);
  844. break;
  845. case CELL_AUTH_CHALLENGE:
  846. ++stats_n_auth_challenge_cells_processed;
  847. PROCESS_CELL(auth_challenge, var_cell, chan);
  848. break;
  849. case CELL_AUTHENTICATE:
  850. ++stats_n_authenticate_cells_processed;
  851. PROCESS_CELL(authenticate, var_cell, chan);
  852. break;
  853. case CELL_AUTHORIZE:
  854. ++stats_n_authorize_cells_processed;
  855. /* Ignored so far. */
  856. break;
  857. default:
  858. log_fn(LOG_INFO, LD_PROTOCOL,
  859. "Variable-length cell of unknown type (%d) received.",
  860. (int)(var_cell->command));
  861. break;
  862. }
  863. }
  864. /**
  865. * Check if this cell type is allowed before the handshake is finished
  866. *
  867. * Return true if <b>command</b> is a cell command that's allowed to start a
  868. * V3 handshake.
  869. */
  870. static int
  871. command_allowed_before_handshake(uint8_t command)
  872. {
  873. switch (command) {
  874. case CELL_VERSIONS:
  875. case CELL_VPADDING:
  876. case CELL_AUTHORIZE:
  877. return 1;
  878. default:
  879. return 0;
  880. }
  881. }
  882. /**
  883. * Start a V3 handshake on an incoming connection
  884. *
  885. * Called when we as a server receive an appropriate cell while waiting
  886. * either for a cell or a TLS handshake. Set the connection's state to
  887. * "handshaking_v3', initializes the or_handshake_state field as needed,
  888. * and add the cell to the hash of incoming cells.)
  889. */
  890. static int
  891. enter_v3_handshake_with_cell(var_cell_t *cell, channel_tls_t *chan)
  892. {
  893. int started_here = 0;
  894. tor_assert(cell);
  895. tor_assert(chan);
  896. tor_assert(chan->conn);
  897. started_here = connection_or_nonopen_was_started_here(chan->conn);
  898. tor_assert(TO_CONN(chan->conn)->state == OR_CONN_STATE_TLS_HANDSHAKING ||
  899. TO_CONN(chan->conn)->state ==
  900. OR_CONN_STATE_TLS_SERVER_RENEGOTIATING);
  901. if (started_here) {
  902. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  903. "Received a cell while TLS-handshaking, not in "
  904. "OR_HANDSHAKING_V3, on a connection we originated.");
  905. }
  906. chan->conn->_base.state = OR_CONN_STATE_OR_HANDSHAKING_V3;
  907. if (connection_init_or_handshake_state(chan->conn, started_here) < 0) {
  908. connection_or_close_for_error(chan->conn, 0);
  909. return -1;
  910. }
  911. or_handshake_state_record_var_cell(chan->conn->handshake_state, cell, 1);
  912. return 0;
  913. }
  914. /**
  915. * Process a 'versions' cell.
  916. *
  917. * This function is called to handle an incoming VERSIONS cell; the current
  918. * link protocol version must be 0 to indicate that no version has yet been
  919. * negotiated. We compare the versions in the cell to the list of versions
  920. * we support, pick the highest version we have in common, and continue the
  921. * negotiation from there.
  922. */
  923. static void
  924. channel_tls_process_versions_cell(var_cell_t *cell, channel_tls_t *chan)
  925. {
  926. int highest_supported_version = 0;
  927. const uint8_t *cp, *end;
  928. int started_here = 0;
  929. tor_assert(cell);
  930. tor_assert(chan);
  931. tor_assert(chan->conn);
  932. started_here = connection_or_nonopen_was_started_here(chan->conn);
  933. if (chan->conn->link_proto != 0 ||
  934. (chan->conn->handshake_state &&
  935. chan->conn->handshake_state->received_versions)) {
  936. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  937. "Received a VERSIONS cell on a connection with its version "
  938. "already set to %d; dropping",
  939. (int)(chan->conn->link_proto));
  940. return;
  941. }
  942. switch (chan->conn->_base.state)
  943. {
  944. case OR_CONN_STATE_OR_HANDSHAKING_V2:
  945. case OR_CONN_STATE_OR_HANDSHAKING_V3:
  946. break;
  947. case OR_CONN_STATE_TLS_HANDSHAKING:
  948. case OR_CONN_STATE_TLS_SERVER_RENEGOTIATING:
  949. default:
  950. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  951. "VERSIONS cell while in unexpected state");
  952. return;
  953. }
  954. tor_assert(chan->conn->handshake_state);
  955. end = cell->payload + cell->payload_len;
  956. for (cp = cell->payload; cp+1 < end; ++cp) {
  957. uint16_t v = ntohs(get_uint16(cp));
  958. if (is_or_protocol_version_known(v) && v > highest_supported_version)
  959. highest_supported_version = v;
  960. }
  961. if (!highest_supported_version) {
  962. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  963. "Couldn't find a version in common between my version list and the "
  964. "list in the VERSIONS cell; closing connection.");
  965. connection_or_close_for_error(chan->conn, 0);
  966. return;
  967. } else if (highest_supported_version == 1) {
  968. /* Negotiating version 1 makes no sense, since version 1 has no VERSIONS
  969. * cells. */
  970. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  971. "Used version negotiation protocol to negotiate a v1 connection. "
  972. "That's crazily non-compliant. Closing connection.");
  973. connection_or_close_for_error(chan->conn, 0);
  974. return;
  975. } else if (highest_supported_version < 3 &&
  976. chan->conn->_base.state == OR_CONN_STATE_OR_HANDSHAKING_V3) {
  977. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  978. "Negotiated link protocol 2 or lower after doing a v3 TLS "
  979. "handshake. Closing connection.");
  980. connection_or_close_for_error(chan->conn, 0);
  981. return;
  982. }
  983. chan->conn->link_proto = highest_supported_version;
  984. chan->conn->handshake_state->received_versions = 1;
  985. if (chan->conn->link_proto == 2) {
  986. log_info(LD_OR,
  987. "Negotiated version %d with %s:%d; sending NETINFO.",
  988. highest_supported_version,
  989. safe_str_client(chan->conn->_base.address),
  990. chan->conn->_base.port);
  991. if (connection_or_send_netinfo(chan->conn) < 0) {
  992. connection_or_close_for_error(chan->conn, 0);
  993. return;
  994. }
  995. } else {
  996. const int send_versions = !started_here;
  997. /* If we want to authenticate, send a CERTS cell */
  998. const int send_certs = !started_here || public_server_mode(get_options());
  999. /* If we're a relay that got a connection, ask for authentication. */
  1000. const int send_chall = !started_here && public_server_mode(get_options());
  1001. /* If our certs cell will authenticate us, we can send a netinfo cell
  1002. * right now. */
  1003. const int send_netinfo = !started_here;
  1004. const int send_any =
  1005. send_versions || send_certs || send_chall || send_netinfo;
  1006. tor_assert(chan->conn->link_proto >= 3);
  1007. log_info(LD_OR,
  1008. "Negotiated version %d with %s:%d; %s%s%s%s%s",
  1009. highest_supported_version,
  1010. safe_str_client(chan->conn->_base.address),
  1011. chan->conn->_base.port,
  1012. send_any ? "Sending cells:" : "Waiting for CERTS cell",
  1013. send_versions ? " VERSIONS" : "",
  1014. send_certs ? " CERTS" : "",
  1015. send_chall ? " AUTH_CHALLENGE" : "",
  1016. send_netinfo ? " NETINFO" : "");
  1017. #ifdef DISABLE_V3_LINKPROTO_SERVERSIDE
  1018. if (1) {
  1019. connection_or_close_normally(chan->conn, 1);
  1020. return;
  1021. }
  1022. #endif
  1023. if (send_versions) {
  1024. if (connection_or_send_versions(chan->conn, 1) < 0) {
  1025. log_warn(LD_OR, "Couldn't send versions cell");
  1026. connection_or_close_for_error(chan->conn, 0);
  1027. return;
  1028. }
  1029. }
  1030. if (send_certs) {
  1031. if (connection_or_send_certs_cell(chan->conn) < 0) {
  1032. log_warn(LD_OR, "Couldn't send certs cell");
  1033. connection_or_close_for_error(chan->conn, 0);
  1034. return;
  1035. }
  1036. }
  1037. if (send_chall) {
  1038. if (connection_or_send_auth_challenge_cell(chan->conn) < 0) {
  1039. log_warn(LD_OR, "Couldn't send auth_challenge cell");
  1040. connection_or_close_for_error(chan->conn, 0);
  1041. return;
  1042. }
  1043. }
  1044. if (send_netinfo) {
  1045. if (connection_or_send_netinfo(chan->conn) < 0) {
  1046. log_warn(LD_OR, "Couldn't send netinfo cell");
  1047. connection_or_close_for_error(chan->conn, 0);
  1048. return;
  1049. }
  1050. }
  1051. }
  1052. }
  1053. /**
  1054. * Process a 'netinfo' cell
  1055. *
  1056. * This function is called to handle an incoming NETINFO cell; read and act
  1057. * on its contents, and set the connection state to "open".
  1058. */
  1059. static void
  1060. channel_tls_process_netinfo_cell(cell_t *cell, channel_tls_t *chan)
  1061. {
  1062. time_t timestamp;
  1063. uint8_t my_addr_type;
  1064. uint8_t my_addr_len;
  1065. const uint8_t *my_addr_ptr;
  1066. const uint8_t *cp, *end;
  1067. uint8_t n_other_addrs;
  1068. time_t now = time(NULL);
  1069. long apparent_skew = 0;
  1070. tor_addr_t my_apparent_addr = TOR_ADDR_NULL;
  1071. tor_assert(cell);
  1072. tor_assert(chan);
  1073. tor_assert(chan->conn);
  1074. if (chan->conn->link_proto < 2) {
  1075. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  1076. "Received a NETINFO cell on %s connection; dropping.",
  1077. chan->conn->link_proto == 0 ? "non-versioned" : "a v1");
  1078. return;
  1079. }
  1080. if (chan->conn->_base.state != OR_CONN_STATE_OR_HANDSHAKING_V2 &&
  1081. chan->conn->_base.state != OR_CONN_STATE_OR_HANDSHAKING_V3) {
  1082. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  1083. "Received a NETINFO cell on non-handshaking connection; dropping.");
  1084. return;
  1085. }
  1086. tor_assert(chan->conn->handshake_state &&
  1087. chan->conn->handshake_state->received_versions);
  1088. if (chan->conn->_base.state == OR_CONN_STATE_OR_HANDSHAKING_V3) {
  1089. tor_assert(chan->conn->link_proto >= 3);
  1090. if (chan->conn->handshake_state->started_here) {
  1091. if (!(chan->conn->handshake_state->authenticated)) {
  1092. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  1093. "Got a NETINFO cell from server, "
  1094. "but no authentication. Closing the connection.");
  1095. connection_or_close_for_error(chan->conn, 0);
  1096. return;
  1097. }
  1098. } else {
  1099. /* we're the server. If the client never authenticated, we have
  1100. some housekeeping to do.*/
  1101. if (!(chan->conn->handshake_state->authenticated)) {
  1102. tor_assert(tor_digest_is_zero(
  1103. (const char*)(chan->conn->handshake_state->
  1104. authenticated_peer_id)));
  1105. channel_set_circid_type(TLS_CHAN_TO_BASE(chan), NULL);
  1106. connection_or_init_conn_from_address(chan->conn,
  1107. &(chan->conn->_base.addr),
  1108. chan->conn->_base.port,
  1109. (const char*)(chan->conn->handshake_state->
  1110. authenticated_peer_id),
  1111. 0);
  1112. }
  1113. }
  1114. }
  1115. /* Decode the cell. */
  1116. timestamp = ntohl(get_uint32(cell->payload));
  1117. if (labs(now - chan->conn->handshake_state->sent_versions_at) < 180) {
  1118. apparent_skew = now - timestamp;
  1119. }
  1120. my_addr_type = (uint8_t) cell->payload[4];
  1121. my_addr_len = (uint8_t) cell->payload[5];
  1122. my_addr_ptr = (uint8_t*) cell->payload + 6;
  1123. end = cell->payload + CELL_PAYLOAD_SIZE;
  1124. cp = cell->payload + 6 + my_addr_len;
  1125. if (cp >= end) {
  1126. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  1127. "Addresses too long in netinfo cell; closing connection.");
  1128. connection_or_close_for_error(chan->conn, 0);
  1129. return;
  1130. } else if (my_addr_type == RESOLVED_TYPE_IPV4 && my_addr_len == 4) {
  1131. tor_addr_from_ipv4n(&my_apparent_addr, get_uint32(my_addr_ptr));
  1132. } else if (my_addr_type == RESOLVED_TYPE_IPV6 && my_addr_len == 16) {
  1133. tor_addr_from_ipv6_bytes(&my_apparent_addr, (const char *) my_addr_ptr);
  1134. }
  1135. n_other_addrs = (uint8_t) *cp++;
  1136. while (n_other_addrs && cp < end-2) {
  1137. /* Consider all the other addresses; if any matches, this connection is
  1138. * "canonical." */
  1139. tor_addr_t addr;
  1140. const uint8_t *next =
  1141. decode_address_from_payload(&addr, cp, (int)(end-cp));
  1142. if (next == NULL) {
  1143. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  1144. "Bad address in netinfo cell; closing connection.");
  1145. connection_or_close_for_error(chan->conn, 0);
  1146. return;
  1147. }
  1148. if (tor_addr_eq(&addr, &(chan->conn->real_addr))) {
  1149. chan->conn->is_canonical = 1;
  1150. break;
  1151. }
  1152. cp = next;
  1153. --n_other_addrs;
  1154. }
  1155. /* Act on apparent skew. */
  1156. /** Warn when we get a netinfo skew with at least this value. */
  1157. #define NETINFO_NOTICE_SKEW 3600
  1158. if (labs(apparent_skew) > NETINFO_NOTICE_SKEW &&
  1159. router_get_by_id_digest(chan->conn->identity_digest)) {
  1160. char dbuf[64];
  1161. int severity;
  1162. /*XXXX be smarter about when everybody says we are skewed. */
  1163. if (router_digest_is_trusted_dir(chan->conn->identity_digest))
  1164. severity = LOG_WARN;
  1165. else
  1166. severity = LOG_INFO;
  1167. format_time_interval(dbuf, sizeof(dbuf), apparent_skew);
  1168. log_fn(severity, LD_GENERAL,
  1169. "Received NETINFO cell with skewed time from "
  1170. "server at %s:%d. It seems that our clock is %s by %s, or "
  1171. "that theirs is %s. Tor requires an accurate clock to work: "
  1172. "please check your time and date settings.",
  1173. chan->conn->_base.address,
  1174. (int)(chan->conn->_base.port),
  1175. apparent_skew > 0 ? "ahead" : "behind",
  1176. dbuf,
  1177. apparent_skew > 0 ? "behind" : "ahead");
  1178. if (severity == LOG_WARN) /* only tell the controller if an authority */
  1179. control_event_general_status(LOG_WARN,
  1180. "CLOCK_SKEW SKEW=%ld SOURCE=OR:%s:%d",
  1181. apparent_skew,
  1182. chan->conn->_base.address,
  1183. chan->conn->_base.port);
  1184. }
  1185. /* XXX maybe act on my_apparent_addr, if the source is sufficiently
  1186. * trustworthy. */
  1187. if (connection_or_set_state_open(chan->conn) < 0) {
  1188. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  1189. "Got good NETINFO cell from %s:%d; but "
  1190. "was unable to make the OR connection become open.",
  1191. safe_str_client(chan->conn->_base.address),
  1192. chan->conn->_base.port);
  1193. connection_or_close_for_error(chan->conn, 0);
  1194. } else {
  1195. log_info(LD_OR,
  1196. "Got good NETINFO cell from %s:%d; OR connection is now "
  1197. "open, using protocol version %d. Its ID digest is %s. "
  1198. "Our address is apparently %s.",
  1199. safe_str_client(chan->conn->_base.address),
  1200. chan->conn->_base.port,
  1201. (int)(chan->conn->link_proto),
  1202. hex_str(TLS_CHAN_TO_BASE(chan)->identity_digest,
  1203. DIGEST_LEN),
  1204. tor_addr_is_null(&my_apparent_addr) ?
  1205. "<none>" : fmt_and_decorate_addr(&my_apparent_addr));
  1206. }
  1207. assert_connection_ok(TO_CONN(chan->conn),time(NULL));
  1208. }
  1209. /**
  1210. * Process a CERTS cell from a channel.
  1211. *
  1212. * This function is called to process an incoming CERTS cell on a
  1213. * channel_tls_t:
  1214. *
  1215. * If the other side should not have sent us a CERTS cell, or the cell is
  1216. * malformed, or it is supposed to authenticate the TLS key but it doesn't,
  1217. * then mark the connection.
  1218. *
  1219. * If the cell has a good cert chain and we're doing a v3 handshake, then
  1220. * store the certificates in or_handshake_state. If this is the client side
  1221. * of the connection, we then authenticate the server or mark the connection.
  1222. * If it's the server side, wait for an AUTHENTICATE cell.
  1223. */
  1224. static void
  1225. channel_tls_process_certs_cell(var_cell_t *cell, channel_tls_t *chan)
  1226. {
  1227. tor_cert_t *link_cert = NULL;
  1228. tor_cert_t *id_cert = NULL;
  1229. tor_cert_t *auth_cert = NULL;
  1230. uint8_t *ptr;
  1231. int n_certs, i;
  1232. int send_netinfo = 0;
  1233. tor_assert(cell);
  1234. tor_assert(chan);
  1235. tor_assert(chan->conn);
  1236. #define ERR(s) \
  1237. do { \
  1238. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, \
  1239. "Received a bad CERTS cell from %s:%d: %s", \
  1240. safe_str(chan->conn->_base.address), \
  1241. chan->conn->_base.port, (s)); \
  1242. connection_or_close_for_error(chan->conn, 0); \
  1243. return; \
  1244. } while (0)
  1245. if (chan->conn->_base.state != OR_CONN_STATE_OR_HANDSHAKING_V3)
  1246. ERR("We're not doing a v3 handshake!");
  1247. if (chan->conn->link_proto < 3)
  1248. ERR("We're not using link protocol >= 3");
  1249. if (chan->conn->handshake_state->received_certs_cell)
  1250. ERR("We already got one");
  1251. if (chan->conn->handshake_state->authenticated) {
  1252. /* Should be unreachable, but let's make sure. */
  1253. ERR("We're already authenticated!");
  1254. }
  1255. if (cell->payload_len < 1)
  1256. ERR("It had no body");
  1257. if (cell->circ_id)
  1258. ERR("It had a nonzero circuit ID");
  1259. n_certs = cell->payload[0];
  1260. ptr = cell->payload + 1;
  1261. for (i = 0; i < n_certs; ++i) {
  1262. uint8_t cert_type;
  1263. uint16_t cert_len;
  1264. if (ptr + 3 > cell->payload + cell->payload_len) {
  1265. goto truncated;
  1266. }
  1267. cert_type = *ptr;
  1268. cert_len = ntohs(get_uint16(ptr+1));
  1269. if (ptr + 3 + cert_len > cell->payload + cell->payload_len) {
  1270. goto truncated;
  1271. }
  1272. if (cert_type == OR_CERT_TYPE_TLS_LINK ||
  1273. cert_type == OR_CERT_TYPE_ID_1024 ||
  1274. cert_type == OR_CERT_TYPE_AUTH_1024) {
  1275. tor_cert_t *cert = tor_cert_decode(ptr + 3, cert_len);
  1276. if (!cert) {
  1277. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  1278. "Received undecodable certificate in CERTS cell from %s:%d",
  1279. safe_str(chan->conn->_base.address),
  1280. chan->conn->_base.port);
  1281. } else {
  1282. if (cert_type == OR_CERT_TYPE_TLS_LINK) {
  1283. if (link_cert) {
  1284. tor_cert_free(cert);
  1285. ERR("Too many TLS_LINK certificates");
  1286. }
  1287. link_cert = cert;
  1288. } else if (cert_type == OR_CERT_TYPE_ID_1024) {
  1289. if (id_cert) {
  1290. tor_cert_free(cert);
  1291. ERR("Too many ID_1024 certificates");
  1292. }
  1293. id_cert = cert;
  1294. } else if (cert_type == OR_CERT_TYPE_AUTH_1024) {
  1295. if (auth_cert) {
  1296. tor_cert_free(cert);
  1297. ERR("Too many AUTH_1024 certificates");
  1298. }
  1299. auth_cert = cert;
  1300. } else {
  1301. tor_cert_free(cert);
  1302. }
  1303. }
  1304. }
  1305. ptr += 3 + cert_len;
  1306. continue;
  1307. truncated:
  1308. ERR("It ends in the middle of a certificate");
  1309. }
  1310. if (chan->conn->handshake_state->started_here) {
  1311. int severity;
  1312. if (! (id_cert && link_cert))
  1313. ERR("The certs we wanted were missing");
  1314. /* Okay. We should be able to check the certificates now. */
  1315. if (! tor_tls_cert_matches_key(chan->conn->tls, link_cert)) {
  1316. ERR("The link certificate didn't match the TLS public key");
  1317. }
  1318. /* Note that this warns more loudly about time and validity if we were
  1319. * _trying_ to connect to an authority, not necessarily if we _did_ connect
  1320. * to one. */
  1321. if (router_digest_is_trusted_dir(
  1322. TLS_CHAN_TO_BASE(chan)->identity_digest))
  1323. severity = LOG_WARN;
  1324. else
  1325. severity = LOG_PROTOCOL_WARN;
  1326. if (! tor_tls_cert_is_valid(severity, link_cert, id_cert, 0))
  1327. ERR("The link certificate was not valid");
  1328. if (! tor_tls_cert_is_valid(severity, id_cert, id_cert, 1))
  1329. ERR("The ID certificate was not valid");
  1330. chan->conn->handshake_state->authenticated = 1;
  1331. {
  1332. const digests_t *id_digests = tor_cert_get_id_digests(id_cert);
  1333. crypto_pk_t *identity_rcvd;
  1334. if (!id_digests)
  1335. ERR("Couldn't compute digests for key in ID cert");
  1336. identity_rcvd = tor_tls_cert_get_key(id_cert);
  1337. if (!identity_rcvd)
  1338. ERR("Internal error: Couldn't get RSA key from ID cert.");
  1339. memcpy(chan->conn->handshake_state->authenticated_peer_id,
  1340. id_digests->d[DIGEST_SHA1], DIGEST_LEN);
  1341. channel_set_circid_type(TLS_CHAN_TO_BASE(chan), identity_rcvd);
  1342. crypto_pk_free(identity_rcvd);
  1343. }
  1344. if (connection_or_client_learned_peer_id(chan->conn,
  1345. chan->conn->handshake_state->authenticated_peer_id) < 0)
  1346. ERR("Problem setting or checking peer id");
  1347. log_info(LD_OR,
  1348. "Got some good certificates from %s:%d: Authenticated it.",
  1349. safe_str(chan->conn->_base.address), chan->conn->_base.port);
  1350. chan->conn->handshake_state->id_cert = id_cert;
  1351. id_cert = NULL;
  1352. if (!public_server_mode(get_options())) {
  1353. /* If we initiated the connection and we are not a public server, we
  1354. * aren't planning to authenticate at all. At this point we know who we
  1355. * are talking to, so we can just send a netinfo now. */
  1356. send_netinfo = 1;
  1357. }
  1358. } else {
  1359. if (! (id_cert && auth_cert))
  1360. ERR("The certs we wanted were missing");
  1361. /* Remember these certificates so we can check an AUTHENTICATE cell */
  1362. if (! tor_tls_cert_is_valid(LOG_PROTOCOL_WARN, auth_cert, id_cert, 1))
  1363. ERR("The authentication certificate was not valid");
  1364. if (! tor_tls_cert_is_valid(LOG_PROTOCOL_WARN, id_cert, id_cert, 1))
  1365. ERR("The ID certificate was not valid");
  1366. log_info(LD_OR,
  1367. "Got some good certificates from %s:%d: "
  1368. "Waiting for AUTHENTICATE.",
  1369. safe_str(chan->conn->_base.address),
  1370. chan->conn->_base.port);
  1371. /* XXXX check more stuff? */
  1372. chan->conn->handshake_state->id_cert = id_cert;
  1373. chan->conn->handshake_state->auth_cert = auth_cert;
  1374. id_cert = auth_cert = NULL;
  1375. }
  1376. chan->conn->handshake_state->received_certs_cell = 1;
  1377. if (send_netinfo) {
  1378. if (connection_or_send_netinfo(chan->conn) < 0) {
  1379. log_warn(LD_OR, "Couldn't send netinfo cell");
  1380. connection_or_close_for_error(chan->conn, 0);
  1381. goto err;
  1382. }
  1383. }
  1384. err:
  1385. tor_cert_free(id_cert);
  1386. tor_cert_free(link_cert);
  1387. tor_cert_free(auth_cert);
  1388. #undef ERR
  1389. }
  1390. /**
  1391. * Process an AUTH_CHALLENGE cell from a channel_tls_t
  1392. *
  1393. * This function is called to handle an incoming AUTH_CHALLENGE cell on a
  1394. * channel_tls_t; if we weren't supposed to get one (for example, because we're
  1395. * not the originator of the channel), or it's ill-formed, or we aren't doing
  1396. * a v3 handshake, mark the channel. If the cell is well-formed but we don't
  1397. * want to authenticate, just drop it. If the cell is well-formed *and* we
  1398. * want to authenticate, send an AUTHENTICATE cell and then a NETINFO cell.
  1399. */
  1400. static void
  1401. channel_tls_process_auth_challenge_cell(var_cell_t *cell, channel_tls_t *chan)
  1402. {
  1403. int n_types, i, use_type = -1;
  1404. uint8_t *cp;
  1405. tor_assert(cell);
  1406. tor_assert(chan);
  1407. tor_assert(chan->conn);
  1408. #define ERR(s) \
  1409. do { \
  1410. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, \
  1411. "Received a bad AUTH_CHALLENGE cell from %s:%d: %s", \
  1412. safe_str(chan->conn->_base.address), \
  1413. chan->conn->_base.port, (s)); \
  1414. connection_or_close_for_error(chan->conn, 0); \
  1415. return; \
  1416. } while (0)
  1417. if (chan->conn->_base.state != OR_CONN_STATE_OR_HANDSHAKING_V3)
  1418. ERR("We're not currently doing a v3 handshake");
  1419. if (chan->conn->link_proto < 3)
  1420. ERR("We're not using link protocol >= 3");
  1421. if (!(chan->conn->handshake_state->started_here))
  1422. ERR("We didn't originate this connection");
  1423. if (chan->conn->handshake_state->received_auth_challenge)
  1424. ERR("We already received one");
  1425. if (!(chan->conn->handshake_state->received_certs_cell))
  1426. ERR("We haven't gotten a CERTS cell yet");
  1427. if (cell->payload_len < OR_AUTH_CHALLENGE_LEN + 2)
  1428. ERR("It was too short");
  1429. if (cell->circ_id)
  1430. ERR("It had a nonzero circuit ID");
  1431. n_types = ntohs(get_uint16(cell->payload + OR_AUTH_CHALLENGE_LEN));
  1432. if (cell->payload_len < OR_AUTH_CHALLENGE_LEN + 2 + 2*n_types)
  1433. ERR("It looks truncated");
  1434. /* Now see if there is an authentication type we can use */
  1435. cp = cell->payload+OR_AUTH_CHALLENGE_LEN + 2;
  1436. for (i = 0; i < n_types; ++i, cp += 2) {
  1437. uint16_t authtype = ntohs(get_uint16(cp));
  1438. if (authtype == AUTHTYPE_RSA_SHA256_TLSSECRET)
  1439. use_type = authtype;
  1440. }
  1441. chan->conn->handshake_state->received_auth_challenge = 1;
  1442. if (! public_server_mode(get_options())) {
  1443. /* If we're not a public server then we don't want to authenticate on a
  1444. connection we originated, and we already sent a NETINFO cell when we
  1445. got the CERTS cell. We have nothing more to do. */
  1446. return;
  1447. }
  1448. if (use_type >= 0) {
  1449. log_info(LD_OR,
  1450. "Got an AUTH_CHALLENGE cell from %s:%d: Sending "
  1451. "authentication",
  1452. safe_str(chan->conn->_base.address),
  1453. chan->conn->_base.port);
  1454. if (connection_or_send_authenticate_cell(chan->conn, use_type) < 0) {
  1455. log_warn(LD_OR,
  1456. "Couldn't send authenticate cell");
  1457. connection_or_close_for_error(chan->conn, 0);
  1458. return;
  1459. }
  1460. } else {
  1461. log_info(LD_OR,
  1462. "Got an AUTH_CHALLENGE cell from %s:%d, but we don't "
  1463. "know any of its authentication types. Not authenticating.",
  1464. safe_str(chan->conn->_base.address),
  1465. chan->conn->_base.port);
  1466. }
  1467. if (connection_or_send_netinfo(chan->conn) < 0) {
  1468. log_warn(LD_OR, "Couldn't send netinfo cell");
  1469. connection_or_close_for_error(chan->conn, 0);
  1470. return;
  1471. }
  1472. #undef ERR
  1473. }
  1474. /**
  1475. * Process an AUTHENTICATE cell from a channel_tls_t
  1476. *
  1477. * If it's ill-formed or we weren't supposed to get one or we're not doing a
  1478. * v3 handshake, then mark the connection. If it does not authenticate the
  1479. * other side of the connection successfully (because it isn't signed right,
  1480. * we didn't get a CERTS cell, etc) mark the connection. Otherwise, accept
  1481. * the identity of the router on the other side of the connection.
  1482. */
  1483. static void
  1484. channel_tls_process_authenticate_cell(var_cell_t *cell, channel_tls_t *chan)
  1485. {
  1486. uint8_t expected[V3_AUTH_FIXED_PART_LEN];
  1487. const uint8_t *auth;
  1488. int authlen;
  1489. tor_assert(cell);
  1490. tor_assert(chan);
  1491. tor_assert(chan->conn);
  1492. #define ERR(s) \
  1493. do { \
  1494. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, \
  1495. "Received a bad AUTHENTICATE cell from %s:%d: %s", \
  1496. safe_str(chan->conn->_base.address), \
  1497. chan->conn->_base.port, (s)); \
  1498. connection_or_close_for_error(chan->conn, 0); \
  1499. return; \
  1500. } while (0)
  1501. if (chan->conn->_base.state != OR_CONN_STATE_OR_HANDSHAKING_V3)
  1502. ERR("We're not doing a v3 handshake");
  1503. if (chan->conn->link_proto < 3)
  1504. ERR("We're not using link protocol >= 3");
  1505. if (chan->conn->handshake_state->started_here)
  1506. ERR("We originated this connection");
  1507. if (chan->conn->handshake_state->received_authenticate)
  1508. ERR("We already got one!");
  1509. if (chan->conn->handshake_state->authenticated) {
  1510. /* Should be impossible given other checks */
  1511. ERR("The peer is already authenticated");
  1512. }
  1513. if (!(chan->conn->handshake_state->received_certs_cell))
  1514. ERR("We never got a certs cell");
  1515. if (chan->conn->handshake_state->auth_cert == NULL)
  1516. ERR("We never got an authentication certificate");
  1517. if (chan->conn->handshake_state->id_cert == NULL)
  1518. ERR("We never got an identity certificate");
  1519. if (cell->payload_len < 4)
  1520. ERR("Cell was way too short");
  1521. auth = cell->payload;
  1522. {
  1523. uint16_t type = ntohs(get_uint16(auth));
  1524. uint16_t len = ntohs(get_uint16(auth+2));
  1525. if (4 + len > cell->payload_len)
  1526. ERR("Authenticator was truncated");
  1527. if (type != AUTHTYPE_RSA_SHA256_TLSSECRET)
  1528. ERR("Authenticator type was not recognized");
  1529. auth += 4;
  1530. authlen = len;
  1531. }
  1532. if (authlen < V3_AUTH_BODY_LEN + 1)
  1533. ERR("Authenticator was too short");
  1534. if (connection_or_compute_authenticate_cell_body(
  1535. chan->conn, expected, sizeof(expected), NULL, 1) < 0)
  1536. ERR("Couldn't compute expected AUTHENTICATE cell body");
  1537. if (tor_memneq(expected, auth, sizeof(expected)))
  1538. ERR("Some field in the AUTHENTICATE cell body was not as expected");
  1539. {
  1540. crypto_pk_t *pk = tor_tls_cert_get_key(
  1541. chan->conn->handshake_state->auth_cert);
  1542. char d[DIGEST256_LEN];
  1543. char *signed_data;
  1544. size_t keysize;
  1545. int signed_len;
  1546. if (!pk)
  1547. ERR("Internal error: couldn't get RSA key from AUTH cert.");
  1548. crypto_digest256(d, (char*)auth, V3_AUTH_BODY_LEN, DIGEST_SHA256);
  1549. keysize = crypto_pk_keysize(pk);
  1550. signed_data = tor_malloc(keysize);
  1551. signed_len = crypto_pk_public_checksig(pk, signed_data, keysize,
  1552. (char*)auth + V3_AUTH_BODY_LEN,
  1553. authlen - V3_AUTH_BODY_LEN);
  1554. crypto_pk_free(pk);
  1555. if (signed_len < 0) {
  1556. tor_free(signed_data);
  1557. ERR("Signature wasn't valid");
  1558. }
  1559. if (signed_len < DIGEST256_LEN) {
  1560. tor_free(signed_data);
  1561. ERR("Not enough data was signed");
  1562. }
  1563. /* Note that we deliberately allow *more* than DIGEST256_LEN bytes here,
  1564. * in case they're later used to hold a SHA3 digest or something. */
  1565. if (tor_memneq(signed_data, d, DIGEST256_LEN)) {
  1566. tor_free(signed_data);
  1567. ERR("Signature did not match data to be signed.");
  1568. }
  1569. tor_free(signed_data);
  1570. }
  1571. /* Okay, we are authenticated. */
  1572. chan->conn->handshake_state->received_authenticate = 1;
  1573. chan->conn->handshake_state->authenticated = 1;
  1574. chan->conn->handshake_state->digest_received_data = 0;
  1575. {
  1576. crypto_pk_t *identity_rcvd =
  1577. tor_tls_cert_get_key(chan->conn->handshake_state->id_cert);
  1578. const digests_t *id_digests =
  1579. tor_cert_get_id_digests(chan->conn->handshake_state->id_cert);
  1580. /* This must exist; we checked key type when reading the cert. */
  1581. tor_assert(id_digests);
  1582. memcpy(chan->conn->handshake_state->authenticated_peer_id,
  1583. id_digests->d[DIGEST_SHA1], DIGEST_LEN);
  1584. channel_set_circid_type(TLS_CHAN_TO_BASE(chan), identity_rcvd);
  1585. crypto_pk_free(identity_rcvd);
  1586. connection_or_init_conn_from_address(chan->conn,
  1587. &(chan->conn->_base.addr),
  1588. chan->conn->_base.port,
  1589. (const char*)(chan->conn->handshake_state->
  1590. authenticated_peer_id),
  1591. 0);
  1592. log_info(LD_OR,
  1593. "Got an AUTHENTICATE cell from %s:%d: Looks good.",
  1594. safe_str(chan->conn->_base.address),
  1595. chan->conn->_base.port);
  1596. }
  1597. #undef ERR
  1598. }