circuitpadding.c 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562
  1. /* Copyright (c) 2017 The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. /**
  4. * \file circuitpadding.c
  5. * \brief Circuit-level padding implementation
  6. *
  7. * \details
  8. *
  9. * This file implements Tor proposal 254 "Padding Negotiation" which is heavily
  10. * inspired by the paper "Toward an Efficient Website Fingerprinting Defense"
  11. * by M. Juarez, M. Imani, M. Perry, C. Diaz, M. Wright.
  12. *
  13. * In particular the code in this file describes mechanisms for clients to
  14. * negotiate various types of circuit-level padding from relays.
  15. *
  16. * Each padding type is described by a state machine (circpad_machine_spec_t),
  17. * which is also referred as a "padding machine" in this file. Currently,
  18. * these state machines are hardcoded in the source code (e.g. see
  19. * circpad_circ_client_machine_init()), but in the future we will be able to
  20. * serialize them in the torrc or the consensus.
  21. *
  22. * As specified by prop#254, clients can negotiate padding with relays by using
  23. * PADDING_NEGOTIATE cells. After successful padding negotiation, padding
  24. * machines are assigned to the circuit in their mutable form as a
  25. * circpad_machine_state_t.
  26. *
  27. * Each state of a padding state machine can be either:
  28. * - A histogram that specifies inter-arrival padding delays.
  29. * - Or a parametrized probability distribution that specifies inter-arrival
  30. * delays (see circpad_distribution_type_t).
  31. *
  32. * Padding machines start from the START state and finish with the END
  33. * state. They can transition between states using the events in
  34. * circpad_event_t.
  35. *
  36. * When a padding machine reaches the END state, it gets wiped from the circuit
  37. * so that other padding machines can take over if needed (see
  38. * circpad_machine_spec_transitioned_to_end()).
  39. **/
  40. #define CIRCUITPADDING_PRIVATE
  41. #include <math.h>
  42. #include "lib/math/fp.h"
  43. #include "lib/math/prob_distr.h"
  44. #include "core/or/or.h"
  45. #include "core/or/circuitpadding.h"
  46. #include "core/or/circuitlist.h"
  47. #include "core/or/circuituse.h"
  48. #include "core/or/relay.h"
  49. #include "feature/stats/rephist.h"
  50. #include "feature/nodelist/networkstatus.h"
  51. #include "core/or/channel.h"
  52. #include "lib/time/compat_time.h"
  53. #include "lib/defs/time.h"
  54. #include "lib/crypt_ops/crypto_rand.h"
  55. #include "core/or/crypt_path_st.h"
  56. #include "core/or/circuit_st.h"
  57. #include "core/or/origin_circuit_st.h"
  58. #include "feature/nodelist/routerstatus_st.h"
  59. #include "feature/nodelist/node_st.h"
  60. #include "core/or/cell_st.h"
  61. #include "core/or/extend_info_st.h"
  62. #include "core/crypto/relay_crypto.h"
  63. #include "feature/nodelist/nodelist.h"
  64. #include "app/config/config.h"
  65. static inline circpad_purpose_mask_t circpad_circ_purpose_to_mask(uint8_t
  66. circ_purpose);
  67. static inline circpad_circuit_state_t circpad_circuit_state(
  68. origin_circuit_t *circ);
  69. static void circpad_setup_machine_on_circ(circuit_t *on_circ,
  70. const circpad_machine_spec_t *machine);
  71. static double circpad_distribution_sample(circpad_distribution_t dist);
  72. /** Cached consensus params */
  73. static uint8_t circpad_global_max_padding_percent;
  74. static uint16_t circpad_global_allowed_cells;
  75. /** Global cell counts, for rate limiting */
  76. static uint64_t circpad_global_padding_sent;
  77. static uint64_t circpad_global_nonpadding_sent;
  78. /** This is the list of circpad_machine_spec_t's parsed from consensus and
  79. * torrc that have origin_side == 1 (ie: are for client side).
  80. *
  81. * The machines in this smartlist are considered immutable and they are used
  82. * as-is by circuits so they should not change or get deallocated in Tor's
  83. * runtime and as long as circuits are alive. */
  84. STATIC smartlist_t *origin_padding_machines = NULL;
  85. /** This is the list of circpad_machine_spec_t's parsed from consensus and
  86. * torrc that have origin_side == 0 (ie: are for relay side).
  87. *
  88. * The machines in this smartlist are considered immutable and they are used
  89. * as-is by circuits so they should not change or get deallocated in Tor's
  90. * runtime and as long as circuits are alive. */
  91. STATIC smartlist_t *relay_padding_machines = NULL;
  92. /** Loop over the current padding state machines using <b>loop_var</b> as the
  93. * loop variable. */
  94. #define FOR_EACH_CIRCUIT_MACHINE_BEGIN(loop_var) \
  95. STMT_BEGIN \
  96. for (int loop_var = 0; loop_var < CIRCPAD_MAX_MACHINES; loop_var++) {
  97. #define FOR_EACH_CIRCUIT_MACHINE_END } STMT_END ;
  98. /** Loop over the current active padding state machines using <b>loop_var</b>
  99. * as the loop variable. If a machine is not active, skip it. */
  100. #define FOR_EACH_ACTIVE_CIRCUIT_MACHINE_BEGIN(loop_var, circ) \
  101. FOR_EACH_CIRCUIT_MACHINE_BEGIN(loop_var) \
  102. if (!(circ)->padding_info[loop_var]) \
  103. continue;
  104. #define FOR_EACH_ACTIVE_CIRCUIT_MACHINE_END } STMT_END ;
  105. /**
  106. * Return a human-readable description for a circuit padding state.
  107. */
  108. static const char *
  109. circpad_state_to_string(circpad_statenum_t state)
  110. {
  111. const char *descr;
  112. switch (state) {
  113. case CIRCPAD_STATE_START:
  114. descr = "START";
  115. break;
  116. case CIRCPAD_STATE_BURST:
  117. descr = "BURST";
  118. break;
  119. case CIRCPAD_STATE_GAP:
  120. descr = "GAP";
  121. break;
  122. case CIRCPAD_STATE_END:
  123. descr = "END";
  124. break;
  125. default:
  126. descr = "CUSTOM"; // XXX: Just return # in static char buf?
  127. }
  128. return descr;
  129. }
  130. /**
  131. * Free the machineinfo at an index
  132. */
  133. static void
  134. circpad_circuit_machineinfo_free_idx(circuit_t *circ, int idx)
  135. {
  136. if (circ->padding_info[idx]) {
  137. tor_free(circ->padding_info[idx]->histogram);
  138. timer_free(circ->padding_info[idx]->padding_timer);
  139. tor_free(circ->padding_info[idx]);
  140. }
  141. }
  142. /** Free all the machineinfos in <b>circ</b> that match <b>machine_num</b>. */
  143. static void
  144. free_circ_machineinfos_with_machine_num(circuit_t *circ, int machine_num)
  145. {
  146. FOR_EACH_CIRCUIT_MACHINE_BEGIN(i) {
  147. if (circ->padding_machine[i] &&
  148. circ->padding_machine[i]->machine_num == machine_num) {
  149. circpad_circuit_machineinfo_free_idx(circ, i);
  150. circ->padding_machine[i] = NULL;
  151. }
  152. } FOR_EACH_CIRCUIT_MACHINE_END;
  153. }
  154. /**
  155. * Free all padding machines and mutable info associated with circuit
  156. */
  157. void
  158. circpad_circuit_free_all_machineinfos(circuit_t *circ)
  159. {
  160. FOR_EACH_CIRCUIT_MACHINE_BEGIN(i) {
  161. circpad_circuit_machineinfo_free_idx(circ, i);
  162. } FOR_EACH_CIRCUIT_MACHINE_END;
  163. }
  164. /**
  165. * Allocate a new mutable machineinfo structure.
  166. */
  167. STATIC circpad_machine_state_t *
  168. circpad_circuit_machineinfo_new(circuit_t *on_circ, int machine_index)
  169. {
  170. circpad_machine_state_t *mi =
  171. tor_malloc_zero(sizeof(circpad_machine_state_t));
  172. mi->machine_index = machine_index;
  173. mi->on_circ = on_circ;
  174. return mi;
  175. }
  176. /**
  177. * Return the circpad_state_t for the current state based on the
  178. * mutable info.
  179. *
  180. * This function returns NULL when the machine is in the end state or in an
  181. * invalid state.
  182. */
  183. STATIC const circpad_state_t *
  184. circpad_machine_current_state(const circpad_machine_state_t *mi)
  185. {
  186. const circpad_machine_spec_t *machine = CIRCPAD_GET_MACHINE(mi);
  187. if (mi->current_state == CIRCPAD_STATE_END) {
  188. return NULL;
  189. } else if (BUG(mi->current_state >= machine->num_states)) {
  190. log_fn(LOG_WARN,LD_CIRC,
  191. "Invalid circuit padding state %d",
  192. mi->current_state);
  193. return NULL;
  194. }
  195. return &machine->states[mi->current_state];
  196. }
  197. /**
  198. * Calculate the lower bound of a histogram bin. The upper bound
  199. * is obtained by calling this function with bin+1, and subtracting 1.
  200. *
  201. * The 0th bin has a special value -- it only represents start_usec.
  202. * This is so we can specify a probability on 0-delay values.
  203. *
  204. * After bin 0, bins are exponentially spaced, so that each subsequent
  205. * bin is twice as large as the previous. This is done so that higher
  206. * time resolution is given to lower time values.
  207. *
  208. * The infinity bin is a the last bin in the array (histogram_len-1).
  209. * It has a usec value of CIRCPAD_DELAY_INFINITE (UINT32_MAX).
  210. */
  211. STATIC circpad_delay_t
  212. circpad_histogram_bin_to_usec(const circpad_machine_state_t *mi,
  213. circpad_hist_index_t bin)
  214. {
  215. const circpad_state_t *state = circpad_machine_current_state(mi);
  216. circpad_delay_t start_usec;
  217. /* Our state should have been checked to be non-null by the caller
  218. * (circpad_machine_remove_token()) */
  219. if (BUG(state == NULL)) {
  220. return CIRCPAD_DELAY_INFINITE;
  221. }
  222. if (state->use_rtt_estimate)
  223. start_usec = mi->rtt_estimate_usec+state->start_usec;
  224. else
  225. start_usec = state->start_usec;
  226. if (bin >= CIRCPAD_INFINITY_BIN(state))
  227. return CIRCPAD_DELAY_INFINITE;
  228. if (bin == 0)
  229. return start_usec;
  230. if (bin == 1)
  231. return start_usec+1;
  232. /* The bin widths double every index, so that we can have more resolution
  233. * for lower time values in the histogram. */
  234. const circpad_time_t bin_width_exponent =
  235. 1 << (CIRCPAD_INFINITY_BIN(state) - bin);
  236. return (circpad_delay_t)MIN(start_usec +
  237. state->range_usec/bin_width_exponent,
  238. CIRCPAD_DELAY_INFINITE);
  239. }
  240. /** Return the midpoint of the histogram bin <b>bin_index</b>. */
  241. static circpad_delay_t
  242. circpad_get_histogram_bin_midpoint(const circpad_machine_state_t *mi,
  243. int bin_index)
  244. {
  245. circpad_delay_t left_bound = circpad_histogram_bin_to_usec(mi, bin_index);
  246. circpad_delay_t right_bound =
  247. circpad_histogram_bin_to_usec(mi, bin_index+1)-1;
  248. return left_bound + (right_bound - left_bound)/2;
  249. }
  250. /**
  251. * Return the bin that contains the usec argument.
  252. * "Contains" is defined as us in [lower, upper).
  253. *
  254. * This function will never return the infinity bin (histogram_len-1),
  255. * in order to simplify the rest of the code.
  256. *
  257. * This means that technically the last bin (histogram_len-2)
  258. * has range [start_usec+range_usec, CIRCPAD_DELAY_INFINITE].
  259. */
  260. STATIC circpad_hist_index_t
  261. circpad_histogram_usec_to_bin(const circpad_machine_state_t *mi,
  262. circpad_delay_t usec)
  263. {
  264. const circpad_state_t *state = circpad_machine_current_state(mi);
  265. circpad_delay_t start_usec;
  266. int32_t bin; /* Larger than return type to properly clamp overflow */
  267. /* Our state should have been checked to be non-null by the caller
  268. * (circpad_machine_remove_token()) */
  269. if (BUG(state == NULL)) {
  270. return 0;
  271. }
  272. if (state->use_rtt_estimate)
  273. start_usec = mi->rtt_estimate_usec+state->start_usec;
  274. else
  275. start_usec = state->start_usec;
  276. /* The first bin (#0) has zero width and starts (and ends) at start_usec. */
  277. if (usec <= start_usec)
  278. return 0;
  279. if (usec == start_usec+1)
  280. return 1;
  281. const circpad_time_t histogram_range_usec = state->range_usec;
  282. /* We need to find the bin corresponding to our position in the range.
  283. * Since bins are exponentially spaced in powers of two, we need to
  284. * take the log2 of our position in histogram_range_usec. However,
  285. * since tor_log2() returns the floor(log2(u64)), we have to adjust
  286. * it to behave like ceil(log2(u64)). This is verified in our tests
  287. * to properly invert the operation done in
  288. * circpad_histogram_bin_to_usec(). */
  289. bin = CIRCPAD_INFINITY_BIN(state) -
  290. tor_log2(2*histogram_range_usec/(usec-start_usec+1));
  291. /* Clamp the return value to account for timevals before the start
  292. * of bin 0, or after the last bin. Don't return the infinity bin
  293. * index. */
  294. bin = MIN(MAX(bin, 1), CIRCPAD_INFINITY_BIN(state)-1);
  295. return bin;
  296. }
  297. /**
  298. * This function frees any token bins allocated from a previous state
  299. *
  300. * Called after a state transition, or if the bins are empty.
  301. */
  302. STATIC void
  303. circpad_machine_setup_tokens(circpad_machine_state_t *mi)
  304. {
  305. const circpad_state_t *state = circpad_machine_current_state(mi);
  306. /* If this state doesn't exist, or doesn't have token removal,
  307. * free any previous state's histogram, and bail */
  308. if (!state || state->token_removal == CIRCPAD_TOKEN_REMOVAL_NONE) {
  309. if (mi->histogram) {
  310. tor_free(mi->histogram);
  311. mi->histogram = NULL;
  312. mi->histogram_len = 0;
  313. }
  314. return;
  315. }
  316. /* Try to avoid re-mallocing if we don't really need to */
  317. if (!mi->histogram || (mi->histogram
  318. && mi->histogram_len != state->histogram_len)) {
  319. tor_free(mi->histogram); // null ok
  320. mi->histogram = tor_malloc_zero(sizeof(circpad_hist_token_t)
  321. *state->histogram_len);
  322. }
  323. mi->histogram_len = state->histogram_len;
  324. memcpy(mi->histogram, state->histogram,
  325. sizeof(circpad_hist_token_t)*state->histogram_len);
  326. }
  327. /**
  328. * Choose a length for this state (in cells), if specified.
  329. */
  330. static void
  331. circpad_choose_state_length(circpad_machine_state_t *mi)
  332. {
  333. const circpad_state_t *state = circpad_machine_current_state(mi);
  334. double length;
  335. if (!state || state->length_dist.type == CIRCPAD_DIST_NONE) {
  336. mi->state_length = CIRCPAD_STATE_LENGTH_INFINITE;
  337. return;
  338. }
  339. length = circpad_distribution_sample(state->length_dist);
  340. length = MAX(0, length);
  341. length += state->start_length;
  342. length = MIN(length, state->max_length);
  343. mi->state_length = clamp_double_to_int64(length);
  344. }
  345. /**
  346. * Sample a value from our iat_dist, and clamp it safely
  347. * to circpad_delay_t.
  348. */
  349. static circpad_delay_t
  350. circpad_distribution_sample_iat_delay(const circpad_state_t *state,
  351. circpad_delay_t start_usec)
  352. {
  353. double val = circpad_distribution_sample(state->iat_dist);
  354. /* These comparisons are safe, because the output is in the range
  355. * [0, 2**32), and double has a precision of 53 bits. */
  356. val = MAX(0, val);
  357. val = MIN(val, state->range_usec);
  358. /* This addition is exact: val is at most 2**32-1, start_usec
  359. * is at most 2**32-1, and doubles have a precision of 53 bits. */
  360. val += start_usec;
  361. /* Clamp the distribution at infinite delay val */
  362. return (circpad_delay_t)MIN(tor_llround(val), CIRCPAD_DELAY_INFINITE);
  363. }
  364. /**
  365. * Sample an expected time-until-next-packet delay from the histogram.
  366. *
  367. * The bin is chosen with probability proportional to the number
  368. * of tokens in each bin, and then a time value is chosen uniformly from
  369. * that bin's [start,end) time range.
  370. */
  371. STATIC circpad_delay_t
  372. circpad_machine_sample_delay(circpad_machine_state_t *mi)
  373. {
  374. const circpad_state_t *state = circpad_machine_current_state(mi);
  375. const circpad_hist_token_t *histogram = NULL;
  376. circpad_hist_index_t curr_bin = 0;
  377. circpad_delay_t bin_start, bin_end;
  378. circpad_delay_t start_usec;
  379. /* These three must all be larger than circpad_hist_token_t, because
  380. * we sum several circpad_hist_token_t values across the histogram */
  381. uint64_t curr_weight = 0;
  382. uint64_t histogram_total_tokens = 0;
  383. uint64_t bin_choice;
  384. tor_assert(state);
  385. if (state->use_rtt_estimate)
  386. start_usec = mi->rtt_estimate_usec+state->start_usec;
  387. else
  388. start_usec = state->start_usec;
  389. if (state->iat_dist.type != CIRCPAD_DIST_NONE) {
  390. /* Sample from a fixed IAT distribution and return */
  391. return circpad_distribution_sample_iat_delay(state, start_usec);
  392. } else if (state->token_removal != CIRCPAD_TOKEN_REMOVAL_NONE) {
  393. /* We have a mutable histogram. Do basic sanity check and apply: */
  394. if (BUG(!mi->histogram) ||
  395. BUG(mi->histogram_len != state->histogram_len)) {
  396. return CIRCPAD_DELAY_INFINITE;
  397. }
  398. histogram = mi->histogram;
  399. for (circpad_hist_index_t b = 0; b < state->histogram_len; b++)
  400. histogram_total_tokens += histogram[b];
  401. } else {
  402. /* We have a histogram, but it's immutable */
  403. histogram = state->histogram;
  404. histogram_total_tokens = state->histogram_total_tokens;
  405. }
  406. bin_choice = crypto_rand_uint64(histogram_total_tokens);
  407. /* Skip all the initial zero bins */
  408. while (!histogram[curr_bin]) {
  409. curr_bin++;
  410. }
  411. curr_weight = histogram[curr_bin];
  412. // TODO: This is not constant-time. Pretty sure we don't
  413. // really need it to be, though.
  414. while (curr_weight < bin_choice) {
  415. curr_bin++;
  416. /* It should be impossible to run past the end of the histogram */
  417. if (BUG(curr_bin >= state->histogram_len)) {
  418. return CIRCPAD_DELAY_INFINITE;
  419. }
  420. curr_weight += histogram[curr_bin];
  421. }
  422. /* Do some basic checking of the current bin we are in */
  423. if (BUG(curr_bin >= state->histogram_len) ||
  424. BUG(histogram[curr_bin] == 0)) {
  425. return CIRCPAD_DELAY_INFINITE;
  426. }
  427. // Store this index to remove the token upon callback.
  428. if (state->token_removal != CIRCPAD_TOKEN_REMOVAL_NONE) {
  429. mi->chosen_bin = curr_bin;
  430. }
  431. if (curr_bin >= CIRCPAD_INFINITY_BIN(state)) {
  432. if (state->token_removal != CIRCPAD_TOKEN_REMOVAL_NONE &&
  433. mi->histogram[curr_bin] > 0) {
  434. mi->histogram[curr_bin]--;
  435. }
  436. // Infinity: Don't send a padding packet. Wait for a real packet
  437. // and then see if our bins are empty or what else we should do.
  438. return CIRCPAD_DELAY_INFINITE;
  439. }
  440. tor_assert(curr_bin < CIRCPAD_INFINITY_BIN(state));
  441. bin_start = circpad_histogram_bin_to_usec(mi, curr_bin);
  442. /* We don't need to reduct 1 from the upper bound because the random range
  443. * function below samples from [bin_start, bin_end) */
  444. bin_end = circpad_histogram_bin_to_usec(mi, curr_bin+1);
  445. /* Truncate the high bin in case it's the infinity bin:
  446. * Don't actually schedule an "infinite"-1 delay */
  447. bin_end = MIN(bin_end, start_usec+state->range_usec);
  448. // Sample uniformly between histogram[i] to histogram[i+1]-1,
  449. // but no need to sample if they are the same timeval (aka bin 0 or bin 1).
  450. if (bin_end <= bin_start+1)
  451. return bin_start;
  452. else
  453. return (circpad_delay_t)crypto_rand_uint64_range(bin_start, bin_end);
  454. }
  455. /**
  456. * Sample a value from the specified probability distribution.
  457. *
  458. * This performs inverse transform sampling
  459. * (https://en.wikipedia.org/wiki/Inverse_transform_sampling).
  460. *
  461. * XXX: These formulas were taken verbatim. Need a floating wizard
  462. * to check them for catastropic cancellation and other issues (teor?).
  463. * Also: is 32bits of double from [0.0,1.0) enough?
  464. */
  465. static double
  466. circpad_distribution_sample(circpad_distribution_t dist)
  467. {
  468. log_fn(LOG_DEBUG,LD_CIRC, "Sampling delay with distribution %d",
  469. dist.type);
  470. switch (dist.type) {
  471. case CIRCPAD_DIST_NONE:
  472. {
  473. /* We should not get in here like this */
  474. tor_assert_nonfatal_unreached();
  475. return 0;
  476. }
  477. case CIRCPAD_DIST_UNIFORM:
  478. {
  479. // param2 is upper bound, param1 is lower
  480. const struct uniform my_uniform = {
  481. .base = UNIFORM(my_uniform),
  482. .a = dist.param1,
  483. .b = dist.param2,
  484. };
  485. return dist_sample(&my_uniform.base);
  486. }
  487. case CIRCPAD_DIST_LOGISTIC:
  488. {
  489. /* param1 is Mu, param2 is sigma. */
  490. const struct logistic my_logistic = {
  491. .base = LOGISTIC(my_logistic),
  492. .mu = dist.param1,
  493. .sigma = dist.param2,
  494. };
  495. return dist_sample(&my_logistic.base);
  496. }
  497. case CIRCPAD_DIST_LOG_LOGISTIC:
  498. {
  499. /* param1 is Alpha, param2 is 1.0/Beta */
  500. const struct log_logistic my_log_logistic = {
  501. .base = LOG_LOGISTIC(my_log_logistic),
  502. .alpha = dist.param1,
  503. .beta = dist.param2,
  504. };
  505. return dist_sample(&my_log_logistic.base);
  506. }
  507. case CIRCPAD_DIST_GEOMETRIC:
  508. {
  509. /* param1 is 'p' (success probability) */
  510. const struct geometric my_geometric = {
  511. .base = GEOMETRIC(my_geometric),
  512. .p = dist.param1,
  513. };
  514. return dist_sample(&my_geometric.base);
  515. }
  516. case CIRCPAD_DIST_WEIBULL:
  517. {
  518. /* param1 is k, param2 is Lambda */
  519. const struct weibull my_weibull = {
  520. .base = WEIBULL(my_weibull),
  521. .k = dist.param1,
  522. .lambda = dist.param2,
  523. };
  524. return dist_sample(&my_weibull.base);
  525. }
  526. case CIRCPAD_DIST_PARETO:
  527. {
  528. /* param1 is sigma, param2 is xi, no more params for mu so we use 0 */
  529. const struct genpareto my_genpareto = {
  530. .base = GENPARETO(my_genpareto),
  531. .mu = 0,
  532. .sigma = dist.param1,
  533. .xi = dist.param2,
  534. };
  535. return dist_sample(&my_genpareto.base);
  536. }
  537. }
  538. tor_assert_nonfatal_unreached();
  539. return 0;
  540. }
  541. /**
  542. * Find the index of the first bin whose upper bound is
  543. * greater than the target, and that has tokens remaining.
  544. */
  545. static circpad_hist_index_t
  546. circpad_machine_first_higher_index(const circpad_machine_state_t *mi,
  547. circpad_delay_t target_bin_usec)
  548. {
  549. circpad_hist_index_t bin = circpad_histogram_usec_to_bin(mi,
  550. target_bin_usec);
  551. /* Don't remove from the infinity bin */
  552. for (; bin < CIRCPAD_INFINITY_BIN(mi); bin++) {
  553. if (mi->histogram[bin] &&
  554. circpad_histogram_bin_to_usec(mi, bin+1) > target_bin_usec) {
  555. return bin;
  556. }
  557. }
  558. return mi->histogram_len;
  559. }
  560. /**
  561. * Find the index of the first bin whose lower bound is lower or equal to
  562. * <b>target_bin_usec</b>, and that still has tokens remaining.
  563. */
  564. static circpad_hist_index_t
  565. circpad_machine_first_lower_index(const circpad_machine_state_t *mi,
  566. circpad_delay_t target_bin_usec)
  567. {
  568. circpad_hist_index_t bin = circpad_histogram_usec_to_bin(mi,
  569. target_bin_usec);
  570. for (; bin >= 0; bin--) {
  571. if (mi->histogram[bin] &&
  572. circpad_histogram_bin_to_usec(mi, bin) <= target_bin_usec) {
  573. return bin;
  574. }
  575. }
  576. return -1;
  577. }
  578. /**
  579. * Remove a token from the first non-empty bin whose upper bound is
  580. * greater than the target.
  581. */
  582. STATIC void
  583. circpad_machine_remove_higher_token(circpad_machine_state_t *mi,
  584. circpad_delay_t target_bin_usec)
  585. {
  586. /* We need to remove the token from the first bin
  587. * whose upper bound is greater than the target, and that
  588. * has tokens remaining. */
  589. circpad_hist_index_t bin = circpad_machine_first_higher_index(mi,
  590. target_bin_usec);
  591. if (bin >= 0 && bin < CIRCPAD_INFINITY_BIN(mi)) {
  592. if (!BUG(mi->histogram[bin] == 0)) {
  593. mi->histogram[bin]--;
  594. }
  595. }
  596. }
  597. /**
  598. * Remove a token from the first non-empty bin whose upper bound is
  599. * lower than the target.
  600. */
  601. STATIC void
  602. circpad_machine_remove_lower_token(circpad_machine_state_t *mi,
  603. circpad_delay_t target_bin_usec)
  604. {
  605. circpad_hist_index_t bin = circpad_machine_first_lower_index(mi,
  606. target_bin_usec);
  607. if (bin >= 0 && bin < CIRCPAD_INFINITY_BIN(mi)) {
  608. if (!BUG(mi->histogram[bin] == 0)) {
  609. mi->histogram[bin]--;
  610. }
  611. }
  612. }
  613. /* Helper macro: Ensure that the bin has tokens available, and BUG out of the
  614. * function if it's not the case. */
  615. #define ENSURE_BIN_CAPACITY(bin_index) \
  616. if (BUG(mi->histogram[bin_index] == 0)) { \
  617. return; \
  618. }
  619. /**
  620. * Remove a token from the closest non-empty bin to the target.
  621. *
  622. * If use_usec is true, measure "closest" in terms of the next closest bin
  623. * midpoint.
  624. *
  625. * If it is false, use bin index distance only.
  626. */
  627. STATIC void
  628. circpad_machine_remove_closest_token(circpad_machine_state_t *mi,
  629. circpad_delay_t target_bin_usec,
  630. bool use_usec)
  631. {
  632. circpad_hist_index_t lower, higher, current;
  633. circpad_hist_index_t bin_to_remove = -1;
  634. lower = circpad_machine_first_lower_index(mi, target_bin_usec);
  635. higher = circpad_machine_first_higher_index(mi, target_bin_usec);
  636. current = circpad_histogram_usec_to_bin(mi, target_bin_usec);
  637. /* Sanity check the results */
  638. if (BUG(lower > current) || BUG(higher < current)) {
  639. return;
  640. }
  641. /* Take care of edge cases first */
  642. if (higher == mi->histogram_len && lower == -1) {
  643. /* All bins are empty */
  644. return;
  645. } else if (higher == mi->histogram_len) {
  646. /* All higher bins are empty */
  647. ENSURE_BIN_CAPACITY(lower);
  648. mi->histogram[lower]--;
  649. return;
  650. } else if (lower == -1) {
  651. /* All lower bins are empty */
  652. ENSURE_BIN_CAPACITY(higher);
  653. mi->histogram[higher]--;
  654. return;
  655. }
  656. /* Now handle the intermediate cases */
  657. if (use_usec) {
  658. /* Find the closest bin midpoint to the target */
  659. circpad_delay_t lower_usec = circpad_get_histogram_bin_midpoint(mi, lower);
  660. circpad_delay_t higher_usec =
  661. circpad_get_histogram_bin_midpoint(mi, higher);
  662. if (target_bin_usec < lower_usec) {
  663. // Lower bin is closer
  664. ENSURE_BIN_CAPACITY(lower);
  665. bin_to_remove = lower;
  666. } else if (target_bin_usec > higher_usec) {
  667. // Higher bin is closer
  668. ENSURE_BIN_CAPACITY(higher);
  669. bin_to_remove = higher;
  670. } else if (target_bin_usec-lower_usec > higher_usec-target_bin_usec) {
  671. // Higher bin is closer
  672. ENSURE_BIN_CAPACITY(higher);
  673. bin_to_remove = higher;
  674. } else {
  675. // Lower bin is closer
  676. ENSURE_BIN_CAPACITY(lower);
  677. bin_to_remove = lower;
  678. }
  679. mi->histogram[bin_to_remove]--;
  680. log_debug(LD_GENERAL, "Removing token from bin %d", bin_to_remove);
  681. return;
  682. } else {
  683. if (current - lower > higher - current) {
  684. // Higher bin is closer
  685. ENSURE_BIN_CAPACITY(higher);
  686. mi->histogram[higher]--;
  687. return;
  688. } else {
  689. // Lower bin is closer
  690. ENSURE_BIN_CAPACITY(lower);
  691. mi->histogram[lower]--;
  692. return;
  693. }
  694. }
  695. }
  696. #undef ENSURE_BIN_CAPACITY
  697. /**
  698. * Remove a token from the exact bin corresponding to the target.
  699. *
  700. * If it is empty, do nothing.
  701. */
  702. static void
  703. circpad_machine_remove_exact(circpad_machine_state_t *mi,
  704. circpad_delay_t target_bin_usec)
  705. {
  706. circpad_hist_index_t bin = circpad_histogram_usec_to_bin(mi,
  707. target_bin_usec);
  708. if (mi->histogram[bin] > 0)
  709. mi->histogram[bin]--;
  710. }
  711. /**
  712. * Check our state's cell limit count and tokens.
  713. *
  714. * Returns 1 if either limits are hit and we decide to change states,
  715. * otherwise returns 0.
  716. */
  717. static circpad_decision_t
  718. check_machine_token_supply(circpad_machine_state_t *mi)
  719. {
  720. uint32_t histogram_total_tokens = 0;
  721. /* Check if bins empty. This requires summing up the current mutable
  722. * machineinfo histogram token total and checking if it is zero.
  723. * Machineinfo does not keep a running token count. We're assuming the
  724. * extra space is not worth this short loop iteration.
  725. *
  726. * We also do not count infinity bin in histogram totals.
  727. */
  728. if (mi->histogram_len && mi->histogram) {
  729. for (circpad_hist_index_t b = 0; b < CIRCPAD_INFINITY_BIN(mi); b++)
  730. histogram_total_tokens += mi->histogram[b];
  731. /* If we change state, we're done */
  732. if (histogram_total_tokens == 0) {
  733. if (circpad_internal_event_bins_empty(mi) == CIRCPAD_STATE_CHANGED)
  734. return CIRCPAD_STATE_CHANGED;
  735. }
  736. }
  737. if (mi->state_length == 0) {
  738. return circpad_internal_event_state_length_up(mi);
  739. }
  740. return CIRCPAD_STATE_UNCHANGED;
  741. }
  742. /**
  743. * Remove a token from the bin corresponding to the delta since
  744. * last packet. If that bin is empty, choose a token based on
  745. * the specified removal strategy in the state machine.
  746. *
  747. * This function also updates and checks rate limit and state
  748. * limit counters.
  749. *
  750. * Returns 1 if we transition states, 0 otherwise.
  751. */
  752. STATIC circpad_decision_t
  753. circpad_machine_remove_token(circpad_machine_state_t *mi)
  754. {
  755. const circpad_state_t *state = NULL;
  756. circpad_time_t current_time;
  757. circpad_delay_t target_bin_usec;
  758. /* Update non-padding counts for rate limiting: We scale at UINT16_MAX
  759. * because we only use this for a percentile limit of 2 sig figs, and
  760. * space is scare in the machineinfo struct. */
  761. mi->nonpadding_sent++;
  762. if (mi->nonpadding_sent == UINT16_MAX) {
  763. mi->padding_sent /= 2;
  764. mi->nonpadding_sent /= 2;
  765. }
  766. /* Dont remove any tokens if there was no padding scheduled */
  767. if (!mi->padding_scheduled_at_usec) {
  768. return CIRCPAD_STATE_UNCHANGED;
  769. }
  770. state = circpad_machine_current_state(mi);
  771. current_time = monotime_absolute_usec();
  772. /* If we have scheduled padding some time in the future, we want to see what
  773. bin we are in at the current time */
  774. target_bin_usec = (circpad_delay_t)
  775. MIN((current_time - mi->padding_scheduled_at_usec),
  776. CIRCPAD_DELAY_INFINITE-1);
  777. /* We are treating this non-padding cell as a padding cell, so we cancel
  778. padding timer, if present. */
  779. mi->padding_scheduled_at_usec = 0;
  780. if (mi->is_padding_timer_scheduled) {
  781. mi->is_padding_timer_scheduled = 0;
  782. timer_disable(mi->padding_timer);
  783. }
  784. /* If we are not in a padding state (like start or end), we're done */
  785. if (!state)
  786. return CIRCPAD_STATE_UNCHANGED;
  787. /* If we're enforcing a state length on non-padding packets,
  788. * decrement it */
  789. if (mi->state_length != CIRCPAD_STATE_LENGTH_INFINITE &&
  790. state->length_includes_nonpadding &&
  791. mi->state_length > 0) {
  792. mi->state_length--;
  793. }
  794. /* Perform the specified token removal strategy */
  795. switch (state->token_removal) {
  796. case CIRCPAD_TOKEN_REMOVAL_NONE:
  797. break;
  798. case CIRCPAD_TOKEN_REMOVAL_CLOSEST_USEC:
  799. circpad_machine_remove_closest_token(mi, target_bin_usec, 1);
  800. break;
  801. case CIRCPAD_TOKEN_REMOVAL_CLOSEST:
  802. circpad_machine_remove_closest_token(mi, target_bin_usec, 0);
  803. break;
  804. case CIRCPAD_TOKEN_REMOVAL_LOWER:
  805. circpad_machine_remove_lower_token(mi, target_bin_usec);
  806. break;
  807. case CIRCPAD_TOKEN_REMOVAL_HIGHER:
  808. circpad_machine_remove_higher_token(mi, target_bin_usec);
  809. break;
  810. case CIRCPAD_TOKEN_REMOVAL_EXACT:
  811. circpad_machine_remove_exact(mi, target_bin_usec);
  812. break;
  813. }
  814. /* Check our token and state length limits */
  815. return check_machine_token_supply(mi);
  816. }
  817. /**
  818. * Send a relay command with a relay cell payload on a circuit to
  819. * the particular hopnum.
  820. *
  821. * Hopnum starts at 1 (1=guard, 2=middle, 3=exit, etc).
  822. *
  823. * Payload may be null.
  824. *
  825. * Returns negative on error, 0 on success.
  826. */
  827. MOCK_IMPL(STATIC signed_error_t,
  828. circpad_send_command_to_hop,(origin_circuit_t *circ, uint8_t hopnum,
  829. uint8_t relay_command, const uint8_t *payload,
  830. ssize_t payload_len))
  831. {
  832. crypt_path_t *target_hop = circuit_get_cpath_hop(circ, hopnum);
  833. signed_error_t ret;
  834. /* Check that the cpath has the target hop */
  835. if (!target_hop) {
  836. log_fn(LOG_WARN, LD_BUG, "Padding circuit %u has %d hops, not %d",
  837. circ->global_identifier, circuit_get_cpath_len(circ), hopnum);
  838. return -1;
  839. }
  840. /* Check that the target hop is opened */
  841. if (target_hop->state != CPATH_STATE_OPEN) {
  842. log_fn(LOG_WARN,LD_CIRC,
  843. "Padding circuit %u has %d hops, not %d",
  844. circ->global_identifier,
  845. circuit_get_cpath_opened_len(circ), hopnum);
  846. return -1;
  847. }
  848. /* Send the drop command to the second hop */
  849. ret = relay_send_command_from_edge(0, TO_CIRCUIT(circ), relay_command,
  850. (const char*)payload, payload_len,
  851. target_hop);
  852. return ret;
  853. }
  854. /**
  855. * Callback helper to send a padding cell.
  856. *
  857. * This helper is called after our histogram-sampled delay period passes
  858. * without another packet being sent first. If a packet is sent before this
  859. * callback happens, it is canceled. So when we're called here, send padding
  860. * right away.
  861. *
  862. * If sending this padding cell forced us to transition states return
  863. * CIRCPAD_STATE_CHANGED. Otherwise return CIRCPAD_STATE_UNCHANGED.
  864. */
  865. circpad_decision_t
  866. circpad_send_padding_cell_for_callback(circpad_machine_state_t *mi)
  867. {
  868. circuit_t *circ = mi->on_circ;
  869. int machine_idx = mi->machine_index;
  870. mi->padding_scheduled_at_usec = 0;
  871. circpad_statenum_t state = mi->current_state;
  872. // Make sure circuit didn't close on us
  873. if (mi->on_circ->marked_for_close) {
  874. log_fn(LOG_INFO,LD_CIRC,
  875. "Padding callback on a circuit marked for close. Ignoring.");
  876. return CIRCPAD_STATE_CHANGED;
  877. }
  878. /* If it's a histogram, reduce the token count */
  879. if (mi->histogram && mi->histogram_len) {
  880. /* Basic sanity check on the histogram before removing anything */
  881. if (BUG(mi->chosen_bin >= mi->histogram_len) ||
  882. BUG(mi->histogram[mi->chosen_bin] == 0)) {
  883. return CIRCPAD_STATE_CHANGED;
  884. }
  885. mi->histogram[mi->chosen_bin]--;
  886. }
  887. /* If we have a valid state length bound, consider it */
  888. if (mi->state_length != CIRCPAD_STATE_LENGTH_INFINITE &&
  889. !BUG(mi->state_length <= 0)) {
  890. mi->state_length--;
  891. }
  892. /*
  893. * Update non-padding counts for rate limiting: We scale at UINT16_MAX
  894. * because we only use this for a percentile limit of 2 sig figs, and
  895. * space is scare in the machineinfo struct.
  896. */
  897. mi->padding_sent++;
  898. if (mi->padding_sent == UINT16_MAX) {
  899. mi->padding_sent /= 2;
  900. mi->nonpadding_sent /= 2;
  901. }
  902. circpad_global_padding_sent++;
  903. if (CIRCUIT_IS_ORIGIN(mi->on_circ)) {
  904. circpad_send_command_to_hop(TO_ORIGIN_CIRCUIT(mi->on_circ),
  905. CIRCPAD_GET_MACHINE(mi)->target_hopnum,
  906. RELAY_COMMAND_DROP, NULL, 0);
  907. log_fn(LOG_INFO,LD_CIRC, "Callback: Sending padding to origin circuit %u.",
  908. TO_ORIGIN_CIRCUIT(mi->on_circ)->global_identifier);
  909. } else {
  910. // If we're a non-origin circ, we can just send from here as if we're the
  911. // edge.
  912. log_fn(LOG_INFO,LD_CIRC,
  913. "Callback: Sending padding to non-origin circuit.");
  914. relay_send_command_from_edge(0, mi->on_circ, RELAY_COMMAND_DROP, NULL,
  915. 0, NULL);
  916. }
  917. rep_hist_padding_count_write(PADDING_TYPE_DROP);
  918. /* This is a padding cell sent from the client or from the middle node,
  919. * (because it's invoked from circuitpadding.c) */
  920. circpad_cell_event_padding_sent(circ);
  921. /* The circpad_cell_event_padding_sent() could cause us to transition.
  922. * Check that we still have a padding machineinfo, and then check our token
  923. * supply. */
  924. if (circ->padding_info[machine_idx] != NULL) {
  925. if (state != circ->padding_info[machine_idx]->current_state)
  926. return CIRCPAD_STATE_CHANGED;
  927. else
  928. return check_machine_token_supply(circ->padding_info[machine_idx]);
  929. } else {
  930. return CIRCPAD_STATE_CHANGED;
  931. }
  932. }
  933. /**
  934. * Tor-timer compatible callback that tells us to send a padding cell.
  935. *
  936. * Timers are associated with circpad_machine_state_t's. When the machineinfo
  937. * is freed on a circuit, the timers are cancelled. Since the lifetime
  938. * of machineinfo is always longer than the timers, handles are not
  939. * needed.
  940. */
  941. static void
  942. circpad_send_padding_callback(tor_timer_t *timer, void *args,
  943. const struct monotime_t *time)
  944. {
  945. circpad_machine_state_t *mi = ((circpad_machine_state_t*)args);
  946. (void)timer; (void)time;
  947. if (mi && mi->on_circ) {
  948. assert_circuit_ok(mi->on_circ);
  949. circpad_send_padding_cell_for_callback(mi);
  950. } else {
  951. // This shouldn't happen (represents a timer leak)
  952. log_fn(LOG_WARN,LD_CIRC,
  953. "Circuit closed while waiting for padding timer.");
  954. tor_fragile_assert();
  955. }
  956. // TODO-MP-AP: Unify this counter with channelpadding for rephist stats
  957. //total_timers_pending--;
  958. }
  959. /**
  960. * Cache our consensus parameters upon consensus update.
  961. */
  962. void
  963. circpad_new_consensus_params(const networkstatus_t *ns)
  964. {
  965. circpad_global_allowed_cells =
  966. networkstatus_get_param(ns, "circpad_global_allowed_cells",
  967. 0, 0, UINT16_MAX-1);
  968. circpad_global_max_padding_percent =
  969. networkstatus_get_param(ns, "circpad_global_max_padding_pct",
  970. 0, 0, 100);
  971. }
  972. /**
  973. * Check this machine against its padding limits, as well as global
  974. * consensus limits.
  975. *
  976. * We have two limits: a percent and a cell count. The cell count
  977. * limit must be reached before the percent is enforced (this is to
  978. * optionally allow very light padding of things like circuit setup
  979. * while there is no other traffic on the circuit).
  980. *
  981. * TODO: Don't apply limits to machines form torrc.
  982. *
  983. * Returns 1 if limits are set and we've hit them. Otherwise returns 0.
  984. */
  985. STATIC bool
  986. circpad_machine_reached_padding_limit(circpad_machine_state_t *mi)
  987. {
  988. const circpad_machine_spec_t *machine = CIRCPAD_GET_MACHINE(mi);
  989. /* If machine_padding_pct is non-zero, and we've sent more
  990. * than the allowed count of padding cells, then check our
  991. * percent limits for this machine. */
  992. if (machine->max_padding_percent &&
  993. mi->padding_sent >= machine->allowed_padding_count) {
  994. uint32_t total_cells = mi->padding_sent + mi->nonpadding_sent;
  995. /* Check the percent */
  996. if ((100*(uint32_t)mi->padding_sent) / total_cells >
  997. machine->max_padding_percent) {
  998. return 1; // limit is reached. Stop.
  999. }
  1000. }
  1001. /* If circpad_max_global_padding_pct is non-zero, and we've
  1002. * sent more than the global padding cell limit, then check our
  1003. * gloabl tor process percentage limit on padding. */
  1004. if (circpad_global_max_padding_percent &&
  1005. circpad_global_padding_sent >= circpad_global_allowed_cells) {
  1006. uint64_t total_cells = circpad_global_padding_sent +
  1007. circpad_global_nonpadding_sent;
  1008. /* Check the percent */
  1009. if ((100*circpad_global_padding_sent) / total_cells >
  1010. circpad_global_max_padding_percent) {
  1011. return 1; // global limit reached. Stop.
  1012. }
  1013. }
  1014. return 0; // All good!
  1015. }
  1016. /**
  1017. * Schedule the next padding time according to the machineinfo on a
  1018. * circuit.
  1019. *
  1020. * The histograms represent inter-packet-delay. Whenever you get an packet
  1021. * event you should be scheduling your next timer (after cancelling any old
  1022. * ones and updating tokens accordingly).
  1023. *
  1024. * Returns 1 if we decide to transition states (due to infinity bin),
  1025. * 0 otherwise.
  1026. */
  1027. MOCK_IMPL(circpad_decision_t,
  1028. circpad_machine_schedule_padding,(circpad_machine_state_t *mi))
  1029. {
  1030. circpad_delay_t in_usec = 0;
  1031. struct timeval timeout;
  1032. tor_assert(mi);
  1033. // Don't pad in end (but also don't cancel any previously
  1034. // scheduled padding either).
  1035. if (mi->current_state == CIRCPAD_STATE_END) {
  1036. log_fn(LOG_INFO, LD_CIRC, "Padding end state");
  1037. return CIRCPAD_STATE_UNCHANGED;
  1038. }
  1039. /* Check our padding limits */
  1040. if (circpad_machine_reached_padding_limit(mi)) {
  1041. if (CIRCUIT_IS_ORIGIN(mi->on_circ)) {
  1042. log_fn(LOG_INFO, LD_CIRC,
  1043. "Padding machine has reached padding limit on circuit %u",
  1044. TO_ORIGIN_CIRCUIT(mi->on_circ)->global_identifier);
  1045. } else {
  1046. log_fn(LOG_INFO, LD_CIRC,
  1047. "Padding machine has reached padding limit on circuit %"PRIu64
  1048. ", %d",
  1049. mi->on_circ->n_chan ? mi->on_circ->n_chan->global_identifier : 0,
  1050. mi->on_circ->n_circ_id);
  1051. }
  1052. return CIRCPAD_STATE_UNCHANGED;
  1053. }
  1054. if (mi->is_padding_timer_scheduled) {
  1055. /* Cancel current timer (if any) */
  1056. timer_disable(mi->padding_timer);
  1057. mi->is_padding_timer_scheduled = 0;
  1058. }
  1059. /* in_usec = in microseconds */
  1060. in_usec = circpad_machine_sample_delay(mi);
  1061. mi->padding_scheduled_at_usec = monotime_absolute_usec();
  1062. log_fn(LOG_INFO,LD_CIRC,"\tPadding in %u usec", in_usec);
  1063. // Don't schedule if we have infinite delay.
  1064. if (in_usec == CIRCPAD_DELAY_INFINITE) {
  1065. return circpad_internal_event_infinity(mi);
  1066. }
  1067. if (mi->state_length == 0) {
  1068. /* If we're at length 0, that means we hit 0 after sending
  1069. * a cell earlier, and emitted an event for it, but
  1070. * for whatever reason we did not decide to change states then.
  1071. * So maybe the machine is waiting for bins empty, or for an
  1072. * infinity event later? That would be a strange machine,
  1073. * but there's no reason to make it impossible. */
  1074. return CIRCPAD_STATE_UNCHANGED;
  1075. }
  1076. if (in_usec <= 0) {
  1077. return circpad_send_padding_cell_for_callback(mi);
  1078. }
  1079. timeout.tv_sec = in_usec/TOR_USEC_PER_SEC;
  1080. timeout.tv_usec = (in_usec%TOR_USEC_PER_SEC);
  1081. log_fn(LOG_INFO, LD_CIRC, "\tPadding in %u sec, %u usec",
  1082. (unsigned)timeout.tv_sec, (unsigned)timeout.tv_usec);
  1083. if (mi->padding_timer) {
  1084. timer_set_cb(mi->padding_timer, circpad_send_padding_callback, mi);
  1085. } else {
  1086. mi->padding_timer =
  1087. timer_new(circpad_send_padding_callback, mi);
  1088. }
  1089. timer_schedule(mi->padding_timer, &timeout);
  1090. mi->is_padding_timer_scheduled = 1;
  1091. // TODO-MP-AP: Unify with channelpadding counter
  1092. //rep_hist_padding_count_timers(++total_timers_pending);
  1093. return CIRCPAD_STATE_UNCHANGED;
  1094. }
  1095. /**
  1096. * If the machine transitioned to the END state, we need
  1097. * to check to see if it wants us to shut it down immediately.
  1098. * If it does, then we need to send the appropate negotation commands
  1099. * depending on which side it is.
  1100. *
  1101. * After this function is called, mi may point to freed memory. Do
  1102. * not access it.
  1103. */
  1104. static void
  1105. circpad_machine_spec_transitioned_to_end(circpad_machine_state_t *mi)
  1106. {
  1107. const circpad_machine_spec_t *machine = CIRCPAD_GET_MACHINE(mi);
  1108. /*
  1109. * We allow machines to shut down and delete themselves as opposed
  1110. * to just going back to START or waiting forever in END so that
  1111. * we can handle the case where this machine started while it was
  1112. * the only machine that matched conditions, but *since* then more
  1113. * "higher ranking" machines now match the conditions, and would
  1114. * be given a chance to take precidence over this one in
  1115. * circpad_add_matching_machines().
  1116. *
  1117. * Returning to START or waiting forever in END would not give those
  1118. * other machines a chance to be launched, where as shutting down
  1119. * here does.
  1120. */
  1121. if (machine->should_negotiate_end) {
  1122. circuit_t *on_circ = mi->on_circ;
  1123. if (machine->is_origin_side) {
  1124. /* We free the machine info here so that we can be replaced
  1125. * by a different machine. But we must leave the padding_machine
  1126. * in place to wait for the negotiated response */
  1127. circpad_circuit_machineinfo_free_idx(on_circ,
  1128. machine->machine_index);
  1129. circpad_negotiate_padding(TO_ORIGIN_CIRCUIT(on_circ),
  1130. machine->machine_num,
  1131. machine->target_hopnum,
  1132. CIRCPAD_COMMAND_STOP);
  1133. } else {
  1134. circpad_circuit_machineinfo_free_idx(on_circ,
  1135. machine->machine_index);
  1136. circpad_padding_negotiated(on_circ,
  1137. machine->machine_num,
  1138. CIRCPAD_COMMAND_STOP,
  1139. CIRCPAD_RESPONSE_OK);
  1140. on_circ->padding_machine[machine->machine_index] = NULL;
  1141. }
  1142. }
  1143. }
  1144. /**
  1145. * Generic state transition function for padding state machines.
  1146. *
  1147. * Given an event and our mutable machine info, decide if/how to
  1148. * transition to a different state, and perform actions accordingly.
  1149. *
  1150. * Returns 1 if we transition states, 0 otherwise.
  1151. */
  1152. MOCK_IMPL(circpad_decision_t,
  1153. circpad_machine_spec_transition,(circpad_machine_state_t *mi,
  1154. circpad_event_t event))
  1155. {
  1156. const circpad_state_t *state =
  1157. circpad_machine_current_state(mi);
  1158. /* If state is null we are in the end state. */
  1159. if (!state) {
  1160. /* If we in end state we don't pad no matter what. */
  1161. return CIRCPAD_STATE_UNCHANGED;
  1162. }
  1163. /* Check if this event is ignored or causes a cancel */
  1164. if (state->next_state[event] == CIRCPAD_STATE_IGNORE) {
  1165. return CIRCPAD_STATE_UNCHANGED;
  1166. } else if (state->next_state[event] == CIRCPAD_STATE_CANCEL) {
  1167. /* Check cancel events and cancel any pending padding */
  1168. mi->padding_scheduled_at_usec = 0;
  1169. if (mi->is_padding_timer_scheduled) {
  1170. mi->is_padding_timer_scheduled = 0;
  1171. /* Cancel current timer (if any) */
  1172. timer_disable(mi->padding_timer);
  1173. }
  1174. return CIRCPAD_STATE_UNCHANGED;
  1175. } else {
  1176. circpad_statenum_t s = state->next_state[event];
  1177. /* See if we need to transition to any other states based on this event.
  1178. * Whenever a transition happens, even to our own state, we schedule
  1179. * padding.
  1180. *
  1181. * So if a state only wants to schedule padding for an event, it specifies
  1182. * a transition to itself. All non-specified events are ignored.
  1183. */
  1184. log_fn(LOG_INFO, LD_CIRC,
  1185. "Circpad machine %d transitioning from %s to %s",
  1186. mi->machine_index, circpad_state_to_string(mi->current_state),
  1187. circpad_state_to_string(s));
  1188. /* If this is not the same state, switch and init tokens,
  1189. * otherwise just reschedule padding. */
  1190. if (mi->current_state != s) {
  1191. mi->current_state = s;
  1192. circpad_machine_setup_tokens(mi);
  1193. circpad_choose_state_length(mi);
  1194. /* If we transition to the end state, check to see
  1195. * if this machine wants to be shut down at end */
  1196. if (s == CIRCPAD_STATE_END) {
  1197. circpad_machine_spec_transitioned_to_end(mi);
  1198. /* We transitioned but we don't pad in end. Also, mi
  1199. * may be freed. Returning STATE_CHANGED prevents us
  1200. * from accessing it in any callers of this function. */
  1201. return CIRCPAD_STATE_CHANGED;
  1202. }
  1203. /* We transitioned to a new state, schedule padding */
  1204. circpad_machine_schedule_padding(mi);
  1205. return CIRCPAD_STATE_CHANGED;
  1206. }
  1207. /* We transitioned back to the same state. Schedule padding,
  1208. * and inform if that causes a state transition. */
  1209. return circpad_machine_schedule_padding(mi);
  1210. }
  1211. return CIRCPAD_STATE_UNCHANGED;
  1212. }
  1213. /**
  1214. * Estimate the circuit RTT from the current middle hop out to the
  1215. * end of the circuit.
  1216. *
  1217. * We estimate RTT by calculating the time between "receive" and
  1218. * "send" at a middle hop. This is because we "receive" a cell
  1219. * from the origin, and then relay it towards the exit before a
  1220. * response comes back. It is that response time from the exit side
  1221. * that we want to measure, so that we can make use of it for synthetic
  1222. * response delays.
  1223. */
  1224. static void
  1225. circpad_estimate_circ_rtt_on_received(circuit_t *circ,
  1226. circpad_machine_state_t *mi)
  1227. {
  1228. /* Origin circuits don't estimate RTT. They could do it easily enough,
  1229. * but they have no reason to use it in any delay calculations. */
  1230. if (CIRCUIT_IS_ORIGIN(circ) || mi->stop_rtt_update)
  1231. return;
  1232. /* If we already have a last receieved packet time, that means we
  1233. * did not get a response before this packet. The RTT estimate
  1234. * only makes sense if we do not have multiple packets on the
  1235. * wire, so stop estimating if this is the second packet
  1236. * back to back. However, for the first set of back-to-back
  1237. * packets, we can wait until the very first response comes back
  1238. * to us, to measure that RTT (for the response to optimistic
  1239. * data, for example). Hence stop_rtt_update is only checked
  1240. * in this received side function, and not in send side below.
  1241. */
  1242. if (mi->last_received_time_usec) {
  1243. /* We also allow multiple back-to-back packets if the circuit is not
  1244. * opened, to handle var cells.
  1245. * XXX: Will this work with out var cell plans? Maybe not,
  1246. * since we're opened at the middle hop as soon as we process
  1247. * one var extend2 :/ */
  1248. if (circ->state == CIRCUIT_STATE_OPEN) {
  1249. log_fn(LOG_INFO, LD_CIRC,
  1250. "Stopping padding RTT estimation on circuit (%"PRIu64
  1251. ", %d) after two back to back packets. Current RTT: %d",
  1252. circ->n_chan ? circ->n_chan->global_identifier : 0,
  1253. circ->n_circ_id, mi->rtt_estimate_usec);
  1254. mi->stop_rtt_update = 1;
  1255. }
  1256. } else {
  1257. mi->last_received_time_usec = monotime_absolute_usec();
  1258. }
  1259. }
  1260. /**
  1261. * Handles the "send" side of RTT calculation at middle nodes.
  1262. *
  1263. * This function calculates the RTT from the middle to the end
  1264. * of the circuit by subtracting the last received cell timestamp
  1265. * from the current time. It allows back-to-back cells until
  1266. * the circuit is opened, to allow for var cell handshakes.
  1267. * XXX: Check our var cell plans to make sure this will work.
  1268. */
  1269. static void
  1270. circpad_estimate_circ_rtt_on_send(circuit_t *circ,
  1271. circpad_machine_state_t *mi)
  1272. {
  1273. /* Origin circuits don't estimate RTT. They could do it easily enough,
  1274. * but they have no reason to use it in any delay calculations. */
  1275. if (CIRCUIT_IS_ORIGIN(circ))
  1276. return;
  1277. /* If last_received_time_usec is non-zero, we are waiting for a response
  1278. * from the exit side. Calculate the time delta and use it as RTT. */
  1279. if (mi->last_received_time_usec) {
  1280. circpad_time_t rtt_time = monotime_absolute_usec() -
  1281. mi->last_received_time_usec;
  1282. /* Reset the last RTT packet time, so we can tell if two cells
  1283. * arrive back to back */
  1284. mi->last_received_time_usec = 0;
  1285. /* Use INT32_MAX to ensure the addition doesn't overflow */
  1286. if (rtt_time >= INT32_MAX) {
  1287. log_fn(LOG_WARN,LD_CIRC,
  1288. "Circuit padding RTT estimate overflowed: %"PRIu64
  1289. " vs %"PRIu64, monotime_absolute_usec(),
  1290. mi->last_received_time_usec);
  1291. return;
  1292. }
  1293. /* If the old RTT estimate is lower than this one, use this one, because
  1294. * the circuit is getting longer. If this estimate is somehow
  1295. * faster than the previous, then maybe that was network jitter.
  1296. * In that case, average them. */
  1297. if (mi->rtt_estimate_usec < (circpad_delay_t)rtt_time) {
  1298. mi->rtt_estimate_usec = (circpad_delay_t)rtt_time;
  1299. } else {
  1300. mi->rtt_estimate_usec += (circpad_delay_t)rtt_time;
  1301. mi->rtt_estimate_usec /= 2;
  1302. }
  1303. } else if (circ->state == CIRCUIT_STATE_OPEN) {
  1304. /* If last_received_time_usec is zero, then we have gotten two cells back
  1305. * to back. Stop estimating RTT in this case. Note that we only
  1306. * stop RTT update if the circuit is opened, to allow for RTT estimates
  1307. * of var cells during circ setup. */
  1308. mi->stop_rtt_update = 1;
  1309. if (!mi->rtt_estimate_usec) {
  1310. log_fn(LOG_NOTICE, LD_CIRC,
  1311. "Got two cells back to back on a circuit before estimating RTT.");
  1312. }
  1313. }
  1314. }
  1315. /**
  1316. * A "non-padding" cell has been sent from this endpoint. React
  1317. * according to any padding state machines on the circuit.
  1318. *
  1319. * For origin circuits, this means we sent a cell into the network.
  1320. * For middle relay circuits, this means we sent a cell towards the
  1321. * origin.
  1322. */
  1323. void
  1324. circpad_cell_event_nonpadding_sent(circuit_t *on_circ)
  1325. {
  1326. /* Update global cell count */
  1327. circpad_global_nonpadding_sent++;
  1328. /* If there are no machines then this loop should not iterate */
  1329. FOR_EACH_ACTIVE_CIRCUIT_MACHINE_BEGIN(i, on_circ) {
  1330. /* First, update any RTT estimate */
  1331. circpad_estimate_circ_rtt_on_send(on_circ, on_circ->padding_info[i]);
  1332. /* Remove a token: this is the idea of adaptive padding, since we have an
  1333. * ideal distribution that we want our distribution to look like. */
  1334. if (!circpad_machine_remove_token(on_circ->padding_info[i])) {
  1335. /* If removing a token did not cause a transition, check if
  1336. * non-padding sent event should */
  1337. circpad_machine_spec_transition(on_circ->padding_info[i],
  1338. CIRCPAD_EVENT_NONPADDING_SENT);
  1339. }
  1340. } FOR_EACH_ACTIVE_CIRCUIT_MACHINE_END;
  1341. }
  1342. /**
  1343. * A "non-padding" cell has been received by this endpoint. React
  1344. * according to any padding state machines on the circuit.
  1345. *
  1346. * For origin circuits, this means we read a cell from the network.
  1347. * For middle relay circuits, this means we received a cell from the
  1348. * origin.
  1349. */
  1350. void
  1351. circpad_cell_event_nonpadding_received(circuit_t *on_circ)
  1352. {
  1353. FOR_EACH_ACTIVE_CIRCUIT_MACHINE_BEGIN(i, on_circ) {
  1354. /* First, update any RTT estimate */
  1355. circpad_estimate_circ_rtt_on_received(on_circ, on_circ->padding_info[i]);
  1356. circpad_machine_spec_transition(on_circ->padding_info[i],
  1357. CIRCPAD_EVENT_NONPADDING_RECV);
  1358. } FOR_EACH_ACTIVE_CIRCUIT_MACHINE_END;
  1359. }
  1360. /**
  1361. * A padding cell has been sent from this endpoint. React
  1362. * according to any padding state machines on the circuit.
  1363. *
  1364. * For origin circuits, this means we sent a cell into the network.
  1365. * For middle relay circuits, this means we sent a cell towards the
  1366. * origin.
  1367. */
  1368. void
  1369. circpad_cell_event_padding_sent(circuit_t *on_circ)
  1370. {
  1371. FOR_EACH_ACTIVE_CIRCUIT_MACHINE_BEGIN(i, on_circ) {
  1372. circpad_machine_spec_transition(on_circ->padding_info[i],
  1373. CIRCPAD_EVENT_PADDING_SENT);
  1374. } FOR_EACH_ACTIVE_CIRCUIT_MACHINE_END;
  1375. }
  1376. /**
  1377. * A padding cell has been received by this endpoint. React
  1378. * according to any padding state machines on the circuit.
  1379. *
  1380. * For origin circuits, this means we read a cell from the network.
  1381. * For middle relay circuits, this means we received a cell from the
  1382. * origin.
  1383. */
  1384. void
  1385. circpad_cell_event_padding_received(circuit_t *on_circ)
  1386. {
  1387. /* identical to padding sent */
  1388. FOR_EACH_ACTIVE_CIRCUIT_MACHINE_BEGIN(i, on_circ) {
  1389. circpad_machine_spec_transition(on_circ->padding_info[i],
  1390. CIRCPAD_EVENT_PADDING_RECV);
  1391. } FOR_EACH_ACTIVE_CIRCUIT_MACHINE_END;
  1392. }
  1393. /**
  1394. * An "infinite" delay has ben chosen from one of our histograms.
  1395. *
  1396. * "Infinite" delays mean don't send padding -- but they can also
  1397. * mean transition to another state depending on the state machine
  1398. * definitions. Check the rules and react accordingly.
  1399. *
  1400. * Return 1 if we decide to transition, 0 otherwise.
  1401. */
  1402. circpad_decision_t
  1403. circpad_internal_event_infinity(circpad_machine_state_t *mi)
  1404. {
  1405. return circpad_machine_spec_transition(mi, CIRCPAD_EVENT_INFINITY);
  1406. }
  1407. /**
  1408. * All of the bins of our current state's histogram's are empty.
  1409. *
  1410. * Check to see if this means transition to another state, and if
  1411. * not, refill the tokens.
  1412. *
  1413. * Return 1 if we decide to transition, 0 otherwise.
  1414. */
  1415. circpad_decision_t
  1416. circpad_internal_event_bins_empty(circpad_machine_state_t *mi)
  1417. {
  1418. if (circpad_machine_spec_transition(mi, CIRCPAD_EVENT_BINS_EMPTY)
  1419. == CIRCPAD_STATE_CHANGED) {
  1420. return CIRCPAD_STATE_CHANGED;
  1421. } else {
  1422. /* If we dont transition, then we refill the tokens */
  1423. circpad_machine_setup_tokens(mi);
  1424. return CIRCPAD_STATE_UNCHANGED;
  1425. }
  1426. }
  1427. /**
  1428. * This state has used up its cell count. Emit the event and
  1429. * see if we transition.
  1430. *
  1431. * Return 1 if we decide to transition, 0 otherwise.
  1432. */
  1433. circpad_decision_t
  1434. circpad_internal_event_state_length_up(circpad_machine_state_t *mi)
  1435. {
  1436. return circpad_machine_spec_transition(mi, CIRCPAD_EVENT_LENGTH_COUNT);
  1437. }
  1438. /**
  1439. * Returns true if the circuit matches the conditions.
  1440. */
  1441. static inline bool
  1442. circpad_machine_conditions_met(origin_circuit_t *circ,
  1443. const circpad_machine_spec_t *machine)
  1444. {
  1445. if (!(circpad_circ_purpose_to_mask(TO_CIRCUIT(circ)->purpose)
  1446. & machine->conditions.purpose_mask))
  1447. return 0;
  1448. if (machine->conditions.requires_vanguards) {
  1449. const or_options_t *options = get_options();
  1450. /* Pinned middles are effectively vanguards */
  1451. if (!(options->HSLayer2Nodes || options->HSLayer3Nodes))
  1452. return 0;
  1453. }
  1454. /* We check for any bits set in the circuit state mask so that machines
  1455. * can say any of the following through their state bitmask:
  1456. * "I want to apply to circuits with either streams or no streams"; OR
  1457. * "I only want to apply to circuits with streams"; OR
  1458. * "I only want to apply to circuits without streams". */
  1459. if (!(circpad_circuit_state(circ) & machine->conditions.state_mask))
  1460. return 0;
  1461. if (circuit_get_cpath_opened_len(circ) < machine->conditions.min_hops)
  1462. return 0;
  1463. return 1;
  1464. }
  1465. /**
  1466. * Returns a minimized representation of the circuit state.
  1467. *
  1468. * The padding code only cares if the circuit is building,
  1469. * opened, used for streams, and/or still has relay early cells.
  1470. * This returns a bitmask of all state properities that apply to
  1471. * this circuit.
  1472. */
  1473. static inline
  1474. circpad_circuit_state_t
  1475. circpad_circuit_state(origin_circuit_t *circ)
  1476. {
  1477. circpad_circuit_state_t retmask = 0;
  1478. if (circ->p_streams)
  1479. retmask |= CIRCPAD_CIRC_STREAMS;
  1480. else
  1481. retmask |= CIRCPAD_CIRC_NO_STREAMS;
  1482. /* We use has_opened to prevent cannibialized circs from flapping. */
  1483. if (circ->has_opened)
  1484. retmask |= CIRCPAD_CIRC_OPENED;
  1485. else
  1486. retmask |= CIRCPAD_CIRC_BUILDING;
  1487. if (circ->remaining_relay_early_cells > 0)
  1488. retmask |= CIRCPAD_CIRC_HAS_RELAY_EARLY;
  1489. else
  1490. retmask |= CIRCPAD_CIRC_HAS_NO_RELAY_EARLY;
  1491. return retmask;
  1492. }
  1493. /**
  1494. * Convert a normal circuit purpose into a bitmask that we can
  1495. * use for determining matching circuits.
  1496. */
  1497. static inline
  1498. circpad_purpose_mask_t
  1499. circpad_circ_purpose_to_mask(uint8_t circ_purpose)
  1500. {
  1501. /* Treat OR circ purposes as ignored. They should not be passed here*/
  1502. if (BUG(circ_purpose <= CIRCUIT_PURPOSE_OR_MAX_)) {
  1503. return 0;
  1504. }
  1505. /* Treat new client circuit purposes as "OMG ITS EVERYTHING".
  1506. * This also should not happen */
  1507. if (BUG(circ_purpose - CIRCUIT_PURPOSE_OR_MAX_ - 1 > 32)) {
  1508. return CIRCPAD_PURPOSE_ALL;
  1509. }
  1510. /* Convert the purpose to a bit position */
  1511. return 1 << (circ_purpose - CIRCUIT_PURPOSE_OR_MAX_ - 1);
  1512. }
  1513. /**
  1514. * Shut down any machines whose conditions no longer match
  1515. * the current circuit.
  1516. */
  1517. static void
  1518. circpad_shutdown_old_machines(origin_circuit_t *on_circ)
  1519. {
  1520. circuit_t *circ = TO_CIRCUIT(on_circ);
  1521. FOR_EACH_ACTIVE_CIRCUIT_MACHINE_BEGIN(i, circ) {
  1522. if (!circpad_machine_conditions_met(on_circ,
  1523. circ->padding_machine[i])) {
  1524. // Clear machineinfo (frees timers)
  1525. circpad_circuit_machineinfo_free_idx(circ, i);
  1526. // Send padding negotiate stop
  1527. circpad_negotiate_padding(on_circ,
  1528. circ->padding_machine[i]->machine_num,
  1529. circ->padding_machine[i]->target_hopnum,
  1530. CIRCPAD_COMMAND_STOP);
  1531. }
  1532. } FOR_EACH_ACTIVE_CIRCUIT_MACHINE_END;
  1533. }
  1534. /**
  1535. * Negotiate new machines that would apply to this circuit.
  1536. *
  1537. * This function checks to see if we have any free machine indexes,
  1538. * and for each free machine index, it initializes the most recently
  1539. * added origin-side padding machine that matches the target machine
  1540. * index and circuit conditions, and negotiates it with the appropriate
  1541. * middle relay.
  1542. */
  1543. static void
  1544. circpad_add_matching_machines(origin_circuit_t *on_circ)
  1545. {
  1546. circuit_t *circ = TO_CIRCUIT(on_circ);
  1547. #ifdef TOR_UNIT_TESTS
  1548. /* Tests don't have to init our padding machines */
  1549. if (!origin_padding_machines)
  1550. return;
  1551. #endif
  1552. /* If padding negotiation failed before, do not try again */
  1553. if (on_circ->padding_negotiation_failed)
  1554. return;
  1555. FOR_EACH_CIRCUIT_MACHINE_BEGIN(i) {
  1556. /* If there is a padding machine info, this index is occupied.
  1557. * No need to check conditions for this index. */
  1558. if (circ->padding_info[i])
  1559. continue;
  1560. /* We have a free machine index. Check the origin padding
  1561. * machines in reverse order, so that more recently added
  1562. * machines take priority over older ones. */
  1563. SMARTLIST_FOREACH_REVERSE_BEGIN(origin_padding_machines,
  1564. circpad_machine_spec_t *,
  1565. machine) {
  1566. /* Machine definitions have a specific target machine index.
  1567. * This is so event ordering is deterministic with respect
  1568. * to which machine gets events first when there are two
  1569. * machines installed on a circuit. Make sure we only
  1570. * add this machine if its target machine index is free. */
  1571. if (machine->machine_index == i &&
  1572. circpad_machine_conditions_met(on_circ, machine)) {
  1573. // We can only replace this machine if the target hopnum
  1574. // is the same, otherwise we'll get invalid data
  1575. if (circ->padding_machine[i]) {
  1576. if (circ->padding_machine[i]->target_hopnum !=
  1577. machine->target_hopnum)
  1578. continue;
  1579. /* Replace it. (Don't free - is global). */
  1580. circ->padding_machine[i] = NULL;
  1581. }
  1582. /* Set up the machine immediately so that the slot is occupied.
  1583. * We will tear it down on error return, or if there is an error
  1584. * response from the relay. */
  1585. circpad_setup_machine_on_circ(circ, machine);
  1586. if (circpad_negotiate_padding(on_circ, machine->machine_num,
  1587. machine->target_hopnum,
  1588. CIRCPAD_COMMAND_START) < 0) {
  1589. circpad_circuit_machineinfo_free_idx(circ, i);
  1590. circ->padding_machine[i] = NULL;
  1591. on_circ->padding_negotiation_failed = 1;
  1592. } else {
  1593. /* Success. Don't try any more machines */
  1594. return;
  1595. }
  1596. }
  1597. } SMARTLIST_FOREACH_END(machine);
  1598. } FOR_EACH_CIRCUIT_MACHINE_END;
  1599. }
  1600. /**
  1601. * Event that tells us we added a hop to an origin circuit.
  1602. *
  1603. * This event is used to decide if we should create a padding machine
  1604. * on a circuit.
  1605. */
  1606. void
  1607. circpad_machine_event_circ_added_hop(origin_circuit_t *on_circ)
  1608. {
  1609. /* Since our padding conditions do not specify a max_hops,
  1610. * all we can do is add machines here */
  1611. circpad_add_matching_machines(on_circ);
  1612. }
  1613. /**
  1614. * Event that tells us that an origin circuit is now built.
  1615. *
  1616. * Shut down any machines that only applied to un-built circuits.
  1617. * Activate any new ones.
  1618. */
  1619. void
  1620. circpad_machine_event_circ_built(origin_circuit_t *circ)
  1621. {
  1622. circpad_shutdown_old_machines(circ);
  1623. circpad_add_matching_machines(circ);
  1624. }
  1625. /**
  1626. * Circpad purpose changed event.
  1627. *
  1628. * Shut down any machines that don't apply to our circ purpose.
  1629. * Activate any new ones that do.
  1630. */
  1631. void
  1632. circpad_machine_event_circ_purpose_changed(origin_circuit_t *circ)
  1633. {
  1634. circpad_shutdown_old_machines(circ);
  1635. circpad_add_matching_machines(circ);
  1636. }
  1637. /**
  1638. * Event that tells us that an origin circuit is out of RELAY_EARLY
  1639. * cells.
  1640. *
  1641. * Shut down any machines that only applied to RELAY_EARLY circuits.
  1642. * Activate any new ones.
  1643. */
  1644. void
  1645. circpad_machine_event_circ_has_no_relay_early(origin_circuit_t *circ)
  1646. {
  1647. circpad_shutdown_old_machines(circ);
  1648. circpad_add_matching_machines(circ);
  1649. }
  1650. /**
  1651. * Streams attached event.
  1652. *
  1653. * Called from link_apconn_to_circ() and handle_hs_exit_conn()
  1654. *
  1655. * Shut down any machines that only applied to machines without
  1656. * streams. Activate any new ones.
  1657. */
  1658. void
  1659. circpad_machine_event_circ_has_streams(origin_circuit_t *circ)
  1660. {
  1661. circpad_shutdown_old_machines(circ);
  1662. circpad_add_matching_machines(circ);
  1663. }
  1664. /**
  1665. * Streams detached event.
  1666. *
  1667. * Called from circuit_detach_stream()
  1668. *
  1669. * Shut down any machines that only applied to machines without
  1670. * streams. Activate any new ones.
  1671. */
  1672. void
  1673. circpad_machine_event_circ_has_no_streams(origin_circuit_t *circ)
  1674. {
  1675. circpad_shutdown_old_machines(circ);
  1676. circpad_add_matching_machines(circ);
  1677. }
  1678. /**
  1679. * Verify that padding is coming from the expected hop.
  1680. *
  1681. * Returns true if from_hop matches the target hop from
  1682. * one of our padding machines.
  1683. *
  1684. * Returns false if we're not an origin circuit, or if from_hop
  1685. * does not match one of the padding machines.
  1686. */
  1687. bool
  1688. circpad_padding_is_from_expected_hop(circuit_t *circ,
  1689. crypt_path_t *from_hop)
  1690. {
  1691. crypt_path_t *target_hop = NULL;
  1692. if (!CIRCUIT_IS_ORIGIN(circ))
  1693. return 0;
  1694. FOR_EACH_CIRCUIT_MACHINE_BEGIN(i) {
  1695. /* We have to check padding_machine and not padding_info/active
  1696. * machines here because padding may arrive after we shut down a
  1697. * machine. The info is gone, but the padding_machine waits
  1698. * for the padding_negotiated response to come back. */
  1699. if (!circ->padding_machine[i])
  1700. continue;
  1701. target_hop = circuit_get_cpath_hop(TO_ORIGIN_CIRCUIT(circ),
  1702. circ->padding_machine[i]->target_hopnum);
  1703. if (target_hop == from_hop)
  1704. return 1;
  1705. } FOR_EACH_CIRCUIT_MACHINE_END;
  1706. return 0;
  1707. }
  1708. /**
  1709. * Deliver circpad events for an "unrecognized cell".
  1710. *
  1711. * Unrecognized cells are sent to relays and are forwarded
  1712. * onto the next hop of their circuits. Unrecognized cells
  1713. * are by definition not padding. We need to tell relay-side
  1714. * state machines that a non-padding cell was sent or received,
  1715. * depending on the direction, so they can update their histograms
  1716. * and decide to pad or not.
  1717. */
  1718. void
  1719. circpad_deliver_unrecognized_cell_events(circuit_t *circ,
  1720. cell_direction_t dir)
  1721. {
  1722. // We should never see unrecognized cells at origin.
  1723. // Our caller emits a warn when this happens.
  1724. if (CIRCUIT_IS_ORIGIN(circ)) {
  1725. return;
  1726. }
  1727. if (dir == CELL_DIRECTION_OUT) {
  1728. /* When direction is out (away from origin), then we received non-padding
  1729. cell coming from the origin to us. */
  1730. circpad_cell_event_nonpadding_received(circ);
  1731. } else if (dir == CELL_DIRECTION_IN) {
  1732. /* It's in and not origin, so the cell is going away from us.
  1733. * So we are relaying a non-padding cell towards the origin. */
  1734. circpad_cell_event_nonpadding_sent(circ);
  1735. }
  1736. }
  1737. /**
  1738. * Deliver circpad events for "recognized" relay cells.
  1739. *
  1740. * Recognized cells are destined for this hop, either client or middle.
  1741. * Check if this is a padding cell or not, and send the appropiate
  1742. * received event.
  1743. */
  1744. void
  1745. circpad_deliver_recognized_relay_cell_events(circuit_t *circ,
  1746. uint8_t relay_command,
  1747. crypt_path_t *layer_hint)
  1748. {
  1749. /* Padding negotiate cells are ignored by the state machines
  1750. * for simplicity. */
  1751. if (relay_command == RELAY_COMMAND_PADDING_NEGOTIATE ||
  1752. relay_command == RELAY_COMMAND_PADDING_NEGOTIATED) {
  1753. return;
  1754. }
  1755. if (relay_command == RELAY_COMMAND_DROP) {
  1756. rep_hist_padding_count_read(PADDING_TYPE_DROP);
  1757. if (CIRCUIT_IS_ORIGIN(circ)) {
  1758. if (circpad_padding_is_from_expected_hop(circ, layer_hint)) {
  1759. circuit_read_valid_data(TO_ORIGIN_CIRCUIT(circ), 0);
  1760. } else {
  1761. /* This is unexpected padding. Ignore it for now. */
  1762. return;
  1763. }
  1764. }
  1765. /* The cell should be recognized by now, which means that we are on the
  1766. destination, which means that we received a padding cell. We might be
  1767. the client or the Middle node, still, because leaky-pipe. */
  1768. circpad_cell_event_padding_received(circ);
  1769. log_fn(LOG_INFO, LD_CIRC, "Got padding cell on %s circuit %u.",
  1770. CIRCUIT_IS_ORIGIN(circ) ? "origin" : "non-origin",
  1771. CIRCUIT_IS_ORIGIN(circ) ?
  1772. TO_ORIGIN_CIRCUIT(circ)->global_identifier : 0);
  1773. } else {
  1774. /* We received a non-padding cell on the edge */
  1775. circpad_cell_event_nonpadding_received(circ);
  1776. }
  1777. }
  1778. /**
  1779. * Deliver circpad events for relay cells sent from us.
  1780. *
  1781. * If this is a padding cell, update our padding stats
  1782. * and deliver the event. Otherwise just deliver the event.
  1783. */
  1784. void
  1785. circpad_deliver_sent_relay_cell_events(circuit_t *circ,
  1786. uint8_t relay_command)
  1787. {
  1788. /* Padding negotiate cells are ignored by the state machines
  1789. * for simplicity. */
  1790. if (relay_command == RELAY_COMMAND_PADDING_NEGOTIATE ||
  1791. relay_command == RELAY_COMMAND_PADDING_NEGOTIATED) {
  1792. return;
  1793. }
  1794. /* RELAY_COMMAND_DROP is the multi-hop (aka circuit-level) padding cell in
  1795. * tor. (CELL_PADDING is a channel-level padding cell, which is not relayed
  1796. * or processed here) */
  1797. if (relay_command == RELAY_COMMAND_DROP) {
  1798. /* Optimization: The event for RELAY_COMMAND_DROP is sent directly
  1799. * from circpad_send_padding_cell_for_callback(). This is to avoid
  1800. * putting a cell_t and a relay_header_t on the stack repeatedly
  1801. * if we decide to send a long train of padidng cells back-to-back
  1802. * with 0 delay. So we do nothing here. */
  1803. return;
  1804. } else {
  1805. /* This is a non-padding cell sent from the client or from
  1806. * this node. */
  1807. circpad_cell_event_nonpadding_sent(circ);
  1808. }
  1809. }
  1810. /**
  1811. * Initialize the states array for a circpad machine.
  1812. */
  1813. void
  1814. circpad_machine_states_init(circpad_machine_spec_t *machine,
  1815. circpad_statenum_t num_states)
  1816. {
  1817. if (BUG(num_states > CIRCPAD_MAX_MACHINE_STATES)) {
  1818. num_states = CIRCPAD_MAX_MACHINE_STATES;
  1819. }
  1820. machine->num_states = num_states;
  1821. machine->states = tor_malloc_zero(sizeof(circpad_state_t)*num_states);
  1822. /* Initialize the default next state for all events to
  1823. * "ignore" -- if events aren't specified, they are ignored. */
  1824. for (circpad_statenum_t s = 0; s < num_states; s++) {
  1825. for (int e = 0; e < CIRCPAD_NUM_EVENTS; e++) {
  1826. machine->states[s].next_state[e] = CIRCPAD_STATE_IGNORE;
  1827. }
  1828. }
  1829. }
  1830. static void
  1831. circpad_setup_machine_on_circ(circuit_t *on_circ,
  1832. const circpad_machine_spec_t *machine)
  1833. {
  1834. if (CIRCUIT_IS_ORIGIN(on_circ) && !machine->is_origin_side) {
  1835. log_fn(LOG_WARN, LD_BUG,
  1836. "Can't set up non-origin machine on origin circuit!");
  1837. return;
  1838. }
  1839. if (!CIRCUIT_IS_ORIGIN(on_circ) && machine->is_origin_side) {
  1840. log_fn(LOG_WARN, LD_BUG,
  1841. "Can't set up origin machine on non-origin circuit!");
  1842. return;
  1843. }
  1844. tor_assert_nonfatal(on_circ->padding_machine[machine->machine_index]
  1845. == NULL);
  1846. tor_assert_nonfatal(on_circ->padding_info[machine->machine_index] == NULL);
  1847. on_circ->padding_info[machine->machine_index] =
  1848. circpad_circuit_machineinfo_new(on_circ, machine->machine_index);
  1849. on_circ->padding_machine[machine->machine_index] = machine;
  1850. }
  1851. /* These padding machines are only used for tests pending #28634. */
  1852. #ifdef TOR_UNIT_TESTS
  1853. static void
  1854. circpad_circ_client_machine_init(void)
  1855. {
  1856. circpad_machine_spec_t *circ_client_machine
  1857. = tor_malloc_zero(sizeof(circpad_machine_spec_t));
  1858. // XXX: Better conditions for merge.. Or disable this machine in
  1859. // merge?
  1860. circ_client_machine->conditions.min_hops = 2;
  1861. circ_client_machine->conditions.state_mask =
  1862. CIRCPAD_CIRC_BUILDING|CIRCPAD_CIRC_OPENED|CIRCPAD_CIRC_HAS_RELAY_EARLY;
  1863. circ_client_machine->conditions.purpose_mask = CIRCPAD_PURPOSE_ALL;
  1864. circ_client_machine->target_hopnum = 2;
  1865. circ_client_machine->is_origin_side = 1;
  1866. /* Start, gap, burst */
  1867. circpad_machine_states_init(circ_client_machine, 3);
  1868. circ_client_machine->states[CIRCPAD_STATE_START].
  1869. next_state[CIRCPAD_EVENT_NONPADDING_RECV] = CIRCPAD_STATE_BURST;
  1870. circ_client_machine->states[CIRCPAD_STATE_BURST].
  1871. next_state[CIRCPAD_EVENT_NONPADDING_RECV] = CIRCPAD_STATE_BURST;
  1872. circ_client_machine->states[CIRCPAD_STATE_BURST].
  1873. next_state[CIRCPAD_EVENT_PADDING_RECV] = CIRCPAD_STATE_BURST;
  1874. /* If we are in burst state, and we send a non-padding cell, then we cancel
  1875. the timer for the next padding cell:
  1876. We dont want to send fake extends when actual extends are going on */
  1877. circ_client_machine->states[CIRCPAD_STATE_BURST].
  1878. next_state[CIRCPAD_EVENT_NONPADDING_SENT] = CIRCPAD_STATE_CANCEL;
  1879. circ_client_machine->states[CIRCPAD_STATE_BURST].
  1880. next_state[CIRCPAD_EVENT_BINS_EMPTY] = CIRCPAD_STATE_END;
  1881. circ_client_machine->states[CIRCPAD_STATE_BURST].token_removal =
  1882. CIRCPAD_TOKEN_REMOVAL_CLOSEST;
  1883. // FIXME: Tune this histogram
  1884. circ_client_machine->states[CIRCPAD_STATE_BURST].histogram_len = 2;
  1885. circ_client_machine->states[CIRCPAD_STATE_BURST].start_usec = 500;
  1886. circ_client_machine->states[CIRCPAD_STATE_BURST].range_usec = 1000000;
  1887. /* We have 5 tokens in the histogram, which means that all circuits will look
  1888. * like they have 7 hops (since we start this machine after the second hop,
  1889. * and tokens are decremented for any valid hops, and fake extends are
  1890. * used after that -- 2+5==7). */
  1891. circ_client_machine->states[CIRCPAD_STATE_BURST].histogram[0] = 5;
  1892. circ_client_machine->states[CIRCPAD_STATE_BURST].histogram_total_tokens = 5;
  1893. circ_client_machine->machine_num = smartlist_len(origin_padding_machines);
  1894. smartlist_add(origin_padding_machines, circ_client_machine);
  1895. }
  1896. static void
  1897. circpad_circ_responder_machine_init(void)
  1898. {
  1899. circpad_machine_spec_t *circ_responder_machine
  1900. = tor_malloc_zero(sizeof(circpad_machine_spec_t));
  1901. /* Shut down the machine after we've sent enough packets */
  1902. circ_responder_machine->should_negotiate_end = 1;
  1903. /* The relay-side doesn't care what hopnum it is, but for consistency,
  1904. * let's match the client */
  1905. circ_responder_machine->target_hopnum = 2;
  1906. circ_responder_machine->is_origin_side = 0;
  1907. /* Start, gap, burst */
  1908. circpad_machine_states_init(circ_responder_machine, 3);
  1909. /* This is the settings of the state machine. In the future we are gonna
  1910. serialize this into the consensus or the torrc */
  1911. /* We transition to the burst state on padding receive and on non-padding
  1912. * recieve */
  1913. circ_responder_machine->states[CIRCPAD_STATE_START].
  1914. next_state[CIRCPAD_EVENT_PADDING_RECV] = CIRCPAD_STATE_BURST;
  1915. circ_responder_machine->states[CIRCPAD_STATE_START].
  1916. next_state[CIRCPAD_EVENT_NONPADDING_RECV] = CIRCPAD_STATE_BURST;
  1917. /* Inside the burst state we _stay_ in the burst state when a non-padding
  1918. * is sent */
  1919. circ_responder_machine->states[CIRCPAD_STATE_BURST].
  1920. next_state[CIRCPAD_EVENT_NONPADDING_SENT] = CIRCPAD_STATE_BURST;
  1921. /* Inside the burst state we transition to the gap state when we receive a
  1922. * padding cell */
  1923. circ_responder_machine->states[CIRCPAD_STATE_BURST].
  1924. next_state[CIRCPAD_EVENT_PADDING_RECV] = CIRCPAD_STATE_GAP;
  1925. /* These describe the padding charasteristics when in burst state */
  1926. /* use_rtt_estimate tries to estimate how long padding cells take to go from
  1927. C->M, and uses that as what as the base of the histogram */
  1928. circ_responder_machine->states[CIRCPAD_STATE_BURST].use_rtt_estimate = 1;
  1929. /* The histogram is 2 bins: an empty one, and infinity */
  1930. circ_responder_machine->states[CIRCPAD_STATE_BURST].histogram_len = 2;
  1931. circ_responder_machine->states[CIRCPAD_STATE_BURST].start_usec = 5000;
  1932. circ_responder_machine->states[CIRCPAD_STATE_BURST].range_usec = 1000000;
  1933. /* During burst state we wait forever for padding to arrive.
  1934. We are waiting for a padding cell from the client to come in, so that we
  1935. respond, and we immitate how extend looks like */
  1936. circ_responder_machine->states[CIRCPAD_STATE_BURST].histogram[0] = 0;
  1937. // Only infinity bin:
  1938. circ_responder_machine->states[CIRCPAD_STATE_BURST].histogram[1] = 1;
  1939. circ_responder_machine->states[CIRCPAD_STATE_BURST].
  1940. histogram_total_tokens = 1;
  1941. /* From the gap state, we _stay_ in the gap state, when we receive padding
  1942. * or non padding */
  1943. circ_responder_machine->states[CIRCPAD_STATE_GAP].
  1944. next_state[CIRCPAD_EVENT_PADDING_RECV] = CIRCPAD_STATE_GAP;
  1945. circ_responder_machine->states[CIRCPAD_STATE_GAP].
  1946. next_state[CIRCPAD_EVENT_NONPADDING_RECV] = CIRCPAD_STATE_GAP;
  1947. /* And from the gap state, we go to the end, when the bins are empty or a
  1948. * non-padding cell is sent */
  1949. circ_responder_machine->states[CIRCPAD_STATE_GAP].
  1950. next_state[CIRCPAD_EVENT_BINS_EMPTY] = CIRCPAD_STATE_END;
  1951. circ_responder_machine->states[CIRCPAD_STATE_GAP].
  1952. next_state[CIRCPAD_EVENT_NONPADDING_SENT] = CIRCPAD_STATE_END;
  1953. // FIXME: Tune this histogram
  1954. /* The gap state is the delay you wait after you receive a padding cell
  1955. before you send a padding response */
  1956. circ_responder_machine->states[CIRCPAD_STATE_GAP].use_rtt_estimate = 1;
  1957. circ_responder_machine->states[CIRCPAD_STATE_GAP].histogram_len = 6;
  1958. circ_responder_machine->states[CIRCPAD_STATE_GAP].start_usec = 5000;
  1959. circ_responder_machine->states[CIRCPAD_STATE_GAP].range_usec = 1000000;
  1960. circ_responder_machine->states[CIRCPAD_STATE_GAP].histogram[0] = 0;
  1961. circ_responder_machine->states[CIRCPAD_STATE_GAP].histogram[1] = 1;
  1962. circ_responder_machine->states[CIRCPAD_STATE_GAP].histogram[2] = 2;
  1963. circ_responder_machine->states[CIRCPAD_STATE_GAP].histogram[3] = 2;
  1964. circ_responder_machine->states[CIRCPAD_STATE_GAP].histogram[4] = 1;
  1965. /* Total number of tokens */
  1966. circ_responder_machine->states[CIRCPAD_STATE_GAP].histogram_total_tokens = 6;
  1967. circ_responder_machine->states[CIRCPAD_STATE_GAP].token_removal =
  1968. CIRCPAD_TOKEN_REMOVAL_CLOSEST_USEC;
  1969. circ_responder_machine->machine_num = smartlist_len(relay_padding_machines);
  1970. smartlist_add(relay_padding_machines, circ_responder_machine);
  1971. }
  1972. #endif
  1973. /**
  1974. * Initialize all of our padding machines.
  1975. *
  1976. * This is called at startup. It sets up some global machines, and then
  1977. * loads some from torrc, and from the tor consensus.
  1978. */
  1979. void
  1980. circpad_machines_init(void)
  1981. {
  1982. tor_assert_nonfatal(origin_padding_machines == NULL);
  1983. tor_assert_nonfatal(relay_padding_machines == NULL);
  1984. origin_padding_machines = smartlist_new();
  1985. relay_padding_machines = smartlist_new();
  1986. // TODO: Parse machines from consensus and torrc
  1987. #ifdef TOR_UNIT_TESTS
  1988. circpad_circ_client_machine_init();
  1989. circpad_circ_responder_machine_init();
  1990. #endif
  1991. }
  1992. /**
  1993. * Free our padding machines
  1994. */
  1995. void
  1996. circpad_machines_free(void)
  1997. {
  1998. if (origin_padding_machines) {
  1999. SMARTLIST_FOREACH(origin_padding_machines,
  2000. circpad_machine_spec_t *,
  2001. m, tor_free(m->states); tor_free(m));
  2002. smartlist_free(origin_padding_machines);
  2003. }
  2004. if (relay_padding_machines) {
  2005. SMARTLIST_FOREACH(relay_padding_machines,
  2006. circpad_machine_spec_t *,
  2007. m, tor_free(m->states); tor_free(m));
  2008. smartlist_free(relay_padding_machines);
  2009. }
  2010. }
  2011. /**
  2012. * Check the Protover info to see if a node supports padding.
  2013. */
  2014. static bool
  2015. circpad_node_supports_padding(const node_t *node)
  2016. {
  2017. if (node->rs) {
  2018. log_fn(LOG_INFO, LD_CIRC, "Checking padding: %s",
  2019. node->rs->pv.supports_padding ? "supported" : "unsupported");
  2020. return node->rs->pv.supports_padding;
  2021. }
  2022. log_fn(LOG_INFO, LD_CIRC, "Empty routerstatus in padding check");
  2023. return 0;
  2024. }
  2025. /**
  2026. * Get a node_t for the nth hop in our circuit, starting from 1.
  2027. *
  2028. * Returns node_t from the consensus for that hop, if it is opened.
  2029. * Otherwise returns NULL.
  2030. */
  2031. static const node_t *
  2032. circuit_get_nth_node(origin_circuit_t *circ, int hop)
  2033. {
  2034. crypt_path_t *iter = circuit_get_cpath_hop(circ, hop);
  2035. if (!iter || iter->state != CPATH_STATE_OPEN)
  2036. return NULL;
  2037. return node_get_by_id(iter->extend_info->identity_digest);
  2038. }
  2039. /**
  2040. * Return true if a particular circuit supports padding
  2041. * at the desired hop.
  2042. */
  2043. static bool
  2044. circpad_circuit_supports_padding(origin_circuit_t *circ,
  2045. int target_hopnum)
  2046. {
  2047. const node_t *hop;
  2048. if (!(hop = circuit_get_nth_node(circ, target_hopnum))) {
  2049. return 0;
  2050. }
  2051. return circpad_node_supports_padding(hop);
  2052. }
  2053. /**
  2054. * Try to negotiate padding.
  2055. *
  2056. * Returns -1 on error, 0 on success.
  2057. */
  2058. signed_error_t
  2059. circpad_negotiate_padding(origin_circuit_t *circ,
  2060. circpad_machine_num_t machine,
  2061. uint8_t target_hopnum,
  2062. uint8_t command)
  2063. {
  2064. circpad_negotiate_t type;
  2065. cell_t cell;
  2066. ssize_t len;
  2067. /* Check that the target hop lists support for padding in
  2068. * its ProtoVer fields */
  2069. if (!circpad_circuit_supports_padding(circ, target_hopnum)) {
  2070. return -1;
  2071. }
  2072. memset(&cell, 0, sizeof(cell_t));
  2073. memset(&type, 0, sizeof(circpad_negotiate_t));
  2074. // This gets reset to RELAY_EARLY appropriately by
  2075. // relay_send_command_from_edge_. At least, it looks that way.
  2076. // QQQ-MP-AP: Verify that.
  2077. cell.command = CELL_RELAY;
  2078. circpad_negotiate_set_command(&type, command);
  2079. circpad_negotiate_set_version(&type, 0);
  2080. circpad_negotiate_set_machine_type(&type, machine);
  2081. if ((len = circpad_negotiate_encode(cell.payload, CELL_PAYLOAD_SIZE,
  2082. &type)) < 0)
  2083. return -1;
  2084. log_fn(LOG_INFO,LD_CIRC, "Negotiating padding on circuit %u",
  2085. circ->global_identifier);
  2086. return circpad_send_command_to_hop(circ, target_hopnum,
  2087. RELAY_COMMAND_PADDING_NEGOTIATE,
  2088. cell.payload, len);
  2089. }
  2090. /**
  2091. * Try to negotiate padding.
  2092. *
  2093. * Returns 1 if successful (or already set up), 0 otherwise.
  2094. */
  2095. bool
  2096. circpad_padding_negotiated(circuit_t *circ,
  2097. circpad_machine_num_t machine,
  2098. uint8_t command,
  2099. uint8_t response)
  2100. {
  2101. circpad_negotiated_t type;
  2102. cell_t cell;
  2103. ssize_t len;
  2104. memset(&cell, 0, sizeof(cell_t));
  2105. memset(&type, 0, sizeof(circpad_negotiated_t));
  2106. // This gets reset to RELAY_EARLY appropriately by
  2107. // relay_send_command_from_edge_. At least, it looks that way.
  2108. // QQQ-MP-AP: Verify that.
  2109. cell.command = CELL_RELAY;
  2110. circpad_negotiated_set_command(&type, command);
  2111. circpad_negotiated_set_response(&type, response);
  2112. circpad_negotiated_set_version(&type, 0);
  2113. circpad_negotiated_set_machine_type(&type, machine);
  2114. if ((len = circpad_negotiated_encode(cell.payload, CELL_PAYLOAD_SIZE,
  2115. &type)) < 0)
  2116. return 0;
  2117. /* Use relay_send because we're from the middle to the origin. We don't
  2118. * need to specify a target hop or layer_hint. */
  2119. return relay_send_command_from_edge(0, circ,
  2120. RELAY_COMMAND_PADDING_NEGOTIATED,
  2121. (void*)cell.payload,
  2122. (size_t)len, NULL) == 0;
  2123. }
  2124. /**
  2125. * Parse and react to a padding_negotiate cell.
  2126. *
  2127. * This is called at the middle node upon receipt of the client's choice of
  2128. * state machine, so that it can use the requested state machine index, if
  2129. * it is available.
  2130. *
  2131. * Returns -1 on error, 0 on success.
  2132. */
  2133. signed_error_t
  2134. circpad_handle_padding_negotiate(circuit_t *circ, cell_t *cell)
  2135. {
  2136. int retval = 0;
  2137. circpad_negotiate_t *negotiate;
  2138. if (CIRCUIT_IS_ORIGIN(circ)) {
  2139. log_fn(LOG_WARN, LD_PROTOCOL,
  2140. "Padding negotiate cell unsupported at origin.");
  2141. return -1;
  2142. }
  2143. if (circpad_negotiate_parse(&negotiate, cell->payload+RELAY_HEADER_SIZE,
  2144. CELL_PAYLOAD_SIZE-RELAY_HEADER_SIZE) < 0) {
  2145. log_fn(LOG_WARN, LD_CIRC,
  2146. "Received malformed PADDING_NEGOTIATE cell; dropping.");
  2147. return -1;
  2148. }
  2149. if (negotiate->command == CIRCPAD_COMMAND_STOP) {
  2150. /* Free the machine corresponding to this machine type */
  2151. free_circ_machineinfos_with_machine_num(circ, negotiate->machine_type);
  2152. log_fn(LOG_WARN, LD_CIRC,
  2153. "Received circuit padding stop command for unknown machine.");
  2154. goto err;
  2155. } else if (negotiate->command == CIRCPAD_COMMAND_START) {
  2156. SMARTLIST_FOREACH_BEGIN(relay_padding_machines,
  2157. const circpad_machine_spec_t *, m) {
  2158. if (m->machine_num == negotiate->machine_type) {
  2159. circpad_setup_machine_on_circ(circ, m);
  2160. goto done;
  2161. }
  2162. } SMARTLIST_FOREACH_END(m);
  2163. }
  2164. err:
  2165. retval = -1;
  2166. done:
  2167. circpad_padding_negotiated(circ, negotiate->machine_type,
  2168. negotiate->command,
  2169. (retval == 0) ? CIRCPAD_RESPONSE_OK : CIRCPAD_RESPONSE_ERR);
  2170. circpad_negotiate_free(negotiate);
  2171. return retval;
  2172. }
  2173. /**
  2174. * Parse and react to a padding_negotiated cell.
  2175. *
  2176. * This is called at the origin upon receipt of the middle's response
  2177. * to our choice of state machine.
  2178. *
  2179. * Returns -1 on error, 0 on success.
  2180. */
  2181. signed_error_t
  2182. circpad_handle_padding_negotiated(circuit_t *circ, cell_t *cell,
  2183. crypt_path_t *layer_hint)
  2184. {
  2185. circpad_negotiated_t *negotiated;
  2186. if (!CIRCUIT_IS_ORIGIN(circ)) {
  2187. log_fn(LOG_WARN, LD_PROTOCOL,
  2188. "Padding negotiated cell unsupported at non-origin.");
  2189. return -1;
  2190. }
  2191. /* Verify this came from the expected hop */
  2192. if (!circpad_padding_is_from_expected_hop(circ, layer_hint)) {
  2193. log_fn(LOG_WARN, LD_PROTOCOL,
  2194. "Padding negotiated cell from wrong hop!");
  2195. return -1;
  2196. }
  2197. if (circpad_negotiated_parse(&negotiated, cell->payload+RELAY_HEADER_SIZE,
  2198. CELL_PAYLOAD_SIZE-RELAY_HEADER_SIZE) < 0) {
  2199. log_fn(LOG_WARN, LD_CIRC,
  2200. "Received malformed PADDING_NEGOTIATED cell; "
  2201. "dropping.");
  2202. return -1;
  2203. }
  2204. if (negotiated->command == CIRCPAD_COMMAND_STOP) {
  2205. /* There may not be a padding_info here if we shut down the
  2206. * machine in circpad_shutdown_old_machines(). Or, if
  2207. * circpad_add_matching_matchines() added a new machine,
  2208. * there may be a padding_machine for a different machine num
  2209. * than this response. */
  2210. free_circ_machineinfos_with_machine_num(circ, negotiated->machine_type);
  2211. } else if (negotiated->command == CIRCPAD_COMMAND_START &&
  2212. negotiated->response == CIRCPAD_RESPONSE_ERR) {
  2213. // This can happen due to consensus drift.. free the machines
  2214. // and be sad
  2215. free_circ_machineinfos_with_machine_num(circ, negotiated->machine_type);
  2216. TO_ORIGIN_CIRCUIT(circ)->padding_negotiation_failed = 1;
  2217. log_fn(LOG_INFO, LD_CIRC,
  2218. "Middle node did not accept our padding request.");
  2219. }
  2220. circpad_negotiated_free(negotiated);
  2221. return 0;
  2222. }
  2223. /* Serialization */
  2224. // TODO: Should we use keyword=value here? Are there helpers for that?
  2225. #if 0
  2226. static void
  2227. circpad_state_serialize(const circpad_state_t *state,
  2228. smartlist_t *chunks)
  2229. {
  2230. smartlist_add_asprintf(chunks, " %u", state->histogram[0]);
  2231. for (int i = 1; i < state->histogram_len; i++) {
  2232. smartlist_add_asprintf(chunks, ",%u",
  2233. state->histogram[i]);
  2234. }
  2235. smartlist_add_asprintf(chunks, " 0x%x",
  2236. state->transition_cancel_events);
  2237. for (int i = 0; i < CIRCPAD_NUM_STATES; i++) {
  2238. smartlist_add_asprintf(chunks, ",0x%x",
  2239. state->transition_events[i]);
  2240. }
  2241. smartlist_add_asprintf(chunks, " %u %u",
  2242. state->use_rtt_estimate,
  2243. state->token_removal);
  2244. }
  2245. char *
  2246. circpad_machine_spec_to_string(const circpad_machine_spec_t *machine)
  2247. {
  2248. smartlist_t *chunks = smartlist_new();
  2249. char *out;
  2250. (void)machine;
  2251. circpad_state_serialize(&machine->start, chunks);
  2252. circpad_state_serialize(&machine->gap, chunks);
  2253. circpad_state_serialize(&machine->burst, chunks);
  2254. out = smartlist_join_strings(chunks, "", 0, NULL);
  2255. SMARTLIST_FOREACH(chunks, char *, cp, tor_free(cp));
  2256. smartlist_free(chunks);
  2257. return out;
  2258. }
  2259. // XXX: Writeme
  2260. const circpad_machine_spec_t *
  2261. circpad_string_to_machine(const char *str)
  2262. {
  2263. (void)str;
  2264. return NULL;
  2265. }
  2266. #endif