address.c 48 KB

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