policies.c 108 KB

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