channeltls.c 68 KB

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