2005-04-01 22:15:56 +02:00
|
|
|
/* Copyright 2003-2004 Roger Dingledinex
|
2006-02-09 06:46:49 +01:00
|
|
|
* Copyright 2004-2006 Roger Dingledine, Nick Mathewson */
|
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
|
|
|
|
#if (_MSC_VER <= 1300)
|
|
|
|
#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
|
2004-11-01 21:41:47 +01:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#ifndef NULL_REP_IS_ZERO_BYTES
|
|
|
|
#error "It seems your platform does not represent NULL as zero. We can't cope."
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* ===== 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
|
|
|
|
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
|
|
|
|
size_t strlcat(char *dst, const char *src, size_t siz);
|
|
|
|
#endif
|
|
|
|
#ifndef HAVE_STRLCPY
|
|
|
|
size_t strlcpy(char *dst, const char *src, size_t siz);
|
|
|
|
#endif
|
2004-11-02 23:14:34 +01:00
|
|
|
|
|
|
|
#ifdef MS_WINDOWS
|
|
|
|
#define U64_PRINTF_ARG(a) (a)
|
|
|
|
#define U64_SCANF_ARG(a) (a)
|
2004-11-03 01:02:17 +01:00
|
|
|
#define U64_FORMAT "%I64u"
|
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-02 23:14:34 +01:00
|
|
|
#define U64_FORMAT "%llu"
|
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
|
|
|
|
2006-05-28 18:54:39 +02:00
|
|
|
const char *tor_mmap_file(const char *filename, size_t *size);
|
|
|
|
void tor_munmap_file(const char *memory, size_t size);
|
|
|
|
|
2004-11-01 21:41:47 +01:00
|
|
|
int tor_snprintf(char *str, size_t size, const char *format, ...)
|
|
|
|
CHECK_PRINTF(3,4);
|
|
|
|
int tor_vsnprintf(char *str, size_t size, const char *format, va_list args);
|
|
|
|
|
2005-06-18 04:17:11 +02:00
|
|
|
const void *tor_memmem(const void *haystack, size_t hlen, const void *needle,
|
|
|
|
size_t nlen);
|
|
|
|
|
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))
|
2004-12-08 01:42:50 +01:00
|
|
|
|
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
|
|
|
|
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 */
|
|
|
|
#ifdef MS_WINDOWS
|
|
|
|
/** On windows, you have to call close() on fds returned by open(),
|
|
|
|
* and closesocket() on fds returned by socket(). On Unix, everything
|
|
|
|
* gets close()'d. We abstract this difference by always using
|
|
|
|
* tor_close_socket to close sockets, and always using close() on
|
|
|
|
* files.
|
|
|
|
*/
|
|
|
|
#define tor_close_socket(s) closesocket(s)
|
|
|
|
#else
|
|
|
|
#define tor_close_socket(s) close(s)
|
|
|
|
#endif
|
|
|
|
|
2005-05-07 07:55:06 +02:00
|
|
|
#if (SIZEOF_SOCKLEN_T == 0)
|
|
|
|
typedef int socklen_t;
|
|
|
|
#endif
|
|
|
|
|
2005-01-12 07:42:32 +01:00
|
|
|
/* Now that we use libevent, all real sockets are safe for polling ... or
|
|
|
|
* if they aren't, libevent will help us. */
|
|
|
|
#define SOCKET_IS_POLLABLE(fd) ((fd)>=0)
|
|
|
|
|
2004-11-01 21:41:47 +01:00
|
|
|
struct in_addr;
|
|
|
|
int tor_inet_aton(const char *cp, struct in_addr *addr);
|
2004-12-22 06:29:06 +01:00
|
|
|
int tor_lookup_hostname(const char *name, uint32_t *addr);
|
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);
|
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.
|
|
|
|
*/
|
|
|
|
#ifdef MS_WINDOWS
|
|
|
|
/** 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
|
|
|
|
|
|
|
|
/* ===== OS compatibility */
|
|
|
|
const char *get_uname(void);
|
|
|
|
|
|
|
|
uint16_t get_uint16(const char *cp);
|
|
|
|
uint32_t get_uint32(const char *cp);
|
|
|
|
void set_uint16(char *cp, uint16_t v);
|
|
|
|
void set_uint32(char *cp, uint32_t v);
|
|
|
|
|
2005-03-14 04:28:46 +01:00
|
|
|
int set_max_file_descriptors(unsigned long limit, unsigned long cap);
|
2004-11-01 21:41:47 +01:00
|
|
|
int switch_id(char *user, char *group);
|
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
|
|
|
|
|
|
|
int spawn_func(int (*func)(void *), void *data);
|
|
|
|
void spawn_exit(void);
|
|
|
|
|
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
|
|
|
|
|
2005-02-22 08:03:03 +01:00
|
|
|
/* Because we use threads instead of processes on Windows, we need locking on
|
|
|
|
* Windows. On Unixy platforms, these functions are no-ops. */
|
2005-10-06 06:33:40 +02:00
|
|
|
|
2005-02-22 08:03:03 +01:00
|
|
|
typedef struct tor_mutex_t tor_mutex_t;
|
|
|
|
#ifdef TOR_IS_MULTITHREADED
|
|
|
|
tor_mutex_t *tor_mutex_new(void);
|
|
|
|
void tor_mutex_acquire(tor_mutex_t *m);
|
|
|
|
void tor_mutex_release(tor_mutex_t *m);
|
|
|
|
void tor_mutex_free(tor_mutex_t *m);
|
|
|
|
unsigned long tor_get_thread_id(void);
|
|
|
|
#else
|
|
|
|
#define tor_mutex_new() ((tor_mutex_t*)tor_malloc(sizeof(int)))
|
|
|
|
#define tor_mutex_acquire(m) do { } while (0)
|
|
|
|
#define tor_mutex_release(m) do { } while (0)
|
2005-03-14 04:18:35 +01:00
|
|
|
#define tor_mutex_free(m) do { tor_free(m); } while (0)
|
2005-02-22 08:03:03 +01:00
|
|
|
#define tor_get_thread_id() (1UL)
|
|
|
|
#endif
|
|
|
|
|
2004-11-01 21:41:47 +01:00
|
|
|
#endif
|
2005-06-09 21:03:31 +02:00
|
|
|
|