dirvote.c 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776
  1. /* Copyright 2001-2004 Roger Dingledine.
  2. * Copyright 2004-2007 Roger Dingledine, Nick Mathewson. */
  3. /* See LICENSE for licensing information */
  4. /* $Id$ */
  5. const char dirvote_c_id[] =
  6. "$Id$";
  7. #define DIRVOTE_PRIVATE
  8. #include "or.h"
  9. /**
  10. * \file dirvote.c
  11. * \brief Functions to compute directory consensus, and schedule voting.
  12. **/
  13. static int dirvote_add_signatures_to_pending_consensus(
  14. const char *detached_signatures_body,
  15. const char **msg_out);
  16. static char *list_v3_auth_ids(void);
  17. static void dirvote_fetch_missing_votes(void);
  18. static void dirvote_fetch_missing_signatures(void);
  19. static void dirvote_perform_vote(void);
  20. static void dirvote_clear_votes(int all_votes);
  21. static int dirvote_compute_consensus(void);
  22. static int dirvote_publish_consensus(void);
  23. /* =====
  24. * Voting and consensus generation
  25. * ===== */
  26. /** Clear all storage held in <b>ns</b>. */
  27. void
  28. networkstatus_vote_free(networkstatus_vote_t *ns)
  29. {
  30. if (!ns)
  31. return;
  32. tor_free(ns->client_versions);
  33. tor_free(ns->server_versions);
  34. if (ns->known_flags) {
  35. SMARTLIST_FOREACH(ns->known_flags, char *, c, tor_free(c));
  36. smartlist_free(ns->known_flags);
  37. }
  38. if (ns->voters) {
  39. SMARTLIST_FOREACH(ns->voters, networkstatus_voter_info_t *, voter,
  40. {
  41. tor_free(voter->nickname);
  42. tor_free(voter->address);
  43. tor_free(voter->contact);
  44. });
  45. smartlist_free(ns->voters);
  46. }
  47. if (ns->cert)
  48. authority_cert_free(ns->cert);
  49. if (ns->routerstatus_list) {
  50. if (ns->is_vote) {
  51. SMARTLIST_FOREACH(ns->routerstatus_list, vote_routerstatus_t *, rs,
  52. {
  53. tor_free(rs->version);
  54. tor_free(rs);
  55. });
  56. } else {
  57. SMARTLIST_FOREACH(ns->routerstatus_list, routerstatus_t *, rs,
  58. tor_free(rs));
  59. }
  60. smartlist_free(ns->routerstatus_list);
  61. }
  62. memset(ns, 11, sizeof(*ns));
  63. tor_free(ns);
  64. }
  65. /** Return the voter info from <b>vote</b> for the voter whose identity digest
  66. * is <b>identity</b>, or NULL if no such voter is associated with
  67. * <b>vote</b>. */
  68. networkstatus_voter_info_t *
  69. networkstatus_get_voter_by_id(networkstatus_vote_t *vote,
  70. const char *identity)
  71. {
  72. if (!vote || !vote->voters)
  73. return NULL;
  74. SMARTLIST_FOREACH(vote->voters, networkstatus_voter_info_t *, voter,
  75. if (!memcmp(voter->identity_digest, identity, DIGEST_LEN))
  76. return voter);
  77. return NULL;
  78. }
  79. /** Given a vote <b>vote</b> (not a consensus!), return its associated
  80. * networkstatus_voter_info_t.*/
  81. static networkstatus_voter_info_t *
  82. get_voter(const networkstatus_vote_t *vote)
  83. {
  84. tor_assert(vote);
  85. tor_assert(vote->is_vote);
  86. tor_assert(vote->voters);
  87. tor_assert(smartlist_len(vote->voters) == 1);
  88. return smartlist_get(vote->voters, 0);
  89. }
  90. /** Helper for sorting networkstatus_vote_t votes (not consensuses) by the
  91. * hash of their voters' identity digests. */
  92. static int
  93. _compare_votes_by_authority_id(const void **_a, const void **_b)
  94. {
  95. const networkstatus_vote_t *a = *_a, *b = *_b;
  96. return memcmp(get_voter(a)->identity_digest,
  97. get_voter(b)->identity_digest, DIGEST_LEN);
  98. }
  99. /** Given a sorted list of strings <b>in</b>, add every member to <b>out</b>
  100. * that occurs more than <b>min</b> times. */
  101. static void
  102. get_frequent_members(smartlist_t *out, smartlist_t *in, int min)
  103. {
  104. char *cur = NULL;
  105. int count = 0;
  106. SMARTLIST_FOREACH(in, char *, cp,
  107. {
  108. if (cur && !strcmp(cp, cur)) {
  109. ++count;
  110. } else {
  111. if (count > min)
  112. smartlist_add(out, cur);
  113. cur = cp;
  114. count = 1;
  115. }
  116. });
  117. if (count > min)
  118. smartlist_add(out, cur);
  119. }
  120. /** Given a sorted list of strings <b>lst</b>, return the member that appears
  121. * most. Break ties in favor of later-occurring members. */
  122. static const char *
  123. get_most_frequent_member(smartlist_t *lst)
  124. {
  125. const char *most_frequent = NULL;
  126. int most_frequent_count = 0;
  127. const char *cur = NULL;
  128. int count = 0;
  129. SMARTLIST_FOREACH(lst, const char *, s,
  130. {
  131. if (cur && !strcmp(s, cur)) {
  132. ++count;
  133. } else {
  134. if (count >= most_frequent_count) {
  135. most_frequent = cur;
  136. most_frequent_count = count;
  137. }
  138. cur = s;
  139. count = 1;
  140. }
  141. });
  142. if (count >= most_frequent_count) {
  143. most_frequent = cur;
  144. most_frequent_count = count;
  145. }
  146. return most_frequent;
  147. }
  148. /** Return 0 if and only if <b>a</b> and <b>b</b> are routerstatuses
  149. * that come from the same routerinfo, with the same derived elements.
  150. */
  151. static int
  152. compare_vote_rs(const vote_routerstatus_t *a, const vote_routerstatus_t *b)
  153. {
  154. int r;
  155. if ((r = memcmp(a->status.identity_digest, b->status.identity_digest,
  156. DIGEST_LEN)))
  157. return r;
  158. if ((r = memcmp(a->status.descriptor_digest, b->status.descriptor_digest,
  159. DIGEST_LEN)))
  160. return r;
  161. if ((r = (b->status.published_on - a->status.published_on)))
  162. return r;
  163. if ((r = strcmp(b->status.nickname, a->status.nickname)))
  164. return r;
  165. if ((r = (((int)b->status.addr) - ((int)a->status.addr))))
  166. return r;
  167. if ((r = (((int)b->status.or_port) - ((int)a->status.or_port))))
  168. return r;
  169. if ((r = (((int)b->status.dir_port) - ((int)a->status.dir_port))))
  170. return r;
  171. return 0;
  172. }
  173. /** Helper for sorting routerlists based on compare_vote_rs. */
  174. static int
  175. _compare_vote_rs(const void **_a, const void **_b)
  176. {
  177. const vote_routerstatus_t *a = *_a, *b = *_b;
  178. return compare_vote_rs(a,b);
  179. }
  180. /** Given a list of vote_routerstatus_t, all for the same router identity,
  181. * return whichever is most frequent, breaking ties in favor of more
  182. * recently published vote_routerstatus_t.
  183. */
  184. static vote_routerstatus_t *
  185. compute_routerstatus_consensus(smartlist_t *votes)
  186. {
  187. vote_routerstatus_t *most = NULL, *cur = NULL;
  188. int most_n = 0, cur_n = 0;
  189. time_t most_published = 0;
  190. smartlist_sort(votes, _compare_vote_rs);
  191. SMARTLIST_FOREACH(votes, vote_routerstatus_t *, rs,
  192. {
  193. if (cur && !compare_vote_rs(cur, rs)) {
  194. ++cur_n;
  195. } else {
  196. if (cur_n > most_n ||
  197. (cur && cur_n == most_n &&
  198. cur->status.published_on > most_published)) {
  199. most = cur;
  200. most_n = cur_n;
  201. most_published = cur->status.published_on;
  202. }
  203. cur_n = 1;
  204. cur = rs;
  205. }
  206. });
  207. if (cur_n > most_n ||
  208. (cur && cur_n == most_n && cur->status.published_on > most_published)) {
  209. most = cur;
  210. most_n = cur_n;
  211. most_published = cur->status.published_on;
  212. }
  213. tor_assert(most);
  214. return most;
  215. }
  216. /** Given a list of strings in <b>lst</b>, set the DIGEST_LEN-byte digest at
  217. * <b>digest_out</b> to the hash of the concatenation of those strings. */
  218. static void
  219. hash_list_members(char *digest_out, smartlist_t *lst)
  220. {
  221. crypto_digest_env_t *d = crypto_new_digest_env();
  222. SMARTLIST_FOREACH(lst, const char *, cp,
  223. crypto_digest_add_bytes(d, cp, strlen(cp)));
  224. crypto_digest_get_digest(d, digest_out, DIGEST_LEN);
  225. crypto_free_digest_env(d);
  226. }
  227. /** Given a list of vote networkstatus_vote_t in <b>votes</b>, our public
  228. * authority <b>identity_key</b>, our private authority <b>signing_key</b>,
  229. * and the number of <b>total_authorities</b> that we believe exist in our
  230. * voting quorum, generate the text of a new v3 consensus vote, and return the
  231. * value in a newly allocated string.
  232. *
  233. * Note: this function DOES NOT check whether the votes are from
  234. * recognized authorities. (dirvote_add_vote does that.) */
  235. char *
  236. networkstatus_compute_consensus(smartlist_t *votes,
  237. int total_authorities,
  238. crypto_pk_env_t *identity_key,
  239. crypto_pk_env_t *signing_key)
  240. {
  241. smartlist_t *chunks;
  242. char *result = NULL;
  243. time_t valid_after, fresh_until, valid_until;
  244. int vote_seconds, dist_seconds;
  245. char *client_versions = NULL, *server_versions = NULL;
  246. smartlist_t *flags;
  247. tor_assert(total_authorities >= smartlist_len(votes));
  248. if (!smartlist_len(votes)) {
  249. log_warn(LD_DIR, "Can't compute a consensus from no votes.");
  250. return NULL;
  251. }
  252. flags = smartlist_create();
  253. /* Compute medians of time-related things, and figure out how many
  254. * routers we might need to talk about. */
  255. {
  256. int n_votes = smartlist_len(votes);
  257. time_t *va_times = tor_malloc(n_votes * sizeof(time_t));
  258. time_t *fu_times = tor_malloc(n_votes * sizeof(time_t));
  259. time_t *vu_times = tor_malloc(n_votes * sizeof(time_t));
  260. int *votesec_list = tor_malloc(n_votes * sizeof(int));
  261. int *distsec_list = tor_malloc(n_votes * sizeof(int));
  262. int n_versioning_clients = 0, n_versioning_servers = 0;
  263. smartlist_t *combined_client_versions = smartlist_create();
  264. smartlist_t *combined_server_versions = smartlist_create();
  265. int j;
  266. SMARTLIST_FOREACH(votes, networkstatus_vote_t *, v,
  267. {
  268. tor_assert(v->is_vote);
  269. va_times[v_sl_idx] = v->valid_after;
  270. fu_times[v_sl_idx] = v->fresh_until;
  271. vu_times[v_sl_idx] = v->valid_until;
  272. votesec_list[v_sl_idx] = v->vote_seconds;
  273. distsec_list[v_sl_idx] = v->dist_seconds;
  274. if (v->client_versions) {
  275. smartlist_t *cv = smartlist_create();
  276. ++n_versioning_clients;
  277. smartlist_split_string(cv, v->client_versions, ",",
  278. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  279. sort_version_list(cv, 1);
  280. smartlist_add_all(combined_client_versions, cv);
  281. smartlist_free(cv); /* elements get freed later. */
  282. }
  283. if (v->server_versions) {
  284. smartlist_t *sv = smartlist_create();
  285. ++n_versioning_servers;
  286. smartlist_split_string(sv, v->server_versions, ",",
  287. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  288. sort_version_list(sv, 1);
  289. smartlist_add_all(combined_server_versions, sv);
  290. smartlist_free(sv); /* elements get freed later. */
  291. }
  292. SMARTLIST_FOREACH(v->known_flags, const char *, cp,
  293. smartlist_add(flags, tor_strdup(cp)));
  294. });
  295. valid_after = median_time(va_times, n_votes);
  296. fresh_until = median_time(fu_times, n_votes);
  297. valid_until = median_time(vu_times, n_votes);
  298. vote_seconds = median_int(votesec_list, n_votes);
  299. dist_seconds = median_int(distsec_list, n_votes);
  300. /*
  301. SMARTLIST_FOREACH(va_times, int*, i,
  302. printf("VA: %d\n", *i));
  303. SMARTLIST_FOREACH(fu_times, int*, i,
  304. printf("FU: %d\n", *i));
  305. printf("%d..%d\n", (int)valid_after, (int)valid_until);
  306. */
  307. tor_assert(valid_after+MIN_VOTE_INTERVAL <= fresh_until);
  308. tor_assert(fresh_until+MIN_VOTE_INTERVAL <= valid_until);
  309. tor_assert(vote_seconds >= MIN_VOTE_SECONDS);
  310. tor_assert(dist_seconds >= MIN_DIST_SECONDS);
  311. for (j = 0; j < 2; ++j) {
  312. smartlist_t *lst =
  313. j ? combined_server_versions : combined_client_versions;
  314. int min = (j ? n_versioning_servers : n_versioning_clients) / 2;
  315. smartlist_t *good = smartlist_create();
  316. char *res;
  317. sort_version_list(lst, 0);
  318. get_frequent_members(good, lst, min);
  319. res = smartlist_join_strings(good, ",", 0, NULL);
  320. if (j)
  321. server_versions = res;
  322. else
  323. client_versions = res;
  324. SMARTLIST_FOREACH(lst, char *, cp, tor_free(cp));
  325. smartlist_free(good);
  326. smartlist_free(lst);
  327. }
  328. smartlist_sort_strings(flags);
  329. smartlist_uniq_strings(flags);
  330. tor_free(va_times);
  331. tor_free(fu_times);
  332. tor_free(vu_times);
  333. tor_free(votesec_list);
  334. tor_free(distsec_list);
  335. }
  336. chunks = smartlist_create();
  337. {
  338. char buf[1024];
  339. char va_buf[ISO_TIME_LEN+1], fu_buf[ISO_TIME_LEN+1],
  340. vu_buf[ISO_TIME_LEN+1];
  341. char *flaglist;
  342. format_iso_time(va_buf, valid_after);
  343. format_iso_time(fu_buf, fresh_until);
  344. format_iso_time(vu_buf, valid_until);
  345. flaglist = smartlist_join_strings(flags, " ", 0, NULL);
  346. tor_snprintf(buf, sizeof(buf),
  347. "network-status-version 3\n"
  348. "vote-status consensus\n"
  349. "valid-after %s\n"
  350. "fresh-until %s\n"
  351. "valid-until %s\n"
  352. "voting-delay %d %d\n"
  353. "client-versions %s\n"
  354. "server-versions %s\n"
  355. "known-flags %s\n",
  356. va_buf, fu_buf, vu_buf,
  357. vote_seconds, dist_seconds,
  358. client_versions, server_versions, flaglist);
  359. smartlist_add(chunks, tor_strdup(buf));
  360. tor_free(flaglist);
  361. }
  362. /* Sort the votes. */
  363. smartlist_sort(votes, _compare_votes_by_authority_id);
  364. /* Add the authority sections. */
  365. SMARTLIST_FOREACH(votes, networkstatus_vote_t *, v,
  366. {
  367. char buf[1024];
  368. struct in_addr in;
  369. char ip[INET_NTOA_BUF_LEN];
  370. char fingerprint[HEX_DIGEST_LEN+1];
  371. char votedigest[HEX_DIGEST_LEN+1];
  372. networkstatus_voter_info_t *voter = get_voter(v);
  373. in.s_addr = htonl(voter->addr);
  374. tor_inet_ntoa(&in, ip, sizeof(ip));
  375. base16_encode(fingerprint, sizeof(fingerprint), voter->identity_digest,
  376. DIGEST_LEN);
  377. base16_encode(votedigest, sizeof(votedigest), voter->vote_digest,
  378. DIGEST_LEN);
  379. tor_snprintf(buf, sizeof(buf),
  380. "dir-source %s %s %s %s %d %d\n"
  381. "contact %s\n"
  382. "vote-digest %s\n",
  383. voter->nickname, fingerprint, voter->address, ip,
  384. voter->dir_port,
  385. voter->or_port,
  386. voter->contact,
  387. votedigest);
  388. smartlist_add(chunks, tor_strdup(buf));
  389. });
  390. /* Add the actual router entries. */
  391. {
  392. int *index; /* index[j] is the current index into votes[j]. */
  393. int *size; /* size[j] is the number of routerstatuses in votes[j]. */
  394. int *flag_counts; /* The number of voters that list flag[j] for the
  395. * currently considered router. */
  396. int i;
  397. smartlist_t *matching_descs = smartlist_create();
  398. smartlist_t *chosen_flags = smartlist_create();
  399. smartlist_t *versions = smartlist_create();
  400. int *n_voter_flags; /* n_voter_flags[j] is the number of flags that
  401. * votes[j] knows about. */
  402. int *n_flag_voters; /* n_flag_voters[f] is the number of votes that care
  403. * about flags[f]. */
  404. int **flag_map; /* flag_map[j][b] is an index f such that flag_map[f]
  405. * is the same flag as votes[j]->known_flags[b]. */
  406. int *named_flag; /* Index of the flag "Named" for votes[j] */
  407. index = tor_malloc_zero(sizeof(int)*smartlist_len(votes));
  408. size = tor_malloc_zero(sizeof(int)*smartlist_len(votes));
  409. n_voter_flags = tor_malloc_zero(sizeof(int) * smartlist_len(votes));
  410. n_flag_voters = tor_malloc_zero(sizeof(int) * smartlist_len(flags));
  411. flag_map = tor_malloc_zero(sizeof(int*) * smartlist_len(votes));
  412. named_flag = tor_malloc_zero(sizeof(int*) * smartlist_len(votes));
  413. for (i = 0; i < smartlist_len(votes); ++i)
  414. named_flag[i] = -1;
  415. SMARTLIST_FOREACH(votes, networkstatus_vote_t *, v,
  416. {
  417. flag_map[v_sl_idx] = tor_malloc_zero(
  418. sizeof(int)*smartlist_len(v->known_flags));
  419. SMARTLIST_FOREACH(v->known_flags, const char *, fl,
  420. {
  421. int p = smartlist_string_pos(flags, fl);
  422. tor_assert(p >= 0);
  423. flag_map[v_sl_idx][fl_sl_idx] = p;
  424. ++n_flag_voters[p];
  425. if (!strcmp(fl, "Named"))
  426. named_flag[v_sl_idx] = fl_sl_idx;
  427. });
  428. n_voter_flags[v_sl_idx] = smartlist_len(v->known_flags);
  429. size[v_sl_idx] = smartlist_len(v->routerstatus_list);
  430. });
  431. /* Now go through all the votes */
  432. flag_counts = tor_malloc(sizeof(int) * smartlist_len(flags));
  433. while (1) {
  434. vote_routerstatus_t *rs;
  435. routerstatus_t rs_out;
  436. const char *lowest_id = NULL;
  437. const char *chosen_version;
  438. const char *chosen_name = NULL;
  439. int naming_conflict = 0;
  440. int n_listing = 0;
  441. int i;
  442. char buf[256];
  443. /* Of the next-to-be-considered digest in each voter, which is first? */
  444. SMARTLIST_FOREACH(votes, networkstatus_vote_t *, v, {
  445. if (index[v_sl_idx] < size[v_sl_idx]) {
  446. rs = smartlist_get(v->routerstatus_list, index[v_sl_idx]);
  447. if (!lowest_id ||
  448. memcmp(rs->status.identity_digest, lowest_id, DIGEST_LEN) < 0)
  449. lowest_id = rs->status.identity_digest;
  450. }
  451. });
  452. if (!lowest_id) /* we're out of routers. */
  453. break;
  454. memset(flag_counts, 0, sizeof(int)*smartlist_len(flags));
  455. smartlist_clear(matching_descs);
  456. smartlist_clear(chosen_flags);
  457. smartlist_clear(versions);
  458. /* Okay, go through all the entries for this digest. */
  459. SMARTLIST_FOREACH(votes, networkstatus_vote_t *, v, {
  460. if (index[v_sl_idx] >= size[v_sl_idx])
  461. continue; /* out of entries. */
  462. rs = smartlist_get(v->routerstatus_list, index[v_sl_idx]);
  463. if (memcmp(rs->status.identity_digest, lowest_id, DIGEST_LEN))
  464. continue; /* doesn't include this router. */
  465. /* At this point, we know that we're looking at a routersatus with
  466. * identity "lowest".
  467. */
  468. ++index[v_sl_idx];
  469. ++n_listing;
  470. smartlist_add(matching_descs, rs);
  471. if (rs->version && rs->version[0])
  472. smartlist_add(versions, rs->version);
  473. /* Tally up all the flags. */
  474. for (i = 0; i < n_voter_flags[v_sl_idx]; ++i) {
  475. if (rs->flags & (U64_LITERAL(1) << i))
  476. ++flag_counts[flag_map[v_sl_idx][i]];
  477. }
  478. if (rs->flags & (U64_LITERAL(1) << named_flag[v_sl_idx])) {
  479. if (chosen_name && strcmp(chosen_name, rs->status.nickname)) {
  480. log_notice(LD_DIR, "Conflict on naming for router: %s vs %s",
  481. chosen_name, rs->status.nickname);
  482. naming_conflict = 1;
  483. }
  484. chosen_name = rs->status.nickname;
  485. }
  486. });
  487. /* We don't include this router at all unless more than half of
  488. * the authorities we believe in list it. */
  489. if (n_listing <= total_authorities/2)
  490. continue;
  491. /* Figure out the most popular opinion of what the most recent
  492. * routerinfo and its contents are. */
  493. rs = compute_routerstatus_consensus(matching_descs);
  494. /* Copy bits of that into rs_out. */
  495. tor_assert(!memcmp(lowest_id, rs->status.identity_digest, DIGEST_LEN));
  496. memcpy(rs_out.identity_digest, lowest_id, DIGEST_LEN);
  497. memcpy(rs_out.descriptor_digest, rs->status.descriptor_digest,
  498. DIGEST_LEN);
  499. rs_out.addr = rs->status.addr;
  500. rs_out.published_on = rs->status.published_on;
  501. rs_out.dir_port = rs->status.dir_port;
  502. rs_out.or_port = rs->status.or_port;
  503. if (chosen_name && !naming_conflict) {
  504. strlcpy(rs_out.nickname, chosen_name, sizeof(rs_out.nickname));
  505. } else {
  506. strlcpy(rs_out.nickname, rs->status.nickname, sizeof(rs_out.nickname));
  507. }
  508. /* Set the flags. */
  509. smartlist_add(chosen_flags, (char*)"s"); /* for the start of the line. */
  510. SMARTLIST_FOREACH(flags, const char *, fl,
  511. {
  512. if (strcmp(fl, "Named")) {
  513. if (flag_counts[fl_sl_idx] > n_flag_voters[fl_sl_idx]/2)
  514. smartlist_add(chosen_flags, (char*)fl);
  515. } else {
  516. if (!naming_conflict && flag_counts[fl_sl_idx])
  517. smartlist_add(chosen_flags, (char*)"Named");
  518. }
  519. });
  520. /* Pick the version. */
  521. if (smartlist_len(versions)) {
  522. sort_version_list(versions, 0);
  523. chosen_version = get_most_frequent_member(versions);
  524. } else {
  525. chosen_version = NULL;
  526. }
  527. /* Okay!! Now we can write the descriptor... */
  528. /* First line goes into "buf". */
  529. routerstatus_format_entry(buf, sizeof(buf), &rs_out, NULL, 1);
  530. smartlist_add(chunks, tor_strdup(buf));
  531. /* Second line is all flags. The "\n" is missing. */
  532. smartlist_add(chunks,
  533. smartlist_join_strings(chosen_flags, " ", 0, NULL));
  534. /* Now the version line. */
  535. if (chosen_version) {
  536. smartlist_add(chunks, tor_strdup("\nv "));
  537. smartlist_add(chunks, tor_strdup(chosen_version));
  538. }
  539. smartlist_add(chunks, tor_strdup("\n"));
  540. /* And the loop is over and we move on to the next router */
  541. }
  542. tor_free(index);
  543. tor_free(size);
  544. tor_free(n_voter_flags);
  545. tor_free(n_flag_voters);
  546. for (i = 0; i < smartlist_len(votes); ++i)
  547. tor_free(flag_map[i]);
  548. tor_free(flag_map);
  549. tor_free(flag_counts);
  550. smartlist_free(matching_descs);
  551. smartlist_free(chosen_flags);
  552. smartlist_free(versions);
  553. }
  554. /* Add a signature. */
  555. {
  556. char digest[DIGEST_LEN];
  557. char fingerprint[HEX_DIGEST_LEN+1];
  558. char signing_key_fingerprint[HEX_DIGEST_LEN+1];
  559. char buf[4096];
  560. smartlist_add(chunks, tor_strdup("directory-signature "));
  561. /* Compute the hash of the chunks. */
  562. hash_list_members(digest, chunks);
  563. /* Get the fingerprints */
  564. crypto_pk_get_fingerprint(identity_key, fingerprint, 0);
  565. crypto_pk_get_fingerprint(signing_key, signing_key_fingerprint, 0);
  566. /* add the junk that will go at the end of the line. */
  567. tor_snprintf(buf, sizeof(buf), "%s %s\n", fingerprint,
  568. signing_key_fingerprint);
  569. /* And the signature. */
  570. if (router_append_dirobj_signature(buf, sizeof(buf), digest,
  571. signing_key)) {
  572. log_warn(LD_BUG, "Couldn't sign consensus networkstatus.");
  573. return NULL; /* This leaks, but it should never happen. */
  574. }
  575. smartlist_add(chunks, tor_strdup(buf));
  576. }
  577. result = smartlist_join_strings(chunks, "", 0, NULL);
  578. tor_free(client_versions);
  579. tor_free(server_versions);
  580. smartlist_free(flags);
  581. SMARTLIST_FOREACH(chunks, char *, cp, tor_free(cp));
  582. smartlist_free(chunks);
  583. {
  584. networkstatus_vote_t *c;
  585. if (!(c = networkstatus_parse_vote_from_string(result, NULL, 0))) {
  586. log_err(LD_BUG,"Generated a networkstatus consensus we couldn't "
  587. "parse.");
  588. tor_free(result);
  589. return NULL;
  590. }
  591. networkstatus_vote_free(c);
  592. }
  593. return result;
  594. }
  595. /** Check whether the signature on <b>voter</b> is correctly signed by
  596. * the signing key of <b>cert</b>. Return -1 if <b>cert</b> doesn't match the
  597. * signing key; otherwise set the good_signature or bad_signature flag on
  598. * <b>voter</b>, and return 0. */
  599. /* (private; exposed for testing.) */
  600. int
  601. networkstatus_check_voter_signature(networkstatus_vote_t *consensus,
  602. networkstatus_voter_info_t *voter,
  603. authority_cert_t *cert)
  604. {
  605. char d[DIGEST_LEN];
  606. char *signed_digest;
  607. size_t signed_digest_len;
  608. if (crypto_pk_get_digest(cert->signing_key, d)<0)
  609. return -1;
  610. if (memcmp(voter->signing_key_digest, d, DIGEST_LEN))
  611. return -1;
  612. signed_digest_len = crypto_pk_keysize(cert->signing_key);
  613. signed_digest = tor_malloc(signed_digest_len);
  614. if (crypto_pk_public_checksig(cert->signing_key,
  615. signed_digest,
  616. voter->signature,
  617. voter->signature_len) != DIGEST_LEN ||
  618. memcmp(signed_digest, consensus->networkstatus_digest, DIGEST_LEN)) {
  619. log_warn(LD_DIR, "Got a bad signature on a networkstatus vote");
  620. voter->bad_signature = 1;
  621. } else {
  622. voter->good_signature = 1;
  623. }
  624. return 0;
  625. }
  626. /** Given a v3 networkstatus consensus in <b>consensus</b>, check every
  627. * as-yet-unchecked signature on <b>consensus</b>. Return 1 if there is a
  628. * signature from every recognized authority on it, 0 if there are
  629. * enough good signatures from recognized authorities on it, -1 if we might
  630. * get enough good signatures by fetching missing certificates, and -2
  631. * otherwise. Log messages at INFO or WARN: if <b>warn</b> is over 1, warn
  632. * about every problem; if warn is at least 1, warn only if we can't get
  633. * enough signatures; if warn is negative, log nothing at all. */
  634. int
  635. networkstatus_check_consensus_signature(networkstatus_vote_t *consensus,
  636. int warn)
  637. {
  638. int n_good = 0;
  639. int n_missing_key = 0;
  640. int n_bad = 0;
  641. int n_unknown = 0;
  642. int n_no_signature = 0;
  643. int n_v3_authorities = get_n_authorities(V3_AUTHORITY);
  644. int n_required = n_v3_authorities/2 + 1;
  645. smartlist_t *need_certs_from = smartlist_create();
  646. smartlist_t *unrecognized = smartlist_create();
  647. smartlist_t *missing_authorities = smartlist_create();
  648. int severity;
  649. tor_assert(! consensus->is_vote);
  650. SMARTLIST_FOREACH(consensus->voters, networkstatus_voter_info_t *, voter,
  651. {
  652. if (!voter->good_signature && !voter->bad_signature && voter->signature) {
  653. /* we can try to check the signature. */
  654. authority_cert_t *cert =
  655. authority_cert_get_by_digests(voter->identity_digest,
  656. voter->signing_key_digest);
  657. if (! cert) {
  658. if (!trusteddirserver_get_by_v3_auth_digest(voter->identity_digest))
  659. smartlist_add(unrecognized, voter);
  660. else
  661. smartlist_add(need_certs_from, voter);
  662. ++n_unknown;
  663. continue;
  664. }
  665. if (networkstatus_check_voter_signature(consensus, voter, cert) < 0) {
  666. smartlist_add(need_certs_from, voter);
  667. ++n_missing_key;
  668. continue;
  669. }
  670. }
  671. if (voter->good_signature)
  672. ++n_good;
  673. else if (voter->bad_signature)
  674. ++n_bad;
  675. else
  676. ++n_no_signature;
  677. });
  678. /* Now see whether we're missing any voters entirely. */
  679. SMARTLIST_FOREACH(router_get_trusted_dir_servers(),
  680. trusted_dir_server_t *, ds,
  681. {
  682. if ((ds->type & V3_AUTHORITY) &&
  683. !networkstatus_get_voter_by_id(consensus, ds->v3_identity_digest))
  684. smartlist_add(missing_authorities, ds);
  685. });
  686. if (warn > 1 || (warn >= 0 && n_good < n_required))
  687. severity = LOG_WARN;
  688. else
  689. severity = LOG_INFO;
  690. if (warn >= 0) {
  691. SMARTLIST_FOREACH(unrecognized, networkstatus_voter_info_t *, voter,
  692. {
  693. log(severity, LD_DIR, "Consensus includes unrecognized authority '%s' "
  694. "at %s:%d (contact %s; identity %s)",
  695. voter->nickname, voter->address, (int)voter->dir_port,
  696. voter->contact?voter->contact:"n/a",
  697. hex_str(voter->identity_digest, DIGEST_LEN));
  698. });
  699. SMARTLIST_FOREACH(need_certs_from, networkstatus_voter_info_t *, voter,
  700. {
  701. log_info(LD_DIR, "Looks like we need to download a new certificate "
  702. "from authority '%s' at %s:%d (contact %s; identity %s)",
  703. voter->nickname, voter->address, (int)voter->dir_port,
  704. voter->contact?voter->contact:"n/a",
  705. hex_str(voter->identity_digest, DIGEST_LEN));
  706. });
  707. SMARTLIST_FOREACH(missing_authorities, trusted_dir_server_t *, ds,
  708. {
  709. log(severity, LD_DIR, "Consensus does not include configured "
  710. "authority '%s' at %s:%d (identity %s)",
  711. ds->nickname, ds->address, (int)ds->dir_port,
  712. hex_str(ds->v3_identity_digest, DIGEST_LEN));
  713. });
  714. log(severity, LD_DIR,
  715. "%d unknown, %d missing key, %d good, %d bad, %d no signature, "
  716. "%d required", n_unknown, n_missing_key, n_good, n_bad,
  717. n_no_signature, n_required);
  718. }
  719. smartlist_free(unrecognized);
  720. smartlist_free(need_certs_from);
  721. smartlist_free(missing_authorities);
  722. if (n_good == n_v3_authorities)
  723. return 1;
  724. else if (n_good >= n_required)
  725. return 0;
  726. else if (n_good + n_missing_key >= n_required)
  727. return -1;
  728. else
  729. return -2;
  730. }
  731. /** Given a consensus vote <b>target</b> and a list of
  732. * notworkstatus_voter_info_t in <b>src_voter_list</b> that correspond to the
  733. * same consensus, check whether there are any new signatures in
  734. * <b>src_voter_list</b> that should be added to <b>target. (A signature
  735. * should be added if we have no signature for that voter in <b>target</b>
  736. * yet, or if we have no verifiable signature and the new signature is
  737. * verifiable.) Return the number of signatures added or changed. */
  738. static int
  739. networkstatus_add_signatures_impl(networkstatus_vote_t *target,
  740. smartlist_t *src_voter_list)
  741. {
  742. int r = 0;
  743. tor_assert(target);
  744. tor_assert(!target->is_vote);
  745. /* For each voter in src... */
  746. SMARTLIST_FOREACH(src_voter_list, networkstatus_voter_info_t *, src_voter,
  747. {
  748. networkstatus_voter_info_t *target_voter =
  749. networkstatus_get_voter_by_id(target, src_voter->identity_digest);
  750. authority_cert_t *cert;
  751. /* If the target doesn't know about this voter, then forget it. */
  752. if (!target_voter)
  753. continue;
  754. /* If the target already has a good signature from this voter, then skip
  755. * this one. */
  756. if (target_voter->good_signature)
  757. continue;
  758. /* Try checking the signature if we haven't already. */
  759. if (!src_voter->good_signature && !src_voter->bad_signature) {
  760. cert = authority_cert_get_by_digests(src_voter->identity_digest,
  761. src_voter->signing_key_digest);
  762. if (cert) {
  763. networkstatus_check_voter_signature(target, src_voter, cert);
  764. }
  765. }
  766. /* If this signature is good, or we don't have any signature yet,
  767. * then add it. */
  768. if (src_voter->good_signature || !target_voter->signature) {
  769. ++r;
  770. tor_free(target_voter->signature);
  771. target_voter->signature =
  772. tor_memdup(src_voter->signature, src_voter->signature_len);
  773. memcpy(target_voter->signing_key_digest, src_voter->signing_key_digest,
  774. DIGEST_LEN);
  775. target_voter->signature_len = src_voter->signature_len;
  776. target_voter->good_signature = 1;
  777. target_voter->bad_signature = 0;
  778. }
  779. });
  780. return r;
  781. }
  782. /** As networkstatus_add_consensus_signature_impl, but takes new signatures
  783. * from the detached signatures document <b>sigs</b>. */
  784. int
  785. networkstatus_add_detached_signatures(networkstatus_vote_t *target,
  786. ns_detached_signatures_t *sigs)
  787. {
  788. tor_assert(sigs);
  789. /* Are they the same consensus? */
  790. if (memcmp(target->networkstatus_digest, sigs->networkstatus_digest,
  791. DIGEST_LEN))
  792. return -1;
  793. return networkstatus_add_signatures_impl(target, sigs->signatures);
  794. }
  795. /** Return a newly allocated string holding the detached-signatures document
  796. * corresponding to the signatures on <b>consensus</b>. */
  797. char *
  798. networkstatus_get_detached_signatures(networkstatus_vote_t *consensus)
  799. {
  800. smartlist_t *elements;
  801. char buf[4096];
  802. char *result = NULL;
  803. int n_sigs = 0;
  804. tor_assert(consensus);
  805. tor_assert(! consensus->is_vote);
  806. elements = smartlist_create();
  807. {
  808. char va_buf[ISO_TIME_LEN+1], fu_buf[ISO_TIME_LEN+1],
  809. vu_buf[ISO_TIME_LEN+1];
  810. char d[HEX_DIGEST_LEN+1];
  811. base16_encode(d, sizeof(d), consensus->networkstatus_digest, DIGEST_LEN);
  812. format_iso_time(va_buf, consensus->valid_after);
  813. format_iso_time(fu_buf, consensus->fresh_until);
  814. format_iso_time(vu_buf, consensus->valid_until);
  815. tor_snprintf(buf, sizeof(buf),
  816. "consensus-digest %s\n"
  817. "valid-after %s\n"
  818. "fresh-until %s\n"
  819. "valid-until %s\n", d, va_buf, fu_buf, vu_buf);
  820. smartlist_add(elements, tor_strdup(buf));
  821. }
  822. SMARTLIST_FOREACH(consensus->voters, networkstatus_voter_info_t *, v,
  823. {
  824. char sk[HEX_DIGEST_LEN+1];
  825. char id[HEX_DIGEST_LEN+1];
  826. if (!v->signature || v->bad_signature)
  827. continue;
  828. ++n_sigs;
  829. base16_encode(sk, sizeof(sk), v->signing_key_digest, DIGEST_LEN);
  830. base16_encode(id, sizeof(id), v->identity_digest, DIGEST_LEN);
  831. tor_snprintf(buf, sizeof(buf),
  832. "directory-signature %s %s\n-----BEGIN SIGNATURE-----\n",
  833. id, sk);
  834. smartlist_add(elements, tor_strdup(buf));
  835. base64_encode(buf, sizeof(buf), v->signature, v->signature_len);
  836. strlcat(buf, "-----END SIGNATURE-----\n", sizeof(buf));
  837. smartlist_add(elements, tor_strdup(buf));
  838. });
  839. result = smartlist_join_strings(elements, "", 0, NULL);
  840. SMARTLIST_FOREACH(elements, char *, cp, tor_free(cp));
  841. smartlist_free(elements);
  842. if (!n_sigs)
  843. tor_free(result);
  844. return result;
  845. }
  846. /** Release all storage held in <b>s</b>. */
  847. void
  848. ns_detached_signatures_free(ns_detached_signatures_t *s)
  849. {
  850. if (s->signatures) {
  851. SMARTLIST_FOREACH(s->signatures, networkstatus_voter_info_t *, v,
  852. {
  853. tor_free(v->signature);
  854. tor_free(v);
  855. });
  856. smartlist_free(s->signatures);
  857. }
  858. tor_free(s);
  859. }
  860. /* =====
  861. * Certificate functions
  862. * ===== */
  863. /** Free storage held in <b>cert</b>. */
  864. void
  865. authority_cert_free(authority_cert_t *cert)
  866. {
  867. if (!cert)
  868. return;
  869. tor_free(cert->cache_info.signed_descriptor_body);
  870. if (cert->signing_key)
  871. crypto_free_pk_env(cert->signing_key);
  872. if (cert->identity_key)
  873. crypto_free_pk_env(cert->identity_key);
  874. tor_free(cert);
  875. }
  876. /** Allocate and return a new authority_cert_t with the same contents as
  877. * <b>cert</b>. */
  878. authority_cert_t *
  879. authority_cert_dup(authority_cert_t *cert)
  880. {
  881. authority_cert_t *out = tor_malloc(sizeof(authority_cert_t));
  882. tor_assert(cert);
  883. memcpy(out, cert, sizeof(authority_cert_t));
  884. /* Now copy pointed-to things. */
  885. out->cache_info.signed_descriptor_body =
  886. tor_strndup(cert->cache_info.signed_descriptor_body,
  887. cert->cache_info.signed_descriptor_len);
  888. out->cache_info.saved_location = SAVED_NOWHERE;
  889. out->identity_key = crypto_pk_dup_key(cert->identity_key);
  890. out->signing_key = crypto_pk_dup_key(cert->signing_key);
  891. return out;
  892. }
  893. /* =====
  894. * Vote scheduling
  895. * ===== */
  896. /** Set *<b>timing_out</b> to the intervals at which we would like to vote.
  897. * Note that these aren't the intervals we'll use to vote; they're the ones
  898. * that we'll vote to use. */
  899. void
  900. dirvote_get_preferred_voting_intervals(vote_timing_t *timing_out)
  901. {
  902. or_options_t *options = get_options();
  903. tor_assert(timing_out);
  904. timing_out->vote_interval = options->V3AuthVotingInterval;
  905. timing_out->n_intervals_valid = options->V3AuthNIntervalsValid;
  906. timing_out->vote_delay = options->V3AuthVoteDelay;
  907. timing_out->dist_delay = options->V3AuthDistDelay;
  908. }
  909. /** Return the start of the next interval of size <b>interval</b> (in seconds)
  910. * after <b>now</b>. Midnight always starts a fresh interval, and if the last
  911. * interval of a day would be truncated to less than half its size, it is
  912. * rolled into the previous interval. */
  913. time_t
  914. dirvote_get_start_of_next_interval(time_t now, int interval)
  915. {
  916. struct tm tm;
  917. time_t midnight_today;
  918. time_t midnight_tomorrow;
  919. time_t next;
  920. tor_gmtime_r(&now, &tm);
  921. tm.tm_hour = 0;
  922. tm.tm_min = 0;
  923. tm.tm_sec = 0;
  924. midnight_today = tor_timegm(&tm);
  925. midnight_tomorrow = midnight_today + (24*60*60);
  926. next = midnight_today + ((now-midnight_today)/interval + 1)*interval;
  927. /* Intervals never cross midnight. */
  928. if (next > midnight_tomorrow)
  929. next = midnight_tomorrow;
  930. /* If the interval would only last half as long as it's supposed to, then
  931. * skip over to the next day. */
  932. if (next + interval/2 > midnight_tomorrow)
  933. next = midnight_tomorrow;
  934. return next;
  935. }
  936. /** Scheduling information for a voting interval. */
  937. static struct {
  938. /** When do we generate and distribute our vote for this interval? */
  939. time_t voting_starts;
  940. /** When do we send an HTTP request for any votes that we haven't
  941. * been posted yet?*/
  942. time_t fetch_missing_votes;
  943. /** When do we give up on getting more votes and generate a consensus? */
  944. time_t voting_ends;
  945. /** When do we send an HTTP request for any signatures we're expecting to
  946. * see on the consensus? */
  947. time_t fetch_missing_signatures;
  948. /** When do we publish the consensus? */
  949. time_t interval_starts;
  950. /** When do we discard old votes and pending detached signatures? */
  951. time_t discard_old_votes;
  952. /* True iff we have generated and distributed our vote. */
  953. int have_voted;
  954. /* True iff we've requested missing votes. */
  955. int have_fetched_missing_votes;
  956. /* True iff we have built a consensus and sent the signatures around. */
  957. int have_built_consensus;
  958. /* True iff we've fetched missing signatures. */
  959. int have_fetched_missing_signatures;
  960. /* True iff we have published our consensus. */
  961. int have_published_consensus;
  962. } voting_schedule = {0,0,0,0,0,0,0,0,0,0,0};
  963. /** Set voting_schedule to hold the timing for the next vote we should be
  964. * doing. */
  965. void
  966. dirvote_recalculate_timing(time_t now)
  967. {
  968. /* XXXX020 call this when inputs may have changed (i.e., whenver we get a
  969. * fresh consensus.) */
  970. int interval, vote_delay, dist_delay;
  971. time_t start;
  972. time_t end;
  973. networkstatus_vote_t *consensus = networkstatus_get_latest_consensus();
  974. memset(&voting_schedule, 0, sizeof(voting_schedule));
  975. if (consensus) {
  976. interval = consensus->fresh_until - consensus->valid_after;
  977. vote_delay = consensus->vote_seconds;
  978. dist_delay = consensus->dist_seconds;
  979. } else {
  980. interval = 30*60;
  981. vote_delay = dist_delay = 300;
  982. }
  983. tor_assert(interval > 0);
  984. if (vote_delay + dist_delay > interval/2)
  985. vote_delay = dist_delay = interval / 4;
  986. start = voting_schedule.interval_starts =
  987. dirvote_get_start_of_next_interval(now,interval);
  988. end = dirvote_get_start_of_next_interval(start+1, interval);
  989. tor_assert(end > start);
  990. voting_schedule.fetch_missing_signatures = start - (dist_delay/2);
  991. voting_schedule.voting_ends = start - dist_delay;
  992. voting_schedule.fetch_missing_votes = start - dist_delay - (vote_delay/2);
  993. voting_schedule.voting_starts = start - dist_delay - vote_delay;
  994. voting_schedule.discard_old_votes = start;
  995. }
  996. /** Entry point: Take whatever voting actions are pending as of <b>now</b>. */
  997. void
  998. dirvote_act(time_t now)
  999. {
  1000. if (!voting_schedule.voting_starts) {
  1001. char *keys = list_v3_auth_ids();
  1002. authority_cert_t *c = get_my_v3_authority_cert();
  1003. log_notice(LD_DIR, "Scheduling voting. Known authority IDs are %s. "
  1004. "Mine is %s.",
  1005. keys, hex_str(c->cache_info.identity_digest, DIGEST_LEN));
  1006. tor_free(keys);
  1007. dirvote_recalculate_timing(now);
  1008. }
  1009. if (voting_schedule.voting_starts < now && !voting_schedule.have_voted) {
  1010. log_notice(LD_DIR, "Time to vote.");
  1011. dirvote_perform_vote();
  1012. voting_schedule.have_voted = 1;
  1013. }
  1014. if (voting_schedule.fetch_missing_votes < now &&
  1015. !voting_schedule.have_fetched_missing_votes) {
  1016. log_notice(LD_DIR, "Time to fetch any votes that we're missing.");
  1017. dirvote_fetch_missing_votes();
  1018. voting_schedule.have_fetched_missing_votes = 1;
  1019. }
  1020. if (voting_schedule.voting_ends < now &&
  1021. !voting_schedule.have_built_consensus) {
  1022. log_notice(LD_DIR, "Time to compute a consensus.");
  1023. dirvote_compute_consensus();
  1024. /* XXXX020 we will want to try again later if we haven't got enough
  1025. * votes yet. */
  1026. voting_schedule.have_built_consensus = 1;
  1027. }
  1028. if (voting_schedule.fetch_missing_signatures < now &&
  1029. !voting_schedule.have_fetched_missing_signatures) {
  1030. log_notice(LD_DIR, "Time to fetch any signatures that we're missing.");
  1031. dirvote_fetch_missing_signatures();
  1032. voting_schedule.have_fetched_missing_signatures = 1;
  1033. }
  1034. if (voting_schedule.interval_starts < now &&
  1035. !voting_schedule.have_published_consensus) {
  1036. log_notice(LD_DIR, "Time to publish the consensus.");
  1037. dirvote_publish_consensus();
  1038. /* XXXX020 we will want to try again later if we haven't got enough
  1039. * signatures yet. */
  1040. voting_schedule.have_published_consensus = 1;
  1041. }
  1042. if (voting_schedule.discard_old_votes < now) {
  1043. log_notice(LD_DIR, "Time to discard old votes.");
  1044. dirvote_clear_votes(0);
  1045. dirvote_recalculate_timing(now);
  1046. }
  1047. }
  1048. /** A vote networkstatus_vote_t and its unparsed body: held around so we can
  1049. * use it to generate a consensus (at voting_ends) and so we can serve it to
  1050. * other authorities that might want it. */
  1051. typedef struct pending_vote_t {
  1052. cached_dir_t *vote_body;
  1053. networkstatus_vote_t *vote;
  1054. } pending_vote_t;
  1055. /** List of pending_vote_t for the current vote. Before we've used them to
  1056. * build a consensus, the votes go here. */
  1057. static smartlist_t *pending_vote_list = NULL;
  1058. /** List of pending_vote_t for the previous vote. After we've used them to
  1059. * build a consensus, the votes go here for the next period. */
  1060. static smartlist_t *previous_vote_list = NULL;
  1061. /** The body of the consensus that we're currently building. Once we
  1062. * have it built, it goes into dirserv.c */
  1063. static char *pending_consensus_body = NULL;
  1064. /** The detached signatures for the consensus that we're currently
  1065. * building. */
  1066. static char *pending_consensus_signatures = NULL;
  1067. /** The parsed in-progress consensus document. */
  1068. static networkstatus_vote_t *pending_consensus = NULL;
  1069. /** List of ns_detached_signatures_t: hold signatures that get posted to us
  1070. * before we have generated the consensus on our own. */
  1071. static smartlist_t *pending_consensus_signature_list = NULL;
  1072. /** Generate a networkstatus vote and post it to all the v3 authorities.
  1073. * (V3 Authority only) */
  1074. static void
  1075. dirvote_perform_vote(void)
  1076. {
  1077. cached_dir_t *new_vote = generate_v3_networkstatus();
  1078. pending_vote_t *pending_vote;
  1079. int status;
  1080. const char *msg = "";
  1081. if (!new_vote)
  1082. return;
  1083. if (!(pending_vote = dirvote_add_vote(new_vote->dir, &msg, &status))) {
  1084. log_warn(LD_DIR, "Couldn't store my own vote! (I told myself, '%s'.)",
  1085. msg);
  1086. return;
  1087. }
  1088. directory_post_to_dirservers(DIR_PURPOSE_UPLOAD_VOTE,
  1089. ROUTER_PURPOSE_GENERAL,
  1090. V3_AUTHORITY,
  1091. pending_vote->vote_body->dir,
  1092. pending_vote->vote_body->dir_len, 0);
  1093. log_notice(LD_DIR, "Vote posted.");
  1094. }
  1095. /** Send an HTTP request to every other v3 authority, for the votes of every
  1096. * authority for which we haven't received a vote yet in this period. (V3
  1097. * authority only) */
  1098. static void
  1099. dirvote_fetch_missing_votes(void)
  1100. {
  1101. smartlist_t *missing_fps = smartlist_create();
  1102. char *resource;
  1103. SMARTLIST_FOREACH(router_get_trusted_dir_servers(),
  1104. trusted_dir_server_t *, ds,
  1105. {
  1106. if (!(ds->type & V3_AUTHORITY))
  1107. continue;
  1108. if (!dirvote_get_vote(ds->v3_identity_digest, 1, 1, 0)) {
  1109. char *cp = tor_malloc(HEX_DIGEST_LEN+1);
  1110. base16_encode(cp, HEX_DIGEST_LEN+1, ds->v3_identity_digest,
  1111. DIGEST_LEN);
  1112. smartlist_add(missing_fps, cp);
  1113. }
  1114. });
  1115. if (!smartlist_len(missing_fps)) {
  1116. smartlist_free(missing_fps);
  1117. return;
  1118. }
  1119. log_notice(LOG_NOTICE, "We're missing votes from %d authorities. Asking "
  1120. "every other authority for a copy.", smartlist_len(missing_fps));
  1121. resource = smartlist_join_strings(missing_fps, "+", 0, NULL);
  1122. directory_get_from_all_authorities(DIR_PURPOSE_FETCH_STATUS_VOTE,
  1123. 0, resource);
  1124. tor_free(resource);
  1125. SMARTLIST_FOREACH(missing_fps, char *, cp, tor_free(cp));
  1126. smartlist_free(missing_fps);
  1127. }
  1128. /** Send a request to every other authority for its detached signatures,
  1129. * unless we have signatures from all other v3 authorities already. */
  1130. static void
  1131. dirvote_fetch_missing_signatures(void)
  1132. {
  1133. if (!pending_consensus)
  1134. return;
  1135. if (networkstatus_check_consensus_signature(pending_consensus, -1) == 1)
  1136. return; /* we have a signature from everybody. */
  1137. directory_get_from_all_authorities(DIR_PURPOSE_FETCH_DETACHED_SIGNATURES,
  1138. 0, NULL);
  1139. }
  1140. /** Drop all currently pending votes, consensus, and detached signatures. */
  1141. static void
  1142. dirvote_clear_votes(int all_votes)
  1143. {
  1144. if (!previous_vote_list)
  1145. previous_vote_list = smartlist_create();
  1146. if (!pending_vote_list)
  1147. pending_vote_list = smartlist_create();
  1148. /* All "previous" votes are now junk. */
  1149. SMARTLIST_FOREACH(previous_vote_list, pending_vote_t *, v, {
  1150. cached_dir_decref(v->vote_body);
  1151. v->vote_body = NULL;
  1152. networkstatus_vote_free(v->vote);
  1153. tor_free(v);
  1154. });
  1155. smartlist_clear(previous_vote_list);
  1156. if (all_votes) {
  1157. /* If we're dumping all the votes, we delete the pending ones. */
  1158. SMARTLIST_FOREACH(pending_vote_list, pending_vote_t *, v, {
  1159. cached_dir_decref(v->vote_body);
  1160. v->vote_body = NULL;
  1161. networkstatus_vote_free(v->vote);
  1162. tor_free(v);
  1163. });
  1164. } else {
  1165. /* Otherwise, we move them into "previous". */
  1166. smartlist_add_all(previous_vote_list, pending_vote_list);
  1167. }
  1168. smartlist_clear(pending_vote_list);
  1169. if (pending_consensus_signature_list) {
  1170. SMARTLIST_FOREACH(pending_consensus_signature_list, char *, cp,
  1171. tor_free(cp));
  1172. smartlist_clear(pending_consensus_signature_list);
  1173. }
  1174. tor_free(pending_consensus_body);
  1175. tor_free(pending_consensus_signatures);
  1176. if (pending_consensus) {
  1177. networkstatus_vote_free(pending_consensus);
  1178. pending_consensus = NULL;
  1179. }
  1180. }
  1181. /* XXXX020 delete me. */
  1182. static char *
  1183. list_v3_auth_ids(void)
  1184. {
  1185. smartlist_t *known_v3_keys = smartlist_create();
  1186. char *keys;
  1187. SMARTLIST_FOREACH(router_get_trusted_dir_servers(),
  1188. trusted_dir_server_t *, ds,
  1189. if (!tor_digest_is_zero(ds->v3_identity_digest))
  1190. smartlist_add(known_v3_keys,
  1191. tor_strdup(hex_str(ds->v3_identity_digest, DIGEST_LEN))));
  1192. keys = smartlist_join_strings(known_v3_keys, ", ", 0, NULL);
  1193. SMARTLIST_FOREACH(known_v3_keys, char *, cp, tor_free(cp));
  1194. smartlist_free(known_v3_keys);
  1195. return keys;
  1196. }
  1197. /** Called when we have received a networkstatus vote in <b>vote_body</b>.
  1198. * Parse and validate it, and on success store it as a pending vote (which we
  1199. * then return). Return NULL on failure. Sets *<b>msg_out</b> and
  1200. * *<b>status_out</b> to an HTTP response and status code. (V3 authority
  1201. * only) */
  1202. pending_vote_t *
  1203. dirvote_add_vote(const char *vote_body, const char **msg_out, int *status_out)
  1204. {
  1205. networkstatus_vote_t *vote;
  1206. networkstatus_voter_info_t *vi;
  1207. trusted_dir_server_t *ds;
  1208. pending_vote_t *pending_vote = NULL;
  1209. const char *end_of_vote = NULL;
  1210. int any_failed = 0;
  1211. tor_assert(vote_body);
  1212. tor_assert(msg_out);
  1213. tor_assert(status_out);
  1214. *status_out = 0;
  1215. if (!pending_vote_list)
  1216. pending_vote_list = smartlist_create();
  1217. *msg_out = NULL;
  1218. again:
  1219. vote = networkstatus_parse_vote_from_string(vote_body, &end_of_vote, 1);
  1220. if (!vote) {
  1221. *msg_out = "Unable to parse vote";
  1222. goto err;
  1223. }
  1224. tor_assert(smartlist_len(vote->voters) == 1);
  1225. vi = get_voter(vote);
  1226. tor_assert(vi->good_signature == 1);
  1227. ds = trusteddirserver_get_by_v3_auth_digest(vi->identity_digest);
  1228. if (!ds || !(ds->type & V3_AUTHORITY)) {
  1229. char *keys = list_v3_auth_ids();
  1230. log_warn(LD_DIR, "Got a vote from an authority with authority key ID %s. "
  1231. "This authority %s. Known v3 key IDs are: %s",
  1232. hex_str(vi->identity_digest, DIGEST_LEN),
  1233. ds?"is not recognized":"is recognized, but is not listed as v3",
  1234. keys);
  1235. tor_free(keys);
  1236. *msg_out = "Vote not from a recognized v3 authority";
  1237. goto err;
  1238. }
  1239. tor_assert(vote->cert);
  1240. if (!authority_cert_get_by_digests(vote->cert->cache_info.identity_digest,
  1241. vote->cert->signing_key_digest)) {
  1242. /* Hey, it's a new cert! */
  1243. trusted_dirs_load_certs_from_string(
  1244. vote->cert->cache_info.signed_descriptor_body,
  1245. 0 /* from_store */);
  1246. if (!authority_cert_get_by_digests(vote->cert->cache_info.identity_digest,
  1247. vote->cert->signing_key_digest)) {
  1248. log_warn(LD_BUG, "We added a cert, but still couldn't find it.");
  1249. }
  1250. }
  1251. /* Is it for the right period? */
  1252. if (vote->valid_after != voting_schedule.interval_starts) {
  1253. char tbuf1[ISO_TIME_LEN+1], tbuf2[ISO_TIME_LEN+1];
  1254. format_iso_time(tbuf1, vote->valid_after);
  1255. format_iso_time(tbuf2, voting_schedule.interval_starts);
  1256. log_warn(LD_DIR, "Rejecting vote with valid-after time of %s; we were "
  1257. "expecting %s", tbuf1, tbuf2);
  1258. *msg_out = "Bad valid-after time";
  1259. goto err;
  1260. }
  1261. /* Now see whether we already h<ave a vote from this authority.*/
  1262. SMARTLIST_FOREACH(pending_vote_list, pending_vote_t *, v, {
  1263. if (! memcmp(v->vote->cert->cache_info.identity_digest,
  1264. vote->cert->cache_info.identity_digest,
  1265. DIGEST_LEN)) {
  1266. networkstatus_voter_info_t *vi_old = get_voter(v->vote);
  1267. if (!memcmp(vi_old->vote_digest, vi->vote_digest, DIGEST_LEN)) {
  1268. /* Ah, it's the same vote. Not a problem. */
  1269. log_info(LD_DIR, "Discarding a vote we already have.");
  1270. *status_out = 200;
  1271. *msg_out = "ok";
  1272. goto err;
  1273. } else if (v->vote->published < vote->published) {
  1274. log_notice(LD_DIR, "Replacing an older pending vote from this "
  1275. "directory.");
  1276. cached_dir_decref(v->vote_body);
  1277. networkstatus_vote_free(v->vote);
  1278. v->vote_body = new_cached_dir(tor_strdup(vote_body),
  1279. vote->published);
  1280. v->vote = vote;
  1281. if (end_of_vote &&
  1282. !strcmpstart(end_of_vote, "network-status-version"))
  1283. goto again;
  1284. if (!*status_out)
  1285. *status_out = 200;
  1286. *msg_out = "ok";
  1287. return v;
  1288. } else {
  1289. *msg_out = "Already have a newer pending vote";
  1290. goto err;
  1291. }
  1292. }
  1293. });
  1294. pending_vote = tor_malloc_zero(sizeof(pending_vote_t));
  1295. pending_vote->vote_body = new_cached_dir(tor_strdup(vote_body),
  1296. vote->published);
  1297. pending_vote->vote = vote;
  1298. smartlist_add(pending_vote_list, pending_vote);
  1299. if (end_of_vote && !strcmpstart(end_of_vote, "network-status-version "))
  1300. goto again;
  1301. if (any_failed)
  1302. goto err;
  1303. if (!*status_out)
  1304. *status_out = 200;
  1305. *msg_out = "ok";
  1306. return pending_vote;
  1307. err:
  1308. any_failed = 1;
  1309. if (vote)
  1310. networkstatus_vote_free(vote);
  1311. if (!*msg_out)
  1312. *msg_out = "Error adding vote";
  1313. if (!*status_out || *status_out == 200)
  1314. *status_out = 400;
  1315. if (end_of_vote && !strcmpstart(end_of_vote, "network-status-version "))
  1316. goto again;
  1317. return NULL;
  1318. }
  1319. /** Try to compute a v3 networkstatus consensus from the currently pending
  1320. * votes. Return 0 on success, -1 on failure. Store the consensus in
  1321. * pending_consensus: it won't be ready to be published until we have
  1322. * everybody else's signatures collected too. (V3 Authoritity only) */
  1323. static int
  1324. dirvote_compute_consensus(void)
  1325. {
  1326. /* Have we got enough votes to try? */
  1327. int n_votes, n_voters;
  1328. smartlist_t *votes = NULL;
  1329. char *consensus_body = NULL, *signatures = NULL;
  1330. networkstatus_vote_t *consensus = NULL;
  1331. authority_cert_t *my_cert;
  1332. if (!pending_vote_list)
  1333. pending_vote_list = smartlist_create();
  1334. n_voters = get_n_authorities(V3_AUTHORITY);
  1335. n_votes = smartlist_len(pending_vote_list);
  1336. if (n_votes <= n_voters/2) {
  1337. log_warn(LD_DIR, "We don't have enough votes to generate a consensus.");
  1338. goto err;
  1339. }
  1340. if (!(my_cert = get_my_v3_authority_cert())) {
  1341. log_warn(LD_DIR, "Can't generate consensus without a certificate.");
  1342. goto err;
  1343. }
  1344. votes = smartlist_create();
  1345. SMARTLIST_FOREACH(pending_vote_list, pending_vote_t *, v,
  1346. smartlist_add(votes, v->vote));
  1347. consensus_body = networkstatus_compute_consensus(
  1348. votes, n_voters,
  1349. my_cert->identity_key,
  1350. get_my_v3_authority_signing_key());
  1351. if (!consensus_body) {
  1352. log_warn(LD_DIR, "Couldn't generate a consensus at all!");
  1353. goto err;
  1354. }
  1355. consensus = networkstatus_parse_vote_from_string(consensus_body, NULL, 0);
  1356. if (!consensus) {
  1357. log_warn(LD_DIR, "Couldn't parse consensus we generated!");
  1358. goto err;
  1359. }
  1360. /* 'Check' our own signature, to mark it valid. */
  1361. networkstatus_check_consensus_signature(consensus, -1);
  1362. signatures = networkstatus_get_detached_signatures(consensus);
  1363. if (!signatures) {
  1364. log_warn(LD_DIR, "Couldn't extract signatures.");
  1365. goto err;
  1366. }
  1367. tor_free(pending_consensus_body);
  1368. pending_consensus_body = consensus_body;
  1369. tor_free(pending_consensus_signatures);
  1370. pending_consensus_signatures = signatures;
  1371. if (pending_consensus)
  1372. networkstatus_vote_free(pending_consensus);
  1373. pending_consensus = consensus;
  1374. if (pending_consensus_signature_list) {
  1375. int n_sigs = 0;
  1376. /* we may have gotten signatures for this consensus before we built
  1377. * it ourself. Add them now. */
  1378. SMARTLIST_FOREACH(pending_consensus_signature_list, char *, sig,
  1379. {
  1380. const char *msg = NULL;
  1381. n_sigs += dirvote_add_signatures_to_pending_consensus(sig, &msg);
  1382. tor_free(sig);
  1383. });
  1384. if (n_sigs)
  1385. log_notice(LD_DIR, "Added %d pending signatures while building "
  1386. "consensus.", n_sigs);
  1387. smartlist_clear(pending_consensus_signature_list);
  1388. }
  1389. log_notice(LD_DIR, "Consensus computed; uploading signature(s)");
  1390. directory_post_to_dirservers(DIR_PURPOSE_UPLOAD_SIGNATURES,
  1391. ROUTER_PURPOSE_GENERAL,
  1392. V3_AUTHORITY,
  1393. pending_consensus_signatures,
  1394. strlen(pending_consensus_signatures), 0);
  1395. log_notice(LD_DIR, "Signature(s) posted.");
  1396. return 0;
  1397. err:
  1398. if (votes)
  1399. smartlist_free(votes);
  1400. tor_free(consensus_body);
  1401. tor_free(signatures);
  1402. networkstatus_vote_free(consensus);
  1403. return -1;
  1404. }
  1405. /** Helper: we just got the <b>deteached_signatures_body</b> sent to us as
  1406. * signatures on the currently pending consensus. Add them to the consensus
  1407. * as appropriate. Return the number of signatures added. (?) */
  1408. static int
  1409. dirvote_add_signatures_to_pending_consensus(
  1410. const char *detached_signatures_body,
  1411. const char **msg_out)
  1412. {
  1413. ns_detached_signatures_t *sigs = NULL;
  1414. int r = -1;
  1415. tor_assert(detached_signatures_body);
  1416. tor_assert(msg_out);
  1417. /* Only call if we have a pending consensus right now. */
  1418. tor_assert(pending_consensus);
  1419. tor_assert(pending_consensus_body);
  1420. tor_assert(pending_consensus_signatures);
  1421. *msg_out = NULL;
  1422. if (!(sigs = networkstatus_parse_detached_signatures(
  1423. detached_signatures_body, NULL))) {
  1424. *msg_out = "Couldn't parse detached signatures.";
  1425. goto err;
  1426. }
  1427. r = networkstatus_add_detached_signatures(pending_consensus,
  1428. sigs);
  1429. if (r >= 0) {
  1430. /* XXXX This should really be its own function. */
  1431. char *new_detached =
  1432. networkstatus_get_detached_signatures(pending_consensus);
  1433. const char *src;
  1434. char *dst;
  1435. size_t new_consensus_len =
  1436. strlen(pending_consensus_body) + strlen(new_detached) + 1;
  1437. pending_consensus_body = tor_realloc(pending_consensus_body,
  1438. new_consensus_len);
  1439. dst = strstr(pending_consensus_body, "directory-signature ");
  1440. tor_assert(dst);
  1441. src = strstr(new_detached, "directory-signature ");
  1442. tor_assert(src);
  1443. strlcpy(dst, src, new_consensus_len - (dst-pending_consensus_body));
  1444. /* XXXX020 remove this block once it has failed to crash for a while. */
  1445. {
  1446. ns_detached_signatures_t *sigs =
  1447. networkstatus_parse_detached_signatures(new_detached, NULL);
  1448. networkstatus_vote_t *v = networkstatus_parse_vote_from_string(
  1449. pending_consensus_body, NULL, 0);
  1450. tor_assert(sigs);
  1451. ns_detached_signatures_free(sigs);
  1452. tor_assert(v);
  1453. networkstatus_vote_free(v);
  1454. }
  1455. tor_free(pending_consensus_signatures);
  1456. pending_consensus_signatures = new_detached;
  1457. }
  1458. *msg_out = "ok";
  1459. goto done;
  1460. err:
  1461. if (!msg_out)
  1462. *msg_out = "Unrecognized error while adding detached signatures.";
  1463. done:
  1464. if (sigs)
  1465. ns_detached_signatures_free(sigs);
  1466. return r;
  1467. }
  1468. /** Helper: we just got the <b>deteached_signatures_body</b> sent to us as
  1469. * signatures on the currently pending consensus. Add them to the pending
  1470. * consensus (if we have one); otherwise queue them until we have a
  1471. * consensus. */
  1472. int
  1473. dirvote_add_signatures(const char *detached_signatures_body)
  1474. {
  1475. /*XXXX020 return value is senseless. */
  1476. if (pending_consensus) {
  1477. const char *msg=NULL;
  1478. log_notice(LD_DIR, "Got a signature. Adding it to the pending consensus.");
  1479. return dirvote_add_signatures_to_pending_consensus(
  1480. detached_signatures_body, &msg);
  1481. } else {
  1482. log_notice(LD_DIR, "Got a signature. Queueing it for the next consensus.");
  1483. if (!pending_consensus_signature_list)
  1484. pending_consensus_signature_list = smartlist_create();
  1485. smartlist_add(pending_consensus_signature_list,
  1486. tor_strdup(detached_signatures_body));
  1487. return 0;
  1488. }
  1489. }
  1490. /** Replace the consensus that we're currently serving with the one that we've
  1491. * been building. (V3 Authority only) */
  1492. static int
  1493. dirvote_publish_consensus(void)
  1494. {
  1495. /* Can we actually publish it yet? */
  1496. if (!pending_consensus ||
  1497. networkstatus_check_consensus_signature(pending_consensus, 1)<0) {
  1498. log_warn(LD_DIR, "Not enough info to publish pending consensus");
  1499. return -1;
  1500. }
  1501. if (networkstatus_set_current_consensus(pending_consensus_body, 0, 0))
  1502. log_warn(LD_DIR, "Error publishing consensus");
  1503. else
  1504. log_notice(LD_DIR, "Consensus published.");
  1505. return 0;
  1506. }
  1507. /** Release all static storage held in dirvote.c */
  1508. void
  1509. dirvote_free_all(void)
  1510. {
  1511. dirvote_clear_votes(1);
  1512. /* now empty as a result of clear_pending_votes. */
  1513. smartlist_free(pending_vote_list);
  1514. pending_vote_list = NULL;
  1515. smartlist_free(previous_vote_list);
  1516. previous_vote_list = NULL;
  1517. tor_free(pending_consensus_body);
  1518. tor_free(pending_consensus_signatures);
  1519. if (pending_consensus) {
  1520. networkstatus_vote_free(pending_consensus);
  1521. pending_consensus = NULL;
  1522. }
  1523. if (pending_consensus_signature_list) {
  1524. /* now empty as a result of clear_pending_votes. */
  1525. smartlist_free(pending_consensus_signature_list);
  1526. pending_consensus_signature_list = NULL;
  1527. }
  1528. }
  1529. /* ====
  1530. * Access to pending items.
  1531. * ==== */
  1532. /** Return the body of the consensus that we're currently trying to build. */
  1533. const char *
  1534. dirvote_get_pending_consensus(void)
  1535. {
  1536. return pending_consensus_body;
  1537. }
  1538. /** Return the signatures that we know for the consensus that we're currently
  1539. * trying to build */
  1540. const char *
  1541. dirvote_get_pending_detached_signatures(void)
  1542. {
  1543. return pending_consensus_signatures;
  1544. }
  1545. /** Return a given vote specified by <b>fp</b>. If <b>by_id</b>, return the
  1546. * vote for the authority with the v3 authority identity key digest <b>fp</b>;
  1547. * if <b>by_id</b> is false, return the vote whose digest is <b>fp</b>. If
  1548. * <b>fp</b> is NULL, return our own vote. If <b>include_previous</b> is
  1549. * false, do not consider any votes for a consensus that's already been built.
  1550. * If <b>include_pending</b> is false, do not consider any votes for the
  1551. * consensus that's in progress. May return NULL if we have no vote for the
  1552. * authority in question. */
  1553. const cached_dir_t *
  1554. dirvote_get_vote(const char *fp, int by_id, int include_previous,
  1555. int include_pending)
  1556. {
  1557. if (!pending_vote_list && !previous_vote_list)
  1558. return NULL;
  1559. if (fp == NULL) {
  1560. authority_cert_t *c = get_my_v3_authority_cert();
  1561. if (c) {
  1562. fp = c->cache_info.identity_digest;
  1563. by_id = 1;
  1564. } else
  1565. return NULL;
  1566. }
  1567. if (by_id) {
  1568. if (pending_vote_list && include_pending) {
  1569. SMARTLIST_FOREACH(pending_vote_list, pending_vote_t *, pv,
  1570. if (!memcmp(get_voter(pv->vote)->identity_digest, fp, DIGEST_LEN))
  1571. return pv->vote_body);
  1572. }
  1573. if (previous_vote_list && include_previous) {
  1574. SMARTLIST_FOREACH(previous_vote_list, pending_vote_t *, pv,
  1575. if (!memcmp(get_voter(pv->vote)->identity_digest, fp, DIGEST_LEN))
  1576. return pv->vote_body);
  1577. }
  1578. } else {
  1579. if (pending_vote_list && include_pending) {
  1580. SMARTLIST_FOREACH(pending_vote_list, pending_vote_t *, pv,
  1581. if (!memcmp(pv->vote->networkstatus_digest, fp, DIGEST_LEN))
  1582. return pv->vote_body);
  1583. }
  1584. if (previous_vote_list && include_previous) {
  1585. SMARTLIST_FOREACH(previous_vote_list, pending_vote_t *, pv,
  1586. if (!memcmp(pv->vote->networkstatus_digest, fp, DIGEST_LEN))
  1587. return pv->vote_body);
  1588. }
  1589. }
  1590. return NULL;
  1591. }