channeltls.c 61 KB

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