Martin v. Löwis | 01dfdb3 | 2001-06-23 16:30:13 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. |
| 3 | * All rights reserved. |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 4 | * |
Martin v. Löwis | 01dfdb3 | 2001-06-23 16:30:13 +0000 | [diff] [blame] | 5 | * Redistribution and use in source and binary forms, with or without |
| 6 | * modification, are permitted provided that the following conditions |
| 7 | * are met: |
| 8 | * 1. Redistributions of source code must retain the above copyright |
| 9 | * notice, this list of conditions and the following disclaimer. |
| 10 | * 2. Redistributions in binary form must reproduce the above copyright |
| 11 | * notice, this list of conditions and the following disclaimer in the |
| 12 | * documentation and/or other materials provided with the distribution. |
| 13 | * 3. Neither the name of the project nor the names of its contributors |
| 14 | * may be used to endorse or promote products derived from this software |
| 15 | * without specific prior written permission. |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 16 | * |
Martin v. Löwis | 01dfdb3 | 2001-06-23 16:30:13 +0000 | [diff] [blame] | 17 | * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND |
| 18 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 19 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 20 | * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE |
| 21 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 22 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 23 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 24 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 25 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 26 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 27 | * SUCH DAMAGE. |
| 28 | */ |
| 29 | |
| 30 | /* |
| 31 | * Issues to be discussed: |
| 32 | * - Thread safe-ness must be checked |
| 33 | * - Return values. There seems to be no standard for return value (RFC2133) |
| 34 | * but INRIA implementation returns EAI_xxx defined for getaddrinfo(). |
| 35 | */ |
| 36 | |
| 37 | #if 0 |
| 38 | #include <sys/types.h> |
| 39 | #include <sys/socket.h> |
| 40 | #include <netinet/in.h> |
| 41 | #include <arpa/inet.h> |
| 42 | #include <arpa/nameser.h> |
| 43 | #include <netdb.h> |
| 44 | #include <resolv.h> |
| 45 | #include <string.h> |
| 46 | #include <stddef.h> |
| 47 | |
| 48 | #include "addrinfo.h" |
| 49 | #endif |
| 50 | |
| 51 | #define SUCCESS 0 |
| 52 | #define YES 1 |
| 53 | #define NO 0 |
| 54 | |
| 55 | static struct gni_afd { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 56 | int a_af; |
| 57 | int a_addrlen; |
| 58 | int a_socklen; |
| 59 | int a_off; |
Martin v. Löwis | 01dfdb3 | 2001-06-23 16:30:13 +0000 | [diff] [blame] | 60 | } gni_afdl [] = { |
Martin v. Löwis | 44ddbde | 2001-12-02 10:15:37 +0000 | [diff] [blame] | 61 | #ifdef ENABLE_IPV6 |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 62 | {PF_INET6, sizeof(struct in6_addr), sizeof(struct sockaddr_in6), |
| 63 | offsetof(struct sockaddr_in6, sin6_addr)}, |
Martin v. Löwis | 01dfdb3 | 2001-06-23 16:30:13 +0000 | [diff] [blame] | 64 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 65 | {PF_INET, sizeof(struct in_addr), sizeof(struct sockaddr_in), |
| 66 | offsetof(struct sockaddr_in, sin_addr)}, |
| 67 | {0, 0, 0}, |
Martin v. Löwis | 01dfdb3 | 2001-06-23 16:30:13 +0000 | [diff] [blame] | 68 | }; |
| 69 | |
| 70 | struct gni_sockinet { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 71 | u_char si_len; |
| 72 | u_char si_family; |
| 73 | u_short si_port; |
Martin v. Löwis | 01dfdb3 | 2001-06-23 16:30:13 +0000 | [diff] [blame] | 74 | }; |
| 75 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 76 | #define ENI_NOSOCKET 0 |
| 77 | #define ENI_NOSERVNAME 1 |
| 78 | #define ENI_NOHOSTNAME 2 |
| 79 | #define ENI_MEMORY 3 |
| 80 | #define ENI_SYSTEM 4 |
| 81 | #define ENI_FAMILY 5 |
| 82 | #define ENI_SALEN 6 |
Martin v. Löwis | 01dfdb3 | 2001-06-23 16:30:13 +0000 | [diff] [blame] | 83 | |
Martin v. Löwis | f95dd0a | 2001-08-15 17:14:33 +0000 | [diff] [blame] | 84 | /* forward declaration to make gcc happy */ |
| 85 | int getnameinfo Py_PROTO((const struct sockaddr *, size_t, char *, size_t, |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 86 | char *, size_t, int)); |
Martin v. Löwis | f95dd0a | 2001-08-15 17:14:33 +0000 | [diff] [blame] | 87 | |
Martin v. Löwis | 01dfdb3 | 2001-06-23 16:30:13 +0000 | [diff] [blame] | 88 | int |
| 89 | getnameinfo(sa, salen, host, hostlen, serv, servlen, flags) |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 90 | const struct sockaddr *sa; |
| 91 | size_t salen; |
| 92 | char *host; |
| 93 | size_t hostlen; |
| 94 | char *serv; |
| 95 | size_t servlen; |
| 96 | int flags; |
Martin v. Löwis | 01dfdb3 | 2001-06-23 16:30:13 +0000 | [diff] [blame] | 97 | { |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 98 | struct gni_afd *gni_afd; |
| 99 | struct servent *sp; |
| 100 | struct hostent *hp; |
| 101 | u_short port; |
| 102 | int family, len, i; |
| 103 | char *addr, *p; |
| 104 | u_long v4a; |
Martin v. Löwis | 44ddbde | 2001-12-02 10:15:37 +0000 | [diff] [blame] | 105 | #ifdef ENABLE_IPV6 |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 106 | u_char pfx; |
Martin v. Löwis | c925b153 | 2001-07-21 09:42:15 +0000 | [diff] [blame] | 107 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 108 | int h_error; |
| 109 | char numserv[512]; |
| 110 | char numaddr[512]; |
Martin v. Löwis | 01dfdb3 | 2001-06-23 16:30:13 +0000 | [diff] [blame] | 111 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 112 | if (sa == NULL) |
| 113 | return ENI_NOSOCKET; |
Martin v. Löwis | 01dfdb3 | 2001-06-23 16:30:13 +0000 | [diff] [blame] | 114 | |
| 115 | #ifdef HAVE_SOCKADDR_SA_LEN |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 116 | len = sa->sa_len; |
| 117 | if (len != salen) return ENI_SALEN; |
Martin v. Löwis | 01dfdb3 | 2001-06-23 16:30:13 +0000 | [diff] [blame] | 118 | #else |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 119 | len = salen; |
Martin v. Löwis | 01dfdb3 | 2001-06-23 16:30:13 +0000 | [diff] [blame] | 120 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 121 | |
| 122 | family = sa->sa_family; |
| 123 | for (i = 0; gni_afdl[i].a_af; i++) |
| 124 | if (gni_afdl[i].a_af == family) { |
| 125 | gni_afd = &gni_afdl[i]; |
| 126 | goto found; |
| 127 | } |
| 128 | return ENI_FAMILY; |
| 129 | |
Martin v. Löwis | 01dfdb3 | 2001-06-23 16:30:13 +0000 | [diff] [blame] | 130 | found: |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 131 | if (len != gni_afd->a_socklen) return ENI_SALEN; |
Martin v. Löwis | 01dfdb3 | 2001-06-23 16:30:13 +0000 | [diff] [blame] | 132 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 133 | port = ((struct gni_sockinet *)sa)->si_port; /* network byte order */ |
| 134 | addr = (char *)sa + gni_afd->a_off; |
Martin v. Löwis | 01dfdb3 | 2001-06-23 16:30:13 +0000 | [diff] [blame] | 135 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 136 | if (serv == NULL || servlen == 0) { |
| 137 | /* what we should do? */ |
| 138 | } else if (flags & NI_NUMERICSERV) { |
| 139 | sprintf(numserv, "%d", ntohs(port)); |
| 140 | if (strlen(numserv) > servlen) |
| 141 | return ENI_MEMORY; |
| 142 | strcpy(serv, numserv); |
| 143 | } else { |
| 144 | sp = getservbyport(port, (flags & NI_DGRAM) ? "udp" : "tcp"); |
| 145 | if (sp) { |
| 146 | if (strlen(sp->s_name) > servlen) |
| 147 | return ENI_MEMORY; |
| 148 | strcpy(serv, sp->s_name); |
| 149 | } else |
| 150 | return ENI_NOSERVNAME; |
| 151 | } |
| 152 | |
| 153 | switch (sa->sa_family) { |
| 154 | case AF_INET: |
| 155 | v4a = ((struct sockaddr_in *)sa)->sin_addr.s_addr; |
| 156 | if (IN_MULTICAST(v4a) || IN_EXPERIMENTAL(v4a)) |
| 157 | flags |= NI_NUMERICHOST; |
| 158 | v4a >>= IN_CLASSA_NSHIFT; |
| 159 | if (v4a == 0 || v4a == IN_LOOPBACKNET) |
| 160 | flags |= NI_NUMERICHOST; |
| 161 | break; |
Martin v. Löwis | 44ddbde | 2001-12-02 10:15:37 +0000 | [diff] [blame] | 162 | #ifdef ENABLE_IPV6 |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 163 | case AF_INET6: |
Antoine Pitrou | 1fa9f7b | 2012-08-02 20:37:12 +0200 | [diff] [blame] | 164 | pfx = ((struct sockaddr_in6 *)sa)->sin6_addr.s6_addr[0]; |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 165 | if (pfx == 0 || pfx == 0xfe || pfx == 0xff) |
| 166 | flags |= NI_NUMERICHOST; |
| 167 | break; |
Martin v. Löwis | 01dfdb3 | 2001-06-23 16:30:13 +0000 | [diff] [blame] | 168 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 169 | } |
| 170 | if (host == NULL || hostlen == 0) { |
| 171 | /* what should we do? */ |
| 172 | } else if (flags & NI_NUMERICHOST) { |
| 173 | if (inet_ntop(gni_afd->a_af, addr, numaddr, sizeof(numaddr)) |
| 174 | == NULL) |
| 175 | return ENI_SYSTEM; |
| 176 | if (strlen(numaddr) > hostlen) |
| 177 | return ENI_MEMORY; |
| 178 | strcpy(host, numaddr); |
| 179 | } else { |
Martin v. Löwis | 44ddbde | 2001-12-02 10:15:37 +0000 | [diff] [blame] | 180 | #ifdef ENABLE_IPV6 |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 181 | hp = getipnodebyaddr(addr, gni_afd->a_addrlen, gni_afd->a_af, &h_error); |
Martin v. Löwis | 01dfdb3 | 2001-06-23 16:30:13 +0000 | [diff] [blame] | 182 | #else |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 183 | hp = gethostbyaddr(addr, gni_afd->a_addrlen, gni_afd->a_af); |
| 184 | h_error = h_errno; |
Martin v. Löwis | 01dfdb3 | 2001-06-23 16:30:13 +0000 | [diff] [blame] | 185 | #endif |
| 186 | |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 187 | if (hp) { |
| 188 | if (flags & NI_NOFQDN) { |
| 189 | p = strchr(hp->h_name, '.'); |
| 190 | if (p) *p = '\0'; |
| 191 | } |
| 192 | if (strlen(hp->h_name) > hostlen) { |
Martin v. Löwis | 44ddbde | 2001-12-02 10:15:37 +0000 | [diff] [blame] | 193 | #ifdef ENABLE_IPV6 |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 194 | freehostent(hp); |
Martin v. Löwis | 01dfdb3 | 2001-06-23 16:30:13 +0000 | [diff] [blame] | 195 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 196 | return ENI_MEMORY; |
| 197 | } |
| 198 | strcpy(host, hp->h_name); |
Martin v. Löwis | 44ddbde | 2001-12-02 10:15:37 +0000 | [diff] [blame] | 199 | #ifdef ENABLE_IPV6 |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 200 | freehostent(hp); |
Martin v. Löwis | 01dfdb3 | 2001-06-23 16:30:13 +0000 | [diff] [blame] | 201 | #endif |
Antoine Pitrou | c83ea13 | 2010-05-09 14:46:46 +0000 | [diff] [blame] | 202 | } else { |
| 203 | if (flags & NI_NAMEREQD) |
| 204 | return ENI_NOHOSTNAME; |
| 205 | if (inet_ntop(gni_afd->a_af, addr, numaddr, sizeof(numaddr)) |
| 206 | == NULL) |
| 207 | return ENI_NOHOSTNAME; |
| 208 | if (strlen(numaddr) > hostlen) |
| 209 | return ENI_MEMORY; |
| 210 | strcpy(host, numaddr); |
| 211 | } |
| 212 | } |
| 213 | return SUCCESS; |
Martin v. Löwis | 01dfdb3 | 2001-06-23 16:30:13 +0000 | [diff] [blame] | 214 | } |