channeltls.c 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256
  1. /* * Copyright (c) 2012-2016, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. /**
  4. * \file channeltls.c
  5. *
  6. * \brief A concrete subclass of channel_t using or_connection_t to transfer
  7. * cells between Tor instances.
  8. **/
  9. /*
  10. * Define this so channel.h gives us things only channel_t subclasses
  11. * should touch.
  12. */
  13. #define TOR_CHANNEL_INTERNAL_
  14. #define CHANNELTLS_PRIVATE
  15. #include "or.h"
  16. #include "channel.h"
  17. #include "channeltls.h"
  18. #include "circuitmux.h"
  19. #include "circuitmux_ewma.h"
  20. #include "command.h"
  21. #include "config.h"
  22. #include "connection.h"
  23. #include "connection_or.h"
  24. #include "control.h"
  25. #include "link_handshake.h"
  26. #include "relay.h"
  27. #include "rephist.h"
  28. #include "router.h"
  29. #include "routerlist.h"
  30. #include "scheduler.h"
  31. #include "torcert.h"
  32. /** How many CELL_PADDING cells have we received, ever? */
  33. uint64_t stats_n_padding_cells_processed = 0;
  34. /** How many CELL_VERSIONS cells have we received, ever? */
  35. uint64_t stats_n_versions_cells_processed = 0;
  36. /** How many CELL_NETINFO cells have we received, ever? */
  37. uint64_t stats_n_netinfo_cells_processed = 0;
  38. /** How many CELL_VPADDING cells have we received, ever? */
  39. uint64_t stats_n_vpadding_cells_processed = 0;
  40. /** How many CELL_CERTS cells have we received, ever? */
  41. uint64_t stats_n_certs_cells_processed = 0;
  42. /** How many CELL_AUTH_CHALLENGE cells have we received, ever? */
  43. uint64_t stats_n_auth_challenge_cells_processed = 0;
  44. /** How many CELL_AUTHENTICATE cells have we received, ever? */
  45. uint64_t stats_n_authenticate_cells_processed = 0;
  46. /** How many CELL_AUTHORIZE cells have we received, ever? */
  47. uint64_t stats_n_authorize_cells_processed = 0;
  48. /** Active listener, if any */
  49. static channel_listener_t *channel_tls_listener = NULL;
  50. /* channel_tls_t method declarations */
  51. static void channel_tls_close_method(channel_t *chan);
  52. static const char * channel_tls_describe_transport_method(channel_t *chan);
  53. static void channel_tls_free_method(channel_t *chan);
  54. static double channel_tls_get_overhead_estimate_method(channel_t *chan);
  55. static int
  56. channel_tls_get_remote_addr_method(channel_t *chan, tor_addr_t *addr_out);
  57. static int
  58. channel_tls_get_transport_name_method(channel_t *chan, char **transport_out);
  59. static const char *
  60. channel_tls_get_remote_descr_method(channel_t *chan, int flags);
  61. static int channel_tls_has_queued_writes_method(channel_t *chan);
  62. static int channel_tls_is_canonical_method(channel_t *chan, int req);
  63. static int
  64. channel_tls_matches_extend_info_method(channel_t *chan,
  65. extend_info_t *extend_info);
  66. static int channel_tls_matches_target_method(channel_t *chan,
  67. const tor_addr_t *target);
  68. static int channel_tls_num_cells_writeable_method(channel_t *chan);
  69. static size_t channel_tls_num_bytes_queued_method(channel_t *chan);
  70. static int channel_tls_write_cell_method(channel_t *chan,
  71. cell_t *cell);
  72. static int channel_tls_write_packed_cell_method(channel_t *chan,
  73. packed_cell_t *packed_cell);
  74. static int channel_tls_write_var_cell_method(channel_t *chan,
  75. var_cell_t *var_cell);
  76. /* channel_listener_tls_t method declarations */
  77. static void channel_tls_listener_close_method(channel_listener_t *chan_l);
  78. static const char *
  79. channel_tls_listener_describe_transport_method(channel_listener_t *chan_l);
  80. /** Handle incoming cells for the handshake stuff here rather than
  81. * passing them on up. */
  82. static void channel_tls_process_versions_cell(var_cell_t *cell,
  83. channel_tls_t *tlschan);
  84. static void channel_tls_process_netinfo_cell(cell_t *cell,
  85. channel_tls_t *tlschan);
  86. static int command_allowed_before_handshake(uint8_t command);
  87. static int enter_v3_handshake_with_cell(var_cell_t *cell,
  88. channel_tls_t *tlschan);
  89. /**
  90. * Do parts of channel_tls_t initialization common to channel_tls_connect()
  91. * and channel_tls_handle_incoming().
  92. */
  93. STATIC void
  94. channel_tls_common_init(channel_tls_t *tlschan)
  95. {
  96. channel_t *chan;
  97. tor_assert(tlschan);
  98. chan = &(tlschan->base_);
  99. channel_init(chan);
  100. chan->magic = TLS_CHAN_MAGIC;
  101. chan->state = CHANNEL_STATE_OPENING;
  102. chan->close = channel_tls_close_method;
  103. chan->describe_transport = channel_tls_describe_transport_method;
  104. chan->free_fn = channel_tls_free_method;
  105. chan->get_overhead_estimate = channel_tls_get_overhead_estimate_method;
  106. chan->get_remote_addr = channel_tls_get_remote_addr_method;
  107. chan->get_remote_descr = channel_tls_get_remote_descr_method;
  108. chan->get_transport_name = channel_tls_get_transport_name_method;
  109. chan->has_queued_writes = channel_tls_has_queued_writes_method;
  110. chan->is_canonical = channel_tls_is_canonical_method;
  111. chan->matches_extend_info = channel_tls_matches_extend_info_method;
  112. chan->matches_target = channel_tls_matches_target_method;
  113. chan->num_bytes_queued = channel_tls_num_bytes_queued_method;
  114. chan->num_cells_writeable = channel_tls_num_cells_writeable_method;
  115. chan->write_cell = channel_tls_write_cell_method;
  116. chan->write_packed_cell = channel_tls_write_packed_cell_method;
  117. chan->write_var_cell = channel_tls_write_var_cell_method;
  118. chan->cmux = circuitmux_alloc();
  119. if (cell_ewma_enabled()) {
  120. circuitmux_set_policy(chan->cmux, &ewma_policy);
  121. }
  122. }
  123. /**
  124. * Start a new TLS channel
  125. *
  126. * Launch a new OR connection to <b>addr</b>:<b>port</b> and expect to
  127. * handshake with an OR with identity digest <b>id_digest</b>, and wrap
  128. * it in a channel_tls_t.
  129. */
  130. channel_t *
  131. channel_tls_connect(const tor_addr_t *addr, uint16_t port,
  132. const char *id_digest)
  133. {
  134. channel_tls_t *tlschan = tor_malloc_zero(sizeof(*tlschan));
  135. channel_t *chan = &(tlschan->base_);
  136. channel_tls_common_init(tlschan);
  137. log_debug(LD_CHANNEL,
  138. "In channel_tls_connect() for channel %p "
  139. "(global id " U64_FORMAT ")",
  140. tlschan,
  141. U64_PRINTF_ARG(chan->global_identifier));
  142. if (is_local_addr(addr)) {
  143. log_debug(LD_CHANNEL,
  144. "Marking new outgoing channel " U64_FORMAT " at %p as local",
  145. U64_PRINTF_ARG(chan->global_identifier), chan);
  146. channel_mark_local(chan);
  147. } else {
  148. log_debug(LD_CHANNEL,
  149. "Marking new outgoing channel " U64_FORMAT " at %p as remote",
  150. U64_PRINTF_ARG(chan->global_identifier), chan);
  151. channel_mark_remote(chan);
  152. }
  153. channel_mark_outgoing(chan);
  154. /* Set up or_connection stuff */
  155. tlschan->conn = connection_or_connect(addr, port, id_digest, tlschan);
  156. /* connection_or_connect() will fill in tlschan->conn */
  157. if (!(tlschan->conn)) {
  158. chan->reason_for_closing = CHANNEL_CLOSE_FOR_ERROR;
  159. channel_change_state(chan, CHANNEL_STATE_ERROR);
  160. goto err;
  161. }
  162. log_debug(LD_CHANNEL,
  163. "Got orconn %p for channel with global id " U64_FORMAT,
  164. tlschan->conn, U64_PRINTF_ARG(chan->global_identifier));
  165. goto done;
  166. err:
  167. circuitmux_free(chan->cmux);
  168. tor_free(tlschan);
  169. chan = NULL;
  170. done:
  171. /* If we got one, we should register it */
  172. if (chan) channel_register(chan);
  173. return chan;
  174. }
  175. /**
  176. * Return the current channel_tls_t listener
  177. *
  178. * Returns the current channel listener for incoming TLS connections, or
  179. * NULL if none has been established
  180. */
  181. channel_listener_t *
  182. channel_tls_get_listener(void)
  183. {
  184. return channel_tls_listener;
  185. }
  186. /**
  187. * Start a channel_tls_t listener if necessary
  188. *
  189. * Return the current channel_tls_t listener, or start one if we haven't yet,
  190. * and return that.
  191. */
  192. channel_listener_t *
  193. channel_tls_start_listener(void)
  194. {
  195. channel_listener_t *listener;
  196. if (!channel_tls_listener) {
  197. listener = tor_malloc_zero(sizeof(*listener));
  198. channel_init_listener(listener);
  199. listener->state = CHANNEL_LISTENER_STATE_LISTENING;
  200. listener->close = channel_tls_listener_close_method;
  201. listener->describe_transport =
  202. channel_tls_listener_describe_transport_method;
  203. channel_tls_listener = listener;
  204. log_debug(LD_CHANNEL,
  205. "Starting TLS channel listener %p with global id " U64_FORMAT,
  206. listener, U64_PRINTF_ARG(listener->global_identifier));
  207. channel_listener_register(listener);
  208. } else listener = channel_tls_listener;
  209. return listener;
  210. }
  211. /**
  212. * Free everything on shutdown
  213. *
  214. * Not much to do here, since channel_free_all() takes care of a lot, but let's
  215. * get rid of the listener.
  216. */
  217. void
  218. channel_tls_free_all(void)
  219. {
  220. channel_listener_t *old_listener = NULL;
  221. log_debug(LD_CHANNEL,
  222. "Shutting down TLS channels...");
  223. if (channel_tls_listener) {
  224. /*
  225. * When we close it, channel_tls_listener will get nulled out, so save
  226. * a pointer so we can free it.
  227. */
  228. old_listener = channel_tls_listener;
  229. log_debug(LD_CHANNEL,
  230. "Closing channel_tls_listener with ID " U64_FORMAT
  231. " at %p.",
  232. U64_PRINTF_ARG(old_listener->global_identifier),
  233. old_listener);
  234. channel_listener_unregister(old_listener);
  235. channel_listener_mark_for_close(old_listener);
  236. channel_listener_free(old_listener);
  237. tor_assert(channel_tls_listener == NULL);
  238. }
  239. log_debug(LD_CHANNEL,
  240. "Done shutting down TLS channels");
  241. }
  242. /**
  243. * Create a new channel around an incoming or_connection_t
  244. */
  245. channel_t *
  246. channel_tls_handle_incoming(or_connection_t *orconn)
  247. {
  248. channel_tls_t *tlschan = tor_malloc_zero(sizeof(*tlschan));
  249. channel_t *chan = &(tlschan->base_);
  250. tor_assert(orconn);
  251. tor_assert(!(orconn->chan));
  252. channel_tls_common_init(tlschan);
  253. /* Link the channel and orconn to each other */
  254. tlschan->conn = orconn;
  255. orconn->chan = tlschan;
  256. if (is_local_addr(&(TO_CONN(orconn)->addr))) {
  257. log_debug(LD_CHANNEL,
  258. "Marking new incoming channel " U64_FORMAT " at %p as local",
  259. U64_PRINTF_ARG(chan->global_identifier), chan);
  260. channel_mark_local(chan);
  261. } else {
  262. log_debug(LD_CHANNEL,
  263. "Marking new incoming channel " U64_FORMAT " at %p as remote",
  264. U64_PRINTF_ARG(chan->global_identifier), chan);
  265. channel_mark_remote(chan);
  266. }
  267. channel_mark_incoming(chan);
  268. /* Register it */
  269. channel_register(chan);
  270. return chan;
  271. }
  272. /*********
  273. * Casts *
  274. ********/
  275. /**
  276. * Cast a channel_tls_t to a channel_t.
  277. */
  278. channel_t *
  279. channel_tls_to_base(channel_tls_t *tlschan)
  280. {
  281. if (!tlschan) return NULL;
  282. return &(tlschan->base_);
  283. }
  284. /**
  285. * Cast a channel_t to a channel_tls_t, with appropriate type-checking
  286. * asserts.
  287. */
  288. channel_tls_t *
  289. channel_tls_from_base(channel_t *chan)
  290. {
  291. if (!chan) return NULL;
  292. tor_assert(chan->magic == TLS_CHAN_MAGIC);
  293. return (channel_tls_t *)(chan);
  294. }
  295. /********************************************
  296. * Method implementations for channel_tls_t *
  297. *******************************************/
  298. /**
  299. * Close a channel_tls_t
  300. *
  301. * This implements the close method for channel_tls_t
  302. */
  303. static void
  304. channel_tls_close_method(channel_t *chan)
  305. {
  306. channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan);
  307. tor_assert(tlschan);
  308. if (tlschan->conn) connection_or_close_normally(tlschan->conn, 1);
  309. else {
  310. /* Weird - we'll have to change the state ourselves, I guess */
  311. log_info(LD_CHANNEL,
  312. "Tried to close channel_tls_t %p with NULL conn",
  313. tlschan);
  314. channel_change_state(chan, CHANNEL_STATE_ERROR);
  315. }
  316. }
  317. /**
  318. * Describe the transport for a channel_tls_t
  319. *
  320. * This returns the string "TLS channel on connection <id>" to the upper
  321. * layer.
  322. */
  323. static const char *
  324. channel_tls_describe_transport_method(channel_t *chan)
  325. {
  326. static char *buf = NULL;
  327. uint64_t id;
  328. channel_tls_t *tlschan;
  329. const char *rv = NULL;
  330. tor_assert(chan);
  331. tlschan = BASE_CHAN_TO_TLS(chan);
  332. if (tlschan->conn) {
  333. id = TO_CONN(tlschan->conn)->global_identifier;
  334. if (buf) tor_free(buf);
  335. tor_asprintf(&buf,
  336. "TLS channel (connection " U64_FORMAT ")",
  337. U64_PRINTF_ARG(id));
  338. rv = buf;
  339. } else {
  340. rv = "TLS channel (no connection)";
  341. }
  342. return rv;
  343. }
  344. /**
  345. * Free a channel_tls_t
  346. *
  347. * This is called by the generic channel layer when freeing a channel_tls_t;
  348. * this happens either on a channel which has already reached
  349. * CHANNEL_STATE_CLOSED or CHANNEL_STATE_ERROR from channel_run_cleanup() or
  350. * on shutdown from channel_free_all(). In the latter case we might still
  351. * have an orconn active (which connection_free_all() will get to later),
  352. * so we should null out its channel pointer now.
  353. */
  354. static void
  355. channel_tls_free_method(channel_t *chan)
  356. {
  357. channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan);
  358. tor_assert(tlschan);
  359. if (tlschan->conn) {
  360. tlschan->conn->chan = NULL;
  361. tlschan->conn = NULL;
  362. }
  363. }
  364. /**
  365. * Get an estimate of the average TLS overhead for the upper layer
  366. */
  367. static double
  368. channel_tls_get_overhead_estimate_method(channel_t *chan)
  369. {
  370. double overhead = 1.0;
  371. channel_tls_t *tlschan = BASE_CHAN_TO_TLS(chan);
  372. tor_assert(tlschan);
  373. tor_assert(tlschan->conn);
  374. /* Just return 1.0f if we don't have sensible data */
  375. if (tlschan->conn->bytes_xmitted > 0 &&
  376. tlschan->conn->bytes_xmitted_by_tls >=
  377. tlschan->conn->bytes_xmitted) {
  378. overhead = ((double)(tlschan->conn->bytes_xmitted_by_tls)) /
  379. ((double)(tlschan->conn->bytes_xmitted));
  380. /*
  381. * Never estimate more than 2.0; otherwise we get silly large estimates
  382. * at the very start of a new TLS connection.
  383. */
  384. if (overhead > 2.0)
  385. overhead = 2.0;
  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_addr_to_str_dup(&(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_addr_to_str_dup(&(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. tor_assert(chan);
  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. * The channel layer itself decides whether the cell should be queued or
  845. * can be handed off immediately to the upper-layer code. It is responsible
  846. * for copying in the case that it queues; we merely pass pointers through
  847. * which we get from connection_or_process_cells_from_inbuf().
  848. */
  849. void
  850. channel_tls_handle_cell(cell_t *cell, or_connection_t *conn)
  851. {
  852. channel_tls_t *chan;
  853. int handshaking;
  854. #ifdef KEEP_TIMING_STATS
  855. #define PROCESS_CELL(tp, cl, cn) STMT_BEGIN { \
  856. ++num ## tp; \
  857. channel_tls_time_process_cell(cl, cn, & tp ## time , \
  858. channel_tls_process_ ## tp ## _cell); \
  859. } STMT_END
  860. #else
  861. #define PROCESS_CELL(tp, cl, cn) channel_tls_process_ ## tp ## _cell(cl, cn)
  862. #endif
  863. tor_assert(cell);
  864. tor_assert(conn);
  865. chan = conn->chan;
  866. if (!chan) {
  867. log_warn(LD_CHANNEL,
  868. "Got a cell_t on an OR connection with no channel");
  869. return;
  870. }
  871. handshaking = (TO_CONN(conn)->state != OR_CONN_STATE_OPEN);
  872. if (conn->base_.marked_for_close)
  873. return;
  874. /* Reject all but VERSIONS and NETINFO when handshaking. */
  875. /* (VERSIONS should actually be impossible; it's variable-length.) */
  876. if (handshaking && cell->command != CELL_VERSIONS &&
  877. cell->command != CELL_NETINFO) {
  878. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  879. "Received unexpected cell command %d in chan state %s / "
  880. "conn state %s; closing the connection.",
  881. (int)cell->command,
  882. channel_state_to_string(TLS_CHAN_TO_BASE(chan)->state),
  883. conn_state_to_string(CONN_TYPE_OR, TO_CONN(conn)->state));
  884. connection_or_close_for_error(conn, 0);
  885. return;
  886. }
  887. if (conn->base_.state == OR_CONN_STATE_OR_HANDSHAKING_V3)
  888. or_handshake_state_record_cell(conn, conn->handshake_state, cell, 1);
  889. switch (cell->command) {
  890. case CELL_PADDING:
  891. ++stats_n_padding_cells_processed;
  892. /* do nothing */
  893. break;
  894. case CELL_VERSIONS:
  895. tor_fragile_assert();
  896. break;
  897. case CELL_NETINFO:
  898. ++stats_n_netinfo_cells_processed;
  899. PROCESS_CELL(netinfo, cell, chan);
  900. break;
  901. case CELL_CREATE:
  902. case CELL_CREATE_FAST:
  903. case CELL_CREATED:
  904. case CELL_CREATED_FAST:
  905. case CELL_RELAY:
  906. case CELL_RELAY_EARLY:
  907. case CELL_DESTROY:
  908. case CELL_CREATE2:
  909. case CELL_CREATED2:
  910. /*
  911. * These are all transport independent and we pass them up through the
  912. * channel_t mechanism. They are ultimately handled in command.c.
  913. */
  914. channel_queue_cell(TLS_CHAN_TO_BASE(chan), cell);
  915. break;
  916. default:
  917. log_fn(LOG_INFO, LD_PROTOCOL,
  918. "Cell of unknown type (%d) received in channeltls.c. "
  919. "Dropping.",
  920. cell->command);
  921. break;
  922. }
  923. }
  924. /**
  925. * Handle an incoming variable-length cell on a channel_tls_t
  926. *
  927. * Process a <b>var_cell</b> that was just received on <b>conn</b>. Keep
  928. * internal statistics about how many of each cell we've processed so far
  929. * this second, and the total number of microseconds it took to
  930. * process each type of cell. All the var_cell commands are handshake-
  931. * related and live below the channel_t layer, so no variable-length
  932. * cells ever get delivered in the current implementation, but I've left
  933. * the mechanism in place for future use.
  934. *
  935. * If we were handing them off to the upper layer, the channel_t queueing
  936. * code would be responsible for memory management, and we'd just be passing
  937. * pointers through from connection_or_process_cells_from_inbuf(). That
  938. * caller always frees them after this function returns, so this function
  939. * should never free var_cell.
  940. */
  941. void
  942. channel_tls_handle_var_cell(var_cell_t *var_cell, or_connection_t *conn)
  943. {
  944. channel_tls_t *chan;
  945. #ifdef KEEP_TIMING_STATS
  946. /* how many of each cell have we seen so far this second? needs better
  947. * name. */
  948. static int num_versions = 0, num_certs = 0;
  949. static time_t current_second = 0; /* from previous calls to time */
  950. time_t now = time(NULL);
  951. if (current_second == 0) current_second = now;
  952. if (now > current_second) { /* the second has rolled over */
  953. /* print stats */
  954. log_info(LD_OR,
  955. "At end of second: %d versions (%d ms), %d certs (%d ms)",
  956. num_versions, versions_time / ((now - current_second) * 1000),
  957. num_certs, certs_time / ((now - current_second) * 1000));
  958. num_versions = num_certs = 0;
  959. versions_time = certs_time = 0;
  960. /* remember which second it is, for next time */
  961. current_second = now;
  962. }
  963. #endif
  964. tor_assert(var_cell);
  965. tor_assert(conn);
  966. chan = conn->chan;
  967. if (!chan) {
  968. log_warn(LD_CHANNEL,
  969. "Got a var_cell_t on an OR connection with no channel");
  970. return;
  971. }
  972. if (TO_CONN(conn)->marked_for_close)
  973. return;
  974. switch (TO_CONN(conn)->state) {
  975. case OR_CONN_STATE_OR_HANDSHAKING_V2:
  976. if (var_cell->command != CELL_VERSIONS) {
  977. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  978. "Received a cell with command %d in unexpected "
  979. "orconn state \"%s\" [%d], channel state \"%s\" [%d]; "
  980. "closing the connection.",
  981. (int)(var_cell->command),
  982. conn_state_to_string(CONN_TYPE_OR, TO_CONN(conn)->state),
  983. TO_CONN(conn)->state,
  984. channel_state_to_string(TLS_CHAN_TO_BASE(chan)->state),
  985. (int)(TLS_CHAN_TO_BASE(chan)->state));
  986. /*
  987. * The code in connection_or.c will tell channel_t to close for
  988. * error; it will go to CHANNEL_STATE_CLOSING, and then to
  989. * CHANNEL_STATE_ERROR when conn is closed.
  990. */
  991. connection_or_close_for_error(conn, 0);
  992. return;
  993. }
  994. break;
  995. case OR_CONN_STATE_TLS_HANDSHAKING:
  996. /* If we're using bufferevents, it's entirely possible for us to
  997. * notice "hey, data arrived!" before we notice "hey, the handshake
  998. * finished!" And we need to be accepting both at once to handle both
  999. * the v2 and v3 handshakes. */
  1000. /* But that should be happening any longer've disabled bufferevents. */
  1001. tor_assert_nonfatal_unreached_once();
  1002. /* fall through */
  1003. case OR_CONN_STATE_TLS_SERVER_RENEGOTIATING:
  1004. if (!(command_allowed_before_handshake(var_cell->command))) {
  1005. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  1006. "Received a cell with command %d in unexpected "
  1007. "orconn state \"%s\" [%d], channel state \"%s\" [%d]; "
  1008. "closing the connection.",
  1009. (int)(var_cell->command),
  1010. conn_state_to_string(CONN_TYPE_OR, TO_CONN(conn)->state),
  1011. (int)(TO_CONN(conn)->state),
  1012. channel_state_to_string(TLS_CHAN_TO_BASE(chan)->state),
  1013. (int)(TLS_CHAN_TO_BASE(chan)->state));
  1014. /* see above comment about CHANNEL_STATE_ERROR */
  1015. connection_or_close_for_error(conn, 0);
  1016. return;
  1017. } else {
  1018. if (enter_v3_handshake_with_cell(var_cell, chan) < 0)
  1019. return;
  1020. }
  1021. break;
  1022. case OR_CONN_STATE_OR_HANDSHAKING_V3:
  1023. if (var_cell->command != CELL_AUTHENTICATE)
  1024. or_handshake_state_record_var_cell(conn, conn->handshake_state,
  1025. var_cell, 1);
  1026. break; /* Everything is allowed */
  1027. case OR_CONN_STATE_OPEN:
  1028. if (conn->link_proto < 3) {
  1029. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  1030. "Received a variable-length cell with command %d in orconn "
  1031. "state %s [%d], channel state %s [%d] with link protocol %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. (int)(conn->link_proto));
  1039. return;
  1040. }
  1041. break;
  1042. default:
  1043. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  1044. "Received var-length cell with command %d in unexpected "
  1045. "orconn state \"%s\" [%d], channel state \"%s\" [%d]; "
  1046. "ignoring it.",
  1047. (int)(var_cell->command),
  1048. conn_state_to_string(CONN_TYPE_OR, TO_CONN(conn)->state),
  1049. (int)(TO_CONN(conn)->state),
  1050. channel_state_to_string(TLS_CHAN_TO_BASE(chan)->state),
  1051. (int)(TLS_CHAN_TO_BASE(chan)->state));
  1052. return;
  1053. }
  1054. /* Now handle the cell */
  1055. switch (var_cell->command) {
  1056. case CELL_VERSIONS:
  1057. ++stats_n_versions_cells_processed;
  1058. PROCESS_CELL(versions, var_cell, chan);
  1059. break;
  1060. case CELL_VPADDING:
  1061. ++stats_n_vpadding_cells_processed;
  1062. /* Do nothing */
  1063. break;
  1064. case CELL_CERTS:
  1065. ++stats_n_certs_cells_processed;
  1066. PROCESS_CELL(certs, var_cell, chan);
  1067. break;
  1068. case CELL_AUTH_CHALLENGE:
  1069. ++stats_n_auth_challenge_cells_processed;
  1070. PROCESS_CELL(auth_challenge, var_cell, chan);
  1071. break;
  1072. case CELL_AUTHENTICATE:
  1073. ++stats_n_authenticate_cells_processed;
  1074. PROCESS_CELL(authenticate, var_cell, chan);
  1075. break;
  1076. case CELL_AUTHORIZE:
  1077. ++stats_n_authorize_cells_processed;
  1078. /* Ignored so far. */
  1079. break;
  1080. default:
  1081. log_fn(LOG_INFO, LD_PROTOCOL,
  1082. "Variable-length cell of unknown type (%d) received.",
  1083. (int)(var_cell->command));
  1084. break;
  1085. }
  1086. }
  1087. /**
  1088. * Update channel marks after connection_or.c has changed an address
  1089. *
  1090. * This is called from connection_or_init_conn_from_address() after the
  1091. * connection's _base.addr or real_addr fields have potentially been changed
  1092. * so we can recalculate the local mark. Notably, this happens when incoming
  1093. * connections are reverse-proxied and we only learn the real address of the
  1094. * remote router by looking it up in the consensus after we finish the
  1095. * handshake and know an authenticated identity digest.
  1096. */
  1097. void
  1098. channel_tls_update_marks(or_connection_t *conn)
  1099. {
  1100. channel_t *chan = NULL;
  1101. tor_assert(conn);
  1102. tor_assert(conn->chan);
  1103. chan = TLS_CHAN_TO_BASE(conn->chan);
  1104. if (is_local_addr(&(TO_CONN(conn)->addr))) {
  1105. if (!channel_is_local(chan)) {
  1106. log_debug(LD_CHANNEL,
  1107. "Marking channel " U64_FORMAT " at %p as local",
  1108. U64_PRINTF_ARG(chan->global_identifier), chan);
  1109. channel_mark_local(chan);
  1110. }
  1111. } else {
  1112. if (channel_is_local(chan)) {
  1113. log_debug(LD_CHANNEL,
  1114. "Marking channel " U64_FORMAT " at %p as remote",
  1115. U64_PRINTF_ARG(chan->global_identifier), chan);
  1116. channel_mark_remote(chan);
  1117. }
  1118. }
  1119. }
  1120. /**
  1121. * Check if this cell type is allowed before the handshake is finished
  1122. *
  1123. * Return true if <b>command</b> is a cell command that's allowed to start a
  1124. * V3 handshake.
  1125. */
  1126. static int
  1127. command_allowed_before_handshake(uint8_t command)
  1128. {
  1129. switch (command) {
  1130. case CELL_VERSIONS:
  1131. case CELL_VPADDING:
  1132. case CELL_AUTHORIZE:
  1133. return 1;
  1134. default:
  1135. return 0;
  1136. }
  1137. }
  1138. /**
  1139. * Start a V3 handshake on an incoming connection
  1140. *
  1141. * Called when we as a server receive an appropriate cell while waiting
  1142. * either for a cell or a TLS handshake. Set the connection's state to
  1143. * "handshaking_v3', initializes the or_handshake_state field as needed,
  1144. * and add the cell to the hash of incoming cells.)
  1145. */
  1146. static int
  1147. enter_v3_handshake_with_cell(var_cell_t *cell, channel_tls_t *chan)
  1148. {
  1149. int started_here = 0;
  1150. tor_assert(cell);
  1151. tor_assert(chan);
  1152. tor_assert(chan->conn);
  1153. started_here = connection_or_nonopen_was_started_here(chan->conn);
  1154. tor_assert(TO_CONN(chan->conn)->state == OR_CONN_STATE_TLS_HANDSHAKING ||
  1155. TO_CONN(chan->conn)->state ==
  1156. OR_CONN_STATE_TLS_SERVER_RENEGOTIATING);
  1157. if (started_here) {
  1158. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  1159. "Received a cell while TLS-handshaking, not in "
  1160. "OR_HANDSHAKING_V3, on a connection we originated.");
  1161. }
  1162. connection_or_block_renegotiation(chan->conn);
  1163. chan->conn->base_.state = OR_CONN_STATE_OR_HANDSHAKING_V3;
  1164. if (connection_init_or_handshake_state(chan->conn, started_here) < 0) {
  1165. connection_or_close_for_error(chan->conn, 0);
  1166. return -1;
  1167. }
  1168. or_handshake_state_record_var_cell(chan->conn,
  1169. chan->conn->handshake_state, cell, 1);
  1170. return 0;
  1171. }
  1172. /**
  1173. * Process a 'versions' cell.
  1174. *
  1175. * This function is called to handle an incoming VERSIONS cell; the current
  1176. * link protocol version must be 0 to indicate that no version has yet been
  1177. * negotiated. We compare the versions in the cell to the list of versions
  1178. * we support, pick the highest version we have in common, and continue the
  1179. * negotiation from there.
  1180. */
  1181. static void
  1182. channel_tls_process_versions_cell(var_cell_t *cell, channel_tls_t *chan)
  1183. {
  1184. int highest_supported_version = 0;
  1185. int started_here = 0;
  1186. tor_assert(cell);
  1187. tor_assert(chan);
  1188. tor_assert(chan->conn);
  1189. if ((cell->payload_len % 2) == 1) {
  1190. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  1191. "Received a VERSION cell with odd payload length %d; "
  1192. "closing connection.",cell->payload_len);
  1193. connection_or_close_for_error(chan->conn, 0);
  1194. return;
  1195. }
  1196. started_here = connection_or_nonopen_was_started_here(chan->conn);
  1197. if (chan->conn->link_proto != 0 ||
  1198. (chan->conn->handshake_state &&
  1199. chan->conn->handshake_state->received_versions)) {
  1200. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  1201. "Received a VERSIONS cell on a connection with its version "
  1202. "already set to %d; dropping",
  1203. (int)(chan->conn->link_proto));
  1204. return;
  1205. }
  1206. switch (chan->conn->base_.state)
  1207. {
  1208. case OR_CONN_STATE_OR_HANDSHAKING_V2:
  1209. case OR_CONN_STATE_OR_HANDSHAKING_V3:
  1210. break;
  1211. case OR_CONN_STATE_TLS_HANDSHAKING:
  1212. case OR_CONN_STATE_TLS_SERVER_RENEGOTIATING:
  1213. default:
  1214. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  1215. "VERSIONS cell while in unexpected state");
  1216. return;
  1217. }
  1218. tor_assert(chan->conn->handshake_state);
  1219. {
  1220. int i;
  1221. const uint8_t *cp = cell->payload;
  1222. for (i = 0; i < cell->payload_len / 2; ++i, cp += 2) {
  1223. uint16_t v = ntohs(get_uint16(cp));
  1224. if (is_or_protocol_version_known(v) && v > highest_supported_version)
  1225. highest_supported_version = v;
  1226. }
  1227. }
  1228. if (!highest_supported_version) {
  1229. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  1230. "Couldn't find a version in common between my version list and the "
  1231. "list in the VERSIONS cell; closing connection.");
  1232. connection_or_close_for_error(chan->conn, 0);
  1233. return;
  1234. } else if (highest_supported_version == 1) {
  1235. /* Negotiating version 1 makes no sense, since version 1 has no VERSIONS
  1236. * cells. */
  1237. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  1238. "Used version negotiation protocol to negotiate a v1 connection. "
  1239. "That's crazily non-compliant. Closing connection.");
  1240. connection_or_close_for_error(chan->conn, 0);
  1241. return;
  1242. } else if (highest_supported_version < 3 &&
  1243. chan->conn->base_.state == OR_CONN_STATE_OR_HANDSHAKING_V3) {
  1244. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  1245. "Negotiated link protocol 2 or lower after doing a v3 TLS "
  1246. "handshake. Closing connection.");
  1247. connection_or_close_for_error(chan->conn, 0);
  1248. return;
  1249. } else if (highest_supported_version != 2 &&
  1250. chan->conn->base_.state == OR_CONN_STATE_OR_HANDSHAKING_V2) {
  1251. /* XXXX This should eventually be a log_protocol_warn */
  1252. log_fn(LOG_WARN, LD_OR,
  1253. "Negotiated link with non-2 protocol after doing a v2 TLS "
  1254. "handshake with %s. Closing connection.",
  1255. fmt_addr(&chan->conn->base_.addr));
  1256. connection_or_close_for_error(chan->conn, 0);
  1257. return;
  1258. }
  1259. rep_hist_note_negotiated_link_proto(highest_supported_version, started_here);
  1260. chan->conn->link_proto = highest_supported_version;
  1261. chan->conn->handshake_state->received_versions = 1;
  1262. if (chan->conn->link_proto == 2) {
  1263. log_info(LD_OR,
  1264. "Negotiated version %d with %s:%d; sending NETINFO.",
  1265. highest_supported_version,
  1266. safe_str_client(chan->conn->base_.address),
  1267. chan->conn->base_.port);
  1268. if (connection_or_send_netinfo(chan->conn) < 0) {
  1269. connection_or_close_for_error(chan->conn, 0);
  1270. return;
  1271. }
  1272. } else {
  1273. const int send_versions = !started_here;
  1274. /* If we want to authenticate, send a CERTS cell */
  1275. const int send_certs = !started_here || public_server_mode(get_options());
  1276. /* If we're a host that got a connection, ask for authentication. */
  1277. const int send_chall = !started_here;
  1278. /* If our certs cell will authenticate us, we can send a netinfo cell
  1279. * right now. */
  1280. const int send_netinfo = !started_here;
  1281. const int send_any =
  1282. send_versions || send_certs || send_chall || send_netinfo;
  1283. tor_assert(chan->conn->link_proto >= 3);
  1284. log_info(LD_OR,
  1285. "Negotiated version %d with %s:%d; %s%s%s%s%s",
  1286. highest_supported_version,
  1287. safe_str_client(chan->conn->base_.address),
  1288. chan->conn->base_.port,
  1289. send_any ? "Sending cells:" : "Waiting for CERTS cell",
  1290. send_versions ? " VERSIONS" : "",
  1291. send_certs ? " CERTS" : "",
  1292. send_chall ? " AUTH_CHALLENGE" : "",
  1293. send_netinfo ? " NETINFO" : "");
  1294. #ifdef DISABLE_V3_LINKPROTO_SERVERSIDE
  1295. if (1) {
  1296. connection_or_close_normally(chan->conn, 1);
  1297. return;
  1298. }
  1299. #endif
  1300. if (send_versions) {
  1301. if (connection_or_send_versions(chan->conn, 1) < 0) {
  1302. log_warn(LD_OR, "Couldn't send versions cell");
  1303. connection_or_close_for_error(chan->conn, 0);
  1304. return;
  1305. }
  1306. }
  1307. /* We set this after sending the verions cell. */
  1308. /*XXXXX symbolic const.*/
  1309. chan->base_.wide_circ_ids =
  1310. chan->conn->link_proto >= MIN_LINK_PROTO_FOR_WIDE_CIRC_IDS;
  1311. chan->conn->wide_circ_ids = chan->base_.wide_circ_ids;
  1312. if (send_certs) {
  1313. if (connection_or_send_certs_cell(chan->conn) < 0) {
  1314. log_warn(LD_OR, "Couldn't send certs cell");
  1315. connection_or_close_for_error(chan->conn, 0);
  1316. return;
  1317. }
  1318. }
  1319. if (send_chall) {
  1320. if (connection_or_send_auth_challenge_cell(chan->conn) < 0) {
  1321. log_warn(LD_OR, "Couldn't send auth_challenge cell");
  1322. connection_or_close_for_error(chan->conn, 0);
  1323. return;
  1324. }
  1325. }
  1326. if (send_netinfo) {
  1327. if (connection_or_send_netinfo(chan->conn) < 0) {
  1328. log_warn(LD_OR, "Couldn't send netinfo cell");
  1329. connection_or_close_for_error(chan->conn, 0);
  1330. return;
  1331. }
  1332. }
  1333. }
  1334. }
  1335. /**
  1336. * Process a 'netinfo' cell
  1337. *
  1338. * This function is called to handle an incoming NETINFO cell; read and act
  1339. * on its contents, and set the connection state to "open".
  1340. */
  1341. static void
  1342. channel_tls_process_netinfo_cell(cell_t *cell, channel_tls_t *chan)
  1343. {
  1344. time_t timestamp;
  1345. uint8_t my_addr_type;
  1346. uint8_t my_addr_len;
  1347. const uint8_t *my_addr_ptr;
  1348. const uint8_t *cp, *end;
  1349. uint8_t n_other_addrs;
  1350. time_t now = time(NULL);
  1351. long apparent_skew = 0;
  1352. tor_addr_t my_apparent_addr = TOR_ADDR_NULL;
  1353. tor_assert(cell);
  1354. tor_assert(chan);
  1355. tor_assert(chan->conn);
  1356. if (chan->conn->link_proto < 2) {
  1357. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  1358. "Received a NETINFO cell on %s connection; dropping.",
  1359. chan->conn->link_proto == 0 ? "non-versioned" : "a v1");
  1360. return;
  1361. }
  1362. if (chan->conn->base_.state != OR_CONN_STATE_OR_HANDSHAKING_V2 &&
  1363. chan->conn->base_.state != OR_CONN_STATE_OR_HANDSHAKING_V3) {
  1364. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  1365. "Received a NETINFO cell on non-handshaking connection; dropping.");
  1366. return;
  1367. }
  1368. tor_assert(chan->conn->handshake_state &&
  1369. chan->conn->handshake_state->received_versions);
  1370. if (chan->conn->base_.state == OR_CONN_STATE_OR_HANDSHAKING_V3) {
  1371. tor_assert(chan->conn->link_proto >= 3);
  1372. if (chan->conn->handshake_state->started_here) {
  1373. if (!(chan->conn->handshake_state->authenticated)) {
  1374. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  1375. "Got a NETINFO cell from server, "
  1376. "but no authentication. Closing the connection.");
  1377. connection_or_close_for_error(chan->conn, 0);
  1378. return;
  1379. }
  1380. } else {
  1381. /* we're the server. If the client never authenticated, we have
  1382. some housekeeping to do.*/
  1383. if (!(chan->conn->handshake_state->authenticated)) {
  1384. tor_assert(tor_digest_is_zero(
  1385. (const char*)(chan->conn->handshake_state->
  1386. authenticated_peer_id)));
  1387. channel_set_circid_type(TLS_CHAN_TO_BASE(chan), NULL,
  1388. chan->conn->link_proto < MIN_LINK_PROTO_FOR_WIDE_CIRC_IDS);
  1389. connection_or_init_conn_from_address(chan->conn,
  1390. &(chan->conn->base_.addr),
  1391. chan->conn->base_.port,
  1392. (const char*)(chan->conn->handshake_state->
  1393. authenticated_peer_id),
  1394. 0);
  1395. }
  1396. }
  1397. }
  1398. /* Decode the cell. */
  1399. timestamp = ntohl(get_uint32(cell->payload));
  1400. if (labs(now - chan->conn->handshake_state->sent_versions_at) < 180) {
  1401. apparent_skew = now - timestamp;
  1402. }
  1403. my_addr_type = (uint8_t) cell->payload[4];
  1404. my_addr_len = (uint8_t) cell->payload[5];
  1405. my_addr_ptr = (uint8_t*) cell->payload + 6;
  1406. end = cell->payload + CELL_PAYLOAD_SIZE;
  1407. cp = cell->payload + 6 + my_addr_len;
  1408. /* We used to check:
  1409. * if (my_addr_len >= CELL_PAYLOAD_SIZE - 6) {
  1410. *
  1411. * This is actually never going to happen, since my_addr_len is at most 255,
  1412. * and CELL_PAYLOAD_LEN - 6 is 503. So we know that cp is < end. */
  1413. if (my_addr_type == RESOLVED_TYPE_IPV4 && my_addr_len == 4) {
  1414. tor_addr_from_ipv4n(&my_apparent_addr, get_uint32(my_addr_ptr));
  1415. } else if (my_addr_type == RESOLVED_TYPE_IPV6 && my_addr_len == 16) {
  1416. tor_addr_from_ipv6_bytes(&my_apparent_addr, (const char *) my_addr_ptr);
  1417. }
  1418. n_other_addrs = (uint8_t) *cp++;
  1419. while (n_other_addrs && cp < end-2) {
  1420. /* Consider all the other addresses; if any matches, this connection is
  1421. * "canonical." */
  1422. tor_addr_t addr;
  1423. const uint8_t *next =
  1424. decode_address_from_payload(&addr, cp, (int)(end-cp));
  1425. if (next == NULL) {
  1426. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  1427. "Bad address in netinfo cell; closing connection.");
  1428. connection_or_close_for_error(chan->conn, 0);
  1429. return;
  1430. }
  1431. if (tor_addr_eq(&addr, &(chan->conn->real_addr))) {
  1432. connection_or_set_canonical(chan->conn, 1);
  1433. break;
  1434. }
  1435. cp = next;
  1436. --n_other_addrs;
  1437. }
  1438. /* Act on apparent skew. */
  1439. /** Warn when we get a netinfo skew with at least this value. */
  1440. #define NETINFO_NOTICE_SKEW 3600
  1441. if (labs(apparent_skew) > NETINFO_NOTICE_SKEW &&
  1442. router_get_by_id_digest(chan->conn->identity_digest)) {
  1443. int trusted = router_digest_is_trusted_dir(chan->conn->identity_digest);
  1444. clock_skew_warning(TO_CONN(chan->conn), apparent_skew, trusted, LD_GENERAL,
  1445. "NETINFO cell", "OR");
  1446. }
  1447. /* XXX maybe act on my_apparent_addr, if the source is sufficiently
  1448. * trustworthy. */
  1449. if (! chan->conn->handshake_state->sent_netinfo) {
  1450. /* If we were prepared to authenticate, but we never got an AUTH_CHALLENGE
  1451. * cell, then we would not previously have sent a NETINFO cell. Do so
  1452. * now. */
  1453. if (connection_or_send_netinfo(chan->conn) < 0) {
  1454. connection_or_close_for_error(chan->conn, 0);
  1455. return;
  1456. }
  1457. }
  1458. if (connection_or_set_state_open(chan->conn) < 0) {
  1459. log_fn(LOG_PROTOCOL_WARN, LD_OR,
  1460. "Got good NETINFO cell from %s:%d; but "
  1461. "was unable to make the OR connection become open.",
  1462. safe_str_client(chan->conn->base_.address),
  1463. chan->conn->base_.port);
  1464. connection_or_close_for_error(chan->conn, 0);
  1465. } else {
  1466. log_info(LD_OR,
  1467. "Got good NETINFO cell from %s:%d; OR connection is now "
  1468. "open, using protocol version %d. Its ID digest is %s. "
  1469. "Our address is apparently %s.",
  1470. safe_str_client(chan->conn->base_.address),
  1471. chan->conn->base_.port,
  1472. (int)(chan->conn->link_proto),
  1473. hex_str(TLS_CHAN_TO_BASE(chan)->identity_digest,
  1474. DIGEST_LEN),
  1475. tor_addr_is_null(&my_apparent_addr) ?
  1476. "<none>" : fmt_and_decorate_addr(&my_apparent_addr));
  1477. }
  1478. assert_connection_ok(TO_CONN(chan->conn),time(NULL));
  1479. }
  1480. /** Types of certificates that we know how to parse from CERTS cells. Each
  1481. * type corresponds to a different encoding format. */
  1482. typedef enum cert_encoding_t {
  1483. CERT_ENCODING_UNKNOWN, /**< We don't recognize this. */
  1484. CERT_ENCODING_X509, /**< It's an RSA key, signed with RSA, encoded in x509.
  1485. * (Actually, it might not be RSA. We test that later.) */
  1486. CERT_ENCODING_ED25519, /**< It's something signed with an Ed25519 key,
  1487. * encoded asa a tor_cert_t.*/
  1488. CERT_ENCODING_RSA_CROSSCERT, /**< It's an Ed key signed with an RSA key. */
  1489. } cert_encoding_t;
  1490. /**
  1491. * Given one of the certificate type codes used in a CERTS cell,
  1492. * return the corresponding cert_encoding_t that we should use to parse
  1493. * the certificate.
  1494. */
  1495. static cert_encoding_t
  1496. certs_cell_typenum_to_cert_type(int typenum)
  1497. {
  1498. switch (typenum) {
  1499. case CERTTYPE_RSA1024_ID_LINK:
  1500. case CERTTYPE_RSA1024_ID_ID:
  1501. case CERTTYPE_RSA1024_ID_AUTH:
  1502. return CERT_ENCODING_X509;
  1503. case CERTTYPE_ED_ID_SIGN:
  1504. case CERTTYPE_ED_SIGN_LINK:
  1505. case CERTTYPE_ED_SIGN_AUTH:
  1506. return CERT_ENCODING_ED25519;
  1507. case CERTTYPE_RSA1024_ID_EDID:
  1508. return CERT_ENCODING_RSA_CROSSCERT;
  1509. default:
  1510. return CERT_ENCODING_UNKNOWN;
  1511. }
  1512. }
  1513. /**
  1514. * Process a CERTS cell from a channel.
  1515. *
  1516. * This function is called to process an incoming CERTS cell on a
  1517. * channel_tls_t:
  1518. *
  1519. * If the other side should not have sent us a CERTS cell, or the cell is
  1520. * malformed, or it is supposed to authenticate the TLS key but it doesn't,
  1521. * then mark the connection.
  1522. *
  1523. * If the cell has a good cert chain and we're doing a v3 handshake, then
  1524. * store the certificates in or_handshake_state. If this is the client side
  1525. * of the connection, we then authenticate the server or mark the connection.
  1526. * If it's the server side, wait for an AUTHENTICATE cell.
  1527. */
  1528. STATIC void
  1529. channel_tls_process_certs_cell(var_cell_t *cell, channel_tls_t *chan)
  1530. {
  1531. #define MAX_CERT_TYPE_WANTED CERTTYPE_RSA1024_ID_EDID
  1532. /* These arrays will be sparse, since a cert type can be at most one
  1533. * of ed/x509 */
  1534. tor_x509_cert_t *x509_certs[MAX_CERT_TYPE_WANTED + 1];
  1535. tor_cert_t *ed_certs[MAX_CERT_TYPE_WANTED + 1];
  1536. rsa_ed_crosscert_t *rsa_crosscert = NULL;
  1537. int n_certs, i;
  1538. certs_cell_t *cc = NULL;
  1539. int send_netinfo = 0;
  1540. memset(x509_certs, 0, sizeof(x509_certs));
  1541. memset(ed_certs, 0, sizeof(ed_certs));
  1542. tor_assert(cell);
  1543. tor_assert(chan);
  1544. tor_assert(chan->conn);
  1545. #define ERR(s) \
  1546. do { \
  1547. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, \
  1548. "Received a bad CERTS cell from %s:%d: %s", \
  1549. safe_str(chan->conn->base_.address), \
  1550. chan->conn->base_.port, (s)); \
  1551. connection_or_close_for_error(chan->conn, 0); \
  1552. goto err; \
  1553. } while (0)
  1554. if (chan->conn->base_.state != OR_CONN_STATE_OR_HANDSHAKING_V3)
  1555. ERR("We're not doing a v3 handshake!");
  1556. if (chan->conn->link_proto < 3)
  1557. ERR("We're not using link protocol >= 3");
  1558. if (chan->conn->handshake_state->received_certs_cell)
  1559. ERR("We already got one");
  1560. if (chan->conn->handshake_state->authenticated) {
  1561. /* Should be unreachable, but let's make sure. */
  1562. ERR("We're already authenticated!");
  1563. }
  1564. if (cell->payload_len < 1)
  1565. ERR("It had no body");
  1566. if (cell->circ_id)
  1567. ERR("It had a nonzero circuit ID");
  1568. if (certs_cell_parse(&cc, cell->payload, cell->payload_len) < 0)
  1569. ERR("It couldn't be parsed.");
  1570. n_certs = cc->n_certs;
  1571. for (i = 0; i < n_certs; ++i) {
  1572. certs_cell_cert_t *c = certs_cell_get_certs(cc, i);
  1573. uint16_t cert_type = c->cert_type;
  1574. uint16_t cert_len = c->cert_len;
  1575. uint8_t *cert_body = certs_cell_cert_getarray_body(c);
  1576. if (cert_type > MAX_CERT_TYPE_WANTED)
  1577. continue;
  1578. const cert_encoding_t ct = certs_cell_typenum_to_cert_type(cert_type);
  1579. switch (ct) {
  1580. default:
  1581. case CERT_ENCODING_UNKNOWN:
  1582. break;
  1583. case CERT_ENCODING_X509: {
  1584. tor_x509_cert_t *x509_cert = tor_x509_cert_decode(cert_body, cert_len);
  1585. if (!x509_cert) {
  1586. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  1587. "Received undecodable certificate in CERTS cell from %s:%d",
  1588. safe_str(chan->conn->base_.address),
  1589. chan->conn->base_.port);
  1590. } else {
  1591. if (x509_certs[cert_type]) {
  1592. tor_x509_cert_free(x509_cert);
  1593. ERR("Duplicate x509 certificate");
  1594. } else {
  1595. x509_certs[cert_type] = x509_cert;
  1596. }
  1597. }
  1598. break;
  1599. }
  1600. case CERT_ENCODING_ED25519: {
  1601. tor_cert_t *ed_cert = tor_cert_parse(cert_body, cert_len);
  1602. if (!ed_cert) {
  1603. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  1604. "Received undecodable Ed certificate in CERTS cell from %s:%d",
  1605. safe_str(chan->conn->base_.address),
  1606. chan->conn->base_.port);
  1607. } else {
  1608. if (ed_certs[cert_type]) {
  1609. tor_cert_free(ed_cert);
  1610. ERR("Duplicate Ed25519 certificate");
  1611. } else {
  1612. ed_certs[cert_type] = ed_cert;
  1613. }
  1614. }
  1615. break;
  1616. }
  1617. case CERT_ENCODING_RSA_CROSSCERT: {
  1618. rsa_ed_crosscert_t *cc_cert = NULL;
  1619. ssize_t n = rsa_ed_crosscert_parse(&cc_cert, cert_body, cert_len);
  1620. if (n != cert_len) {
  1621. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,
  1622. "Received unparseable RS1024-Ed25519 crosscert "
  1623. " in CERTS cell from %s:%d",
  1624. safe_str(chan->conn->base_.address),
  1625. chan->conn->base_.port);
  1626. } else {
  1627. if (rsa_crosscert) {
  1628. rsa_ed_crosscert_free(cc_cert);
  1629. ERR("Duplicate RSA->Ed25519 crosscert");
  1630. } else {
  1631. rsa_crosscert = cc_cert;
  1632. }
  1633. }
  1634. break;
  1635. }
  1636. }
  1637. }
  1638. tor_x509_cert_t *id_cert = x509_certs[OR_CERT_TYPE_ID_1024];
  1639. tor_x509_cert_t *auth_cert = x509_certs[OR_CERT_TYPE_AUTH_1024];
  1640. tor_x509_cert_t *link_cert = x509_certs[OR_CERT_TYPE_TLS_LINK];
  1641. chan->conn->handshake_state->certs->auth_cert = auth_cert;
  1642. chan->conn->handshake_state->certs->link_cert = link_cert;
  1643. chan->conn->handshake_state->certs->id_cert = id_cert;
  1644. x509_certs[OR_CERT_TYPE_ID_1024] =
  1645. x509_certs[OR_CERT_TYPE_AUTH_1024] =
  1646. x509_certs[OR_CERT_TYPE_TLS_LINK] = NULL;
  1647. int severity;
  1648. /* Note that this warns more loudly about time and validity if we were
  1649. * _trying_ to connect to an authority, not necessarily if we _did_ connect
  1650. * to one. */
  1651. if (chan->conn->handshake_state->started_here &&
  1652. router_digest_is_trusted_dir(TLS_CHAN_TO_BASE(chan)->identity_digest))
  1653. severity = LOG_WARN;
  1654. else
  1655. severity = LOG_PROTOCOL_WARN;
  1656. if (! or_handshake_certs_rsa_ok(severity,
  1657. chan->conn->handshake_state->certs,
  1658. chan->conn->tls,
  1659. time(NULL)))
  1660. ERR("Invalid RSA certificates!");
  1661. if (chan->conn->handshake_state->started_here) {
  1662. /* No more information is needed. */
  1663. chan->conn->handshake_state->authenticated = 1;
  1664. {
  1665. const common_digests_t *id_digests =
  1666. tor_x509_cert_get_id_digests(id_cert);
  1667. crypto_pk_t *identity_rcvd;
  1668. if (!id_digests)
  1669. ERR("Couldn't compute digests for key in ID cert");
  1670. identity_rcvd = tor_tls_cert_get_key(id_cert);
  1671. if (!identity_rcvd)
  1672. ERR("Internal error: Couldn't get RSA key from ID cert.");
  1673. memcpy(chan->conn->handshake_state->authenticated_peer_id,
  1674. id_digests->d[DIGEST_SHA1], DIGEST_LEN);
  1675. channel_set_circid_type(TLS_CHAN_TO_BASE(chan), identity_rcvd,
  1676. chan->conn->link_proto < MIN_LINK_PROTO_FOR_WIDE_CIRC_IDS);
  1677. crypto_pk_free(identity_rcvd);
  1678. }
  1679. if (connection_or_client_learned_peer_id(chan->conn,
  1680. chan->conn->handshake_state->authenticated_peer_id) < 0)
  1681. ERR("Problem setting or checking peer id");
  1682. log_info(LD_OR,
  1683. "Got some good certificates from %s:%d: Authenticated it.",
  1684. safe_str(chan->conn->base_.address), chan->conn->base_.port);
  1685. if (!public_server_mode(get_options())) {
  1686. /* If we initiated the connection and we are not a public server, we
  1687. * aren't planning to authenticate at all. At this point we know who we
  1688. * are talking to, so we can just send a netinfo now. */
  1689. send_netinfo = 1;
  1690. }
  1691. } else {
  1692. /* We can't call it authenticated till we see an AUTHENTICATE cell. */
  1693. log_info(LD_OR,
  1694. "Got some good certificates from %s:%d: "
  1695. "Waiting for AUTHENTICATE.",
  1696. safe_str(chan->conn->base_.address),
  1697. chan->conn->base_.port);
  1698. /* XXXX check more stuff? */
  1699. }
  1700. chan->conn->handshake_state->received_certs_cell = 1;
  1701. if (send_netinfo) {
  1702. if (connection_or_send_netinfo(chan->conn) < 0) {
  1703. log_warn(LD_OR, "Couldn't send netinfo cell");
  1704. connection_or_close_for_error(chan->conn, 0);
  1705. goto err;
  1706. }
  1707. }
  1708. err:
  1709. for (unsigned u = 0; u < ARRAY_LENGTH(x509_certs); ++u) {
  1710. tor_x509_cert_free(x509_certs[u]);
  1711. }
  1712. for (unsigned u = 0; u < ARRAY_LENGTH(ed_certs); ++u) {
  1713. tor_cert_free(ed_certs[u]);
  1714. }
  1715. rsa_ed_crosscert_free(rsa_crosscert);
  1716. certs_cell_free(cc);
  1717. #undef ERR
  1718. }
  1719. /**
  1720. * Process an AUTH_CHALLENGE cell from a channel_tls_t
  1721. *
  1722. * This function is called to handle an incoming AUTH_CHALLENGE cell on a
  1723. * channel_tls_t; if we weren't supposed to get one (for example, because we're
  1724. * not the originator of the channel), or it's ill-formed, or we aren't doing
  1725. * a v3 handshake, mark the channel. If the cell is well-formed but we don't
  1726. * want to authenticate, just drop it. If the cell is well-formed *and* we
  1727. * want to authenticate, send an AUTHENTICATE cell and then a NETINFO cell.
  1728. */
  1729. STATIC void
  1730. channel_tls_process_auth_challenge_cell(var_cell_t *cell, channel_tls_t *chan)
  1731. {
  1732. int n_types, i, use_type = -1;
  1733. auth_challenge_cell_t *ac = NULL;
  1734. tor_assert(cell);
  1735. tor_assert(chan);
  1736. tor_assert(chan->conn);
  1737. #define ERR(s) \
  1738. do { \
  1739. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, \
  1740. "Received a bad AUTH_CHALLENGE cell from %s:%d: %s", \
  1741. safe_str(chan->conn->base_.address), \
  1742. chan->conn->base_.port, (s)); \
  1743. connection_or_close_for_error(chan->conn, 0); \
  1744. goto done; \
  1745. } while (0)
  1746. if (chan->conn->base_.state != OR_CONN_STATE_OR_HANDSHAKING_V3)
  1747. ERR("We're not currently doing a v3 handshake");
  1748. if (chan->conn->link_proto < 3)
  1749. ERR("We're not using link protocol >= 3");
  1750. if (!(chan->conn->handshake_state->started_here))
  1751. ERR("We didn't originate this connection");
  1752. if (chan->conn->handshake_state->received_auth_challenge)
  1753. ERR("We already received one");
  1754. if (!(chan->conn->handshake_state->received_certs_cell))
  1755. ERR("We haven't gotten a CERTS cell yet");
  1756. if (cell->circ_id)
  1757. ERR("It had a nonzero circuit ID");
  1758. if (auth_challenge_cell_parse(&ac, cell->payload, cell->payload_len) < 0)
  1759. ERR("It was not well-formed.");
  1760. n_types = ac->n_methods;
  1761. /* Now see if there is an authentication type we can use */
  1762. for (i = 0; i < n_types; ++i) {
  1763. uint16_t authtype = auth_challenge_cell_get_methods(ac, i);
  1764. if (authtype == AUTHTYPE_RSA_SHA256_TLSSECRET)
  1765. use_type = authtype;
  1766. }
  1767. chan->conn->handshake_state->received_auth_challenge = 1;
  1768. if (! public_server_mode(get_options())) {
  1769. /* If we're not a public server then we don't want to authenticate on a
  1770. connection we originated, and we already sent a NETINFO cell when we
  1771. got the CERTS cell. We have nothing more to do. */
  1772. goto done;
  1773. }
  1774. if (use_type >= 0) {
  1775. log_info(LD_OR,
  1776. "Got an AUTH_CHALLENGE cell from %s:%d: Sending "
  1777. "authentication",
  1778. safe_str(chan->conn->base_.address),
  1779. chan->conn->base_.port);
  1780. if (connection_or_send_authenticate_cell(chan->conn, use_type) < 0) {
  1781. log_warn(LD_OR,
  1782. "Couldn't send authenticate cell");
  1783. connection_or_close_for_error(chan->conn, 0);
  1784. goto done;
  1785. }
  1786. } else {
  1787. log_info(LD_OR,
  1788. "Got an AUTH_CHALLENGE cell from %s:%d, but we don't "
  1789. "know any of its authentication types. Not authenticating.",
  1790. safe_str(chan->conn->base_.address),
  1791. chan->conn->base_.port);
  1792. }
  1793. if (connection_or_send_netinfo(chan->conn) < 0) {
  1794. log_warn(LD_OR, "Couldn't send netinfo cell");
  1795. connection_or_close_for_error(chan->conn, 0);
  1796. goto done;
  1797. }
  1798. done:
  1799. auth_challenge_cell_free(ac);
  1800. #undef ERR
  1801. }
  1802. /**
  1803. * Process an AUTHENTICATE cell from a channel_tls_t
  1804. *
  1805. * If it's ill-formed or we weren't supposed to get one or we're not doing a
  1806. * v3 handshake, then mark the connection. If it does not authenticate the
  1807. * other side of the connection successfully (because it isn't signed right,
  1808. * we didn't get a CERTS cell, etc) mark the connection. Otherwise, accept
  1809. * the identity of the router on the other side of the connection.
  1810. */
  1811. STATIC void
  1812. channel_tls_process_authenticate_cell(var_cell_t *cell, channel_tls_t *chan)
  1813. {
  1814. var_cell_t *expected_cell = NULL;
  1815. const uint8_t *auth;
  1816. int authlen;
  1817. const int authtype = 1; /* XXXX extend this */
  1818. int bodylen;
  1819. tor_assert(cell);
  1820. tor_assert(chan);
  1821. tor_assert(chan->conn);
  1822. #define ERR(s) \
  1823. do { \
  1824. log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, \
  1825. "Received a bad AUTHENTICATE cell from %s:%d: %s", \
  1826. safe_str(chan->conn->base_.address), \
  1827. chan->conn->base_.port, (s)); \
  1828. connection_or_close_for_error(chan->conn, 0); \
  1829. var_cell_free(expected_cell); \
  1830. return; \
  1831. } while (0)
  1832. if (chan->conn->base_.state != OR_CONN_STATE_OR_HANDSHAKING_V3)
  1833. ERR("We're not doing a v3 handshake");
  1834. if (chan->conn->link_proto < 3)
  1835. ERR("We're not using link protocol >= 3");
  1836. if (chan->conn->handshake_state->started_here)
  1837. ERR("We originated this connection");
  1838. if (chan->conn->handshake_state->received_authenticate)
  1839. ERR("We already got one!");
  1840. if (chan->conn->handshake_state->authenticated) {
  1841. /* Should be impossible given other checks */
  1842. ERR("The peer is already authenticated");
  1843. }
  1844. if (!(chan->conn->handshake_state->received_certs_cell))
  1845. ERR("We never got a certs cell");
  1846. if (chan->conn->handshake_state->certs->auth_cert == NULL)
  1847. ERR("We never got an authentication certificate");
  1848. if (chan->conn->handshake_state->certs->id_cert == NULL)
  1849. ERR("We never got an identity certificate");
  1850. if (cell->payload_len < 4)
  1851. ERR("Cell was way too short");
  1852. auth = cell->payload;
  1853. {
  1854. uint16_t type = ntohs(get_uint16(auth));
  1855. uint16_t len = ntohs(get_uint16(auth+2));
  1856. if (4 + len > cell->payload_len)
  1857. ERR("Authenticator was truncated");
  1858. if (type != authtype)
  1859. ERR("Authenticator type was not recognized");
  1860. auth += 4;
  1861. authlen = len;
  1862. }
  1863. if (authlen < V3_AUTH_BODY_LEN + 1)
  1864. ERR("Authenticator was too short");
  1865. expected_cell = connection_or_compute_authenticate_cell_body(
  1866. chan->conn, authtype, NULL, NULL, 1);
  1867. if (! expected_cell)
  1868. ERR("Couldn't compute expected AUTHENTICATE cell body");
  1869. if (authtype == AUTHTYPE_RSA_SHA256_TLSSECRET ||
  1870. authtype == AUTHTYPE_RSA_SHA256_RFC5705) {
  1871. bodylen = V3_AUTH_BODY_LEN;
  1872. } else {
  1873. bodylen = authlen - ED25519_SIG_LEN; /* XXXX DOCDOC */
  1874. }
  1875. if (expected_cell->payload_len != bodylen+4) {
  1876. ERR("Expected AUTHENTICATE cell body len not as expected.");
  1877. }
  1878. /* Length of random part. */
  1879. if (bodylen < 24)
  1880. ERR("Bodylen is somehow less than 24, which should really be impossible");
  1881. if (tor_memneq(expected_cell->payload+4, auth, bodylen-24))
  1882. ERR("Some field in the AUTHENTICATE cell body was not as expected");
  1883. {
  1884. crypto_pk_t *pk = tor_tls_cert_get_key(
  1885. chan->conn->handshake_state->certs->auth_cert);
  1886. char d[DIGEST256_LEN];
  1887. char *signed_data;
  1888. size_t keysize;
  1889. int signed_len;
  1890. if (!pk)
  1891. ERR("Internal error: couldn't get RSA key from AUTH cert.");
  1892. crypto_digest256(d, (char*)auth, V3_AUTH_BODY_LEN, DIGEST_SHA256);
  1893. keysize = crypto_pk_keysize(pk);
  1894. signed_data = tor_malloc(keysize);
  1895. signed_len = crypto_pk_public_checksig(pk, signed_data, keysize,
  1896. (char*)auth + V3_AUTH_BODY_LEN,
  1897. authlen - V3_AUTH_BODY_LEN);
  1898. crypto_pk_free(pk);
  1899. if (signed_len < 0) {
  1900. tor_free(signed_data);
  1901. ERR("Signature wasn't valid");
  1902. }
  1903. if (signed_len < DIGEST256_LEN) {
  1904. tor_free(signed_data);
  1905. ERR("Not enough data was signed");
  1906. }
  1907. /* Note that we deliberately allow *more* than DIGEST256_LEN bytes here,
  1908. * in case they're later used to hold a SHA3 digest or something. */
  1909. if (tor_memneq(signed_data, d, DIGEST256_LEN)) {
  1910. tor_free(signed_data);
  1911. ERR("Signature did not match data to be signed.");
  1912. }
  1913. tor_free(signed_data);
  1914. }
  1915. /* Okay, we are authenticated. */
  1916. chan->conn->handshake_state->received_authenticate = 1;
  1917. chan->conn->handshake_state->authenticated = 1;
  1918. chan->conn->handshake_state->digest_received_data = 0;
  1919. {
  1920. crypto_pk_t *identity_rcvd =
  1921. tor_tls_cert_get_key(chan->conn->handshake_state->certs->id_cert);
  1922. const common_digests_t *id_digests =
  1923. tor_x509_cert_get_id_digests(chan->conn->handshake_state->certs->id_cert);
  1924. /* This must exist; we checked key type when reading the cert. */
  1925. tor_assert(id_digests);
  1926. memcpy(chan->conn->handshake_state->authenticated_peer_id,
  1927. id_digests->d[DIGEST_SHA1], DIGEST_LEN);
  1928. channel_set_circid_type(TLS_CHAN_TO_BASE(chan), identity_rcvd,
  1929. chan->conn->link_proto < MIN_LINK_PROTO_FOR_WIDE_CIRC_IDS);
  1930. crypto_pk_free(identity_rcvd);
  1931. connection_or_init_conn_from_address(chan->conn,
  1932. &(chan->conn->base_.addr),
  1933. chan->conn->base_.port,
  1934. (const char*)(chan->conn->handshake_state->
  1935. authenticated_peer_id),
  1936. 0);
  1937. log_info(LD_OR,
  1938. "Got an AUTHENTICATE cell from %s:%d: Looks good.",
  1939. safe_str(chan->conn->base_.address),
  1940. chan->conn->base_.port);
  1941. }
  1942. var_cell_free(expected_cell);
  1943. #undef ERR
  1944. }