circuitpadding.c 100 KB

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