2003-04-16 19:04:58 +02:00
|
|
|
/* Copyright 2003 Roger Dingledine */
|
|
|
|
/* See LICENSE for licensing information */
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#ifndef __UTIL_H
|
|
|
|
#define __UTIL_H
|
|
|
|
|
2003-09-29 09:50:08 +02:00
|
|
|
#include "../or/or.h"
|
2003-08-12 05:08:41 +02:00
|
|
|
|
2003-08-14 19:13:52 +02:00
|
|
|
#if _MSC_VER > 1300
|
|
|
|
#include <winsock2.h>
|
|
|
|
#include <ws2tcpip.h>
|
|
|
|
#elif defined(_MSC_VER)
|
|
|
|
#include <winsock.h>
|
|
|
|
#endif
|
2003-08-12 05:08:41 +02:00
|
|
|
#ifndef HAVE_GETTIMEOFDAY
|
2003-08-12 05:16:15 +02:00
|
|
|
#ifdef HAVE_FTIME
|
2003-08-12 10:18:13 +02:00
|
|
|
#define USING_FAKE_TIMEVAL
|
2003-08-12 05:08:41 +02:00
|
|
|
#include <sys/timeb.h>
|
|
|
|
#define timeval timeb
|
|
|
|
#define tv_sec time
|
|
|
|
#define tv_usec millitm
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2003-08-14 19:13:52 +02:00
|
|
|
#ifdef MS_WINDOWS
|
2003-08-12 05:08:41 +02:00
|
|
|
/* Windows names string functions funnily. */
|
|
|
|
#define strncasecmp strnicmp
|
|
|
|
#define strcasecmp stricmp
|
|
|
|
#define INLINE __inline
|
|
|
|
#else
|
|
|
|
#define INLINE inline
|
|
|
|
#endif
|
2003-04-16 19:04:58 +02:00
|
|
|
|
2003-05-20 08:37:34 +02:00
|
|
|
void *tor_malloc(size_t size);
|
|
|
|
|
2003-04-16 19:04:58 +02:00
|
|
|
/* Same as gettimeofday, but no need to check exit value. */
|
|
|
|
void my_gettimeofday(struct timeval *timeval);
|
|
|
|
/* Returns the number of microseconds between start and end. Requires that
|
|
|
|
* end >= start, and that the number of microseconds < LONG_MAX. */
|
|
|
|
long tv_udiff(struct timeval *start, struct timeval *end);
|
|
|
|
|
|
|
|
void tv_addms(struct timeval *a, long ms);
|
|
|
|
void tv_add(struct timeval *a, struct timeval *b);
|
|
|
|
int tv_cmp(struct timeval *a, struct timeval *b);
|
|
|
|
|
2003-08-21 01:05:22 +02:00
|
|
|
int write_all(int fd, const void *buf, size_t count);
|
2003-09-14 04:58:50 +02:00
|
|
|
int read_all(int fd, void *buf, size_t count);
|
2003-08-21 01:05:22 +02:00
|
|
|
|
2003-08-12 05:08:41 +02:00
|
|
|
void set_socket_nonblocking(int socket);
|
|
|
|
|
2003-09-26 20:27:35 +02:00
|
|
|
typedef enum { FN_ERROR, FN_NOENT, FN_FILE, FN_DIR} file_status_t;
|
|
|
|
|
|
|
|
/* Return FN_ERROR if filename can't be read, FN_NOENT if it doesn't
|
|
|
|
* exist, FN_FILE if it is a regular file, or FN_DIR if it's a
|
|
|
|
* directory. */
|
|
|
|
file_status_t file_status(const char *filename);
|
|
|
|
/* Check whether dirname exists and is private. If yes returns
|
|
|
|
* 0. Else returns -1.
|
|
|
|
*/
|
|
|
|
int check_private_dir(const char *dirname, int create);
|
|
|
|
int write_str_to_file(const char *fname, const char *str);
|
2003-09-28 08:47:29 +02:00
|
|
|
char *read_file_to_str(const char *filename);
|
2003-09-29 09:50:08 +02:00
|
|
|
int parse_line_from_file(char *line, int maxlen, FILE *f, char **key_out, char **value_out);
|
2003-09-26 20:27:35 +02:00
|
|
|
|
2003-08-12 09:01:20 +02:00
|
|
|
/* Minimalist interface to run a void function in the background. On
|
|
|
|
unix calls fork, on win32 calls beginthread. Returns -1 on failure.
|
|
|
|
func should not return, but rather should call spawn_exit.
|
|
|
|
*/
|
|
|
|
int spawn_func(int (*func)(void *), void *data);
|
|
|
|
void spawn_exit();
|
|
|
|
|
2003-08-12 09:43:15 +02:00
|
|
|
int tor_socketpair(int family, int type, int protocol, int fd[2]);
|
|
|
|
|
2003-10-02 00:31:13 +02:00
|
|
|
const char *get_uname(void);
|
|
|
|
|
2003-08-14 19:13:52 +02:00
|
|
|
/* For stupid historical reasons, windows sockets have an independent set of
|
|
|
|
* errnos which they use as the fancy strikes them.
|
|
|
|
*/
|
|
|
|
#ifdef MS_WINDOWS
|
2003-08-14 19:51:36 +02:00
|
|
|
#define ERRNO_EAGAIN(e) ((e) == EAGAIN || (e) == WSAEWOULDBLOCK)
|
|
|
|
#define ERRNO_EINPROGRESS(e) ((e) == WSAEINPROGRESS)
|
|
|
|
#define ERRNO_CONN_EINPROGRESS(e) ((e) == WSAEINPROGRESS || (e) == WSAEINVAL)
|
2003-08-14 19:13:52 +02:00
|
|
|
int correct_socket_errno(int s);
|
|
|
|
#else
|
|
|
|
#define ERRNO_EAGAIN(e) ((e) == EAGAIN)
|
|
|
|
#define ERRNO_EINPROGRESS(e) ((e) == EINPROGRESS)
|
|
|
|
#define ERRNO_CONN_EINPROGRESS(e) ((e) == EINPROGRESS)
|
|
|
|
#define correct_socket_errno(s) (errno)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2003-04-16 19:04:58 +02:00
|
|
|
#endif
|