getaddrinfo.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978
  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. #include <assert.h>
  46. #include <errno.h>
  47. #include <netdb.h>
  48. #ifdef __UCLIBC_HAS_TLS__
  49. #include <tls.h>
  50. #endif
  51. #include <resolv.h>
  52. #include <stdio.h>
  53. #include <stdlib.h>
  54. #include <string.h>
  55. #include <unistd.h>
  56. #include <stdbool.h>
  57. #include <arpa/inet.h>
  58. #include <sys/socket.h>
  59. #include <netinet/in.h>
  60. #include <sys/types.h>
  61. #include <sys/un.h>
  62. #include <sys/utsname.h>
  63. #include <net/if.h>
  64. #include <ifaddrs.h>
  65. #include "internal/parse_config.h"
  66. #define GAIH_OKIFUNSPEC 0x0100
  67. #define GAIH_EAI ~(GAIH_OKIFUNSPEC)
  68. #ifndef UNIX_PATH_MAX
  69. #define UNIX_PATH_MAX 108
  70. #endif
  71. /* Useful for having small structure members/global variables */
  72. typedef int8_t socktype_t;
  73. typedef int8_t family_t;
  74. typedef int8_t protocol_t;
  75. struct BUG_too_small {
  76. char BUG_socktype_t_too_small[(0
  77. | SOCK_STREAM
  78. | SOCK_DGRAM
  79. | SOCK_RAW
  80. ) <= 127 ? 1 : -1];
  81. char BUG_family_t_too_small[(0
  82. | AF_UNSPEC
  83. | AF_INET
  84. | AF_INET6
  85. ) <= 127 ? 1 : -1];
  86. char BUG_protocol_t_too_small[(0
  87. | IPPROTO_TCP
  88. | IPPROTO_UDP
  89. ) <= 127 ? 1 : -1];
  90. };
  91. struct gaih_service {
  92. const char *name;
  93. int num;
  94. };
  95. struct gaih_servtuple {
  96. struct gaih_servtuple *next;
  97. int socktype;
  98. int protocol;
  99. int port;
  100. };
  101. struct gaih_addrtuple {
  102. struct gaih_addrtuple *next;
  103. int family;
  104. char addr[16];
  105. uint32_t scopeid;
  106. };
  107. struct gaih_typeproto {
  108. socktype_t socktype;
  109. protocol_t protocol;
  110. int8_t protoflag;
  111. char name[4];
  112. };
  113. /* Values for `protoflag'. */
  114. #define GAI_PROTO_NOSERVICE 1
  115. #define GAI_PROTO_PROTOANY 2
  116. static const struct gaih_typeproto gaih_inet_typeproto[] = {
  117. { 0 , 0 , 0, "" },
  118. { SOCK_STREAM, IPPROTO_TCP, 0, "tcp" },
  119. { SOCK_DGRAM , IPPROTO_UDP, 0, "udp" },
  120. { SOCK_RAW , 0 , GAI_PROTO_PROTOANY|GAI_PROTO_NOSERVICE, "raw" },
  121. { 0 , 0 , 0, "" },
  122. };
  123. struct gaih {
  124. int family;
  125. int (*gaih)(const char *name, const struct gaih_service *service,
  126. const struct addrinfo *req, struct addrinfo **pai);
  127. };
  128. #define SEEN_IPV4 1
  129. #define SEEN_IPV6 2
  130. static unsigned __check_pf(void)
  131. {
  132. unsigned seen = 0;
  133. #if defined __UCLIBC_SUPPORT_AI_ADDRCONFIG__
  134. struct ifaddrs *ifa;
  135. struct ifaddrs *runp;
  136. /* Get the interface list via getifaddrs. */
  137. if (getifaddrs(&ifa) != 0) {
  138. /* We cannot determine what interfaces are available.
  139. * Be optimistic. */
  140. #if defined __UCLIBC_HAS_IPV4__
  141. seen |= SEEN_IPV4;
  142. #endif
  143. #if defined __UCLIBC_HAS_IPV6__
  144. seen |= SEEN_IPV6;
  145. #endif
  146. return seen;
  147. }
  148. for (runp = ifa; runp != NULL; runp = runp->ifa_next) {
  149. if (runp->ifa_addr == NULL)
  150. continue;
  151. #if defined __UCLIBC_HAS_IPV4__
  152. if (runp->ifa_addr->sa_family == PF_INET)
  153. seen |= SEEN_IPV4;
  154. #endif
  155. #if defined __UCLIBC_HAS_IPV6__
  156. if (runp->ifa_addr->sa_family == PF_INET6)
  157. seen |= SEEN_IPV6;
  158. #endif
  159. }
  160. freeifaddrs(ifa);
  161. #else
  162. /* AI_ADDRCONFIG is disabled, assume both ipv4 and ipv6 available. */
  163. #if defined __UCLIBC_HAS_IPV4__
  164. seen |= SEEN_IPV4;
  165. #endif
  166. #if defined __UCLIBC_HAS_IPV6__
  167. seen |= SEEN_IPV6;
  168. #endif
  169. #endif /* __UCLIBC_SUPPORT_AI_ADDRCONFIG__ */
  170. return seen;
  171. }
  172. static int addrconfig(sa_family_t af)
  173. {
  174. int s;
  175. int ret;
  176. int saved_errno = errno;
  177. unsigned seen;
  178. seen = __check_pf();
  179. #if defined __UCLIBC_HAS_IPV4__
  180. if (af == AF_INET)
  181. ret = seen & SEEN_IPV4;
  182. else
  183. #endif
  184. #if defined __UCLIBC_HAS_IPV6__
  185. if (af == AF_INET6)
  186. ret = seen & SEEN_IPV6;
  187. else
  188. #endif
  189. {
  190. s = socket(af, SOCK_DGRAM, 0);
  191. ret = 1; /* Assume PF_UNIX. */
  192. if (s < 0) {
  193. if (errno != EMFILE)
  194. ret = 0;
  195. } else
  196. close(s);
  197. }
  198. __set_errno(saved_errno);
  199. return ret;
  200. }
  201. #if 0
  202. /* Using Unix sockets this way is a security risk. */
  203. static int
  204. gaih_local(const char *name, const struct gaih_service *service,
  205. const struct addrinfo *req, struct addrinfo **pai)
  206. {
  207. struct utsname utsname;
  208. struct addrinfo *ai = *pai;
  209. if ((name != NULL) && (req->ai_flags & AI_NUMERICHOST))
  210. return (GAIH_OKIFUNSPEC | -EAI_NONAME);
  211. if ((name != NULL) || (req->ai_flags & AI_CANONNAME))
  212. if (uname(&utsname) < 0)
  213. return -EAI_SYSTEM;
  214. if (name != NULL) {
  215. if (strcmp(name, "localhost") &&
  216. strcmp(name, "local") &&
  217. strcmp(name, "unix") &&
  218. strcmp(name, utsname.nodename))
  219. return (GAIH_OKIFUNSPEC | -EAI_NONAME);
  220. }
  221. if (req->ai_protocol || req->ai_socktype) {
  222. const struct gaih_typeproto *tp = gaih_inet_typeproto + 1;
  223. while (tp->name[0]
  224. && ((tp->protoflag & GAI_PROTO_NOSERVICE) != 0
  225. || (req->ai_socktype != 0 && req->ai_socktype != tp->socktype)
  226. || (req->ai_protocol != 0 && !(tp->protoflag & GAI_PROTO_PROTOANY) && req->ai_protocol != tp->protocol))
  227. ) {
  228. ++tp;
  229. }
  230. if (! tp->name[0]) {
  231. if (req->ai_socktype)
  232. return (GAIH_OKIFUNSPEC | -EAI_SOCKTYPE);
  233. return (GAIH_OKIFUNSPEC | -EAI_SERVICE);
  234. }
  235. }
  236. *pai = ai = malloc(sizeof(struct addrinfo) + sizeof(struct sockaddr_un)
  237. + ((req->ai_flags & AI_CANONNAME)
  238. ? (strlen(utsname.nodename) + 1) : 0));
  239. if (ai == NULL)
  240. return -EAI_MEMORY;
  241. ai->ai_next = NULL;
  242. ai->ai_flags = req->ai_flags;
  243. ai->ai_family = AF_LOCAL;
  244. ai->ai_socktype = req->ai_socktype ? req->ai_socktype : SOCK_STREAM;
  245. ai->ai_protocol = req->ai_protocol;
  246. ai->ai_addrlen = sizeof(struct sockaddr_un);
  247. ai->ai_addr = (void *)ai + sizeof(struct addrinfo);
  248. #if 0 /* SALEN */
  249. ((struct sockaddr_un *)ai->ai_addr)->sun_len = sizeof(struct sockaddr_un);
  250. #endif /* SALEN */
  251. ((struct sockaddr_un *)ai->ai_addr)->sun_family = AF_LOCAL;
  252. memset(((struct sockaddr_un *)ai->ai_addr)->sun_path, 0, UNIX_PATH_MAX);
  253. if (service) {
  254. struct sockaddr_un *sunp = (struct sockaddr_un *)ai->ai_addr;
  255. if (strchr(service->name, '/') != NULL) {
  256. if (strlen(service->name) >= sizeof(sunp->sun_path))
  257. return GAIH_OKIFUNSPEC | -EAI_SERVICE;
  258. strcpy(sunp->sun_path, service->name);
  259. } else {
  260. if (strlen(P_tmpdir "/") + 1 + strlen(service->name) >= sizeof(sunp->sun_path))
  261. return (GAIH_OKIFUNSPEC | -EAI_SERVICE);
  262. stpcpy(stpcpy(sunp->sun_path, P_tmpdir "/"), service->name);
  263. }
  264. } else {
  265. /* This is a dangerous use of the interface since there is a time
  266. window between the test for the file and the actual creation
  267. (done by the caller) in which a file with the same name could
  268. be created. */
  269. char *buf = ((struct sockaddr_un *)ai->ai_addr)->sun_path;
  270. if (__path_search(buf, L_tmpnam, NULL, NULL, 0) != 0
  271. || __gen_tempname(buf, __GT_NOCREATE, 0, 0) != 0
  272. ) {
  273. return -EAI_SYSTEM;
  274. }
  275. }
  276. ai->ai_canonname = NULL;
  277. if (req->ai_flags & AI_CANONNAME)
  278. ai->ai_canonname = strcpy((char *)(ai + 1) + sizeof(struct sockaddr_un),
  279. utsname.nodename);
  280. return 0;
  281. }
  282. #endif /* 0 */
  283. static int
  284. gaih_inet_serv(const char *servicename, const struct gaih_typeproto *tp,
  285. const struct addrinfo *req, struct gaih_servtuple *st)
  286. {
  287. struct servent *s;
  288. size_t tmpbuflen = 1024;
  289. struct servent ts;
  290. char *tmpbuf;
  291. int r;
  292. while (1) {
  293. tmpbuf = alloca(tmpbuflen);
  294. r = getservbyname_r(servicename, tp->name, &ts, tmpbuf, tmpbuflen, &s);
  295. if (r == 0 && s != NULL)
  296. break;
  297. if (r != ERANGE)
  298. return (GAIH_OKIFUNSPEC | -EAI_SERVICE);
  299. tmpbuflen *= 2;
  300. }
  301. st->next = NULL;
  302. st->socktype = tp->socktype;
  303. st->protocol = ((tp->protoflag & GAI_PROTO_PROTOANY) ? req->ai_protocol : tp->protocol);
  304. st->port = s->s_port;
  305. return 0;
  306. }
  307. #if defined __UCLIBC_HAS_IPV6__
  308. static uint8_t __gai_precedence = 0; /* =1 - IPv6, IPv4
  309. =2 - IPv4, IPv6 */
  310. #endif
  311. /* NB: also uses h,pat,rc,no_data variables */
  312. #define gethosts(_family, _type) \
  313. { \
  314. int i, herrno; \
  315. size_t tmpbuflen; \
  316. struct hostent th; \
  317. char *tmpbuf; \
  318. \
  319. tmpbuflen = 512; \
  320. no_data = 0; \
  321. do { \
  322. tmpbuflen *= 2; \
  323. tmpbuf = alloca(tmpbuflen); \
  324. rc = gethostbyname2_r(name, _family, &th, tmpbuf, \
  325. tmpbuflen, &h, &herrno); \
  326. } while (rc == ERANGE && herrno == NETDB_INTERNAL); \
  327. if (rc != 0) { \
  328. if (herrno == NETDB_INTERNAL) { \
  329. __set_h_errno(herrno); \
  330. return -EAI_SYSTEM; \
  331. } \
  332. if (herrno == TRY_AGAIN) \
  333. no_data = EAI_AGAIN; \
  334. else \
  335. no_data = (herrno == NO_DATA); \
  336. } else if (h != NULL) { \
  337. for (i = 0; h->h_addr_list[i]; i++) { \
  338. if (*pat == NULL) { \
  339. *pat = alloca(sizeof(struct gaih_addrtuple)); \
  340. (*pat)->scopeid = 0; \
  341. } \
  342. (*pat)->next = NULL; \
  343. (*pat)->family = _family; \
  344. memcpy((*pat)->addr, h->h_addr_list[i], sizeof(_type)); \
  345. pat = &((*pat)->next); \
  346. } \
  347. } \
  348. }
  349. static int
  350. gaih_inet(const char *name, const struct gaih_service *service,
  351. const struct addrinfo *req, struct addrinfo **pai)
  352. {
  353. struct gaih_servtuple nullserv;
  354. const struct gaih_typeproto *tp;
  355. struct gaih_servtuple *st;
  356. struct gaih_addrtuple *at;
  357. int rc;
  358. int v4mapped = req->ai_family == PF_INET6 && (req->ai_flags & AI_V4MAPPED);
  359. unsigned seen = 0;
  360. if (req->ai_flags & AI_ADDRCONFIG) {
  361. /* "seen" is only used when AI_ADDRCONFIG is specified.
  362. Avoid unnecessary call to __check_pf() otherwise
  363. since it can be costly especially when RSBAC-Net is enabled. */
  364. seen = __check_pf();
  365. }
  366. memset(&nullserv, 0, sizeof(nullserv));
  367. tp = gaih_inet_typeproto;
  368. if (req->ai_protocol || req->ai_socktype) {
  369. ++tp;
  370. while (tp->name[0]) {
  371. if ((req->ai_socktype == 0 || req->ai_socktype == tp->socktype)
  372. && (req->ai_protocol == 0 || req->ai_protocol == tp->protocol || (tp->protoflag & GAI_PROTO_PROTOANY))
  373. ) {
  374. goto found;
  375. }
  376. ++tp;
  377. }
  378. if (req->ai_socktype)
  379. return (GAIH_OKIFUNSPEC | -EAI_SOCKTYPE);
  380. return (GAIH_OKIFUNSPEC | -EAI_SERVICE);
  381. found: ;
  382. }
  383. st = &nullserv;
  384. if (service != NULL) {
  385. if ((tp->protoflag & GAI_PROTO_NOSERVICE) != 0)
  386. return (GAIH_OKIFUNSPEC | -EAI_SERVICE);
  387. if (service->num < 0) {
  388. if (tp->name[0]) {
  389. st = alloca(sizeof(struct gaih_servtuple));
  390. rc = gaih_inet_serv(service->name, tp, req, st);
  391. if (rc)
  392. return rc;
  393. } else {
  394. struct gaih_servtuple **pst = &st;
  395. for (tp++; tp->name[0]; tp++) {
  396. struct gaih_servtuple *newp;
  397. if ((tp->protoflag & GAI_PROTO_NOSERVICE) != 0)
  398. continue;
  399. if (req->ai_socktype != 0 && req->ai_socktype != tp->socktype)
  400. continue;
  401. if (req->ai_protocol != 0
  402. && !(tp->protoflag & GAI_PROTO_PROTOANY)
  403. && req->ai_protocol != tp->protocol)
  404. continue;
  405. newp = alloca(sizeof(struct gaih_servtuple));
  406. rc = gaih_inet_serv(service->name, tp, req, newp);
  407. if (rc) {
  408. if (rc & GAIH_OKIFUNSPEC)
  409. continue;
  410. return rc;
  411. }
  412. *pst = newp;
  413. pst = &(newp->next);
  414. }
  415. if (st == &nullserv)
  416. return (GAIH_OKIFUNSPEC | -EAI_SERVICE);
  417. }
  418. } else {
  419. st = alloca(sizeof(struct gaih_servtuple));
  420. st->next = NULL;
  421. st->socktype = tp->socktype;
  422. st->protocol = ((tp->protoflag & GAI_PROTO_PROTOANY)
  423. ? req->ai_protocol : tp->protocol);
  424. st->port = htons(service->num);
  425. }
  426. } else if (req->ai_socktype || req->ai_protocol) {
  427. st = alloca(sizeof(struct gaih_servtuple));
  428. st->next = NULL;
  429. st->socktype = tp->socktype;
  430. st->protocol = ((tp->protoflag & GAI_PROTO_PROTOANY)
  431. ? req->ai_protocol : tp->protocol);
  432. st->port = 0;
  433. } else {
  434. /*
  435. * Neither socket type nor protocol is set. Return all socket types
  436. * we know about.
  437. */
  438. struct gaih_servtuple **lastp = &st;
  439. for (++tp; tp->name[0]; ++tp) {
  440. struct gaih_servtuple *newp;
  441. newp = alloca(sizeof(struct gaih_servtuple));
  442. newp->next = NULL;
  443. newp->socktype = tp->socktype;
  444. newp->protocol = tp->protocol;
  445. newp->port = 0;
  446. *lastp = newp;
  447. lastp = &newp->next;
  448. }
  449. }
  450. at = NULL;
  451. if (name != NULL) {
  452. at = alloca(sizeof(struct gaih_addrtuple));
  453. at->family = AF_UNSPEC;
  454. at->scopeid = 0;
  455. at->next = NULL;
  456. if (inet_pton(AF_INET, name, at->addr) > 0) {
  457. if (req->ai_family != AF_UNSPEC && req->ai_family != AF_INET && !v4mapped)
  458. return -EAI_FAMILY;
  459. at->family = AF_INET;
  460. }
  461. #if defined __UCLIBC_HAS_IPV6__
  462. if (at->family == AF_UNSPEC) {
  463. char *namebuf = strdupa(name);
  464. char *scope_delim;
  465. scope_delim = strchr(namebuf, SCOPE_DELIMITER);
  466. if (scope_delim != NULL)
  467. *scope_delim = '\0';
  468. if (inet_pton(AF_INET6, namebuf, at->addr) > 0) {
  469. if (req->ai_family != AF_UNSPEC && req->ai_family != AF_INET6)
  470. return -EAI_FAMILY;
  471. at->family = AF_INET6;
  472. if (scope_delim != NULL) {
  473. int try_numericscope = 0;
  474. uint32_t *a32 = (uint32_t*)at->addr;
  475. if (IN6_IS_ADDR_LINKLOCAL(a32) || IN6_IS_ADDR_MC_LINKLOCAL(at->addr)) {
  476. at->scopeid = if_nametoindex(scope_delim + 1);
  477. if (at->scopeid == 0)
  478. try_numericscope = 1;
  479. } else
  480. try_numericscope = 1;
  481. if (try_numericscope != 0) {
  482. char *end;
  483. assert(sizeof(uint32_t) <= sizeof(unsigned long));
  484. at->scopeid = (uint32_t)strtoul(scope_delim + 1, &end, 10);
  485. if (*end != '\0')
  486. return (GAIH_OKIFUNSPEC | -EAI_NONAME);
  487. }
  488. }
  489. }
  490. }
  491. #endif
  492. if (at->family == AF_UNSPEC && !(req->ai_flags & AI_NUMERICHOST)) {
  493. struct hostent *h;
  494. struct gaih_addrtuple **pat = &at;
  495. int no_data, no_inet6_data;
  496. #if defined __UCLIBC_HAS_IPV6__
  497. bool first_try = true;
  498. #endif
  499. /*
  500. * If we are looking for both IPv4 and IPv6 address we don't want
  501. * the lookup functions to automatically promote IPv4 addresses to
  502. * IPv6 addresses.
  503. */
  504. no_inet6_data = no_data = 0;
  505. #if defined __UCLIBC_HAS_IPV6__
  506. if (__gai_precedence == 2)
  507. goto try_v4;
  508. try_v6:
  509. if (req->ai_family == AF_UNSPEC || req->ai_family == AF_INET6)
  510. if (!(req->ai_flags & AI_ADDRCONFIG) || (seen & SEEN_IPV6))
  511. gethosts(AF_INET6, struct in6_addr);
  512. no_inet6_data = no_data;
  513. if (!first_try)
  514. goto tried_all;
  515. first_try = false;
  516. try_v4:
  517. #endif
  518. if (req->ai_family == AF_INET
  519. || (!v4mapped && req->ai_family == AF_UNSPEC)
  520. || (v4mapped && (no_inet6_data != 0 || (req->ai_flags & AI_ALL)))
  521. ) {
  522. if (!(req->ai_flags & AI_ADDRCONFIG) || (seen & SEEN_IPV4))
  523. gethosts(AF_INET, struct in_addr);
  524. }
  525. #if defined __UCLIBC_HAS_IPV6__
  526. if (first_try) {
  527. first_try = false;
  528. goto try_v6;
  529. }
  530. tried_all:
  531. #endif
  532. if (no_data != 0 && no_inet6_data != 0) {
  533. /* If both requests timed out report this. */
  534. if (no_data == EAI_AGAIN && no_inet6_data == EAI_AGAIN)
  535. return -EAI_AGAIN;
  536. /*
  537. * We made requests but they turned out no data.
  538. * The name is known, though.
  539. */
  540. return (GAIH_OKIFUNSPEC | -EAI_AGAIN);
  541. }
  542. }
  543. if (at->family == AF_UNSPEC)
  544. return (GAIH_OKIFUNSPEC | -EAI_NONAME);
  545. } else {
  546. struct gaih_addrtuple *atr;
  547. atr = at = alloca(sizeof(struct gaih_addrtuple));
  548. memset(at, '\0', sizeof(struct gaih_addrtuple));
  549. if (req->ai_family == 0) {
  550. at->next = alloca(sizeof(struct gaih_addrtuple));
  551. memset(at->next, '\0', sizeof(struct gaih_addrtuple));
  552. }
  553. #if defined __UCLIBC_HAS_IPV6__
  554. if (req->ai_family == 0 || req->ai_family == AF_INET6) {
  555. at->family = AF_INET6;
  556. if ((req->ai_flags & AI_PASSIVE) == 0)
  557. memcpy(at->addr, &in6addr_loopback, sizeof(struct in6_addr));
  558. atr = at->next;
  559. }
  560. #endif
  561. if (req->ai_family == 0 || req->ai_family == AF_INET) {
  562. atr->family = AF_INET;
  563. if ((req->ai_flags & AI_PASSIVE) == 0) {
  564. uint32_t *a = (uint32_t*)atr->addr;
  565. *a = htonl(INADDR_LOOPBACK);
  566. }
  567. }
  568. }
  569. if (pai == NULL)
  570. return 0;
  571. {
  572. const char *c = NULL;
  573. struct gaih_servtuple *st2;
  574. struct gaih_addrtuple *at2 = at;
  575. size_t socklen, namelen;
  576. sa_family_t family;
  577. /*
  578. * buffer is the size of an unformatted IPv6 address in
  579. * printable format.
  580. */
  581. char buffer[sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255")];
  582. while (at2 != NULL) {
  583. c = inet_ntop(at2->family, at2->addr, buffer, sizeof(buffer));
  584. if (c) {
  585. namelen = strlen(c) + 1;
  586. } else if (req->ai_flags & AI_CANONNAME) {
  587. struct hostent *h = NULL;
  588. int herrno;
  589. struct hostent th;
  590. size_t tmpbuflen = 512;
  591. char *tmpbuf;
  592. /* Hint says numeric, but address is not */
  593. if (req->ai_flags & AI_NUMERICHOST)
  594. return -EAI_NONAME;
  595. do {
  596. tmpbuflen *= 2;
  597. tmpbuf = alloca(tmpbuflen);
  598. rc = gethostbyaddr_r(at2->addr,
  599. #ifdef __UCLIBC_HAS_IPV6__
  600. ((at2->family == AF_INET6)
  601. ? sizeof(struct in6_addr)
  602. : sizeof(struct in_addr)),
  603. #else
  604. sizeof(struct in_addr),
  605. #endif
  606. at2->family,
  607. &th, tmpbuf, tmpbuflen,
  608. &h, &herrno);
  609. } while (rc == ERANGE && herrno == NETDB_INTERNAL);
  610. if (rc != 0 && herrno == NETDB_INTERNAL) {
  611. __set_h_errno(herrno);
  612. return -EAI_SYSTEM;
  613. }
  614. if (h != NULL)
  615. c = h->h_name;
  616. if (c == NULL)
  617. return (GAIH_OKIFUNSPEC | -EAI_NONAME);
  618. namelen = strlen(c) + 1;
  619. } else
  620. namelen = 0;
  621. #if defined __UCLIBC_HAS_IPV6__
  622. if (at2->family == AF_INET6 || v4mapped) {
  623. family = AF_INET6;
  624. socklen = sizeof(struct sockaddr_in6);
  625. }
  626. #endif
  627. #if defined __UCLIBC_HAS_IPV4__ && defined __UCLIBC_HAS_IPV6__
  628. else
  629. #endif
  630. #if defined __UCLIBC_HAS_IPV4__
  631. {
  632. family = AF_INET;
  633. socklen = sizeof(struct sockaddr_in);
  634. }
  635. #endif
  636. for (st2 = st; st2 != NULL; st2 = st2->next) {
  637. if (req->ai_flags & AI_ADDRCONFIG) {
  638. if (family == AF_INET && !(seen & SEEN_IPV4))
  639. break;
  640. #if defined __UCLIBC_HAS_IPV6__
  641. else if (family == AF_INET6 && !(seen & SEEN_IPV6))
  642. break;
  643. #endif
  644. }
  645. *pai = malloc(sizeof(struct addrinfo) + socklen + namelen);
  646. if (*pai == NULL)
  647. return -EAI_MEMORY;
  648. (*pai)->ai_flags = req->ai_flags;
  649. (*pai)->ai_family = family;
  650. (*pai)->ai_socktype = st2->socktype;
  651. (*pai)->ai_protocol = st2->protocol;
  652. (*pai)->ai_addrlen = socklen;
  653. (*pai)->ai_addr = (void *) (*pai) + sizeof(struct addrinfo);
  654. #if 0 /* SALEN */
  655. (*pai)->ai_addr->sa_len = socklen;
  656. #endif
  657. (*pai)->ai_addr->sa_family = family;
  658. #if defined __UCLIBC_HAS_IPV6__
  659. if (family == AF_INET6) {
  660. struct sockaddr_in6 *sin6p = (struct sockaddr_in6 *) (*pai)->ai_addr;
  661. sin6p->sin6_flowinfo = 0;
  662. if (at2->family == AF_INET6) {
  663. memcpy(&sin6p->sin6_addr,
  664. at2->addr, sizeof(struct in6_addr));
  665. } else {
  666. sin6p->sin6_addr.s6_addr32[0] = 0;
  667. sin6p->sin6_addr.s6_addr32[1] = 0;
  668. sin6p->sin6_addr.s6_addr32[2] = htonl(0x0000ffff);
  669. memcpy(&sin6p->sin6_addr.s6_addr32[3],
  670. at2->addr, sizeof(sin6p->sin6_addr.s6_addr32[3]));
  671. }
  672. sin6p->sin6_port = st2->port;
  673. sin6p->sin6_scope_id = at2->scopeid;
  674. }
  675. #endif
  676. #if defined __UCLIBC_HAS_IPV4__ && defined __UCLIBC_HAS_IPV6__
  677. else
  678. #endif
  679. #if defined __UCLIBC_HAS_IPV4__
  680. {
  681. struct sockaddr_in *sinp = (struct sockaddr_in *) (*pai)->ai_addr;
  682. memcpy(&sinp->sin_addr, at2->addr, sizeof(struct in_addr));
  683. sinp->sin_port = st2->port;
  684. memset(sinp->sin_zero, '\0', sizeof(sinp->sin_zero));
  685. }
  686. #endif
  687. if (c) {
  688. (*pai)->ai_canonname = ((void *) (*pai) +
  689. sizeof(struct addrinfo) + socklen);
  690. strcpy((*pai)->ai_canonname, c);
  691. } else {
  692. (*pai)->ai_canonname = NULL;
  693. }
  694. (*pai)->ai_next = NULL;
  695. pai = &((*pai)->ai_next);
  696. }
  697. at2 = at2->next;
  698. }
  699. }
  700. return 0;
  701. }
  702. static const struct gaih gaih[] = {
  703. #if defined __UCLIBC_HAS_IPV6__
  704. { PF_INET6, gaih_inet },
  705. #endif
  706. { PF_INET, gaih_inet },
  707. #if 0
  708. { PF_LOCAL, gaih_local },
  709. #endif
  710. { PF_UNSPEC, NULL }
  711. };
  712. #if defined __UCLIBC_HAS_IPV6__
  713. /*
  714. * A call to getaddrinfo might return multiple answers. To provide
  715. * possibility to change the sorting we must use /etc/gai.conf file,
  716. * like glibc.
  717. *
  718. * gai.conf format:
  719. *
  720. * label <netmask> <precedence>
  721. * The value is added to the label table used in
  722. * the RFC 3484 sorting. If any label definition
  723. * is present in the configuration file is present,
  724. * the default table is not used. All the label
  725. * definitions of the default table which are to
  726. * be maintained have to be duplicated.
  727. * precedence <netmask> <precedence>
  728. * This keyword is similar to label, but instead
  729. * the value is added to the precedence table as
  730. * specified in RFC 3484. Once again, the presence
  731. * of a single precedence line in the configuration
  732. * file causes the default table to not be used.
  733. *
  734. * The simplified uclibc's implementation allows to change the IPv4/IPv6
  735. * sorting order for a whole address space only, i.e
  736. * "precedence ::ffff:0:0/96 100" is only supported.
  737. */
  738. static void __gai_conf_parse(void)
  739. {
  740. /* NO reread of /etc/gai.conf on change. */
  741. if (__gai_precedence != 0)
  742. return;
  743. __gai_precedence = 1; /* default IPv6 */
  744. parser_t *parser;
  745. char **tok = NULL;
  746. parser = config_open("/etc/gai.conf");
  747. if (!parser)
  748. return;
  749. while (config_read(parser, &tok, 3, 3, "# \t", PARSE_NORMAL)) {
  750. if (strcmp(tok[0], "precedence") == 0) {
  751. char *pfx;
  752. struct in6_addr mask;
  753. pfx = strchr(tok[1], '/');
  754. if (!pfx)
  755. continue;
  756. *(pfx++) = 0;
  757. if (inet_pton(AF_INET6, tok[1], &mask) <= 0)
  758. continue;
  759. if (IN6_IS_ADDR_V4MAPPED(&mask)
  760. && mask.s6_addr32[3] == 0
  761. && atoi(pfx) == 96 && atoi(tok[2]) == 100)
  762. __gai_precedence = 2; /* IPv4 first */
  763. }
  764. }
  765. config_close(parser);
  766. }
  767. #else
  768. # define __gai_conf_parse(x)
  769. #endif /* __UCLIBC_HAS_IPV6__ */
  770. void
  771. freeaddrinfo(struct addrinfo *ai)
  772. {
  773. struct addrinfo *p;
  774. while (ai != NULL) {
  775. p = ai;
  776. ai = ai->ai_next;
  777. free(p);
  778. }
  779. }
  780. libc_hidden_def(freeaddrinfo)
  781. int
  782. getaddrinfo(const char *name, const char *service,
  783. const struct addrinfo *hints, struct addrinfo **pai)
  784. {
  785. int i, j, last_i;
  786. struct addrinfo *p, **end;
  787. const struct gaih *g, *pg;
  788. struct gaih_service gaih_service, *pservice;
  789. struct addrinfo default_hints;
  790. if (name != NULL && name[0] == '*' && name[1] == 0)
  791. name = NULL;
  792. if (service != NULL && service[0] == '*' && service[1] == 0)
  793. service = NULL;
  794. if (name == NULL && service == NULL)
  795. return EAI_NONAME;
  796. if (hints == NULL) {
  797. memset(&default_hints, 0, sizeof(default_hints));
  798. if (AF_UNSPEC != 0)
  799. default_hints.ai_family = AF_UNSPEC;
  800. hints = &default_hints;
  801. }
  802. if (hints->ai_flags & ~(AI_PASSIVE|AI_CANONNAME|AI_NUMERICHOST|
  803. AI_ADDRCONFIG|AI_V4MAPPED|AI_NUMERICSERV|AI_ALL))
  804. return EAI_BADFLAGS;
  805. if ((hints->ai_flags & AI_CANONNAME) && name == NULL)
  806. return EAI_BADFLAGS;
  807. if (service && service[0]) {
  808. char *c;
  809. gaih_service.name = service;
  810. gaih_service.num = strtoul(gaih_service.name, &c, 10);
  811. if (*c != '\0') {
  812. if (hints->ai_flags & AI_NUMERICSERV)
  813. return EAI_NONAME;
  814. gaih_service.num = -1;
  815. }
  816. pservice = &gaih_service;
  817. } else
  818. pservice = NULL;
  819. __gai_conf_parse();
  820. g = gaih;
  821. pg = NULL;
  822. p = NULL;
  823. end = NULL;
  824. if (pai)
  825. end = &p;
  826. i = 0;
  827. last_i = 0;
  828. j = 0;
  829. while (g->gaih) {
  830. if (hints->ai_family == g->family || hints->ai_family == AF_UNSPEC) {
  831. if ((hints->ai_flags & AI_ADDRCONFIG) && !addrconfig(g->family)) {
  832. ++g;
  833. continue;
  834. }
  835. j++;
  836. if (pg == NULL || pg->gaih != g->gaih) {
  837. pg = g;
  838. i = g->gaih(name, pservice, hints, end);
  839. if (i != 0) {
  840. last_i = i;
  841. if (hints->ai_family == AF_UNSPEC && (i & GAIH_OKIFUNSPEC))
  842. continue;
  843. /*if (p) - freeaddrinfo works ok on NULL too */
  844. freeaddrinfo(p);
  845. return -(i & GAIH_EAI);
  846. }
  847. if (end)
  848. while (*end)
  849. end = &((*end)->ai_next);
  850. }
  851. }
  852. ++g;
  853. }
  854. if (j == 0)
  855. return EAI_FAMILY;
  856. if (p) {
  857. *pai = p;
  858. return 0;
  859. }
  860. if (pai == NULL && last_i == 0)
  861. return 0;
  862. /* if (p) - never happens, see above */
  863. /* freeaddrinfo(p); */
  864. return last_i ? -(last_i & GAIH_EAI) : EAI_NONAME;
  865. }
  866. libc_hidden_def(getaddrinfo)