2007-12-12 22:09:01 +01:00
|
|
|
/* Copyright (c) 2003-2004, Roger Dingledinex
|
|
|
|
* Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
|
2008-02-07 06:31:47 +01:00
|
|
|
* Copyright (c) 2007-2008, The Tor Project, Inc. */
|
2004-11-01 21:41:47 +01:00
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#ifndef __COMPAT_H
|
|
|
|
#define __COMPAT_H
|
2004-11-29 23:25:31 +01:00
|
|
|
#define COMPAT_H_ID "$Id$"
|
2004-11-01 21:41:47 +01:00
|
|
|
|
|
|
|
#include "orconfig.h"
|
|
|
|
#include "torint.h"
|
|
|
|
#ifdef MS_WINDOWS
|
|
|
|
#define WIN32_WINNT 0x400
|
|
|
|
#define _WIN32_WINNT 0x400
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
2007-02-28 19:57:03 +01:00
|
|
|
#if defined(_MSC_VER) && (_MSC_VER < 1300)
|
2004-11-01 21:41:47 +01:00
|
|
|
#include <winsock.h>
|
|
|
|
#else
|
|
|
|
#include <winsock2.h>
|
|
|
|
#include <ws2tcpip.h>
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
#endif
|
2004-11-04 23:33:20 +01:00
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
#include <sys/time.h>
|
|
|
|
#endif
|
2005-08-12 19:24:53 +02:00
|
|
|
#ifdef HAVE_TIME_H
|
|
|
|
#include <time.h>
|
|
|
|
#endif
|
2006-10-25 03:25:17 +02:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|
2007-05-25 20:22:37 +02:00
|
|
|
#ifdef HAVE_CTYPE_H
|
|
|
|
#include <ctype.h>
|
|
|
|
#endif
|
2008-09-01 10:01:22 +02:00
|
|
|
#ifdef HAVE_PTHREAD_H
|
|
|
|
#include <pthread.h>
|
|
|
|
#endif
|
2004-11-01 21:41:47 +01:00
|
|
|
#include <stdarg.h>
|
2008-02-21 22:15:31 +01:00
|
|
|
#ifdef HAVE_SYS_RESOURCE_H
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#endif
|
2007-07-19 20:46:09 +02:00
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#endif
|
2008-02-21 22:15:31 +01:00
|
|
|
#ifdef HAVE_SYS_TYPES_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
#endif
|
2007-07-19 20:46:09 +02:00
|
|
|
#ifdef HAVE_NETINET_IN_H
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#endif
|
2007-07-19 22:00:45 +02:00
|
|
|
#ifdef HAVE_NETINET6_IN6_H
|
|
|
|
#include <netinet6/in6.h>
|
2007-07-19 20:46:09 +02:00
|
|
|
#endif
|
2004-11-01 21:41:47 +01:00
|
|
|
|
|
|
|
#ifndef NULL_REP_IS_ZERO_BYTES
|
|
|
|
#error "It seems your platform does not represent NULL as zero. We can't cope."
|
|
|
|
#endif
|
|
|
|
|
2007-10-22 02:44:42 +02:00
|
|
|
#if 'a'!=97 || 'z'!=122 || 'A'!=65 || ' '!=32
|
|
|
|
#error "It seems that you encode characters in something other than ASCII."
|
|
|
|
#endif
|
|
|
|
|
2004-11-01 21:41:47 +01:00
|
|
|
/* ===== Compiler compatibility */
|
|
|
|
|
|
|
|
/* GCC can check printf types on arbitrary functions. */
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#define CHECK_PRINTF(formatIdx, firstArg) \
|
2004-11-23 00:28:26 +01:00
|
|
|
__attribute__ ((format(printf, formatIdx, firstArg)))
|
2004-11-01 21:41:47 +01:00
|
|
|
#else
|
|
|
|
#define CHECK_PRINTF(formatIdx, firstArg)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* inline is __inline on windows. */
|
|
|
|
#ifdef MS_WINDOWS
|
|
|
|
#define INLINE __inline
|
|
|
|
#else
|
|
|
|
#define INLINE inline
|
|
|
|
#endif
|
|
|
|
|
2006-03-13 01:25:36 +01:00
|
|
|
/* Try to get a reasonable __func__ substitute in place. */
|
|
|
|
#if defined(_MSC_VER)
|
|
|
|
/* MSVC compilers before VC7 don't have __func__ at all; later ones call it
|
|
|
|
* __FUNCTION__. */
|
|
|
|
#if _MSC_VER < 1300
|
|
|
|
#define __func__ "???"
|
|
|
|
#else
|
|
|
|
#define __func__ __FUNCTION__
|
2004-11-01 21:41:47 +01:00
|
|
|
#endif
|
|
|
|
|
2006-03-13 01:25:36 +01:00
|
|
|
#else
|
|
|
|
/* For platforms where autoconf works, make sure __func__ is defined
|
|
|
|
* sanely. */
|
|
|
|
#ifndef HAVE_MACRO__func__
|
|
|
|
#ifdef HAVE_MACRO__FUNCTION__
|
|
|
|
#define __func__ __FUNCTION__
|
|
|
|
#elif HAVE_MACRO__FUNC__
|
|
|
|
#define __func__ __FUNC__
|
|
|
|
#else
|
|
|
|
#define __func__ "???"
|
2005-02-03 20:59:10 +01:00
|
|
|
#endif
|
2006-03-13 01:25:36 +01:00
|
|
|
#endif /* ifndef MAVE_MACRO__func__ */
|
2006-03-17 05:43:37 +01:00
|
|
|
#endif /* if not windows */
|
2005-02-03 20:59:10 +01:00
|
|
|
|
2006-07-17 02:39:05 +02:00
|
|
|
#if defined(_MSC_VER) && (_MSC_VER < 1300)
|
|
|
|
/* MSVC versions before 7 apparently don't believe that you can cast uint64_t
|
|
|
|
* to double and really mean it. */
|
2006-07-21 16:53:23 +02:00
|
|
|
extern INLINE double U64_TO_DBL(uint64_t x) {
|
2006-07-17 02:39:05 +02:00
|
|
|
int64_t i = (int64_t) x;
|
|
|
|
return (i < 0) ? ((double) INT64_MAX) : (double) i;
|
|
|
|
}
|
|
|
|
#define DBL_TO_U64(x) ((uint64_t)(int64_t) (x))
|
|
|
|
#else
|
|
|
|
#define U64_TO_DBL(x) ((double) (x))
|
|
|
|
#define DBL_TO_U64(x) ((uint64_t) (x))
|
|
|
|
#endif
|
|
|
|
|
2006-08-11 09:09:17 +02:00
|
|
|
/* GCC has several useful attributes. */
|
2006-08-31 19:39:47 +02:00
|
|
|
#if defined(__GNUC__) && __GNUC__ >= 3
|
2006-08-11 09:09:17 +02:00
|
|
|
#define ATTR_NORETURN __attribute__((noreturn))
|
|
|
|
#define ATTR_PURE __attribute__((pure))
|
2007-05-24 19:12:57 +02:00
|
|
|
#define ATTR_CONST __attribute__((const))
|
2006-08-11 09:09:17 +02:00
|
|
|
#define ATTR_MALLOC __attribute__((malloc))
|
2007-05-15 23:17:48 +02:00
|
|
|
#define ATTR_NORETURN __attribute__((noreturn))
|
2008-07-09 17:23:23 +02:00
|
|
|
/* Alas, nonnull is not at present a good idea for us. We'd like to get
|
|
|
|
* warnings when we pass NULL where we shouldn't (which nonnull does, albeit
|
|
|
|
* spottily), but we don't want to tell the compiler to make optimizations
|
|
|
|
* with the assumption that the argument can't be NULL (since this would make
|
|
|
|
* many of our checks go away, and make our code less robust against
|
|
|
|
* programming errors). Unfortunately, nonnull currently does both of these
|
|
|
|
* things, and there's no good way to split them up.
|
|
|
|
*
|
|
|
|
* #define ATTR_NONNULL(x) __attribute__((nonnull x)) */
|
|
|
|
#define ATTR_NONNULL(x)
|
|
|
|
|
2007-03-09 22:39:19 +01:00
|
|
|
/** Macro: Evaluates to <b>exp</b> and hints the compiler that the value
|
2008-10-27 17:30:52 +01:00
|
|
|
* of <b>exp</b> will probably be true.
|
|
|
|
*
|
|
|
|
* In other words, "if (PREDICT_LIKELY(foo))" is the same as "if (foo)",
|
|
|
|
* except that it tells the compiler that the branch will be taken most of the
|
|
|
|
* time. This can generate slightly better code with some CPUs.
|
|
|
|
*/
|
2007-03-09 22:39:19 +01:00
|
|
|
#define PREDICT_LIKELY(exp) __builtin_expect((exp), 1)
|
|
|
|
/** Macro: Evaluates to <b>exp</b> and hints the compiler that the value
|
2008-10-27 17:30:52 +01:00
|
|
|
* of <b>exp</b> will probably be false.
|
|
|
|
*
|
|
|
|
* In other words, "if (PREDICT_UNLIKELY(foo))" is the same as "if (foo)",
|
|
|
|
* except that it tells the compiler that the branch will usually not be
|
|
|
|
* taken. This can generate slightly better code with some CPUs.
|
|
|
|
*/
|
2007-03-09 22:39:19 +01:00
|
|
|
#define PREDICT_UNLIKELY(exp) __builtin_expect((exp), 0)
|
2006-08-11 09:09:17 +02:00
|
|
|
#else
|
|
|
|
#define ATTR_NORETURN
|
|
|
|
#define ATTR_PURE
|
2007-05-24 19:12:57 +02:00
|
|
|
#define ATTR_CONST
|
2006-08-11 09:09:17 +02:00
|
|
|
#define ATTR_MALLOC
|
2007-05-15 23:17:48 +02:00
|
|
|
#define ATTR_NORETURN
|
2006-08-11 09:09:17 +02:00
|
|
|
#define ATTR_NONNULL(x)
|
2007-03-06 21:25:44 +01:00
|
|
|
#define PREDICT_LIKELY(exp) (exp)
|
|
|
|
#define PREDICT_UNLIKELY(exp) (exp)
|
2006-08-11 09:09:17 +02:00
|
|
|
#endif
|
|
|
|
|
2008-10-27 17:30:52 +01:00
|
|
|
/** Expands to a syntactically valid empty statement. */
|
2007-06-17 20:22:39 +02:00
|
|
|
#define STMT_NIL (void)0
|
2008-10-27 17:30:52 +01:00
|
|
|
|
2007-06-17 20:22:39 +02:00
|
|
|
#ifdef __GNUC__
|
2008-10-27 17:30:52 +01:00
|
|
|
/** STMT_BEGIN and STMT_END are used to wrap blocks inside macros so that
|
|
|
|
* the macro can be used as if it were a single C statement. */
|
2007-06-17 20:22:39 +02:00
|
|
|
#define STMT_BEGIN (void) ({
|
|
|
|
#define STMT_END })
|
2008-01-06 04:16:08 +01:00
|
|
|
#elif defined(sun) || defined(__sun__)
|
2007-06-17 20:22:39 +02:00
|
|
|
#define STMT_BEGIN if (1) {
|
|
|
|
#define STMT_END } else STMT_NIL
|
|
|
|
#else
|
|
|
|
#define STMT_BEGIN do {
|
2007-07-05 16:51:01 +02:00
|
|
|
#define STMT_END } while (0)
|
2007-06-17 20:22:39 +02:00
|
|
|
#endif
|
|
|
|
|
2004-11-01 21:41:47 +01:00
|
|
|
/* ===== String compatibility */
|
|
|
|
#ifdef MS_WINDOWS
|
|
|
|
/* Windows names string functions differently from most other platforms. */
|
|
|
|
#define strncasecmp strnicmp
|
|
|
|
#define strcasecmp stricmp
|
|
|
|
#endif
|
2004-11-02 20:25:52 +01:00
|
|
|
#ifndef HAVE_STRLCAT
|
2006-08-11 09:09:17 +02:00
|
|
|
size_t strlcat(char *dst, const char *src, size_t siz) ATTR_NONNULL((1,2));
|
2004-11-02 20:25:52 +01:00
|
|
|
#endif
|
|
|
|
#ifndef HAVE_STRLCPY
|
2006-08-11 09:09:17 +02:00
|
|
|
size_t strlcpy(char *dst, const char *src, size_t siz) ATTR_NONNULL((1,2));
|
2004-11-02 20:25:52 +01:00
|
|
|
#endif
|
2004-11-02 23:14:34 +01:00
|
|
|
|
2006-06-03 20:52:31 +02:00
|
|
|
#ifdef _MSC_VER
|
2008-10-27 17:30:52 +01:00
|
|
|
/** Casts the uint64_t value in <b>a</b> to the right type for an argument
|
|
|
|
* to printf. */
|
2004-11-02 23:14:34 +01:00
|
|
|
#define U64_PRINTF_ARG(a) (a)
|
2008-10-27 17:30:52 +01:00
|
|
|
/** Casts the uint64_t* value in <b>a</b> to the right type for an argument
|
|
|
|
* to scanf. */
|
2004-11-02 23:14:34 +01:00
|
|
|
#define U64_SCANF_ARG(a) (a)
|
2008-10-27 17:30:52 +01:00
|
|
|
/** Expands to a literal uint64_t-typed constant for the value <b>n</b>. */
|
2004-11-20 01:37:00 +01:00
|
|
|
#define U64_LITERAL(n) (n ## ui64)
|
2004-11-02 23:14:34 +01:00
|
|
|
#else
|
2005-07-23 04:12:40 +02:00
|
|
|
#define U64_PRINTF_ARG(a) ((long long unsigned int)(a))
|
2005-07-23 04:19:43 +02:00
|
|
|
#define U64_SCANF_ARG(a) ((long long unsigned int*)(a))
|
2004-11-20 01:37:00 +01:00
|
|
|
#define U64_LITERAL(n) (n ## llu)
|
2004-11-02 23:14:34 +01:00
|
|
|
#endif
|
2004-11-01 21:41:47 +01:00
|
|
|
|
2007-02-28 22:07:19 +01:00
|
|
|
#if defined(_MSC_VER) || defined(__MINGW32__) || defined(__MINGW64__)
|
2008-10-27 17:30:52 +01:00
|
|
|
/** The formatting string used to put a uint64_t value in a printf() or
|
|
|
|
* scanf() function. See also U64_PRINTF_ARG and U64_SCANF_ARG. */
|
2007-02-28 22:07:19 +01:00
|
|
|
#define U64_FORMAT "%I64u"
|
|
|
|
#else
|
|
|
|
#define U64_FORMAT "%llu"
|
|
|
|
#endif
|
|
|
|
|
2006-10-20 01:05:02 +02:00
|
|
|
/** Represents an mmaped file. Allocated via tor_mmap_file; freed with
|
|
|
|
* tor_munmap_file. */
|
2006-08-05 19:53:08 +02:00
|
|
|
typedef struct tor_mmap_t {
|
2006-10-20 01:05:02 +02:00
|
|
|
const char *data; /**< Mapping of the file's contents. */
|
|
|
|
size_t size; /**< Size of the file. */
|
2008-12-05 03:17:41 +01:00
|
|
|
|
|
|
|
/* None of the fields below should be accessed from outside compat.c */
|
|
|
|
#ifdef HAVE_SYS_MMAN_H
|
|
|
|
size_t mapping_size; /**< Size of the actual mapping. (This is this file
|
|
|
|
* size, rounded up to the nearest page.) */
|
|
|
|
#elif defined MS_WINDOWS
|
|
|
|
HANDLE file_handle;
|
|
|
|
HANDLE mmap_handle;
|
|
|
|
#endif
|
|
|
|
|
2006-08-05 19:53:08 +02:00
|
|
|
} tor_mmap_t;
|
2006-08-04 20:32:43 +02:00
|
|
|
|
2006-08-11 09:09:17 +02:00
|
|
|
tor_mmap_t *tor_mmap_file(const char *filename) ATTR_NONNULL((1));
|
|
|
|
void tor_munmap_file(tor_mmap_t *handle) ATTR_NONNULL((1));
|
2006-05-28 18:54:39 +02:00
|
|
|
|
2004-11-01 21:41:47 +01:00
|
|
|
int tor_snprintf(char *str, size_t size, const char *format, ...)
|
2006-08-11 09:09:17 +02:00
|
|
|
CHECK_PRINTF(3,4) ATTR_NONNULL((1,3));
|
|
|
|
int tor_vsnprintf(char *str, size_t size, const char *format, va_list args)
|
|
|
|
ATTR_NONNULL((1,3));
|
2004-11-01 21:41:47 +01:00
|
|
|
|
2005-06-18 04:17:11 +02:00
|
|
|
const void *tor_memmem(const void *haystack, size_t hlen, const void *needle,
|
2006-08-11 09:09:17 +02:00
|
|
|
size_t nlen) ATTR_PURE ATTR_NONNULL((1,3));
|
2007-05-22 04:20:52 +02:00
|
|
|
static const void *tor_memstr(const void *haystack, size_t hlen,
|
|
|
|
const char *needle) ATTR_PURE ATTR_NONNULL((1,3));
|
|
|
|
static INLINE const void *
|
|
|
|
tor_memstr(const void *haystack, size_t hlen, const char *needle)
|
|
|
|
{
|
|
|
|
return tor_memmem(haystack, hlen, needle, strlen(needle));
|
|
|
|
}
|
2005-06-18 04:17:11 +02:00
|
|
|
|
2008-10-27 17:30:52 +01:00
|
|
|
/* This cast-to-uchar, then-cast-to-int business is needed to compile and
|
|
|
|
* run properly on some Solarises. */
|
|
|
|
|
2005-12-07 20:49:18 +01:00
|
|
|
#define TOR_ISALPHA(c) isalpha((int)(unsigned char)(c))
|
2005-02-25 21:46:13 +01:00
|
|
|
#define TOR_ISALNUM(c) isalnum((int)(unsigned char)(c))
|
2004-12-08 01:42:50 +01:00
|
|
|
#define TOR_ISSPACE(c) isspace((int)(unsigned char)(c))
|
|
|
|
#define TOR_ISXDIGIT(c) isxdigit((int)(unsigned char)(c))
|
|
|
|
#define TOR_ISDIGIT(c) isdigit((int)(unsigned char)(c))
|
2005-01-22 01:42:58 +01:00
|
|
|
#define TOR_ISPRINT(c) isprint((int)(unsigned char)(c))
|
2006-07-31 20:01:22 +02:00
|
|
|
#define TOR_ISLOWER(c) islower((int)(unsigned char)(c))
|
|
|
|
#define TOR_ISUPPER(c) isupper((int)(unsigned char)(c))
|
2004-12-08 01:42:50 +01:00
|
|
|
|
2006-08-31 19:39:51 +02:00
|
|
|
#define TOR_TOLOWER(c) ((char)tolower((int)(unsigned char)(c)))
|
|
|
|
#define TOR_TOUPPER(c) ((char)toupper((int)(unsigned char)(c)))
|
|
|
|
|
2005-10-25 09:05:03 +02:00
|
|
|
#ifdef MS_WINDOWS
|
|
|
|
#define _SHORT_FILE_ (tor_fix_source_file(__FILE__))
|
|
|
|
const char *tor_fix_source_file(const char *fname);
|
|
|
|
#else
|
|
|
|
#define _SHORT_FILE_ (__FILE__)
|
|
|
|
#define tor_fix_source_file(s) (s)
|
|
|
|
#endif
|
2004-12-22 03:32:26 +01:00
|
|
|
|
2004-11-01 21:41:47 +01:00
|
|
|
/* ===== Time compatibility */
|
|
|
|
#if !defined(HAVE_GETTIMEOFDAY) && !defined(HAVE_STRUCT_TIMEVAL_TV_SEC)
|
|
|
|
struct timeval {
|
|
|
|
time_t tv_sec;
|
|
|
|
unsigned int tv_usec;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void tor_gettimeofday(struct timeval *timeval);
|
|
|
|
|
2005-02-22 08:03:03 +01:00
|
|
|
#ifdef HAVE_LOCALTIME_R
|
|
|
|
#define tor_localtime_r localtime_r
|
|
|
|
#else
|
|
|
|
struct tm *tor_localtime_r(const time_t *timep, struct tm *result);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_GMTIME_R
|
|
|
|
#define tor_gmtime_r gmtime_r
|
|
|
|
#else
|
|
|
|
struct tm *tor_gmtime_r(const time_t *timep, struct tm *result);
|
|
|
|
#endif
|
|
|
|
|
2004-11-01 21:41:47 +01:00
|
|
|
/* ===== File compatibility */
|
|
|
|
int replace_file(const char *from, const char *to);
|
2005-09-15 01:27:52 +02:00
|
|
|
int touch_file(const char *fname);
|
2004-11-01 21:41:47 +01:00
|
|
|
|
2008-09-01 22:06:26 +02:00
|
|
|
typedef struct tor_lockfile_t tor_lockfile_t;
|
|
|
|
tor_lockfile_t *tor_lockfile_lock(const char *filename, int blocking,
|
|
|
|
int *locked_out);
|
|
|
|
void tor_lockfile_unlock(tor_lockfile_t *lockfile);
|
|
|
|
|
2008-12-03 00:26:04 +01:00
|
|
|
off_t tor_fd_getpos(int fd);
|
|
|
|
int tor_fd_seekend(int fd);
|
|
|
|
|
2005-09-10 03:42:42 +02:00
|
|
|
#ifdef MS_WINDOWS
|
|
|
|
#define PATH_SEPARATOR "\\"
|
|
|
|
#else
|
|
|
|
#define PATH_SEPARATOR "/"
|
|
|
|
#endif
|
|
|
|
|
2004-11-01 21:41:47 +01:00
|
|
|
/* ===== Net compatibility */
|
2007-04-21 19:24:18 +02:00
|
|
|
|
2008-12-02 19:54:47 +01:00
|
|
|
#if (SIZEOF_SOCKLEN_T == 0)
|
|
|
|
typedef int socklen_t;
|
|
|
|
#endif
|
|
|
|
|
2008-02-19 20:30:41 +01:00
|
|
|
int tor_close_socket(int s);
|
2007-04-21 19:24:18 +02:00
|
|
|
int tor_open_socket(int domain, int type, int protocol);
|
2008-02-20 00:01:07 +01:00
|
|
|
int tor_accept_socket(int sockfd, struct sockaddr *addr, socklen_t *len);
|
2007-04-21 19:24:18 +02:00
|
|
|
int get_n_open_sockets(void);
|
2004-11-01 21:41:47 +01:00
|
|
|
|
2006-09-19 22:41:31 +02:00
|
|
|
#ifdef USE_BSOCKETS
|
|
|
|
#define tor_socket_send(s, buf, len, flags) bsend(s, buf, len, flags)
|
|
|
|
#define tor_socket_recv(s, buf, len, flags) brecv(s, buf, len, flags)
|
|
|
|
#else
|
|
|
|
#define tor_socket_send(s, buf, len, flags) send(s, buf, len, flags)
|
|
|
|
#define tor_socket_recv(s, buf, len, flags) recv(s, buf, len, flags)
|
|
|
|
#endif
|
|
|
|
|
2008-02-05 20:36:06 +01:00
|
|
|
/* Define struct in6_addr on platforms that do not have it. Generally,
|
|
|
|
* these platforms are ones without IPv6 support, but we want to have
|
|
|
|
* a working in6_addr there anyway, so we can use it to parse IPv6
|
|
|
|
* addresses. */
|
|
|
|
#if !defined(HAVE_STRUCT_IN6_ADDR)
|
2007-05-25 20:22:37 +02:00
|
|
|
struct in6_addr
|
|
|
|
{
|
2007-07-19 20:46:09 +02:00
|
|
|
union {
|
|
|
|
uint8_t u6_addr8[16];
|
|
|
|
uint16_t u6_addr16[8];
|
|
|
|
uint32_t u6_addr32[4];
|
|
|
|
} in6_u;
|
|
|
|
#define s6_addr in6_u.u6_addr8
|
|
|
|
#define s6_addr16 in6_u.u6_addr16
|
|
|
|
#define s6_addr32 in6_u.u6_addr32
|
2007-05-25 20:22:37 +02:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2007-07-19 22:00:45 +02:00
|
|
|
#if defined(__APPLE__) || defined(__darwin__) || defined(__FreeBSD__) \
|
2007-07-26 22:26:53 +02:00
|
|
|
|| defined(__NetBSD__) || defined(__OpenBSD__)
|
2007-07-19 22:00:45 +02:00
|
|
|
/* Many BSD variants seem not to define these. */
|
2007-07-19 21:50:20 +02:00
|
|
|
#ifndef s6_addr16
|
|
|
|
#define s6_addr16 __u6_addr.__u6_addr16
|
|
|
|
#endif
|
|
|
|
#ifndef s6_addr32
|
|
|
|
#define s6_addr32 __u6_addr.__u6_addr32
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2007-08-02 19:30:42 +02:00
|
|
|
#ifndef HAVE_SA_FAMILY_T
|
|
|
|
typedef uint16_t sa_family_t;
|
|
|
|
#endif
|
|
|
|
|
2007-12-05 17:30:52 +01:00
|
|
|
/* Apparently, MS and Solaris don't define s6_addr16 or s6_addr32. */
|
|
|
|
#ifdef HAVE_STRUCT_IN6_ADDR_S6_ADDR32
|
2007-08-17 23:46:34 +02:00
|
|
|
#define S6_ADDR32(x) ((uint32_t*)(x).s6_addr32)
|
2007-08-17 22:44:54 +02:00
|
|
|
#else
|
|
|
|
#define S6_ADDR32(x) ((uint32_t*)((char*)&(x).s6_addr))
|
|
|
|
#endif
|
2007-12-05 17:30:52 +01:00
|
|
|
#ifdef HAVE_STRUCT_IN6_ADDR_S6_ADDR16
|
|
|
|
#define S6_ADDR16(x) ((uint16_t*)(x).s6_addr16)
|
|
|
|
#else
|
|
|
|
#define S6_ADDR16(x) ((uint16_t*)((char*)&(x).s6_addr))
|
|
|
|
#endif
|
2007-08-17 22:44:54 +02:00
|
|
|
|
2008-02-05 20:36:06 +01:00
|
|
|
/* Define struct sockaddr_in6 on platforms that do not have it. See notes
|
|
|
|
* on struct in6_addr. */
|
|
|
|
#if !defined(HAVE_STRUCT_SOCKADDR_IN6)
|
2007-07-19 20:46:09 +02:00
|
|
|
struct sockaddr_in6 {
|
2007-08-02 19:30:42 +02:00
|
|
|
sa_family_t sin6_family;
|
2007-07-19 20:46:09 +02:00
|
|
|
uint16_t sin6_port;
|
|
|
|
// uint32_t sin6_flowinfo;
|
|
|
|
struct in6_addr sin6_addr;
|
|
|
|
// uint32_t sin6_scope_id;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2006-08-11 09:09:17 +02:00
|
|
|
int tor_inet_aton(const char *cp, struct in_addr *addr) ATTR_NONNULL((1,2));
|
2007-05-25 20:22:37 +02:00
|
|
|
const char *tor_inet_ntop(int af, const void *src, char *dst, size_t len);
|
|
|
|
int tor_inet_pton(int af, const char *src, void *dst);
|
2006-08-11 09:09:17 +02:00
|
|
|
int tor_lookup_hostname(const char *name, uint32_t *addr) ATTR_NONNULL((1,2));
|
2004-11-01 21:41:47 +01:00
|
|
|
void set_socket_nonblocking(int socket);
|
|
|
|
int tor_socketpair(int family, int type, int protocol, int fd[2]);
|
2004-12-22 06:29:06 +01:00
|
|
|
int network_init(void);
|
2007-07-19 20:46:09 +02:00
|
|
|
|
2004-11-01 21:41:47 +01:00
|
|
|
/* For stupid historical reasons, windows sockets have an independent
|
|
|
|
* set of errnos, and an independent way to get them. Also, you can't
|
|
|
|
* always believe WSAEWOULDBLOCK. Use the macros below to compare
|
|
|
|
* errnos against expected values, and use tor_socket_errno to find
|
|
|
|
* the actual errno after a socket operation fails.
|
|
|
|
*/
|
2006-09-19 22:41:31 +02:00
|
|
|
#if defined(MS_WINDOWS) && !defined(USE_BSOCKETS)
|
2004-11-01 21:41:47 +01:00
|
|
|
/** Return true if e is EAGAIN or the local equivalent. */
|
|
|
|
#define ERRNO_IS_EAGAIN(e) ((e) == EAGAIN || (e) == WSAEWOULDBLOCK)
|
|
|
|
/** Return true if e is EINPROGRESS or the local equivalent. */
|
|
|
|
#define ERRNO_IS_EINPROGRESS(e) ((e) == WSAEINPROGRESS)
|
|
|
|
/** Return true if e is EINPROGRESS or the local equivalent as returned by
|
|
|
|
* a call to connect(). */
|
2005-12-14 21:40:40 +01:00
|
|
|
#define ERRNO_IS_CONN_EINPROGRESS(e) \
|
|
|
|
((e) == WSAEINPROGRESS || (e)== WSAEINVAL || (e) == WSAEWOULDBLOCK)
|
2004-11-01 21:41:47 +01:00
|
|
|
/** Return true if e is EAGAIN or another error indicating that a call to
|
|
|
|
* accept() has no pending connections to return. */
|
|
|
|
#define ERRNO_IS_ACCEPT_EAGAIN(e) ERRNO_IS_EAGAIN(e)
|
|
|
|
/** Return true if e is EMFILE or another error indicating that a call to
|
|
|
|
* accept() has failed because we're out of fds or something. */
|
|
|
|
#define ERRNO_IS_ACCEPT_RESOURCE_LIMIT(e) \
|
|
|
|
((e) == WSAEMFILE || (e) == WSAENOBUFS)
|
2006-02-03 13:25:46 +01:00
|
|
|
/** Return true if e is EADDRINUSE or the local equivalent. */
|
|
|
|
#define ERRNO_IS_EADDRINUSE(e) ((e) == WSAEADDRINUSE)
|
2004-11-01 21:41:47 +01:00
|
|
|
int tor_socket_errno(int sock);
|
|
|
|
const char *tor_socket_strerror(int e);
|
|
|
|
#else
|
|
|
|
#define ERRNO_IS_EAGAIN(e) ((e) == EAGAIN)
|
|
|
|
#define ERRNO_IS_EINPROGRESS(e) ((e) == EINPROGRESS)
|
|
|
|
#define ERRNO_IS_CONN_EINPROGRESS(e) ((e) == EINPROGRESS)
|
|
|
|
#define ERRNO_IS_ACCEPT_EAGAIN(e) ((e) == EAGAIN || (e) == ECONNABORTED)
|
|
|
|
#define ERRNO_IS_ACCEPT_RESOURCE_LIMIT(e) \
|
|
|
|
((e) == EMFILE || (e) == ENFILE || (e) == ENOBUFS || (e) == ENOMEM)
|
2006-02-03 13:25:46 +01:00
|
|
|
#define ERRNO_IS_EADDRINUSE(e) ((e) == EADDRINUSE)
|
2004-11-01 21:41:47 +01:00
|
|
|
#define tor_socket_errno(sock) (errno)
|
|
|
|
#define tor_socket_strerror(e) strerror(e)
|
|
|
|
#endif
|
|
|
|
|
2008-08-25 23:02:22 +02:00
|
|
|
/** Specified SOCKS5 status codes. */
|
|
|
|
typedef enum {
|
|
|
|
SOCKS5_SUCCEEDED = 0x00,
|
|
|
|
SOCKS5_GENERAL_ERROR = 0x01,
|
|
|
|
SOCKS5_NOT_ALLOWED = 0x02,
|
|
|
|
SOCKS5_NET_UNREACHABLE = 0x03,
|
|
|
|
SOCKS5_HOST_UNREACHABLE = 0x04,
|
|
|
|
SOCKS5_CONNECTION_REFUSED = 0x05,
|
|
|
|
SOCKS5_TTL_EXPIRED = 0x06,
|
|
|
|
SOCKS5_COMMAND_NOT_SUPPORTED = 0x07,
|
|
|
|
SOCKS5_ADDRESS_TYPE_NOT_SUPPORTED = 0x08,
|
|
|
|
} socks5_reply_status_t;
|
|
|
|
|
2004-11-01 21:41:47 +01:00
|
|
|
/* ===== OS compatibility */
|
|
|
|
const char *get_uname(void);
|
|
|
|
|
2006-08-11 09:09:17 +02:00
|
|
|
uint16_t get_uint16(const char *cp) ATTR_PURE ATTR_NONNULL((1));
|
|
|
|
uint32_t get_uint32(const char *cp) ATTR_PURE ATTR_NONNULL((1));
|
|
|
|
void set_uint16(char *cp, uint16_t v) ATTR_NONNULL((1));
|
|
|
|
void set_uint32(char *cp, uint32_t v) ATTR_NONNULL((1));
|
2004-11-01 21:41:47 +01:00
|
|
|
|
2008-11-12 15:39:25 +01:00
|
|
|
/* These uint8 variants are defined to make the code more uniform. */
|
|
|
|
#define get_uint8(cp) (*(const uint8_t*)(cp))
|
|
|
|
static void set_uint8(char *cp, uint8_t v);
|
|
|
|
static INLINE void
|
|
|
|
set_uint8(char *cp, uint8_t v)
|
|
|
|
{
|
|
|
|
*(uint8_t*)cp = v;
|
|
|
|
}
|
|
|
|
|
2008-02-21 22:15:31 +01:00
|
|
|
#if !defined(HAVE_RLIM_T)
|
|
|
|
typedef unsigned long rlim_t;
|
|
|
|
#endif
|
|
|
|
int set_max_file_descriptors(rlim_t limit, int *max);
|
2008-11-07 03:06:12 +01:00
|
|
|
int switch_id(const char *user);
|
2004-11-10 15:23:31 +01:00
|
|
|
#ifdef HAVE_PWD_H
|
|
|
|
char *get_user_homedir(const char *username);
|
|
|
|
#endif
|
2004-11-01 21:41:47 +01:00
|
|
|
|
2006-09-06 03:49:55 +02:00
|
|
|
int spawn_func(void (*func)(void *), void *data);
|
2006-08-11 09:09:17 +02:00
|
|
|
void spawn_exit(void) ATTR_NORETURN;
|
2004-11-01 21:41:47 +01:00
|
|
|
|
2005-05-10 22:02:52 +02:00
|
|
|
#if defined(ENABLE_THREADS) && defined(MS_WINDOWS)
|
2005-01-27 23:34:48 +01:00
|
|
|
#define USE_WIN32_THREADS
|
|
|
|
#define TOR_IS_MULTITHREADED 1
|
2005-12-14 21:40:40 +01:00
|
|
|
#elif (defined(ENABLE_THREADS) && defined(HAVE_PTHREAD_H) && \
|
|
|
|
defined(HAVE_PTHREAD_CREATE))
|
2005-01-27 23:34:48 +01:00
|
|
|
#define USE_PTHREADS
|
2005-01-03 19:06:51 +01:00
|
|
|
#define TOR_IS_MULTITHREADED 1
|
|
|
|
#else
|
|
|
|
#undef TOR_IS_MULTITHREADED
|
|
|
|
#endif
|
|
|
|
|
2006-07-04 05:25:07 +02:00
|
|
|
/* Because we use threads instead of processes on most platforms (Windows,
|
|
|
|
* Linux, etc), we need locking for them. On platforms with poor thread
|
|
|
|
* support or broken gethostbyname_r, these functions are no-ops. */
|
2005-10-06 06:33:40 +02:00
|
|
|
|
2008-08-22 18:24:52 +02:00
|
|
|
/** A generic lock structure for multithreaded builds. */
|
|
|
|
typedef struct tor_mutex_t {
|
|
|
|
#if defined(USE_WIN32_THREADS)
|
|
|
|
CRITICAL_SECTION mutex;
|
|
|
|
#elif defined(USE_PTHREADS)
|
|
|
|
pthread_mutex_t mutex;
|
|
|
|
#else
|
|
|
|
int _unused;
|
|
|
|
#endif
|
|
|
|
} tor_mutex_t;
|
|
|
|
|
2005-02-22 08:03:03 +01:00
|
|
|
#ifdef TOR_IS_MULTITHREADED
|
|
|
|
tor_mutex_t *tor_mutex_new(void);
|
2008-08-22 18:24:52 +02:00
|
|
|
void tor_mutex_init(tor_mutex_t *m);
|
2005-02-22 08:03:03 +01:00
|
|
|
void tor_mutex_acquire(tor_mutex_t *m);
|
|
|
|
void tor_mutex_release(tor_mutex_t *m);
|
|
|
|
void tor_mutex_free(tor_mutex_t *m);
|
2008-08-22 18:24:52 +02:00
|
|
|
void tor_mutex_uninit(tor_mutex_t *m);
|
2005-02-22 08:03:03 +01:00
|
|
|
unsigned long tor_get_thread_id(void);
|
2007-12-12 00:06:51 +01:00
|
|
|
void tor_threads_init(void);
|
2005-02-22 08:03:03 +01:00
|
|
|
#else
|
|
|
|
#define tor_mutex_new() ((tor_mutex_t*)tor_malloc(sizeof(int)))
|
2008-08-22 18:24:52 +02:00
|
|
|
#define tor_mutex_init(m) STMT_NIL
|
2007-06-17 20:22:39 +02:00
|
|
|
#define tor_mutex_acquire(m) STMT_NIL
|
|
|
|
#define tor_mutex_release(m) STMT_NIL
|
|
|
|
#define tor_mutex_free(m) STMT_BEGIN tor_free(m); STMT_END
|
2008-08-22 18:24:52 +02:00
|
|
|
#define tor_mutex_uninit(m) STMT_NIL
|
2005-02-22 08:03:03 +01:00
|
|
|
#define tor_get_thread_id() (1UL)
|
2007-12-12 00:06:51 +01:00
|
|
|
#define tor_threads_init() STMT_NIL
|
2005-02-22 08:03:03 +01:00
|
|
|
#endif
|
|
|
|
|
2007-07-01 18:22:45 +02:00
|
|
|
#ifdef TOR_IS_MULTITHREADED
|
2008-02-05 20:40:19 +01:00
|
|
|
#if 0
|
2007-07-01 18:22:45 +02:00
|
|
|
typedef struct tor_cond_t tor_cond_t;
|
|
|
|
tor_cond_t *tor_cond_new(void);
|
2007-08-17 23:46:34 +02:00
|
|
|
void tor_cond_free(tor_cond_t *cond);
|
2007-07-01 18:22:45 +02:00
|
|
|
int tor_cond_wait(tor_cond_t *cond, tor_mutex_t *mutex);
|
|
|
|
void tor_cond_signal_one(tor_cond_t *cond);
|
|
|
|
void tor_cond_signal_all(tor_cond_t *cond);
|
|
|
|
#endif
|
2008-02-05 20:40:19 +01:00
|
|
|
#endif
|
2007-07-01 18:22:45 +02:00
|
|
|
|
2007-02-12 22:39:44 +01:00
|
|
|
/* Platform-specific helpers. */
|
|
|
|
#ifdef MS_WINDOWS
|
|
|
|
char *format_win32_error(DWORD err);
|
|
|
|
#endif
|
|
|
|
|
2006-09-06 03:49:55 +02:00
|
|
|
/*for some reason my compiler doesn't have these version flags defined
|
|
|
|
a nice homework assignment for someone one day is to define the rest*/
|
|
|
|
//these are the values as given on MSDN
|
|
|
|
#ifdef MS_WINDOWS
|
|
|
|
|
|
|
|
#ifndef VER_SUITE_EMBEDDEDNT
|
|
|
|
#define VER_SUITE_EMBEDDEDNT 0x00000040
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef VER_SUITE_SINGLEUSERTS
|
|
|
|
#define VER_SUITE_SINGLEUSERTS 0x00000100
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2004-11-01 21:41:47 +01:00
|
|
|
#endif
|
2005-06-09 21:03:31 +02:00
|
|
|
|