policies.c 112 KB

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