remove some stray trailing space characters
[musl] / src / network / gethostbyaddr_r.c
1 #define _GNU_SOURCE
2
3 #include <sys/socket.h>
4 #include <netdb.h>
5 #include <string.h>
6 #include <netinet/in.h>
7 #include <errno.h>
8 #include <inttypes.h>
9
10 int gethostbyaddr_r(const void *a, socklen_t l, int af,
11         struct hostent *h, char *buf, size_t buflen,
12         struct hostent **res, int *err)
13 {
14         union {
15                 struct sockaddr_in sin;
16                 struct sockaddr_in6 sin6;
17         } sa = { .sin.sin_family = af };
18         socklen_t sl = af==AF_INET6 ? sizeof sa.sin6 : sizeof sa.sin;
19         int i;
20
21         /* Load address argument into sockaddr structure */
22         if (af==AF_INET6 && l==16) memcpy(&sa.sin6.sin6_addr, a, 16);
23         else if (af==AF_INET && l==4) memcpy(&sa.sin.sin_addr, a, 4);
24         else {
25                 *err = NO_RECOVERY;
26                 return -1;
27         }
28
29         /* Align buffer and check for space for pointers and ip address */
30         i = (uintptr_t)buf & sizeof(char *)-1;
31         if (!i) i = sizeof(char *);
32         if (buflen <= 5*sizeof(char *)-i + l) {
33                 errno = ERANGE;
34                 return -1;
35         }
36         buf += sizeof(char *)-i;
37         buflen -= 5*sizeof(char *)-i + l;
38
39         h->h_addr_list = (void *)buf;
40         buf += 2*sizeof(char *);
41         h->h_aliases = (void *)buf;
42         buf += 2*sizeof(char *);
43
44         h->h_addr_list[0] = buf;
45         memcpy(h->h_addr_list[0], a, l);
46         buf += l;
47         h->h_addr_list[1] = 0;
48         h->h_aliases[0] = buf;
49         h->h_aliases[1] = 0;
50
51         switch (getnameinfo((void *)&sa, sl, buf, buflen, 0, 0, 0)) {
52         case EAI_AGAIN:
53                 *err = TRY_AGAIN;
54                 return -1;
55         case EAI_OVERFLOW:
56                 errno = ERANGE;
57         default:
58         case EAI_MEMORY:
59         case EAI_SYSTEM:
60         case EAI_FAIL:
61                 *err = NO_RECOVERY;
62                 return -1;
63         case 0:
64                 break;
65         }
66
67         h->h_addrtype = af;
68         h->h_name = h->h_aliases[0];
69         *res = h;
70         return 0;
71 }