blob: 39576c71ca22f96a5432ce1555f9c6b8534d6bc8 [file] [log] [blame]
Christopher Wileye8679812015-07-01 13:36:18 -07001/*
2 * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * 3. The name of the author may not be used to endorse or promote products
13 * derived from this software without specific prior written permission.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
Narayan Kamathfc74cb42017-09-13 12:53:52 +010026#ifndef UTIL_INTERNAL_H_INCLUDED_
27#define UTIL_INTERNAL_H_INCLUDED_
Christopher Wileye8679812015-07-01 13:36:18 -070028
29#include "event2/event-config.h"
Narayan Kamathfc74cb42017-09-13 12:53:52 +010030#include "evconfig-private.h"
31
Christopher Wileye8679812015-07-01 13:36:18 -070032#include <errno.h>
33
34/* For EVUTIL_ASSERT */
35#include "log-internal.h"
36#include <stdio.h>
37#include <stdlib.h>
Narayan Kamathfc74cb42017-09-13 12:53:52 +010038#ifdef EVENT__HAVE_SYS_SOCKET_H
Christopher Wileye8679812015-07-01 13:36:18 -070039#include <sys/socket.h>
40#endif
Narayan Kamathfc74cb42017-09-13 12:53:52 +010041#ifdef EVENT__HAVE_SYS_EVENTFD_H
42#include <sys/eventfd.h>
43#endif
Christopher Wileye8679812015-07-01 13:36:18 -070044#include "event2/util.h"
45
Narayan Kamathfc74cb42017-09-13 12:53:52 +010046#include "time-internal.h"
Christopher Wileye8679812015-07-01 13:36:18 -070047#include "ipv6-internal.h"
48
49#ifdef __cplusplus
50extern "C" {
51#endif
52
Haibo Huangb2279672019-05-31 16:12:39 -070053/* __has_attribute() wrapper */
54#ifdef __has_attribute
Haibo Huang45729092019-08-01 16:15:45 -070055# define EVUTIL_HAS_ATTRIBUTE __has_attribute
Haibo Huangb2279672019-05-31 16:12:39 -070056#endif
57/** clang 3 __has_attribute misbehaves in some versions */
Haibo Huang45729092019-08-01 16:15:45 -070058#if defined(__clang__) && __clang__ == 1
59# if defined(__apple_build_version__)
60# if __clang_major__ <= 6
61# undef EVUTIL_HAS_ATTRIBUTE
62# endif
63# else /* !__apple_build_version__ */
64# if __clang_major__ == 3 && __clang_minor__ >= 2 && __clang_minor__ <= 5
65# undef EVUTIL_HAS_ATTRIBUTE
66# endif
67# endif /* __apple_build_version__ */
68#endif /*\ defined(__clang__) && __clang__ == 1 */
Haibo Huangb2279672019-05-31 16:12:39 -070069#ifndef EVUTIL_HAS_ATTRIBUTE
Haibo Huang45729092019-08-01 16:15:45 -070070# define EVUTIL_HAS_ATTRIBUTE(x) 0
Haibo Huangb2279672019-05-31 16:12:39 -070071#endif
72
Christopher Wileye8679812015-07-01 13:36:18 -070073/* If we need magic to say "inline", get it for free internally. */
Narayan Kamathfc74cb42017-09-13 12:53:52 +010074#ifdef EVENT__inline
75#define inline EVENT__inline
Christopher Wileye8679812015-07-01 13:36:18 -070076#endif
Haibo Huangb2279672019-05-31 16:12:39 -070077
78/* Define to appropriate substitute if compiler doesnt have __func__ */
79#if defined(EVENT__HAVE___func__)
80# ifndef __func__
81# define __func__ __func__
82# endif
83#elif defined(EVENT__HAVE___FUNCTION__)
84# define __func__ __FUNCTION__
85#else
86# define __func__ __FILE__
Christopher Wileye8679812015-07-01 13:36:18 -070087#endif
88
89/* A good no-op to use in macro definitions. */
Narayan Kamathfc74cb42017-09-13 12:53:52 +010090#define EVUTIL_NIL_STMT_ ((void)0)
Christopher Wileye8679812015-07-01 13:36:18 -070091/* A no-op that tricks the compiler into thinking a condition is used while
92 * definitely not making any code for it. Used to compile out asserts while
93 * avoiding "unused variable" warnings. The "!" forces the compiler to
94 * do the sizeof() on an int, in case "condition" is a bitfield value.
95 */
Narayan Kamathfc74cb42017-09-13 12:53:52 +010096#define EVUTIL_NIL_CONDITION_(condition) do { \
Christopher Wileye8679812015-07-01 13:36:18 -070097 (void)sizeof(!(condition)); \
98} while(0)
99
100/* Internal use only: macros to match patterns of error codes in a
101 cross-platform way. We need these macros because of two historical
102 reasons: first, nonblocking IO functions are generally written to give an
103 error on the "blocked now, try later" case, so sometimes an error from a
104 read, write, connect, or accept means "no error; just wait for more
105 data," and we need to look at the error code. Second, Windows defines
106 a different set of error codes for sockets. */
107
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100108#ifndef _WIN32
109
110#if EAGAIN == EWOULDBLOCK
111#define EVUTIL_ERR_IS_EAGAIN(e) \
112 ((e) == EAGAIN)
113#else
114#define EVUTIL_ERR_IS_EAGAIN(e) \
115 ((e) == EAGAIN || (e) == EWOULDBLOCK)
116#endif
Christopher Wileye8679812015-07-01 13:36:18 -0700117
118/* True iff e is an error that means a read/write operation can be retried. */
119#define EVUTIL_ERR_RW_RETRIABLE(e) \
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100120 ((e) == EINTR || EVUTIL_ERR_IS_EAGAIN(e))
Christopher Wileye8679812015-07-01 13:36:18 -0700121/* True iff e is an error that means an connect can be retried. */
122#define EVUTIL_ERR_CONNECT_RETRIABLE(e) \
123 ((e) == EINTR || (e) == EINPROGRESS)
124/* True iff e is an error that means a accept can be retried. */
125#define EVUTIL_ERR_ACCEPT_RETRIABLE(e) \
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100126 ((e) == EINTR || EVUTIL_ERR_IS_EAGAIN(e) || (e) == ECONNABORTED)
Christopher Wileye8679812015-07-01 13:36:18 -0700127
128/* True iff e is an error that means the connection was refused */
129#define EVUTIL_ERR_CONNECT_REFUSED(e) \
130 ((e) == ECONNREFUSED)
131
132#else
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100133/* Win32 */
134
135#define EVUTIL_ERR_IS_EAGAIN(e) \
136 ((e) == WSAEWOULDBLOCK || (e) == EAGAIN)
Christopher Wileye8679812015-07-01 13:36:18 -0700137
138#define EVUTIL_ERR_RW_RETRIABLE(e) \
139 ((e) == WSAEWOULDBLOCK || \
140 (e) == WSAEINTR)
141
142#define EVUTIL_ERR_CONNECT_RETRIABLE(e) \
143 ((e) == WSAEWOULDBLOCK || \
144 (e) == WSAEINTR || \
145 (e) == WSAEINPROGRESS || \
146 (e) == WSAEINVAL)
147
148#define EVUTIL_ERR_ACCEPT_RETRIABLE(e) \
149 EVUTIL_ERR_RW_RETRIABLE(e)
150
151#define EVUTIL_ERR_CONNECT_REFUSED(e) \
152 ((e) == WSAECONNREFUSED)
153
154#endif
155
Christopher Wileye8679812015-07-01 13:36:18 -0700156/* Arguments for shutdown() */
157#ifdef SHUT_RD
158#define EVUTIL_SHUT_RD SHUT_RD
159#else
160#define EVUTIL_SHUT_RD 0
161#endif
162#ifdef SHUT_WR
163#define EVUTIL_SHUT_WR SHUT_WR
164#else
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100165#define EVUTIL_SHUT_WR 1 /* SD_SEND */
Christopher Wileye8679812015-07-01 13:36:18 -0700166#endif
167#ifdef SHUT_BOTH
168#define EVUTIL_SHUT_BOTH SHUT_BOTH
169#else
170#define EVUTIL_SHUT_BOTH 2
171#endif
172
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100173/* Helper: Verify that all the elements in 'dlist' are internally consistent.
174 * Checks for circular lists and bad prev/next pointers.
175 *
176 * Example usage:
177 * EVUTIL_ASSERT_LIST_OK(eventlist, event, ev_next);
178 */
179#define EVUTIL_ASSERT_LIST_OK(dlist, type, field) do { \
180 struct type *elm1, *elm2, **nextp; \
181 if (LIST_EMPTY((dlist))) \
182 break; \
183 \
184 /* Check list for circularity using Floyd's */ \
185 /* 'Tortoise and Hare' algorithm */ \
186 elm1 = LIST_FIRST((dlist)); \
187 elm2 = LIST_NEXT(elm1, field); \
188 while (elm1 && elm2) { \
189 EVUTIL_ASSERT(elm1 != elm2); \
190 elm1 = LIST_NEXT(elm1, field); \
191 elm2 = LIST_NEXT(elm2, field); \
192 if (!elm2) \
193 break; \
194 EVUTIL_ASSERT(elm1 != elm2); \
195 elm2 = LIST_NEXT(elm2, field); \
196 } \
197 \
198 /* Now check next and prev pointers for consistency. */ \
199 nextp = &LIST_FIRST((dlist)); \
200 elm1 = LIST_FIRST((dlist)); \
201 while (elm1) { \
202 EVUTIL_ASSERT(*nextp == elm1); \
203 EVUTIL_ASSERT(nextp == elm1->field.le_prev); \
204 nextp = &LIST_NEXT(elm1, field); \
205 elm1 = *nextp; \
206 } \
207 } while (0)
208
209/* Helper: Verify that all the elements in a TAILQ are internally consistent.
210 * Checks for circular lists and bad prev/next pointers.
211 *
212 * Example usage:
213 * EVUTIL_ASSERT_TAILQ_OK(activelist, event, ev_active_next);
214 */
215#define EVUTIL_ASSERT_TAILQ_OK(tailq, type, field) do { \
216 struct type *elm1, *elm2, **nextp; \
217 if (TAILQ_EMPTY((tailq))) \
218 break; \
219 \
220 /* Check list for circularity using Floyd's */ \
221 /* 'Tortoise and Hare' algorithm */ \
222 elm1 = TAILQ_FIRST((tailq)); \
223 elm2 = TAILQ_NEXT(elm1, field); \
224 while (elm1 && elm2) { \
225 EVUTIL_ASSERT(elm1 != elm2); \
226 elm1 = TAILQ_NEXT(elm1, field); \
227 elm2 = TAILQ_NEXT(elm2, field); \
228 if (!elm2) \
229 break; \
230 EVUTIL_ASSERT(elm1 != elm2); \
231 elm2 = TAILQ_NEXT(elm2, field); \
232 } \
233 \
234 /* Now check next and prev pointers for consistency. */ \
235 nextp = &TAILQ_FIRST((tailq)); \
236 elm1 = TAILQ_FIRST((tailq)); \
237 while (elm1) { \
238 EVUTIL_ASSERT(*nextp == elm1); \
239 EVUTIL_ASSERT(nextp == elm1->field.tqe_prev); \
240 nextp = &TAILQ_NEXT(elm1, field); \
241 elm1 = *nextp; \
242 } \
243 EVUTIL_ASSERT(nextp == (tailq)->tqh_last); \
244 } while (0)
245
Christopher Wileye8679812015-07-01 13:36:18 -0700246/* Locale-independent replacements for some ctypes functions. Use these
247 * when you care about ASCII's notion of character types, because you are about
248 * to send those types onto the wire.
249 */
Haibo Huangb2279672019-05-31 16:12:39 -0700250EVENT2_EXPORT_SYMBOL
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100251int EVUTIL_ISALPHA_(char c);
Haibo Huangb2279672019-05-31 16:12:39 -0700252EVENT2_EXPORT_SYMBOL
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100253int EVUTIL_ISALNUM_(char c);
254int EVUTIL_ISSPACE_(char c);
Haibo Huangb2279672019-05-31 16:12:39 -0700255EVENT2_EXPORT_SYMBOL
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100256int EVUTIL_ISDIGIT_(char c);
Haibo Huangb2279672019-05-31 16:12:39 -0700257EVENT2_EXPORT_SYMBOL
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100258int EVUTIL_ISXDIGIT_(char c);
259int EVUTIL_ISPRINT_(char c);
260int EVUTIL_ISLOWER_(char c);
261int EVUTIL_ISUPPER_(char c);
Haibo Huangb2279672019-05-31 16:12:39 -0700262EVENT2_EXPORT_SYMBOL
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100263char EVUTIL_TOUPPER_(char c);
Haibo Huangb2279672019-05-31 16:12:39 -0700264EVENT2_EXPORT_SYMBOL
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100265char EVUTIL_TOLOWER_(char c);
266
267/** Remove all trailing horizontal whitespace (space or tab) from the end of a
268 * string */
Haibo Huangb2279672019-05-31 16:12:39 -0700269EVENT2_EXPORT_SYMBOL
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100270void evutil_rtrim_lws_(char *);
271
Christopher Wileye8679812015-07-01 13:36:18 -0700272
273/** Helper macro. If we know that a given pointer points to a field in a
274 structure, return a pointer to the structure itself. Used to implement
275 our half-baked C OO. Example:
276
277 struct subtype {
278 int x;
279 struct supertype common;
280 int y;
281 };
282 ...
283 void fn(struct supertype *super) {
284 struct subtype *sub = EVUTIL_UPCAST(super, struct subtype, common);
285 ...
286 }
287 */
288#define EVUTIL_UPCAST(ptr, type, field) \
289 ((type *)(((char*)(ptr)) - evutil_offsetof(type, field)))
290
291/* As open(pathname, flags, mode), except that the file is always opened with
292 * the close-on-exec flag set. (And the mode argument is mandatory.)
293 */
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100294int evutil_open_closeonexec_(const char *pathname, int flags, unsigned mode);
Christopher Wileye8679812015-07-01 13:36:18 -0700295
Haibo Huangb2279672019-05-31 16:12:39 -0700296EVENT2_EXPORT_SYMBOL
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100297int evutil_read_file_(const char *filename, char **content_out, size_t *len_out,
Christopher Wileye8679812015-07-01 13:36:18 -0700298 int is_binary);
299
Haibo Huangb2279672019-05-31 16:12:39 -0700300EVENT2_EXPORT_SYMBOL
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100301int evutil_socket_connect_(evutil_socket_t *fd_ptr, const struct sockaddr *sa, int socklen);
Christopher Wileye8679812015-07-01 13:36:18 -0700302
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100303int evutil_socket_finished_connecting_(evutil_socket_t fd);
Christopher Wileye8679812015-07-01 13:36:18 -0700304
Haibo Huangb2279672019-05-31 16:12:39 -0700305EVENT2_EXPORT_SYMBOL
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100306int evutil_ersatz_socketpair_(int, int , int, evutil_socket_t[]);
Christopher Wileye8679812015-07-01 13:36:18 -0700307
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100308int evutil_resolve_(int family, const char *hostname, struct sockaddr *sa,
Christopher Wileye8679812015-07-01 13:36:18 -0700309 ev_socklen_t *socklen, int port);
310
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100311const char *evutil_getenv_(const char *name);
Christopher Wileye8679812015-07-01 13:36:18 -0700312
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100313/* Structure to hold the state of our weak random number generator.
314 */
315struct evutil_weakrand_state {
316 ev_uint32_t seed;
317};
318
319#define EVUTIL_WEAKRAND_MAX EV_INT32_MAX
320
321/* Initialize the state of a week random number generator based on 'seed'. If
322 * the seed is 0, construct a new seed based on not-very-strong platform
323 * entropy, like the PID and the time of day.
324 *
325 * This function, and the other evutil_weakrand* functions, are meant for
326 * speed, not security or statistical strength. If you need a RNG which an
327 * attacker can't predict, or which passes strong statistical tests, use the
328 * evutil_secure_rng* functions instead.
329 */
Haibo Huangb2279672019-05-31 16:12:39 -0700330EVENT2_EXPORT_SYMBOL
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100331ev_uint32_t evutil_weakrand_seed_(struct evutil_weakrand_state *state, ev_uint32_t seed);
332/* Return a pseudorandom value between 0 and EVUTIL_WEAKRAND_MAX inclusive.
333 * Updates the state in 'seed' as needed -- this value must be protected by a
334 * lock.
335 */
Haibo Huangb2279672019-05-31 16:12:39 -0700336EVENT2_EXPORT_SYMBOL
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100337ev_int32_t evutil_weakrand_(struct evutil_weakrand_state *seed);
338/* Return a pseudorandom value x such that 0 <= x < top. top must be no more
339 * than EVUTIL_WEAKRAND_MAX. Updates the state in 'seed' as needed -- this
340 * value must be proteced by a lock */
Haibo Huangb2279672019-05-31 16:12:39 -0700341EVENT2_EXPORT_SYMBOL
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100342ev_int32_t evutil_weakrand_range_(struct evutil_weakrand_state *seed, ev_int32_t top);
Christopher Wileye8679812015-07-01 13:36:18 -0700343
344/* Evaluates to the same boolean value as 'p', and hints to the compiler that
345 * we expect this value to be false. */
346#if defined(__GNUC__) && __GNUC__ >= 3 /* gcc 3.0 or later */
347#define EVUTIL_UNLIKELY(p) __builtin_expect(!!(p),0)
348#else
349#define EVUTIL_UNLIKELY(p) (p)
350#endif
351
Haibo Huangb2279672019-05-31 16:12:39 -0700352#if EVUTIL_HAS_ATTRIBUTE(fallthrough)
353#define EVUTIL_FALLTHROUGH __attribute__((fallthrough))
354#else
355#define EVUTIL_FALLTHROUGH /* fallthrough */
356#endif
357
Christopher Wileye8679812015-07-01 13:36:18 -0700358/* Replacement for assert() that calls event_errx on failure. */
359#ifdef NDEBUG
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100360#define EVUTIL_ASSERT(cond) EVUTIL_NIL_CONDITION_(cond)
Christopher Wileye8679812015-07-01 13:36:18 -0700361#define EVUTIL_FAILURE_CHECK(cond) 0
362#else
363#define EVUTIL_ASSERT(cond) \
364 do { \
365 if (EVUTIL_UNLIKELY(!(cond))) { \
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100366 event_errx(EVENT_ERR_ABORT_, \
Christopher Wileye8679812015-07-01 13:36:18 -0700367 "%s:%d: Assertion %s failed in %s", \
368 __FILE__,__LINE__,#cond,__func__); \
369 /* In case a user-supplied handler tries to */ \
370 /* return control to us, log and abort here. */ \
371 (void)fprintf(stderr, \
372 "%s:%d: Assertion %s failed in %s", \
373 __FILE__,__LINE__,#cond,__func__); \
374 abort(); \
375 } \
376 } while (0)
377#define EVUTIL_FAILURE_CHECK(cond) EVUTIL_UNLIKELY(cond)
378#endif
379
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100380#ifndef EVENT__HAVE_STRUCT_SOCKADDR_STORAGE
Christopher Wileye8679812015-07-01 13:36:18 -0700381/* Replacement for sockaddr storage that we can use internally on platforms
382 * that lack it. It is not space-efficient, but neither is sockaddr_storage.
383 */
384struct sockaddr_storage {
385 union {
386 struct sockaddr ss_sa;
387 struct sockaddr_in ss_sin;
388 struct sockaddr_in6 ss_sin6;
389 char ss_padding[128];
390 } ss_union;
391};
392#define ss_family ss_union.ss_sa.sa_family
393#endif
394
395/* Internal addrinfo error code. This one is returned from only from
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100396 * evutil_getaddrinfo_common_, when we are sure that we'll have to hit a DNS
Christopher Wileye8679812015-07-01 13:36:18 -0700397 * server. */
398#define EVUTIL_EAI_NEED_RESOLVE -90002
399
400struct evdns_base;
401struct evdns_getaddrinfo_request;
402typedef struct evdns_getaddrinfo_request* (*evdns_getaddrinfo_fn)(
403 struct evdns_base *base,
404 const char *nodename, const char *servname,
405 const struct evutil_addrinfo *hints_in,
406 void (*cb)(int, struct evutil_addrinfo *, void *), void *arg);
Haibo Huangb2279672019-05-31 16:12:39 -0700407EVENT2_EXPORT_SYMBOL
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100408void evutil_set_evdns_getaddrinfo_fn_(evdns_getaddrinfo_fn fn);
409typedef void (*evdns_getaddrinfo_cancel_fn)(
410 struct evdns_getaddrinfo_request *req);
Haibo Huangb2279672019-05-31 16:12:39 -0700411EVENT2_EXPORT_SYMBOL
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100412void evutil_set_evdns_getaddrinfo_cancel_fn_(evdns_getaddrinfo_cancel_fn fn);
Christopher Wileye8679812015-07-01 13:36:18 -0700413
Haibo Huangb2279672019-05-31 16:12:39 -0700414EVENT2_EXPORT_SYMBOL
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100415struct evutil_addrinfo *evutil_new_addrinfo_(struct sockaddr *sa,
Christopher Wileye8679812015-07-01 13:36:18 -0700416 ev_socklen_t socklen, const struct evutil_addrinfo *hints);
Haibo Huangb2279672019-05-31 16:12:39 -0700417EVENT2_EXPORT_SYMBOL
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100418struct evutil_addrinfo *evutil_addrinfo_append_(struct evutil_addrinfo *first,
Christopher Wileye8679812015-07-01 13:36:18 -0700419 struct evutil_addrinfo *append);
Haibo Huangb2279672019-05-31 16:12:39 -0700420EVENT2_EXPORT_SYMBOL
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100421void evutil_adjust_hints_for_addrconfig_(struct evutil_addrinfo *hints);
Haibo Huangb2279672019-05-31 16:12:39 -0700422EVENT2_EXPORT_SYMBOL
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100423int evutil_getaddrinfo_common_(const char *nodename, const char *servname,
Christopher Wileye8679812015-07-01 13:36:18 -0700424 struct evutil_addrinfo *hints, struct evutil_addrinfo **res, int *portnum);
425
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100426struct evdns_getaddrinfo_request *evutil_getaddrinfo_async_(
427 struct evdns_base *dns_base,
Christopher Wileye8679812015-07-01 13:36:18 -0700428 const char *nodename, const char *servname,
429 const struct evutil_addrinfo *hints_in,
430 void (*cb)(int, struct evutil_addrinfo *, void *), void *arg);
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100431void evutil_getaddrinfo_cancel_async_(struct evdns_getaddrinfo_request *data);
Christopher Wileye8679812015-07-01 13:36:18 -0700432
433/** Return true iff sa is a looback address. (That is, it is 127.0.0.1/8, or
434 * ::1). */
Haibo Huangb2279672019-05-31 16:12:39 -0700435EVENT2_EXPORT_SYMBOL
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100436int evutil_sockaddr_is_loopback_(const struct sockaddr *sa);
Christopher Wileye8679812015-07-01 13:36:18 -0700437
438
439/**
440 Formats a sockaddr sa into a string buffer of size outlen stored in out.
441 Returns a pointer to out. Always writes something into out, so it's safe
442 to use the output of this function without checking it for NULL.
443 */
Haibo Huangb2279672019-05-31 16:12:39 -0700444EVENT2_EXPORT_SYMBOL
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100445const char *evutil_format_sockaddr_port_(const struct sockaddr *sa, char *out, size_t outlen);
Christopher Wileye8679812015-07-01 13:36:18 -0700446
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100447int evutil_hex_char_to_int_(char c);
Christopher Wileye8679812015-07-01 13:36:18 -0700448
Christopher Wileye8679812015-07-01 13:36:18 -0700449
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100450void evutil_free_secure_rng_globals_(void);
451void evutil_free_globals_(void);
452
453#ifdef _WIN32
Haibo Huangb2279672019-05-31 16:12:39 -0700454EVENT2_EXPORT_SYMBOL
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100455HMODULE evutil_load_windows_system_library_(const TCHAR *library_name);
Christopher Wileye8679812015-07-01 13:36:18 -0700456#endif
457
458#ifndef EV_SIZE_FMT
459#if defined(_MSC_VER) || defined(__MINGW32__) || defined(__MINGW64__)
460#define EV_U64_FMT "%I64u"
461#define EV_I64_FMT "%I64d"
462#define EV_I64_ARG(x) ((__int64)(x))
463#define EV_U64_ARG(x) ((unsigned __int64)(x))
464#else
465#define EV_U64_FMT "%llu"
466#define EV_I64_FMT "%lld"
467#define EV_I64_ARG(x) ((long long)(x))
468#define EV_U64_ARG(x) ((unsigned long long)(x))
469#endif
470#endif
471
472#ifdef _WIN32
473#define EV_SOCK_FMT EV_I64_FMT
474#define EV_SOCK_ARG(x) EV_I64_ARG((x))
475#else
476#define EV_SOCK_FMT "%d"
477#define EV_SOCK_ARG(x) (x)
478#endif
479
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100480#if defined(__STDC__) && defined(__STDC_VERSION__) && !defined(__MINGW64_VERSION_MAJOR)
Christopher Wileye8679812015-07-01 13:36:18 -0700481#if (__STDC_VERSION__ >= 199901L)
482#define EV_SIZE_FMT "%zu"
483#define EV_SSIZE_FMT "%zd"
484#define EV_SIZE_ARG(x) (x)
485#define EV_SSIZE_ARG(x) (x)
486#endif
487#endif
488
489#ifndef EV_SIZE_FMT
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100490#if (EVENT__SIZEOF_SIZE_T <= EVENT__SIZEOF_LONG)
Christopher Wileye8679812015-07-01 13:36:18 -0700491#define EV_SIZE_FMT "%lu"
492#define EV_SSIZE_FMT "%ld"
493#define EV_SIZE_ARG(x) ((unsigned long)(x))
494#define EV_SSIZE_ARG(x) ((long)(x))
495#else
496#define EV_SIZE_FMT EV_U64_FMT
497#define EV_SSIZE_FMT EV_I64_FMT
498#define EV_SIZE_ARG(x) EV_U64_ARG(x)
499#define EV_SSIZE_ARG(x) EV_I64_ARG(x)
500#endif
501#endif
502
Haibo Huangb2279672019-05-31 16:12:39 -0700503EVENT2_EXPORT_SYMBOL
Narayan Kamathfc74cb42017-09-13 12:53:52 +0100504evutil_socket_t evutil_socket_(int domain, int type, int protocol);
505evutil_socket_t evutil_accept4_(evutil_socket_t sockfd, struct sockaddr *addr,
506 ev_socklen_t *addrlen, int flags);
507
508 /* used by one of the test programs.. */
509EVENT2_EXPORT_SYMBOL
510int evutil_make_internal_pipe_(evutil_socket_t fd[2]);
511evutil_socket_t evutil_eventfd_(unsigned initval, int flags);
512
513#ifdef SOCK_NONBLOCK
514#define EVUTIL_SOCK_NONBLOCK SOCK_NONBLOCK
515#else
516#define EVUTIL_SOCK_NONBLOCK 0x4000000
517#endif
518#ifdef SOCK_CLOEXEC
519#define EVUTIL_SOCK_CLOEXEC SOCK_CLOEXEC
520#else
521#define EVUTIL_SOCK_CLOEXEC 0x80000000
522#endif
523#ifdef EFD_NONBLOCK
524#define EVUTIL_EFD_NONBLOCK EFD_NONBLOCK
525#else
526#define EVUTIL_EFD_NONBLOCK 0x4000
527#endif
528#ifdef EFD_CLOEXEC
529#define EVUTIL_EFD_CLOEXEC EFD_CLOEXEC
530#else
531#define EVUTIL_EFD_CLOEXEC 0x8000
532#endif
533
Christopher Wileye8679812015-07-01 13:36:18 -0700534void evutil_memclear_(void *mem, size_t len);
535
Haibo Huangb2279672019-05-31 16:12:39 -0700536struct in_addr;
537struct in6_addr;
538
539/* This is a any, loopback, link-local, multicast */
540EVENT2_EXPORT_SYMBOL
541int evutil_v4addr_is_local_(const struct in_addr *in);
542/* This is a reserved, ipv4compat, ipv4map, loopback,
543 * link-local, multicast, or unspecified address. */
544EVENT2_EXPORT_SYMBOL
545int evutil_v6addr_is_local_(const struct in6_addr *in);
546
Christopher Wileye8679812015-07-01 13:36:18 -0700547#ifdef __cplusplus
548}
549#endif
550
551#endif