address.c 50 KB

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