policies.c 101 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949
  1. /* Copyright (c) 2001-2004, Roger Dingledine.
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2015, 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. #define POLICIES_PRIVATE
  10. #include "or.h"
  11. #include "config.h"
  12. #include "dirserv.h"
  13. #include "networkstatus.h"
  14. #include "nodelist.h"
  15. #include "policies.h"
  16. #include "router.h"
  17. #include "routerparse.h"
  18. #include "geoip.h"
  19. #include "ht.h"
  20. /** Policy that addresses for incoming SOCKS connections must match. */
  21. static smartlist_t *socks_policy = NULL;
  22. /** Policy that addresses for incoming directory connections must match. */
  23. static smartlist_t *dir_policy = NULL;
  24. /** Policy that addresses for incoming router descriptors must match in order
  25. * to be published by us. */
  26. static smartlist_t *authdir_reject_policy = NULL;
  27. /** Policy that addresses for incoming router descriptors must match in order
  28. * to be marked as valid in our networkstatus. */
  29. static smartlist_t *authdir_invalid_policy = NULL;
  30. /** Policy that addresses for incoming router descriptors must <b>not</b>
  31. * match in order to not be marked as BadExit. */
  32. static smartlist_t *authdir_badexit_policy = NULL;
  33. /** Parsed addr_policy_t describing which addresses we believe we can start
  34. * circuits at. */
  35. static smartlist_t *reachable_or_addr_policy = NULL;
  36. /** Parsed addr_policy_t describing which addresses we believe we can connect
  37. * to directories at. */
  38. static smartlist_t *reachable_dir_addr_policy = NULL;
  39. /** Element of an exit policy summary */
  40. typedef struct policy_summary_item_t {
  41. uint16_t prt_min; /**< Lowest port number to accept/reject. */
  42. uint16_t prt_max; /**< Highest port number to accept/reject. */
  43. uint64_t reject_count; /**< Number of IP-Addresses that are rejected to
  44. this port range. */
  45. unsigned int accepted:1; /** Has this port already been accepted */
  46. } policy_summary_item_t;
  47. /** Private networks. This list is used in two places, once to expand the
  48. * "private" keyword when parsing our own exit policy, secondly to ignore
  49. * just such networks when building exit policy summaries. It is important
  50. * that all authorities agree on that list when creating summaries, so don't
  51. * just change this without a proper migration plan and a proposal and stuff.
  52. */
  53. static const char *private_nets[] = {
  54. "0.0.0.0/8", "169.254.0.0/16",
  55. "127.0.0.0/8", "192.168.0.0/16", "10.0.0.0/8", "172.16.0.0/12",
  56. "[::]/8",
  57. "[fc00::]/7", "[fe80::]/10", "[fec0::]/10", "[ff00::]/8", "[::]/127",
  58. NULL
  59. };
  60. static int policies_parse_exit_policy_internal(
  61. config_line_t *cfg,
  62. smartlist_t **dest,
  63. int ipv6_exit,
  64. int rejectprivate,
  65. const smartlist_t *configured_addresses,
  66. int reject_interface_addresses,
  67. int reject_configured_port_addresses,
  68. int add_default_policy);
  69. /** Replace all "private" entries in *<b>policy</b> with their expanded
  70. * equivalents. */
  71. void
  72. policy_expand_private(smartlist_t **policy)
  73. {
  74. uint16_t port_min, port_max;
  75. int i;
  76. smartlist_t *tmp;
  77. if (!*policy) /*XXXX disallow NULL policies? */
  78. return;
  79. tmp = smartlist_new();
  80. SMARTLIST_FOREACH_BEGIN(*policy, addr_policy_t *, p) {
  81. if (! p->is_private) {
  82. smartlist_add(tmp, p);
  83. continue;
  84. }
  85. for (i = 0; private_nets[i]; ++i) {
  86. addr_policy_t newpolicy;
  87. memcpy(&newpolicy, p, sizeof(addr_policy_t));
  88. newpolicy.is_private = 0;
  89. newpolicy.is_canonical = 0;
  90. if (tor_addr_parse_mask_ports(private_nets[i], 0,
  91. &newpolicy.addr,
  92. &newpolicy.maskbits, &port_min, &port_max)<0) {
  93. tor_assert(0);
  94. }
  95. smartlist_add(tmp, addr_policy_get_canonical_entry(&newpolicy));
  96. }
  97. addr_policy_free(p);
  98. } SMARTLIST_FOREACH_END(p);
  99. smartlist_free(*policy);
  100. *policy = tmp;
  101. }
  102. /** Expand each of the AF_UNSPEC elements in *<b>policy</b> (which indicate
  103. * protocol-neutral wildcards) into a pair of wildcard elements: one IPv4-
  104. * specific and one IPv6-specific. */
  105. void
  106. policy_expand_unspec(smartlist_t **policy)
  107. {
  108. smartlist_t *tmp;
  109. if (!*policy)
  110. return;
  111. tmp = smartlist_new();
  112. SMARTLIST_FOREACH_BEGIN(*policy, addr_policy_t *, p) {
  113. sa_family_t family = tor_addr_family(&p->addr);
  114. if (family == AF_INET6 || family == AF_INET || p->is_private) {
  115. smartlist_add(tmp, p);
  116. } else if (family == AF_UNSPEC) {
  117. addr_policy_t newpolicy_ipv4;
  118. addr_policy_t newpolicy_ipv6;
  119. memcpy(&newpolicy_ipv4, p, sizeof(addr_policy_t));
  120. memcpy(&newpolicy_ipv6, p, sizeof(addr_policy_t));
  121. newpolicy_ipv4.is_canonical = 0;
  122. newpolicy_ipv6.is_canonical = 0;
  123. if (p->maskbits != 0) {
  124. log_warn(LD_BUG, "AF_UNSPEC policy with maskbits==%d", p->maskbits);
  125. newpolicy_ipv4.maskbits = 0;
  126. newpolicy_ipv6.maskbits = 0;
  127. }
  128. tor_addr_from_ipv4h(&newpolicy_ipv4.addr, 0);
  129. tor_addr_from_ipv6_bytes(&newpolicy_ipv6.addr,
  130. "\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0");
  131. smartlist_add(tmp, addr_policy_get_canonical_entry(&newpolicy_ipv4));
  132. smartlist_add(tmp, addr_policy_get_canonical_entry(&newpolicy_ipv6));
  133. addr_policy_free(p);
  134. } else {
  135. log_warn(LD_BUG, "Funny-looking address policy with family %d", family);
  136. smartlist_add(tmp, p);
  137. }
  138. } SMARTLIST_FOREACH_END(p);
  139. smartlist_free(*policy);
  140. *policy = tmp;
  141. }
  142. /**
  143. * Given a linked list of config lines containing "accept[6]" and "reject[6]"
  144. * tokens, parse them and append the result to <b>dest</b>. Return -1
  145. * if any tokens are malformed (and don't append any), else return 0.
  146. *
  147. * If <b>assume_action</b> is nonnegative, then insert its action
  148. * (ADDR_POLICY_ACCEPT or ADDR_POLICY_REJECT) for items that specify no
  149. * action.
  150. */
  151. static int
  152. parse_addr_policy(config_line_t *cfg, smartlist_t **dest,
  153. int assume_action)
  154. {
  155. smartlist_t *result;
  156. smartlist_t *entries;
  157. addr_policy_t *item;
  158. int malformed_list;
  159. int r = 0;
  160. if (!cfg)
  161. return 0;
  162. result = smartlist_new();
  163. entries = smartlist_new();
  164. for (; cfg; cfg = cfg->next) {
  165. smartlist_split_string(entries, cfg->value, ",",
  166. SPLIT_SKIP_SPACE|SPLIT_IGNORE_BLANK, 0);
  167. SMARTLIST_FOREACH_BEGIN(entries, const char *, ent) {
  168. log_debug(LD_CONFIG,"Adding new entry '%s'",ent);
  169. malformed_list = 0;
  170. item = router_parse_addr_policy_item_from_string(ent, assume_action,
  171. &malformed_list);
  172. if (item) {
  173. smartlist_add(result, item);
  174. } else if (malformed_list) {
  175. /* the error is so severe the entire list should be discarded */
  176. log_warn(LD_CONFIG, "Malformed policy '%s'. Discarding entire policy "
  177. "list.", ent);
  178. r = -1;
  179. } else {
  180. /* the error is minor: don't add the item, but keep processing the
  181. * rest of the policies in the list */
  182. log_debug(LD_CONFIG, "Ignored policy '%s' due to non-fatal error. "
  183. "The remainder of the policy list will be used.",
  184. ent);
  185. }
  186. } SMARTLIST_FOREACH_END(ent);
  187. SMARTLIST_FOREACH(entries, char *, ent, tor_free(ent));
  188. smartlist_clear(entries);
  189. }
  190. smartlist_free(entries);
  191. if (r == -1) {
  192. addr_policy_list_free(result);
  193. } else {
  194. policy_expand_private(&result);
  195. policy_expand_unspec(&result);
  196. if (*dest) {
  197. smartlist_add_all(*dest, result);
  198. smartlist_free(result);
  199. } else {
  200. *dest = result;
  201. }
  202. }
  203. return r;
  204. }
  205. /** Helper: parse the Reachable(Dir|OR)?Addresses fields into
  206. * reachable_(or|dir)_addr_policy. The options should already have
  207. * been validated by validate_addr_policies.
  208. */
  209. static int
  210. parse_reachable_addresses(void)
  211. {
  212. const or_options_t *options = get_options();
  213. int ret = 0;
  214. if (options->ReachableDirAddresses &&
  215. options->ReachableORAddresses &&
  216. options->ReachableAddresses) {
  217. log_warn(LD_CONFIG,
  218. "Both ReachableDirAddresses and ReachableORAddresses are set. "
  219. "ReachableAddresses setting will be ignored.");
  220. }
  221. addr_policy_list_free(reachable_or_addr_policy);
  222. reachable_or_addr_policy = NULL;
  223. if (!options->ReachableORAddresses && options->ReachableAddresses)
  224. log_info(LD_CONFIG,
  225. "Using ReachableAddresses as ReachableORAddresses.");
  226. if (parse_addr_policy(options->ReachableORAddresses ?
  227. options->ReachableORAddresses :
  228. options->ReachableAddresses,
  229. &reachable_or_addr_policy, ADDR_POLICY_ACCEPT)) {
  230. log_warn(LD_CONFIG,
  231. "Error parsing Reachable%sAddresses entry; ignoring.",
  232. options->ReachableORAddresses ? "OR" : "");
  233. ret = -1;
  234. }
  235. addr_policy_list_free(reachable_dir_addr_policy);
  236. reachable_dir_addr_policy = NULL;
  237. if (!options->ReachableDirAddresses && options->ReachableAddresses)
  238. log_info(LD_CONFIG,
  239. "Using ReachableAddresses as ReachableDirAddresses");
  240. if (parse_addr_policy(options->ReachableDirAddresses ?
  241. options->ReachableDirAddresses :
  242. options->ReachableAddresses,
  243. &reachable_dir_addr_policy, ADDR_POLICY_ACCEPT)) {
  244. if (options->ReachableDirAddresses)
  245. log_warn(LD_CONFIG,
  246. "Error parsing ReachableDirAddresses entry; ignoring.");
  247. ret = -1;
  248. }
  249. /* We ignore ReachableAddresses for relays */
  250. if (!server_mode(options)) {
  251. if ((reachable_or_addr_policy
  252. && policy_is_reject_star(reachable_or_addr_policy, AF_UNSPEC))
  253. || (reachable_dir_addr_policy
  254. && policy_is_reject_star(reachable_dir_addr_policy, AF_UNSPEC))) {
  255. log_warn(LD_CONFIG, "Tor cannot connect to the Internet if "
  256. "ReachableAddresses, ReachableORAddresses, or "
  257. "ReachableDirAddresses reject all addresses. Please accept "
  258. "some addresses in these options.");
  259. } else if (options->ClientUseIPv4 == 1
  260. && ((reachable_or_addr_policy
  261. && policy_is_reject_star(reachable_or_addr_policy, AF_INET))
  262. || (reachable_dir_addr_policy
  263. && policy_is_reject_star(reachable_dir_addr_policy, AF_INET)))) {
  264. log_warn(LD_CONFIG, "You have set ClientUseIPv4 1, but "
  265. "ReachableAddresses, ReachableORAddresses, or "
  266. "ReachableDirAddresses reject all IPv4 addresses. "
  267. "Tor will not connect using IPv4.");
  268. } else if (fascist_firewall_use_ipv6(options)
  269. && ((reachable_or_addr_policy
  270. && policy_is_reject_star(reachable_or_addr_policy, AF_INET6))
  271. || (reachable_dir_addr_policy
  272. && policy_is_reject_star(reachable_dir_addr_policy, AF_INET6)))) {
  273. log_warn(LD_CONFIG, "You have configured tor to use IPv6 "
  274. "(ClientUseIPv6 1 or UseBridges 1), but "
  275. "ReachableAddresses, ReachableORAddresses, or "
  276. "ReachableDirAddresses reject all IPv6 addresses. "
  277. "Tor will not connect using IPv6.");
  278. }
  279. }
  280. return ret;
  281. }
  282. /* Return true iff ClientUseIPv4 0 or ClientUseIPv6 0 might block any OR or Dir
  283. * address:port combination. */
  284. static int
  285. firewall_is_fascist_impl(void)
  286. {
  287. const or_options_t *options = get_options();
  288. /* Assume every non-bridge relay has an IPv4 address.
  289. * Clients which use bridges may only know the IPv6 address of their
  290. * bridge. */
  291. return (options->ClientUseIPv4 == 0
  292. || (!fascist_firewall_use_ipv6(options)
  293. && options->UseBridges == 1));
  294. }
  295. /** Return true iff the firewall options, including ClientUseIPv4 0 and
  296. * ClientUseIPv6 0, might block any OR address:port combination.
  297. * Address preferences may still change which address is selected even if
  298. * this function returns false.
  299. */
  300. int
  301. firewall_is_fascist_or(void)
  302. {
  303. return (reachable_or_addr_policy != NULL || firewall_is_fascist_impl());
  304. }
  305. /** Return true iff the firewall options, including ClientUseIPv4 0 and
  306. * ClientUseIPv6 0, might block any Dir address:port combination.
  307. * Address preferences may still change which address is selected even if
  308. * this function returns false.
  309. */
  310. int
  311. firewall_is_fascist_dir(void)
  312. {
  313. return (reachable_dir_addr_policy != NULL || firewall_is_fascist_impl());
  314. }
  315. /** Return true iff <b>policy</b> (possibly NULL) will allow a
  316. * connection to <b>addr</b>:<b>port</b>.
  317. */
  318. static int
  319. addr_policy_permits_tor_addr(const tor_addr_t *addr, uint16_t port,
  320. smartlist_t *policy)
  321. {
  322. addr_policy_result_t p;
  323. p = compare_tor_addr_to_addr_policy(addr, port, policy);
  324. switch (p) {
  325. case ADDR_POLICY_PROBABLY_ACCEPTED:
  326. case ADDR_POLICY_ACCEPTED:
  327. return 1;
  328. case ADDR_POLICY_PROBABLY_REJECTED:
  329. case ADDR_POLICY_REJECTED:
  330. return 0;
  331. default:
  332. log_warn(LD_BUG, "Unexpected result: %d", (int)p);
  333. return 0;
  334. }
  335. }
  336. /** Return true iff <b> policy</b> (possibly NULL) will allow a connection to
  337. * <b>addr</b>:<b>port</b>. <b>addr</b> is an IPv4 address given in host
  338. * order. */
  339. /* XXXX deprecate when possible. */
  340. static int
  341. addr_policy_permits_address(uint32_t addr, uint16_t port,
  342. smartlist_t *policy)
  343. {
  344. tor_addr_t a;
  345. tor_addr_from_ipv4h(&a, addr);
  346. return addr_policy_permits_tor_addr(&a, port, policy);
  347. }
  348. /** Return true iff we think our firewall will let us make a connection to
  349. * addr:port.
  350. *
  351. * If we are configured as a server, ignore any address family preference and
  352. * just use IPv4.
  353. * Otherwise:
  354. * - return false for all IPv4 addresses:
  355. * - if ClientUseIPv4 is 0, or
  356. * if pref_only and pref_ipv6 are both true;
  357. * - return false for all IPv6 addresses:
  358. * - if fascist_firewall_use_ipv6() is 0, or
  359. * - if pref_only is true and pref_ipv6 is false.
  360. *
  361. * Return false if addr is NULL or tor_addr_is_null(), or if port is 0. */
  362. STATIC int
  363. fascist_firewall_allows_address(const tor_addr_t *addr,
  364. uint16_t port,
  365. smartlist_t *firewall_policy,
  366. int pref_only, int pref_ipv6)
  367. {
  368. const or_options_t *options = get_options();
  369. const int client_mode = !server_mode(options);
  370. if (!addr || tor_addr_is_null(addr) || !port) {
  371. return 0;
  372. }
  373. /* Clients stop using IPv4 if it's disabled. In most cases, clients also
  374. * stop using IPv4 if it's not preferred.
  375. * Servers must have IPv4 enabled and preferred. */
  376. if (tor_addr_family(addr) == AF_INET && client_mode &&
  377. (!options->ClientUseIPv4 || (pref_only && pref_ipv6))) {
  378. return 0;
  379. }
  380. /* Clients and Servers won't use IPv6 unless it's enabled (and in most
  381. * cases, IPv6 must also be preferred before it will be used). */
  382. if (tor_addr_family(addr) == AF_INET6 &&
  383. (!fascist_firewall_use_ipv6(options) || (pref_only && !pref_ipv6))) {
  384. return 0;
  385. }
  386. return addr_policy_permits_tor_addr(addr, port,
  387. firewall_policy);
  388. }
  389. /** Is this client configured to use IPv6?
  390. */
  391. int
  392. fascist_firewall_use_ipv6(const or_options_t *options)
  393. {
  394. /* Clients use IPv6 if it's set, or they use bridges, or they don't use
  395. * IPv4 */
  396. return (options->ClientUseIPv6 == 1 || options->UseBridges == 1
  397. || options->ClientUseIPv4 == 0);
  398. }
  399. /** Do we prefer to connect to IPv6, ignoring ClientPreferIPv6ORPort and
  400. * ClientPreferIPv6DirPort?
  401. * If we're unsure, return -1, otherwise, return 1 for IPv6 and 0 for IPv4.
  402. */
  403. static int
  404. fascist_firewall_prefer_ipv6_impl(const or_options_t *options)
  405. {
  406. /*
  407. Cheap implementation of config options ClientUseIPv4 & ClientUseIPv6 --
  408. If we're a server or IPv6 is disabled, use IPv4.
  409. If IPv4 is disabled, use IPv6.
  410. */
  411. if (server_mode(options) || !fascist_firewall_use_ipv6(options)) {
  412. return 0;
  413. }
  414. if (!options->ClientUseIPv4) {
  415. return 1;
  416. }
  417. return -1;
  418. }
  419. /** Do we prefer to connect to IPv6 ORPorts?
  420. */
  421. int
  422. fascist_firewall_prefer_ipv6_orport(const or_options_t *options)
  423. {
  424. /* node->ipv6_preferred is set from fascist_firewall_prefer_ipv6_orport()
  425. * each time the consensus is loaded.
  426. * If our preferences change, we will only reset ipv6_preferred on the node
  427. * when the next consensus is loaded. But the consensus is realoded when the
  428. * configuration changes after a HUP. So as long as the result of this
  429. * function only depends on Tor's options, everything should work ok.
  430. */
  431. int pref_ipv6 = fascist_firewall_prefer_ipv6_impl(options);
  432. if (pref_ipv6 >= 0) {
  433. return pref_ipv6;
  434. }
  435. /* We can use both IPv4 and IPv6 - which do we prefer? */
  436. if (options->ClientPreferIPv6ORPort == 1) {
  437. return 1;
  438. }
  439. return 0;
  440. }
  441. /** Do we prefer to connect to IPv6 DirPorts?
  442. */
  443. int
  444. fascist_firewall_prefer_ipv6_dirport(const or_options_t *options)
  445. {
  446. int pref_ipv6 = fascist_firewall_prefer_ipv6_impl(options);
  447. if (pref_ipv6 >= 0) {
  448. return pref_ipv6;
  449. }
  450. /* We can use both IPv4 and IPv6 - which do we prefer? */
  451. if (options->ClientPreferIPv6DirPort == 1) {
  452. return 1;
  453. }
  454. return 0;
  455. }
  456. /** Return true iff we think our firewall will let us make a connection to
  457. * addr:port. Uses ReachableORAddresses or ReachableDirAddresses based on
  458. * fw_connection.
  459. * If pref_only, return false if addr is not in the client's preferred address
  460. * family.
  461. */
  462. int
  463. fascist_firewall_allows_address_addr(const tor_addr_t *addr, uint16_t port,
  464. firewall_connection_t fw_connection,
  465. int pref_only)
  466. {
  467. const or_options_t *options = get_options();
  468. if (fw_connection == FIREWALL_OR_CONNECTION) {
  469. return fascist_firewall_allows_address(addr, port,
  470. reachable_or_addr_policy,
  471. pref_only,
  472. fascist_firewall_prefer_ipv6_orport(options));
  473. } else if (fw_connection == FIREWALL_DIR_CONNECTION) {
  474. return fascist_firewall_allows_address(addr, port,
  475. reachable_dir_addr_policy,
  476. pref_only,
  477. fascist_firewall_prefer_ipv6_dirport(options));
  478. } else {
  479. log_warn(LD_BUG, "Bad firewall_connection_t value %d.",
  480. fw_connection);
  481. return 0;
  482. }
  483. }
  484. /** Return true iff we think our firewall will let us make a connection to
  485. * addr:port (ap). Uses ReachableORAddresses or ReachableDirAddresses based on
  486. * fw_connection.
  487. * If pref_only, return false if addr is not in the client's preferred address
  488. * family.
  489. */
  490. static int
  491. fascist_firewall_allows_address_ap(const tor_addr_port_t *ap,
  492. firewall_connection_t fw_connection,
  493. int pref_only)
  494. {
  495. tor_assert(ap);
  496. return fascist_firewall_allows_address_addr(&ap->addr, ap->port,
  497. fw_connection, pref_only);
  498. }
  499. /* Return true iff we think our firewall will let us make a connection to
  500. * ipv4h_or_addr:ipv4_or_port. ipv4h_or_addr is interpreted in host order.
  501. * Uses ReachableORAddresses or ReachableDirAddresses based on
  502. * fw_connection.
  503. * If pref_only, return false if addr is not in the client's preferred address
  504. * family. */
  505. static int
  506. fascist_firewall_allows_address_ipv4h(uint32_t ipv4h_or_addr,
  507. uint16_t ipv4_or_port,
  508. firewall_connection_t fw_connection,
  509. int pref_only)
  510. {
  511. tor_addr_t ipv4_or_addr;
  512. tor_addr_from_ipv4h(&ipv4_or_addr, ipv4h_or_addr);
  513. return fascist_firewall_allows_address_addr(&ipv4_or_addr, ipv4_or_port,
  514. fw_connection, pref_only);
  515. }
  516. /** Return true iff we think our firewall will let us make a connection to
  517. * ipv4h_addr/ipv6_addr. Uses ipv4_orport/ipv6_orport/ReachableORAddresses or
  518. * ipv4_dirport/ipv6_dirport/ReachableDirAddresses based on IPv4/IPv6 and
  519. * <b>fw_connection</b>.
  520. * If pref_only, return false if addr is not in the client's preferred address
  521. * family. */
  522. static int
  523. fascist_firewall_allows_base(uint32_t ipv4h_addr, uint16_t ipv4_orport,
  524. uint16_t ipv4_dirport,
  525. const tor_addr_t *ipv6_addr, uint16_t ipv6_orport,
  526. uint16_t ipv6_dirport,
  527. firewall_connection_t fw_connection,
  528. int pref_only)
  529. {
  530. if (fascist_firewall_allows_address_ipv4h(ipv4h_addr,
  531. (fw_connection == FIREWALL_OR_CONNECTION
  532. ? ipv4_orport
  533. : ipv4_dirport),
  534. fw_connection,
  535. pref_only)) {
  536. return 1;
  537. }
  538. if (fascist_firewall_allows_address_addr(ipv6_addr,
  539. (fw_connection == FIREWALL_OR_CONNECTION
  540. ? ipv6_orport
  541. : ipv6_dirport),
  542. fw_connection,
  543. pref_only)) {
  544. return 1;
  545. }
  546. return 0;
  547. }
  548. /** Like fascist_firewall_allows_ri, but doesn't consult the node. */
  549. static int
  550. fascist_firewall_allows_ri_impl(const routerinfo_t *ri,
  551. firewall_connection_t fw_connection,
  552. int pref_only)
  553. {
  554. if (!ri) {
  555. return 0;
  556. }
  557. /* Assume IPv4 and IPv6 DirPorts are the same */
  558. return fascist_firewall_allows_base(ri->addr, ri->or_port, ri->dir_port,
  559. &ri->ipv6_addr, ri->ipv6_orport,
  560. ri->dir_port, fw_connection, pref_only);
  561. }
  562. /** Like fascist_firewall_allows_rs, but doesn't consult the node. */
  563. static int
  564. fascist_firewall_allows_rs_impl(const routerstatus_t *rs,
  565. firewall_connection_t fw_connection,
  566. int pref_only)
  567. {
  568. if (!rs) {
  569. return 0;
  570. }
  571. /* Assume IPv4 and IPv6 DirPorts are the same */
  572. return fascist_firewall_allows_base(rs->addr, rs->or_port, rs->dir_port,
  573. &rs->ipv6_addr, rs->ipv6_orport,
  574. rs->dir_port, fw_connection, pref_only);
  575. }
  576. /** Return true iff we think our firewall will let us make a connection to
  577. * <b>rs</b> on either its IPv4 or IPv6 address. Uses
  578. * or_port/ipv6_orport/ReachableORAddresses or dir_port/ReachableDirAddresses
  579. * based on IPv4/IPv6 and <b>fw_connection</b>.
  580. * If pref_only, return false if addr is not in the client's preferred address
  581. * family.
  582. * Consults the corresponding node if the addresses in rs are not permitted. */
  583. int
  584. fascist_firewall_allows_rs(const routerstatus_t *rs,
  585. firewall_connection_t fw_connection, int pref_only)
  586. {
  587. if (!rs) {
  588. return 0;
  589. }
  590. /* Assume IPv4 and IPv6 DirPorts are the same */
  591. if (fascist_firewall_allows_rs_impl(rs, fw_connection, pref_only)) {
  592. return 1;
  593. } else {
  594. const node_t *node = node_get_by_id(rs->identity_digest);
  595. return fascist_firewall_allows_node(node, fw_connection, pref_only);
  596. }
  597. }
  598. /** Like fascist_firewall_allows_md, but doesn't consult the node. */
  599. static int
  600. fascist_firewall_allows_md_impl(const microdesc_t *md,
  601. firewall_connection_t fw_connection,
  602. int pref_only)
  603. {
  604. if (!md) {
  605. return 0;
  606. }
  607. /* Can't check dirport, it doesn't have one */
  608. if (fw_connection == FIREWALL_DIR_CONNECTION) {
  609. return 0;
  610. }
  611. /* Also can't check IPv4, doesn't have that either */
  612. return fascist_firewall_allows_address_addr(&md->ipv6_addr, md->ipv6_orport,
  613. fw_connection, pref_only);
  614. }
  615. /** Return true iff we think our firewall will let us make a connection to
  616. * <b>node</b>:
  617. * - if <b>preferred</b> is true, on its preferred address,
  618. * - if not, on either its IPv4 or IPv6 address.
  619. * Uses or_port/ipv6_orport/ReachableORAddresses or
  620. * dir_port/ReachableDirAddresses based on IPv4/IPv6 and <b>fw_connection</b>.
  621. * If pref_only, return false if addr is not in the client's preferred address
  622. * family. */
  623. int
  624. fascist_firewall_allows_node(const node_t *node,
  625. firewall_connection_t fw_connection,
  626. int pref_only)
  627. {
  628. if (!node) {
  629. return 0;
  630. }
  631. node_assert_ok(node);
  632. /* Sometimes, the rs is missing the IPv6 address info, and we need to go
  633. * all the way to the md */
  634. if (node->ri && fascist_firewall_allows_ri_impl(node->ri, fw_connection,
  635. pref_only)) {
  636. return 1;
  637. } else if (node->rs && fascist_firewall_allows_rs_impl(node->rs,
  638. fw_connection,
  639. pref_only)) {
  640. return 1;
  641. } else if (node->md && fascist_firewall_allows_md_impl(node->md,
  642. fw_connection,
  643. pref_only)) {
  644. return 1;
  645. } else {
  646. /* If we know nothing, assume it's unreachable, we'll never get an address
  647. * to connect to. */
  648. return 0;
  649. }
  650. }
  651. /** Return true iff we think our firewall will let us make a connection to
  652. * <b>ds</b> on either its IPv4 or IPv6 address. Uses ReachableORAddresses or
  653. * ReachableDirAddresses based on <b>fw_connection</b> (some directory
  654. * connections are tunneled over ORPorts).
  655. * If pref_only, return false if addr is not in the client's preferred address
  656. * family. */
  657. int
  658. fascist_firewall_allows_dir_server(const dir_server_t *ds,
  659. firewall_connection_t fw_connection,
  660. int pref_only)
  661. {
  662. if (!ds) {
  663. return 0;
  664. }
  665. /* A dir_server_t always has a fake_status. As long as it has the same
  666. * addresses/ports in both fake_status and dir_server_t, this works fine.
  667. * (See #17867.)
  668. * This function relies on fascist_firewall_allows_rs looking up the node on
  669. * failure, because it will get the latest info for the relay. */
  670. return fascist_firewall_allows_rs(&ds->fake_status, fw_connection,
  671. pref_only);
  672. }
  673. /** If a and b are both valid and allowed by fw_connection,
  674. * choose one based on want_a and return it.
  675. * Otherwise, return whichever is allowed.
  676. * Otherwise, return NULL.
  677. * If pref_only, only return an address if it's in the client's preferred
  678. * address family. */
  679. static const tor_addr_port_t *
  680. fascist_firewall_choose_address_impl(const tor_addr_port_t *a,
  681. const tor_addr_port_t *b,
  682. int want_a,
  683. firewall_connection_t fw_connection,
  684. int pref_only)
  685. {
  686. const tor_addr_port_t *use_a = NULL;
  687. const tor_addr_port_t *use_b = NULL;
  688. if (fascist_firewall_allows_address_ap(a, fw_connection, pref_only)) {
  689. use_a = a;
  690. }
  691. if (fascist_firewall_allows_address_ap(b, fw_connection, pref_only)) {
  692. use_b = b;
  693. }
  694. /* If both are allowed */
  695. if (use_a && use_b) {
  696. /* Choose a if we want it */
  697. return (want_a ? use_a : use_b);
  698. } else {
  699. /* Choose a if we have it */
  700. return (use_a ? use_a : use_b);
  701. }
  702. }
  703. /** If a and b are both valid and preferred by fw_connection,
  704. * choose one based on want_a and return it.
  705. * Otherwise, return whichever is preferred.
  706. * If neither are preferred, and pref_only is false:
  707. * - If a and b are both allowed by fw_connection,
  708. * choose one based on want_a and return it.
  709. * - Otherwise, return whichever is preferred.
  710. * Otherwise, return NULL. */
  711. STATIC const tor_addr_port_t *
  712. fascist_firewall_choose_address(const tor_addr_port_t *a,
  713. const tor_addr_port_t *b,
  714. int want_a,
  715. firewall_connection_t fw_connection,
  716. int pref_only)
  717. {
  718. const tor_addr_port_t *pref = fascist_firewall_choose_address_impl(
  719. a, b, want_a,
  720. fw_connection,
  721. 1);
  722. if (pref_only || pref) {
  723. /* If there is a preferred address, use it. If we can only use preferred
  724. * addresses, and neither address is preferred, pref will be NULL, and we
  725. * want to return NULL, so return it. */
  726. return pref;
  727. } else {
  728. /* If there's no preferred address, and we can return addresses that are
  729. * not preferred, use an address that's allowed */
  730. return fascist_firewall_choose_address_impl(a, b, want_a, fw_connection,
  731. 0);
  732. }
  733. }
  734. /** Copy an address and port into <b>ap</b> that we think our firewall will
  735. * let us connect to. Uses ipv4_addr/ipv6_addr and
  736. * ipv4_orport/ipv6_orport/ReachableORAddresses or
  737. * ipv4_dirport/ipv6_dirport/ReachableDirAddresses based on IPv4/IPv6 and
  738. * <b>fw_connection</b>.
  739. * If pref_only, only choose preferred addresses. In either case, choose
  740. * a preferred address before an address that's not preferred.
  741. * If neither address is chosen, return 0, else return 1. */
  742. static int
  743. fascist_firewall_choose_address_base(const tor_addr_t *ipv4_addr,
  744. uint16_t ipv4_orport,
  745. uint16_t ipv4_dirport,
  746. const tor_addr_t *ipv6_addr,
  747. uint16_t ipv6_orport,
  748. uint16_t ipv6_dirport,
  749. firewall_connection_t fw_connection,
  750. int pref_only,
  751. tor_addr_port_t* ap)
  752. {
  753. const tor_addr_port_t *result = NULL;
  754. /* This argument is ignored as long as the address pair is IPv4/IPv6,
  755. * because we always have a preference in a client.
  756. * For bridge clients, this selects the preferred address, which was
  757. * previously IPv6 (if a bridge has both), so we keep that behaviour. */
  758. const int bridge_client_prefer_ipv4 = 0;
  759. tor_assert(ipv6_addr);
  760. tor_assert(ap);
  761. tor_addr_port_t ipv4_ap;
  762. tor_addr_copy(&ipv4_ap.addr, ipv4_addr);
  763. ipv4_ap.port = (fw_connection == FIREWALL_OR_CONNECTION
  764. ? ipv4_orport
  765. : ipv4_dirport);
  766. tor_addr_port_t ipv6_ap;
  767. tor_addr_copy(&ipv6_ap.addr, ipv6_addr);
  768. ipv6_ap.port = (fw_connection == FIREWALL_OR_CONNECTION
  769. ? ipv6_orport
  770. : ipv6_dirport);
  771. result = fascist_firewall_choose_address(&ipv4_ap, &ipv6_ap,
  772. bridge_client_prefer_ipv4,
  773. fw_connection, pref_only);
  774. if (result) {
  775. tor_addr_copy(&ap->addr, &result->addr);
  776. ap->port = result->port;
  777. return 1;
  778. } else {
  779. return 0;
  780. }
  781. }
  782. /** Like fascist_firewall_choose_address_base, but takes a host-order IPv4
  783. * address as the first parameter. */
  784. static int
  785. fascist_firewall_choose_address_ipv4h(uint32_t ipv4h_addr,
  786. uint16_t ipv4_orport,
  787. uint16_t ipv4_dirport,
  788. const tor_addr_t *ipv6_addr,
  789. uint16_t ipv6_orport,
  790. uint16_t ipv6_dirport,
  791. firewall_connection_t fw_connection,
  792. int pref_only,
  793. tor_addr_port_t* ap)
  794. {
  795. tor_addr_t ipv4_addr;
  796. tor_addr_from_ipv4h(&ipv4_addr, ipv4h_addr);
  797. return fascist_firewall_choose_address_base(&ipv4_addr, ipv4_orport,
  798. ipv4_dirport, ipv6_addr,
  799. ipv6_orport, ipv6_dirport,
  800. fw_connection, pref_only, ap);
  801. }
  802. #define IPV6_OR_LOOKUP(r, identity_digest, ipv6_or_ap) \
  803. STMT_BEGIN \
  804. if (!(r)->ipv6_orport || tor_addr_is_null(&(r)->ipv6_addr)) { \
  805. const node_t *node = node_get_by_id((identity_digest)); \
  806. if (node) { \
  807. node_get_pref_ipv6_orport(node, &(ipv6_or_ap)); \
  808. } else { \
  809. tor_addr_make_null(&(ipv6_or_ap).addr, AF_INET6); \
  810. (ipv6_or_ap).port = 0; \
  811. } \
  812. } else { \
  813. tor_addr_copy(&(ipv6_or_ap).addr, &(r)->ipv6_addr); \
  814. (ipv6_or_ap).port = (r)->ipv6_orport; \
  815. } \
  816. STMT_END
  817. /** Copy an address and port from <b>rs</b> into <b>ap</b> that we think our
  818. * firewall will let us connect to. Uses ipv4h_addr/ipv6_addr and
  819. * ipv4_orport/ipv6_orport/ReachableORAddresses or
  820. * ipv4_dirport/ipv6_dirport/ReachableDirAddresses based on IPv4/IPv6 and
  821. * <b>fw_connection</b>.
  822. * If pref_only, only choose preferred addresses. In either case, choose
  823. * a preferred address before an address that's not preferred.
  824. * If neither address is chosen, return 0, else return 1.
  825. * Consults the corresponding node if the addresses in rs are not valid. */
  826. int
  827. fascist_firewall_choose_address_rs(const routerstatus_t *rs,
  828. firewall_connection_t fw_connection,
  829. int pref_only, tor_addr_port_t* ap)
  830. {
  831. if (!rs) {
  832. return 0;
  833. }
  834. tor_assert(ap);
  835. /* Don't do the lookup if the IPv6 address/port in rs is OK.
  836. * If it's OK, assume the dir_port is also OK. */
  837. tor_addr_port_t ipv6_or_ap;
  838. IPV6_OR_LOOKUP(rs, rs->identity_digest, ipv6_or_ap);
  839. /* Assume IPv4 and IPv6 DirPorts are the same.
  840. * Assume the IPv6 OR and Dir addresses are the same. */
  841. return fascist_firewall_choose_address_ipv4h(rs->addr,
  842. rs->or_port,
  843. rs->dir_port,
  844. &ipv6_or_ap.addr,
  845. ipv6_or_ap.port,
  846. rs->dir_port,
  847. fw_connection,
  848. pref_only,
  849. ap);
  850. }
  851. /** Copy an address and port from <b>node</b> into <b>ap</b> that we think our
  852. * firewall will let us connect to. Uses ipv4h_addr/ipv6_addr and
  853. * ipv4_orport/ipv6_orport/ReachableORAddresses or
  854. * ipv4_dirport/ipv6_dirport/ReachableDirAddresses based on IPv4/IPv6 and
  855. * <b>fw_connection</b>.
  856. * If pref_only, only choose preferred addresses. In either case, choose
  857. * a preferred address before an address that's not preferred.
  858. * If neither address is chosen, return 0, else return 1. */
  859. int
  860. fascist_firewall_choose_address_node(const node_t *node,
  861. firewall_connection_t fw_connection,
  862. int pref_only, tor_addr_port_t *ap)
  863. {
  864. if (!node) {
  865. return 0;
  866. }
  867. node_assert_ok(node);
  868. tor_addr_port_t ipv4_or_ap;
  869. node_get_prim_orport(node, &ipv4_or_ap);
  870. tor_addr_port_t ipv4_dir_ap;
  871. node_get_prim_dirport(node, &ipv4_dir_ap);
  872. tor_addr_port_t ipv6_or_ap;
  873. node_get_pref_ipv6_orport(node, &ipv6_or_ap);
  874. tor_addr_port_t ipv6_dir_ap;
  875. node_get_pref_ipv6_dirport(node, &ipv6_dir_ap);
  876. /* Assume the IPv6 OR and Dir addresses are the same. */
  877. return fascist_firewall_choose_address_base(&ipv4_or_ap.addr,
  878. ipv4_or_ap.port,
  879. ipv4_dir_ap.port,
  880. &ipv6_or_ap.addr,
  881. ipv6_or_ap.port,
  882. ipv6_dir_ap.port,
  883. fw_connection,
  884. pref_only,
  885. ap);
  886. }
  887. /** Copy an address and port from <b>ds</b> into <b>ap</b> that we think our
  888. * firewall will let us connect to. Uses ipv4h_addr/ipv6_addr and
  889. * ipv4_orport/ipv6_orport/ReachableORAddresses or
  890. * ipv4_dirport/ipv6_dirport/ReachableDirAddresses based on IPv4/IPv6 and
  891. * <b>fw_connection</b>.
  892. * If pref_only, only choose preferred addresses. In either case, choose
  893. * a preferred address before an address that's not preferred.
  894. * If neither address is chosen, return 0, else return 1. */
  895. int
  896. fascist_firewall_choose_address_dir_server(const dir_server_t *ds,
  897. firewall_connection_t fw_connection,
  898. int pref_only, tor_addr_port_t *ap)
  899. {
  900. if (!ds) {
  901. return 0;
  902. }
  903. /* A dir_server_t always has a fake_status. As long as it has the same
  904. * addresses/ports in both fake_status and dir_server_t, this works fine.
  905. * (See #17867.)
  906. * This function relies on fascist_firewall_choose_address_rs looking up the
  907. * addresses from the node if it can, because that will get the latest info
  908. * for the relay. */
  909. return fascist_firewall_choose_address_rs(&ds->fake_status, fw_connection,
  910. pref_only, ap);
  911. }
  912. /** Return 1 if <b>addr</b> is permitted to connect to our dir port,
  913. * based on <b>dir_policy</b>. Else return 0.
  914. */
  915. int
  916. dir_policy_permits_address(const tor_addr_t *addr)
  917. {
  918. return addr_policy_permits_tor_addr(addr, 1, dir_policy);
  919. }
  920. /** Return 1 if <b>addr</b> is permitted to connect to our socks port,
  921. * based on <b>socks_policy</b>. Else return 0.
  922. */
  923. int
  924. socks_policy_permits_address(const tor_addr_t *addr)
  925. {
  926. return addr_policy_permits_tor_addr(addr, 1, socks_policy);
  927. }
  928. /** Return true iff the address <b>addr</b> is in a country listed in the
  929. * case-insensitive list of country codes <b>cc_list</b>. */
  930. static int
  931. addr_is_in_cc_list(uint32_t addr, const smartlist_t *cc_list)
  932. {
  933. country_t country;
  934. const char *name;
  935. tor_addr_t tar;
  936. if (!cc_list)
  937. return 0;
  938. /* XXXXipv6 */
  939. tor_addr_from_ipv4h(&tar, addr);
  940. country = geoip_get_country_by_addr(&tar);
  941. name = geoip_get_country_name(country);
  942. return smartlist_contains_string_case(cc_list, name);
  943. }
  944. /** Return 1 if <b>addr</b>:<b>port</b> is permitted to publish to our
  945. * directory, based on <b>authdir_reject_policy</b>. Else return 0.
  946. */
  947. int
  948. authdir_policy_permits_address(uint32_t addr, uint16_t port)
  949. {
  950. if (! addr_policy_permits_address(addr, port, authdir_reject_policy))
  951. return 0;
  952. return !addr_is_in_cc_list(addr, get_options()->AuthDirRejectCCs);
  953. }
  954. /** Return 1 if <b>addr</b>:<b>port</b> is considered valid in our
  955. * directory, based on <b>authdir_invalid_policy</b>. Else return 0.
  956. */
  957. int
  958. authdir_policy_valid_address(uint32_t addr, uint16_t port)
  959. {
  960. if (! addr_policy_permits_address(addr, port, authdir_invalid_policy))
  961. return 0;
  962. return !addr_is_in_cc_list(addr, get_options()->AuthDirInvalidCCs);
  963. }
  964. /** Return 1 if <b>addr</b>:<b>port</b> should be marked as a bad exit,
  965. * based on <b>authdir_badexit_policy</b>. Else return 0.
  966. */
  967. int
  968. authdir_policy_badexit_address(uint32_t addr, uint16_t port)
  969. {
  970. if (! addr_policy_permits_address(addr, port, authdir_badexit_policy))
  971. return 1;
  972. return addr_is_in_cc_list(addr, get_options()->AuthDirBadExitCCs);
  973. }
  974. #define REJECT(arg) \
  975. STMT_BEGIN *msg = tor_strdup(arg); goto err; STMT_END
  976. /** Config helper: If there's any problem with the policy configuration
  977. * options in <b>options</b>, return -1 and set <b>msg</b> to a newly
  978. * allocated description of the error. Else return 0. */
  979. int
  980. validate_addr_policies(const or_options_t *options, char **msg)
  981. {
  982. /* XXXX Maybe merge this into parse_policies_from_options, to make sure
  983. * that the two can't go out of sync. */
  984. smartlist_t *addr_policy=NULL;
  985. *msg = NULL;
  986. if (policies_parse_exit_policy_from_options(options,0,NULL,&addr_policy)) {
  987. REJECT("Error in ExitPolicy entry.");
  988. }
  989. static int warned_about_exitrelay = 0;
  990. const int exitrelay_setting_is_auto = options->ExitRelay == -1;
  991. const int policy_accepts_something =
  992. ! (policy_is_reject_star(addr_policy, AF_INET) &&
  993. policy_is_reject_star(addr_policy, AF_INET6));
  994. if (server_mode(options) &&
  995. ! warned_about_exitrelay &&
  996. exitrelay_setting_is_auto &&
  997. policy_accepts_something) {
  998. /* Policy accepts something */
  999. warned_about_exitrelay = 1;
  1000. log_warn(LD_CONFIG,
  1001. "Tor is running as an exit relay%s. If you did not want this "
  1002. "behavior, please set the ExitRelay option to 0. If you do "
  1003. "want to run an exit Relay, please set the ExitRelay option "
  1004. "to 1 to disable this warning, and for forward compatibility.",
  1005. options->ExitPolicy == NULL ?
  1006. " with the default exit policy" : "");
  1007. if (options->ExitPolicy == NULL) {
  1008. log_warn(LD_CONFIG,
  1009. "In a future version of Tor, ExitRelay 0 may become the "
  1010. "default when no ExitPolicy is given.");
  1011. }
  1012. }
  1013. /* The rest of these calls *append* to addr_policy. So don't actually
  1014. * use the results for anything other than checking if they parse! */
  1015. if (parse_addr_policy(options->DirPolicy, &addr_policy, -1))
  1016. REJECT("Error in DirPolicy entry.");
  1017. if (parse_addr_policy(options->SocksPolicy, &addr_policy, -1))
  1018. REJECT("Error in SocksPolicy entry.");
  1019. if (parse_addr_policy(options->AuthDirReject, &addr_policy,
  1020. ADDR_POLICY_REJECT))
  1021. REJECT("Error in AuthDirReject entry.");
  1022. if (parse_addr_policy(options->AuthDirInvalid, &addr_policy,
  1023. ADDR_POLICY_REJECT))
  1024. REJECT("Error in AuthDirInvalid entry.");
  1025. if (parse_addr_policy(options->AuthDirBadExit, &addr_policy,
  1026. ADDR_POLICY_REJECT))
  1027. REJECT("Error in AuthDirBadExit entry.");
  1028. if (parse_addr_policy(options->ReachableAddresses, &addr_policy,
  1029. ADDR_POLICY_ACCEPT))
  1030. REJECT("Error in ReachableAddresses entry.");
  1031. if (parse_addr_policy(options->ReachableORAddresses, &addr_policy,
  1032. ADDR_POLICY_ACCEPT))
  1033. REJECT("Error in ReachableORAddresses entry.");
  1034. if (parse_addr_policy(options->ReachableDirAddresses, &addr_policy,
  1035. ADDR_POLICY_ACCEPT))
  1036. REJECT("Error in ReachableDirAddresses entry.");
  1037. err:
  1038. addr_policy_list_free(addr_policy);
  1039. return *msg ? -1 : 0;
  1040. #undef REJECT
  1041. }
  1042. /** Parse <b>string</b> in the same way that the exit policy
  1043. * is parsed, and put the processed version in *<b>policy</b>.
  1044. * Ignore port specifiers.
  1045. */
  1046. static int
  1047. load_policy_from_option(config_line_t *config, const char *option_name,
  1048. smartlist_t **policy,
  1049. int assume_action)
  1050. {
  1051. int r;
  1052. int killed_any_ports = 0;
  1053. addr_policy_list_free(*policy);
  1054. *policy = NULL;
  1055. r = parse_addr_policy(config, policy, assume_action);
  1056. if (r < 0) {
  1057. return -1;
  1058. }
  1059. if (*policy) {
  1060. SMARTLIST_FOREACH_BEGIN(*policy, addr_policy_t *, n) {
  1061. /* ports aren't used in these. */
  1062. if (n->prt_min > 1 || n->prt_max != 65535) {
  1063. addr_policy_t newp, *c;
  1064. memcpy(&newp, n, sizeof(newp));
  1065. newp.prt_min = 1;
  1066. newp.prt_max = 65535;
  1067. newp.is_canonical = 0;
  1068. c = addr_policy_get_canonical_entry(&newp);
  1069. SMARTLIST_REPLACE_CURRENT(*policy, n, c);
  1070. addr_policy_free(n);
  1071. killed_any_ports = 1;
  1072. }
  1073. } SMARTLIST_FOREACH_END(n);
  1074. }
  1075. if (killed_any_ports) {
  1076. log_warn(LD_CONFIG, "Ignoring ports in %s option.", option_name);
  1077. }
  1078. return 0;
  1079. }
  1080. /** Set all policies based on <b>options</b>, which should have been validated
  1081. * first by validate_addr_policies. */
  1082. int
  1083. policies_parse_from_options(const or_options_t *options)
  1084. {
  1085. int ret = 0;
  1086. if (load_policy_from_option(options->SocksPolicy, "SocksPolicy",
  1087. &socks_policy, -1) < 0)
  1088. ret = -1;
  1089. if (load_policy_from_option(options->DirPolicy, "DirPolicy",
  1090. &dir_policy, -1) < 0)
  1091. ret = -1;
  1092. if (load_policy_from_option(options->AuthDirReject, "AuthDirReject",
  1093. &authdir_reject_policy, ADDR_POLICY_REJECT) < 0)
  1094. ret = -1;
  1095. if (load_policy_from_option(options->AuthDirInvalid, "AuthDirInvalid",
  1096. &authdir_invalid_policy, ADDR_POLICY_REJECT) < 0)
  1097. ret = -1;
  1098. if (load_policy_from_option(options->AuthDirBadExit, "AuthDirBadExit",
  1099. &authdir_badexit_policy, ADDR_POLICY_REJECT) < 0)
  1100. ret = -1;
  1101. if (parse_reachable_addresses() < 0)
  1102. ret = -1;
  1103. return ret;
  1104. }
  1105. /** Compare two provided address policy items, and return -1, 0, or 1
  1106. * if the first is less than, equal to, or greater than the second. */
  1107. static int
  1108. cmp_single_addr_policy(addr_policy_t *a, addr_policy_t *b)
  1109. {
  1110. int r;
  1111. if ((r=((int)a->policy_type - (int)b->policy_type)))
  1112. return r;
  1113. if ((r=((int)a->is_private - (int)b->is_private)))
  1114. return r;
  1115. /* refcnt and is_canonical are irrelevant to equality,
  1116. * they are hash table implementation details */
  1117. if ((r=tor_addr_compare(&a->addr, &b->addr, CMP_EXACT)))
  1118. return r;
  1119. if ((r=((int)a->maskbits - (int)b->maskbits)))
  1120. return r;
  1121. if ((r=((int)a->prt_min - (int)b->prt_min)))
  1122. return r;
  1123. if ((r=((int)a->prt_max - (int)b->prt_max)))
  1124. return r;
  1125. return 0;
  1126. }
  1127. /** Like cmp_single_addr_policy() above, but looks at the
  1128. * whole set of policies in each case. */
  1129. int
  1130. cmp_addr_policies(smartlist_t *a, smartlist_t *b)
  1131. {
  1132. int r, i;
  1133. int len_a = a ? smartlist_len(a) : 0;
  1134. int len_b = b ? smartlist_len(b) : 0;
  1135. for (i = 0; i < len_a && i < len_b; ++i) {
  1136. if ((r = cmp_single_addr_policy(smartlist_get(a, i), smartlist_get(b, i))))
  1137. return r;
  1138. }
  1139. if (i == len_a && i == len_b)
  1140. return 0;
  1141. if (i < len_a)
  1142. return -1;
  1143. else
  1144. return 1;
  1145. }
  1146. /** Node in hashtable used to store address policy entries. */
  1147. typedef struct policy_map_ent_t {
  1148. HT_ENTRY(policy_map_ent_t) node;
  1149. addr_policy_t *policy;
  1150. } policy_map_ent_t;
  1151. /* DOCDOC policy_root */
  1152. static HT_HEAD(policy_map, policy_map_ent_t) policy_root = HT_INITIALIZER();
  1153. /** Return true iff a and b are equal. */
  1154. static inline int
  1155. policy_eq(policy_map_ent_t *a, policy_map_ent_t *b)
  1156. {
  1157. return cmp_single_addr_policy(a->policy, b->policy) == 0;
  1158. }
  1159. /** Return a hashcode for <b>ent</b> */
  1160. static unsigned int
  1161. policy_hash(const policy_map_ent_t *ent)
  1162. {
  1163. const addr_policy_t *a = ent->policy;
  1164. addr_policy_t aa;
  1165. memset(&aa, 0, sizeof(aa));
  1166. aa.prt_min = a->prt_min;
  1167. aa.prt_max = a->prt_max;
  1168. aa.maskbits = a->maskbits;
  1169. aa.policy_type = a->policy_type;
  1170. aa.is_private = a->is_private;
  1171. if (a->is_private) {
  1172. aa.is_private = 1;
  1173. } else {
  1174. tor_addr_copy_tight(&aa.addr, &a->addr);
  1175. }
  1176. return (unsigned) siphash24g(&aa, sizeof(aa));
  1177. }
  1178. HT_PROTOTYPE(policy_map, policy_map_ent_t, node, policy_hash,
  1179. policy_eq)
  1180. HT_GENERATE2(policy_map, policy_map_ent_t, node, policy_hash,
  1181. policy_eq, 0.6, tor_reallocarray_, tor_free_)
  1182. /** Given a pointer to an addr_policy_t, return a copy of the pointer to the
  1183. * "canonical" copy of that addr_policy_t; the canonical copy is a single
  1184. * reference-counted object. */
  1185. addr_policy_t *
  1186. addr_policy_get_canonical_entry(addr_policy_t *e)
  1187. {
  1188. policy_map_ent_t search, *found;
  1189. if (e->is_canonical)
  1190. return e;
  1191. search.policy = e;
  1192. found = HT_FIND(policy_map, &policy_root, &search);
  1193. if (!found) {
  1194. found = tor_malloc_zero(sizeof(policy_map_ent_t));
  1195. found->policy = tor_memdup(e, sizeof(addr_policy_t));
  1196. found->policy->is_canonical = 1;
  1197. found->policy->refcnt = 0;
  1198. HT_INSERT(policy_map, &policy_root, found);
  1199. }
  1200. tor_assert(!cmp_single_addr_policy(found->policy, e));
  1201. ++found->policy->refcnt;
  1202. return found->policy;
  1203. }
  1204. /** Helper for compare_tor_addr_to_addr_policy. Implements the case where
  1205. * addr and port are both known. */
  1206. static addr_policy_result_t
  1207. compare_known_tor_addr_to_addr_policy(const tor_addr_t *addr, uint16_t port,
  1208. const smartlist_t *policy)
  1209. {
  1210. /* We know the address and port, and we know the policy, so we can just
  1211. * compute an exact match. */
  1212. SMARTLIST_FOREACH_BEGIN(policy, addr_policy_t *, tmpe) {
  1213. if (tmpe->addr.family == AF_UNSPEC) {
  1214. log_warn(LD_BUG, "Policy contains an AF_UNSPEC address, which only "
  1215. "matches other AF_UNSPEC addresses.");
  1216. }
  1217. /* Address is known */
  1218. if (!tor_addr_compare_masked(addr, &tmpe->addr, tmpe->maskbits,
  1219. CMP_EXACT)) {
  1220. if (port >= tmpe->prt_min && port <= tmpe->prt_max) {
  1221. /* Exact match for the policy */
  1222. return tmpe->policy_type == ADDR_POLICY_ACCEPT ?
  1223. ADDR_POLICY_ACCEPTED : ADDR_POLICY_REJECTED;
  1224. }
  1225. }
  1226. } SMARTLIST_FOREACH_END(tmpe);
  1227. /* accept all by default. */
  1228. return ADDR_POLICY_ACCEPTED;
  1229. }
  1230. /** Helper for compare_tor_addr_to_addr_policy. Implements the case where
  1231. * addr is known but port is not. */
  1232. static addr_policy_result_t
  1233. compare_known_tor_addr_to_addr_policy_noport(const tor_addr_t *addr,
  1234. const smartlist_t *policy)
  1235. {
  1236. /* We look to see if there's a definite match. If so, we return that
  1237. match's value, unless there's an intervening possible match that says
  1238. something different. */
  1239. int maybe_accept = 0, maybe_reject = 0;
  1240. SMARTLIST_FOREACH_BEGIN(policy, addr_policy_t *, tmpe) {
  1241. if (tmpe->addr.family == AF_UNSPEC) {
  1242. log_warn(LD_BUG, "Policy contains an AF_UNSPEC address, which only "
  1243. "matches other AF_UNSPEC addresses.");
  1244. }
  1245. if (!tor_addr_compare_masked(addr, &tmpe->addr, tmpe->maskbits,
  1246. CMP_EXACT)) {
  1247. if (tmpe->prt_min <= 1 && tmpe->prt_max >= 65535) {
  1248. /* Definitely matches, since it covers all ports. */
  1249. if (tmpe->policy_type == ADDR_POLICY_ACCEPT) {
  1250. /* If we already hit a clause that might trigger a 'reject', than we
  1251. * can't be sure of this certain 'accept'.*/
  1252. return maybe_reject ? ADDR_POLICY_PROBABLY_ACCEPTED :
  1253. ADDR_POLICY_ACCEPTED;
  1254. } else {
  1255. return maybe_accept ? ADDR_POLICY_PROBABLY_REJECTED :
  1256. ADDR_POLICY_REJECTED;
  1257. }
  1258. } else {
  1259. /* Might match. */
  1260. if (tmpe->policy_type == ADDR_POLICY_REJECT)
  1261. maybe_reject = 1;
  1262. else
  1263. maybe_accept = 1;
  1264. }
  1265. }
  1266. } SMARTLIST_FOREACH_END(tmpe);
  1267. /* accept all by default. */
  1268. return maybe_reject ? ADDR_POLICY_PROBABLY_ACCEPTED : ADDR_POLICY_ACCEPTED;
  1269. }
  1270. /** Helper for compare_tor_addr_to_addr_policy. Implements the case where
  1271. * port is known but address is not. */
  1272. static addr_policy_result_t
  1273. compare_unknown_tor_addr_to_addr_policy(uint16_t port,
  1274. const smartlist_t *policy)
  1275. {
  1276. /* We look to see if there's a definite match. If so, we return that
  1277. match's value, unless there's an intervening possible match that says
  1278. something different. */
  1279. int maybe_accept = 0, maybe_reject = 0;
  1280. SMARTLIST_FOREACH_BEGIN(policy, addr_policy_t *, tmpe) {
  1281. if (tmpe->addr.family == AF_UNSPEC) {
  1282. log_warn(LD_BUG, "Policy contains an AF_UNSPEC address, which only "
  1283. "matches other AF_UNSPEC addresses.");
  1284. }
  1285. if (tmpe->prt_min <= port && port <= tmpe->prt_max) {
  1286. if (tmpe->maskbits == 0) {
  1287. /* Definitely matches, since it covers all addresses. */
  1288. if (tmpe->policy_type == ADDR_POLICY_ACCEPT) {
  1289. /* If we already hit a clause that might trigger a 'reject', than we
  1290. * can't be sure of this certain 'accept'.*/
  1291. return maybe_reject ? ADDR_POLICY_PROBABLY_ACCEPTED :
  1292. ADDR_POLICY_ACCEPTED;
  1293. } else {
  1294. return maybe_accept ? ADDR_POLICY_PROBABLY_REJECTED :
  1295. ADDR_POLICY_REJECTED;
  1296. }
  1297. } else {
  1298. /* Might match. */
  1299. if (tmpe->policy_type == ADDR_POLICY_REJECT)
  1300. maybe_reject = 1;
  1301. else
  1302. maybe_accept = 1;
  1303. }
  1304. }
  1305. } SMARTLIST_FOREACH_END(tmpe);
  1306. /* accept all by default. */
  1307. return maybe_reject ? ADDR_POLICY_PROBABLY_ACCEPTED : ADDR_POLICY_ACCEPTED;
  1308. }
  1309. /** Decide whether a given addr:port is definitely accepted,
  1310. * definitely rejected, probably accepted, or probably rejected by a
  1311. * given policy. If <b>addr</b> is 0, we don't know the IP of the
  1312. * target address. If <b>port</b> is 0, we don't know the port of the
  1313. * target address. (At least one of <b>addr</b> and <b>port</b> must be
  1314. * provided. If you want to know whether a policy would definitely reject
  1315. * an unknown address:port, use policy_is_reject_star().)
  1316. *
  1317. * We could do better by assuming that some ranges never match typical
  1318. * addresses (127.0.0.1, and so on). But we'll try this for now.
  1319. */
  1320. MOCK_IMPL(addr_policy_result_t,
  1321. compare_tor_addr_to_addr_policy,(const tor_addr_t *addr, uint16_t port,
  1322. const smartlist_t *policy))
  1323. {
  1324. if (!policy) {
  1325. /* no policy? accept all. */
  1326. return ADDR_POLICY_ACCEPTED;
  1327. } else if (addr == NULL || tor_addr_is_null(addr)) {
  1328. if (port == 0) {
  1329. log_info(LD_BUG, "Rejecting null address with 0 port (family %d)",
  1330. addr ? tor_addr_family(addr) : -1);
  1331. return ADDR_POLICY_REJECTED;
  1332. }
  1333. return compare_unknown_tor_addr_to_addr_policy(port, policy);
  1334. } else if (port == 0) {
  1335. return compare_known_tor_addr_to_addr_policy_noport(addr, policy);
  1336. } else {
  1337. return compare_known_tor_addr_to_addr_policy(addr, port, policy);
  1338. }
  1339. }
  1340. /** Return true iff the address policy <b>a</b> covers every case that
  1341. * would be covered by <b>b</b>, so that a,b is redundant. */
  1342. static int
  1343. addr_policy_covers(addr_policy_t *a, addr_policy_t *b)
  1344. {
  1345. if (tor_addr_family(&a->addr) != tor_addr_family(&b->addr)) {
  1346. /* You can't cover a different family. */
  1347. return 0;
  1348. }
  1349. /* We can ignore accept/reject, since "accept *:80, reject *:80" reduces
  1350. * to "accept *:80". */
  1351. if (a->maskbits > b->maskbits) {
  1352. /* a has more fixed bits than b; it can't possibly cover b. */
  1353. return 0;
  1354. }
  1355. if (tor_addr_compare_masked(&a->addr, &b->addr, a->maskbits, CMP_EXACT)) {
  1356. /* There's a fixed bit in a that's set differently in b. */
  1357. return 0;
  1358. }
  1359. return (a->prt_min <= b->prt_min && a->prt_max >= b->prt_max);
  1360. }
  1361. /** Return true iff the address policies <b>a</b> and <b>b</b> intersect,
  1362. * that is, there exists an address/port that is covered by <b>a</b> that
  1363. * is also covered by <b>b</b>.
  1364. */
  1365. static int
  1366. addr_policy_intersects(addr_policy_t *a, addr_policy_t *b)
  1367. {
  1368. maskbits_t minbits;
  1369. /* All the bits we care about are those that are set in both
  1370. * netmasks. If they are equal in a and b's networkaddresses
  1371. * then the networks intersect. If there is a difference,
  1372. * then they do not. */
  1373. if (a->maskbits < b->maskbits)
  1374. minbits = a->maskbits;
  1375. else
  1376. minbits = b->maskbits;
  1377. if (tor_addr_compare_masked(&a->addr, &b->addr, minbits, CMP_EXACT))
  1378. return 0;
  1379. if (a->prt_max < b->prt_min || b->prt_max < a->prt_min)
  1380. return 0;
  1381. return 1;
  1382. }
  1383. /** Add the exit policy described by <b>more</b> to <b>policy</b>.
  1384. */
  1385. STATIC void
  1386. append_exit_policy_string(smartlist_t **policy, const char *more)
  1387. {
  1388. config_line_t tmp;
  1389. tmp.key = NULL;
  1390. tmp.value = (char*) more;
  1391. tmp.next = NULL;
  1392. if (parse_addr_policy(&tmp, policy, -1)<0) {
  1393. log_warn(LD_BUG, "Unable to parse internally generated policy %s",more);
  1394. }
  1395. }
  1396. /** Add "reject <b>addr</b>:*" to <b>dest</b>, creating the list as needed. */
  1397. void
  1398. addr_policy_append_reject_addr(smartlist_t **dest, const tor_addr_t *addr)
  1399. {
  1400. tor_assert(dest);
  1401. tor_assert(addr);
  1402. addr_policy_t p, *add;
  1403. memset(&p, 0, sizeof(p));
  1404. p.policy_type = ADDR_POLICY_REJECT;
  1405. p.maskbits = tor_addr_family(addr) == AF_INET6 ? 128 : 32;
  1406. tor_addr_copy(&p.addr, addr);
  1407. p.prt_min = 1;
  1408. p.prt_max = 65535;
  1409. add = addr_policy_get_canonical_entry(&p);
  1410. if (!*dest)
  1411. *dest = smartlist_new();
  1412. smartlist_add(*dest, add);
  1413. log_debug(LD_CONFIG, "Adding a reject ExitPolicy 'reject %s:*'",
  1414. fmt_addr(addr));
  1415. }
  1416. /* Is addr public for the purposes of rejection? */
  1417. static int
  1418. tor_addr_is_public_for_reject(const tor_addr_t *addr)
  1419. {
  1420. return (!tor_addr_is_null(addr) && !tor_addr_is_internal(addr, 0)
  1421. && !tor_addr_is_multicast(addr));
  1422. }
  1423. /* Add "reject <b>addr</b>:*" to <b>dest</b>, creating the list as needed.
  1424. * Filter the address, only adding an IPv4 reject rule if ipv4_rules
  1425. * is true, and similarly for ipv6_rules. Check each address returns true for
  1426. * tor_addr_is_public_for_reject before adding it.
  1427. */
  1428. static void
  1429. addr_policy_append_reject_addr_filter(smartlist_t **dest,
  1430. const tor_addr_t *addr,
  1431. int ipv4_rules,
  1432. int ipv6_rules)
  1433. {
  1434. tor_assert(dest);
  1435. tor_assert(addr);
  1436. /* Only reject IP addresses which are public */
  1437. if (tor_addr_is_public_for_reject(addr)) {
  1438. /* Reject IPv4 addresses and IPv6 addresses based on the filters */
  1439. int is_ipv4 = tor_addr_is_v4(addr);
  1440. if ((is_ipv4 && ipv4_rules) || (!is_ipv4 && ipv6_rules)) {
  1441. addr_policy_append_reject_addr(dest, addr);
  1442. }
  1443. }
  1444. }
  1445. /** Add "reject addr:*" to <b>dest</b>, for each addr in addrs, creating the
  1446. * list as needed. */
  1447. void
  1448. addr_policy_append_reject_addr_list(smartlist_t **dest,
  1449. const smartlist_t *addrs)
  1450. {
  1451. tor_assert(dest);
  1452. tor_assert(addrs);
  1453. SMARTLIST_FOREACH_BEGIN(addrs, tor_addr_t *, addr) {
  1454. addr_policy_append_reject_addr(dest, addr);
  1455. } SMARTLIST_FOREACH_END(addr);
  1456. }
  1457. /** Add "reject addr:*" to <b>dest</b>, for each addr in addrs, creating the
  1458. * list as needed. Filter using */
  1459. static void
  1460. addr_policy_append_reject_addr_list_filter(smartlist_t **dest,
  1461. const smartlist_t *addrs,
  1462. int ipv4_rules,
  1463. int ipv6_rules)
  1464. {
  1465. tor_assert(dest);
  1466. tor_assert(addrs);
  1467. SMARTLIST_FOREACH_BEGIN(addrs, tor_addr_t *, addr) {
  1468. addr_policy_append_reject_addr_filter(dest, addr, ipv4_rules, ipv6_rules);
  1469. } SMARTLIST_FOREACH_END(addr);
  1470. }
  1471. /** Detect and excise "dead code" from the policy *<b>dest</b>. */
  1472. static void
  1473. exit_policy_remove_redundancies(smartlist_t *dest)
  1474. {
  1475. addr_policy_t *ap, *tmp;
  1476. int i, j;
  1477. /* Step one: kill every ipv4 thing after *4:*, every IPv6 thing after *6:*
  1478. */
  1479. {
  1480. int kill_v4=0, kill_v6=0;
  1481. for (i = 0; i < smartlist_len(dest); ++i) {
  1482. sa_family_t family;
  1483. ap = smartlist_get(dest, i);
  1484. family = tor_addr_family(&ap->addr);
  1485. if ((family == AF_INET && kill_v4) ||
  1486. (family == AF_INET6 && kill_v6)) {
  1487. smartlist_del_keeporder(dest, i--);
  1488. addr_policy_free(ap);
  1489. continue;
  1490. }
  1491. if (ap->maskbits == 0 && ap->prt_min <= 1 && ap->prt_max >= 65535) {
  1492. /* This is a catch-all line -- later lines are unreachable. */
  1493. if (family == AF_INET) {
  1494. kill_v4 = 1;
  1495. } else if (family == AF_INET6) {
  1496. kill_v6 = 1;
  1497. }
  1498. }
  1499. }
  1500. }
  1501. /* Step two: for every entry, see if there's a redundant entry
  1502. * later on, and remove it. */
  1503. for (i = 0; i < smartlist_len(dest)-1; ++i) {
  1504. ap = smartlist_get(dest, i);
  1505. for (j = i+1; j < smartlist_len(dest); ++j) {
  1506. tmp = smartlist_get(dest, j);
  1507. tor_assert(j > i);
  1508. if (addr_policy_covers(ap, tmp)) {
  1509. char p1[POLICY_BUF_LEN], p2[POLICY_BUF_LEN];
  1510. policy_write_item(p1, sizeof(p1), tmp, 0);
  1511. policy_write_item(p2, sizeof(p2), ap, 0);
  1512. log_debug(LD_CONFIG, "Removing exit policy %s (%d). It is made "
  1513. "redundant by %s (%d).", p1, j, p2, i);
  1514. smartlist_del_keeporder(dest, j--);
  1515. addr_policy_free(tmp);
  1516. }
  1517. }
  1518. }
  1519. /* Step three: for every entry A, see if there's an entry B making this one
  1520. * redundant later on. This is the case if A and B are of the same type
  1521. * (accept/reject), A is a subset of B, and there is no other entry of
  1522. * different type in between those two that intersects with A.
  1523. *
  1524. * Anybody want to double-check the logic here? XXX
  1525. */
  1526. for (i = 0; i < smartlist_len(dest)-1; ++i) {
  1527. ap = smartlist_get(dest, i);
  1528. for (j = i+1; j < smartlist_len(dest); ++j) {
  1529. // tor_assert(j > i); // j starts out at i+1; j only increases; i only
  1530. // // decreases.
  1531. tmp = smartlist_get(dest, j);
  1532. if (ap->policy_type != tmp->policy_type) {
  1533. if (addr_policy_intersects(ap, tmp))
  1534. break;
  1535. } else { /* policy_types are equal. */
  1536. if (addr_policy_covers(tmp, ap)) {
  1537. char p1[POLICY_BUF_LEN], p2[POLICY_BUF_LEN];
  1538. policy_write_item(p1, sizeof(p1), ap, 0);
  1539. policy_write_item(p2, sizeof(p2), tmp, 0);
  1540. log_debug(LD_CONFIG, "Removing exit policy %s. It is already "
  1541. "covered by %s.", p1, p2);
  1542. smartlist_del_keeporder(dest, i--);
  1543. addr_policy_free(ap);
  1544. break;
  1545. }
  1546. }
  1547. }
  1548. }
  1549. }
  1550. /** Reject private helper for policies_parse_exit_policy_internal: rejects
  1551. * publicly routable addresses on this exit relay.
  1552. *
  1553. * Add reject entries to the linked list *<b>dest</b>:
  1554. * <ul>
  1555. * <li>if configured_addresses is non-NULL, add entries that reject each
  1556. * tor_addr_t in the list as a destination.
  1557. * <li>if reject_interface_addresses is true, add entries that reject each
  1558. * public IPv4 and IPv6 address of each interface on this machine.
  1559. * <li>if reject_configured_port_addresses is true, add entries that reject
  1560. * each IPv4 and IPv6 address configured for a port.
  1561. * </ul>
  1562. *
  1563. * IPv6 entries are only added if ipv6_exit is true. (All IPv6 addresses are
  1564. * already blocked by policies_parse_exit_policy_internal if ipv6_exit is
  1565. * false.)
  1566. *
  1567. * The list in <b>dest</b> is created as needed.
  1568. */
  1569. void
  1570. policies_parse_exit_policy_reject_private(
  1571. smartlist_t **dest,
  1572. int ipv6_exit,
  1573. const smartlist_t *configured_addresses,
  1574. int reject_interface_addresses,
  1575. int reject_configured_port_addresses)
  1576. {
  1577. tor_assert(dest);
  1578. /* Reject configured addresses, if they are from public netblocks. */
  1579. if (configured_addresses) {
  1580. addr_policy_append_reject_addr_list_filter(dest, configured_addresses,
  1581. 1, ipv6_exit);
  1582. }
  1583. /* Reject configured port addresses, if they are from public netblocks. */
  1584. if (reject_configured_port_addresses) {
  1585. const smartlist_t *port_addrs = get_configured_ports();
  1586. SMARTLIST_FOREACH_BEGIN(port_addrs, port_cfg_t *, port) {
  1587. /* Only reject port IP addresses, not port unix sockets */
  1588. if (!port->is_unix_addr) {
  1589. addr_policy_append_reject_addr_filter(dest, &port->addr, 1, ipv6_exit);
  1590. }
  1591. } SMARTLIST_FOREACH_END(port);
  1592. }
  1593. /* Reject local addresses from public netblocks on any interface. */
  1594. if (reject_interface_addresses) {
  1595. smartlist_t *public_addresses = NULL;
  1596. /* Reject public IPv4 addresses on any interface */
  1597. public_addresses = get_interface_address6_list(LOG_INFO, AF_INET, 0);
  1598. addr_policy_append_reject_addr_list_filter(dest, public_addresses, 1, 0);
  1599. free_interface_address6_list(public_addresses);
  1600. /* Don't look for IPv6 addresses if we're configured as IPv4-only */
  1601. if (ipv6_exit) {
  1602. /* Reject public IPv6 addresses on any interface */
  1603. public_addresses = get_interface_address6_list(LOG_INFO, AF_INET6, 0);
  1604. addr_policy_append_reject_addr_list_filter(dest, public_addresses, 0, 1);
  1605. free_interface_address6_list(public_addresses);
  1606. }
  1607. }
  1608. /* If addresses were added multiple times, remove all but one of them. */
  1609. if (*dest) {
  1610. exit_policy_remove_redundancies(*dest);
  1611. }
  1612. }
  1613. /**
  1614. * Iterate through <b>policy</b> looking for redundant entries. Log a
  1615. * warning message with the first redundant entry, if any is found.
  1616. */
  1617. static void
  1618. policies_log_first_redundant_entry(const smartlist_t *policy)
  1619. {
  1620. int found_final_effective_entry = 0;
  1621. int first_redundant_entry = 0;
  1622. tor_assert(policy);
  1623. SMARTLIST_FOREACH_BEGIN(policy, const addr_policy_t *, p) {
  1624. sa_family_t family;
  1625. int found_ipv4_wildcard = 0, found_ipv6_wildcard = 0;
  1626. const int i = p_sl_idx;
  1627. /* Look for accept/reject *[4|6|]:* entires */
  1628. if (p->prt_min <= 1 && p->prt_max == 65535 && p->maskbits == 0) {
  1629. family = tor_addr_family(&p->addr);
  1630. /* accept/reject *:* may have already been expanded into
  1631. * accept/reject *4:*,accept/reject *6:*
  1632. * But handle both forms.
  1633. */
  1634. if (family == AF_INET || family == AF_UNSPEC) {
  1635. found_ipv4_wildcard = 1;
  1636. }
  1637. if (family == AF_INET6 || family == AF_UNSPEC) {
  1638. found_ipv6_wildcard = 1;
  1639. }
  1640. }
  1641. /* We also find accept *4:*,reject *6:* ; and
  1642. * accept *4:*,<other policies>,accept *6:* ; and similar.
  1643. * That's ok, because they make any subsequent entries redundant. */
  1644. if (found_ipv4_wildcard && found_ipv6_wildcard) {
  1645. found_final_effective_entry = 1;
  1646. /* if we're not on the final entry in the list */
  1647. if (i < smartlist_len(policy) - 1) {
  1648. first_redundant_entry = i + 1;
  1649. }
  1650. break;
  1651. }
  1652. } SMARTLIST_FOREACH_END(p);
  1653. /* Work out if there are redundant trailing entries in the policy list */
  1654. if (found_final_effective_entry && first_redundant_entry > 0) {
  1655. const addr_policy_t *p;
  1656. /* Longest possible policy is
  1657. * "accept6 ffff:ffff:..255/128:10000-65535",
  1658. * which contains a max-length IPv6 address, plus 24 characters. */
  1659. char line[TOR_ADDR_BUF_LEN + 32];
  1660. tor_assert(first_redundant_entry < smartlist_len(policy));
  1661. p = smartlist_get(policy, first_redundant_entry);
  1662. /* since we've already parsed the policy into an addr_policy_t struct,
  1663. * we might not log exactly what the user typed in */
  1664. policy_write_item(line, TOR_ADDR_BUF_LEN + 32, p, 0);
  1665. log_warn(LD_DIR, "Exit policy '%s' and all following policies are "
  1666. "redundant, as it follows accept/reject *:* rules for both "
  1667. "IPv4 and IPv6. They will be removed from the exit policy. (Use "
  1668. "accept/reject *:* as the last entry in any exit policy.)",
  1669. line);
  1670. }
  1671. }
  1672. #define DEFAULT_EXIT_POLICY \
  1673. "reject *:25,reject *:119,reject *:135-139,reject *:445," \
  1674. "reject *:563,reject *:1214,reject *:4661-4666," \
  1675. "reject *:6346-6429,reject *:6699,reject *:6881-6999,accept *:*"
  1676. /** Parse the exit policy <b>cfg</b> into the linked list *<b>dest</b>.
  1677. *
  1678. * If <b>ipv6_exit</b> is false, prepend "reject *6:*" to the policy.
  1679. *
  1680. * If <b>rejectprivate</b> is true:
  1681. * - prepend "reject private:*" to the policy.
  1682. * - prepend entries that reject publicly routable addresses on this exit
  1683. * relay by calling policies_parse_exit_policy_reject_private
  1684. *
  1685. * If cfg doesn't end in an absolute accept or reject and if
  1686. * <b>add_default_policy</b> is true, add the default exit
  1687. * policy afterwards.
  1688. *
  1689. * Return -1 if we can't parse cfg, else return 0.
  1690. *
  1691. * This function is used to parse the exit policy from our torrc. For
  1692. * the functions used to parse the exit policy from a router descriptor,
  1693. * see router_add_exit_policy.
  1694. */
  1695. static int
  1696. policies_parse_exit_policy_internal(config_line_t *cfg,
  1697. smartlist_t **dest,
  1698. int ipv6_exit,
  1699. int rejectprivate,
  1700. const smartlist_t *configured_addresses,
  1701. int reject_interface_addresses,
  1702. int reject_configured_port_addresses,
  1703. int add_default_policy)
  1704. {
  1705. if (!ipv6_exit) {
  1706. append_exit_policy_string(dest, "reject *6:*");
  1707. }
  1708. if (rejectprivate) {
  1709. /* Reject IPv4 and IPv6 reserved private netblocks */
  1710. append_exit_policy_string(dest, "reject private:*");
  1711. /* Reject IPv4 and IPv6 publicly routable addresses on this exit relay */
  1712. policies_parse_exit_policy_reject_private(
  1713. dest, ipv6_exit,
  1714. configured_addresses,
  1715. reject_interface_addresses,
  1716. reject_configured_port_addresses);
  1717. }
  1718. if (parse_addr_policy(cfg, dest, -1))
  1719. return -1;
  1720. /* Before we add the default policy and final rejects, check to see if
  1721. * there are any lines after accept *:* or reject *:*. These lines have no
  1722. * effect, and are most likely an error. */
  1723. policies_log_first_redundant_entry(*dest);
  1724. if (add_default_policy) {
  1725. append_exit_policy_string(dest, DEFAULT_EXIT_POLICY);
  1726. } else {
  1727. append_exit_policy_string(dest, "reject *4:*");
  1728. append_exit_policy_string(dest, "reject *6:*");
  1729. }
  1730. exit_policy_remove_redundancies(*dest);
  1731. return 0;
  1732. }
  1733. /** Parse exit policy in <b>cfg</b> into <b>dest</b> smartlist.
  1734. *
  1735. * Prepend an entry that rejects all IPv6 destinations unless
  1736. * <b>EXIT_POLICY_IPV6_ENABLED</b> bit is set in <b>options</b> bitmask.
  1737. *
  1738. * If <b>EXIT_POLICY_REJECT_PRIVATE</b> bit is set in <b>options</b>:
  1739. * - prepend an entry that rejects all destinations in all netblocks
  1740. * reserved for private use.
  1741. * - prepend entries that reject publicly routable addresses on this exit
  1742. * relay by calling policies_parse_exit_policy_internal
  1743. *
  1744. * If <b>EXIT_POLICY_ADD_DEFAULT</b> bit is set in <b>options</b>, append
  1745. * default exit policy entries to <b>result</b> smartlist.
  1746. */
  1747. int
  1748. policies_parse_exit_policy(config_line_t *cfg, smartlist_t **dest,
  1749. exit_policy_parser_cfg_t options,
  1750. const smartlist_t *configured_addresses)
  1751. {
  1752. int ipv6_enabled = (options & EXIT_POLICY_IPV6_ENABLED) ? 1 : 0;
  1753. int reject_private = (options & EXIT_POLICY_REJECT_PRIVATE) ? 1 : 0;
  1754. int add_default = (options & EXIT_POLICY_ADD_DEFAULT) ? 1 : 0;
  1755. return policies_parse_exit_policy_internal(cfg,dest,ipv6_enabled,
  1756. reject_private,
  1757. configured_addresses,
  1758. reject_private,
  1759. reject_private,
  1760. add_default);
  1761. }
  1762. /** Helper function that adds a copy of addr to a smartlist as long as it is
  1763. * non-NULL and not tor_addr_is_null().
  1764. *
  1765. * The caller is responsible for freeing all the tor_addr_t* in the smartlist.
  1766. */
  1767. static void
  1768. policies_copy_addr_to_smartlist(smartlist_t *addr_list, const tor_addr_t *addr)
  1769. {
  1770. if (addr && !tor_addr_is_null(addr)) {
  1771. tor_addr_t *addr_copy = tor_malloc(sizeof(tor_addr_t));
  1772. tor_addr_copy(addr_copy, addr);
  1773. smartlist_add(addr_list, addr_copy);
  1774. }
  1775. }
  1776. /** Helper function that adds ipv4h_addr to a smartlist as a tor_addr_t *,
  1777. * as long as it is not tor_addr_is_null(), by converting it to a tor_addr_t
  1778. * and passing it to policies_add_addr_to_smartlist.
  1779. *
  1780. * The caller is responsible for freeing all the tor_addr_t* in the smartlist.
  1781. */
  1782. static void
  1783. policies_copy_ipv4h_to_smartlist(smartlist_t *addr_list, uint32_t ipv4h_addr)
  1784. {
  1785. if (ipv4h_addr) {
  1786. tor_addr_t ipv4_tor_addr;
  1787. tor_addr_from_ipv4h(&ipv4_tor_addr, ipv4h_addr);
  1788. policies_copy_addr_to_smartlist(addr_list, &ipv4_tor_addr);
  1789. }
  1790. }
  1791. /** Helper function that adds copies of
  1792. * or_options->OutboundBindAddressIPv[4|6]_ to a smartlist as tor_addr_t *, as
  1793. * long as or_options is non-NULL, and the addresses are not
  1794. * tor_addr_is_null(), by passing them to policies_add_addr_to_smartlist.
  1795. *
  1796. * The caller is responsible for freeing all the tor_addr_t* in the smartlist.
  1797. */
  1798. static void
  1799. policies_copy_outbound_addresses_to_smartlist(smartlist_t *addr_list,
  1800. const or_options_t *or_options)
  1801. {
  1802. if (or_options) {
  1803. policies_copy_addr_to_smartlist(addr_list,
  1804. &or_options->OutboundBindAddressIPv4_);
  1805. policies_copy_addr_to_smartlist(addr_list,
  1806. &or_options->OutboundBindAddressIPv6_);
  1807. }
  1808. }
  1809. /** Parse <b>ExitPolicy</b> member of <b>or_options</b> into <b>result</b>
  1810. * smartlist.
  1811. * If <b>or_options->IPv6Exit</b> is false, prepend an entry that
  1812. * rejects all IPv6 destinations.
  1813. *
  1814. * If <b>or_options->ExitPolicyRejectPrivate</b> is true:
  1815. * - prepend an entry that rejects all destinations in all netblocks reserved
  1816. * for private use.
  1817. * - if local_address is non-zero, treat it as a host-order IPv4 address, and
  1818. * add it to the list of configured addresses.
  1819. * - if ipv6_local_address is non-NULL, and not the null tor_addr_t, add it
  1820. * to the list of configured addresses.
  1821. * - if or_options->OutboundBindAddressIPv4_ is not the null tor_addr_t, add
  1822. * it to the list of configured addresses.
  1823. * - if or_options->OutboundBindAddressIPv6_ is not the null tor_addr_t, add
  1824. * it to the list of configured addresses.
  1825. *
  1826. * If <b>or_options->BridgeRelay</b> is false, append entries of default
  1827. * Tor exit policy into <b>result</b> smartlist.
  1828. *
  1829. * If or_options->ExitRelay is false, then make our exit policy into
  1830. * "reject *:*" regardless.
  1831. */
  1832. int
  1833. policies_parse_exit_policy_from_options(const or_options_t *or_options,
  1834. uint32_t local_address,
  1835. const tor_addr_t *ipv6_local_address,
  1836. smartlist_t **result)
  1837. {
  1838. exit_policy_parser_cfg_t parser_cfg = 0;
  1839. smartlist_t *configured_addresses = NULL;
  1840. int rv = 0;
  1841. /* Short-circuit for non-exit relays */
  1842. if (or_options->ExitRelay == 0) {
  1843. append_exit_policy_string(result, "reject *4:*");
  1844. append_exit_policy_string(result, "reject *6:*");
  1845. return 0;
  1846. }
  1847. configured_addresses = smartlist_new();
  1848. /* Configure the parser */
  1849. if (or_options->IPv6Exit) {
  1850. parser_cfg |= EXIT_POLICY_IPV6_ENABLED;
  1851. }
  1852. if (or_options->ExitPolicyRejectPrivate) {
  1853. parser_cfg |= EXIT_POLICY_REJECT_PRIVATE;
  1854. }
  1855. if (!or_options->BridgeRelay) {
  1856. parser_cfg |= EXIT_POLICY_ADD_DEFAULT;
  1857. }
  1858. /* Copy the configured addresses into the tor_addr_t* list */
  1859. policies_copy_ipv4h_to_smartlist(configured_addresses, local_address);
  1860. policies_copy_addr_to_smartlist(configured_addresses, ipv6_local_address);
  1861. policies_copy_outbound_addresses_to_smartlist(configured_addresses,
  1862. or_options);
  1863. rv = policies_parse_exit_policy(or_options->ExitPolicy, result, parser_cfg,
  1864. configured_addresses);
  1865. SMARTLIST_FOREACH(configured_addresses, tor_addr_t *, a, tor_free(a));
  1866. smartlist_free(configured_addresses);
  1867. return rv;
  1868. }
  1869. /** Add "reject *:*" to the end of the policy in *<b>dest</b>, allocating
  1870. * *<b>dest</b> as needed. */
  1871. void
  1872. policies_exit_policy_append_reject_star(smartlist_t **dest)
  1873. {
  1874. append_exit_policy_string(dest, "reject *4:*");
  1875. append_exit_policy_string(dest, "reject *6:*");
  1876. }
  1877. /** Replace the exit policy of <b>node</b> with reject *:* */
  1878. void
  1879. policies_set_node_exitpolicy_to_reject_all(node_t *node)
  1880. {
  1881. node->rejects_all = 1;
  1882. }
  1883. /** Return 1 if there is at least one /8 subnet in <b>policy</b> that
  1884. * allows exiting to <b>port</b>. Otherwise, return 0. */
  1885. static int
  1886. exit_policy_is_general_exit_helper(smartlist_t *policy, int port)
  1887. {
  1888. uint32_t mask, ip, i;
  1889. /* Is this /8 rejected (1), or undecided (0)? */
  1890. char subnet_status[256];
  1891. memset(subnet_status, 0, sizeof(subnet_status));
  1892. SMARTLIST_FOREACH_BEGIN(policy, addr_policy_t *, p) {
  1893. if (tor_addr_family(&p->addr) != AF_INET)
  1894. continue; /* IPv4 only for now */
  1895. if (p->prt_min > port || p->prt_max < port)
  1896. continue; /* Doesn't cover our port. */
  1897. mask = 0;
  1898. tor_assert(p->maskbits <= 32);
  1899. if (p->maskbits)
  1900. mask = UINT32_MAX<<(32-p->maskbits);
  1901. ip = tor_addr_to_ipv4h(&p->addr);
  1902. /* Calculate the first and last subnet that this exit policy touches
  1903. * and set it as loop boundaries. */
  1904. for (i = ((mask & ip)>>24); i <= (~((mask & ip) ^ mask)>>24); ++i) {
  1905. tor_addr_t addr;
  1906. if (subnet_status[i] != 0)
  1907. continue; /* We already reject some part of this /8 */
  1908. tor_addr_from_ipv4h(&addr, i<<24);
  1909. if (tor_addr_is_internal(&addr, 0))
  1910. continue; /* Local or non-routable addresses */
  1911. if (p->policy_type == ADDR_POLICY_ACCEPT) {
  1912. if (p->maskbits > 8)
  1913. continue; /* Narrower than a /8. */
  1914. /* We found an allowed subnet of at least size /8. Done
  1915. * for this port! */
  1916. return 1;
  1917. } else if (p->policy_type == ADDR_POLICY_REJECT) {
  1918. subnet_status[i] = 1;
  1919. }
  1920. }
  1921. } SMARTLIST_FOREACH_END(p);
  1922. return 0;
  1923. }
  1924. /** Return true iff <b>ri</b> is "useful as an exit node", meaning
  1925. * it allows exit to at least one /8 address space for at least
  1926. * two of ports 80, 443, and 6667. */
  1927. int
  1928. exit_policy_is_general_exit(smartlist_t *policy)
  1929. {
  1930. static const int ports[] = { 80, 443, 6667 };
  1931. int n_allowed = 0;
  1932. int i;
  1933. if (!policy) /*XXXX disallow NULL policies? */
  1934. return 0;
  1935. for (i = 0; i < 3; ++i) {
  1936. n_allowed += exit_policy_is_general_exit_helper(policy, ports[i]);
  1937. }
  1938. return n_allowed >= 2;
  1939. }
  1940. /** Return false if <b>policy</b> might permit access to some addr:port;
  1941. * otherwise if we are certain it rejects everything, return true. */
  1942. int
  1943. policy_is_reject_star(const smartlist_t *policy, sa_family_t family)
  1944. {
  1945. if (!policy) /*XXXX disallow NULL policies? */
  1946. return 1;
  1947. SMARTLIST_FOREACH_BEGIN(policy, addr_policy_t *, p) {
  1948. if (p->policy_type == ADDR_POLICY_ACCEPT &&
  1949. (tor_addr_family(&p->addr) == family ||
  1950. tor_addr_family(&p->addr) == AF_UNSPEC)) {
  1951. return 0;
  1952. } else if (p->policy_type == ADDR_POLICY_REJECT &&
  1953. p->prt_min <= 1 && p->prt_max == 65535 &&
  1954. p->maskbits == 0 &&
  1955. (tor_addr_family(&p->addr) == family ||
  1956. tor_addr_family(&p->addr) == AF_UNSPEC)) {
  1957. return 1;
  1958. }
  1959. } SMARTLIST_FOREACH_END(p);
  1960. return 1;
  1961. }
  1962. /** Write a single address policy to the buf_len byte buffer at buf. Return
  1963. * the number of characters written, or -1 on failure. */
  1964. int
  1965. policy_write_item(char *buf, size_t buflen, const addr_policy_t *policy,
  1966. int format_for_desc)
  1967. {
  1968. size_t written = 0;
  1969. char addrbuf[TOR_ADDR_BUF_LEN];
  1970. const char *addrpart;
  1971. int result;
  1972. const int is_accept = policy->policy_type == ADDR_POLICY_ACCEPT;
  1973. const sa_family_t family = tor_addr_family(&policy->addr);
  1974. const int is_ip6 = (family == AF_INET6);
  1975. tor_addr_to_str(addrbuf, &policy->addr, sizeof(addrbuf), 1);
  1976. /* write accept/reject 1.2.3.4 */
  1977. if (policy->is_private) {
  1978. addrpart = "private";
  1979. } else if (policy->maskbits == 0) {
  1980. if (format_for_desc)
  1981. addrpart = "*";
  1982. else if (family == AF_INET6)
  1983. addrpart = "*6";
  1984. else if (family == AF_INET)
  1985. addrpart = "*4";
  1986. else
  1987. addrpart = "*";
  1988. } else {
  1989. addrpart = addrbuf;
  1990. }
  1991. result = tor_snprintf(buf, buflen, "%s%s %s",
  1992. is_accept ? "accept" : "reject",
  1993. (is_ip6&&format_for_desc)?"6":"",
  1994. addrpart);
  1995. if (result < 0)
  1996. return -1;
  1997. written += strlen(buf);
  1998. /* If the maskbits is 32 (IPv4) or 128 (IPv6) we don't need to give it. If
  1999. the mask is 0, we already wrote "*". */
  2000. if (policy->maskbits < (is_ip6?128:32) && policy->maskbits > 0) {
  2001. if (tor_snprintf(buf+written, buflen-written, "/%d", policy->maskbits)<0)
  2002. return -1;
  2003. written += strlen(buf+written);
  2004. }
  2005. if (policy->prt_min <= 1 && policy->prt_max == 65535) {
  2006. /* There is no port set; write ":*" */
  2007. if (written+4 > buflen)
  2008. return -1;
  2009. strlcat(buf+written, ":*", buflen-written);
  2010. written += 2;
  2011. } else if (policy->prt_min == policy->prt_max) {
  2012. /* There is only one port; write ":80". */
  2013. result = tor_snprintf(buf+written, buflen-written, ":%d", policy->prt_min);
  2014. if (result<0)
  2015. return -1;
  2016. written += result;
  2017. } else {
  2018. /* There is a range of ports; write ":79-80". */
  2019. result = tor_snprintf(buf+written, buflen-written, ":%d-%d",
  2020. policy->prt_min, policy->prt_max);
  2021. if (result<0)
  2022. return -1;
  2023. written += result;
  2024. }
  2025. if (written < buflen)
  2026. buf[written] = '\0';
  2027. else
  2028. return -1;
  2029. return (int)written;
  2030. }
  2031. /** Create a new exit policy summary, initially only with a single
  2032. * port 1-64k item */
  2033. /* XXXX This entire thing will do most stuff in O(N^2), or worse. Use an
  2034. * RB-tree if that turns out to matter. */
  2035. static smartlist_t *
  2036. policy_summary_create(void)
  2037. {
  2038. smartlist_t *summary;
  2039. policy_summary_item_t* item;
  2040. item = tor_malloc_zero(sizeof(policy_summary_item_t));
  2041. item->prt_min = 1;
  2042. item->prt_max = 65535;
  2043. item->reject_count = 0;
  2044. item->accepted = 0;
  2045. summary = smartlist_new();
  2046. smartlist_add(summary, item);
  2047. return summary;
  2048. }
  2049. /** Split the summary item in <b>item</b> at the port <b>new_starts</b>.
  2050. * The current item is changed to end at new-starts - 1, the new item
  2051. * copies reject_count and accepted from the old item,
  2052. * starts at new_starts and ends at the port where the original item
  2053. * previously ended.
  2054. */
  2055. static policy_summary_item_t*
  2056. policy_summary_item_split(policy_summary_item_t* old, uint16_t new_starts)
  2057. {
  2058. policy_summary_item_t* new;
  2059. new = tor_malloc_zero(sizeof(policy_summary_item_t));
  2060. new->prt_min = new_starts;
  2061. new->prt_max = old->prt_max;
  2062. new->reject_count = old->reject_count;
  2063. new->accepted = old->accepted;
  2064. old->prt_max = new_starts-1;
  2065. tor_assert(old->prt_min <= old->prt_max);
  2066. tor_assert(new->prt_min <= new->prt_max);
  2067. return new;
  2068. }
  2069. /* XXXX Nick says I'm going to hell for this. If he feels charitably towards
  2070. * my immortal soul, he can clean it up himself. */
  2071. #define AT(x) ((policy_summary_item_t*)smartlist_get(summary, x))
  2072. #define REJECT_CUTOFF_COUNT (1<<25)
  2073. /** Split an exit policy summary so that prt_min and prt_max
  2074. * fall at exactly the start and end of an item respectively.
  2075. */
  2076. static int
  2077. policy_summary_split(smartlist_t *summary,
  2078. uint16_t prt_min, uint16_t prt_max)
  2079. {
  2080. int start_at_index;
  2081. int i = 0;
  2082. while (AT(i)->prt_max < prt_min)
  2083. i++;
  2084. if (AT(i)->prt_min != prt_min) {
  2085. policy_summary_item_t* new_item;
  2086. new_item = policy_summary_item_split(AT(i), prt_min);
  2087. smartlist_insert(summary, i+1, new_item);
  2088. i++;
  2089. }
  2090. start_at_index = i;
  2091. while (AT(i)->prt_max < prt_max)
  2092. i++;
  2093. if (AT(i)->prt_max != prt_max) {
  2094. policy_summary_item_t* new_item;
  2095. new_item = policy_summary_item_split(AT(i), prt_max+1);
  2096. smartlist_insert(summary, i+1, new_item);
  2097. }
  2098. return start_at_index;
  2099. }
  2100. /** Mark port ranges as accepted if they are below the reject_count */
  2101. static void
  2102. policy_summary_accept(smartlist_t *summary,
  2103. uint16_t prt_min, uint16_t prt_max)
  2104. {
  2105. int i = policy_summary_split(summary, prt_min, prt_max);
  2106. while (i < smartlist_len(summary) &&
  2107. AT(i)->prt_max <= prt_max) {
  2108. if (!AT(i)->accepted &&
  2109. AT(i)->reject_count <= REJECT_CUTOFF_COUNT)
  2110. AT(i)->accepted = 1;
  2111. i++;
  2112. }
  2113. tor_assert(i < smartlist_len(summary) || prt_max==65535);
  2114. }
  2115. /** Count the number of addresses in a network with prefixlen maskbits
  2116. * against the given portrange. */
  2117. static void
  2118. policy_summary_reject(smartlist_t *summary,
  2119. maskbits_t maskbits,
  2120. uint16_t prt_min, uint16_t prt_max)
  2121. {
  2122. int i = policy_summary_split(summary, prt_min, prt_max);
  2123. /* XXX: ipv4 specific */
  2124. uint64_t count = (U64_LITERAL(1) << (32-maskbits));
  2125. while (i < smartlist_len(summary) &&
  2126. AT(i)->prt_max <= prt_max) {
  2127. AT(i)->reject_count += count;
  2128. i++;
  2129. }
  2130. tor_assert(i < smartlist_len(summary) || prt_max==65535);
  2131. }
  2132. /** Add a single exit policy item to our summary:
  2133. * If it is an accept ignore it unless it is for all IP addresses
  2134. * ("*"), i.e. it's prefixlen/maskbits is 0, else call
  2135. * policy_summary_accept().
  2136. * If it's a reject ignore it if it is about one of the private
  2137. * networks, else call policy_summary_reject().
  2138. */
  2139. static void
  2140. policy_summary_add_item(smartlist_t *summary, addr_policy_t *p)
  2141. {
  2142. if (p->policy_type == ADDR_POLICY_ACCEPT) {
  2143. if (p->maskbits == 0) {
  2144. policy_summary_accept(summary, p->prt_min, p->prt_max);
  2145. }
  2146. } else if (p->policy_type == ADDR_POLICY_REJECT) {
  2147. int is_private = 0;
  2148. int i;
  2149. for (i = 0; private_nets[i]; ++i) {
  2150. tor_addr_t addr;
  2151. maskbits_t maskbits;
  2152. if (tor_addr_parse_mask_ports(private_nets[i], 0, &addr,
  2153. &maskbits, NULL, NULL)<0) {
  2154. tor_assert(0);
  2155. }
  2156. if (tor_addr_compare(&p->addr, &addr, CMP_EXACT) == 0 &&
  2157. p->maskbits == maskbits) {
  2158. is_private = 1;
  2159. break;
  2160. }
  2161. }
  2162. if (!is_private) {
  2163. policy_summary_reject(summary, p->maskbits, p->prt_min, p->prt_max);
  2164. }
  2165. } else
  2166. tor_assert(0);
  2167. }
  2168. /** Create a string representing a summary for an exit policy.
  2169. * The summary will either be an "accept" plus a comma-separated list of port
  2170. * ranges or a "reject" plus port-ranges, depending on which is shorter.
  2171. *
  2172. * If no exits are allowed at all then "reject 1-65535" is returned. If no
  2173. * ports are blocked instead of "reject " we return "accept 1-65535". (These
  2174. * are an exception to the shorter-representation-wins rule).
  2175. */
  2176. char *
  2177. policy_summarize(smartlist_t *policy, sa_family_t family)
  2178. {
  2179. smartlist_t *summary = policy_summary_create();
  2180. smartlist_t *accepts, *rejects;
  2181. int i, last, start_prt;
  2182. size_t accepts_len, rejects_len;
  2183. char *accepts_str = NULL, *rejects_str = NULL, *shorter_str, *result;
  2184. const char *prefix;
  2185. tor_assert(policy);
  2186. /* Create the summary list */
  2187. SMARTLIST_FOREACH_BEGIN(policy, addr_policy_t *, p) {
  2188. sa_family_t f = tor_addr_family(&p->addr);
  2189. if (f != AF_INET && f != AF_INET6) {
  2190. log_warn(LD_BUG, "Weird family when summarizing address policy");
  2191. }
  2192. if (f != family)
  2193. continue;
  2194. /* XXXX-ipv6 More family work is needed */
  2195. policy_summary_add_item(summary, p);
  2196. } SMARTLIST_FOREACH_END(p);
  2197. /* Now create two lists of strings, one for accepted and one
  2198. * for rejected ports. We take care to merge ranges so that
  2199. * we avoid getting stuff like "1-4,5-9,10", instead we want
  2200. * "1-10"
  2201. */
  2202. i = 0;
  2203. start_prt = 1;
  2204. accepts = smartlist_new();
  2205. rejects = smartlist_new();
  2206. while (1) {
  2207. last = i == smartlist_len(summary)-1;
  2208. if (last ||
  2209. AT(i)->accepted != AT(i+1)->accepted) {
  2210. char buf[POLICY_BUF_LEN];
  2211. if (start_prt == AT(i)->prt_max)
  2212. tor_snprintf(buf, sizeof(buf), "%d", start_prt);
  2213. else
  2214. tor_snprintf(buf, sizeof(buf), "%d-%d", start_prt, AT(i)->prt_max);
  2215. if (AT(i)->accepted)
  2216. smartlist_add(accepts, tor_strdup(buf));
  2217. else
  2218. smartlist_add(rejects, tor_strdup(buf));
  2219. if (last)
  2220. break;
  2221. start_prt = AT(i+1)->prt_min;
  2222. };
  2223. i++;
  2224. };
  2225. /* Figure out which of the two stringlists will be shorter and use
  2226. * that to build the result
  2227. */
  2228. if (smartlist_len(accepts) == 0) { /* no exits at all */
  2229. result = tor_strdup("reject 1-65535");
  2230. goto cleanup;
  2231. }
  2232. if (smartlist_len(rejects) == 0) { /* no rejects at all */
  2233. result = tor_strdup("accept 1-65535");
  2234. goto cleanup;
  2235. }
  2236. accepts_str = smartlist_join_strings(accepts, ",", 0, &accepts_len);
  2237. rejects_str = smartlist_join_strings(rejects, ",", 0, &rejects_len);
  2238. if (rejects_len > MAX_EXITPOLICY_SUMMARY_LEN-strlen("reject")-1 &&
  2239. accepts_len > MAX_EXITPOLICY_SUMMARY_LEN-strlen("accept")-1) {
  2240. char *c;
  2241. shorter_str = accepts_str;
  2242. prefix = "accept";
  2243. c = shorter_str + (MAX_EXITPOLICY_SUMMARY_LEN-strlen(prefix)-1);
  2244. while (*c != ',' && c >= shorter_str)
  2245. c--;
  2246. tor_assert(c >= shorter_str);
  2247. tor_assert(*c == ',');
  2248. *c = '\0';
  2249. } else if (rejects_len < accepts_len) {
  2250. shorter_str = rejects_str;
  2251. prefix = "reject";
  2252. } else {
  2253. shorter_str = accepts_str;
  2254. prefix = "accept";
  2255. }
  2256. tor_asprintf(&result, "%s %s", prefix, shorter_str);
  2257. cleanup:
  2258. /* cleanup */
  2259. SMARTLIST_FOREACH(summary, policy_summary_item_t *, s, tor_free(s));
  2260. smartlist_free(summary);
  2261. tor_free(accepts_str);
  2262. SMARTLIST_FOREACH(accepts, char *, s, tor_free(s));
  2263. smartlist_free(accepts);
  2264. tor_free(rejects_str);
  2265. SMARTLIST_FOREACH(rejects, char *, s, tor_free(s));
  2266. smartlist_free(rejects);
  2267. return result;
  2268. }
  2269. /** Convert a summarized policy string into a short_policy_t. Return NULL
  2270. * if the string is not well-formed. */
  2271. short_policy_t *
  2272. parse_short_policy(const char *summary)
  2273. {
  2274. const char *orig_summary = summary;
  2275. short_policy_t *result;
  2276. int is_accept;
  2277. int n_entries;
  2278. short_policy_entry_t entries[MAX_EXITPOLICY_SUMMARY_LEN]; /* overkill */
  2279. const char *next;
  2280. if (!strcmpstart(summary, "accept ")) {
  2281. is_accept = 1;
  2282. summary += strlen("accept ");
  2283. } else if (!strcmpstart(summary, "reject ")) {
  2284. is_accept = 0;
  2285. summary += strlen("reject ");
  2286. } else {
  2287. log_fn(LOG_PROTOCOL_WARN, LD_DIR, "Unrecognized policy summary keyword");
  2288. return NULL;
  2289. }
  2290. n_entries = 0;
  2291. for ( ; *summary; summary = next) {
  2292. const char *comma = strchr(summary, ',');
  2293. unsigned low, high;
  2294. char dummy;
  2295. char ent_buf[32];
  2296. size_t len;
  2297. next = comma ? comma+1 : strchr(summary, '\0');
  2298. len = comma ? (size_t)(comma - summary) : strlen(summary);
  2299. if (n_entries == MAX_EXITPOLICY_SUMMARY_LEN) {
  2300. log_fn(LOG_PROTOCOL_WARN, LD_DIR, "Impossibly long policy summary %s",
  2301. escaped(orig_summary));
  2302. return NULL;
  2303. }
  2304. if (! TOR_ISDIGIT(*summary) || len > (sizeof(ent_buf)-1)) {
  2305. /* unrecognized entry format. skip it. */
  2306. continue;
  2307. }
  2308. if (len < 1) {
  2309. /* empty; skip it. */
  2310. /* XXX This happens to be unreachable, since if len==0, then *summary is
  2311. * ',' or '\0', and the TOR_ISDIGIT test above would have failed. */
  2312. continue;
  2313. }
  2314. memcpy(ent_buf, summary, len);
  2315. ent_buf[len] = '\0';
  2316. if (tor_sscanf(ent_buf, "%u-%u%c", &low, &high, &dummy) == 2) {
  2317. if (low<1 || low>65535 || high<1 || high>65535 || low>high) {
  2318. log_fn(LOG_PROTOCOL_WARN, LD_DIR,
  2319. "Found bad entry in policy summary %s", escaped(orig_summary));
  2320. return NULL;
  2321. }
  2322. } else if (tor_sscanf(ent_buf, "%u%c", &low, &dummy) == 1) {
  2323. if (low<1 || low>65535) {
  2324. log_fn(LOG_PROTOCOL_WARN, LD_DIR,
  2325. "Found bad entry in policy summary %s", escaped(orig_summary));
  2326. return NULL;
  2327. }
  2328. high = low;
  2329. } else {
  2330. log_fn(LOG_PROTOCOL_WARN, LD_DIR,"Found bad entry in policy summary %s",
  2331. escaped(orig_summary));
  2332. return NULL;
  2333. }
  2334. entries[n_entries].min_port = low;
  2335. entries[n_entries].max_port = high;
  2336. n_entries++;
  2337. }
  2338. if (n_entries == 0) {
  2339. log_fn(LOG_PROTOCOL_WARN, LD_DIR,
  2340. "Found no port-range entries in summary %s", escaped(orig_summary));
  2341. return NULL;
  2342. }
  2343. {
  2344. size_t size = STRUCT_OFFSET(short_policy_t, entries) +
  2345. sizeof(short_policy_entry_t)*(n_entries);
  2346. result = tor_malloc_zero(size);
  2347. tor_assert( (char*)&result->entries[n_entries-1] < ((char*)result)+size);
  2348. }
  2349. result->is_accept = is_accept;
  2350. result->n_entries = n_entries;
  2351. memcpy(result->entries, entries, sizeof(short_policy_entry_t)*n_entries);
  2352. return result;
  2353. }
  2354. /** Write <b>policy</b> back out into a string. Used only for unit tests
  2355. * currently. */
  2356. char *
  2357. write_short_policy(const short_policy_t *policy)
  2358. {
  2359. int i;
  2360. char *answer;
  2361. smartlist_t *sl = smartlist_new();
  2362. smartlist_add_asprintf(sl, "%s", policy->is_accept ? "accept " : "reject ");
  2363. for (i=0; i < policy->n_entries; i++) {
  2364. const short_policy_entry_t *e = &policy->entries[i];
  2365. if (e->min_port == e->max_port) {
  2366. smartlist_add_asprintf(sl, "%d", e->min_port);
  2367. } else {
  2368. smartlist_add_asprintf(sl, "%d-%d", e->min_port, e->max_port);
  2369. }
  2370. if (i < policy->n_entries-1)
  2371. smartlist_add(sl, tor_strdup(","));
  2372. }
  2373. answer = smartlist_join_strings(sl, "", 0, NULL);
  2374. SMARTLIST_FOREACH(sl, char *, a, tor_free(a));
  2375. smartlist_free(sl);
  2376. return answer;
  2377. }
  2378. /** Release all storage held in <b>policy</b>. */
  2379. void
  2380. short_policy_free(short_policy_t *policy)
  2381. {
  2382. tor_free(policy);
  2383. }
  2384. /** See whether the <b>addr</b>:<b>port</b> address is likely to be accepted
  2385. * or rejected by the summarized policy <b>policy</b>. Return values are as
  2386. * for compare_tor_addr_to_addr_policy. Unlike the regular addr_policy
  2387. * functions, requires the <b>port</b> be specified. */
  2388. addr_policy_result_t
  2389. compare_tor_addr_to_short_policy(const tor_addr_t *addr, uint16_t port,
  2390. const short_policy_t *policy)
  2391. {
  2392. int i;
  2393. int found_match = 0;
  2394. int accept;
  2395. tor_assert(port != 0);
  2396. if (addr && tor_addr_is_null(addr))
  2397. addr = NULL; /* Unspec means 'no address at all,' in this context. */
  2398. if (addr && get_options()->ClientRejectInternalAddresses &&
  2399. (tor_addr_is_internal(addr, 0) || tor_addr_is_loopback(addr)))
  2400. return ADDR_POLICY_REJECTED;
  2401. for (i=0; i < policy->n_entries; ++i) {
  2402. const short_policy_entry_t *e = &policy->entries[i];
  2403. if (e->min_port <= port && port <= e->max_port) {
  2404. found_match = 1;
  2405. break;
  2406. }
  2407. }
  2408. if (found_match)
  2409. accept = policy->is_accept;
  2410. else
  2411. accept = ! policy->is_accept;
  2412. /* ???? are these right? -NM */
  2413. /* We should be sure not to return ADDR_POLICY_ACCEPTED in the accept
  2414. * case here, because it would cause clients to believe that the node
  2415. * allows exit enclaving. Trying it anyway would open up a cool attack
  2416. * where the node refuses due to exitpolicy, the client reacts in
  2417. * surprise by rewriting the node's exitpolicy to reject *:*, and then
  2418. * an adversary targets users by causing them to attempt such connections
  2419. * to 98% of the exits.
  2420. *
  2421. * Once microdescriptors can handle addresses in special cases (e.g. if
  2422. * we ever solve ticket 1774), we can provide certainty here. -RD */
  2423. if (accept)
  2424. return ADDR_POLICY_PROBABLY_ACCEPTED;
  2425. else
  2426. return ADDR_POLICY_REJECTED;
  2427. }
  2428. /** Return true iff <b>policy</b> seems reject all ports */
  2429. int
  2430. short_policy_is_reject_star(const short_policy_t *policy)
  2431. {
  2432. /* This doesn't need to be as much on the lookout as policy_is_reject_star,
  2433. * since policy summaries are from the consensus or from consensus
  2434. * microdescs.
  2435. */
  2436. tor_assert(policy);
  2437. /* Check for an exact match of "reject 1-65535". */
  2438. return (policy->is_accept == 0 && policy->n_entries == 1 &&
  2439. policy->entries[0].min_port == 1 &&
  2440. policy->entries[0].max_port == 65535);
  2441. }
  2442. /** Decide whether addr:port is probably or definitely accepted or rejected by
  2443. * <b>node</b>. See compare_tor_addr_to_addr_policy for details on addr/port
  2444. * interpretation. */
  2445. addr_policy_result_t
  2446. compare_tor_addr_to_node_policy(const tor_addr_t *addr, uint16_t port,
  2447. const node_t *node)
  2448. {
  2449. if (node->rejects_all)
  2450. return ADDR_POLICY_REJECTED;
  2451. if (addr && tor_addr_family(addr) == AF_INET6) {
  2452. const short_policy_t *p = NULL;
  2453. if (node->ri)
  2454. p = node->ri->ipv6_exit_policy;
  2455. else if (node->md)
  2456. p = node->md->ipv6_exit_policy;
  2457. if (p)
  2458. return compare_tor_addr_to_short_policy(addr, port, p);
  2459. else
  2460. return ADDR_POLICY_REJECTED;
  2461. }
  2462. if (node->ri) {
  2463. return compare_tor_addr_to_addr_policy(addr, port, node->ri->exit_policy);
  2464. } else if (node->md) {
  2465. if (node->md->exit_policy == NULL)
  2466. return ADDR_POLICY_REJECTED;
  2467. else
  2468. return compare_tor_addr_to_short_policy(addr, port,
  2469. node->md->exit_policy);
  2470. } else {
  2471. return ADDR_POLICY_PROBABLY_REJECTED;
  2472. }
  2473. }
  2474. /**
  2475. * Given <b>policy_list</b>, a list of addr_policy_t, produce a string
  2476. * representation of the list.
  2477. * If <b>include_ipv4</b> is true, include IPv4 entries.
  2478. * If <b>include_ipv6</b> is true, include IPv6 entries.
  2479. */
  2480. char *
  2481. policy_dump_to_string(const smartlist_t *policy_list,
  2482. int include_ipv4,
  2483. int include_ipv6)
  2484. {
  2485. smartlist_t *policy_string_list;
  2486. char *policy_string = NULL;
  2487. policy_string_list = smartlist_new();
  2488. SMARTLIST_FOREACH_BEGIN(policy_list, addr_policy_t *, tmpe) {
  2489. char *pbuf;
  2490. int bytes_written_to_pbuf;
  2491. if ((tor_addr_family(&tmpe->addr) == AF_INET6) && (!include_ipv6)) {
  2492. continue; /* Don't include IPv6 parts of address policy */
  2493. }
  2494. if ((tor_addr_family(&tmpe->addr) == AF_INET) && (!include_ipv4)) {
  2495. continue; /* Don't include IPv4 parts of address policy */
  2496. }
  2497. pbuf = tor_malloc(POLICY_BUF_LEN);
  2498. bytes_written_to_pbuf = policy_write_item(pbuf,POLICY_BUF_LEN, tmpe, 1);
  2499. if (bytes_written_to_pbuf < 0) {
  2500. log_warn(LD_BUG, "policy_dump_to_string ran out of room!");
  2501. tor_free(pbuf);
  2502. goto done;
  2503. }
  2504. smartlist_add(policy_string_list,pbuf);
  2505. } SMARTLIST_FOREACH_END(tmpe);
  2506. policy_string = smartlist_join_strings(policy_string_list, "\n", 0, NULL);
  2507. done:
  2508. SMARTLIST_FOREACH(policy_string_list, char *, str, tor_free(str));
  2509. smartlist_free(policy_string_list);
  2510. return policy_string;
  2511. }
  2512. /** Implementation for GETINFO control command: knows the answer for questions
  2513. * about "exit-policy/..." */
  2514. int
  2515. getinfo_helper_policies(control_connection_t *conn,
  2516. const char *question, char **answer,
  2517. const char **errmsg)
  2518. {
  2519. (void) conn;
  2520. (void) errmsg;
  2521. if (!strcmp(question, "exit-policy/default")) {
  2522. *answer = tor_strdup(DEFAULT_EXIT_POLICY);
  2523. } else if (!strcmp(question, "exit-policy/reject-private/default")) {
  2524. smartlist_t *private_policy_strings;
  2525. const char **priv = private_nets;
  2526. private_policy_strings = smartlist_new();
  2527. while (*priv != NULL) {
  2528. /* IPv6 addresses are in "[]" and contain ":",
  2529. * IPv4 addresses are not in "[]" and contain "." */
  2530. smartlist_add_asprintf(private_policy_strings, "reject %s:*", *priv);
  2531. priv++;
  2532. }
  2533. *answer = smartlist_join_strings(private_policy_strings,
  2534. ",", 0, NULL);
  2535. SMARTLIST_FOREACH(private_policy_strings, char *, str, tor_free(str));
  2536. smartlist_free(private_policy_strings);
  2537. } else if (!strcmp(question, "exit-policy/reject-private/relay")) {
  2538. const or_options_t *options = get_options();
  2539. const routerinfo_t *me = router_get_my_routerinfo();
  2540. if (!me) {
  2541. *errmsg = "router_get_my_routerinfo returned NULL";
  2542. return -1;
  2543. }
  2544. if (!options->ExitPolicyRejectPrivate) {
  2545. *answer = tor_strdup("");
  2546. return 0;
  2547. }
  2548. smartlist_t *private_policy_list = smartlist_new();
  2549. smartlist_t *configured_addresses = smartlist_new();
  2550. /* Copy the configured addresses into the tor_addr_t* list */
  2551. policies_copy_ipv4h_to_smartlist(configured_addresses, me->addr);
  2552. policies_copy_addr_to_smartlist(configured_addresses, &me->ipv6_addr);
  2553. policies_copy_outbound_addresses_to_smartlist(configured_addresses,
  2554. options);
  2555. policies_parse_exit_policy_reject_private(
  2556. &private_policy_list,
  2557. options->IPv6Exit,
  2558. configured_addresses,
  2559. 1, 1);
  2560. *answer = policy_dump_to_string(private_policy_list, 1, 1);
  2561. addr_policy_list_free(private_policy_list);
  2562. SMARTLIST_FOREACH(configured_addresses, tor_addr_t *, a, tor_free(a));
  2563. smartlist_free(configured_addresses);
  2564. } else if (!strcmpstart(question, "exit-policy/")) {
  2565. const routerinfo_t *me = router_get_my_routerinfo();
  2566. int include_ipv4 = 0;
  2567. int include_ipv6 = 0;
  2568. if (!strcmp(question, "exit-policy/ipv4")) {
  2569. include_ipv4 = 1;
  2570. } else if (!strcmp(question, "exit-policy/ipv6")) {
  2571. include_ipv6 = 1;
  2572. } else if (!strcmp(question, "exit-policy/full")) {
  2573. include_ipv4 = include_ipv6 = 1;
  2574. } else {
  2575. return 0; /* No such key. */
  2576. }
  2577. if (!me) {
  2578. *errmsg = "router_get_my_routerinfo returned NULL";
  2579. return -1;
  2580. }
  2581. *answer = router_dump_exit_policy_to_string(me,include_ipv4,include_ipv6);
  2582. }
  2583. return 0;
  2584. }
  2585. /** Release all storage held by <b>p</b>. */
  2586. void
  2587. addr_policy_list_free(smartlist_t *lst)
  2588. {
  2589. if (!lst)
  2590. return;
  2591. SMARTLIST_FOREACH(lst, addr_policy_t *, policy, addr_policy_free(policy));
  2592. smartlist_free(lst);
  2593. }
  2594. /** Release all storage held by <b>p</b>. */
  2595. void
  2596. addr_policy_free(addr_policy_t *p)
  2597. {
  2598. if (!p)
  2599. return;
  2600. if (--p->refcnt <= 0) {
  2601. if (p->is_canonical) {
  2602. policy_map_ent_t search, *found;
  2603. search.policy = p;
  2604. found = HT_REMOVE(policy_map, &policy_root, &search);
  2605. if (found) {
  2606. tor_assert(p == found->policy);
  2607. tor_free(found);
  2608. }
  2609. }
  2610. tor_free(p);
  2611. }
  2612. }
  2613. /** Release all storage held by policy variables. */
  2614. void
  2615. policies_free_all(void)
  2616. {
  2617. addr_policy_list_free(reachable_or_addr_policy);
  2618. reachable_or_addr_policy = NULL;
  2619. addr_policy_list_free(reachable_dir_addr_policy);
  2620. reachable_dir_addr_policy = NULL;
  2621. addr_policy_list_free(socks_policy);
  2622. socks_policy = NULL;
  2623. addr_policy_list_free(dir_policy);
  2624. dir_policy = NULL;
  2625. addr_policy_list_free(authdir_reject_policy);
  2626. authdir_reject_policy = NULL;
  2627. addr_policy_list_free(authdir_invalid_policy);
  2628. authdir_invalid_policy = NULL;
  2629. addr_policy_list_free(authdir_badexit_policy);
  2630. authdir_badexit_policy = NULL;
  2631. if (!HT_EMPTY(&policy_root)) {
  2632. policy_map_ent_t **ent;
  2633. int n = 0;
  2634. char buf[POLICY_BUF_LEN];
  2635. log_warn(LD_MM, "Still had %d address policies cached at shutdown.",
  2636. (int)HT_SIZE(&policy_root));
  2637. /* Note the first 10 cached policies to try to figure out where they
  2638. * might be coming from. */
  2639. HT_FOREACH(ent, policy_map, &policy_root) {
  2640. if (++n > 10)
  2641. break;
  2642. if (policy_write_item(buf, sizeof(buf), (*ent)->policy, 0) >= 0)
  2643. log_warn(LD_MM," %d [%d]: %s", n, (*ent)->policy->refcnt, buf);
  2644. }
  2645. }
  2646. HT_CLEAR(policy_map, &policy_root);
  2647. }