1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
|
/*
* %CopyrightBegin%
*
* Copyright Ericsson AB 1997-2020. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* %CopyrightEnd%
*/
/*
* Interface functions to different versions of gethostbyname
*/
#ifdef __WIN32__
#include <winsock2.h>
#include <windows.h>
#include <winbase.h>
#else /* unix of some kind */
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <sys/param.h>
#endif
/* common to all platforms */
#include "eidef.h"
#include "ei_resolve.h"
#include "ei_locking.h"
/* AIX has a totally different signature (allegedly shared with some other
* Unices) that isn't compatible. It turns out that the _r version isn't
* thread-safe according to curl - but bizarrely, since AIX 4.3, libc
* is thread-safe in a manner that makes the normal gethostbyname OK
* for re-entrant use.
*/
#ifdef _AIX
#undef HAVE_GETHOSTBYNAME_R
#endif
#ifdef HAVE_GETHOSTBYNAME_R
int ei_init_resolve(void)
{
return 0; /* Do nothing */
}
#else /* !HAVE_GETHOSTBYNAME_R */
/* we have our own in that case */
/* Make sure this semaphore has been initialized somewhere first. This
* should probably be done from 'erl'_init() but we do it in the first
* call to gethostbyname_r() or gethostbyaddr_r().
*/
/* FIXME we don't want globals here, but maybe ok? */
#ifdef _REENTRANT
static ei_mutex_t *ei_gethost_sem = NULL;
#endif /* _REENTRANT */
static int ei_resolve_initialized = 0;
#if !defined(__WIN32__) && !defined(_AIX)
int h_errno;
#endif
#ifdef DEBUG
#define DEBUGF(X) fprintf X
#else
#define DEBUGF(X) /* Nothing */
#endif
/*
* If we find SENS resolver, use the functions found there, i.e.
* resolvGetHostByName() and resolvGetHostByAddr(). Otherwise we use
* our own, which are just wrappers around hostGetByName() and
* hostGetByAddr(). Here we look up the functions.
*/
int ei_init_resolve(void)
{
#ifdef _REENTRANT
ei_gethost_sem = ei_mutex_create();
if (!ei_gethost_sem)
return ENOMEM;
#endif /* _REENTRANT */
ei_resolve_initialized = 1;
return 0;
}
#if _REENTRANT
/*
* Copy the contents of one struct hostent to another, i.e. don't just
* copy the pointers, copy all the data and create new pointers, etc.
* User must provide a secondary buffer to which the host data can be copied.
*
* Returns 0 on success or -1 if buffer is too small for host data
*/
/* a couple of helpers
* align: increment buf until it is dword-aligned, reduce len by same amount.
* advance: increment buf by n bytes, reduce len by same amount .
*/
#if defined SIZEOF_VOID_P
#define EI_ALIGNBYTES (SIZEOF_VOID_P - 1)
#else
#define EI_ALIGNBYTES (sizeof(void*) - 1)
#endif
#define align_buf(buf,len) for (;(((unsigned)buf) & EI_ALIGNBYTES); (buf)++, len--)
#define advance_buf(buf,len,n) ((buf)+=(n),(len)-=(n))
/* "and now the tricky part..." */
static int copy_hostent(struct hostent *dest, const struct hostent *src, char *buffer, int buflen)
{
char **pptr;
int len;
char **src_aliases = NULL;
char **src_addr_list = NULL;
/* fix initial buffer alignment */
align_buf(buffer, buflen);
/* copy the data into our buffer... */
/* first the easy ones! */
dest->h_length = src->h_length;
dest->h_addrtype = src->h_addrtype;
/* h_name */
dest->h_name = buffer;
len = strlen(src->h_name);
if (buflen < len+1) return -1;
memmove((char *)dest->h_name,src->h_name,len);
buffer[len] = (char)0;
advance_buf(buffer,buflen,len+1);
/* traverse alias list, collecting the pointers */
align_buf(buffer, buflen);
pptr = (char **)buffer;
dest->h_aliases = pptr; /* save head of pointer array */
src_aliases = src->h_aliases;
while(*(src_aliases)) {
if (buflen < sizeof(*pptr)) return -1;
*pptr = (char *)src_aliases;
advance_buf(buffer,buflen,sizeof(*pptr));
src_aliases++;
pptr++;
}
if (buflen < sizeof(*pptr)) return -1;
*pptr = NULL;
advance_buf(buffer,buflen,sizeof(*pptr));
/* go back to saved position & transfer the alias data */
pptr = dest->h_aliases;
while (*pptr) {
len = strlen(*pptr);
if (buflen < len+1) return -1;
memmove(buffer,*pptr,len); /* copy data to local buffer */
buffer[len] = (char)0;
*pptr = buffer; /* point to own copy now */
advance_buf(buffer,buflen,len+1);
pptr++;
}
/* traverse address list, collecting the pointers */
align_buf(buffer, buflen);
pptr = (char **)buffer;
dest->h_addr_list = pptr; /* save head of pointer array */
src_addr_list = src->h_addr_list;
while(*(src_addr_list)) {
if (buflen < sizeof(*pptr)) return -1;
*pptr = *src_addr_list;
advance_buf(buffer,buflen,sizeof(*pptr));
src_addr_list++;
pptr++;
}
if (buflen < sizeof(*pptr)) return -1;
*pptr = NULL;
advance_buf(buffer,buflen,sizeof(*pptr));
/* go back to saved position & transfer the addresses */
/* align_buf(buffer, buflen); */
pptr = dest->h_addr_list;
while (*pptr) {
len = src->h_length;
if (buflen < len+1) return -1;
memmove(buffer,*pptr,len); /* copy data to local buffer */
buffer[len]=(char)0; /* not sure if termination is necessary */
*pptr = buffer; /* point to own copy now */
advance_buf(buffer,buflen,len+1);
pptr++;
}
if (buflen < 0) return -1;
return 0;
}
#undef EI_ALIGNBYTES
/* This function is a pseudo-reentrant version of gethostbyname(). It
* uses locks to serialize the call to the regular (non-reentrant)
* gethostbyname() and then copies the data into the user-provided
* buffers. It's not pretty but it works.
*
* name - name of host to look up
* hostp - user-supplied structure for returning host entry
* buffer - user-supplied buffer: storage for the copied host data
* buflen - length of user-supplied buffer
* h_errnop - buffer for return status
*
* Returns values as for gethostbyname(). Additionally, sets
* errno=ERANGE and returns NULL if buffer is too small for host data.
*/
static struct hostent *my_gethostbyname_r(const char *name,
struct hostent *hostp,
char *buffer,
int buflen,
int *h_errnop)
{
struct hostent dest;
struct hostent *src;
struct hostent *rval = NULL;
if (!ei_resolve_initialized) {
*h_errnop = NO_RECOVERY;
return NULL;
}
#ifdef _REENTRANT
/* === BEGIN critical section === */
if (ei_mutex_lock(ei_gethost_sem,0) != 0) {
*h_errnop = NO_RECOVERY;
return NULL;
}
#endif /* _REENTRANT */
/* lookup the data */
if ((src = ei_gethostbyname(name))) {
/* copy to caller's buffer */
if (!copy_hostent(&dest,src,buffer,buflen)) {
/* success */
*hostp = dest;
*h_errnop = 0;
rval = hostp;
}
else {
/* failure - buffer size */
#ifdef __WIN32__
SetLastError(ERROR_INSUFFICIENT_BUFFER);
#else
errno = ERANGE;
#endif
*h_errnop = 0;
}
}
else {
/* failure - lookup */
#ifdef __WIN32__
*h_errnop = WSAGetLastError();
#else
*h_errnop = h_errno;
#endif
}
#ifdef _REENTRANT
/* === END critical section === */
ei_mutex_unlock(ei_gethost_sem);
#endif /* _REENTRANT */
return rval;
}
#endif /* _REENTRANT */
#if EI_THREADS != false
static struct hostent *my_gethostbyaddr_r(const char *addr,
int length,
int type,
struct hostent *hostp,
char *buffer,
int buflen,
int *h_errnop)
{
struct hostent dest;
struct hostent *src;
struct hostent *rval = NULL;
/* FIXME this should have been done in 'erl'_init()? */
if (!ei_resolve_initialized) {
*h_errnop = NO_RECOVERY;
return NULL;
}
#ifdef _REENTRANT
/* === BEGIN critical section === */
if (ei_mutex_lock(ei_gethost_sem,0) != 0) {
*h_errnop = NO_RECOVERY;
return NULL;
}
#endif /* _REENTRANT */
/* lookup the data */
if ((src = ei_gethostbyaddr(addr,length,type))) {
/* copy to caller's buffer */
if (!copy_hostent(&dest,src,buffer,buflen)) {
/* success */
*hostp = dest;
*h_errnop = 0;
rval = hostp;
}
else {
/* failure - buffer size */
#ifdef __WIN32__
SetLastError(ERROR_INSUFFICIENT_BUFFER);
#else
errno = ERANGE;
#endif
*h_errnop = 0;
}
}
else {
/* failure - lookup */
#ifdef __WIN32__
*h_errnop = WSAGetLastError();
#else
*h_errnop = h_errno;
#endif
}
#ifdef _REENTRANT
/* === END critical section === */
ei_mutex_unlock(ei_gethost_sem);
#endif /* _REENTRANT */
return rval;
}
#endif /* EI_THREADS != false */
#endif /* !HAVE_GETHOSTBYNAME_R */
#ifdef __WIN32__
struct hostent *ei_gethostbyname(const char *name)
{
return gethostbyname(name);
}
struct hostent *ei_gethostbyaddr(const char *addr, int len, int type)
{
return gethostbyaddr(addr, len, type);
}
#else /* unix of some kind */
struct hostent *ei_gethostbyname(const char *name)
{
return gethostbyname(name);
}
struct hostent *ei_gethostbyaddr(const char *addr, int len, int type)
{
return gethostbyaddr(addr, len, type);
}
struct hostent *ei_gethostbyaddr_r(const char *addr,
int length,
int type,
struct hostent *hostp,
char *buffer,
int buflen,
int *h_errnop)
{
#if (EI_THREADS == false)
/* threads disabled, no need to call reentrant function */
return gethostbyaddr(addr, length, type);
#else
#ifndef HAVE_GETHOSTBYNAME_R
return my_gethostbyaddr_r(addr,length,type,hostp,buffer,buflen,h_errnop);
#else
#if (defined(__GLIBC__) || defined(__linux__) || (__FreeBSD_version >= 602000) || defined(__DragonFly__))
struct hostent *result;
gethostbyaddr_r(addr, length, type, hostp, buffer, buflen, &result,
h_errnop);
return result;
#else
return gethostbyaddr_r(addr,length,type,hostp,buffer,buflen,h_errnop);
#endif
#endif
#endif
}
struct hostent *ei_gethostbyname_r(const char *name,
struct hostent *hostp,
char *buffer,
int buflen,
int *h_errnop)
{
#ifndef _REENTRANT
/* threads disabled, no need to call reentrant function */
return gethostbyname(name);
#else
#ifndef HAVE_GETHOSTBYNAME_R
return my_gethostbyname_r(name,hostp,buffer,buflen,h_errnop);
#else
#if (defined(__GLIBC__) || defined(__linux__) || (__FreeBSD_version >= 602000) || defined(__DragonFly__) || defined(__ANDROID__))
struct hostent *result;
int err;
err = gethostbyname_r(name, hostp, buffer, buflen, &result, h_errnop);
if (err == ERANGE)
*h_errnop = err;
return result;
#else
return gethostbyname_r(name,hostp,buffer,buflen,h_errnop);
#endif
#endif
#endif
}
#endif /* win, unix */
|