address.c 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854
  1. /* Copyright (c) 2003-2004, Roger Dingledine
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2015, The Tor Project, Inc. */
  4. /* See LICENSE for licensing information */
  5. /**
  6. * \file address.c
  7. * \brief Functions to use and manipulate the tor_addr_t structure.
  8. **/
  9. #define ADDRESS_PRIVATE
  10. #ifdef _WIN32
  11. /* For access to structs needed by GetAdaptersAddresses */
  12. #undef _WIN32_WINNT
  13. #define _WIN32_WINNT 0x0501
  14. #include <process.h>
  15. #include <winsock2.h>
  16. #include <windows.h>
  17. #include <iphlpapi.h>
  18. #endif
  19. #include "orconfig.h"
  20. #include "compat.h"
  21. #include "util.h"
  22. #include "address.h"
  23. #include "torlog.h"
  24. #include "container.h"
  25. #include "sandbox.h"
  26. #ifdef HAVE_SYS_TIME_H
  27. #include <sys/time.h>
  28. #endif
  29. #ifdef HAVE_UNISTD_H
  30. #include <unistd.h>
  31. #endif
  32. #ifdef HAVE_ERRNO_H
  33. #include <errno.h>
  34. #endif
  35. #ifdef HAVE_NETINET_IN_H
  36. #include <netinet/in.h>
  37. #endif
  38. #ifdef HAVE_ARPA_INET_H
  39. #include <arpa/inet.h>
  40. #endif
  41. #ifdef HAVE_SYS_SOCKET_H
  42. #include <sys/socket.h>
  43. #endif
  44. #ifdef HAVE_NETDB_H
  45. #include <netdb.h>
  46. #endif
  47. #ifdef HAVE_SYS_PARAM_H
  48. #include <sys/param.h> /* FreeBSD needs this to know what version it is */
  49. #endif
  50. #ifdef HAVE_SYS_UN_H
  51. #include <sys/un.h>
  52. #endif
  53. #ifdef HAVE_IFADDRS_H
  54. #include <ifaddrs.h>
  55. #endif
  56. #ifdef HAVE_SYS_IOCTL_H
  57. #include <sys/ioctl.h>
  58. #endif
  59. #ifdef HAVE_NET_IF_H
  60. #include <net/if.h>
  61. #endif
  62. #include <stdarg.h>
  63. #include <stdio.h>
  64. #include <stdlib.h>
  65. #include <string.h>
  66. #include <assert.h>
  67. /* tor_addr_is_null() and maybe other functions rely on AF_UNSPEC being 0 to
  68. * work correctly. Bail out here if we've found a platform where AF_UNSPEC
  69. * isn't 0. */
  70. #if AF_UNSPEC != 0
  71. #error We rely on AF_UNSPEC being 0. Let us know about your platform, please!
  72. #endif
  73. /** Convert the tor_addr_t in <b>a</b>, with port in <b>port</b>, into a
  74. * sockaddr object in *<b>sa_out</b> of object size <b>len</b>. If not enough
  75. * room is available in sa_out, or on error, return 0. On success, return
  76. * the length of the sockaddr.
  77. *
  78. * Interface note: ordinarily, we return -1 for error. We can't do that here,
  79. * since socklen_t is unsigned on some platforms.
  80. **/
  81. socklen_t
  82. tor_addr_to_sockaddr(const tor_addr_t *a,
  83. uint16_t port,
  84. struct sockaddr *sa_out,
  85. socklen_t len)
  86. {
  87. memset(sa_out, 0, len);
  88. sa_family_t family = tor_addr_family(a);
  89. if (family == AF_INET) {
  90. struct sockaddr_in *sin;
  91. if (len < (int)sizeof(struct sockaddr_in))
  92. return 0;
  93. sin = (struct sockaddr_in *)sa_out;
  94. #ifdef HAVE_STRUCT_SOCKADDR_IN_SIN_LEN
  95. sin->sin_len = sizeof(struct sockaddr_in);
  96. #endif
  97. sin->sin_family = AF_INET;
  98. sin->sin_port = htons(port);
  99. sin->sin_addr.s_addr = tor_addr_to_ipv4n(a);
  100. return sizeof(struct sockaddr_in);
  101. } else if (family == AF_INET6) {
  102. struct sockaddr_in6 *sin6;
  103. if (len < (int)sizeof(struct sockaddr_in6))
  104. return 0;
  105. sin6 = (struct sockaddr_in6 *)sa_out;
  106. #ifdef HAVE_STRUCT_SOCKADDR_IN6_SIN6_LEN
  107. sin6->sin6_len = sizeof(struct sockaddr_in6);
  108. #endif
  109. sin6->sin6_family = AF_INET6;
  110. sin6->sin6_port = htons(port);
  111. memcpy(&sin6->sin6_addr, tor_addr_to_in6(a), sizeof(struct in6_addr));
  112. return sizeof(struct sockaddr_in6);
  113. } else {
  114. return 0;
  115. }
  116. }
  117. /** Set address <b>a</b> to zero. This address belongs to
  118. * the AF_UNIX family. */
  119. static void
  120. tor_addr_make_af_unix(tor_addr_t *a)
  121. {
  122. memset(a, 0, sizeof(*a));
  123. a->family = AF_UNIX;
  124. }
  125. /** Set the tor_addr_t in <b>a</b> to contain the socket address contained in
  126. * <b>sa</b>. Return 0 on success and -1 on failure. */
  127. int
  128. tor_addr_from_sockaddr(tor_addr_t *a, const struct sockaddr *sa,
  129. uint16_t *port_out)
  130. {
  131. tor_assert(a);
  132. tor_assert(sa);
  133. memset(a, 0, sizeof(*a));
  134. if (sa->sa_family == AF_INET) {
  135. struct sockaddr_in *sin = (struct sockaddr_in *) sa;
  136. tor_addr_from_ipv4n(a, sin->sin_addr.s_addr);
  137. if (port_out)
  138. *port_out = ntohs(sin->sin_port);
  139. } else if (sa->sa_family == AF_INET6) {
  140. struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *) sa;
  141. tor_addr_from_in6(a, &sin6->sin6_addr);
  142. if (port_out)
  143. *port_out = ntohs(sin6->sin6_port);
  144. } else if (sa->sa_family == AF_UNIX) {
  145. tor_addr_make_af_unix(a);
  146. return 0;
  147. } else {
  148. tor_addr_make_unspec(a);
  149. return -1;
  150. }
  151. return 0;
  152. }
  153. /** Return a newly allocated string holding the address described in
  154. * <b>sa</b>. AF_UNIX, AF_UNSPEC, AF_INET, and AF_INET6 are supported. */
  155. char *
  156. tor_sockaddr_to_str(const struct sockaddr *sa)
  157. {
  158. char address[TOR_ADDR_BUF_LEN];
  159. char *result;
  160. tor_addr_t addr;
  161. uint16_t port;
  162. #ifdef HAVE_SYS_UN_H
  163. if (sa->sa_family == AF_UNIX) {
  164. struct sockaddr_un *s_un = (struct sockaddr_un *)sa;
  165. tor_asprintf(&result, "unix:%s", s_un->sun_path);
  166. return result;
  167. }
  168. #endif
  169. if (sa->sa_family == AF_UNSPEC)
  170. return tor_strdup("unspec");
  171. if (tor_addr_from_sockaddr(&addr, sa, &port) < 0)
  172. return NULL;
  173. if (! tor_addr_to_str(address, &addr, sizeof(address), 1))
  174. return NULL;
  175. tor_asprintf(&result, "%s:%d", address, (int)port);
  176. return result;
  177. }
  178. /** Set address <b>a</b> to the unspecified address. This address belongs to
  179. * no family. */
  180. void
  181. tor_addr_make_unspec(tor_addr_t *a)
  182. {
  183. memset(a, 0, sizeof(*a));
  184. a->family = AF_UNSPEC;
  185. }
  186. /** Set address <b>a</b> to the null address in address family <b>family</b>.
  187. * The null address for AF_INET is 0.0.0.0. The null address for AF_INET6 is
  188. * [::]. AF_UNSPEC is all null. */
  189. void
  190. tor_addr_make_null(tor_addr_t *a, sa_family_t family)
  191. {
  192. memset(a, 0, sizeof(*a));
  193. a->family = family;
  194. }
  195. /** Similar behavior to Unix gethostbyname: resolve <b>name</b>, and set
  196. * *<b>addr</b> to the proper IP address and family. The <b>family</b>
  197. * argument (which must be AF_INET, AF_INET6, or AF_UNSPEC) declares a
  198. * <i>preferred</i> family, though another one may be returned if only one
  199. * family is implemented for this address.
  200. *
  201. * Return 0 on success, -1 on failure; 1 on transient failure.
  202. */
  203. int
  204. tor_addr_lookup(const char *name, uint16_t family, tor_addr_t *addr)
  205. {
  206. /* Perhaps eventually this should be replaced by a tor_getaddrinfo or
  207. * something.
  208. */
  209. struct in_addr iaddr;
  210. struct in6_addr iaddr6;
  211. tor_assert(name);
  212. tor_assert(addr);
  213. tor_assert(family == AF_INET || family == AF_INET6 || family == AF_UNSPEC);
  214. if (!*name) {
  215. /* Empty address is an error. */
  216. return -1;
  217. } else if (tor_inet_pton(AF_INET, name, &iaddr)) {
  218. /* It's an IPv4 IP. */
  219. if (family == AF_INET6)
  220. return -1;
  221. tor_addr_from_in(addr, &iaddr);
  222. return 0;
  223. } else if (tor_inet_pton(AF_INET6, name, &iaddr6)) {
  224. if (family == AF_INET)
  225. return -1;
  226. tor_addr_from_in6(addr, &iaddr6);
  227. return 0;
  228. } else {
  229. #ifdef HAVE_GETADDRINFO
  230. int err;
  231. struct addrinfo *res=NULL, *res_p;
  232. struct addrinfo *best=NULL;
  233. struct addrinfo hints;
  234. int result = -1;
  235. memset(&hints, 0, sizeof(hints));
  236. hints.ai_family = family;
  237. hints.ai_socktype = SOCK_STREAM;
  238. err = sandbox_getaddrinfo(name, NULL, &hints, &res);
  239. /* The check for 'res' here shouldn't be necessary, but it makes static
  240. * analysis tools happy. */
  241. if (!err && res) {
  242. best = NULL;
  243. for (res_p = res; res_p; res_p = res_p->ai_next) {
  244. if (family == AF_UNSPEC) {
  245. if (res_p->ai_family == AF_INET) {
  246. best = res_p;
  247. break;
  248. } else if (res_p->ai_family == AF_INET6 && !best) {
  249. best = res_p;
  250. }
  251. } else if (family == res_p->ai_family) {
  252. best = res_p;
  253. break;
  254. }
  255. }
  256. if (!best)
  257. best = res;
  258. if (best->ai_family == AF_INET) {
  259. tor_addr_from_in(addr,
  260. &((struct sockaddr_in*)best->ai_addr)->sin_addr);
  261. result = 0;
  262. } else if (best->ai_family == AF_INET6) {
  263. tor_addr_from_in6(addr,
  264. &((struct sockaddr_in6*)best->ai_addr)->sin6_addr);
  265. result = 0;
  266. }
  267. sandbox_freeaddrinfo(res);
  268. return result;
  269. }
  270. return (err == EAI_AGAIN) ? 1 : -1;
  271. #else
  272. struct hostent *ent;
  273. int err;
  274. #ifdef HAVE_GETHOSTBYNAME_R_6_ARG
  275. char buf[2048];
  276. struct hostent hostent;
  277. int r;
  278. r = gethostbyname_r(name, &hostent, buf, sizeof(buf), &ent, &err);
  279. #elif defined(HAVE_GETHOSTBYNAME_R_5_ARG)
  280. char buf[2048];
  281. struct hostent hostent;
  282. ent = gethostbyname_r(name, &hostent, buf, sizeof(buf), &err);
  283. #elif defined(HAVE_GETHOSTBYNAME_R_3_ARG)
  284. struct hostent_data data;
  285. struct hostent hent;
  286. memset(&data, 0, sizeof(data));
  287. err = gethostbyname_r(name, &hent, &data);
  288. ent = err ? NULL : &hent;
  289. #else
  290. ent = gethostbyname(name);
  291. #ifdef _WIN32
  292. err = WSAGetLastError();
  293. #else
  294. err = h_errno;
  295. #endif
  296. #endif /* endif HAVE_GETHOSTBYNAME_R_6_ARG. */
  297. if (ent) {
  298. if (ent->h_addrtype == AF_INET) {
  299. tor_addr_from_in(addr, (struct in_addr*) ent->h_addr);
  300. } else if (ent->h_addrtype == AF_INET6) {
  301. tor_addr_from_in6(addr, (struct in6_addr*) ent->h_addr);
  302. } else {
  303. tor_assert(0); /* gethostbyname() returned a bizarre addrtype */
  304. }
  305. return 0;
  306. }
  307. #ifdef _WIN32
  308. return (err == WSATRY_AGAIN) ? 1 : -1;
  309. #else
  310. return (err == TRY_AGAIN) ? 1 : -1;
  311. #endif
  312. #endif
  313. }
  314. }
  315. /** Return true iff <b>ip</b> is an IP reserved to localhost or local networks
  316. * in RFC1918 or RFC4193 or RFC4291. (fec0::/10, deprecated by RFC3879, is
  317. * also treated as internal for now.)
  318. */
  319. int
  320. tor_addr_is_internal_(const tor_addr_t *addr, int for_listening,
  321. const char *filename, int lineno)
  322. {
  323. uint32_t iph4 = 0;
  324. uint32_t iph6[4];
  325. tor_assert(addr);
  326. sa_family_t v_family = tor_addr_family(addr);
  327. if (v_family == AF_INET) {
  328. iph4 = tor_addr_to_ipv4h(addr);
  329. } else if (v_family == AF_INET6) {
  330. if (tor_addr_is_v4(addr)) { /* v4-mapped */
  331. uint32_t *addr32 = NULL;
  332. v_family = AF_INET;
  333. // Work around an incorrect NULL pointer dereference warning in
  334. // "clang --analyze" due to limited analysis depth
  335. addr32 = tor_addr_to_in6_addr32(addr);
  336. // To improve performance, wrap this assertion in:
  337. // #if !defined(__clang_analyzer__) || PARANOIA
  338. tor_assert(addr32);
  339. iph4 = ntohl(addr32[3]);
  340. }
  341. }
  342. if (v_family == AF_INET6) {
  343. const uint32_t *a32 = tor_addr_to_in6_addr32(addr);
  344. iph6[0] = ntohl(a32[0]);
  345. iph6[1] = ntohl(a32[1]);
  346. iph6[2] = ntohl(a32[2]);
  347. iph6[3] = ntohl(a32[3]);
  348. if (for_listening && !iph6[0] && !iph6[1] && !iph6[2] && !iph6[3]) /* :: */
  349. return 0;
  350. if (((iph6[0] & 0xfe000000) == 0xfc000000) || /* fc00/7 - RFC4193 */
  351. ((iph6[0] & 0xffc00000) == 0xfe800000) || /* fe80/10 - RFC4291 */
  352. ((iph6[0] & 0xffc00000) == 0xfec00000)) /* fec0/10 D- RFC3879 */
  353. return 1;
  354. if (!iph6[0] && !iph6[1] && !iph6[2] &&
  355. ((iph6[3] & 0xfffffffe) == 0x00000000)) /* ::/127 */
  356. return 1;
  357. return 0;
  358. } else if (v_family == AF_INET) {
  359. if (for_listening && !iph4) /* special case for binding to 0.0.0.0 */
  360. return 0;
  361. if (((iph4 & 0xff000000) == 0x0a000000) || /* 10/8 */
  362. ((iph4 & 0xff000000) == 0x00000000) || /* 0/8 */
  363. ((iph4 & 0xff000000) == 0x7f000000) || /* 127/8 */
  364. ((iph4 & 0xffff0000) == 0xa9fe0000) || /* 169.254/16 */
  365. ((iph4 & 0xfff00000) == 0xac100000) || /* 172.16/12 */
  366. ((iph4 & 0xffff0000) == 0xc0a80000)) /* 192.168/16 */
  367. return 1;
  368. return 0;
  369. }
  370. /* unknown address family... assume it's not safe for external use */
  371. /* rather than tor_assert(0) */
  372. log_warn(LD_BUG, "tor_addr_is_internal() called from %s:%d with a "
  373. "non-IP address of type %d", filename, lineno, (int)v_family);
  374. tor_fragile_assert();
  375. return 1;
  376. }
  377. /** Convert a tor_addr_t <b>addr</b> into a string, and store it in
  378. * <b>dest</b> of size <b>len</b>. Returns a pointer to dest on success,
  379. * or NULL on failure. If <b>decorate</b>, surround IPv6 addresses with
  380. * brackets.
  381. */
  382. const char *
  383. tor_addr_to_str(char *dest, const tor_addr_t *addr, size_t len, int decorate)
  384. {
  385. const char *ptr;
  386. tor_assert(addr && dest);
  387. switch (tor_addr_family(addr)) {
  388. case AF_INET:
  389. /* Shortest addr x.x.x.x + \0 */
  390. if (len < 8)
  391. return NULL;
  392. ptr = tor_inet_ntop(AF_INET, &addr->addr.in_addr, dest, len);
  393. break;
  394. case AF_INET6:
  395. /* Shortest addr [ :: ] + \0 */
  396. if (len < (3 + (decorate ? 2 : 0)))
  397. return NULL;
  398. if (decorate)
  399. ptr = tor_inet_ntop(AF_INET6, &addr->addr.in6_addr, dest+1, len-2);
  400. else
  401. ptr = tor_inet_ntop(AF_INET6, &addr->addr.in6_addr, dest, len);
  402. if (ptr && decorate) {
  403. *dest = '[';
  404. memcpy(dest+strlen(dest), "]", 2);
  405. tor_assert(ptr == dest+1);
  406. ptr = dest;
  407. }
  408. break;
  409. case AF_UNIX:
  410. tor_snprintf(dest, len, "AF_UNIX");
  411. ptr = dest;
  412. break;
  413. default:
  414. return NULL;
  415. }
  416. return ptr;
  417. }
  418. /** Parse an .in-addr.arpa or .ip6.arpa address from <b>address</b>. Return 0
  419. * if this is not an .in-addr.arpa address or an .ip6.arpa address. Return -1
  420. * if this is an ill-formed .in-addr.arpa address or an .ip6.arpa address.
  421. * Also return -1 if <b>family</b> is not AF_UNSPEC, and the parsed address
  422. * family does not match <b>family</b>. On success, return 1, and store the
  423. * result, if any, into <b>result</b>, if provided.
  424. *
  425. * If <b>accept_regular</b> is set and the address is in neither recognized
  426. * reverse lookup hostname format, try parsing the address as a regular
  427. * IPv4 or IPv6 address too.
  428. */
  429. int
  430. tor_addr_parse_PTR_name(tor_addr_t *result, const char *address,
  431. int family, int accept_regular)
  432. {
  433. if (!strcasecmpend(address, ".in-addr.arpa")) {
  434. /* We have an in-addr.arpa address. */
  435. char buf[INET_NTOA_BUF_LEN];
  436. size_t len;
  437. struct in_addr inaddr;
  438. if (family == AF_INET6)
  439. return -1;
  440. len = strlen(address) - strlen(".in-addr.arpa");
  441. if (len >= INET_NTOA_BUF_LEN)
  442. return -1; /* Too long. */
  443. memcpy(buf, address, len);
  444. buf[len] = '\0';
  445. if (tor_inet_aton(buf, &inaddr) == 0)
  446. return -1; /* malformed. */
  447. /* reverse the bytes */
  448. inaddr.s_addr = (uint32_t)
  449. (((inaddr.s_addr & 0x000000ff) << 24)
  450. |((inaddr.s_addr & 0x0000ff00) << 8)
  451. |((inaddr.s_addr & 0x00ff0000) >> 8)
  452. |((inaddr.s_addr & 0xff000000) >> 24));
  453. if (result) {
  454. tor_addr_from_in(result, &inaddr);
  455. }
  456. return 1;
  457. }
  458. if (!strcasecmpend(address, ".ip6.arpa")) {
  459. const char *cp;
  460. int n0, n1;
  461. struct in6_addr in6;
  462. if (family == AF_INET)
  463. return -1;
  464. cp = address;
  465. for (int i = 0; i < 16; ++i) {
  466. n0 = hex_decode_digit(*cp++); /* The low-order nybble appears first. */
  467. if (*cp++ != '.') return -1; /* Then a dot. */
  468. n1 = hex_decode_digit(*cp++); /* The high-order nybble appears first. */
  469. if (*cp++ != '.') return -1; /* Then another dot. */
  470. if (n0<0 || n1 < 0) /* Both nybbles must be hex. */
  471. return -1;
  472. /* We don't check the length of the string in here. But that's okay,
  473. * since we already know that the string ends with ".ip6.arpa", and
  474. * there is no way to frameshift .ip6.arpa so it fits into the pattern
  475. * of hexdigit, period, hexdigit, period that we enforce above.
  476. */
  477. /* Assign from low-byte to high-byte. */
  478. in6.s6_addr[15-i] = n0 | (n1 << 4);
  479. }
  480. if (strcasecmp(cp, "ip6.arpa"))
  481. return -1;
  482. if (result) {
  483. tor_addr_from_in6(result, &in6);
  484. }
  485. return 1;
  486. }
  487. if (accept_regular) {
  488. tor_addr_t tmp;
  489. int r = tor_addr_parse(&tmp, address);
  490. if (r < 0)
  491. return 0;
  492. if (r != family && family != AF_UNSPEC)
  493. return -1;
  494. if (result)
  495. memcpy(result, &tmp, sizeof(tor_addr_t));
  496. return 1;
  497. }
  498. return 0;
  499. }
  500. /** Convert <b>addr</b> to an in-addr.arpa name or a .ip6.arpa name,
  501. * and store the result in the <b>outlen</b>-byte buffer at
  502. * <b>out</b>. Return the number of chars written to <b>out</b>, not
  503. * including the trailing \0, on success. Returns -1 on failure. */
  504. int
  505. tor_addr_to_PTR_name(char *out, size_t outlen,
  506. const tor_addr_t *addr)
  507. {
  508. tor_assert(out);
  509. tor_assert(addr);
  510. if (addr->family == AF_INET) {
  511. uint32_t a = tor_addr_to_ipv4h(addr);
  512. return tor_snprintf(out, outlen, "%d.%d.%d.%d.in-addr.arpa",
  513. (int)(uint8_t)((a )&0xff),
  514. (int)(uint8_t)((a>>8 )&0xff),
  515. (int)(uint8_t)((a>>16)&0xff),
  516. (int)(uint8_t)((a>>24)&0xff));
  517. } else if (addr->family == AF_INET6) {
  518. int i;
  519. char *cp = out;
  520. const uint8_t *bytes = tor_addr_to_in6_addr8(addr);
  521. if (outlen < REVERSE_LOOKUP_NAME_BUF_LEN)
  522. return -1;
  523. for (i = 15; i >= 0; --i) {
  524. uint8_t byte = bytes[i];
  525. *cp++ = "0123456789abcdef"[byte & 0x0f];
  526. *cp++ = '.';
  527. *cp++ = "0123456789abcdef"[byte >> 4];
  528. *cp++ = '.';
  529. }
  530. memcpy(cp, "ip6.arpa", 9); /* 8 characters plus NUL */
  531. return 32 * 2 + 8;
  532. }
  533. return -1;
  534. }
  535. /** Parse a string <b>s</b> containing an IPv4/IPv6 address, and possibly
  536. * a mask and port or port range. Store the parsed address in
  537. * <b>addr_out</b>, a mask (if any) in <b>mask_out</b>, and port(s) (if any)
  538. * in <b>port_min_out</b> and <b>port_max_out</b>.
  539. *
  540. * The syntax is:
  541. * Address OptMask OptPortRange
  542. * Address ::= IPv4Address / "[" IPv6Address "]" / "*"
  543. * OptMask ::= "/" Integer /
  544. * OptPortRange ::= ":*" / ":" Integer / ":" Integer "-" Integer /
  545. *
  546. * - If mask, minport, or maxport are NULL, we do not want these
  547. * options to be set; treat them as an error if present.
  548. * - If the string has no mask, the mask is set to /32 (IPv4) or /128 (IPv6).
  549. * - If the string has one port, it is placed in both min and max port
  550. * variables.
  551. * - If the string has no port(s), port_(min|max)_out are set to 1 and 65535.
  552. *
  553. * Return an address family on success, or -1 if an invalid address string is
  554. * provided.
  555. *
  556. * If 'flags & TAPMP_EXTENDED_STAR' is false, then the wildcard address '*'
  557. * yield an IPv4 wildcard.
  558. *
  559. * If 'flags & TAPMP_EXTENDED_STAR' is true, then the wildcard address '*'
  560. * yields an AF_UNSPEC wildcard address, and the following change is made
  561. * in the grammar above:
  562. * Address ::= IPv4Address / "[" IPv6Address "]" / "*" / "*4" / "*6"
  563. * with the new "*4" and "*6" productions creating a wildcard to match
  564. * IPv4 or IPv6 addresses.
  565. *
  566. */
  567. int
  568. tor_addr_parse_mask_ports(const char *s,
  569. unsigned flags,
  570. tor_addr_t *addr_out,
  571. maskbits_t *maskbits_out,
  572. uint16_t *port_min_out, uint16_t *port_max_out)
  573. {
  574. char *base = NULL, *address, *mask = NULL, *port = NULL, *rbracket = NULL;
  575. char *endptr;
  576. int any_flag=0, v4map=0;
  577. sa_family_t family;
  578. struct in6_addr in6_tmp;
  579. struct in_addr in_tmp = { .s_addr = 0 };
  580. tor_assert(s);
  581. tor_assert(addr_out);
  582. /** Longest possible length for an address, mask, and port-range combination.
  583. * Includes IP, [], /mask, :, ports */
  584. #define MAX_ADDRESS_LENGTH (TOR_ADDR_BUF_LEN+2+(1+INET_NTOA_BUF_LEN)+12+1)
  585. if (strlen(s) > MAX_ADDRESS_LENGTH) {
  586. log_warn(LD_GENERAL, "Impossibly long IP %s; rejecting", escaped(s));
  587. goto err;
  588. }
  589. base = tor_strdup(s);
  590. /* Break 'base' into separate strings. */
  591. address = base;
  592. if (*address == '[') { /* Probably IPv6 */
  593. address++;
  594. rbracket = strchr(address, ']');
  595. if (!rbracket) {
  596. log_warn(LD_GENERAL,
  597. "No closing IPv6 bracket in address pattern; rejecting.");
  598. goto err;
  599. }
  600. }
  601. mask = strchr((rbracket?rbracket:address),'/');
  602. port = strchr((mask?mask:(rbracket?rbracket:address)), ':');
  603. if (port)
  604. *port++ = '\0';
  605. if (mask)
  606. *mask++ = '\0';
  607. if (rbracket)
  608. *rbracket = '\0';
  609. if (port && mask)
  610. tor_assert(port > mask);
  611. if (mask && rbracket)
  612. tor_assert(mask > rbracket);
  613. /* Now "address" is the a.b.c.d|'*'|abcd::1 part...
  614. * "mask" is the Mask|Maskbits part...
  615. * and "port" is the *|port|min-max part.
  616. */
  617. /* Process the address portion */
  618. memset(addr_out, 0, sizeof(tor_addr_t));
  619. if (!strcmp(address, "*")) {
  620. if (flags & TAPMP_EXTENDED_STAR) {
  621. family = AF_UNSPEC;
  622. tor_addr_make_unspec(addr_out);
  623. } else {
  624. family = AF_INET;
  625. tor_addr_from_ipv4h(addr_out, 0);
  626. }
  627. any_flag = 1;
  628. } else if (!strcmp(address, "*4") && (flags & TAPMP_EXTENDED_STAR)) {
  629. family = AF_INET;
  630. tor_addr_from_ipv4h(addr_out, 0);
  631. any_flag = 1;
  632. } else if (!strcmp(address, "*6") && (flags & TAPMP_EXTENDED_STAR)) {
  633. static char nil_bytes[16] = { [0]=0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0 };
  634. family = AF_INET6;
  635. tor_addr_from_ipv6_bytes(addr_out, nil_bytes);
  636. any_flag = 1;
  637. } else if (tor_inet_pton(AF_INET6, address, &in6_tmp) > 0) {
  638. family = AF_INET6;
  639. tor_addr_from_in6(addr_out, &in6_tmp);
  640. } else if (tor_inet_pton(AF_INET, address, &in_tmp) > 0) {
  641. family = AF_INET;
  642. tor_addr_from_in(addr_out, &in_tmp);
  643. } else {
  644. log_warn(LD_GENERAL, "Malformed IP %s in address pattern; rejecting.",
  645. escaped(address));
  646. goto err;
  647. }
  648. v4map = tor_addr_is_v4(addr_out);
  649. /* Parse mask */
  650. if (maskbits_out) {
  651. int bits = 0;
  652. struct in_addr v4mask;
  653. if (mask) { /* the caller (tried to) specify a mask */
  654. bits = (int) strtol(mask, &endptr, 10);
  655. if (!*endptr) { /* strtol converted everything, so it was an integer */
  656. if ((bits<0 || bits>128) ||
  657. (family == AF_INET && bits > 32)) {
  658. log_warn(LD_GENERAL,
  659. "Bad number of mask bits (%d) on address range; rejecting.",
  660. bits);
  661. goto err;
  662. }
  663. } else { /* mask might still be an address-style mask */
  664. if (tor_inet_pton(AF_INET, mask, &v4mask) > 0) {
  665. bits = addr_mask_get_bits(ntohl(v4mask.s_addr));
  666. if (bits < 0) {
  667. log_warn(LD_GENERAL,
  668. "IPv4-style mask %s is not a prefix address; rejecting.",
  669. escaped(mask));
  670. goto err;
  671. }
  672. } else { /* Not IPv4; we don't do address-style IPv6 masks. */
  673. log_warn(LD_GENERAL,
  674. "Malformed mask on address range %s; rejecting.",
  675. escaped(s));
  676. goto err;
  677. }
  678. }
  679. if (family == AF_INET6 && v4map) {
  680. if (bits > 32 && bits < 96) { /* Crazy */
  681. log_warn(LD_GENERAL,
  682. "Bad mask bits %d for V4-mapped V6 address; rejecting.",
  683. bits);
  684. goto err;
  685. }
  686. /* XXXX_IP6 is this really what we want? */
  687. bits = 96 + bits%32; /* map v4-mapped masks onto 96-128 bits */
  688. }
  689. if (any_flag) {
  690. log_warn(LD_GENERAL,
  691. "Found bit prefix with wildcard address; rejecting");
  692. goto err;
  693. }
  694. } else { /* pick an appropriate mask, as none was given */
  695. if (any_flag)
  696. bits = 0; /* This is okay whether it's V6 or V4 (FIX V4-mapped V6!) */
  697. else if (tor_addr_family(addr_out) == AF_INET)
  698. bits = 32;
  699. else if (tor_addr_family(addr_out) == AF_INET6)
  700. bits = 128;
  701. }
  702. *maskbits_out = (maskbits_t) bits;
  703. } else {
  704. if (mask) {
  705. log_warn(LD_GENERAL,
  706. "Unexpected mask in address %s; rejecting", escaped(s));
  707. goto err;
  708. }
  709. }
  710. /* Parse port(s) */
  711. if (port_min_out) {
  712. uint16_t port2;
  713. if (!port_max_out) /* caller specified one port; fake the second one */
  714. port_max_out = &port2;
  715. if (parse_port_range(port, port_min_out, port_max_out) < 0) {
  716. goto err;
  717. } else if ((*port_min_out != *port_max_out) && port_max_out == &port2) {
  718. log_warn(LD_GENERAL,
  719. "Wanted one port from address range, but there are two.");
  720. port_max_out = NULL; /* caller specified one port, so set this back */
  721. goto err;
  722. }
  723. } else {
  724. if (port) {
  725. log_warn(LD_GENERAL,
  726. "Unexpected ports in address %s; rejecting", escaped(s));
  727. goto err;
  728. }
  729. }
  730. tor_free(base);
  731. return tor_addr_family(addr_out);
  732. err:
  733. tor_free(base);
  734. return -1;
  735. }
  736. /** Determine whether an address is IPv4, either native or IPv4-mapped IPv6.
  737. * Note that this is about representation only, as any decent stack will
  738. * reject IPv4-mapped addresses received on the wire (and won't use them
  739. * on the wire either).
  740. */
  741. int
  742. tor_addr_is_v4(const tor_addr_t *addr)
  743. {
  744. tor_assert(addr);
  745. if (tor_addr_family(addr) == AF_INET)
  746. return 1;
  747. if (tor_addr_family(addr) == AF_INET6) {
  748. /* First two don't need to be ordered */
  749. uint32_t *a32 = tor_addr_to_in6_addr32(addr);
  750. if (a32[0] == 0 && a32[1] == 0 && ntohl(a32[2]) == 0x0000ffffu)
  751. return 1;
  752. }
  753. return 0; /* Not IPv4 - unknown family or a full-blood IPv6 address */
  754. }
  755. /** Determine whether an address <b>addr</b> is null, either all zeroes or
  756. * belonging to family AF_UNSPEC.
  757. */
  758. int
  759. tor_addr_is_null(const tor_addr_t *addr)
  760. {
  761. tor_assert(addr);
  762. switch (tor_addr_family(addr)) {
  763. case AF_INET6: {
  764. uint32_t *a32 = tor_addr_to_in6_addr32(addr);
  765. return (a32[0] == 0) && (a32[1] == 0) && (a32[2] == 0) && (a32[3] == 0);
  766. }
  767. case AF_INET:
  768. return (tor_addr_to_ipv4n(addr) == 0);
  769. case AF_UNIX:
  770. return 1;
  771. case AF_UNSPEC:
  772. return 1;
  773. default:
  774. log_warn(LD_BUG, "Called with unknown address family %d",
  775. (int)tor_addr_family(addr));
  776. return 0;
  777. }
  778. //return 1;
  779. }
  780. /** Return true iff <b>addr</b> is a loopback address */
  781. int
  782. tor_addr_is_loopback(const tor_addr_t *addr)
  783. {
  784. tor_assert(addr);
  785. switch (tor_addr_family(addr)) {
  786. case AF_INET6: {
  787. /* ::1 */
  788. uint32_t *a32 = tor_addr_to_in6_addr32(addr);
  789. return (a32[0] == 0) && (a32[1] == 0) && (a32[2] == 0) &&
  790. (ntohl(a32[3]) == 1);
  791. }
  792. case AF_INET:
  793. /* 127.0.0.1 */
  794. return (tor_addr_to_ipv4h(addr) & 0xff000000) == 0x7f000000;
  795. case AF_UNSPEC:
  796. return 0;
  797. default:
  798. tor_fragile_assert();
  799. return 0;
  800. }
  801. }
  802. /** Set <b>dest</b> to equal the IPv4 address in <b>v4addr</b> (given in
  803. * network order). */
  804. void
  805. tor_addr_from_ipv4n(tor_addr_t *dest, uint32_t v4addr)
  806. {
  807. tor_assert(dest);
  808. memset(dest, 0, sizeof(tor_addr_t));
  809. dest->family = AF_INET;
  810. dest->addr.in_addr.s_addr = v4addr;
  811. }
  812. /** Set <b>dest</b> to equal the IPv6 address in the 16 bytes at
  813. * <b>ipv6_bytes</b>. */
  814. void
  815. tor_addr_from_ipv6_bytes(tor_addr_t *dest, const char *ipv6_bytes)
  816. {
  817. tor_assert(dest);
  818. tor_assert(ipv6_bytes);
  819. memset(dest, 0, sizeof(tor_addr_t));
  820. dest->family = AF_INET6;
  821. memcpy(dest->addr.in6_addr.s6_addr, ipv6_bytes, 16);
  822. }
  823. /** Set <b>dest</b> equal to the IPv6 address in the in6_addr <b>in6</b>. */
  824. void
  825. tor_addr_from_in6(tor_addr_t *dest, const struct in6_addr *in6)
  826. {
  827. tor_addr_from_ipv6_bytes(dest, (const char*)in6->s6_addr);
  828. }
  829. /** Copy a tor_addr_t from <b>src</b> to <b>dest</b>.
  830. */
  831. void
  832. tor_addr_copy(tor_addr_t *dest, const tor_addr_t *src)
  833. {
  834. if (src == dest)
  835. return;
  836. tor_assert(src);
  837. tor_assert(dest);
  838. memcpy(dest, src, sizeof(tor_addr_t));
  839. }
  840. /** Copy a tor_addr_t from <b>src</b> to <b>dest</b>, taking extra care to
  841. * copy only the well-defined portions. Used for computing hashes of
  842. * addresses.
  843. */
  844. void
  845. tor_addr_copy_tight(tor_addr_t *dest, const tor_addr_t *src)
  846. {
  847. tor_assert(src != dest);
  848. tor_assert(src);
  849. tor_assert(dest);
  850. memset(dest, 0, sizeof(tor_addr_t));
  851. dest->family = src->family;
  852. switch (tor_addr_family(src))
  853. {
  854. case AF_INET:
  855. dest->addr.in_addr.s_addr = src->addr.in_addr.s_addr;
  856. break;
  857. case AF_INET6:
  858. memcpy(dest->addr.in6_addr.s6_addr, src->addr.in6_addr.s6_addr, 16);
  859. case AF_UNSPEC:
  860. break;
  861. default:
  862. tor_fragile_assert();
  863. }
  864. }
  865. /** Given two addresses <b>addr1</b> and <b>addr2</b>, return 0 if the two
  866. * addresses are equivalent under the mask mbits, less than 0 if addr1
  867. * precedes addr2, and greater than 0 otherwise.
  868. *
  869. * Different address families (IPv4 vs IPv6) are always considered unequal if
  870. * <b>how</b> is CMP_EXACT; otherwise, IPv6-mapped IPv4 addresses are
  871. * considered equivalent to their IPv4 equivalents.
  872. */
  873. int
  874. tor_addr_compare(const tor_addr_t *addr1, const tor_addr_t *addr2,
  875. tor_addr_comparison_t how)
  876. {
  877. return tor_addr_compare_masked(addr1, addr2, 128, how);
  878. }
  879. /** As tor_addr_compare(), but only looks at the first <b>mask</b> bits of
  880. * the address.
  881. *
  882. * Reduce over-specific masks (>128 for ipv6, >32 for ipv4) to 128 or 32.
  883. *
  884. * The mask is interpreted relative to <b>addr1</b>, so that if a is
  885. * \::ffff:1.2.3.4, and b is 3.4.5.6,
  886. * tor_addr_compare_masked(a,b,100,CMP_SEMANTIC) is the same as
  887. * -tor_addr_compare_masked(b,a,4,CMP_SEMANTIC).
  888. *
  889. * We guarantee that the ordering from tor_addr_compare_masked is a total
  890. * order on addresses, but not that it is any particular order, or that it
  891. * will be the same from one version to the next.
  892. */
  893. int
  894. tor_addr_compare_masked(const tor_addr_t *addr1, const tor_addr_t *addr2,
  895. maskbits_t mbits, tor_addr_comparison_t how)
  896. {
  897. /** Helper: Evaluates to -1 if a is less than b, 0 if a equals b, or 1 if a
  898. * is greater than b. May evaluate a and b more than once. */
  899. #define TRISTATE(a,b) (((a)<(b))?-1: (((a)==(b))?0:1))
  900. sa_family_t family1, family2, v_family1, v_family2;
  901. tor_assert(addr1 && addr2);
  902. v_family1 = family1 = tor_addr_family(addr1);
  903. v_family2 = family2 = tor_addr_family(addr2);
  904. if (family1==family2) {
  905. /* When the families are the same, there's only one way to do the
  906. * comparison: exactly. */
  907. int r;
  908. switch (family1) {
  909. case AF_UNSPEC:
  910. return 0; /* All unspecified addresses are equal */
  911. case AF_INET: {
  912. uint32_t a1 = tor_addr_to_ipv4h(addr1);
  913. uint32_t a2 = tor_addr_to_ipv4h(addr2);
  914. if (mbits <= 0)
  915. return 0;
  916. if (mbits > 32)
  917. mbits = 32;
  918. a1 >>= (32-mbits);
  919. a2 >>= (32-mbits);
  920. r = TRISTATE(a1, a2);
  921. return r;
  922. }
  923. case AF_INET6: {
  924. const uint8_t *a1 = tor_addr_to_in6_addr8(addr1);
  925. const uint8_t *a2 = tor_addr_to_in6_addr8(addr2);
  926. const int bytes = mbits >> 3;
  927. const int leftover_bits = mbits & 7;
  928. if (bytes && (r = tor_memcmp(a1, a2, bytes))) {
  929. return r;
  930. } else if (leftover_bits) {
  931. uint8_t b1 = a1[bytes] >> (8-leftover_bits);
  932. uint8_t b2 = a2[bytes] >> (8-leftover_bits);
  933. return TRISTATE(b1, b2);
  934. } else {
  935. return 0;
  936. }
  937. }
  938. default:
  939. tor_fragile_assert();
  940. return 0;
  941. }
  942. } else if (how == CMP_EXACT) {
  943. /* Unequal families and an exact comparison? Stop now! */
  944. return TRISTATE(family1, family2);
  945. }
  946. if (mbits == 0)
  947. return 0;
  948. if (family1 == AF_INET6 && tor_addr_is_v4(addr1))
  949. v_family1 = AF_INET;
  950. if (family2 == AF_INET6 && tor_addr_is_v4(addr2))
  951. v_family2 = AF_INET;
  952. if (v_family1 == v_family2) {
  953. /* One or both addresses are a mapped ipv4 address. */
  954. uint32_t a1, a2;
  955. if (family1 == AF_INET6) {
  956. a1 = tor_addr_to_mapped_ipv4h(addr1);
  957. if (mbits <= 96)
  958. return 0;
  959. mbits -= 96; /* We just decided that the first 96 bits of a1 "match". */
  960. } else {
  961. a1 = tor_addr_to_ipv4h(addr1);
  962. }
  963. if (family2 == AF_INET6) {
  964. a2 = tor_addr_to_mapped_ipv4h(addr2);
  965. } else {
  966. a2 = tor_addr_to_ipv4h(addr2);
  967. }
  968. if (mbits > 32) mbits = 32;
  969. a1 >>= (32-mbits);
  970. a2 >>= (32-mbits);
  971. return TRISTATE(a1, a2);
  972. } else {
  973. /* Unequal families, and semantic comparison, and no semantic family
  974. * matches. */
  975. return TRISTATE(family1, family2);
  976. }
  977. }
  978. /** Return a hash code based on the address addr. DOCDOC extra */
  979. uint64_t
  980. tor_addr_hash(const tor_addr_t *addr)
  981. {
  982. switch (tor_addr_family(addr)) {
  983. case AF_INET:
  984. return siphash24g(&addr->addr.in_addr.s_addr, 4);
  985. case AF_UNSPEC:
  986. return 0x4e4d5342;
  987. case AF_INET6:
  988. return siphash24g(&addr->addr.in6_addr.s6_addr, 16);
  989. default:
  990. tor_fragile_assert();
  991. return 0;
  992. }
  993. }
  994. /** Return a newly allocated string with a representation of <b>addr</b>. */
  995. char *
  996. tor_dup_addr(const tor_addr_t *addr)
  997. {
  998. char buf[TOR_ADDR_BUF_LEN];
  999. if (tor_addr_to_str(buf, addr, sizeof(buf), 0)) {
  1000. return tor_strdup(buf);
  1001. } else {
  1002. return tor_strdup("<unknown address type>");
  1003. }
  1004. }
  1005. /** Return a string representing the address <b>addr</b>. This string
  1006. * is statically allocated, and must not be freed. Each call to
  1007. * <b>fmt_addr_impl</b> invalidates the last result of the function.
  1008. * This function is not thread-safe. If <b>decorate</b> is set, add
  1009. * brackets to IPv6 addresses.
  1010. *
  1011. * It's better to use the wrapper macros of this function:
  1012. * <b>fmt_addr()</b> and <b>fmt_and_decorate_addr()</b>.
  1013. */
  1014. const char *
  1015. fmt_addr_impl(const tor_addr_t *addr, int decorate)
  1016. {
  1017. static char buf[TOR_ADDR_BUF_LEN];
  1018. if (!addr) return "<null>";
  1019. if (tor_addr_to_str(buf, addr, sizeof(buf), decorate))
  1020. return buf;
  1021. else
  1022. return "???";
  1023. }
  1024. /** Return a string representing the pair <b>addr</b> and <b>port</b>.
  1025. * This calls fmt_and_decorate_addr internally, so IPv6 addresses will
  1026. * have brackets, and the caveats of fmt_addr_impl apply.
  1027. */
  1028. const char *
  1029. fmt_addrport(const tor_addr_t *addr, uint16_t port)
  1030. {
  1031. /* Add space for a colon and up to 5 digits. */
  1032. static char buf[TOR_ADDR_BUF_LEN + 6];
  1033. tor_snprintf(buf, sizeof(buf), "%s:%u", fmt_and_decorate_addr(addr), port);
  1034. return buf;
  1035. }
  1036. /** Like fmt_addr(), but takes <b>addr</b> as a host-order IPv4
  1037. * addresses. Also not thread-safe, also clobbers its return buffer on
  1038. * repeated calls. */
  1039. const char *
  1040. fmt_addr32(uint32_t addr)
  1041. {
  1042. static char buf[INET_NTOA_BUF_LEN];
  1043. struct in_addr in;
  1044. in.s_addr = htonl(addr);
  1045. tor_inet_ntoa(&in, buf, sizeof(buf));
  1046. return buf;
  1047. }
  1048. /** Convert the string in <b>src</b> to a tor_addr_t <b>addr</b>. The string
  1049. * may be an IPv4 address, an IPv6 address, or an IPv6 address surrounded by
  1050. * square brackets.
  1051. *
  1052. * Return an address family on success, or -1 if an invalid address string is
  1053. * provided. */
  1054. int
  1055. tor_addr_parse(tor_addr_t *addr, const char *src)
  1056. {
  1057. /* Holds substring of IPv6 address after removing square brackets */
  1058. char *tmp = NULL;
  1059. int result;
  1060. struct in_addr in_tmp;
  1061. struct in6_addr in6_tmp;
  1062. tor_assert(addr && src);
  1063. if (src[0] == '[' && src[1])
  1064. src = tmp = tor_strndup(src+1, strlen(src)-2);
  1065. if (tor_inet_pton(AF_INET6, src, &in6_tmp) > 0) {
  1066. result = AF_INET6;
  1067. tor_addr_from_in6(addr, &in6_tmp);
  1068. } else if (tor_inet_pton(AF_INET, src, &in_tmp) > 0) {
  1069. result = AF_INET;
  1070. tor_addr_from_in(addr, &in_tmp);
  1071. } else {
  1072. result = -1;
  1073. }
  1074. tor_free(tmp);
  1075. return result;
  1076. }
  1077. /** Parse an address or address-port combination from <b>s</b>, resolve the
  1078. * address as needed, and put the result in <b>addr_out</b> and (optionally)
  1079. * <b>port_out</b>. Return 0 on success, negative on failure. */
  1080. int
  1081. tor_addr_port_lookup(const char *s, tor_addr_t *addr_out, uint16_t *port_out)
  1082. {
  1083. const char *port;
  1084. tor_addr_t addr;
  1085. uint16_t portval;
  1086. char *tmp = NULL;
  1087. tor_assert(s);
  1088. tor_assert(addr_out);
  1089. s = eat_whitespace(s);
  1090. if (*s == '[') {
  1091. port = strstr(s, "]");
  1092. if (!port)
  1093. goto err;
  1094. tmp = tor_strndup(s+1, port-(s+1));
  1095. port = port+1;
  1096. if (*port == ':')
  1097. port++;
  1098. else
  1099. port = NULL;
  1100. } else {
  1101. port = strchr(s, ':');
  1102. if (port)
  1103. tmp = tor_strndup(s, port-s);
  1104. else
  1105. tmp = tor_strdup(s);
  1106. if (port)
  1107. ++port;
  1108. }
  1109. if (tor_addr_lookup(tmp, AF_UNSPEC, &addr) != 0)
  1110. goto err;
  1111. tor_free(tmp);
  1112. if (port) {
  1113. portval = (int) tor_parse_long(port, 10, 1, 65535, NULL, NULL);
  1114. if (!portval)
  1115. goto err;
  1116. } else {
  1117. portval = 0;
  1118. }
  1119. if (port_out)
  1120. *port_out = portval;
  1121. tor_addr_copy(addr_out, &addr);
  1122. return 0;
  1123. err:
  1124. tor_free(tmp);
  1125. return -1;
  1126. }
  1127. #ifdef _WIN32
  1128. typedef ULONG (WINAPI *GetAdaptersAddresses_fn_t)(
  1129. ULONG, ULONG, PVOID, PIP_ADAPTER_ADDRESSES, PULONG);
  1130. #endif
  1131. #ifdef HAVE_IFADDRS_TO_SMARTLIST
  1132. /*
  1133. * Convert a linked list consisting of <b>ifaddrs</b> structures
  1134. * into smartlist of <b>tor_addr_t</b> structures.
  1135. */
  1136. STATIC smartlist_t *
  1137. ifaddrs_to_smartlist(const struct ifaddrs *ifa)
  1138. {
  1139. smartlist_t *result = smartlist_new();
  1140. const struct ifaddrs *i;
  1141. for (i = ifa; i; i = i->ifa_next) {
  1142. tor_addr_t tmp;
  1143. if ((i->ifa_flags & (IFF_UP | IFF_RUNNING)) != (IFF_UP | IFF_RUNNING))
  1144. continue;
  1145. if (!i->ifa_addr)
  1146. continue;
  1147. if (i->ifa_addr->sa_family != AF_INET &&
  1148. i->ifa_addr->sa_family != AF_INET6)
  1149. continue;
  1150. if (tor_addr_from_sockaddr(&tmp, i->ifa_addr, NULL) < 0)
  1151. continue;
  1152. smartlist_add(result, tor_memdup(&tmp, sizeof(tmp)));
  1153. }
  1154. return result;
  1155. }
  1156. /** Use getiffaddrs() function to get list of current machine
  1157. * network interface addresses. Represent the result by smartlist of
  1158. * <b>tor_addr_t</b> structures.
  1159. */
  1160. STATIC smartlist_t *
  1161. get_interface_addresses_ifaddrs(int severity)
  1162. {
  1163. /* Most free Unixy systems provide getifaddrs, which gives us a linked list
  1164. * of struct ifaddrs. */
  1165. struct ifaddrs *ifa = NULL;
  1166. smartlist_t *result;
  1167. if (getifaddrs(&ifa) < 0) {
  1168. log_fn(severity, LD_NET, "Unable to call getifaddrs(): %s",
  1169. strerror(errno));
  1170. return NULL;
  1171. }
  1172. result = ifaddrs_to_smartlist(ifa);
  1173. freeifaddrs(ifa);
  1174. return result;
  1175. }
  1176. #endif
  1177. #ifdef HAVE_IP_ADAPTER_TO_SMARTLIST
  1178. /** Convert a Windows-specific <b>addresses</b> linked list into smartlist
  1179. * of <b>tor_addr_t</b> structures.
  1180. */
  1181. STATIC smartlist_t *
  1182. ip_adapter_addresses_to_smartlist(const IP_ADAPTER_ADDRESSES *addresses)
  1183. {
  1184. smartlist_t *result = smartlist_new();
  1185. const IP_ADAPTER_ADDRESSES *address;
  1186. for (address = addresses; address; address = address->Next) {
  1187. const IP_ADAPTER_UNICAST_ADDRESS *a;
  1188. for (a = address->FirstUnicastAddress; a; a = a->Next) {
  1189. /* Yes, it's a linked list inside a linked list */
  1190. const struct sockaddr *sa = a->Address.lpSockaddr;
  1191. tor_addr_t tmp;
  1192. if (sa->sa_family != AF_INET && sa->sa_family != AF_INET6)
  1193. continue;
  1194. if (tor_addr_from_sockaddr(&tmp, sa, NULL) < 0)
  1195. continue;
  1196. smartlist_add(result, tor_memdup(&tmp, sizeof(tmp)));
  1197. }
  1198. }
  1199. return result;
  1200. }
  1201. /** Windows only: use GetAdaptersInfo() function to retrieve network interface
  1202. * addresses of current machine and return them to caller as smartlist of
  1203. * <b>tor_addr_t</b> structures.
  1204. */
  1205. STATIC smartlist_t *
  1206. get_interface_addresses_win32(int severity)
  1207. {
  1208. /* Windows XP began to provide GetAdaptersAddresses. Windows 2000 had a
  1209. "GetAdaptersInfo", but that's deprecated; let's just try
  1210. GetAdaptersAddresses and fall back to connect+getsockname.
  1211. */
  1212. HANDLE lib = load_windows_system_library(TEXT("iphlpapi.dll"));
  1213. smartlist_t *result = NULL;
  1214. GetAdaptersAddresses_fn_t fn;
  1215. ULONG size, res;
  1216. IP_ADAPTER_ADDRESSES *addresses = NULL;
  1217. (void) severity;
  1218. #define FLAGS (GAA_FLAG_SKIP_ANYCAST | \
  1219. GAA_FLAG_SKIP_MULTICAST | \
  1220. GAA_FLAG_SKIP_DNS_SERVER)
  1221. if (!lib) {
  1222. log_fn(severity, LD_NET, "Unable to load iphlpapi.dll");
  1223. goto done;
  1224. }
  1225. if (!(fn = (GetAdaptersAddresses_fn_t)
  1226. GetProcAddress(lib, "GetAdaptersAddresses"))) {
  1227. log_fn(severity, LD_NET, "Unable to obtain pointer to "
  1228. "GetAdaptersAddresses");
  1229. goto done;
  1230. }
  1231. /* Guess how much space we need. */
  1232. size = 15*1024;
  1233. addresses = tor_malloc(size);
  1234. res = fn(AF_UNSPEC, FLAGS, NULL, addresses, &size);
  1235. if (res == ERROR_BUFFER_OVERFLOW) {
  1236. /* we didn't guess that we needed enough space; try again */
  1237. tor_free(addresses);
  1238. addresses = tor_malloc(size);
  1239. res = fn(AF_UNSPEC, FLAGS, NULL, addresses, &size);
  1240. }
  1241. if (res != NO_ERROR) {
  1242. log_fn(severity, LD_NET, "GetAdaptersAddresses failed (result: %lu)", res);
  1243. goto done;
  1244. }
  1245. result = ip_adapter_addresses_to_smartlist(addresses);
  1246. done:
  1247. if (lib)
  1248. FreeLibrary(lib);
  1249. tor_free(addresses);
  1250. return result;
  1251. }
  1252. #endif
  1253. #ifdef HAVE_IFCONF_TO_SMARTLIST
  1254. /* This is defined on Mac OS X */
  1255. #ifndef _SIZEOF_ADDR_IFREQ
  1256. #define _SIZEOF_ADDR_IFREQ sizeof
  1257. #endif
  1258. /** Convert <b>*ifr</b>, an ifreq structure array of size <b>buflen</b>
  1259. * into smartlist of <b>tor_addr_t</b> structures.
  1260. */
  1261. STATIC smartlist_t *
  1262. ifreq_to_smartlist(const struct ifreq *ifr, size_t buflen)
  1263. {
  1264. smartlist_t *result = smartlist_new();
  1265. struct ifreq *r = (struct ifreq *)ifr;
  1266. while ((char *)r < (char *)ifr+buflen) {
  1267. const struct sockaddr *sa = &r->ifr_addr;
  1268. tor_addr_t tmp;
  1269. int valid_sa_family = (sa->sa_family == AF_INET ||
  1270. sa->sa_family == AF_INET6);
  1271. int conversion_success = (tor_addr_from_sockaddr(&tmp, sa, NULL) == 0);
  1272. if (valid_sa_family && conversion_success)
  1273. smartlist_add(result, tor_memdup(&tmp, sizeof(tmp)));
  1274. r = (struct ifreq *)((char *)r + _SIZEOF_ADDR_IFREQ(*r));
  1275. }
  1276. return result;
  1277. }
  1278. /** Use ioctl(.,SIOCGIFCONF,.) to get a list of current machine
  1279. * network interface addresses. Represent the result by smartlist of
  1280. * <b>tor_addr_t</b> structures.
  1281. */
  1282. STATIC smartlist_t *
  1283. get_interface_addresses_ioctl(int severity)
  1284. {
  1285. /* Some older unixy systems make us use ioctl(SIOCGIFCONF) */
  1286. struct ifconf ifc;
  1287. int fd, sz;
  1288. void *databuf = NULL;
  1289. smartlist_t *result = NULL;
  1290. /* This interface, AFAICT, only supports AF_INET addresses */
  1291. fd = socket(AF_INET, SOCK_DGRAM, 0);
  1292. if (fd < 0) {
  1293. tor_log(severity, LD_NET, "socket failed: %s", strerror(errno));
  1294. goto done;
  1295. }
  1296. /* Guess how much space we need. */
  1297. ifc.ifc_len = sz = 4096;
  1298. databuf = tor_malloc_zero(sz);
  1299. ifc.ifc_buf = databuf;
  1300. if (ioctl(fd, SIOCGIFCONF, &ifc) < 0) {
  1301. tor_log(severity, LD_NET, "ioctl failed: %s", strerror(errno));
  1302. close(fd);
  1303. goto done;
  1304. }
  1305. result = ifreq_to_smartlist(databuf, ifc.ifc_len);
  1306. done:
  1307. close(fd);
  1308. tor_free(databuf);
  1309. return result;
  1310. }
  1311. #endif
  1312. /** Try to ask our network interfaces what addresses they are bound to.
  1313. * Return a new smartlist of tor_addr_t on success, and NULL on failure.
  1314. * (An empty smartlist indicates that we successfully learned that we have no
  1315. * addresses.) Log failure messages at <b>severity</b>. */
  1316. STATIC smartlist_t *
  1317. get_interface_addresses_raw(int severity)
  1318. {
  1319. #if defined(HAVE_IFADDRS_TO_SMARTLIST)
  1320. return get_interface_addresses_ifaddrs(severity);
  1321. #endif
  1322. #if defined(HAVE_IP_ADAPTER_TO_SMARTLIST)
  1323. return get_interface_addresses_win32(severity);
  1324. #endif
  1325. #if defined(HAVE_IFCONF_TO_SMARTLIST)
  1326. return get_interface_addresses_ioctl(severity);
  1327. #else
  1328. (void) severity;
  1329. return NULL;
  1330. #endif
  1331. }
  1332. /** Return true iff <b>a</b> is a multicast address. */
  1333. static int
  1334. tor_addr_is_multicast(const tor_addr_t *a)
  1335. {
  1336. sa_family_t family = tor_addr_family(a);
  1337. if (family == AF_INET) {
  1338. uint32_t ipv4h = tor_addr_to_ipv4h(a);
  1339. if ((ipv4h >> 24) == 0xe0)
  1340. return 1; /* Multicast */
  1341. } else if (family == AF_INET6) {
  1342. const uint8_t *a32 = tor_addr_to_in6_addr8(a);
  1343. if (a32[0] == 0xff)
  1344. return 1;
  1345. }
  1346. return 0;
  1347. }
  1348. /** Set *<b>addr</b> to the IP address (if any) of whatever interface
  1349. * connects to the Internet. This address should only be used in checking
  1350. * whether our address has changed. Return 0 on success, -1 on failure.
  1351. */
  1352. MOCK_IMPL(int,
  1353. get_interface_address6,(int severity, sa_family_t family, tor_addr_t *addr))
  1354. {
  1355. /* XXX really, this function should yield a smartlist of addresses. */
  1356. smartlist_t *addrs;
  1357. int sock=-1, r=-1;
  1358. struct sockaddr_storage my_addr, target_addr;
  1359. socklen_t addr_len;
  1360. tor_assert(addr);
  1361. /* Try to do this the smart way if possible. */
  1362. if ((addrs = get_interface_addresses_raw(severity))) {
  1363. int rv = -1;
  1364. SMARTLIST_FOREACH_BEGIN(addrs, tor_addr_t *, a) {
  1365. if (family != AF_UNSPEC && family != tor_addr_family(a))
  1366. continue;
  1367. if (tor_addr_is_loopback(a) ||
  1368. tor_addr_is_multicast(a))
  1369. continue;
  1370. tor_addr_copy(addr, a);
  1371. rv = 0;
  1372. /* If we found a non-internal address, declare success. Otherwise,
  1373. * keep looking. */
  1374. if (!tor_addr_is_internal(a, 0))
  1375. break;
  1376. } SMARTLIST_FOREACH_END(a);
  1377. SMARTLIST_FOREACH(addrs, tor_addr_t *, a, tor_free(a));
  1378. smartlist_free(addrs);
  1379. return rv;
  1380. }
  1381. /* Okay, the smart way is out. */
  1382. memset(addr, 0, sizeof(tor_addr_t));
  1383. memset(&target_addr, 0, sizeof(target_addr));
  1384. /* Don't worry: no packets are sent. We just need to use a real address
  1385. * on the actual Internet. */
  1386. if (family == AF_INET6) {
  1387. struct sockaddr_in6 *sin6 = (struct sockaddr_in6*)&target_addr;
  1388. /* Use the "discard" service port */
  1389. sin6->sin6_port = htons(9);
  1390. sock = tor_open_socket(PF_INET6,SOCK_DGRAM,IPPROTO_UDP);
  1391. addr_len = (socklen_t)sizeof(struct sockaddr_in6);
  1392. sin6->sin6_family = AF_INET6;
  1393. S6_ADDR16(sin6->sin6_addr)[0] = htons(0x2002); /* 2002:: */
  1394. } else if (family == AF_INET) {
  1395. struct sockaddr_in *sin = (struct sockaddr_in*)&target_addr;
  1396. /* Use the "discard" service port */
  1397. sin->sin_port = htons(9);
  1398. sock = tor_open_socket(PF_INET,SOCK_DGRAM,IPPROTO_UDP);
  1399. addr_len = (socklen_t)sizeof(struct sockaddr_in);
  1400. sin->sin_family = AF_INET;
  1401. sin->sin_addr.s_addr = htonl(0x12000001); /* 18.0.0.1 */
  1402. } else {
  1403. return -1;
  1404. }
  1405. if (sock < 0) {
  1406. int e = tor_socket_errno(-1);
  1407. log_fn(severity, LD_NET, "unable to create socket: %s",
  1408. tor_socket_strerror(e));
  1409. goto err;
  1410. }
  1411. if (connect(sock,(struct sockaddr *)&target_addr, addr_len) < 0) {
  1412. int e = tor_socket_errno(sock);
  1413. log_fn(severity, LD_NET, "connect() failed: %s", tor_socket_strerror(e));
  1414. goto err;
  1415. }
  1416. if (getsockname(sock,(struct sockaddr*)&my_addr, &addr_len)) {
  1417. int e = tor_socket_errno(sock);
  1418. log_fn(severity, LD_NET, "getsockname() to determine interface failed: %s",
  1419. tor_socket_strerror(e));
  1420. goto err;
  1421. }
  1422. tor_addr_from_sockaddr(addr, (struct sockaddr*)&my_addr, NULL);
  1423. r=0;
  1424. err:
  1425. if (sock >= 0)
  1426. tor_close_socket(sock);
  1427. return r;
  1428. }
  1429. /* ======
  1430. * IPv4 helpers
  1431. * XXXX024 IPv6 deprecate some of these.
  1432. */
  1433. /** Given an address of the form "ip:port", try to divide it into its
  1434. * ip and port portions, setting *<b>address_out</b> to a newly
  1435. * allocated string holding the address portion and *<b>port_out</b>
  1436. * to the port.
  1437. *
  1438. * Don't do DNS lookups and don't allow domain names in the "ip" field.
  1439. *
  1440. * If <b>default_port</b> is less than 0, don't accept <b>addrport</b> of the
  1441. * form "ip" or "ip:0". Otherwise, accept those forms, and set
  1442. * *<b>port_out</b> to <b>default_port</b>.
  1443. *
  1444. * Return 0 on success, -1 on failure. */
  1445. int
  1446. tor_addr_port_parse(int severity, const char *addrport,
  1447. tor_addr_t *address_out, uint16_t *port_out,
  1448. int default_port)
  1449. {
  1450. int retval = -1;
  1451. int r;
  1452. char *addr_tmp = NULL;
  1453. tor_assert(addrport);
  1454. tor_assert(address_out);
  1455. tor_assert(port_out);
  1456. r = tor_addr_port_split(severity, addrport, &addr_tmp, port_out);
  1457. if (r < 0)
  1458. goto done;
  1459. if (!*port_out) {
  1460. if (default_port >= 0)
  1461. *port_out = default_port;
  1462. else
  1463. goto done;
  1464. }
  1465. /* make sure that address_out is an IP address */
  1466. if (tor_addr_parse(address_out, addr_tmp) < 0)
  1467. goto done;
  1468. retval = 0;
  1469. done:
  1470. tor_free(addr_tmp);
  1471. return retval;
  1472. }
  1473. /** Given an address of the form "host[:port]", try to divide it into its host
  1474. * ane port portions, setting *<b>address_out</b> to a newly allocated string
  1475. * holding the address portion and *<b>port_out</b> to the port (or 0 if no
  1476. * port is given). Return 0 on success, -1 on failure. */
  1477. int
  1478. tor_addr_port_split(int severity, const char *addrport,
  1479. char **address_out, uint16_t *port_out)
  1480. {
  1481. tor_addr_t a_tmp;
  1482. tor_assert(addrport);
  1483. tor_assert(address_out);
  1484. tor_assert(port_out);
  1485. /* We need to check for IPv6 manually because addr_port_lookup() doesn't
  1486. * do a good job on IPv6 addresses that lack a port. */
  1487. if (tor_addr_parse(&a_tmp, addrport) == AF_INET6) {
  1488. *port_out = 0;
  1489. *address_out = tor_strdup(addrport);
  1490. return 0;
  1491. }
  1492. return addr_port_lookup(severity, addrport, address_out, NULL, port_out);
  1493. }
  1494. /** Parse a string of the form "host[:port]" from <b>addrport</b>. If
  1495. * <b>address</b> is provided, set *<b>address</b> to a copy of the
  1496. * host portion of the string. If <b>addr</b> is provided, try to
  1497. * resolve the host portion of the string and store it into
  1498. * *<b>addr</b> (in host byte order). If <b>port_out</b> is provided,
  1499. * store the port number into *<b>port_out</b>, or 0 if no port is given.
  1500. * If <b>port_out</b> is NULL, then there must be no port number in
  1501. * <b>addrport</b>.
  1502. * Return 0 on success, -1 on failure.
  1503. */
  1504. int
  1505. addr_port_lookup(int severity, const char *addrport, char **address,
  1506. uint32_t *addr, uint16_t *port_out)
  1507. {
  1508. const char *colon;
  1509. char *address_ = NULL;
  1510. int port_;
  1511. int ok = 1;
  1512. tor_assert(addrport);
  1513. colon = strrchr(addrport, ':');
  1514. if (colon) {
  1515. address_ = tor_strndup(addrport, colon-addrport);
  1516. port_ = (int) tor_parse_long(colon+1,10,1,65535,NULL,NULL);
  1517. if (!port_) {
  1518. log_fn(severity, LD_GENERAL, "Port %s out of range", escaped(colon+1));
  1519. ok = 0;
  1520. }
  1521. if (!port_out) {
  1522. char *esc_addrport = esc_for_log(addrport);
  1523. log_fn(severity, LD_GENERAL,
  1524. "Port %s given on %s when not required",
  1525. escaped(colon+1), esc_addrport);
  1526. tor_free(esc_addrport);
  1527. ok = 0;
  1528. }
  1529. } else {
  1530. address_ = tor_strdup(addrport);
  1531. port_ = 0;
  1532. }
  1533. if (addr) {
  1534. /* There's an addr pointer, so we need to resolve the hostname. */
  1535. if (tor_lookup_hostname(address_,addr)) {
  1536. log_fn(severity, LD_NET, "Couldn't look up %s", escaped(address_));
  1537. ok = 0;
  1538. *addr = 0;
  1539. }
  1540. }
  1541. if (address && ok) {
  1542. *address = address_;
  1543. } else {
  1544. if (address)
  1545. *address = NULL;
  1546. tor_free(address_);
  1547. }
  1548. if (port_out)
  1549. *port_out = ok ? ((uint16_t) port_) : 0;
  1550. return ok ? 0 : -1;
  1551. }
  1552. /** If <b>mask</b> is an address mask for a bit-prefix, return the number of
  1553. * bits. Otherwise, return -1. */
  1554. int
  1555. addr_mask_get_bits(uint32_t mask)
  1556. {
  1557. int i;
  1558. if (mask == 0)
  1559. return 0;
  1560. if (mask == 0xFFFFFFFFu)
  1561. return 32;
  1562. for (i=1; i<=32; ++i) {
  1563. if (mask == (uint32_t) ~((1u<<(32-i))-1)) {
  1564. return i;
  1565. }
  1566. }
  1567. return -1;
  1568. }
  1569. /** Parse a string <b>s</b> in the format of (*|port(-maxport)?)?, setting the
  1570. * various *out pointers as appropriate. Return 0 on success, -1 on failure.
  1571. */
  1572. int
  1573. parse_port_range(const char *port, uint16_t *port_min_out,
  1574. uint16_t *port_max_out)
  1575. {
  1576. int port_min, port_max, ok;
  1577. tor_assert(port_min_out);
  1578. tor_assert(port_max_out);
  1579. if (!port || *port == '\0' || strcmp(port, "*") == 0) {
  1580. port_min = 1;
  1581. port_max = 65535;
  1582. } else {
  1583. char *endptr = NULL;
  1584. port_min = (int)tor_parse_long(port, 10, 0, 65535, &ok, &endptr);
  1585. if (!ok) {
  1586. log_warn(LD_GENERAL,
  1587. "Malformed port %s on address range; rejecting.",
  1588. escaped(port));
  1589. return -1;
  1590. } else if (endptr && *endptr == '-') {
  1591. port = endptr+1;
  1592. endptr = NULL;
  1593. port_max = (int)tor_parse_long(port, 10, 1, 65535, &ok, &endptr);
  1594. if (!ok) {
  1595. log_warn(LD_GENERAL,
  1596. "Malformed port %s on address range; rejecting.",
  1597. escaped(port));
  1598. return -1;
  1599. }
  1600. } else {
  1601. port_max = port_min;
  1602. }
  1603. if (port_min > port_max) {
  1604. log_warn(LD_GENERAL, "Insane port range on address policy; rejecting.");
  1605. return -1;
  1606. }
  1607. }
  1608. if (port_min < 1)
  1609. port_min = 1;
  1610. if (port_max > 65535)
  1611. port_max = 65535;
  1612. *port_min_out = (uint16_t) port_min;
  1613. *port_max_out = (uint16_t) port_max;
  1614. return 0;
  1615. }
  1616. /** Given an IPv4 in_addr struct *<b>in</b> (in network order, as usual),
  1617. * write it as a string into the <b>buf_len</b>-byte buffer in
  1618. * <b>buf</b>.
  1619. */
  1620. int
  1621. tor_inet_ntoa(const struct in_addr *in, char *buf, size_t buf_len)
  1622. {
  1623. uint32_t a = ntohl(in->s_addr);
  1624. return tor_snprintf(buf, buf_len, "%d.%d.%d.%d",
  1625. (int)(uint8_t)((a>>24)&0xff),
  1626. (int)(uint8_t)((a>>16)&0xff),
  1627. (int)(uint8_t)((a>>8 )&0xff),
  1628. (int)(uint8_t)((a )&0xff));
  1629. }
  1630. /** Given a host-order <b>addr</b>, call tor_inet_ntop() on it
  1631. * and return a strdup of the resulting address.
  1632. */
  1633. char *
  1634. tor_dup_ip(uint32_t addr)
  1635. {
  1636. char buf[TOR_ADDR_BUF_LEN];
  1637. struct in_addr in;
  1638. in.s_addr = htonl(addr);
  1639. tor_inet_ntop(AF_INET, &in, buf, sizeof(buf));
  1640. return tor_strdup(buf);
  1641. }
  1642. /**
  1643. * Set *<b>addr</b> to the host-order IPv4 address (if any) of whatever
  1644. * interface connects to the Internet. This address should only be used in
  1645. * checking whether our address has changed. Return 0 on success, -1 on
  1646. * failure.
  1647. */
  1648. MOCK_IMPL(int,
  1649. get_interface_address,(int severity, uint32_t *addr))
  1650. {
  1651. tor_addr_t local_addr;
  1652. int r;
  1653. r = get_interface_address6(severity, AF_INET, &local_addr);
  1654. if (r>=0)
  1655. *addr = tor_addr_to_ipv4h(&local_addr);
  1656. return r;
  1657. }
  1658. /** Return true if we can tell that <b>name</b> is a canonical name for the
  1659. * loopback address. */
  1660. int
  1661. tor_addr_hostname_is_local(const char *name)
  1662. {
  1663. return !strcasecmp(name, "localhost") ||
  1664. !strcasecmp(name, "local") ||
  1665. !strcasecmpend(name, ".local");
  1666. }
  1667. /** Return a newly allocated tor_addr_port_t with <b>addr</b> and
  1668. <b>port</b> filled in. */
  1669. tor_addr_port_t *
  1670. tor_addr_port_new(const tor_addr_t *addr, uint16_t port)
  1671. {
  1672. tor_addr_port_t *ap = tor_malloc_zero(sizeof(tor_addr_port_t));
  1673. if (addr)
  1674. tor_addr_copy(&ap->addr, addr);
  1675. ap->port = port;
  1676. return ap;
  1677. }