getaddrinfo.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876
  1. /*
  2. * Copyright 1996 by Craig Metz
  3. * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  4. * Portions from the GNU C library,
  5. * Copyright (C) 2003, 2006 Free Software Foundation, Inc.
  6. *
  7. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  8. */
  9. /* $USAGI: getaddrinfo.c,v 1.16 2001/10/04 09:52:03 sekiya Exp $ */
  10. /* The Inner Net License, Version 2.00
  11. The author(s) grant permission for redistribution and use in source and
  12. binary forms, with or without modification, of the software and documentation
  13. provided that the following conditions are met:
  14. 0. If you receive a version of the software that is specifically labelled
  15. as not being for redistribution (check the version message and/or README),
  16. you are not permitted to redistribute that version of the software in any
  17. way or form.
  18. 1. All terms of the all other applicable copyrights and licenses must be
  19. followed.
  20. 2. Redistributions of source code must retain the authors' copyright
  21. notice(s), this list of conditions, and the following disclaimer.
  22. 3. Redistributions in binary form must reproduce the authors' copyright
  23. notice(s), this list of conditions, and the following disclaimer in the
  24. documentation and/or other materials provided with the distribution.
  25. 4. All advertising materials mentioning features or use of this software
  26. must display the following acknowledgement with the name(s) of the
  27. authors as specified in the copyright notice(s) substituted where
  28. indicated:
  29. This product includes software developed by <name(s)>, The Inner
  30. Net, and other contributors.
  31. 5. Neither the name(s) of the author(s) nor the names of its contributors
  32. may be used to endorse or promote products derived from this software
  33. without specific prior written permission.
  34. THIS SOFTWARE IS PROVIDED BY ITS AUTHORS AND CONTRIBUTORS ``AS IS'' AND ANY
  35. EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  36. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  37. DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE FOR ANY
  38. DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  39. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  40. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  41. ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  42. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  43. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  44. If these license terms cause you a real problem, contact the author. */
  45. #define __FORCE_GLIBC
  46. #include <features.h>
  47. #include <assert.h>
  48. #include <errno.h>
  49. #include <netdb.h>
  50. #include <tls.h>
  51. #include <resolv.h>
  52. #include <stdio.h>
  53. #include <stdlib.h>
  54. #include <string.h>
  55. #include <unistd.h>
  56. #include <arpa/inet.h>
  57. #include <sys/socket.h>
  58. #include <netinet/in.h>
  59. #include <sys/types.h>
  60. #include <sys/un.h>
  61. #include <sys/utsname.h>
  62. #include <net/if.h>
  63. #include <ifaddrs.h>
  64. #define GAIH_OKIFUNSPEC 0x0100
  65. #define GAIH_EAI ~(GAIH_OKIFUNSPEC)
  66. #ifndef UNIX_PATH_MAX
  67. #define UNIX_PATH_MAX 108
  68. #endif
  69. /* Useful for having small structure members/global variables */
  70. typedef int8_t socktype_t;
  71. typedef int8_t family_t;
  72. typedef int8_t protocol_t;
  73. struct BUG_too_small {
  74. char BUG_socktype_t_too_small[(0
  75. | SOCK_STREAM
  76. | SOCK_DGRAM
  77. | SOCK_RAW
  78. ) <= 127 ? 1 : -1];
  79. char BUG_family_t_too_small[(0
  80. | AF_UNSPEC
  81. | AF_INET
  82. | AF_INET6
  83. ) <= 127 ? 1 : -1];
  84. char BUG_protocol_t_too_small[(0
  85. | IPPROTO_TCP
  86. | IPPROTO_UDP
  87. ) <= 127 ? 1 : -1];
  88. };
  89. struct gaih_service {
  90. const char *name;
  91. int num;
  92. };
  93. struct gaih_servtuple {
  94. struct gaih_servtuple *next;
  95. int socktype;
  96. int protocol;
  97. int port;
  98. };
  99. struct gaih_addrtuple {
  100. struct gaih_addrtuple *next;
  101. int family;
  102. char addr[16];
  103. uint32_t scopeid;
  104. };
  105. struct gaih_typeproto {
  106. socktype_t socktype;
  107. protocol_t protocol;
  108. int8_t protoflag;
  109. char name[4];
  110. };
  111. /* Values for `protoflag'. */
  112. #define GAI_PROTO_NOSERVICE 1
  113. #define GAI_PROTO_PROTOANY 2
  114. static const struct gaih_typeproto gaih_inet_typeproto[] = {
  115. { 0 , 0 , 0, "" },
  116. { SOCK_STREAM, IPPROTO_TCP, 0, "tcp" },
  117. { SOCK_DGRAM , IPPROTO_UDP, 0, "udp" },
  118. { SOCK_RAW , 0 , GAI_PROTO_PROTOANY|GAI_PROTO_NOSERVICE, "raw" },
  119. { 0 , 0 , 0, "" },
  120. };
  121. struct gaih {
  122. int family;
  123. int (*gaih)(const char *name, const struct gaih_service *service,
  124. const struct addrinfo *req, struct addrinfo **pai);
  125. };
  126. #define SEEN_IPV4 1
  127. #define SEEN_IPV6 2
  128. static unsigned __check_pf(void)
  129. {
  130. unsigned seen = 0;
  131. #if defined __UCLIBC_SUPPORT_AI_ADDRCONFIG__
  132. struct ifaddrs *ifa;
  133. struct ifaddrs *runp;
  134. /* Get the interface list via getifaddrs. */
  135. if (getifaddrs(&ifa) != 0) {
  136. /* We cannot determine what interfaces are available.
  137. * Be optimistic. */
  138. #if defined __UCLIBC_HAS_IPV4__
  139. seen |= SEEN_IPV4;
  140. #endif
  141. #if defined __UCLIBC_HAS_IPV6__
  142. seen |= SEEN_IPV6;
  143. #endif
  144. return seen;
  145. }
  146. for (runp = ifa; runp != NULL; runp = runp->ifa_next) {
  147. if (runp->ifa_addr == NULL)
  148. continue;
  149. #if defined __UCLIBC_HAS_IPV4__
  150. if (runp->ifa_addr->sa_family == PF_INET)
  151. seen |= SEEN_IPV4;
  152. #endif
  153. #if defined __UCLIBC_HAS_IPV6__
  154. if (runp->ifa_addr->sa_family == PF_INET6)
  155. seen |= SEEN_IPV6;
  156. #endif
  157. }
  158. freeifaddrs(ifa);
  159. #else
  160. /* AI_ADDRCONFIG is disabled, assume both ipv4 and ipv6 available. */
  161. #if defined __UCLIBC_HAS_IPV4__
  162. seen |= SEEN_IPV4;
  163. #endif
  164. #if defined __UCLIBC_HAS_IPV6__
  165. seen |= SEEN_IPV6;
  166. #endif
  167. #endif /* __UCLIBC_SUPPORT_AI_ADDRCONFIG__ */
  168. return seen;
  169. }
  170. static int addrconfig(sa_family_t af)
  171. {
  172. int s;
  173. int ret;
  174. int saved_errno = errno;
  175. unsigned seen;
  176. seen = __check_pf();
  177. #if defined __UCLIBC_HAS_IPV4__
  178. if (af == AF_INET)
  179. ret = seen & SEEN_IPV4;
  180. else
  181. #endif
  182. #if defined __UCLIBC_HAS_IPV6__
  183. if (af == AF_INET6)
  184. ret = seen & SEEN_IPV6;
  185. else
  186. #endif
  187. {
  188. s = socket(af, SOCK_DGRAM, 0);
  189. ret = 1; /* Assume PF_UNIX. */
  190. if (s < 0) {
  191. if (errno != EMFILE)
  192. ret = 0;
  193. } else
  194. close(s);
  195. }
  196. __set_errno(saved_errno);
  197. return ret;
  198. }
  199. #if 0
  200. /* Using Unix sockets this way is a security risk. */
  201. static int
  202. gaih_local(const char *name, const struct gaih_service *service,
  203. const struct addrinfo *req, struct addrinfo **pai)
  204. {
  205. struct utsname utsname;
  206. struct addrinfo *ai = *pai;
  207. if ((name != NULL) && (req->ai_flags & AI_NUMERICHOST))
  208. return (GAIH_OKIFUNSPEC | -EAI_NONAME);
  209. if ((name != NULL) || (req->ai_flags & AI_CANONNAME))
  210. if (uname(&utsname) < 0)
  211. return -EAI_SYSTEM;
  212. if (name != NULL) {
  213. if (strcmp(name, "localhost") &&
  214. strcmp(name, "local") &&
  215. strcmp(name, "unix") &&
  216. strcmp(name, utsname.nodename))
  217. return (GAIH_OKIFUNSPEC | -EAI_NONAME);
  218. }
  219. if (req->ai_protocol || req->ai_socktype) {
  220. const struct gaih_typeproto *tp = gaih_inet_typeproto + 1;
  221. while (tp->name[0]
  222. && ((tp->protoflag & GAI_PROTO_NOSERVICE) != 0
  223. || (req->ai_socktype != 0 && req->ai_socktype != tp->socktype)
  224. || (req->ai_protocol != 0 && !(tp->protoflag & GAI_PROTO_PROTOANY) && req->ai_protocol != tp->protocol))
  225. ) {
  226. ++tp;
  227. }
  228. if (! tp->name[0]) {
  229. if (req->ai_socktype)
  230. return (GAIH_OKIFUNSPEC | -EAI_SOCKTYPE);
  231. return (GAIH_OKIFUNSPEC | -EAI_SERVICE);
  232. }
  233. }
  234. *pai = ai = malloc(sizeof(struct addrinfo) + sizeof(struct sockaddr_un)
  235. + ((req->ai_flags & AI_CANONNAME)
  236. ? (strlen(utsname.nodename) + 1) : 0));
  237. if (ai == NULL)
  238. return -EAI_MEMORY;
  239. ai->ai_next = NULL;
  240. ai->ai_flags = req->ai_flags;
  241. ai->ai_family = AF_LOCAL;
  242. ai->ai_socktype = req->ai_socktype ? req->ai_socktype : SOCK_STREAM;
  243. ai->ai_protocol = req->ai_protocol;
  244. ai->ai_addrlen = sizeof(struct sockaddr_un);
  245. ai->ai_addr = (void *)ai + sizeof(struct addrinfo);
  246. #if SALEN
  247. ((struct sockaddr_un *)ai->ai_addr)->sun_len = sizeof(struct sockaddr_un);
  248. #endif /* SALEN */
  249. ((struct sockaddr_un *)ai->ai_addr)->sun_family = AF_LOCAL;
  250. memset(((struct sockaddr_un *)ai->ai_addr)->sun_path, 0, UNIX_PATH_MAX);
  251. if (service) {
  252. struct sockaddr_un *sunp = (struct sockaddr_un *)ai->ai_addr;
  253. if (strchr(service->name, '/') != NULL) {
  254. if (strlen(service->name) >= sizeof(sunp->sun_path))
  255. return GAIH_OKIFUNSPEC | -EAI_SERVICE;
  256. strcpy(sunp->sun_path, service->name);
  257. } else {
  258. if (strlen(P_tmpdir "/") + 1 + strlen(service->name) >= sizeof(sunp->sun_path))
  259. return (GAIH_OKIFUNSPEC | -EAI_SERVICE);
  260. stpcpy(stpcpy(sunp->sun_path, P_tmpdir "/"), service->name);
  261. }
  262. } else {
  263. /* This is a dangerous use of the interface since there is a time
  264. window between the test for the file and the actual creation
  265. (done by the caller) in which a file with the same name could
  266. be created. */
  267. char *buf = ((struct sockaddr_un *)ai->ai_addr)->sun_path;
  268. if (__path_search(buf, L_tmpnam, NULL, NULL, 0) != 0
  269. || __gen_tempname(buf, __GT_NOCREATE, 0) != 0
  270. ) {
  271. return -EAI_SYSTEM;
  272. }
  273. }
  274. ai->ai_canonname = NULL;
  275. if (req->ai_flags & AI_CANONNAME)
  276. ai->ai_canonname = strcpy((char *)(ai + 1) + sizeof(struct sockaddr_un),
  277. utsname.nodename);
  278. return 0;
  279. }
  280. #endif /* 0 */
  281. static int
  282. gaih_inet_serv(const char *servicename, const struct gaih_typeproto *tp,
  283. const struct addrinfo *req, struct gaih_servtuple *st)
  284. {
  285. struct servent *s;
  286. size_t tmpbuflen = 1024;
  287. struct servent ts;
  288. char *tmpbuf;
  289. int r;
  290. while (1) {
  291. tmpbuf = alloca(tmpbuflen);
  292. r = getservbyname_r(servicename, tp->name, &ts, tmpbuf, tmpbuflen, &s);
  293. if (r == 0 && s != NULL)
  294. break;
  295. if (r != ERANGE)
  296. return (GAIH_OKIFUNSPEC | -EAI_SERVICE);
  297. tmpbuflen *= 2;
  298. }
  299. st->next = NULL;
  300. st->socktype = tp->socktype;
  301. st->protocol = ((tp->protoflag & GAI_PROTO_PROTOANY) ? req->ai_protocol : tp->protocol);
  302. st->port = s->s_port;
  303. return 0;
  304. }
  305. /* NB: also uses h,pat,rc,no_data variables */
  306. #define gethosts(_family, _type) \
  307. { \
  308. int i, herrno; \
  309. size_t tmpbuflen; \
  310. struct hostent th; \
  311. char *tmpbuf; \
  312. \
  313. tmpbuflen = 512; \
  314. no_data = 0; \
  315. do { \
  316. tmpbuflen *= 2; \
  317. tmpbuf = alloca(tmpbuflen); \
  318. rc = gethostbyname2_r(name, _family, &th, tmpbuf, \
  319. tmpbuflen, &h, &herrno); \
  320. } while (rc == ERANGE && herrno == NETDB_INTERNAL); \
  321. if (rc != 0) { \
  322. if (herrno == NETDB_INTERNAL) { \
  323. __set_h_errno(herrno); \
  324. return -EAI_SYSTEM; \
  325. } \
  326. if (herrno == TRY_AGAIN) \
  327. no_data = EAI_AGAIN; \
  328. else \
  329. no_data = (herrno == NO_DATA); \
  330. } else if (h != NULL) { \
  331. for (i = 0; h->h_addr_list[i]; i++) { \
  332. if (*pat == NULL) { \
  333. *pat = alloca(sizeof(struct gaih_addrtuple)); \
  334. (*pat)->scopeid = 0; \
  335. } \
  336. (*pat)->next = NULL; \
  337. (*pat)->family = _family; \
  338. memcpy((*pat)->addr, h->h_addr_list[i], sizeof(_type)); \
  339. pat = &((*pat)->next); \
  340. } \
  341. } \
  342. }
  343. static int
  344. gaih_inet(const char *name, const struct gaih_service *service,
  345. const struct addrinfo *req, struct addrinfo **pai)
  346. {
  347. struct gaih_servtuple nullserv;
  348. const struct gaih_typeproto *tp = gaih_inet_typeproto;
  349. struct gaih_servtuple *st = &nullserv;
  350. struct gaih_addrtuple *at = NULL;
  351. int rc;
  352. int v4mapped = (req->ai_family == PF_UNSPEC || req->ai_family == PF_INET6)
  353. && (req->ai_flags & AI_V4MAPPED);
  354. unsigned seen = __check_pf();
  355. memset(&nullserv, 0, sizeof(nullserv));
  356. if (req->ai_protocol || req->ai_socktype) {
  357. ++tp;
  358. while (tp->name[0]
  359. && ((req->ai_socktype != 0 && req->ai_socktype != tp->socktype)
  360. || (req->ai_protocol != 0 && !(tp->protoflag & GAI_PROTO_PROTOANY) && req->ai_protocol != tp->protocol)
  361. )
  362. ) {
  363. ++tp;
  364. }
  365. if (! tp->name[0]) {
  366. if (req->ai_socktype)
  367. return (GAIH_OKIFUNSPEC | -EAI_SOCKTYPE);
  368. return (GAIH_OKIFUNSPEC | -EAI_SERVICE);
  369. }
  370. }
  371. if (service != NULL) {
  372. if ((tp->protoflag & GAI_PROTO_NOSERVICE) != 0)
  373. return (GAIH_OKIFUNSPEC | -EAI_SERVICE);
  374. if (service->num < 0) {
  375. if (tp->name[0]) {
  376. st = alloca(sizeof(struct gaih_servtuple));
  377. rc = gaih_inet_serv(service->name, tp, req, st);
  378. if (rc)
  379. return rc;
  380. } else {
  381. struct gaih_servtuple **pst = &st;
  382. for (tp++; tp->name[0]; tp++) {
  383. struct gaih_servtuple *newp;
  384. if ((tp->protoflag & GAI_PROTO_NOSERVICE) != 0)
  385. continue;
  386. if (req->ai_socktype != 0 && req->ai_socktype != tp->socktype)
  387. continue;
  388. if (req->ai_protocol != 0
  389. && !(tp->protoflag & GAI_PROTO_PROTOANY)
  390. && req->ai_protocol != tp->protocol)
  391. continue;
  392. newp = alloca(sizeof(struct gaih_servtuple));
  393. rc = gaih_inet_serv(service->name, tp, req, newp);
  394. if (rc) {
  395. if (rc & GAIH_OKIFUNSPEC)
  396. continue;
  397. return rc;
  398. }
  399. *pst = newp;
  400. pst = &(newp->next);
  401. }
  402. if (st == &nullserv)
  403. return (GAIH_OKIFUNSPEC | -EAI_SERVICE);
  404. }
  405. } else {
  406. st = alloca(sizeof(struct gaih_servtuple));
  407. st->next = NULL;
  408. st->socktype = tp->socktype;
  409. st->protocol = ((tp->protoflag & GAI_PROTO_PROTOANY)
  410. ? req->ai_protocol : tp->protocol);
  411. st->port = htons(service->num);
  412. }
  413. } else if (req->ai_socktype || req->ai_protocol) {
  414. st = alloca(sizeof(struct gaih_servtuple));
  415. st->next = NULL;
  416. st->socktype = tp->socktype;
  417. st->protocol = ((tp->protoflag & GAI_PROTO_PROTOANY)
  418. ? req->ai_protocol : tp->protocol);
  419. st->port = 0;
  420. } else {
  421. /*
  422. * Neither socket type nor protocol is set. Return all socket types
  423. * we know about.
  424. */
  425. struct gaih_servtuple **lastp = &st;
  426. for (++tp; tp->name[0]; ++tp) {
  427. struct gaih_servtuple *newp;
  428. newp = alloca(sizeof(struct gaih_servtuple));
  429. newp->next = NULL;
  430. newp->socktype = tp->socktype;
  431. newp->protocol = tp->protocol;
  432. newp->port = 0;
  433. *lastp = newp;
  434. lastp = &newp->next;
  435. }
  436. }
  437. if (name != NULL) {
  438. at = alloca(sizeof(struct gaih_addrtuple));
  439. at->family = AF_UNSPEC;
  440. at->scopeid = 0;
  441. at->next = NULL;
  442. if (inet_pton(AF_INET, name, at->addr) > 0) {
  443. if (req->ai_family == AF_UNSPEC || req->ai_family == AF_INET || v4mapped)
  444. at->family = AF_INET;
  445. else
  446. return -EAI_FAMILY;
  447. }
  448. #if defined __UCLIBC_HAS_IPV6__
  449. if (at->family == AF_UNSPEC) {
  450. char *namebuf = strdupa(name);
  451. char *scope_delim;
  452. scope_delim = strchr(namebuf, SCOPE_DELIMITER);
  453. if (scope_delim != NULL)
  454. *scope_delim = '\0';
  455. if (inet_pton(AF_INET6, namebuf, at->addr) > 0) {
  456. if (req->ai_family == AF_UNSPEC || req->ai_family == AF_INET6)
  457. at->family = AF_INET6;
  458. else
  459. return -EAI_FAMILY;
  460. if (scope_delim != NULL) {
  461. int try_numericscope = 0;
  462. uint32_t *a32 = (uint32_t*)at->addr;
  463. if (IN6_IS_ADDR_LINKLOCAL(a32) || IN6_IS_ADDR_MC_LINKLOCAL(at->addr)) {
  464. at->scopeid = if_nametoindex(scope_delim + 1);
  465. if (at->scopeid == 0)
  466. try_numericscope = 1;
  467. } else
  468. try_numericscope = 1;
  469. if (try_numericscope != 0) {
  470. char *end;
  471. assert(sizeof(uint32_t) <= sizeof(unsigned long));
  472. at->scopeid = (uint32_t)strtoul(scope_delim + 1, &end, 10);
  473. if (*end != '\0')
  474. return (GAIH_OKIFUNSPEC | -EAI_NONAME);
  475. }
  476. }
  477. }
  478. }
  479. #endif
  480. if (at->family == AF_UNSPEC && (req->ai_flags & AI_NUMERICHOST) == 0) {
  481. struct hostent *h;
  482. struct gaih_addrtuple **pat = &at;
  483. int no_data = 0;
  484. int no_inet6_data;
  485. /*
  486. * If we are looking for both IPv4 and IPv6 address we don't want
  487. * the lookup functions to automatically promote IPv4 addresses to
  488. * IPv6 addresses.
  489. */
  490. #if defined __UCLIBC_HAS_IPV6__
  491. if (req->ai_family == AF_UNSPEC || req->ai_family == AF_INET6)
  492. if (!(req->ai_flags & AI_ADDRCONFIG) || (seen & SEEN_IPV6))
  493. gethosts(AF_INET6, struct in6_addr);
  494. #endif
  495. no_inet6_data = no_data;
  496. if (req->ai_family == AF_INET
  497. || (!v4mapped && req->ai_family == AF_UNSPEC)
  498. || (v4mapped && (no_inet6_data != 0 || (req->ai_flags & AI_ALL)))
  499. ) {
  500. if (!(req->ai_flags & AI_ADDRCONFIG) || (seen & SEEN_IPV4))
  501. gethosts(AF_INET, struct in_addr);
  502. }
  503. if (no_data != 0 && no_inet6_data != 0) {
  504. /* If both requests timed out report this. */
  505. if (no_data == EAI_AGAIN && no_inet6_data == EAI_AGAIN)
  506. return -EAI_AGAIN;
  507. /*
  508. * We made requests but they turned out no data.
  509. * The name is known, though.
  510. */
  511. return (GAIH_OKIFUNSPEC | -EAI_AGAIN);
  512. }
  513. }
  514. if (at->family == AF_UNSPEC)
  515. return (GAIH_OKIFUNSPEC | -EAI_NONAME);
  516. } else {
  517. struct gaih_addrtuple *atr;
  518. atr = at = alloca(sizeof(struct gaih_addrtuple));
  519. memset(at, '\0', sizeof(struct gaih_addrtuple));
  520. if (req->ai_family == 0) {
  521. at->next = alloca(sizeof(struct gaih_addrtuple));
  522. memset(at->next, '\0', sizeof(struct gaih_addrtuple));
  523. }
  524. #if defined __UCLIBC_HAS_IPV6__
  525. if (req->ai_family == 0 || req->ai_family == AF_INET6) {
  526. at->family = AF_INET6;
  527. if ((req->ai_flags & AI_PASSIVE) == 0)
  528. memcpy(at->addr, &in6addr_loopback, sizeof(struct in6_addr));
  529. atr = at->next;
  530. }
  531. #endif
  532. if (req->ai_family == 0 || req->ai_family == AF_INET) {
  533. atr->family = AF_INET;
  534. if ((req->ai_flags & AI_PASSIVE) == 0) {
  535. uint32_t *a = (uint32_t*)atr->addr;
  536. *a = htonl(INADDR_LOOPBACK);
  537. }
  538. }
  539. }
  540. if (pai == NULL)
  541. return 0;
  542. {
  543. const char *c = NULL;
  544. struct gaih_servtuple *st2;
  545. struct gaih_addrtuple *at2 = at;
  546. size_t socklen, namelen;
  547. sa_family_t family;
  548. /*
  549. * buffer is the size of an unformatted IPv6 address in
  550. * printable format.
  551. */
  552. char buffer[sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255")];
  553. while (at2 != NULL) {
  554. if (req->ai_flags & AI_CANONNAME) {
  555. struct hostent *h = NULL;
  556. int herrno;
  557. struct hostent th;
  558. size_t tmpbuflen = 512;
  559. char *tmpbuf;
  560. do {
  561. tmpbuflen *= 2;
  562. tmpbuf = alloca(tmpbuflen);
  563. rc = gethostbyaddr_r(at2->addr,
  564. ((at2->family == AF_INET6)
  565. ? sizeof(struct in6_addr)
  566. : sizeof(struct in_addr)),
  567. at2->family,
  568. &th, tmpbuf, tmpbuflen,
  569. &h, &herrno);
  570. } while (rc == errno && herrno == NETDB_INTERNAL);
  571. if (rc != 0 && herrno == NETDB_INTERNAL) {
  572. __set_h_errno(herrno);
  573. return -EAI_SYSTEM;
  574. }
  575. if (h == NULL)
  576. c = inet_ntop(at2->family, at2->addr, buffer, sizeof(buffer));
  577. else
  578. c = h->h_name;
  579. if (c == NULL)
  580. return (GAIH_OKIFUNSPEC | -EAI_NONAME);
  581. namelen = strlen(c) + 1;
  582. } else
  583. namelen = 0;
  584. #if defined __UCLIBC_HAS_IPV6__
  585. if (at2->family == AF_INET6 || v4mapped) {
  586. family = AF_INET6;
  587. socklen = sizeof(struct sockaddr_in6);
  588. }
  589. #endif
  590. #if defined __UCLIBC_HAS_IPV4__ && defined __UCLIBC_HAS_IPV6__
  591. else
  592. #endif
  593. #if defined __UCLIBC_HAS_IPV4__
  594. {
  595. family = AF_INET;
  596. socklen = sizeof(struct sockaddr_in);
  597. }
  598. #endif
  599. for (st2 = st; st2 != NULL; st2 = st2->next) {
  600. if (req->ai_flags & AI_ADDRCONFIG) {
  601. if (family == AF_INET && !(seen & SEEN_IPV4))
  602. break;
  603. #if defined __UCLIBC_HAS_IPV6__
  604. else if (family == AF_INET6 && !(seen & SEEN_IPV6))
  605. break;
  606. #endif
  607. }
  608. *pai = malloc(sizeof(struct addrinfo) + socklen + namelen);
  609. if (*pai == NULL)
  610. return -EAI_MEMORY;
  611. (*pai)->ai_flags = req->ai_flags;
  612. (*pai)->ai_family = family;
  613. (*pai)->ai_socktype = st2->socktype;
  614. (*pai)->ai_protocol = st2->protocol;
  615. (*pai)->ai_addrlen = socklen;
  616. (*pai)->ai_addr = (void *) (*pai) + sizeof(struct addrinfo);
  617. #if defined SALEN
  618. (*pai)->ai_addr->sa_len = socklen;
  619. #endif
  620. (*pai)->ai_addr->sa_family = family;
  621. #if defined __UCLIBC_HAS_IPV6__
  622. if (family == AF_INET6) {
  623. struct sockaddr_in6 *sin6p = (struct sockaddr_in6 *) (*pai)->ai_addr;
  624. sin6p->sin6_flowinfo = 0;
  625. if (at2->family == AF_INET6) {
  626. memcpy(&sin6p->sin6_addr,
  627. at2->addr, sizeof(struct in6_addr));
  628. } else {
  629. sin6p->sin6_addr.s6_addr32[0] = 0;
  630. sin6p->sin6_addr.s6_addr32[1] = 0;
  631. sin6p->sin6_addr.s6_addr32[2] = htonl(0x0000ffff);
  632. memcpy(&sin6p->sin6_addr.s6_addr32[3],
  633. at2->addr, sizeof(sin6p->sin6_addr.s6_addr32[3]));
  634. }
  635. sin6p->sin6_port = st2->port;
  636. sin6p->sin6_scope_id = at2->scopeid;
  637. }
  638. #endif
  639. #if defined __UCLIBC_HAS_IPV4__ && defined __UCLIBC_HAS_IPV6__
  640. else
  641. #endif
  642. #if defined __UCLIBC_HAS_IPV4__
  643. {
  644. struct sockaddr_in *sinp = (struct sockaddr_in *) (*pai)->ai_addr;
  645. memcpy(&sinp->sin_addr, at2->addr, sizeof(struct in_addr));
  646. sinp->sin_port = st2->port;
  647. memset(sinp->sin_zero, '\0', sizeof(sinp->sin_zero));
  648. }
  649. #endif
  650. if (c) {
  651. (*pai)->ai_canonname = ((void *) (*pai) +
  652. sizeof(struct addrinfo) + socklen);
  653. strcpy((*pai)->ai_canonname, c);
  654. } else {
  655. (*pai)->ai_canonname = NULL;
  656. }
  657. (*pai)->ai_next = NULL;
  658. pai = &((*pai)->ai_next);
  659. }
  660. at2 = at2->next;
  661. }
  662. }
  663. return 0;
  664. }
  665. static const struct gaih gaih[] = {
  666. #if defined __UCLIBC_HAS_IPV6__
  667. { PF_INET6, gaih_inet },
  668. #endif
  669. { PF_INET, gaih_inet },
  670. #if 0
  671. { PF_LOCAL, gaih_local },
  672. #endif
  673. { PF_UNSPEC, NULL }
  674. };
  675. void
  676. freeaddrinfo(struct addrinfo *ai)
  677. {
  678. struct addrinfo *p;
  679. while (ai != NULL) {
  680. p = ai;
  681. ai = ai->ai_next;
  682. free(p);
  683. }
  684. }
  685. libc_hidden_def(freeaddrinfo)
  686. int
  687. getaddrinfo(const char *name, const char *service,
  688. const struct addrinfo *hints, struct addrinfo **pai)
  689. {
  690. int i = 0, j, last_i = 0;
  691. struct addrinfo *p = NULL, **end;
  692. const struct gaih *g = gaih, *pg = NULL;
  693. struct gaih_service gaih_service, *pservice;
  694. struct addrinfo default_hints;
  695. if (name != NULL && name[0] == '*' && name[1] == 0)
  696. name = NULL;
  697. if (service != NULL && service[0] == '*' && service[1] == 0)
  698. service = NULL;
  699. if (name == NULL && service == NULL)
  700. return EAI_NONAME;
  701. if (hints == NULL) {
  702. memset(&default_hints, 0, sizeof(default_hints));
  703. if (AF_UNSPEC)
  704. default_hints.ai_family = AF_UNSPEC;
  705. hints = &default_hints;
  706. }
  707. if (hints->ai_flags & ~(AI_PASSIVE|AI_CANONNAME|AI_NUMERICHOST|
  708. AI_ADDRCONFIG|AI_V4MAPPED|AI_NUMERICSERV|AI_ALL))
  709. return EAI_BADFLAGS;
  710. if ((hints->ai_flags & AI_CANONNAME) && name == NULL)
  711. return EAI_BADFLAGS;
  712. if (service && service[0]) {
  713. char *c;
  714. gaih_service.name = service;
  715. gaih_service.num = strtoul(gaih_service.name, &c, 10);
  716. if (*c != '\0') {
  717. if (hints->ai_flags & AI_NUMERICSERV)
  718. return EAI_NONAME;
  719. gaih_service.num = -1;
  720. } else {
  721. /*
  722. * Can't specify a numerical socket unless a protocol
  723. * family was given.
  724. */
  725. if (hints->ai_socktype == 0 && hints->ai_protocol == 0)
  726. return EAI_SERVICE;
  727. }
  728. pservice = &gaih_service;
  729. } else
  730. pservice = NULL;
  731. end = NULL;
  732. if (pai)
  733. end = &p;
  734. j = 0;
  735. while (g->gaih) {
  736. if (hints->ai_family == g->family || hints->ai_family == AF_UNSPEC) {
  737. if ((hints->ai_flags & AI_ADDRCONFIG) && !addrconfig(g->family)) {
  738. ++g;
  739. continue;
  740. }
  741. j++;
  742. if (pg == NULL || pg->gaih != g->gaih) {
  743. pg = g;
  744. i = g->gaih(name, pservice, hints, end);
  745. if (i != 0) {
  746. last_i = i;
  747. if (hints->ai_family == AF_UNSPEC && (i & GAIH_OKIFUNSPEC))
  748. continue;
  749. if (p)
  750. freeaddrinfo(p);
  751. return -(i & GAIH_EAI);
  752. }
  753. if (end)
  754. while (*end)
  755. end = &((*end)->ai_next);
  756. }
  757. }
  758. ++g;
  759. }
  760. if (j == 0)
  761. return EAI_FAMILY;
  762. if (p) {
  763. *pai = p;
  764. return 0;
  765. }
  766. if (pai == NULL && last_i == 0)
  767. return 0;
  768. /* if (p) - never happens, see above */
  769. /* freeaddrinfo(p); */
  770. return last_i ? -(last_i & GAIH_EAI) : EAI_NONAME;
  771. }
  772. libc_hidden_def(getaddrinfo)