Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 1 | /* $NetBSD: sethostent.c,v 1.20 2014/03/17 13:24:23 christos Exp $ */ |
| 2 | |
| 3 | /* |
| 4 | * Copyright (c) 1985, 1993 |
| 5 | * The Regents of the University of California. All rights reserved. |
| 6 | * |
| 7 | * Redistribution and use in source and binary forms, with or without |
| 8 | * modification, are permitted provided that the following conditions |
| 9 | * are met: |
| 10 | * 1. Redistributions of source code must retain the above copyright |
| 11 | * notice, this list of conditions and the following disclaimer. |
| 12 | * 2. Redistributions in binary form must reproduce the above copyright |
| 13 | * notice, this list of conditions and the following disclaimer in the |
| 14 | * documentation and/or other materials provided with the distribution. |
| 15 | * 3. Neither the name of the University nor the names of its contributors |
| 16 | * may be used to endorse or promote products derived from this software |
| 17 | * without specific prior written permission. |
| 18 | * |
| 19 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 20 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 21 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 22 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 23 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 24 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 25 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 26 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 27 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 28 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 29 | * SUCH DAMAGE. |
| 30 | */ |
| 31 | |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 32 | #include <arpa/inet.h> |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 33 | #include <arpa/nameser.h> |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 34 | #include <assert.h> |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 35 | #include <errno.h> |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 36 | #include <netdb.h> |
| 37 | #include <netinet/in.h> |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 38 | #include <resolv.h> |
Bernie Innocenti | c939de0 | 2018-09-12 17:59:17 +0900 | [diff] [blame] | 39 | #include <stdio.h> |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 40 | #include <stdlib.h> |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 41 | #include <string.h> |
| 42 | #include <sys/param.h> |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 43 | |
| 44 | #include "hostent.h" |
| 45 | #include "resolv_private.h" |
| 46 | |
| 47 | #define ALIGNBYTES (sizeof(uintptr_t) - 1) |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 48 | #define ALIGN(p) (((uintptr_t)(p) + ALIGNBYTES) & ~ALIGNBYTES) |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 49 | |
Bernie Innocenti | c939de0 | 2018-09-12 17:59:17 +0900 | [diff] [blame] | 50 | static void sethostent_r(FILE** hf) { |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 51 | if (!*hf) |
| 52 | *hf = fopen(_PATH_HOSTS, "re"); |
| 53 | else |
| 54 | rewind(*hf); |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 55 | } |
| 56 | |
Bernie Innocenti | c939de0 | 2018-09-12 17:59:17 +0900 | [diff] [blame] | 57 | static void endhostent_r(FILE** hf) { |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 58 | if (*hf) { |
| 59 | (void) fclose(*hf); |
| 60 | *hf = NULL; |
| 61 | } |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 62 | } |
| 63 | |
Hungming Chen | a6914a6 | 2019-01-19 15:07:04 +0800 | [diff] [blame^] | 64 | // TODO: Consider returning a boolean result as files_getaddrinfo() does because the error code |
| 65 | // does not currently return to netd. |
Hungming Chen | 6c84a3d | 2018-12-26 16:14:17 +0800 | [diff] [blame] | 66 | int _hf_gethtbyname2(const char* name, int af, getnamaddr* info) { |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 67 | struct hostent *hp, hent; |
| 68 | char *buf, *ptr; |
Bernie Innocenti | 9f61dbd | 2018-09-12 20:03:11 +0900 | [diff] [blame] | 69 | size_t len, num, i; |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 70 | char* aliases[MAXALIASES]; |
| 71 | char* addr_ptrs[MAXADDRS]; |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 72 | |
Bernie Innocenti | 9f61dbd | 2018-09-12 20:03:11 +0900 | [diff] [blame] | 73 | FILE* hf = NULL; |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 74 | sethostent_r(&hf); |
| 75 | if (hf == NULL) { |
Hungming Chen | a6914a6 | 2019-01-19 15:07:04 +0800 | [diff] [blame^] | 76 | // TODO: Consider converting to a private extended EAI_* error code. |
| 77 | // Currently, the EAI_* value has no corresponding error code for invalid argument socket |
| 78 | // length. In order to not rely on errno, convert the original error code pair, EAI_SYSTEM |
| 79 | // and EINVAL, to EAI_FAIL. |
| 80 | return EAI_FAIL; |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 81 | } |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 82 | |
Bernie Innocenti | 9c57593 | 2018-09-07 21:10:25 +0900 | [diff] [blame] | 83 | if ((ptr = buf = (char*) malloc(len = info->buflen)) == NULL) { |
Hungming Chen | 6c84a3d | 2018-12-26 16:14:17 +0800 | [diff] [blame] | 84 | return EAI_MEMORY; |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 85 | } |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 86 | |
Bernie Innocenti | 9f61dbd | 2018-09-12 20:03:11 +0900 | [diff] [blame] | 87 | hent.h_name = NULL; |
| 88 | hent.h_addrtype = 0; |
| 89 | hent.h_length = 0; |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 90 | |
Bernie Innocenti | 9f61dbd | 2018-09-12 20:03:11 +0900 | [diff] [blame] | 91 | size_t anum = 0; |
| 92 | for (num = 0; num < MAXADDRS; /**/) { |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 93 | info->hp->h_addrtype = af; |
| 94 | info->hp->h_length = 0; |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 95 | |
Hungming Chen | a6914a6 | 2019-01-19 15:07:04 +0800 | [diff] [blame^] | 96 | int he; |
| 97 | hp = netbsd_gethostent_r(hf, info->hp, info->buf, info->buflen, &he); |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 98 | if (hp == NULL) { |
Hungming Chen | a6914a6 | 2019-01-19 15:07:04 +0800 | [diff] [blame^] | 99 | if (he == NETDB_INTERNAL && errno == ENOSPC) { |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 100 | goto nospc; // glibc compatibility. |
| 101 | } |
| 102 | break; |
| 103 | } |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 104 | |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 105 | if (strcasecmp(hp->h_name, name) != 0) { |
| 106 | char** cp; |
| 107 | for (cp = hp->h_aliases; *cp != NULL; cp++) |
| 108 | if (strcasecmp(*cp, name) == 0) break; |
Bernie Innocenti | 9f61dbd | 2018-09-12 20:03:11 +0900 | [diff] [blame] | 109 | // NOTE: does not increment num |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 110 | if (*cp == NULL) continue; |
| 111 | } |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 112 | |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 113 | if (num == 0) { |
Bernie Innocenti | c939de0 | 2018-09-12 17:59:17 +0900 | [diff] [blame] | 114 | hent.h_addrtype = hp->h_addrtype; |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 115 | hent.h_length = hp->h_length; |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 116 | |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 117 | HENT_SCOPY(hent.h_name, hp->h_name, ptr, len); |
| 118 | for (anum = 0; hp->h_aliases[anum]; anum++) { |
| 119 | if (anum >= MAXALIASES) goto nospc; |
| 120 | HENT_SCOPY(aliases[anum], hp->h_aliases[anum], ptr, len); |
| 121 | } |
Bernie Innocenti | 9c57593 | 2018-09-07 21:10:25 +0900 | [diff] [blame] | 122 | ptr = (char*) ALIGN(ptr); |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 123 | if ((size_t)(ptr - buf) >= info->buflen) goto nospc; |
| 124 | } |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 125 | |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 126 | if (num >= MAXADDRS) goto nospc; |
| 127 | HENT_COPY(addr_ptrs[num], hp->h_addr_list[0], hp->h_length, ptr, len); |
Bernie Innocenti | 9f61dbd | 2018-09-12 20:03:11 +0900 | [diff] [blame] | 128 | |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 129 | num++; |
| 130 | } |
| 131 | endhostent_r(&hf); |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 132 | |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 133 | if (num == 0) { |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 134 | free(buf); |
Hungming Chen | 9676a3a | 2018-12-28 17:52:01 +0800 | [diff] [blame] | 135 | // TODO: Perhaps convert HOST_NOT_FOUND to EAI_NONAME instead. |
| 136 | // The original return error number is h_errno HOST_NOT_FOUND which was converted to |
| 137 | // EAI_NODATA. |
Hungming Chen | 6c84a3d | 2018-12-26 16:14:17 +0800 | [diff] [blame] | 138 | return EAI_NODATA; |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 139 | } |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 140 | |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 141 | hp = info->hp; |
| 142 | ptr = info->buf; |
| 143 | len = info->buflen; |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 144 | |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 145 | hp->h_addrtype = hent.h_addrtype; |
| 146 | hp->h_length = hent.h_length; |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 147 | |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 148 | HENT_ARRAY(hp->h_aliases, anum, ptr, len); |
| 149 | HENT_ARRAY(hp->h_addr_list, num, ptr, len); |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 150 | |
nuccachen | 9227b7f | 2018-09-18 13:38:48 +0800 | [diff] [blame] | 151 | for (i = 0; i < num; i++) { |
| 152 | HENT_COPY(hp->h_addr_list[i], addr_ptrs[i], hp->h_length, ptr, len); |
| 153 | |
| 154 | // reserve space for mapping IPv4 address to IPv6 address in place |
| 155 | if (hp->h_addrtype == AF_INET) { |
| 156 | HENT_COPY(ptr, NAT64_PAD, sizeof(NAT64_PAD), ptr, len); |
| 157 | } |
| 158 | } |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 159 | hp->h_addr_list[num] = NULL; |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 160 | |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 161 | HENT_SCOPY(hp->h_name, hent.h_name, ptr, len); |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 162 | |
Bernie Innocenti | 9f61dbd | 2018-09-12 20:03:11 +0900 | [diff] [blame] | 163 | for (i = 0; i < anum; i++) { |
| 164 | HENT_SCOPY(hp->h_aliases[i], aliases[i], ptr, len); |
| 165 | } |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 166 | hp->h_aliases[anum] = NULL; |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 167 | |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 168 | free(buf); |
Hungming Chen | 6c84a3d | 2018-12-26 16:14:17 +0800 | [diff] [blame] | 169 | return 0; |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 170 | nospc: |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 171 | free(buf); |
Hungming Chen | 6c84a3d | 2018-12-26 16:14:17 +0800 | [diff] [blame] | 172 | return EAI_MEMORY; |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 173 | } |
| 174 | |
Hungming Chen | a6914a6 | 2019-01-19 15:07:04 +0800 | [diff] [blame^] | 175 | // TODO: Consider returning a boolean result as files_getaddrinfo() does because the error code |
| 176 | // does not currently return to netd. |
Hungming Chen | 6c84a3d | 2018-12-26 16:14:17 +0800 | [diff] [blame] | 177 | int _hf_gethtbyaddr(const unsigned char* uaddr, int len, int af, getnamaddr* info) { |
Bernie Innocenti | 9f61dbd | 2018-09-12 20:03:11 +0900 | [diff] [blame] | 178 | info->hp->h_length = len; |
| 179 | info->hp->h_addrtype = af; |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 180 | |
Bernie Innocenti | 9f61dbd | 2018-09-12 20:03:11 +0900 | [diff] [blame] | 181 | FILE* hf = NULL; |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 182 | sethostent_r(&hf); |
| 183 | if (hf == NULL) { |
Hungming Chen | a6914a6 | 2019-01-19 15:07:04 +0800 | [diff] [blame^] | 184 | // TODO: Consider converting to a private extended EAI_* error code. |
| 185 | // Currently, the EAI_* value has no corresponding error code for invalid argument socket |
| 186 | // length. In order to not rely on errno, convert the original error code pair, EAI_SYSTEM |
| 187 | // and EINVAL, to EAI_FAIL. |
| 188 | return EAI_FAIL; |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 189 | } |
Bernie Innocenti | 9f61dbd | 2018-09-12 20:03:11 +0900 | [diff] [blame] | 190 | struct hostent* hp; |
Hungming Chen | a6914a6 | 2019-01-19 15:07:04 +0800 | [diff] [blame^] | 191 | int he; |
| 192 | while ((hp = netbsd_gethostent_r(hf, info->hp, info->buf, info->buflen, &he)) != NULL) |
Bernie Innocenti | 9f61dbd | 2018-09-12 20:03:11 +0900 | [diff] [blame] | 193 | if (!memcmp(hp->h_addr_list[0], uaddr, (size_t) hp->h_length)) break; |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 194 | endhostent_r(&hf); |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 195 | |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 196 | if (hp == NULL) { |
Hungming Chen | 6c84a3d | 2018-12-26 16:14:17 +0800 | [diff] [blame] | 197 | if (errno == ENOSPC) return EAI_MEMORY; // glibc compatibility. |
Hungming Chen | 9676a3a | 2018-12-28 17:52:01 +0800 | [diff] [blame] | 198 | // TODO: Perhaps convert HOST_NOT_FOUND to EAI_NONAME instead. |
| 199 | // The original return error number is h_errno HOST_NOT_FOUND which was converted to |
| 200 | // EAI_NODATA. |
Hungming Chen | 6c84a3d | 2018-12-26 16:14:17 +0800 | [diff] [blame] | 201 | return EAI_NODATA; |
Bernie Innocenti | 8ad893f | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 202 | } |
Hungming Chen | 6c84a3d | 2018-12-26 16:14:17 +0800 | [diff] [blame] | 203 | return 0; |
Bernie Innocenti | 318ed2d | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 204 | } |