rephist.c 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364
  1. /* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  2. * Copyright (c) 2007-2008, The Tor Project, Inc. */
  3. /* See LICENSE for licensing information */
  4. /* $Id$ */
  5. const char rephist_c_id[] =
  6. "$Id$";
  7. /**
  8. * \file rephist.c
  9. * \brief Basic history and "reputation" functionality to remember
  10. * which servers have worked in the past, how much bandwidth we've
  11. * been using, which ports we tend to want, and so on.
  12. **/
  13. #include "or.h"
  14. #include "ht.h"
  15. static void bw_arrays_init(void);
  16. static void predicted_ports_init(void);
  17. static void hs_usage_init(void);
  18. /** Total number of bytes currently allocated in fields used by rephist.c. */
  19. uint64_t rephist_total_alloc=0;
  20. /** Number of or_history_t objects currently allocated. */
  21. uint32_t rephist_total_num=0;
  22. /** If the total weighted run count of all runs for a router ever falls
  23. * below this amount, the router can be treated as having 0 MTBF. */
  24. #define STABILITY_EPSILON 0.0001
  25. /** Value by which to discount all old intervals for MTBF purposses. This
  26. * is compounded every STABILITY_INTERVAL. */
  27. #define STABILITY_ALPHA 0.95
  28. /** Interval at which to discount all old intervals for MTBF purposes. */
  29. #define STABILITY_INTERVAL (12*60*60)
  30. /* (This combination of ALPHA, INTERVAL, and EPSILON makes it so that an
  31. * interval that just ended counts twice as much as one that ended a week ago,
  32. * 20X as much as one that ended a month ago, and routers that have had no
  33. * uptime data for about half a year will get forgotten.) */
  34. /** History of an OR-\>OR link. */
  35. typedef struct link_history_t {
  36. /** When did we start tracking this list? */
  37. time_t since;
  38. /** When did we most recently note a change to this link */
  39. time_t changed;
  40. /** How many times did extending from OR1 to OR2 succeed? */
  41. unsigned long n_extend_ok;
  42. /** How many times did extending from OR1 to OR2 fail? */
  43. unsigned long n_extend_fail;
  44. } link_history_t;
  45. /** History of an OR. */
  46. typedef struct or_history_t {
  47. /** When did we start tracking this OR? */
  48. time_t since;
  49. /** When did we most recently note a change to this OR? */
  50. time_t changed;
  51. /** How many times did we successfully connect? */
  52. unsigned long n_conn_ok;
  53. /** How many times did we try to connect and fail?*/
  54. unsigned long n_conn_fail;
  55. /** How many seconds have we been connected to this OR before
  56. * 'up_since'? */
  57. unsigned long uptime;
  58. /** How many seconds have we been unable to connect to this OR before
  59. * 'down_since'? */
  60. unsigned long downtime;
  61. /** If nonzero, we have been connected since this time. */
  62. time_t up_since;
  63. /** If nonzero, we have been unable to connect since this time. */
  64. time_t down_since;
  65. /* === For MTBF tracking: */
  66. /** Weighted sum total of all times that this router has been online.
  67. */
  68. unsigned long weighted_run_length;
  69. /** If the router is now online (according to stability-checking rules),
  70. * when did it come online? */
  71. time_t start_of_run;
  72. /** Sum of weights for runs in weighted_run_length. */
  73. double total_run_weights;
  74. /* === For fractional uptime tracking: */
  75. time_t start_of_downtime;
  76. unsigned long weighted_uptime;
  77. unsigned long total_weighted_time;
  78. /** Map from hex OR2 identity digest to a link_history_t for the link
  79. * from this OR to OR2. */
  80. digestmap_t *link_history_map;
  81. } or_history_t;
  82. /** When did we last multiply all routers' weighted_run_length and
  83. * total_run_weights by STABILITY_ALPHA? */
  84. static time_t stability_last_downrated = 0;
  85. /** */
  86. static time_t started_tracking_stability = 0;
  87. /** Map from hex OR identity digest to or_history_t. */
  88. static digestmap_t *history_map = NULL;
  89. /** Return the or_history_t for the OR with identity digest <b>id</b>,
  90. * creating it if necessary. */
  91. static or_history_t *
  92. get_or_history(const char* id)
  93. {
  94. or_history_t *hist;
  95. if (tor_mem_is_zero(id, DIGEST_LEN))
  96. return NULL;
  97. hist = digestmap_get(history_map, id);
  98. if (!hist) {
  99. hist = tor_malloc_zero(sizeof(or_history_t));
  100. rephist_total_alloc += sizeof(or_history_t);
  101. rephist_total_num++;
  102. hist->link_history_map = digestmap_new();
  103. hist->since = hist->changed = time(NULL);
  104. digestmap_set(history_map, id, hist);
  105. }
  106. return hist;
  107. }
  108. /** Return the link_history_t for the link from the first named OR to
  109. * the second, creating it if necessary. (ORs are identified by
  110. * identity digest.)
  111. */
  112. static link_history_t *
  113. get_link_history(const char *from_id, const char *to_id)
  114. {
  115. or_history_t *orhist;
  116. link_history_t *lhist;
  117. orhist = get_or_history(from_id);
  118. if (!orhist)
  119. return NULL;
  120. if (tor_mem_is_zero(to_id, DIGEST_LEN))
  121. return NULL;
  122. lhist = (link_history_t*) digestmap_get(orhist->link_history_map, to_id);
  123. if (!lhist) {
  124. lhist = tor_malloc_zero(sizeof(link_history_t));
  125. rephist_total_alloc += sizeof(link_history_t);
  126. lhist->since = lhist->changed = time(NULL);
  127. digestmap_set(orhist->link_history_map, to_id, lhist);
  128. }
  129. return lhist;
  130. }
  131. /** Helper: free storage held by a single link history entry. */
  132. static void
  133. _free_link_history(void *val)
  134. {
  135. rephist_total_alloc -= sizeof(link_history_t);
  136. tor_free(val);
  137. }
  138. /** Helper: free storage held by a single OR history entry. */
  139. static void
  140. free_or_history(void *_hist)
  141. {
  142. or_history_t *hist = _hist;
  143. digestmap_free(hist->link_history_map, _free_link_history);
  144. rephist_total_alloc -= sizeof(or_history_t);
  145. rephist_total_num--;
  146. tor_free(hist);
  147. }
  148. /** Update an or_history_t object <b>hist</b> so that its uptime/downtime
  149. * count is up-to-date as of <b>when</b>.
  150. */
  151. static void
  152. update_or_history(or_history_t *hist, time_t when)
  153. {
  154. tor_assert(hist);
  155. if (hist->up_since) {
  156. tor_assert(!hist->down_since);
  157. hist->uptime += (when - hist->up_since);
  158. hist->up_since = when;
  159. } else if (hist->down_since) {
  160. hist->downtime += (when - hist->down_since);
  161. hist->down_since = when;
  162. }
  163. }
  164. /** Initialize the static data structures for tracking history. */
  165. void
  166. rep_hist_init(void)
  167. {
  168. history_map = digestmap_new();
  169. bw_arrays_init();
  170. predicted_ports_init();
  171. hs_usage_init();
  172. }
  173. /** Helper: note that we are no longer connected to the router with history
  174. * <b>hist</b>. If <b>failed</b>, the connection failed; otherwise, it was
  175. * closed correctly. */
  176. static void
  177. mark_or_down(or_history_t *hist, time_t when, int failed)
  178. {
  179. if (hist->up_since) {
  180. hist->uptime += (when - hist->up_since);
  181. hist->up_since = 0;
  182. }
  183. if (failed && !hist->down_since) {
  184. hist->down_since = when;
  185. }
  186. }
  187. /** Helper: note that we are connected to the router with history
  188. * <b>hist</b>. */
  189. static void
  190. mark_or_up(or_history_t *hist, time_t when)
  191. {
  192. if (hist->down_since) {
  193. hist->downtime += (when - hist->down_since);
  194. hist->down_since = 0;
  195. }
  196. if (!hist->up_since) {
  197. hist->up_since = when;
  198. }
  199. }
  200. /** Remember that an attempt to connect to the OR with identity digest
  201. * <b>id</b> failed at <b>when</b>.
  202. */
  203. void
  204. rep_hist_note_connect_failed(const char* id, time_t when)
  205. {
  206. or_history_t *hist;
  207. hist = get_or_history(id);
  208. if (!hist)
  209. return;
  210. ++hist->n_conn_fail;
  211. mark_or_down(hist, when, 1);
  212. hist->changed = when;
  213. }
  214. /** Remember that an attempt to connect to the OR with identity digest
  215. * <b>id</b> succeeded at <b>when</b>.
  216. */
  217. void
  218. rep_hist_note_connect_succeeded(const char* id, time_t when)
  219. {
  220. or_history_t *hist;
  221. hist = get_or_history(id);
  222. if (!hist)
  223. return;
  224. ++hist->n_conn_ok;
  225. mark_or_up(hist, when);
  226. hist->changed = when;
  227. }
  228. /** Remember that we intentionally closed our connection to the OR
  229. * with identity digest <b>id</b> at <b>when</b>.
  230. */
  231. void
  232. rep_hist_note_disconnect(const char* id, time_t when)
  233. {
  234. or_history_t *hist;
  235. hist = get_or_history(id);
  236. if (!hist)
  237. return;
  238. mark_or_down(hist, when, 0);
  239. hist->changed = when;
  240. }
  241. /** Remember that our connection to the OR with identity digest
  242. * <b>id</b> had an error and stopped working at <b>when</b>.
  243. */
  244. void
  245. rep_hist_note_connection_died(const char* id, time_t when)
  246. {
  247. or_history_t *hist;
  248. if (!id) {
  249. /* If conn has no identity, it didn't complete its handshake, or something
  250. * went wrong. Ignore it.
  251. */
  252. return;
  253. }
  254. hist = get_or_history(id);
  255. if (!hist)
  256. return;
  257. mark_or_down(hist, when, 1);
  258. hist->changed = when;
  259. }
  260. /** We have just decided that this router with identity digest <b>id</b> is
  261. * reachable, meaning we will give it a "Running" flag for the next while. */
  262. void
  263. rep_hist_note_router_reachable(const char *id, time_t when)
  264. {
  265. or_history_t *hist = get_or_history(id);
  266. int was_in_run = 1;
  267. char tbuf[ISO_TIME_LEN+1];
  268. tor_assert(hist);
  269. if (!started_tracking_stability)
  270. started_tracking_stability = time(NULL);
  271. if (!hist->start_of_run) {
  272. hist->start_of_run = when;
  273. was_in_run = 0;
  274. }
  275. if (hist->start_of_downtime) {
  276. long down_length;
  277. format_local_iso_time(tbuf, hist->start_of_downtime);
  278. log_info(LD_HIST, "Router %s is now Running; it had been down since %s.",
  279. hex_str(id, DIGEST_LEN), tbuf);
  280. if (was_in_run)
  281. log_info(LD_HIST, " (Paradoxically, it was already Running too.)");
  282. down_length = when - hist->start_of_downtime;
  283. hist->total_weighted_time += down_length;
  284. hist->start_of_downtime = 0;
  285. } else {
  286. format_local_iso_time(tbuf, hist->start_of_run);
  287. if (was_in_run)
  288. log_debug(LD_HIST, "Router %s is still Running; it has been Running "
  289. "since %s", hex_str(id, DIGEST_LEN), tbuf);
  290. else
  291. log_info(LD_HIST,"Router %s is now Running; it was previously untracked",
  292. hex_str(id, DIGEST_LEN));
  293. }
  294. }
  295. /** We have just decided that this router is unreachable, meaning
  296. * we are taking away its "Running" flag. */
  297. void
  298. rep_hist_note_router_unreachable(const char *id, time_t when)
  299. {
  300. or_history_t *hist = get_or_history(id);
  301. char tbuf[ISO_TIME_LEN+1];
  302. int was_running = 0;
  303. if (!started_tracking_stability)
  304. started_tracking_stability = time(NULL);
  305. tor_assert(hist);
  306. if (hist->start_of_run) {
  307. /*XXXX We could treat failed connections differently from failed
  308. * connect attempts. */
  309. long run_length = when - hist->start_of_run;
  310. format_local_iso_time(tbuf, hist->start_of_run);
  311. hist->weighted_run_length += run_length;
  312. hist->total_run_weights += 1.0;
  313. hist->start_of_run = 0;
  314. hist->weighted_uptime += run_length;
  315. hist->total_weighted_time += run_length;
  316. was_running = 1;
  317. log_info(LD_HIST, "Router %s is now non-Running: it had previously been "
  318. "Running since %s. Its total weighted uptime is %lu/%lu.",
  319. hex_str(id, DIGEST_LEN), tbuf, hist->weighted_uptime,
  320. hist->total_weighted_time);
  321. }
  322. if (!hist->start_of_downtime) {
  323. hist->start_of_downtime = when;
  324. if (!was_running)
  325. log_info(LD_HIST, "Router %s is now non-Running; it was previously "
  326. "untracked.", hex_str(id, DIGEST_LEN));
  327. } else {
  328. if (!was_running) {
  329. format_local_iso_time(tbuf, hist->start_of_downtime);
  330. log_info(LD_HIST, "Router %s is still non-Running; it has been "
  331. "non-Running since %s.", hex_str(id, DIGEST_LEN), tbuf);
  332. }
  333. }
  334. }
  335. /** Helper: Discount all old MTBF data, if it is time to do so. Return
  336. * the time at which we should next discount MTBF data. */
  337. time_t
  338. rep_hist_downrate_old_runs(time_t now)
  339. {
  340. digestmap_iter_t *orhist_it;
  341. const char *digest1;
  342. or_history_t *hist;
  343. void *hist_p;
  344. double alpha = 1.0;
  345. if (!history_map)
  346. history_map = digestmap_new();
  347. if (!stability_last_downrated)
  348. stability_last_downrated = now;
  349. if (stability_last_downrated + STABILITY_INTERVAL > now)
  350. return stability_last_downrated + STABILITY_INTERVAL;
  351. /* Okay, we should downrate the data. By how much? */
  352. while (stability_last_downrated + STABILITY_INTERVAL < now) {
  353. stability_last_downrated += STABILITY_INTERVAL;
  354. alpha *= STABILITY_ALPHA;
  355. }
  356. log_info(LD_HIST, "Discounting all old stability info by a factor of %lf",
  357. alpha);
  358. /* Multiply every w_r_l, t_r_w pair by alpha. */
  359. for (orhist_it = digestmap_iter_init(history_map);
  360. !digestmap_iter_done(orhist_it);
  361. orhist_it = digestmap_iter_next(history_map,orhist_it)) {
  362. digestmap_iter_get(orhist_it, &digest1, &hist_p);
  363. hist = hist_p;
  364. hist->weighted_run_length =
  365. (unsigned long)(hist->weighted_run_length * alpha);
  366. hist->total_run_weights *= alpha;
  367. hist->weighted_uptime = (unsigned long)(hist->weighted_uptime * alpha);
  368. hist->total_weighted_time = (unsigned long)
  369. (hist->total_weighted_time * alpha);
  370. }
  371. return stability_last_downrated + STABILITY_INTERVAL;
  372. }
  373. /** Helper: Return the weighted MTBF of the router with history <b>hist</b>. */
  374. static double
  375. get_stability(or_history_t *hist, time_t when)
  376. {
  377. unsigned long total = hist->weighted_run_length;
  378. double total_weights = hist->total_run_weights;
  379. if (hist->start_of_run) {
  380. /* We're currently in a run. Let total and total_weights hold the values
  381. * they would hold if the current run were to end now. */
  382. total += (when-hist->start_of_run);
  383. total_weights += 1.0;
  384. }
  385. if (total_weights < STABILITY_EPSILON) {
  386. /* Round down to zero, and avoid divide-by-zero. */
  387. return 0.0;
  388. }
  389. return total / total_weights;
  390. }
  391. /** Return the total amount of time we've been observing, with each run of
  392. * time downrated by the appropriate factor. */
  393. static long
  394. get_total_weighted_time(or_history_t *hist, time_t when)
  395. {
  396. long total = hist->total_weighted_time;
  397. if (hist->start_of_run) {
  398. total += (when - hist->start_of_run);
  399. } else if (hist->start_of_downtime) {
  400. total += (when - hist->start_of_downtime);
  401. }
  402. return total;
  403. }
  404. /** Helper: Return the weighted percent-of-time-online of the router with
  405. * history <b>hist</b>. */
  406. static double
  407. get_weighted_fractional_uptime(or_history_t *hist, time_t when)
  408. {
  409. unsigned long total = hist->total_weighted_time;
  410. unsigned long up = hist->weighted_uptime;
  411. if (hist->start_of_run) {
  412. long run_length = (when - hist->start_of_run);
  413. up += run_length;
  414. total += run_length;
  415. } else if (hist->start_of_downtime) {
  416. total += (when - hist->start_of_downtime);
  417. }
  418. if (!total) {
  419. /* Avoid calling anybody's uptime infinity (which should be impossible if
  420. * the code is working), or NaN (which can happen for any router we haven't
  421. * observed up or down yet). */
  422. return 0.0;
  423. }
  424. return ((double) up) / total;
  425. }
  426. /** Return an estimated MTBF for the router whose identity digest is
  427. * <b>id</b>. Return 0 if the router is unknown. */
  428. double
  429. rep_hist_get_stability(const char *id, time_t when)
  430. {
  431. or_history_t *hist = get_or_history(id);
  432. if (!hist)
  433. return 0.0;
  434. return get_stability(hist, when);
  435. }
  436. /** Return an estimated percent-of-time-online for the router whose identity
  437. * digest is <b>id</b>. Return 0 if the router is unknown. */
  438. double
  439. rep_hist_get_weighted_fractional_uptime(const char *id, time_t when)
  440. {
  441. or_history_t *hist = get_or_history(id);
  442. if (!hist)
  443. return 0.0;
  444. return get_weighted_fractional_uptime(hist, when);
  445. }
  446. /** Return a number representing how long we've known about the router whose
  447. * digest is <b>id</b>. Return 0 if the router is unknown.
  448. *
  449. * Be careful: this measure incresases monotonically as we know the router for
  450. * longer and longer, but it doesn't increase linearly.
  451. */
  452. long
  453. rep_hist_get_weighted_time_known(const char *id, time_t when)
  454. {
  455. or_history_t *hist = get_or_history(id);
  456. if (!hist)
  457. return 0;
  458. return get_total_weighted_time(hist, when);
  459. }
  460. /** Return true if we've been measuring MTBFs for long enough to
  461. * pronounce on Stability. */
  462. int
  463. rep_hist_have_measured_enough_stability(void)
  464. {
  465. /* XXXX021 This doesn't do so well when we change our opinion
  466. * as to whether we're tracking router stability. */
  467. return started_tracking_stability < time(NULL) - 4*60*60;
  468. }
  469. /** Remember that we successfully extended from the OR with identity
  470. * digest <b>from_id</b> to the OR with identity digest
  471. * <b>to_name</b>.
  472. */
  473. void
  474. rep_hist_note_extend_succeeded(const char *from_id, const char *to_id)
  475. {
  476. link_history_t *hist;
  477. /* log_fn(LOG_WARN, "EXTEND SUCCEEDED: %s->%s",from_name,to_name); */
  478. hist = get_link_history(from_id, to_id);
  479. if (!hist)
  480. return;
  481. ++hist->n_extend_ok;
  482. hist->changed = time(NULL);
  483. }
  484. /** Remember that we tried to extend from the OR with identity digest
  485. * <b>from_id</b> to the OR with identity digest <b>to_name</b>, but
  486. * failed.
  487. */
  488. void
  489. rep_hist_note_extend_failed(const char *from_id, const char *to_id)
  490. {
  491. link_history_t *hist;
  492. /* log_fn(LOG_WARN, "EXTEND FAILED: %s->%s",from_name,to_name); */
  493. hist = get_link_history(from_id, to_id);
  494. if (!hist)
  495. return;
  496. ++hist->n_extend_fail;
  497. hist->changed = time(NULL);
  498. }
  499. /** Log all the reliability data we have remembered, with the chosen
  500. * severity.
  501. */
  502. void
  503. rep_hist_dump_stats(time_t now, int severity)
  504. {
  505. digestmap_iter_t *lhist_it;
  506. digestmap_iter_t *orhist_it;
  507. const char *name1, *name2, *digest1, *digest2;
  508. char hexdigest1[HEX_DIGEST_LEN+1];
  509. or_history_t *or_history;
  510. link_history_t *link_history;
  511. void *or_history_p, *link_history_p;
  512. double uptime;
  513. char buffer[2048];
  514. size_t len;
  515. int ret;
  516. unsigned long upt, downt;
  517. routerinfo_t *r;
  518. rep_history_clean(now - get_options()->RephistTrackTime);
  519. log(severity, LD_HIST, "--------------- Dumping history information:");
  520. for (orhist_it = digestmap_iter_init(history_map);
  521. !digestmap_iter_done(orhist_it);
  522. orhist_it = digestmap_iter_next(history_map,orhist_it)) {
  523. double s;
  524. long stability;
  525. digestmap_iter_get(orhist_it, &digest1, &or_history_p);
  526. or_history = (or_history_t*) or_history_p;
  527. if ((r = router_get_by_digest(digest1)))
  528. name1 = r->nickname;
  529. else
  530. name1 = "(unknown)";
  531. base16_encode(hexdigest1, sizeof(hexdigest1), digest1, DIGEST_LEN);
  532. update_or_history(or_history, now);
  533. upt = or_history->uptime;
  534. downt = or_history->downtime;
  535. s = get_stability(or_history, now);
  536. stability = (long)s;
  537. if (upt+downt) {
  538. uptime = ((double)upt) / (upt+downt);
  539. } else {
  540. uptime=1.0;
  541. }
  542. log(severity, LD_HIST,
  543. "OR %s [%s]: %ld/%ld good connections; uptime %ld/%ld sec (%.2f%%); "
  544. "wmtbf %lu:%02lu:%02lu",
  545. name1, hexdigest1,
  546. or_history->n_conn_ok, or_history->n_conn_fail+or_history->n_conn_ok,
  547. upt, upt+downt, uptime*100.0,
  548. stability/3600, (stability/60)%60, stability%60);
  549. if (!digestmap_isempty(or_history->link_history_map)) {
  550. strlcpy(buffer, " Extend attempts: ", sizeof(buffer));
  551. len = strlen(buffer);
  552. for (lhist_it = digestmap_iter_init(or_history->link_history_map);
  553. !digestmap_iter_done(lhist_it);
  554. lhist_it = digestmap_iter_next(or_history->link_history_map,
  555. lhist_it)) {
  556. digestmap_iter_get(lhist_it, &digest2, &link_history_p);
  557. if ((r = router_get_by_digest(digest2)))
  558. name2 = r->nickname;
  559. else
  560. name2 = "(unknown)";
  561. link_history = (link_history_t*) link_history_p;
  562. ret = tor_snprintf(buffer+len, 2048-len, "%s(%ld/%ld); ", name2,
  563. link_history->n_extend_ok,
  564. link_history->n_extend_ok+link_history->n_extend_fail);
  565. if (ret<0)
  566. break;
  567. else
  568. len += ret;
  569. }
  570. log(severity, LD_HIST, "%s", buffer);
  571. }
  572. }
  573. }
  574. /** Remove history info for routers/links that haven't changed since
  575. * <b>before</b>.
  576. */
  577. void
  578. rep_history_clean(time_t before)
  579. {
  580. int authority = authdir_mode(get_options());
  581. or_history_t *or_history;
  582. link_history_t *link_history;
  583. void *or_history_p, *link_history_p;
  584. digestmap_iter_t *orhist_it, *lhist_it;
  585. const char *d1, *d2;
  586. orhist_it = digestmap_iter_init(history_map);
  587. while (!digestmap_iter_done(orhist_it)) {
  588. int remove;
  589. digestmap_iter_get(orhist_it, &d1, &or_history_p);
  590. or_history = or_history_p;
  591. remove = authority ? (or_history->total_run_weights < STABILITY_EPSILON &&
  592. !or_history->start_of_run)
  593. : (or_history->changed < before);
  594. if (remove) {
  595. orhist_it = digestmap_iter_next_rmv(history_map, orhist_it);
  596. free_or_history(or_history);
  597. continue;
  598. }
  599. for (lhist_it = digestmap_iter_init(or_history->link_history_map);
  600. !digestmap_iter_done(lhist_it); ) {
  601. digestmap_iter_get(lhist_it, &d2, &link_history_p);
  602. link_history = link_history_p;
  603. if (link_history->changed < before) {
  604. lhist_it = digestmap_iter_next_rmv(or_history->link_history_map,
  605. lhist_it);
  606. rephist_total_alloc -= sizeof(link_history_t);
  607. tor_free(link_history);
  608. continue;
  609. }
  610. lhist_it = digestmap_iter_next(or_history->link_history_map,lhist_it);
  611. }
  612. orhist_it = digestmap_iter_next(history_map, orhist_it);
  613. }
  614. }
  615. /** Write MTBF data to disk. Returns 0 on success, negative on failure. */
  616. int
  617. rep_hist_record_mtbf_data(void)
  618. {
  619. char time_buf[ISO_TIME_LEN+1];
  620. digestmap_iter_t *orhist_it;
  621. const char *digest;
  622. void *or_history_p;
  623. or_history_t *hist;
  624. open_file_t *open_file = NULL;
  625. FILE *f;
  626. {
  627. char *filename = get_datadir_fname("router-stability");
  628. f = start_writing_to_stdio_file(filename, OPEN_FLAGS_REPLACE|O_TEXT, 0600,
  629. &open_file);
  630. tor_free(filename);
  631. if (!f)
  632. return -1;
  633. }
  634. /* File format is:
  635. * FormatLine *KeywordLine Data
  636. *
  637. * FormatLine = "format 1" NL
  638. * KeywordLine = Keyword SP Arguments NL
  639. * Data = "data" NL *RouterMTBFLine "." NL
  640. * RouterMTBFLine = Fingerprint SP WeightedRunLen SP
  641. * TotalRunWeights [SP S=StartRunTime] NL
  642. */
  643. #define PUT(s) STMT_BEGIN if (fputs((s),f)<0) goto err; STMT_END
  644. #define PRINTF(args) STMT_BEGIN if (fprintf args <0) goto err; STMT_END
  645. PUT("format 2\n");
  646. format_iso_time(time_buf, time(NULL));
  647. PRINTF((f, "stored-at %s\n", time_buf));
  648. if (started_tracking_stability) {
  649. format_iso_time(time_buf, started_tracking_stability);
  650. PRINTF((f, "tracked-since %s\n", time_buf));
  651. }
  652. if (stability_last_downrated) {
  653. format_iso_time(time_buf, stability_last_downrated);
  654. PRINTF((f, "last-downrated %s\n", time_buf));
  655. }
  656. PUT("data\n");
  657. /* XXX Nick: now bridge auths record this for all routers too.
  658. * Should we make them record it only for bridge routers? -RD
  659. * Not for 0.2.0. -NM */
  660. for (orhist_it = digestmap_iter_init(history_map);
  661. !digestmap_iter_done(orhist_it);
  662. orhist_it = digestmap_iter_next(history_map,orhist_it)) {
  663. char dbuf[HEX_DIGEST_LEN+1];
  664. const char *t = NULL;
  665. digestmap_iter_get(orhist_it, &digest, &or_history_p);
  666. hist = (or_history_t*) or_history_p;
  667. base16_encode(dbuf, sizeof(dbuf), digest, DIGEST_LEN);
  668. PRINTF((f, "R %s\n", dbuf));
  669. if (hist->start_of_run > 0) {
  670. format_iso_time(time_buf, hist->start_of_run);
  671. t = time_buf;
  672. }
  673. PRINTF((f, "+MTBF %lu %.5lf%s%s\n",
  674. hist->weighted_run_length, hist->total_run_weights,
  675. t ? " S=" : "", t ? t : ""));
  676. t = NULL;
  677. if (hist->start_of_downtime > 0) {
  678. format_iso_time(time_buf, hist->start_of_downtime);
  679. t = time_buf;
  680. }
  681. PRINTF((f, "+WFU %lu %lu%s%s\n",
  682. hist->weighted_uptime, hist->total_weighted_time,
  683. t ? " S=" : "", t ? t : ""));
  684. }
  685. PUT(".\n");
  686. #undef PUT
  687. #undef PRINTF
  688. return finish_writing_to_file(open_file);
  689. err:
  690. abort_writing_to_file(open_file);
  691. return -1;
  692. }
  693. /** Format the current tracked status of the router in <b>hist</b> at time
  694. * <b>now</b> for analysis; return it in a newly allocated string. */
  695. static char *
  696. rep_hist_format_router_status(or_history_t *hist, time_t now)
  697. {
  698. char buf[1024];
  699. char sor_buf[ISO_TIME_LEN+1];
  700. char sod_buf[ISO_TIME_LEN+1];
  701. double wfu;
  702. double mtbf;
  703. int up = 0, down = 0;
  704. if (hist->start_of_run) {
  705. format_iso_time(sor_buf, hist->start_of_run);
  706. up = 1;
  707. }
  708. if (hist->start_of_downtime) {
  709. format_iso_time(sod_buf, hist->start_of_downtime);
  710. down = 1;
  711. }
  712. wfu = get_weighted_fractional_uptime(hist, now);
  713. mtbf = get_stability(hist, now);
  714. tor_snprintf(buf, sizeof(buf),
  715. "%s%s%s"
  716. "%s%s%s"
  717. "wfu %0.3lf\n"
  718. " weighted-time %lu\n"
  719. " weighted-uptime %lu\n"
  720. "mtbf %0.1lf\n"
  721. " weighted-run-length %lu\n"
  722. " total-run-weights %lf\n",
  723. up?"uptime-started ":"", up?sor_buf:"", up?" UTC\n":"",
  724. down?"downtime-started ":"", down?sod_buf:"", down?" UTC\n":"",
  725. wfu,
  726. hist->total_weighted_time,
  727. hist->weighted_uptime,
  728. mtbf,
  729. hist->weighted_run_length,
  730. hist->total_run_weights
  731. );
  732. return tor_strdup(buf);
  733. }
  734. /** The last stability analysis document that we created, or NULL if we never
  735. * have created one. */
  736. static char *last_stability_doc = NULL;
  737. /** The last time we created a stability analysis document, or 0 if we never
  738. * have created one. */
  739. static time_t built_last_stability_doc_at = 0;
  740. /** Shortest allowable time between building two stability documents. */
  741. #define MAX_STABILITY_DOC_BUILD_RATE (3*60)
  742. /** Return a pointer to a NUL-terminated document describing our view of the
  743. * stability of the routers we've been tracking. Return NULL on failure. */
  744. const char *
  745. rep_hist_get_router_stability_doc(time_t now)
  746. {
  747. char *result;
  748. smartlist_t *chunks;
  749. if (built_last_stability_doc_at + MAX_STABILITY_DOC_BUILD_RATE > now)
  750. return last_stability_doc;
  751. if (!history_map)
  752. return NULL;
  753. tor_free(last_stability_doc);
  754. chunks = smartlist_create();
  755. if (rep_hist_have_measured_enough_stability()) {
  756. smartlist_add(chunks, tor_strdup("we-have-enough-measurements\n"));
  757. } else {
  758. smartlist_add(chunks, tor_strdup("we-do-not-have-enough-measurements\n"));
  759. }
  760. DIGESTMAP_FOREACH(history_map, id, or_history_t *, hist) {
  761. routerinfo_t *ri;
  762. char dbuf[BASE64_DIGEST_LEN+1];
  763. char header_buf[512];
  764. char *info;
  765. digest_to_base64(dbuf, id);
  766. ri = router_get_by_digest(id);
  767. if (ri) {
  768. char *ip = tor_dup_ip(ri->addr);
  769. char tbuf[ISO_TIME_LEN+1];
  770. format_iso_time(tbuf, ri->cache_info.published_on);
  771. tor_snprintf(header_buf, sizeof(header_buf),
  772. "router %s %s %s\n"
  773. "published %s\n"
  774. "relevant-flags %s%s%s\n"
  775. "declared-uptime %ld\n",
  776. dbuf, ri->nickname, ip,
  777. tbuf,
  778. ri->is_running ? "Running " : "",
  779. ri->is_valid ? "Valid " : "",
  780. ri->is_hibernating ? "Hibernating " : "",
  781. ri->uptime);
  782. tor_free(ip);
  783. } else {
  784. tor_snprintf(header_buf, sizeof(header_buf),
  785. "router %s {no descriptor}\n", dbuf);
  786. }
  787. smartlist_add(chunks, tor_strdup(header_buf));
  788. info = rep_hist_format_router_status(hist, now);
  789. if (info)
  790. smartlist_add(chunks, info);
  791. } DIGESTMAP_FOREACH_END;
  792. result = smartlist_join_strings(chunks, "", 0, NULL);
  793. SMARTLIST_FOREACH(chunks, char *, cp, tor_free(cp));
  794. smartlist_free(chunks);
  795. last_stability_doc = result;
  796. built_last_stability_doc_at = time(NULL);
  797. return result;
  798. }
  799. /** Helper: return the first j >= i such that !strcmpstart(sl[j], prefix) and
  800. * such that no line sl[k] with i <= k < j starts with "R ". Return -1 if no
  801. * such line exists. */
  802. static int
  803. find_next_with(smartlist_t *sl, int i, const char *prefix)
  804. {
  805. for ( ; i < smartlist_len(sl); ++i) {
  806. const char *line = smartlist_get(sl, i);
  807. if (!strcmpstart(line, prefix))
  808. return i;
  809. if (!strcmpstart(line, "R "))
  810. return -1;
  811. }
  812. return -1;
  813. }
  814. /** How many bad times has parse_possibly_bad_iso_time parsed? */
  815. static int n_bogus_times = 0;
  816. /** Parse the ISO-formatted time in <b>s</b> into *<b>time_out</b>, but
  817. * rounds any pre-1970 date to Jan 1, 1970. */
  818. static int
  819. parse_possibly_bad_iso_time(const char *s, time_t *time_out)
  820. {
  821. int year;
  822. char b[5];
  823. strlcpy(b, s, sizeof(b));
  824. b[4] = '\0';
  825. year = (int)tor_parse_long(b, 10, 0, INT_MAX, NULL, NULL);
  826. if (year < 1970) {
  827. *time_out = 0;
  828. ++n_bogus_times;
  829. return 0;
  830. } else
  831. return parse_iso_time(s, time_out);
  832. }
  833. /** We've read a time <b>t</b> from a file stored at <b>stored_at</b>, which
  834. * says we started measuring at <b>started_measuring</b>. Return a new number
  835. * that's about as much before <b>now</b> as <b>t</b> was before
  836. * <b>stored_at</b>.
  837. */
  838. static INLINE time_t
  839. correct_time(time_t t, time_t now, time_t stored_at, time_t started_measuring)
  840. {
  841. if (t < started_measuring - 24*60*60*365)
  842. return 0;
  843. else if (t < started_measuring)
  844. return started_measuring;
  845. else if (t > stored_at)
  846. return 0;
  847. else {
  848. long run_length = stored_at - t;
  849. t = now - run_length;
  850. if (t < started_measuring)
  851. t = started_measuring;
  852. return t;
  853. }
  854. }
  855. /** Load MTBF data from disk. Returns 0 on success or recoverable error, -1
  856. * on failure. */
  857. int
  858. rep_hist_load_mtbf_data(time_t now)
  859. {
  860. /* XXXX won't handle being called while history is already populated. */
  861. smartlist_t *lines;
  862. const char *line = NULL;
  863. int r=0, i;
  864. time_t last_downrated = 0, stored_at = 0, tracked_since = 0;
  865. time_t latest_possible_start = now;
  866. long format = -1;
  867. {
  868. char *filename = get_datadir_fname("router-stability");
  869. char *d = read_file_to_str(filename, RFTS_IGNORE_MISSING, NULL);
  870. tor_free(filename);
  871. if (!d)
  872. return -1;
  873. lines = smartlist_create();
  874. smartlist_split_string(lines, d, "\n", SPLIT_SKIP_SPACE, 0);
  875. tor_free(d);
  876. }
  877. {
  878. const char *firstline;
  879. if (smartlist_len(lines)>4) {
  880. firstline = smartlist_get(lines, 0);
  881. if (!strcmpstart(firstline, "format "))
  882. format = tor_parse_long(firstline+strlen("format "),
  883. 10, -1, LONG_MAX, NULL, NULL);
  884. }
  885. }
  886. if (format != 1 && format != 2) {
  887. log_warn(LD_HIST,
  888. "Unrecognized format in mtbf history file. Skipping.");
  889. goto err;
  890. }
  891. for (i = 1; i < smartlist_len(lines); ++i) {
  892. line = smartlist_get(lines, i);
  893. if (!strcmp(line, "data"))
  894. break;
  895. if (!strcmpstart(line, "last-downrated ")) {
  896. if (parse_iso_time(line+strlen("last-downrated "), &last_downrated)<0)
  897. log_warn(LD_HIST,"Couldn't parse downrate time in mtbf "
  898. "history file.");
  899. }
  900. if (!strcmpstart(line, "stored-at ")) {
  901. if (parse_iso_time(line+strlen("stored-at "), &stored_at)<0)
  902. log_warn(LD_HIST,"Couldn't parse stored time in mtbf "
  903. "history file.");
  904. }
  905. if (!strcmpstart(line, "tracked-since ")) {
  906. if (parse_iso_time(line+strlen("tracked-since "), &tracked_since)<0)
  907. log_warn(LD_HIST,"Couldn't parse started-tracking time in mtbf "
  908. "history file.");
  909. }
  910. }
  911. if (last_downrated > now)
  912. last_downrated = now;
  913. if (tracked_since > now)
  914. tracked_since = now;
  915. if (!stored_at) {
  916. log_warn(LD_HIST, "No stored time recorded.");
  917. goto err;
  918. }
  919. if (line && !strcmp(line, "data"))
  920. ++i;
  921. n_bogus_times = 0;
  922. for (; i < smartlist_len(lines); ++i) {
  923. char digest[DIGEST_LEN];
  924. char hexbuf[HEX_DIGEST_LEN+1];
  925. char mtbf_timebuf[ISO_TIME_LEN+1];
  926. char wfu_timebuf[ISO_TIME_LEN+1];
  927. time_t start_of_run = 0;
  928. time_t start_of_downtime = 0;
  929. int have_mtbf = 0, have_wfu = 0;
  930. long wrl = 0;
  931. double trw = 0;
  932. long wt_uptime = 0, total_wt_time = 0;
  933. int n;
  934. or_history_t *hist;
  935. line = smartlist_get(lines, i);
  936. if (!strcmp(line, "."))
  937. break;
  938. mtbf_timebuf[0] = '\0';
  939. wfu_timebuf[0] = '\0';
  940. if (format == 1) {
  941. n = sscanf(line, "%40s %ld %lf S=%10s %8s",
  942. hexbuf, &wrl, &trw, mtbf_timebuf, mtbf_timebuf+11);
  943. if (n != 3 && n != 5) {
  944. log_warn(LD_HIST, "Couldn't scan line %s", escaped(line));
  945. continue;
  946. }
  947. have_mtbf = 1;
  948. } else {
  949. // format == 2.
  950. int mtbf_idx, wfu_idx;
  951. if (strcmpstart(line, "R ") || strlen(line) < 2+HEX_DIGEST_LEN)
  952. continue;
  953. strlcpy(hexbuf, line+2, sizeof(hexbuf));
  954. mtbf_idx = find_next_with(lines, i+1, "+MTBF ");
  955. wfu_idx = find_next_with(lines, i+1, "+WFU ");
  956. if (mtbf_idx >= 0) {
  957. const char *mtbfline = smartlist_get(lines, mtbf_idx);
  958. n = sscanf(mtbfline, "+MTBF %lu %lf S=%10s %8s",
  959. &wrl, &trw, mtbf_timebuf, mtbf_timebuf+11);
  960. if (n == 2 || n == 4) {
  961. have_mtbf = 1;
  962. } else {
  963. log_warn(LD_HIST, "Couldn't scan +MTBF line %s",
  964. escaped(mtbfline));
  965. }
  966. }
  967. if (wfu_idx >= 0) {
  968. const char *wfuline = smartlist_get(lines, wfu_idx);
  969. n = sscanf(wfuline, "+WFU %lu %lu S=%10s %8s",
  970. &wt_uptime, &total_wt_time,
  971. wfu_timebuf, wfu_timebuf+11);
  972. if (n == 2 || n == 4) {
  973. have_wfu = 1;
  974. } else {
  975. log_warn(LD_HIST, "Couldn't scan +WFU line %s", escaped(wfuline));
  976. }
  977. }
  978. if (wfu_idx > i)
  979. i = wfu_idx;
  980. if (mtbf_idx > i)
  981. i = mtbf_idx;
  982. }
  983. if (base16_decode(digest, DIGEST_LEN, hexbuf, HEX_DIGEST_LEN) < 0) {
  984. log_warn(LD_HIST, "Couldn't hex string %s", escaped(hexbuf));
  985. continue;
  986. }
  987. hist = get_or_history(digest);
  988. if (!hist)
  989. continue;
  990. if (have_mtbf) {
  991. if (mtbf_timebuf[0]) {
  992. mtbf_timebuf[10] = ' ';
  993. if (parse_possibly_bad_iso_time(mtbf_timebuf, &start_of_run)<0)
  994. log_warn(LD_HIST, "Couldn't parse time %s",
  995. escaped(mtbf_timebuf));
  996. }
  997. hist->start_of_run = correct_time(start_of_run, now, stored_at,
  998. tracked_since);
  999. if (hist->start_of_run < latest_possible_start + wrl)
  1000. latest_possible_start = hist->start_of_run - wrl;
  1001. hist->weighted_run_length = wrl;
  1002. hist->total_run_weights = trw;
  1003. }
  1004. if (have_wfu) {
  1005. if (wfu_timebuf[0]) {
  1006. wfu_timebuf[10] = ' ';
  1007. if (parse_possibly_bad_iso_time(wfu_timebuf, &start_of_downtime)<0)
  1008. log_warn(LD_HIST, "Couldn't parse time %s", escaped(wfu_timebuf));
  1009. }
  1010. }
  1011. hist->start_of_downtime = correct_time(start_of_downtime, now, stored_at,
  1012. tracked_since);
  1013. hist->weighted_uptime = wt_uptime;
  1014. hist->total_weighted_time = total_wt_time;
  1015. }
  1016. if (strcmp(line, "."))
  1017. log_warn(LD_HIST, "Truncated MTBF file.");
  1018. if (tracked_since < 86400*365) /* Recover from insanely early value. */
  1019. tracked_since = latest_possible_start;
  1020. stability_last_downrated = last_downrated;
  1021. started_tracking_stability = tracked_since;
  1022. goto done;
  1023. err:
  1024. r = -1;
  1025. done:
  1026. SMARTLIST_FOREACH(lines, char *, cp, tor_free(cp));
  1027. smartlist_free(lines);
  1028. return r;
  1029. }
  1030. /** For how many seconds do we keep track of individual per-second bandwidth
  1031. * totals? */
  1032. #define NUM_SECS_ROLLING_MEASURE 10
  1033. /** How large are the intervals for which we track and report bandwidth use? */
  1034. #define NUM_SECS_BW_SUM_INTERVAL (15*60)
  1035. /** How far in the past do we remember and publish bandwidth use? */
  1036. #define NUM_SECS_BW_SUM_IS_VALID (24*60*60)
  1037. /** How many bandwidth usage intervals do we remember? (derived) */
  1038. #define NUM_TOTALS (NUM_SECS_BW_SUM_IS_VALID/NUM_SECS_BW_SUM_INTERVAL)
  1039. /** Structure to track bandwidth use, and remember the maxima for a given
  1040. * time period.
  1041. */
  1042. typedef struct bw_array_t {
  1043. /** Observation array: Total number of bytes transferred in each of the last
  1044. * NUM_SECS_ROLLING_MEASURE seconds. This is used as a circular array. */
  1045. uint64_t obs[NUM_SECS_ROLLING_MEASURE];
  1046. int cur_obs_idx; /**< Current position in obs. */
  1047. time_t cur_obs_time; /**< Time represented in obs[cur_obs_idx] */
  1048. uint64_t total_obs; /**< Total for all members of obs except
  1049. * obs[cur_obs_idx] */
  1050. uint64_t max_total; /**< Largest value that total_obs has taken on in the
  1051. * current period. */
  1052. uint64_t total_in_period; /**< Total bytes transferred in the current
  1053. * period. */
  1054. /** When does the next period begin? */
  1055. time_t next_period;
  1056. /** Where in 'maxima' should the maximum bandwidth usage for the current
  1057. * period be stored? */
  1058. int next_max_idx;
  1059. /** How many values in maxima/totals have been set ever? */
  1060. int num_maxes_set;
  1061. /** Circular array of the maximum
  1062. * bandwidth-per-NUM_SECS_ROLLING_MEASURE usage for the last
  1063. * NUM_TOTALS periods */
  1064. uint64_t maxima[NUM_TOTALS];
  1065. /** Circular array of the total bandwidth usage for the last NUM_TOTALS
  1066. * periods */
  1067. uint64_t totals[NUM_TOTALS];
  1068. } bw_array_t;
  1069. /** Shift the current period of b forward by one. */
  1070. static void
  1071. commit_max(bw_array_t *b)
  1072. {
  1073. /* Store total from current period. */
  1074. b->totals[b->next_max_idx] = b->total_in_period;
  1075. /* Store maximum from current period. */
  1076. b->maxima[b->next_max_idx++] = b->max_total;
  1077. /* Advance next_period and next_max_idx */
  1078. b->next_period += NUM_SECS_BW_SUM_INTERVAL;
  1079. if (b->next_max_idx == NUM_TOTALS)
  1080. b->next_max_idx = 0;
  1081. if (b->num_maxes_set < NUM_TOTALS)
  1082. ++b->num_maxes_set;
  1083. /* Reset max_total. */
  1084. b->max_total = 0;
  1085. /* Reset total_in_period. */
  1086. b->total_in_period = 0;
  1087. }
  1088. /** Shift the current observation time of 'b' forward by one second. */
  1089. static INLINE void
  1090. advance_obs(bw_array_t *b)
  1091. {
  1092. int nextidx;
  1093. uint64_t total;
  1094. /* Calculate the total bandwidth for the last NUM_SECS_ROLLING_MEASURE
  1095. * seconds; adjust max_total as needed.*/
  1096. total = b->total_obs + b->obs[b->cur_obs_idx];
  1097. if (total > b->max_total)
  1098. b->max_total = total;
  1099. nextidx = b->cur_obs_idx+1;
  1100. if (nextidx == NUM_SECS_ROLLING_MEASURE)
  1101. nextidx = 0;
  1102. b->total_obs = total - b->obs[nextidx];
  1103. b->obs[nextidx]=0;
  1104. b->cur_obs_idx = nextidx;
  1105. if (++b->cur_obs_time >= b->next_period)
  1106. commit_max(b);
  1107. }
  1108. /** Add <b>n</b> bytes to the number of bytes in <b>b</b> for second
  1109. * <b>when</b>. */
  1110. static INLINE void
  1111. add_obs(bw_array_t *b, time_t when, uint64_t n)
  1112. {
  1113. /* Don't record data in the past. */
  1114. if (when<b->cur_obs_time)
  1115. return;
  1116. /* If we're currently adding observations for an earlier second than
  1117. * 'when', advance b->cur_obs_time and b->cur_obs_idx by an
  1118. * appropriate number of seconds, and do all the other housekeeping */
  1119. while (when>b->cur_obs_time)
  1120. advance_obs(b);
  1121. b->obs[b->cur_obs_idx] += n;
  1122. b->total_in_period += n;
  1123. }
  1124. /** Allocate, initialize, and return a new bw_array. */
  1125. static bw_array_t *
  1126. bw_array_new(void)
  1127. {
  1128. bw_array_t *b;
  1129. time_t start;
  1130. b = tor_malloc_zero(sizeof(bw_array_t));
  1131. rephist_total_alloc += sizeof(bw_array_t);
  1132. start = time(NULL);
  1133. b->cur_obs_time = start;
  1134. b->next_period = start + NUM_SECS_BW_SUM_INTERVAL;
  1135. return b;
  1136. }
  1137. static bw_array_t *read_array = NULL;
  1138. static bw_array_t *write_array = NULL;
  1139. /** Set up read_array and write_array. */
  1140. static void
  1141. bw_arrays_init(void)
  1142. {
  1143. read_array = bw_array_new();
  1144. write_array = bw_array_new();
  1145. }
  1146. /** We read <b>num_bytes</b> more bytes in second <b>when</b>.
  1147. *
  1148. * Add num_bytes to the current running total for <b>when</b>.
  1149. *
  1150. * <b>when</b> can go back to time, but it's safe to ignore calls
  1151. * earlier than the latest <b>when</b> you've heard of.
  1152. */
  1153. void
  1154. rep_hist_note_bytes_written(size_t num_bytes, time_t when)
  1155. {
  1156. /* Maybe a circular array for recent seconds, and step to a new point
  1157. * every time a new second shows up. Or simpler is to just to have
  1158. * a normal array and push down each item every second; it's short.
  1159. */
  1160. /* When a new second has rolled over, compute the sum of the bytes we've
  1161. * seen over when-1 to when-1-NUM_SECS_ROLLING_MEASURE, and stick it
  1162. * somewhere. See rep_hist_bandwidth_assess() below.
  1163. */
  1164. add_obs(write_array, when, num_bytes);
  1165. }
  1166. /** We wrote <b>num_bytes</b> more bytes in second <b>when</b>.
  1167. * (like rep_hist_note_bytes_written() above)
  1168. */
  1169. void
  1170. rep_hist_note_bytes_read(size_t num_bytes, time_t when)
  1171. {
  1172. /* if we're smart, we can make this func and the one above share code */
  1173. add_obs(read_array, when, num_bytes);
  1174. }
  1175. /** Helper: Return the largest value in b->maxima. (This is equal to the
  1176. * most bandwidth used in any NUM_SECS_ROLLING_MEASURE period for the last
  1177. * NUM_SECS_BW_SUM_IS_VALID seconds.)
  1178. */
  1179. static uint64_t
  1180. find_largest_max(bw_array_t *b)
  1181. {
  1182. int i;
  1183. uint64_t max;
  1184. max=0;
  1185. for (i=0; i<NUM_TOTALS; ++i) {
  1186. if (b->maxima[i]>max)
  1187. max = b->maxima[i];
  1188. }
  1189. return max;
  1190. }
  1191. /** Find the largest sums in the past NUM_SECS_BW_SUM_IS_VALID (roughly)
  1192. * seconds. Find one sum for reading and one for writing. They don't have
  1193. * to be at the same time.
  1194. *
  1195. * Return the smaller of these sums, divided by NUM_SECS_ROLLING_MEASURE.
  1196. */
  1197. int
  1198. rep_hist_bandwidth_assess(void)
  1199. {
  1200. uint64_t w,r;
  1201. r = find_largest_max(read_array);
  1202. w = find_largest_max(write_array);
  1203. if (r>w)
  1204. return (int)(U64_TO_DBL(w)/NUM_SECS_ROLLING_MEASURE);
  1205. else
  1206. return (int)(U64_TO_DBL(r)/NUM_SECS_ROLLING_MEASURE);
  1207. }
  1208. /** Print the bandwidth history of b (either read_array or write_array)
  1209. * into the buffer pointed to by buf. The format is simply comma
  1210. * separated numbers, from oldest to newest.
  1211. *
  1212. * It returns the number of bytes written.
  1213. */
  1214. static size_t
  1215. rep_hist_fill_bandwidth_history(char *buf, size_t len, bw_array_t *b)
  1216. {
  1217. char *cp = buf;
  1218. int i, n;
  1219. or_options_t *options = get_options();
  1220. uint64_t cutoff;
  1221. if (b->num_maxes_set <= b->next_max_idx) {
  1222. /* We haven't been through the circular array yet; time starts at i=0.*/
  1223. i = 0;
  1224. } else {
  1225. /* We've been around the array at least once. The next i to be
  1226. overwritten is the oldest. */
  1227. i = b->next_max_idx;
  1228. }
  1229. if (options->RelayBandwidthRate) {
  1230. /* We don't want to report that we used more bandwidth than the max we're
  1231. * willing to relay; otherwise everybody will know how much traffic
  1232. * we used ourself. */
  1233. cutoff = options->RelayBandwidthRate * NUM_SECS_BW_SUM_INTERVAL;
  1234. } else {
  1235. cutoff = UINT64_MAX;
  1236. }
  1237. for (n=0; n<b->num_maxes_set; ++n,++i) {
  1238. uint64_t total;
  1239. if (i >= NUM_TOTALS)
  1240. i -= NUM_TOTALS;
  1241. tor_assert(i < NUM_TOTALS);
  1242. /* Round the bandwidth used down to the nearest 1k. */
  1243. total = b->totals[i] & ~0x3ff;
  1244. if (total > cutoff)
  1245. total = cutoff;
  1246. if (n==(b->num_maxes_set-1))
  1247. tor_snprintf(cp, len-(cp-buf), U64_FORMAT, U64_PRINTF_ARG(total));
  1248. else
  1249. tor_snprintf(cp, len-(cp-buf), U64_FORMAT",", U64_PRINTF_ARG(total));
  1250. cp += strlen(cp);
  1251. }
  1252. return cp-buf;
  1253. }
  1254. /** Allocate and return lines for representing this server's bandwidth
  1255. * history in its descriptor.
  1256. */
  1257. char *
  1258. rep_hist_get_bandwidth_lines(int for_extrainfo)
  1259. {
  1260. char *buf, *cp;
  1261. char t[ISO_TIME_LEN+1];
  1262. int r;
  1263. bw_array_t *b;
  1264. size_t len;
  1265. /* opt (read|write)-history yyyy-mm-dd HH:MM:SS (n s) n,n,n,n,n... */
  1266. len = (60+20*NUM_TOTALS)*2;
  1267. buf = tor_malloc_zero(len);
  1268. cp = buf;
  1269. for (r=0;r<2;++r) {
  1270. b = r?read_array:write_array;
  1271. tor_assert(b);
  1272. format_iso_time(t, b->next_period-NUM_SECS_BW_SUM_INTERVAL);
  1273. tor_snprintf(cp, len-(cp-buf), "%s%s %s (%d s) ",
  1274. for_extrainfo ? "" : "opt ",
  1275. r ? "read-history" : "write-history", t,
  1276. NUM_SECS_BW_SUM_INTERVAL);
  1277. cp += strlen(cp);
  1278. cp += rep_hist_fill_bandwidth_history(cp, len-(cp-buf), b);
  1279. strlcat(cp, "\n", len-(cp-buf));
  1280. ++cp;
  1281. }
  1282. return buf;
  1283. }
  1284. /** Update <b>state</b> with the newest bandwidth history. */
  1285. void
  1286. rep_hist_update_state(or_state_t *state)
  1287. {
  1288. int len, r;
  1289. char *buf, *cp;
  1290. smartlist_t **s_values;
  1291. time_t *s_begins;
  1292. int *s_interval;
  1293. bw_array_t *b;
  1294. len = 20*NUM_TOTALS+1;
  1295. buf = tor_malloc_zero(len);
  1296. for (r=0;r<2;++r) {
  1297. b = r?read_array:write_array;
  1298. s_begins = r?&state->BWHistoryReadEnds :&state->BWHistoryWriteEnds;
  1299. s_interval= r?&state->BWHistoryReadInterval:&state->BWHistoryWriteInterval;
  1300. s_values = r?&state->BWHistoryReadValues :&state->BWHistoryWriteValues;
  1301. if (*s_values) {
  1302. SMARTLIST_FOREACH(*s_values, char *, val, tor_free(val));
  1303. smartlist_free(*s_values);
  1304. }
  1305. if (! server_mode(get_options())) {
  1306. /* Clients don't need to store bandwidth history persistently;
  1307. * force these values to the defaults. */
  1308. /* FFFF we should pull the default out of config.c's state table,
  1309. * so we don't have two defaults. */
  1310. if (*s_begins != 0 || *s_interval != 900) {
  1311. time_t now = time(NULL);
  1312. time_t save_at = get_options()->AvoidDiskWrites ? now+3600 : now+600;
  1313. or_state_mark_dirty(state, save_at);
  1314. }
  1315. *s_begins = 0;
  1316. *s_interval = 900;
  1317. *s_values = smartlist_create();
  1318. continue;
  1319. }
  1320. *s_begins = b->next_period;
  1321. *s_interval = NUM_SECS_BW_SUM_INTERVAL;
  1322. cp = buf;
  1323. cp += rep_hist_fill_bandwidth_history(cp, len, b);
  1324. tor_snprintf(cp, len-(cp-buf), cp == buf ? U64_FORMAT : ","U64_FORMAT,
  1325. U64_PRINTF_ARG(b->total_in_period));
  1326. *s_values = smartlist_create();
  1327. if (server_mode(get_options()))
  1328. smartlist_split_string(*s_values, buf, ",", SPLIT_SKIP_SPACE, 0);
  1329. }
  1330. tor_free(buf);
  1331. if (server_mode(get_options())) {
  1332. or_state_mark_dirty(get_or_state(), time(NULL)+(2*3600));
  1333. }
  1334. }
  1335. /** Set bandwidth history from our saved state. */
  1336. int
  1337. rep_hist_load_state(or_state_t *state, char **err)
  1338. {
  1339. time_t s_begins, start;
  1340. time_t now = time(NULL);
  1341. uint64_t v;
  1342. int r,i,ok;
  1343. int all_ok = 1;
  1344. int s_interval;
  1345. smartlist_t *s_values;
  1346. bw_array_t *b;
  1347. /* Assert they already have been malloced */
  1348. tor_assert(read_array && write_array);
  1349. for (r=0;r<2;++r) {
  1350. b = r?read_array:write_array;
  1351. s_begins = r?state->BWHistoryReadEnds:state->BWHistoryWriteEnds;
  1352. s_interval = r?state->BWHistoryReadInterval:state->BWHistoryWriteInterval;
  1353. s_values = r?state->BWHistoryReadValues:state->BWHistoryWriteValues;
  1354. if (s_values && s_begins >= now - NUM_SECS_BW_SUM_INTERVAL*NUM_TOTALS) {
  1355. start = s_begins - s_interval*(smartlist_len(s_values));
  1356. if (start > now)
  1357. continue;
  1358. b->cur_obs_time = start;
  1359. b->next_period = start + NUM_SECS_BW_SUM_INTERVAL;
  1360. SMARTLIST_FOREACH(s_values, char *, cp, {
  1361. v = tor_parse_uint64(cp, 10, 0, UINT64_MAX, &ok, NULL);
  1362. if (!ok) {
  1363. all_ok=0;
  1364. log_notice(LD_HIST, "Could not parse '%s' into a number.'", cp);
  1365. }
  1366. if (start < now) {
  1367. add_obs(b, start, v);
  1368. start += NUM_SECS_BW_SUM_INTERVAL;
  1369. }
  1370. });
  1371. }
  1372. /* Clean up maxima and observed */
  1373. /* Do we really want to zero this for the purpose of max capacity? */
  1374. for (i=0; i<NUM_SECS_ROLLING_MEASURE; ++i) {
  1375. b->obs[i] = 0;
  1376. }
  1377. b->total_obs = 0;
  1378. for (i=0; i<NUM_TOTALS; ++i) {
  1379. b->maxima[i] = 0;
  1380. }
  1381. b->max_total = 0;
  1382. }
  1383. if (!all_ok) {
  1384. *err = tor_strdup("Parsing of bandwidth history values failed");
  1385. /* and create fresh arrays */
  1386. tor_free(read_array);
  1387. tor_free(write_array);
  1388. read_array = bw_array_new();
  1389. write_array = bw_array_new();
  1390. return -1;
  1391. }
  1392. return 0;
  1393. }
  1394. /*********************************************************************/
  1395. /** A list of port numbers that have been used recently. */
  1396. static smartlist_t *predicted_ports_list=NULL;
  1397. /** The corresponding most recently used time for each port. */
  1398. static smartlist_t *predicted_ports_times=NULL;
  1399. /** We just got an application request for a connection with
  1400. * port <b>port</b>. Remember it for the future, so we can keep
  1401. * some circuits open that will exit to this port.
  1402. */
  1403. static void
  1404. add_predicted_port(time_t now, uint16_t port)
  1405. {
  1406. /* XXXX we could just use uintptr_t here, I think. */
  1407. uint16_t *tmp_port = tor_malloc(sizeof(uint16_t));
  1408. time_t *tmp_time = tor_malloc(sizeof(time_t));
  1409. *tmp_port = port;
  1410. *tmp_time = now;
  1411. rephist_total_alloc += sizeof(uint16_t) + sizeof(time_t);
  1412. smartlist_add(predicted_ports_list, tmp_port);
  1413. smartlist_add(predicted_ports_times, tmp_time);
  1414. }
  1415. /** Initialize whatever memory and structs are needed for predicting
  1416. * which ports will be used. Also seed it with port 80, so we'll build
  1417. * circuits on start-up.
  1418. */
  1419. static void
  1420. predicted_ports_init(void)
  1421. {
  1422. predicted_ports_list = smartlist_create();
  1423. predicted_ports_times = smartlist_create();
  1424. add_predicted_port(time(NULL), 80); /* add one to kickstart us */
  1425. }
  1426. /** Free whatever memory is needed for predicting which ports will
  1427. * be used.
  1428. */
  1429. static void
  1430. predicted_ports_free(void)
  1431. {
  1432. rephist_total_alloc -= smartlist_len(predicted_ports_list)*sizeof(uint16_t);
  1433. SMARTLIST_FOREACH(predicted_ports_list, char *, cp, tor_free(cp));
  1434. smartlist_free(predicted_ports_list);
  1435. rephist_total_alloc -= smartlist_len(predicted_ports_times)*sizeof(time_t);
  1436. SMARTLIST_FOREACH(predicted_ports_times, char *, cp, tor_free(cp));
  1437. smartlist_free(predicted_ports_times);
  1438. }
  1439. /** Remember that <b>port</b> has been asked for as of time <b>now</b>.
  1440. * This is used for predicting what sorts of streams we'll make in the
  1441. * future and making exit circuits to anticipate that.
  1442. */
  1443. void
  1444. rep_hist_note_used_port(time_t now, uint16_t port)
  1445. {
  1446. int i;
  1447. uint16_t *tmp_port;
  1448. time_t *tmp_time;
  1449. tor_assert(predicted_ports_list);
  1450. tor_assert(predicted_ports_times);
  1451. if (!port) /* record nothing */
  1452. return;
  1453. for (i = 0; i < smartlist_len(predicted_ports_list); ++i) {
  1454. tmp_port = smartlist_get(predicted_ports_list, i);
  1455. tmp_time = smartlist_get(predicted_ports_times, i);
  1456. if (*tmp_port == port) {
  1457. *tmp_time = now;
  1458. return;
  1459. }
  1460. }
  1461. /* it's not there yet; we need to add it */
  1462. add_predicted_port(now, port);
  1463. }
  1464. /** For this long after we've seen a request for a given port, assume that
  1465. * we'll want to make connections to the same port in the future. */
  1466. #define PREDICTED_CIRCS_RELEVANCE_TIME (60*60)
  1467. /** Return a pointer to the list of port numbers that
  1468. * are likely to be asked for in the near future.
  1469. *
  1470. * The caller promises not to mess with it.
  1471. */
  1472. smartlist_t *
  1473. rep_hist_get_predicted_ports(time_t now)
  1474. {
  1475. int i;
  1476. uint16_t *tmp_port;
  1477. time_t *tmp_time;
  1478. tor_assert(predicted_ports_list);
  1479. tor_assert(predicted_ports_times);
  1480. /* clean out obsolete entries */
  1481. for (i = 0; i < smartlist_len(predicted_ports_list); ++i) {
  1482. tmp_time = smartlist_get(predicted_ports_times, i);
  1483. if (*tmp_time + PREDICTED_CIRCS_RELEVANCE_TIME < now) {
  1484. tmp_port = smartlist_get(predicted_ports_list, i);
  1485. log_debug(LD_CIRC, "Expiring predicted port %d", *tmp_port);
  1486. smartlist_del(predicted_ports_list, i);
  1487. smartlist_del(predicted_ports_times, i);
  1488. rephist_total_alloc -= sizeof(uint16_t)+sizeof(time_t);
  1489. tor_free(tmp_port);
  1490. tor_free(tmp_time);
  1491. i--;
  1492. }
  1493. }
  1494. return predicted_ports_list;
  1495. }
  1496. /** The user asked us to do a resolve. Rather than keeping track of
  1497. * timings and such of resolves, we fake it for now by treating
  1498. * it the same way as a connection to port 80. This way we will continue
  1499. * to have circuits lying around if the user only uses Tor for resolves.
  1500. */
  1501. void
  1502. rep_hist_note_used_resolve(time_t now)
  1503. {
  1504. rep_hist_note_used_port(now, 80);
  1505. }
  1506. /** The last time at which we needed an internal circ. */
  1507. static time_t predicted_internal_time = 0;
  1508. /** The last time we needed an internal circ with good uptime. */
  1509. static time_t predicted_internal_uptime_time = 0;
  1510. /** The last time we needed an internal circ with good capacity. */
  1511. static time_t predicted_internal_capacity_time = 0;
  1512. /** Remember that we used an internal circ at time <b>now</b>. */
  1513. void
  1514. rep_hist_note_used_internal(time_t now, int need_uptime, int need_capacity)
  1515. {
  1516. predicted_internal_time = now;
  1517. if (need_uptime)
  1518. predicted_internal_uptime_time = now;
  1519. if (need_capacity)
  1520. predicted_internal_capacity_time = now;
  1521. }
  1522. /** Return 1 if we've used an internal circ recently; else return 0. */
  1523. int
  1524. rep_hist_get_predicted_internal(time_t now, int *need_uptime,
  1525. int *need_capacity)
  1526. {
  1527. if (!predicted_internal_time) { /* initialize it */
  1528. predicted_internal_time = now;
  1529. predicted_internal_uptime_time = now;
  1530. predicted_internal_capacity_time = now;
  1531. }
  1532. if (predicted_internal_time + PREDICTED_CIRCS_RELEVANCE_TIME < now)
  1533. return 0; /* too long ago */
  1534. if (predicted_internal_uptime_time + PREDICTED_CIRCS_RELEVANCE_TIME >= now)
  1535. *need_uptime = 1;
  1536. if (predicted_internal_capacity_time + PREDICTED_CIRCS_RELEVANCE_TIME >= now)
  1537. *need_capacity = 1;
  1538. return 1;
  1539. }
  1540. /** Any ports used lately? These are pre-seeded if we just started
  1541. * up or if we're running a hidden service. */
  1542. int
  1543. any_predicted_circuits(time_t now)
  1544. {
  1545. return smartlist_len(predicted_ports_list) ||
  1546. predicted_internal_time + PREDICTED_CIRCS_RELEVANCE_TIME >= now;
  1547. }
  1548. /** Return 1 if we have no need for circuits currently, else return 0. */
  1549. int
  1550. rep_hist_circbuilding_dormant(time_t now)
  1551. {
  1552. if (any_predicted_circuits(now))
  1553. return 0;
  1554. /* see if we'll still need to build testing circuits */
  1555. if (server_mode(get_options()) &&
  1556. (!check_whether_orport_reachable() || !circuit_enough_testing_circs()))
  1557. return 0;
  1558. if (!check_whether_dirport_reachable())
  1559. return 0;
  1560. return 1;
  1561. }
  1562. static uint32_t n_signed_dir_objs = 0;
  1563. static uint32_t n_signed_routerdescs = 0;
  1564. static uint32_t n_verified_dir_objs = 0;
  1565. static uint32_t n_verified_routerdescs = 0;
  1566. static uint32_t n_onionskins_encrypted = 0;
  1567. static uint32_t n_onionskins_decrypted = 0;
  1568. static uint32_t n_tls_client_handshakes = 0;
  1569. static uint32_t n_tls_server_handshakes = 0;
  1570. static uint32_t n_rend_client_ops = 0;
  1571. static uint32_t n_rend_mid_ops = 0;
  1572. static uint32_t n_rend_server_ops = 0;
  1573. /** Increment the count of the number of times we've done <b>operation</b>. */
  1574. void
  1575. note_crypto_pk_op(pk_op_t operation)
  1576. {
  1577. switch (operation)
  1578. {
  1579. case SIGN_DIR:
  1580. n_signed_dir_objs++;
  1581. break;
  1582. case SIGN_RTR:
  1583. n_signed_routerdescs++;
  1584. break;
  1585. case VERIFY_DIR:
  1586. n_verified_dir_objs++;
  1587. break;
  1588. case VERIFY_RTR:
  1589. n_verified_routerdescs++;
  1590. break;
  1591. case ENC_ONIONSKIN:
  1592. n_onionskins_encrypted++;
  1593. break;
  1594. case DEC_ONIONSKIN:
  1595. n_onionskins_decrypted++;
  1596. break;
  1597. case TLS_HANDSHAKE_C:
  1598. n_tls_client_handshakes++;
  1599. break;
  1600. case TLS_HANDSHAKE_S:
  1601. n_tls_server_handshakes++;
  1602. break;
  1603. case REND_CLIENT:
  1604. n_rend_client_ops++;
  1605. break;
  1606. case REND_MID:
  1607. n_rend_mid_ops++;
  1608. break;
  1609. case REND_SERVER:
  1610. n_rend_server_ops++;
  1611. break;
  1612. default:
  1613. log_warn(LD_BUG, "Unknown pk operation %d", operation);
  1614. }
  1615. }
  1616. /** Log the number of times we've done each public/private-key operation. */
  1617. void
  1618. dump_pk_ops(int severity)
  1619. {
  1620. log(severity, LD_HIST,
  1621. "PK operations: %lu directory objects signed, "
  1622. "%lu directory objects verified, "
  1623. "%lu routerdescs signed, "
  1624. "%lu routerdescs verified, "
  1625. "%lu onionskins encrypted, "
  1626. "%lu onionskins decrypted, "
  1627. "%lu client-side TLS handshakes, "
  1628. "%lu server-side TLS handshakes, "
  1629. "%lu rendezvous client operations, "
  1630. "%lu rendezvous middle operations, "
  1631. "%lu rendezvous server operations.",
  1632. (unsigned long) n_signed_dir_objs,
  1633. (unsigned long) n_verified_dir_objs,
  1634. (unsigned long) n_signed_routerdescs,
  1635. (unsigned long) n_verified_routerdescs,
  1636. (unsigned long) n_onionskins_encrypted,
  1637. (unsigned long) n_onionskins_decrypted,
  1638. (unsigned long) n_tls_client_handshakes,
  1639. (unsigned long) n_tls_server_handshakes,
  1640. (unsigned long) n_rend_client_ops,
  1641. (unsigned long) n_rend_mid_ops,
  1642. (unsigned long) n_rend_server_ops);
  1643. }
  1644. /** Free all storage held by the OR/link history caches, by the
  1645. * bandwidth history arrays, or by the port history. */
  1646. void
  1647. rep_hist_free_all(void)
  1648. {
  1649. digestmap_free(history_map, free_or_history);
  1650. tor_free(read_array);
  1651. tor_free(write_array);
  1652. tor_free(last_stability_doc);
  1653. built_last_stability_doc_at = 0;
  1654. predicted_ports_free();
  1655. }
  1656. /****************** hidden service usage statistics ******************/
  1657. /** How large are the intervals for which we track and report hidden service
  1658. * use? */
  1659. #define NUM_SECS_HS_USAGE_SUM_INTERVAL (15*60)
  1660. /** How far in the past do we remember and publish hidden service use? */
  1661. #define NUM_SECS_HS_USAGE_SUM_IS_VALID (24*60*60)
  1662. /** How many hidden service usage intervals do we remember? (derived) */
  1663. #define NUM_TOTALS_HS_USAGE (NUM_SECS_HS_USAGE_SUM_IS_VALID/ \
  1664. NUM_SECS_HS_USAGE_SUM_INTERVAL)
  1665. /** List element containing a service id and the count. */
  1666. typedef struct hs_usage_list_elem_t {
  1667. /** Service id of this elem. */
  1668. char service_id[REND_SERVICE_ID_LEN_BASE32+1];
  1669. /** Number of occurrences for the given service id. */
  1670. uint32_t count;
  1671. /* Pointer to next list elem */
  1672. struct hs_usage_list_elem_t *next;
  1673. } hs_usage_list_elem_t;
  1674. /** Ordered list that stores service ids and the number of observations. It is
  1675. * ordered by the number of occurrences in descending order. Its purpose is to
  1676. * calculate the frequency distribution when the period is over. */
  1677. typedef struct hs_usage_list_t {
  1678. /* Pointer to the first element in the list. */
  1679. hs_usage_list_elem_t *start;
  1680. /* Number of total occurrences for all list elements. */
  1681. uint32_t total_count;
  1682. /* Number of service ids, i.e. number of list elements. */
  1683. uint32_t total_service_ids;
  1684. } hs_usage_list_t;
  1685. /** Tracks service-related observations in the current period and their
  1686. * history. */
  1687. typedef struct hs_usage_service_related_observation_t {
  1688. /** Ordered list that stores service ids and the number of observations in
  1689. * the current period. It is ordered by the number of occurrences in
  1690. * descending order. Its purpose is to calculate the frequency distribution
  1691. * when the period is over. */
  1692. hs_usage_list_t *list;
  1693. /** Circular arrays that store the history of observations. totals stores all
  1694. * observations, twenty (ten, five) the number of observations related to a
  1695. * service id being accounted for the top 20 (10, 5) percent of all
  1696. * observations. */
  1697. uint32_t totals[NUM_TOTALS_HS_USAGE];
  1698. uint32_t five[NUM_TOTALS_HS_USAGE];
  1699. uint32_t ten[NUM_TOTALS_HS_USAGE];
  1700. uint32_t twenty[NUM_TOTALS_HS_USAGE];
  1701. } hs_usage_service_related_observation_t;
  1702. /** Tracks the history of general period-related observations, i.e. those that
  1703. * cannot be related to a specific service id. */
  1704. typedef struct hs_usage_general_period_related_observations_t {
  1705. /** Circular array that stores the history of observations. */
  1706. uint32_t totals[NUM_TOTALS_HS_USAGE];
  1707. } hs_usage_general_period_related_observations_t;
  1708. /** Keeps information about the current observation period and its relation to
  1709. * the histories of observations. */
  1710. typedef struct hs_usage_current_observation_period_t {
  1711. /** Where do we write the next history entry? */
  1712. int next_idx;
  1713. /** How many values in history have been set ever? (upper bound!) */
  1714. int num_set;
  1715. /** When did this period begin? */
  1716. time_t start_of_current_period;
  1717. /** When does the next period begin? */
  1718. time_t start_of_next_period;
  1719. } hs_usage_current_observation_period_t;
  1720. static hs_usage_current_observation_period_t *current_period = NULL;
  1721. static hs_usage_service_related_observation_t *publish_total = NULL;
  1722. static hs_usage_service_related_observation_t *publish_novel = NULL;
  1723. static hs_usage_service_related_observation_t *fetch_total = NULL;
  1724. static hs_usage_service_related_observation_t *fetch_successful = NULL;
  1725. static hs_usage_general_period_related_observations_t *descs = NULL;
  1726. /** Creates an empty ordered list element. */
  1727. static hs_usage_list_elem_t *
  1728. hs_usage_list_elem_new(void)
  1729. {
  1730. hs_usage_list_elem_t *e;
  1731. e = tor_malloc_zero(sizeof(hs_usage_list_elem_t));
  1732. rephist_total_alloc += sizeof(hs_usage_list_elem_t);
  1733. e->count = 1;
  1734. e->next = NULL;
  1735. return e;
  1736. }
  1737. /** Creates an empty ordered list. */
  1738. static hs_usage_list_t *
  1739. hs_usage_list_new(void)
  1740. {
  1741. hs_usage_list_t *l;
  1742. l = tor_malloc_zero(sizeof(hs_usage_list_t));
  1743. rephist_total_alloc += sizeof(hs_usage_list_t);
  1744. l->start = NULL;
  1745. l->total_count = 0;
  1746. l->total_service_ids = 0;
  1747. return l;
  1748. }
  1749. /** Creates an empty structure for storing service-related observations. */
  1750. static hs_usage_service_related_observation_t *
  1751. hs_usage_service_related_observation_new(void)
  1752. {
  1753. hs_usage_service_related_observation_t *h;
  1754. h = tor_malloc_zero(sizeof(hs_usage_service_related_observation_t));
  1755. rephist_total_alloc += sizeof(hs_usage_service_related_observation_t);
  1756. h->list = hs_usage_list_new();
  1757. return h;
  1758. }
  1759. /** Creates an empty structure for storing general period-related
  1760. * observations. */
  1761. static hs_usage_general_period_related_observations_t *
  1762. hs_usage_general_period_related_observations_new(void)
  1763. {
  1764. hs_usage_general_period_related_observations_t *p;
  1765. p = tor_malloc_zero(sizeof(hs_usage_general_period_related_observations_t));
  1766. rephist_total_alloc+= sizeof(hs_usage_general_period_related_observations_t);
  1767. return p;
  1768. }
  1769. /** Creates an empty structure for storing period-specific information. */
  1770. static hs_usage_current_observation_period_t *
  1771. hs_usage_current_observation_period_new(void)
  1772. {
  1773. hs_usage_current_observation_period_t *c;
  1774. time_t now;
  1775. c = tor_malloc_zero(sizeof(hs_usage_current_observation_period_t));
  1776. rephist_total_alloc += sizeof(hs_usage_current_observation_period_t);
  1777. now = time(NULL);
  1778. c->start_of_current_period = now;
  1779. c->start_of_next_period = now + NUM_SECS_HS_USAGE_SUM_INTERVAL;
  1780. return c;
  1781. }
  1782. /** Initializes the structures for collecting hidden service usage data. */
  1783. static void
  1784. hs_usage_init(void)
  1785. {
  1786. current_period = hs_usage_current_observation_period_new();
  1787. publish_total = hs_usage_service_related_observation_new();
  1788. publish_novel = hs_usage_service_related_observation_new();
  1789. fetch_total = hs_usage_service_related_observation_new();
  1790. fetch_successful = hs_usage_service_related_observation_new();
  1791. descs = hs_usage_general_period_related_observations_new();
  1792. }
  1793. /** Clears the given ordered list by resetting its attributes and releasing
  1794. * the memory allocated by its elements. */
  1795. static void
  1796. hs_usage_list_clear(hs_usage_list_t *lst)
  1797. {
  1798. /* walk through elements and free memory */
  1799. hs_usage_list_elem_t *current = lst->start;
  1800. hs_usage_list_elem_t *tmp;
  1801. while (current != NULL) {
  1802. tmp = current->next;
  1803. rephist_total_alloc -= sizeof(hs_usage_list_elem_t);
  1804. tor_free(current);
  1805. current = tmp;
  1806. }
  1807. /* reset attributes */
  1808. lst->start = NULL;
  1809. lst->total_count = 0;
  1810. lst->total_service_ids = 0;
  1811. return;
  1812. }
  1813. /** Frees the memory used by the given list. */
  1814. static void
  1815. hs_usage_list_free(hs_usage_list_t *lst)
  1816. {
  1817. if (!lst)
  1818. return;
  1819. hs_usage_list_clear(lst);
  1820. rephist_total_alloc -= sizeof(hs_usage_list_t);
  1821. tor_free(lst);
  1822. }
  1823. /** Frees the memory used by the given service-related observations. */
  1824. static void
  1825. hs_usage_service_related_observation_free(
  1826. hs_usage_service_related_observation_t *s)
  1827. {
  1828. if (!s)
  1829. return;
  1830. hs_usage_list_free(s->list);
  1831. rephist_total_alloc -= sizeof(hs_usage_service_related_observation_t);
  1832. tor_free(s);
  1833. }
  1834. /** Frees the memory used by the given period-specific observations. */
  1835. static void
  1836. hs_usage_general_period_related_observations_free(
  1837. hs_usage_general_period_related_observations_t *s)
  1838. {
  1839. rephist_total_alloc-=sizeof(hs_usage_general_period_related_observations_t);
  1840. tor_free(s);
  1841. }
  1842. /** Frees the memory used by period-specific information. */
  1843. static void
  1844. hs_usage_current_observation_period_free(
  1845. hs_usage_current_observation_period_t *s)
  1846. {
  1847. rephist_total_alloc -= sizeof(hs_usage_current_observation_period_t);
  1848. tor_free(s);
  1849. }
  1850. /** Frees all memory that was used for collecting hidden service usage data. */
  1851. void
  1852. hs_usage_free_all(void)
  1853. {
  1854. hs_usage_general_period_related_observations_free(descs);
  1855. descs = NULL;
  1856. hs_usage_service_related_observation_free(fetch_successful);
  1857. hs_usage_service_related_observation_free(fetch_total);
  1858. hs_usage_service_related_observation_free(publish_novel);
  1859. hs_usage_service_related_observation_free(publish_total);
  1860. fetch_successful = fetch_total = publish_novel = publish_total = NULL;
  1861. hs_usage_current_observation_period_free(current_period);
  1862. current_period = NULL;
  1863. }
  1864. /** Inserts a new occurrence for the given service id to the given ordered
  1865. * list. */
  1866. static void
  1867. hs_usage_insert_value(hs_usage_list_t *lst, const char *service_id)
  1868. {
  1869. /* search if there is already an elem with same service_id in list */
  1870. hs_usage_list_elem_t *current = lst->start;
  1871. hs_usage_list_elem_t *previous = NULL;
  1872. while (current != NULL && strcasecmp(current->service_id,service_id)) {
  1873. previous = current;
  1874. current = current->next;
  1875. }
  1876. /* found an element with same service_id? */
  1877. if (current == NULL) {
  1878. /* not found! append to end (which could also be the end of a zero-length
  1879. * list), don't need to sort (1 is smallest value). */
  1880. /* create elem */
  1881. hs_usage_list_elem_t *e = hs_usage_list_elem_new();
  1882. /* update list attributes (one new elem, one new occurrence) */
  1883. lst->total_count++;
  1884. lst->total_service_ids++;
  1885. /* copy service id to elem */
  1886. strlcpy(e->service_id,service_id,sizeof(e->service_id));
  1887. /* let either l->start or previously last elem point to new elem */
  1888. if (lst->start == NULL) {
  1889. /* this is the first elem */
  1890. lst->start = e;
  1891. } else {
  1892. /* there were elems in the list before */
  1893. previous->next = e;
  1894. }
  1895. } else {
  1896. /* found! add occurrence to elem and consider resorting */
  1897. /* update list attributes (no new elem, but one new occurrence) */
  1898. lst->total_count++;
  1899. /* add occurrence to elem */
  1900. current->count++;
  1901. /* is it another than the first list elem? and has previous elem fewer
  1902. * count than current? then we need to resort */
  1903. if (previous != NULL && previous->count < current->count) {
  1904. /* yes! we need to resort */
  1905. /* remove current elem first */
  1906. previous->next = current->next;
  1907. /* can we prepend elem to all other elements? */
  1908. if (lst->start->count <= current->count) {
  1909. /* yes! prepend elem */
  1910. current->next = lst->start;
  1911. lst->start = current;
  1912. } else {
  1913. /* no! walk through list a second time and insert at correct place */
  1914. hs_usage_list_elem_t *insert_current = lst->start->next;
  1915. hs_usage_list_elem_t *insert_previous = lst->start;
  1916. while (insert_current != NULL &&
  1917. insert_current->count > current->count) {
  1918. insert_previous = insert_current;
  1919. insert_current = insert_current->next;
  1920. }
  1921. /* insert here */
  1922. current->next = insert_current;
  1923. insert_previous->next = current;
  1924. }
  1925. }
  1926. }
  1927. }
  1928. /** Writes the current service-related observations to the history array and
  1929. * clears the observations of the current period. */
  1930. static void
  1931. hs_usage_write_service_related_observations_to_history(
  1932. hs_usage_current_observation_period_t *p,
  1933. hs_usage_service_related_observation_t *h)
  1934. {
  1935. /* walk through the first 20 % of list elements and calculate frequency
  1936. * distributions */
  1937. /* maximum indices for the three frequencies */
  1938. int five_percent_idx = h->list->total_service_ids/20;
  1939. int ten_percent_idx = h->list->total_service_ids/10;
  1940. int twenty_percent_idx = h->list->total_service_ids/5;
  1941. /* temp values */
  1942. uint32_t five_percent = 0;
  1943. uint32_t ten_percent = 0;
  1944. uint32_t twenty_percent = 0;
  1945. /* walk through list */
  1946. hs_usage_list_elem_t *current = h->list->start;
  1947. int i=0;
  1948. while (current != NULL && i <= twenty_percent_idx) {
  1949. twenty_percent += current->count;
  1950. if (i <= ten_percent_idx)
  1951. ten_percent += current->count;
  1952. if (i <= five_percent_idx)
  1953. five_percent += current->count;
  1954. current = current->next;
  1955. i++;
  1956. }
  1957. /* copy frequencies */
  1958. h->twenty[p->next_idx] = twenty_percent;
  1959. h->ten[p->next_idx] = ten_percent;
  1960. h->five[p->next_idx] = five_percent;
  1961. /* copy total number of observations */
  1962. h->totals[p->next_idx] = h->list->total_count;
  1963. /* free memory of old list */
  1964. hs_usage_list_clear(h->list);
  1965. }
  1966. /** Advances to next observation period. */
  1967. static void
  1968. hs_usage_advance_current_observation_period(void)
  1969. {
  1970. /* aggregate observations to history, including frequency distribution
  1971. * arrays */
  1972. hs_usage_write_service_related_observations_to_history(
  1973. current_period, publish_total);
  1974. hs_usage_write_service_related_observations_to_history(
  1975. current_period, publish_novel);
  1976. hs_usage_write_service_related_observations_to_history(
  1977. current_period, fetch_total);
  1978. hs_usage_write_service_related_observations_to_history(
  1979. current_period, fetch_successful);
  1980. /* write current number of descriptors to descs history */
  1981. descs->totals[current_period->next_idx] = rend_cache_size();
  1982. /* advance to next period */
  1983. current_period->next_idx++;
  1984. if (current_period->next_idx == NUM_TOTALS_HS_USAGE)
  1985. current_period->next_idx = 0;
  1986. if (current_period->num_set < NUM_TOTALS_HS_USAGE)
  1987. ++current_period->num_set;
  1988. current_period->start_of_current_period=current_period->start_of_next_period;
  1989. current_period->start_of_next_period += NUM_SECS_HS_USAGE_SUM_INTERVAL;
  1990. }
  1991. /** Checks if the current period is up to date, and if not, advances it. */
  1992. static void
  1993. hs_usage_check_if_current_period_is_up_to_date(time_t now)
  1994. {
  1995. while (now > current_period->start_of_next_period) {
  1996. hs_usage_advance_current_observation_period();
  1997. }
  1998. }
  1999. /** Adds a service-related observation, maybe after advancing to next
  2000. * observation period. */
  2001. static void
  2002. hs_usage_add_service_related_observation(
  2003. hs_usage_service_related_observation_t *h,
  2004. time_t now,
  2005. const char *service_id)
  2006. {
  2007. if (now < current_period->start_of_current_period) {
  2008. /* don't record old data */
  2009. return;
  2010. }
  2011. /* check if we are up-to-date */
  2012. hs_usage_check_if_current_period_is_up_to_date(now);
  2013. /* add observation */
  2014. hs_usage_insert_value(h->list, service_id);
  2015. }
  2016. /** Adds the observation of storing a rendezvous service descriptor to our
  2017. * cache in our role as HS authoritative directory. */
  2018. void
  2019. hs_usage_note_publish_total(const char *service_id, time_t now)
  2020. {
  2021. hs_usage_add_service_related_observation(publish_total, now, service_id);
  2022. }
  2023. /** Adds the observation of storing a novel rendezvous service descriptor to
  2024. * our cache in our role as HS authoritative directory. */
  2025. void
  2026. hs_usage_note_publish_novel(const char *service_id, time_t now)
  2027. {
  2028. hs_usage_add_service_related_observation(publish_novel, now, service_id);
  2029. }
  2030. /** Adds the observation of being requested for a rendezvous service descriptor
  2031. * in our role as HS authoritative directory. */
  2032. void
  2033. hs_usage_note_fetch_total(const char *service_id, time_t now)
  2034. {
  2035. hs_usage_add_service_related_observation(fetch_total, now, service_id);
  2036. }
  2037. /** Adds the observation of being requested for a rendezvous service descriptor
  2038. * in our role as HS authoritative directory and being able to answer that
  2039. * request successfully. */
  2040. void
  2041. hs_usage_note_fetch_successful(const char *service_id, time_t now)
  2042. {
  2043. hs_usage_add_service_related_observation(fetch_successful, now, service_id);
  2044. }
  2045. /** Writes the given circular array to a string. */
  2046. static size_t
  2047. hs_usage_format_history(char *buf, size_t len, uint32_t *data)
  2048. {
  2049. char *cp = buf; /* pointer where we are in the buffer */
  2050. int i, n;
  2051. if (current_period->num_set <= current_period->next_idx) {
  2052. i = 0; /* not been through circular array */
  2053. } else {
  2054. i = current_period->next_idx;
  2055. }
  2056. for (n = 0; n < current_period->num_set; ++n,++i) {
  2057. if (i >= NUM_TOTALS_HS_USAGE)
  2058. i -= NUM_TOTALS_HS_USAGE;
  2059. tor_assert(i < NUM_TOTALS_HS_USAGE);
  2060. if (n == (current_period->num_set-1))
  2061. tor_snprintf(cp, len-(cp-buf), "%d", data[i]);
  2062. else
  2063. tor_snprintf(cp, len-(cp-buf), "%d,", data[i]);
  2064. cp += strlen(cp);
  2065. }
  2066. return cp-buf;
  2067. }
  2068. /** Writes the complete usage history as hidden service authoritative directory
  2069. * to a string. */
  2070. static char *
  2071. hs_usage_format_statistics(void)
  2072. {
  2073. char *buf, *cp, *s = NULL;
  2074. char t[ISO_TIME_LEN+1];
  2075. int r;
  2076. uint32_t *data = NULL;
  2077. size_t len;
  2078. len = (70+20*NUM_TOTALS_HS_USAGE)*11;
  2079. buf = tor_malloc_zero(len);
  2080. cp = buf;
  2081. for (r = 0; r < 11; ++r) {
  2082. switch (r) {
  2083. case 0:
  2084. s = (char*) "publish-total-history";
  2085. data = publish_total->totals;
  2086. break;
  2087. case 1:
  2088. s = (char*) "publish-novel-history";
  2089. data = publish_novel->totals;
  2090. break;
  2091. case 2:
  2092. s = (char*) "publish-top-5-percent-history";
  2093. data = publish_total->five;
  2094. break;
  2095. case 3:
  2096. s = (char*) "publish-top-10-percent-history";
  2097. data = publish_total->ten;
  2098. break;
  2099. case 4:
  2100. s = (char*) "publish-top-20-percent-history";
  2101. data = publish_total->twenty;
  2102. break;
  2103. case 5:
  2104. s = (char*) "fetch-total-history";
  2105. data = fetch_total->totals;
  2106. break;
  2107. case 6:
  2108. s = (char*) "fetch-successful-history";
  2109. data = fetch_successful->totals;
  2110. break;
  2111. case 7:
  2112. s = (char*) "fetch-top-5-percent-history";
  2113. data = fetch_total->five;
  2114. break;
  2115. case 8:
  2116. s = (char*) "fetch-top-10-percent-history";
  2117. data = fetch_total->ten;
  2118. break;
  2119. case 9:
  2120. s = (char*) "fetch-top-20-percent-history";
  2121. data = fetch_total->twenty;
  2122. break;
  2123. case 10:
  2124. s = (char*) "desc-total-history";
  2125. data = descs->totals;
  2126. break;
  2127. }
  2128. format_iso_time(t, current_period->start_of_current_period);
  2129. tor_snprintf(cp, len-(cp-buf), "%s %s (%d s) ", s, t,
  2130. NUM_SECS_HS_USAGE_SUM_INTERVAL);
  2131. cp += strlen(cp);
  2132. cp += hs_usage_format_history(cp, len-(cp-buf), data);
  2133. strlcat(cp, "\n", len-(cp-buf));
  2134. ++cp;
  2135. }
  2136. return buf;
  2137. }
  2138. /** Write current statistics about hidden service usage to file. */
  2139. void
  2140. hs_usage_write_statistics_to_file(time_t now)
  2141. {
  2142. char *buf;
  2143. size_t len;
  2144. char *fname;
  2145. or_options_t *options = get_options();
  2146. /* check if we are up-to-date */
  2147. hs_usage_check_if_current_period_is_up_to_date(now);
  2148. buf = hs_usage_format_statistics();
  2149. len = strlen(options->DataDirectory) + 16;
  2150. fname = tor_malloc(len);
  2151. tor_snprintf(fname, len, "%s"PATH_SEPARATOR"hsusage",
  2152. options->DataDirectory);
  2153. write_str_to_file(fname,buf,0);
  2154. tor_free(buf);
  2155. tor_free(fname);
  2156. }