policies.c 42 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340
  1. /* Copyright (c) 2001-2004, Roger Dingledine.
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2009, The Tor Project, Inc. */
  4. /* See LICENSE for licensing information */
  5. /**
  6. * \file policies.c
  7. * \brief Code to parse and use address policies and exit policies.
  8. **/
  9. #include "or.h"
  10. #include "ht.h"
  11. /** Policy that addresses for incoming SOCKS connections must match. */
  12. static smartlist_t *socks_policy = NULL;
  13. /** Policy that addresses for incoming directory connections must match. */
  14. static smartlist_t *dir_policy = NULL;
  15. /** Policy that addresses for incoming router descriptors must match in order
  16. * to be published by us. */
  17. static smartlist_t *authdir_reject_policy = NULL;
  18. /** Policy that addresses for incoming router descriptors must match in order
  19. * to be marked as valid in our networkstatus. */
  20. static smartlist_t *authdir_invalid_policy = NULL;
  21. /** Policy that addresses for incoming router descriptors must <b>not</b>
  22. * match in order to not be marked as BadDirectory. */
  23. static smartlist_t *authdir_baddir_policy = NULL;
  24. /** Policy that addresses for incoming router descriptors must <b>not</b>
  25. * match in order to not be marked as BadExit. */
  26. static smartlist_t *authdir_badexit_policy = NULL;
  27. /** Parsed addr_policy_t describing which addresses we believe we can start
  28. * circuits at. */
  29. static smartlist_t *reachable_or_addr_policy = NULL;
  30. /** Parsed addr_policy_t describing which addresses we believe we can connect
  31. * to directories at. */
  32. static smartlist_t *reachable_dir_addr_policy = NULL;
  33. /** Element of an exit policy summary */
  34. typedef struct policy_summary_item_t {
  35. uint16_t prt_min; /**< Lowest port number to accept/reject. */
  36. uint16_t prt_max; /**< Highest port number to accept/reject. */
  37. uint64_t reject_count; /**< Number of IP-Addresses that are rejected to
  38. this port range. */
  39. int accepted:1; /** Has this port already been accepted */
  40. } policy_summary_item_t;
  41. /** Private networks. This list is used in two places, once to expand the
  42. * "private" keyword when parsing our own exit policy, secondly to ignore
  43. * just such networks when building exit policy summaries. It is important
  44. * that all authorities agree on that list when creating summaries, so don't
  45. * just change this without a proper migration plan and a proposal and stuff.
  46. */
  47. static const char *private_nets[] = {
  48. "0.0.0.0/8", "169.254.0.0/16",
  49. "127.0.0.0/8", "192.168.0.0/16", "10.0.0.0/8", "172.16.0.0/12",
  50. // "fc00::/7", "fe80::/10", "fec0::/10", "::/127",
  51. NULL };
  52. /** Replace all "private" entries in *<b>policy</b> with their expanded
  53. * equivalents. */
  54. void
  55. policy_expand_private(smartlist_t **policy)
  56. {
  57. uint16_t port_min, port_max;
  58. int i;
  59. smartlist_t *tmp;
  60. if (!*policy) /*XXXX disallow NULL policies? */
  61. return;
  62. tmp = smartlist_create();
  63. SMARTLIST_FOREACH(*policy, addr_policy_t *, p,
  64. {
  65. if (! p->is_private) {
  66. smartlist_add(tmp, p);
  67. continue;
  68. }
  69. for (i = 0; private_nets[i]; ++i) {
  70. addr_policy_t policy;
  71. memcpy(&policy, p, sizeof(addr_policy_t));
  72. policy.is_private = 0;
  73. policy.is_canonical = 0;
  74. if (tor_addr_parse_mask_ports(private_nets[i], &policy.addr,
  75. &policy.maskbits, &port_min, &port_max)<0) {
  76. tor_assert(0);
  77. }
  78. smartlist_add(tmp, addr_policy_get_canonical_entry(&policy));
  79. }
  80. addr_policy_free(p);
  81. });
  82. smartlist_free(*policy);
  83. *policy = tmp;
  84. }
  85. /**
  86. * Given a linked list of config lines containing "allow" and "deny"
  87. * tokens, parse them and append the result to <b>dest</b>. Return -1
  88. * if any tokens are malformed (and don't append any), else return 0.
  89. *
  90. * If <b>assume_action</b> is nonnegative, then insert its action
  91. * (ADDR_POLICY_ACCEPT or ADDR_POLICY_REJECT) for items that specify no
  92. * action.
  93. */
  94. static int
  95. parse_addr_policy(config_line_t *cfg, smartlist_t **dest,
  96. int assume_action)
  97. {
  98. smartlist_t *result;
  99. smartlist_t *entries;
  100. addr_policy_t *item;
  101. int r = 0;
  102. if (!cfg)
  103. return 0;
  104. result = smartlist_create();
  105. entries = smartlist_create();
  106. for (; cfg; cfg = cfg->next) {
  107. smartlist_split_string(entries, cfg->value, ",",
  108. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  109. SMARTLIST_FOREACH(entries, const char *, ent,
  110. {
  111. log_debug(LD_CONFIG,"Adding new entry '%s'",ent);
  112. item = router_parse_addr_policy_item_from_string(ent, assume_action);
  113. if (item) {
  114. smartlist_add(result, item);
  115. } else {
  116. log_warn(LD_CONFIG,"Malformed policy '%s'.", ent);
  117. r = -1;
  118. }
  119. });
  120. SMARTLIST_FOREACH(entries, char *, ent, tor_free(ent));
  121. smartlist_clear(entries);
  122. }
  123. smartlist_free(entries);
  124. if (r == -1) {
  125. addr_policy_list_free(result);
  126. } else {
  127. policy_expand_private(&result);
  128. if (*dest) {
  129. smartlist_add_all(*dest, result);
  130. smartlist_free(result);
  131. } else {
  132. *dest = result;
  133. }
  134. }
  135. return r;
  136. }
  137. /** Helper: parse the Reachable(Dir|OR)?Addresses fields into
  138. * reachable_(or|dir)_addr_policy. The options should already have
  139. * been validated by validate_addr_policies.
  140. */
  141. static int
  142. parse_reachable_addresses(void)
  143. {
  144. or_options_t *options = get_options();
  145. int ret = 0;
  146. if (options->ReachableDirAddresses &&
  147. options->ReachableORAddresses &&
  148. options->ReachableAddresses) {
  149. log_warn(LD_CONFIG,
  150. "Both ReachableDirAddresses and ReachableORAddresses are set. "
  151. "ReachableAddresses setting will be ignored.");
  152. }
  153. addr_policy_list_free(reachable_or_addr_policy);
  154. reachable_or_addr_policy = NULL;
  155. if (!options->ReachableORAddresses && options->ReachableAddresses)
  156. log_info(LD_CONFIG,
  157. "Using ReachableAddresses as ReachableORAddresses.");
  158. if (parse_addr_policy(options->ReachableORAddresses ?
  159. options->ReachableORAddresses :
  160. options->ReachableAddresses,
  161. &reachable_or_addr_policy, ADDR_POLICY_ACCEPT)) {
  162. log_warn(LD_CONFIG,
  163. "Error parsing Reachable%sAddresses entry; ignoring.",
  164. options->ReachableORAddresses ? "OR" : "");
  165. ret = -1;
  166. }
  167. addr_policy_list_free(reachable_dir_addr_policy);
  168. reachable_dir_addr_policy = NULL;
  169. if (!options->ReachableDirAddresses && options->ReachableAddresses)
  170. log_info(LD_CONFIG,
  171. "Using ReachableAddresses as ReachableDirAddresses");
  172. if (parse_addr_policy(options->ReachableDirAddresses ?
  173. options->ReachableDirAddresses :
  174. options->ReachableAddresses,
  175. &reachable_dir_addr_policy, ADDR_POLICY_ACCEPT)) {
  176. if (options->ReachableDirAddresses)
  177. log_warn(LD_CONFIG,
  178. "Error parsing ReachableDirAddresses entry; ignoring.");
  179. ret = -1;
  180. }
  181. return ret;
  182. }
  183. /** Return true iff the firewall options might block any address:port
  184. * combination.
  185. */
  186. int
  187. firewall_is_fascist_or(void)
  188. {
  189. return reachable_or_addr_policy != NULL;
  190. }
  191. /** Return true iff <b>policy</b> (possibly NULL) will allow a
  192. * connection to <b>addr</b>:<b>port</b>.
  193. */
  194. static int
  195. addr_policy_permits_tor_addr(const tor_addr_t *addr, uint16_t port,
  196. smartlist_t *policy)
  197. {
  198. addr_policy_result_t p;
  199. p = compare_tor_addr_to_addr_policy(addr, port, policy);
  200. switch (p) {
  201. case ADDR_POLICY_PROBABLY_ACCEPTED:
  202. case ADDR_POLICY_ACCEPTED:
  203. return 1;
  204. case ADDR_POLICY_PROBABLY_REJECTED:
  205. case ADDR_POLICY_REJECTED:
  206. return 0;
  207. default:
  208. log_warn(LD_BUG, "Unexpected result: %d", (int)p);
  209. return 0;
  210. }
  211. }
  212. /** Return true iff <b> policy</b> (possibly NULL) will allow a connection to
  213. * <b>addr</b>:<b>port</b>. <b>addr</b> is an IPv4 address given in host
  214. * order. */
  215. /* XXXX deprecate when possible. */
  216. static int
  217. addr_policy_permits_address(uint32_t addr, uint16_t port,
  218. smartlist_t *policy)
  219. {
  220. tor_addr_t a;
  221. tor_addr_from_ipv4h(&a, addr);
  222. return addr_policy_permits_tor_addr(&a, port, policy);
  223. }
  224. /** Return true iff we think our firewall will let us make an OR connection to
  225. * addr:port. */
  226. int
  227. fascist_firewall_allows_address_or(const tor_addr_t *addr, uint16_t port)
  228. {
  229. return addr_policy_permits_tor_addr(addr, port,
  230. reachable_or_addr_policy);
  231. }
  232. /** Return true iff we think our firewall will let us make an OR connection to
  233. * <b>ri</b>. */
  234. int
  235. fascist_firewall_allows_or(routerinfo_t *ri)
  236. {
  237. /* XXXX proposal 118 */
  238. tor_addr_t addr;
  239. tor_addr_from_ipv4h(&addr, ri->addr);
  240. return fascist_firewall_allows_address_or(&addr, ri->or_port);
  241. }
  242. /** Return true iff we think our firewall will let us make a directory
  243. * connection to addr:port. */
  244. int
  245. fascist_firewall_allows_address_dir(const tor_addr_t *addr, uint16_t port)
  246. {
  247. return addr_policy_permits_tor_addr(addr, port,
  248. reachable_dir_addr_policy);
  249. }
  250. /** Return 1 if <b>addr</b> is permitted to connect to our dir port,
  251. * based on <b>dir_policy</b>. Else return 0.
  252. */
  253. int
  254. dir_policy_permits_address(const tor_addr_t *addr)
  255. {
  256. return addr_policy_permits_tor_addr(addr, 1, dir_policy);
  257. }
  258. /** Return 1 if <b>addr</b> is permitted to connect to our socks port,
  259. * based on <b>socks_policy</b>. Else return 0.
  260. */
  261. int
  262. socks_policy_permits_address(const tor_addr_t *addr)
  263. {
  264. return addr_policy_permits_tor_addr(addr, 1, socks_policy);
  265. }
  266. /** Return 1 if <b>addr</b>:<b>port</b> is permitted to publish to our
  267. * directory, based on <b>authdir_reject_policy</b>. Else return 0.
  268. */
  269. int
  270. authdir_policy_permits_address(uint32_t addr, uint16_t port)
  271. {
  272. return addr_policy_permits_address(addr, port, authdir_reject_policy);
  273. }
  274. /** Return 1 if <b>addr</b>:<b>port</b> is considered valid in our
  275. * directory, based on <b>authdir_invalid_policy</b>. Else return 0.
  276. */
  277. int
  278. authdir_policy_valid_address(uint32_t addr, uint16_t port)
  279. {
  280. return addr_policy_permits_address(addr, port, authdir_invalid_policy);
  281. }
  282. /** Return 1 if <b>addr</b>:<b>port</b> should be marked as a bad dir,
  283. * based on <b>authdir_baddir_policy</b>. Else return 0.
  284. */
  285. int
  286. authdir_policy_baddir_address(uint32_t addr, uint16_t port)
  287. {
  288. return ! addr_policy_permits_address(addr, port, authdir_baddir_policy);
  289. }
  290. /** Return 1 if <b>addr</b>:<b>port</b> should be marked as a bad exit,
  291. * based on <b>authdir_badexit_policy</b>. Else return 0.
  292. */
  293. int
  294. authdir_policy_badexit_address(uint32_t addr, uint16_t port)
  295. {
  296. return ! addr_policy_permits_address(addr, port, authdir_badexit_policy);
  297. }
  298. #define REJECT(arg) \
  299. STMT_BEGIN *msg = tor_strdup(arg); goto err; STMT_END
  300. /** Config helper: If there's any problem with the policy configuration
  301. * options in <b>options</b>, return -1 and set <b>msg</b> to a newly
  302. * allocated description of the error. Else return 0. */
  303. int
  304. validate_addr_policies(or_options_t *options, char **msg)
  305. {
  306. /* XXXX Maybe merge this into parse_policies_from_options, to make sure
  307. * that the two can't go out of sync. */
  308. smartlist_t *addr_policy=NULL;
  309. *msg = NULL;
  310. if (policies_parse_exit_policy(options->ExitPolicy, &addr_policy,
  311. options->ExitPolicyRejectPrivate, NULL,
  312. !options->BridgeRelay))
  313. REJECT("Error in ExitPolicy entry.");
  314. /* The rest of these calls *append* to addr_policy. So don't actually
  315. * use the results for anything other than checking if they parse! */
  316. if (parse_addr_policy(options->DirPolicy, &addr_policy, -1))
  317. REJECT("Error in DirPolicy entry.");
  318. if (parse_addr_policy(options->SocksPolicy, &addr_policy, -1))
  319. REJECT("Error in SocksPolicy entry.");
  320. if (parse_addr_policy(options->AuthDirReject, &addr_policy,
  321. ADDR_POLICY_REJECT))
  322. REJECT("Error in AuthDirReject entry.");
  323. if (parse_addr_policy(options->AuthDirInvalid, &addr_policy,
  324. ADDR_POLICY_REJECT))
  325. REJECT("Error in AuthDirInvalid entry.");
  326. if (parse_addr_policy(options->AuthDirBadDir, &addr_policy,
  327. ADDR_POLICY_REJECT))
  328. REJECT("Error in AuthDirBadDir entry.");
  329. if (parse_addr_policy(options->AuthDirBadExit, &addr_policy,
  330. ADDR_POLICY_REJECT))
  331. REJECT("Error in AuthDirBadExit entry.");
  332. if (parse_addr_policy(options->ReachableAddresses, &addr_policy,
  333. ADDR_POLICY_ACCEPT))
  334. REJECT("Error in ReachableAddresses entry.");
  335. if (parse_addr_policy(options->ReachableORAddresses, &addr_policy,
  336. ADDR_POLICY_ACCEPT))
  337. REJECT("Error in ReachableORAddresses entry.");
  338. if (parse_addr_policy(options->ReachableDirAddresses, &addr_policy,
  339. ADDR_POLICY_ACCEPT))
  340. REJECT("Error in ReachableDirAddresses entry.");
  341. err:
  342. addr_policy_list_free(addr_policy);
  343. return *msg ? -1 : 0;
  344. #undef REJECT
  345. }
  346. /** Parse <b>string</b> in the same way that the exit policy
  347. * is parsed, and put the processed version in *<b>policy</b>.
  348. * Ignore port specifiers.
  349. */
  350. static int
  351. load_policy_from_option(config_line_t *config, smartlist_t **policy,
  352. int assume_action)
  353. {
  354. int r;
  355. addr_policy_list_free(*policy);
  356. *policy = NULL;
  357. r = parse_addr_policy(config, policy, assume_action);
  358. if (r < 0) {
  359. return -1;
  360. }
  361. if (*policy) {
  362. SMARTLIST_FOREACH_BEGIN(*policy, addr_policy_t *, n) {
  363. /* ports aren't used in these. */
  364. if (n->prt_min > 1 || n->prt_max != 65535) {
  365. addr_policy_t newp, *c;
  366. memcpy(&newp, n, sizeof(newp));
  367. newp.prt_min = 1;
  368. newp.prt_max = 65535;
  369. newp.is_canonical = 0;
  370. c = addr_policy_get_canonical_entry(&newp);
  371. SMARTLIST_REPLACE_CURRENT(*policy, n, c);
  372. addr_policy_free(n);
  373. }
  374. } SMARTLIST_FOREACH_END(n);
  375. }
  376. return 0;
  377. }
  378. /** Set all policies based on <b>options</b>, which should have been validated
  379. * first by validate_addr_policies. */
  380. int
  381. policies_parse_from_options(or_options_t *options)
  382. {
  383. int ret = 0;
  384. if (load_policy_from_option(options->SocksPolicy, &socks_policy, -1) < 0)
  385. ret = -1;
  386. if (load_policy_from_option(options->DirPolicy, &dir_policy, -1) < 0)
  387. ret = -1;
  388. if (load_policy_from_option(options->AuthDirReject,
  389. &authdir_reject_policy, ADDR_POLICY_REJECT) < 0)
  390. ret = -1;
  391. if (load_policy_from_option(options->AuthDirInvalid,
  392. &authdir_invalid_policy, ADDR_POLICY_REJECT) < 0)
  393. ret = -1;
  394. if (load_policy_from_option(options->AuthDirBadDir,
  395. &authdir_baddir_policy, ADDR_POLICY_REJECT) < 0)
  396. ret = -1;
  397. if (load_policy_from_option(options->AuthDirBadExit,
  398. &authdir_badexit_policy, ADDR_POLICY_REJECT) < 0)
  399. ret = -1;
  400. if (parse_reachable_addresses() < 0)
  401. ret = -1;
  402. return ret;
  403. }
  404. /** Compare two provided address policy items, and return -1, 0, or 1
  405. * if the first is less than, equal to, or greater than the second. */
  406. static int
  407. cmp_single_addr_policy(addr_policy_t *a, addr_policy_t *b)
  408. {
  409. int r;
  410. if ((r=((int)a->policy_type - (int)b->policy_type)))
  411. return r;
  412. if ((r=((int)a->is_private - (int)b->is_private)))
  413. return r;
  414. if ((r=tor_addr_compare(&a->addr, &b->addr, CMP_EXACT)))
  415. return r;
  416. if ((r=((int)a->maskbits - (int)b->maskbits)))
  417. return r;
  418. if ((r=((int)a->prt_min - (int)b->prt_min)))
  419. return r;
  420. if ((r=((int)a->prt_max - (int)b->prt_max)))
  421. return r;
  422. return 0;
  423. }
  424. /** Like cmp_single_addr_policy() above, but looks at the
  425. * whole set of policies in each case. */
  426. int
  427. cmp_addr_policies(smartlist_t *a, smartlist_t *b)
  428. {
  429. int r, i;
  430. int len_a = a ? smartlist_len(a) : 0;
  431. int len_b = b ? smartlist_len(b) : 0;
  432. for (i = 0; i < len_a && i < len_b; ++i) {
  433. if ((r = cmp_single_addr_policy(smartlist_get(a, i), smartlist_get(b, i))))
  434. return r;
  435. }
  436. if (i == len_a && i == len_b)
  437. return 0;
  438. if (i < len_a)
  439. return -1;
  440. else
  441. return 1;
  442. }
  443. /** Node in hashtable used to store address policy entries. */
  444. typedef struct policy_map_ent_t {
  445. HT_ENTRY(policy_map_ent_t) node;
  446. addr_policy_t *policy;
  447. } policy_map_ent_t;
  448. static HT_HEAD(policy_map, policy_map_ent_t) policy_root = HT_INITIALIZER();
  449. /** Return true iff a and b are equal. */
  450. static INLINE int
  451. policy_eq(policy_map_ent_t *a, policy_map_ent_t *b)
  452. {
  453. return cmp_single_addr_policy(a->policy, b->policy) == 0;
  454. }
  455. /** Return a hashcode for <b>ent</b> */
  456. static unsigned int
  457. policy_hash(policy_map_ent_t *ent)
  458. {
  459. addr_policy_t *a = ent->policy;
  460. unsigned int r;
  461. if (a->is_private)
  462. r = 0x1234abcd;
  463. else
  464. r = tor_addr_hash(&a->addr);
  465. r += a->prt_min << 8;
  466. r += a->prt_max << 16;
  467. r += a->maskbits;
  468. if (a->policy_type == ADDR_POLICY_REJECT)
  469. r ^= 0xffffffff;
  470. return r;
  471. }
  472. HT_PROTOTYPE(policy_map, policy_map_ent_t, node, policy_hash,
  473. policy_eq)
  474. HT_GENERATE(policy_map, policy_map_ent_t, node, policy_hash,
  475. policy_eq, 0.6, malloc, realloc, free)
  476. /** Given a pointer to an addr_policy_t, return a copy of the pointer to the
  477. * "canonical" copy of that addr_policy_t; the canonical copy is a single
  478. * reference-counted object. */
  479. addr_policy_t *
  480. addr_policy_get_canonical_entry(addr_policy_t *e)
  481. {
  482. policy_map_ent_t search, *found;
  483. if (e->is_canonical)
  484. return e;
  485. search.policy = e;
  486. found = HT_FIND(policy_map, &policy_root, &search);
  487. if (!found) {
  488. found = tor_malloc_zero(sizeof(policy_map_ent_t));
  489. found->policy = tor_memdup(e, sizeof(addr_policy_t));
  490. found->policy->is_canonical = 1;
  491. found->policy->refcnt = 0;
  492. HT_INSERT(policy_map, &policy_root, found);
  493. }
  494. tor_assert(!cmp_single_addr_policy(found->policy, e));
  495. ++found->policy->refcnt;
  496. return found->policy;
  497. }
  498. /** As compare_tor_addr_to_addr_policy, but instead of a tor_addr_t, takes
  499. * in host order. */
  500. addr_policy_result_t
  501. compare_addr_to_addr_policy(uint32_t addr, uint16_t port,
  502. const smartlist_t *policy)
  503. {
  504. /*XXXX deprecate this function when possible. */
  505. tor_addr_t a;
  506. tor_addr_from_ipv4h(&a, addr);
  507. return compare_tor_addr_to_addr_policy(&a, port, policy);
  508. }
  509. /** Helper for compare_tor_addr_to_addr_policy. Implements the case where
  510. * addr and port are both known. */
  511. static addr_policy_result_t
  512. compare_known_tor_addr_to_addr_policy(const tor_addr_t *addr, uint16_t port,
  513. const smartlist_t *policy)
  514. {
  515. /* We know the address and port, and we know the policy, so we can just
  516. * compute an exact match. */
  517. SMARTLIST_FOREACH_BEGIN(policy, addr_policy_t *, tmpe) {
  518. /* Address is known */
  519. if (!tor_addr_compare_masked(addr, &tmpe->addr, tmpe->maskbits,
  520. CMP_EXACT)) {
  521. if (port >= tmpe->prt_min && port <= tmpe->prt_max) {
  522. /* Exact match for the policy */
  523. return tmpe->policy_type == ADDR_POLICY_ACCEPT ?
  524. ADDR_POLICY_ACCEPTED : ADDR_POLICY_REJECTED;
  525. }
  526. }
  527. } SMARTLIST_FOREACH_END(tmpe);
  528. /* accept all by default. */
  529. return ADDR_POLICY_ACCEPTED;
  530. }
  531. /** Helper for compare_tor_addr_to_addr_policy. Implements the case where
  532. * addr is known but port is not. */
  533. static addr_policy_result_t
  534. compare_known_tor_addr_to_addr_policy_noport(const tor_addr_t *addr,
  535. const smartlist_t *policy)
  536. {
  537. /* We look to see if there's a definite match. If so, we return that
  538. match's value, unless there's an intervening possible match that says
  539. something different. */
  540. int maybe_accept = 0, maybe_reject = 0;
  541. SMARTLIST_FOREACH_BEGIN(policy, addr_policy_t *, tmpe) {
  542. if (!tor_addr_compare_masked(addr, &tmpe->addr, tmpe->maskbits,
  543. CMP_EXACT)) {
  544. if (tmpe->prt_min <= 1 && tmpe->prt_max >= 65535) {
  545. /* Definitely matches, since it covers all ports. */
  546. if (tmpe->policy_type == ADDR_POLICY_ACCEPT) {
  547. /* If we already hit a clause that might trigger a 'reject', than we
  548. * can't be sure of this certain 'accept'.*/
  549. return maybe_reject ? ADDR_POLICY_PROBABLY_ACCEPTED :
  550. ADDR_POLICY_ACCEPTED;
  551. } else {
  552. return maybe_accept ? ADDR_POLICY_PROBABLY_REJECTED :
  553. ADDR_POLICY_REJECTED;
  554. }
  555. } else {
  556. /* Might match. */
  557. if (tmpe->policy_type == ADDR_POLICY_REJECT)
  558. maybe_reject = 1;
  559. else
  560. maybe_accept = 1;
  561. }
  562. }
  563. } SMARTLIST_FOREACH_END(tmpe);
  564. /* accept all by default. */
  565. return maybe_reject ? ADDR_POLICY_PROBABLY_ACCEPTED : ADDR_POLICY_ACCEPTED;
  566. }
  567. /** Helper for compare_tor_addr_to_addr_policy. Implements the case where
  568. * port is known but address is not. */
  569. static addr_policy_result_t
  570. compare_unknown_tor_addr_to_addr_policy(uint16_t port,
  571. const smartlist_t *policy)
  572. {
  573. /* We look to see if there's a definite match. If so, we return that
  574. match's value, unless there's an intervening possible match that says
  575. something different. */
  576. int maybe_accept = 0, maybe_reject = 0;
  577. SMARTLIST_FOREACH_BEGIN(policy, addr_policy_t *, tmpe) {
  578. if (tmpe->prt_min <= port && port <= tmpe->prt_max) {
  579. if (tmpe->maskbits == 0) {
  580. /* Definitely matches, since it covers all addresses. */
  581. if (tmpe->policy_type == ADDR_POLICY_ACCEPT) {
  582. /* If we already hit a clause that might trigger a 'reject', than we
  583. * can't be sure of this certain 'accept'.*/
  584. return maybe_reject ? ADDR_POLICY_PROBABLY_ACCEPTED :
  585. ADDR_POLICY_ACCEPTED;
  586. } else {
  587. return maybe_accept ? ADDR_POLICY_PROBABLY_REJECTED :
  588. ADDR_POLICY_REJECTED;
  589. }
  590. } else {
  591. /* Might match. */
  592. if (tmpe->policy_type == ADDR_POLICY_REJECT)
  593. maybe_reject = 1;
  594. else
  595. maybe_accept = 1;
  596. }
  597. }
  598. } SMARTLIST_FOREACH_END(tmpe);
  599. /* accept all by default. */
  600. return maybe_reject ? ADDR_POLICY_PROBABLY_ACCEPTED : ADDR_POLICY_ACCEPTED;
  601. }
  602. /** Decide whether a given addr:port is definitely accepted,
  603. * definitely rejected, probably accepted, or probably rejected by a
  604. * given policy. If <b>addr</b> is 0, we don't know the IP of the
  605. * target address. If <b>port</b> is 0, we don't know the port of the
  606. * target address. (At least one of <b>addr</b> and <b>port</b> must be
  607. * provided. If you want to know whether a policy would definitely reject
  608. * an unknown address:port, use policy_is_reject_star().)
  609. *
  610. * We could do better by assuming that some ranges never match typical
  611. * addresses (127.0.0.1, and so on). But we'll try this for now.
  612. */
  613. addr_policy_result_t
  614. compare_tor_addr_to_addr_policy(const tor_addr_t *addr, uint16_t port,
  615. const smartlist_t *policy)
  616. {
  617. if (!policy) {
  618. /* no policy? accept all. */
  619. return ADDR_POLICY_ACCEPTED;
  620. } else if (tor_addr_is_null(addr)) {
  621. tor_assert(port != 0);
  622. return compare_unknown_tor_addr_to_addr_policy(port, policy);
  623. } else if (port == 0) {
  624. return compare_known_tor_addr_to_addr_policy_noport(addr, policy);
  625. } else {
  626. return compare_known_tor_addr_to_addr_policy(addr, port, policy);
  627. }
  628. }
  629. /** Return true iff the address policy <b>a</b> covers every case that
  630. * would be covered by <b>b</b>, so that a,b is redundant. */
  631. static int
  632. addr_policy_covers(addr_policy_t *a, addr_policy_t *b)
  633. {
  634. /* We can ignore accept/reject, since "accept *:80, reject *:80" reduces
  635. * to "accept *:80". */
  636. if (a->maskbits > b->maskbits) {
  637. /* a has more fixed bits than b; it can't possibly cover b. */
  638. return 0;
  639. }
  640. if (tor_addr_compare_masked(&a->addr, &b->addr, a->maskbits, CMP_EXACT)) {
  641. /* There's a fixed bit in a that's set differently in b. */
  642. return 0;
  643. }
  644. return (a->prt_min <= b->prt_min && a->prt_max >= b->prt_max);
  645. }
  646. /** Return true iff the address policies <b>a</b> and <b>b</b> intersect,
  647. * that is, there exists an address/port that is covered by <b>a</b> that
  648. * is also covered by <b>b</b>.
  649. */
  650. static int
  651. addr_policy_intersects(addr_policy_t *a, addr_policy_t *b)
  652. {
  653. maskbits_t minbits;
  654. /* All the bits we care about are those that are set in both
  655. * netmasks. If they are equal in a and b's networkaddresses
  656. * then the networks intersect. If there is a difference,
  657. * then they do not. */
  658. if (a->maskbits < b->maskbits)
  659. minbits = a->maskbits;
  660. else
  661. minbits = b->maskbits;
  662. if (tor_addr_compare_masked(&a->addr, &b->addr, minbits, CMP_EXACT))
  663. return 0;
  664. if (a->prt_max < b->prt_min || b->prt_max < a->prt_min)
  665. return 0;
  666. return 1;
  667. }
  668. /** Add the exit policy described by <b>more</b> to <b>policy</b>.
  669. */
  670. static void
  671. append_exit_policy_string(smartlist_t **policy, const char *more)
  672. {
  673. config_line_t tmp;
  674. tmp.key = NULL;
  675. tmp.value = (char*) more;
  676. tmp.next = NULL;
  677. if (parse_addr_policy(&tmp, policy, -1)<0) {
  678. log_warn(LD_BUG, "Unable to parse internally generated policy %s",more);
  679. }
  680. }
  681. /** Detect and excise "dead code" from the policy *<b>dest</b>. */
  682. static void
  683. exit_policy_remove_redundancies(smartlist_t *dest)
  684. {
  685. addr_policy_t *ap, *tmp, *victim;
  686. int i, j;
  687. /* Step one: find a *:* entry and cut off everything after it. */
  688. for (i = 0; i < smartlist_len(dest); ++i) {
  689. ap = smartlist_get(dest, i);
  690. if (ap->maskbits == 0 && ap->prt_min <= 1 && ap->prt_max >= 65535) {
  691. /* This is a catch-all line -- later lines are unreachable. */
  692. while (i+1 < smartlist_len(dest)) {
  693. victim = smartlist_get(dest, i+1);
  694. smartlist_del(dest, i+1);
  695. addr_policy_free(victim);
  696. }
  697. break;
  698. }
  699. }
  700. /* Step two: for every entry, see if there's a redundant entry
  701. * later on, and remove it. */
  702. for (i = 0; i < smartlist_len(dest)-1; ++i) {
  703. ap = smartlist_get(dest, i);
  704. for (j = i+1; j < smartlist_len(dest); ++j) {
  705. tmp = smartlist_get(dest, j);
  706. tor_assert(j > i);
  707. if (addr_policy_covers(ap, tmp)) {
  708. char p1[POLICY_BUF_LEN], p2[POLICY_BUF_LEN];
  709. policy_write_item(p1, sizeof(p1), tmp, 0);
  710. policy_write_item(p2, sizeof(p2), ap, 0);
  711. log(LOG_DEBUG, LD_CONFIG, "Removing exit policy %s (%d). It is made "
  712. "redundant by %s (%d).", p1, j, p2, i);
  713. smartlist_del_keeporder(dest, j--);
  714. addr_policy_free(tmp);
  715. }
  716. }
  717. }
  718. /* Step three: for every entry A, see if there's an entry B making this one
  719. * redundant later on. This is the case if A and B are of the same type
  720. * (accept/reject), A is a subset of B, and there is no other entry of
  721. * different type in between those two that intersects with A.
  722. *
  723. * Anybody want to double-check the logic here? XXX
  724. */
  725. for (i = 0; i < smartlist_len(dest)-1; ++i) {
  726. ap = smartlist_get(dest, i);
  727. for (j = i+1; j < smartlist_len(dest); ++j) {
  728. // tor_assert(j > i); // j starts out at i+1; j only increases; i only
  729. // // decreases.
  730. tmp = smartlist_get(dest, j);
  731. if (ap->policy_type != tmp->policy_type) {
  732. if (addr_policy_intersects(ap, tmp))
  733. break;
  734. } else { /* policy_types are equal. */
  735. if (addr_policy_covers(tmp, ap)) {
  736. char p1[POLICY_BUF_LEN], p2[POLICY_BUF_LEN];
  737. policy_write_item(p1, sizeof(p1), ap, 0);
  738. policy_write_item(p2, sizeof(p2), tmp, 0);
  739. log(LOG_DEBUG, LD_CONFIG, "Removing exit policy %s. It is already "
  740. "covered by %s.", p1, p2);
  741. smartlist_del_keeporder(dest, i--);
  742. addr_policy_free(ap);
  743. break;
  744. }
  745. }
  746. }
  747. }
  748. }
  749. #define DEFAULT_EXIT_POLICY \
  750. "reject *:25,reject *:119,reject *:135-139,reject *:445," \
  751. "reject *:563,reject *:1214,reject *:4661-4666," \
  752. "reject *:6346-6429,reject *:6699,reject *:6881-6999,accept *:*"
  753. /** Parse the exit policy <b>cfg</b> into the linked list *<b>dest</b>. If
  754. * cfg doesn't end in an absolute accept or reject and if
  755. * <b>add_default_policy</b> is true, add the default exit
  756. * policy afterwards. If <b>rejectprivate</b> is true, prepend
  757. * "reject private:*" to the policy. Return -1 if we can't parse cfg,
  758. * else return 0.
  759. */
  760. int
  761. policies_parse_exit_policy(config_line_t *cfg, smartlist_t **dest,
  762. int rejectprivate, const char *local_address,
  763. int add_default_policy)
  764. {
  765. if (rejectprivate) {
  766. append_exit_policy_string(dest, "reject private:*");
  767. if (local_address) {
  768. char buf[POLICY_BUF_LEN];
  769. tor_snprintf(buf, sizeof(buf), "reject %s:*", local_address);
  770. append_exit_policy_string(dest, buf);
  771. }
  772. }
  773. if (parse_addr_policy(cfg, dest, -1))
  774. return -1;
  775. if (add_default_policy)
  776. append_exit_policy_string(dest, DEFAULT_EXIT_POLICY);
  777. else
  778. append_exit_policy_string(dest, "reject *:*");
  779. exit_policy_remove_redundancies(*dest);
  780. return 0;
  781. }
  782. /** Replace the exit policy of <b>r</b> with reject *:*. */
  783. void
  784. policies_set_router_exitpolicy_to_reject_all(routerinfo_t *r)
  785. {
  786. addr_policy_t *item;
  787. addr_policy_list_free(r->exit_policy);
  788. r->exit_policy = smartlist_create();
  789. item = router_parse_addr_policy_item_from_string("reject *:*", -1);
  790. smartlist_add(r->exit_policy, item);
  791. }
  792. /** Return true iff <b>ri</b> is "useful as an exit node", meaning
  793. * it allows exit to at least one /8 address space for at least
  794. * two of ports 80, 443, and 6667. */
  795. int
  796. exit_policy_is_general_exit(smartlist_t *policy)
  797. {
  798. static const int ports[] = { 80, 443, 6667 };
  799. int n_allowed = 0;
  800. int i;
  801. if (!policy) /*XXXX disallow NULL policies? */
  802. return 0;
  803. for (i = 0; i < 3; ++i) {
  804. SMARTLIST_FOREACH(policy, addr_policy_t *, p, {
  805. if (p->prt_min > ports[i] || p->prt_max < ports[i])
  806. continue; /* Doesn't cover our port. */
  807. if (p->maskbits > 8)
  808. continue; /* Narrower than a /8. */
  809. if (tor_addr_is_loopback(&p->addr))
  810. continue; /* 127.x or ::1. */
  811. /* We have a match that is at least a /8. */
  812. if (p->policy_type == ADDR_POLICY_ACCEPT) {
  813. ++n_allowed;
  814. break; /* stop considering this port */
  815. }
  816. });
  817. }
  818. return n_allowed >= 2;
  819. }
  820. /** Return false if <b>policy</b> might permit access to some addr:port;
  821. * otherwise if we are certain it rejects everything, return true. */
  822. int
  823. policy_is_reject_star(const smartlist_t *policy)
  824. {
  825. if (!policy) /*XXXX disallow NULL policies? */
  826. return 1;
  827. SMARTLIST_FOREACH(policy, addr_policy_t *, p, {
  828. if (p->policy_type == ADDR_POLICY_ACCEPT)
  829. return 0;
  830. else if (p->policy_type == ADDR_POLICY_REJECT &&
  831. p->prt_min <= 1 && p->prt_max == 65535 &&
  832. p->maskbits == 0)
  833. return 1;
  834. });
  835. return 1;
  836. }
  837. /** Write a single address policy to the buf_len byte buffer at buf. Return
  838. * the number of characters written, or -1 on failure. */
  839. int
  840. policy_write_item(char *buf, size_t buflen, addr_policy_t *policy,
  841. int format_for_desc)
  842. {
  843. size_t written = 0;
  844. char addrbuf[TOR_ADDR_BUF_LEN];
  845. const char *addrpart;
  846. int result;
  847. const int is_accept = policy->policy_type == ADDR_POLICY_ACCEPT;
  848. const int is_ip6 = tor_addr_family(&policy->addr) == AF_INET6;
  849. tor_addr_to_str(addrbuf, &policy->addr, sizeof(addrbuf), 1);
  850. /* write accept/reject 1.2.3.4 */
  851. if (policy->is_private)
  852. addrpart = "private";
  853. else if (policy->maskbits == 0)
  854. addrpart = "*";
  855. else
  856. addrpart = addrbuf;
  857. result = tor_snprintf(buf, buflen, "%s%s%s %s",
  858. (is_ip6&&format_for_desc)?"opt ":"",
  859. is_accept ? "accept" : "reject",
  860. (is_ip6&&format_for_desc)?"6":"",
  861. addrpart);
  862. if (result < 0)
  863. return -1;
  864. written += strlen(buf);
  865. /* If the maskbits is 32 we don't need to give it. If the mask is 0,
  866. * we already wrote "*". */
  867. if (policy->maskbits < 32 && policy->maskbits > 0) {
  868. if (tor_snprintf(buf+written, buflen-written, "/%d", policy->maskbits)<0)
  869. return -1;
  870. written += strlen(buf+written);
  871. }
  872. if (policy->prt_min <= 1 && policy->prt_max == 65535) {
  873. /* There is no port set; write ":*" */
  874. if (written+4 > buflen)
  875. return -1;
  876. strlcat(buf+written, ":*", buflen-written);
  877. written += 2;
  878. } else if (policy->prt_min == policy->prt_max) {
  879. /* There is only one port; write ":80". */
  880. result = tor_snprintf(buf+written, buflen-written, ":%d", policy->prt_min);
  881. if (result<0)
  882. return -1;
  883. written += result;
  884. } else {
  885. /* There is a range of ports; write ":79-80". */
  886. result = tor_snprintf(buf+written, buflen-written, ":%d-%d",
  887. policy->prt_min, policy->prt_max);
  888. if (result<0)
  889. return -1;
  890. written += result;
  891. }
  892. if (written < buflen)
  893. buf[written] = '\0';
  894. else
  895. return -1;
  896. return (int)written;
  897. }
  898. /** Create a new exit policy summary, initially only with a single
  899. * port 1-64k item */
  900. /* XXXX This entire thing will do most stuff in O(N^2), or worse. Use an
  901. * RB-tree if that turns out to matter. */
  902. static smartlist_t *
  903. policy_summary_create(void)
  904. {
  905. smartlist_t *summary;
  906. policy_summary_item_t* item;
  907. item = tor_malloc_zero(sizeof(policy_summary_item_t));
  908. item->prt_min = 1;
  909. item->prt_max = 65535;
  910. item->reject_count = 0;
  911. item->accepted = 0;
  912. summary = smartlist_create();
  913. smartlist_add(summary, item);
  914. return summary;
  915. }
  916. /** Split the summary item in <b>item</b> at the port <b>new_starts</b>.
  917. * The current item is changed to end at new-starts - 1, the new item
  918. * copies reject_count and accepted from the old item,
  919. * starts at new_starts and ends at the port where the original item
  920. * previously ended.
  921. */
  922. static policy_summary_item_t*
  923. policy_summary_item_split(policy_summary_item_t* old, uint16_t new_starts)
  924. {
  925. policy_summary_item_t* new;
  926. new = tor_malloc_zero(sizeof(policy_summary_item_t));
  927. new->prt_min = new_starts;
  928. new->prt_max = old->prt_max;
  929. new->reject_count = old->reject_count;
  930. new->accepted = old->accepted;
  931. old->prt_max = new_starts-1;
  932. tor_assert(old->prt_min <= old->prt_max);
  933. tor_assert(new->prt_min <= new->prt_max);
  934. return new;
  935. }
  936. /* XXXX Nick says I'm going to hell for this. If he feels charitably towards
  937. * my immortal soul, he can clean it up himself. */
  938. #define AT(x) ((policy_summary_item_t*)smartlist_get(summary, x))
  939. #define REJECT_CUTOFF_COUNT (1<<25)
  940. /** Split an exit policy summary so that prt_min and prt_max
  941. * fall at exactly the start and end of an item respectively.
  942. */
  943. static int
  944. policy_summary_split(smartlist_t *summary,
  945. uint16_t prt_min, uint16_t prt_max)
  946. {
  947. int start_at_index;
  948. int i = 0;
  949. /* XXXX Do a binary search if run time matters */
  950. while (AT(i)->prt_max < prt_min)
  951. i++;
  952. if (AT(i)->prt_min != prt_min) {
  953. policy_summary_item_t* new_item;
  954. new_item = policy_summary_item_split(AT(i), prt_min);
  955. smartlist_insert(summary, i+1, new_item);
  956. i++;
  957. }
  958. start_at_index = i;
  959. while (AT(i)->prt_max < prt_max)
  960. i++;
  961. if (AT(i)->prt_max != prt_max) {
  962. policy_summary_item_t* new_item;
  963. new_item = policy_summary_item_split(AT(i), prt_max+1);
  964. smartlist_insert(summary, i+1, new_item);
  965. }
  966. return start_at_index;
  967. }
  968. /** Mark port ranges as accepted if they are below the reject_count */
  969. static void
  970. policy_summary_accept(smartlist_t *summary,
  971. uint16_t prt_min, uint16_t prt_max)
  972. {
  973. int i = policy_summary_split(summary, prt_min, prt_max);
  974. while (i < smartlist_len(summary) &&
  975. AT(i)->prt_max <= prt_max) {
  976. if (!AT(i)->accepted &&
  977. AT(i)->reject_count <= REJECT_CUTOFF_COUNT)
  978. AT(i)->accepted = 1;
  979. i++;
  980. }
  981. tor_assert(i < smartlist_len(summary) || prt_max==65535);
  982. }
  983. /** Count the number of addresses in a network with prefixlen maskbits
  984. * against the given portrange. */
  985. static void
  986. policy_summary_reject(smartlist_t *summary,
  987. maskbits_t maskbits,
  988. uint16_t prt_min, uint16_t prt_max)
  989. {
  990. int i = policy_summary_split(summary, prt_min, prt_max);
  991. /* XXX: ipv4 specific */
  992. uint64_t count = (U64_LITERAL(1) << (32-maskbits));
  993. while (i < smartlist_len(summary) &&
  994. AT(i)->prt_max <= prt_max) {
  995. AT(i)->reject_count += count;
  996. i++;
  997. }
  998. tor_assert(i < smartlist_len(summary) || prt_max==65535);
  999. }
  1000. /** Add a single exit policy item to our summary:
  1001. * If it is an accept ignore it unless it is for all IP addresses
  1002. * ("*"), i.e. it's prefixlen/maskbits is 0, else call
  1003. * policy_summary_accept().
  1004. * If it's a reject ignore it if it is about one of the private
  1005. * networks, else call policy_summary_reject().
  1006. */
  1007. static void
  1008. policy_summary_add_item(smartlist_t *summary, addr_policy_t *p)
  1009. {
  1010. if (p->policy_type == ADDR_POLICY_ACCEPT) {
  1011. if (p->maskbits == 0) {
  1012. policy_summary_accept(summary, p->prt_min, p->prt_max);
  1013. }
  1014. } else if (p->policy_type == ADDR_POLICY_REJECT) {
  1015. int is_private = 0;
  1016. int i;
  1017. for (i = 0; private_nets[i]; ++i) {
  1018. tor_addr_t addr;
  1019. maskbits_t maskbits;
  1020. if (tor_addr_parse_mask_ports(private_nets[i], &addr,
  1021. &maskbits, NULL, NULL)<0) {
  1022. tor_assert(0);
  1023. }
  1024. if (tor_addr_compare(&p->addr, &addr, CMP_EXACT) == 0 &&
  1025. p->maskbits == maskbits) {
  1026. is_private = 1;
  1027. break;
  1028. }
  1029. }
  1030. if (!is_private) {
  1031. policy_summary_reject(summary, p->maskbits, p->prt_min, p->prt_max);
  1032. }
  1033. } else
  1034. tor_assert(0);
  1035. }
  1036. /** Create a string representing a summary for an exit policy.
  1037. * The summary will either be an "accept" plus a comma-separated list of port
  1038. * ranges or a "reject" plus port-ranges, depending on which is shorter.
  1039. *
  1040. * If no exits are allowed at all then NULL is returned, if no ports
  1041. * are blocked instead of "reject " we return "accept 1-65535" (this
  1042. * is an exception to the shorter-representation-wins rule).
  1043. */
  1044. char *
  1045. policy_summarize(smartlist_t *policy)
  1046. {
  1047. smartlist_t *summary = policy_summary_create();
  1048. smartlist_t *accepts, *rejects;
  1049. int i, last, start_prt;
  1050. size_t accepts_len, rejects_len, shorter_len, final_size;
  1051. char *accepts_str = NULL, *rejects_str = NULL, *shorter_str, *result;
  1052. const char *prefix;
  1053. tor_assert(policy);
  1054. /* Create the summary list */
  1055. SMARTLIST_FOREACH(policy, addr_policy_t *, p, {
  1056. policy_summary_add_item(summary, p);
  1057. });
  1058. /* Now create two lists of strings, one for accepted and one
  1059. * for rejected ports. We take care to merge ranges so that
  1060. * we avoid getting stuff like "1-4,5-9,10", instead we want
  1061. * "1-10"
  1062. */
  1063. i = 0;
  1064. start_prt = 1;
  1065. accepts = smartlist_create();
  1066. rejects = smartlist_create();
  1067. while (1) {
  1068. last = i == smartlist_len(summary)-1;
  1069. if (last ||
  1070. AT(i)->accepted != AT(i+1)->accepted) {
  1071. char buf[POLICY_BUF_LEN];
  1072. if (start_prt == AT(i)->prt_max)
  1073. tor_snprintf(buf, sizeof(buf), "%d", start_prt);
  1074. else
  1075. tor_snprintf(buf, sizeof(buf), "%d-%d", start_prt, AT(i)->prt_max);
  1076. if (AT(i)->accepted)
  1077. smartlist_add(accepts, tor_strdup(buf));
  1078. else
  1079. smartlist_add(rejects, tor_strdup(buf));
  1080. if (last)
  1081. break;
  1082. start_prt = AT(i+1)->prt_min;
  1083. };
  1084. i++;
  1085. };
  1086. /* Figure out which of the two stringlists will be shorter and use
  1087. * that to build the result
  1088. */
  1089. if (smartlist_len(accepts) == 0) { /* no exits at all */
  1090. result = tor_strdup("reject 1-65535");
  1091. goto cleanup;
  1092. }
  1093. if (smartlist_len(rejects) == 0) { /* no rejects at all */
  1094. result = tor_strdup("accept 1-65535");
  1095. goto cleanup;
  1096. }
  1097. accepts_str = smartlist_join_strings(accepts, ",", 0, &accepts_len);
  1098. rejects_str = smartlist_join_strings(rejects, ",", 0, &rejects_len);
  1099. if (rejects_len > MAX_EXITPOLICY_SUMMARY_LEN &&
  1100. accepts_len > MAX_EXITPOLICY_SUMMARY_LEN) {
  1101. char *c;
  1102. shorter_str = accepts_str;
  1103. prefix = "accept";
  1104. c = shorter_str + (MAX_EXITPOLICY_SUMMARY_LEN-strlen(prefix)-1);
  1105. while (*c != ',' && c >= shorter_str)
  1106. c--;
  1107. tor_assert(c >= shorter_str);
  1108. tor_assert(*c == ',');
  1109. *c = '\0';
  1110. shorter_len = strlen(shorter_str);
  1111. } else if (rejects_len < accepts_len) {
  1112. shorter_str = rejects_str;
  1113. shorter_len = rejects_len;
  1114. prefix = "reject";
  1115. } else {
  1116. shorter_str = accepts_str;
  1117. shorter_len = accepts_len;
  1118. prefix = "accept";
  1119. }
  1120. final_size = strlen(prefix)+1+shorter_len+1;
  1121. tor_assert(final_size <= MAX_EXITPOLICY_SUMMARY_LEN+1);
  1122. result = tor_malloc(final_size);
  1123. tor_snprintf(result, final_size, "%s %s", prefix, shorter_str);
  1124. cleanup:
  1125. /* cleanup */
  1126. SMARTLIST_FOREACH(summary, policy_summary_item_t *, s, tor_free(s));
  1127. smartlist_free(summary);
  1128. tor_free(accepts_str);
  1129. SMARTLIST_FOREACH(accepts, char *, s, tor_free(s));
  1130. smartlist_free(accepts);
  1131. tor_free(rejects_str);
  1132. SMARTLIST_FOREACH(rejects, char *, s, tor_free(s));
  1133. smartlist_free(rejects);
  1134. return result;
  1135. }
  1136. /** Implementation for GETINFO control command: knows the answer for questions
  1137. * about "exit-policy/..." */
  1138. int
  1139. getinfo_helper_policies(control_connection_t *conn,
  1140. const char *question, char **answer)
  1141. {
  1142. (void) conn;
  1143. if (!strcmp(question, "exit-policy/default")) {
  1144. *answer = tor_strdup(DEFAULT_EXIT_POLICY);
  1145. }
  1146. return 0;
  1147. }
  1148. /** Release all storage held by <b>p</b>. */
  1149. void
  1150. addr_policy_list_free(smartlist_t *lst)
  1151. {
  1152. if (!lst)
  1153. return;
  1154. SMARTLIST_FOREACH(lst, addr_policy_t *, policy, addr_policy_free(policy));
  1155. smartlist_free(lst);
  1156. }
  1157. /** Release all storage held by <b>p</b>. */
  1158. void
  1159. addr_policy_free(addr_policy_t *p)
  1160. {
  1161. if (!p)
  1162. return;
  1163. if (--p->refcnt <= 0) {
  1164. if (p->is_canonical) {
  1165. policy_map_ent_t search, *found;
  1166. search.policy = p;
  1167. found = HT_REMOVE(policy_map, &policy_root, &search);
  1168. if (found) {
  1169. tor_assert(p == found->policy);
  1170. tor_free(found);
  1171. }
  1172. }
  1173. tor_free(p);
  1174. }
  1175. }
  1176. /** Release all storage held by policy variables. */
  1177. void
  1178. policies_free_all(void)
  1179. {
  1180. addr_policy_list_free(reachable_or_addr_policy);
  1181. reachable_or_addr_policy = NULL;
  1182. addr_policy_list_free(reachable_dir_addr_policy);
  1183. reachable_dir_addr_policy = NULL;
  1184. addr_policy_list_free(socks_policy);
  1185. socks_policy = NULL;
  1186. addr_policy_list_free(dir_policy);
  1187. dir_policy = NULL;
  1188. addr_policy_list_free(authdir_reject_policy);
  1189. authdir_reject_policy = NULL;
  1190. addr_policy_list_free(authdir_invalid_policy);
  1191. authdir_invalid_policy = NULL;
  1192. addr_policy_list_free(authdir_baddir_policy);
  1193. authdir_baddir_policy = NULL;
  1194. addr_policy_list_free(authdir_badexit_policy);
  1195. authdir_badexit_policy = NULL;
  1196. if (!HT_EMPTY(&policy_root)) {
  1197. policy_map_ent_t **ent;
  1198. int n = 0;
  1199. char buf[POLICY_BUF_LEN];
  1200. log_warn(LD_MM, "Still had %d address policies cached at shutdown.",
  1201. (int)HT_SIZE(&policy_root));
  1202. /* Note the first 10 cached policies to try to figure out where they
  1203. * might be coming from. */
  1204. HT_FOREACH(ent, policy_map, &policy_root) {
  1205. if (++n > 10)
  1206. break;
  1207. if (policy_write_item(buf, sizeof(buf), (*ent)->policy, 0) >= 0)
  1208. log_warn(LD_MM," %d [%d]: %s", n, (*ent)->policy->refcnt, buf);
  1209. }
  1210. }
  1211. HT_CLEAR(policy_map, &policy_root);
  1212. }