channeltls.c 68 KB

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