util.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384
  1. /* Copyright (c) 2003-2004, Roger Dingledine
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2011, The Tor Project, Inc. */
  4. /* See LICENSE for licensing information */
  5. /**
  6. * \file util.h
  7. * \brief Headers for util.c
  8. **/
  9. #ifndef _TOR_UTIL_H
  10. #define _TOR_UTIL_H
  11. #include "orconfig.h"
  12. #include "torint.h"
  13. #include "compat.h"
  14. #include "di_ops.h"
  15. #include <stdio.h>
  16. #include <stdlib.h>
  17. #ifndef O_BINARY
  18. #define O_BINARY 0
  19. #endif
  20. #ifndef O_TEXT
  21. #define O_TEXT 0
  22. #endif
  23. /* Replace assert() with a variant that sends failures to the log before
  24. * calling assert() normally.
  25. */
  26. #ifdef NDEBUG
  27. /* Nobody should ever want to build with NDEBUG set. 99% of our asserts will
  28. * be outside the critical path anyway, so it's silly to disable bug-checking
  29. * throughout the entire program just because a few asserts are slowing you
  30. * down. Profile, optimize the critical path, and keep debugging on.
  31. *
  32. * And I'm not just saying that because some of our asserts check
  33. * security-critical properties.
  34. */
  35. #error "Sorry; we don't support building with NDEBUG."
  36. #endif
  37. /** Like assert(3), but send assertion failures to the log as well as to
  38. * stderr. */
  39. #define tor_assert(expr) STMT_BEGIN \
  40. if (PREDICT_UNLIKELY(!(expr))) { \
  41. log_err(LD_BUG, "%s:%d: %s: Assertion %s failed; aborting.", \
  42. _SHORT_FILE_, __LINE__, __func__, #expr); \
  43. fprintf(stderr,"%s:%d %s: Assertion %s failed; aborting.\n", \
  44. _SHORT_FILE_, __LINE__, __func__, #expr); \
  45. abort(); \
  46. } STMT_END
  47. /* If we're building with dmalloc, we want all of our memory allocation
  48. * functions to take an extra file/line pair of arguments. If not, not.
  49. * We define DMALLOC_PARAMS to the extra parameters to insert in the
  50. * function prototypes, and DMALLOC_ARGS to the extra arguments to add
  51. * to calls. */
  52. #ifdef USE_DMALLOC
  53. #define DMALLOC_PARAMS , const char *file, const int line
  54. #define DMALLOC_ARGS , _SHORT_FILE_, __LINE__
  55. #else
  56. #define DMALLOC_PARAMS
  57. #define DMALLOC_ARGS
  58. #endif
  59. /** Define this if you want Tor to crash when any problem comes up,
  60. * so you can get a coredump and track things down. */
  61. // #define tor_fragile_assert() tor_assert(0)
  62. #define tor_fragile_assert()
  63. /* Memory management */
  64. void *_tor_malloc(size_t size DMALLOC_PARAMS) ATTR_MALLOC;
  65. void *_tor_malloc_zero(size_t size DMALLOC_PARAMS) ATTR_MALLOC;
  66. void *_tor_malloc_roundup(size_t *size DMALLOC_PARAMS) ATTR_MALLOC;
  67. void *_tor_realloc(void *ptr, size_t size DMALLOC_PARAMS);
  68. char *_tor_strdup(const char *s DMALLOC_PARAMS) ATTR_MALLOC ATTR_NONNULL((1));
  69. char *_tor_strndup(const char *s, size_t n DMALLOC_PARAMS)
  70. ATTR_MALLOC ATTR_NONNULL((1));
  71. void *_tor_memdup(const void *mem, size_t len DMALLOC_PARAMS)
  72. ATTR_MALLOC ATTR_NONNULL((1));
  73. void _tor_free(void *mem);
  74. #ifdef USE_DMALLOC
  75. extern int dmalloc_free(const char *file, const int line, void *pnt,
  76. const int func_id);
  77. #define tor_free(p) STMT_BEGIN \
  78. if (PREDICT_LIKELY((p)!=NULL)) { \
  79. dmalloc_free(_SHORT_FILE_, __LINE__, (p), 0); \
  80. (p)=NULL; \
  81. } \
  82. STMT_END
  83. #else
  84. /** Release memory allocated by tor_malloc, tor_realloc, tor_strdup, etc.
  85. * Unlike the free() function, tor_free() will still work on NULL pointers,
  86. * and it sets the pointer value to NULL after freeing it.
  87. *
  88. * This is a macro. If you need a function pointer to release memory from
  89. * tor_malloc(), use _tor_free().
  90. */
  91. #define tor_free(p) STMT_BEGIN \
  92. if (PREDICT_LIKELY((p)!=NULL)) { \
  93. free(p); \
  94. (p)=NULL; \
  95. } \
  96. STMT_END
  97. #endif
  98. #define tor_malloc(size) _tor_malloc(size DMALLOC_ARGS)
  99. #define tor_malloc_zero(size) _tor_malloc_zero(size DMALLOC_ARGS)
  100. #define tor_malloc_roundup(szp) _tor_malloc_roundup(szp DMALLOC_ARGS)
  101. #define tor_realloc(ptr, size) _tor_realloc(ptr, size DMALLOC_ARGS)
  102. #define tor_strdup(s) _tor_strdup(s DMALLOC_ARGS)
  103. #define tor_strndup(s, n) _tor_strndup(s, n DMALLOC_ARGS)
  104. #define tor_memdup(s, n) _tor_memdup(s, n DMALLOC_ARGS)
  105. void tor_log_mallinfo(int severity);
  106. /** Return the offset of <b>member</b> within the type <b>tp</b>, in bytes */
  107. #if defined(__GNUC__) && __GNUC__ > 3
  108. #define STRUCT_OFFSET(tp, member) __builtin_offsetof(tp, member)
  109. #else
  110. #define STRUCT_OFFSET(tp, member) \
  111. ((off_t) (((char*)&((tp*)0)->member)-(char*)0))
  112. #endif
  113. /** Macro: yield a pointer to the field at position <b>off</b> within the
  114. * structure <b>st</b>. Example:
  115. * <pre>
  116. * struct a { int foo; int bar; } x;
  117. * off_t bar_offset = STRUCT_OFFSET(struct a, bar);
  118. * int *bar_p = STRUCT_VAR_P(&x, bar_offset);
  119. * *bar_p = 3;
  120. * </pre>
  121. */
  122. #define STRUCT_VAR_P(st, off) ((void*) ( ((char*)(st)) + (off) ) )
  123. /** Macro: yield a pointer to an enclosing structure given a pointer to
  124. * a substructure at offset <b>off</b>. Example:
  125. * <pre>
  126. * struct base { ... };
  127. * struct subtype { int x; struct base b; } x;
  128. * struct base *bp = &x.base;
  129. * struct *sp = SUBTYPE_P(bp, struct subtype, b);
  130. * </pre>
  131. */
  132. #define SUBTYPE_P(p, subtype, basemember) \
  133. ((void*) ( ((char*)(p)) - STRUCT_OFFSET(subtype, basemember) ))
  134. /* Logic */
  135. /** Macro: true if two values have the same boolean value. */
  136. #define bool_eq(a,b) (!(a)==!(b))
  137. /** Macro: true if two values have different boolean values. */
  138. #define bool_neq(a,b) (!(a)!=!(b))
  139. /* Math functions */
  140. double tor_mathlog(double d) ATTR_CONST;
  141. long tor_lround(double d) ATTR_CONST;
  142. int tor_log2(uint64_t u64) ATTR_CONST;
  143. uint64_t round_to_power_of_2(uint64_t u64);
  144. unsigned round_to_next_multiple_of(unsigned number, unsigned divisor);
  145. uint32_t round_uint32_to_next_multiple_of(uint32_t number, uint32_t divisor);
  146. uint64_t round_uint64_to_next_multiple_of(uint64_t number, uint64_t divisor);
  147. /* Compute the CEIL of <b>a</b> divided by <b>b</b>, for nonnegative <b>a</b>
  148. * and positive <b>b</b>. Works on integer types only. Not defined if a+b can
  149. * overflow. */
  150. #define CEIL_DIV(a,b) (((a)+(b)-1)/(b))
  151. /* String manipulation */
  152. /** Allowable characters in a hexadecimal string. */
  153. #define HEX_CHARACTERS "0123456789ABCDEFabcdef"
  154. void tor_strlower(char *s) ATTR_NONNULL((1));
  155. void tor_strupper(char *s) ATTR_NONNULL((1));
  156. int tor_strisprint(const char *s) ATTR_PURE ATTR_NONNULL((1));
  157. int tor_strisnonupper(const char *s) ATTR_PURE ATTR_NONNULL((1));
  158. int strcmpstart(const char *s1, const char *s2) ATTR_PURE ATTR_NONNULL((1,2));
  159. int strcmp_len(const char *s1, const char *s2, size_t len)
  160. ATTR_PURE ATTR_NONNULL((1,2));
  161. int strcasecmpstart(const char *s1, const char *s2)
  162. ATTR_PURE ATTR_NONNULL((1,2));
  163. int strcmpend(const char *s1, const char *s2) ATTR_PURE ATTR_NONNULL((1,2));
  164. int strcasecmpend(const char *s1, const char *s2)
  165. ATTR_PURE ATTR_NONNULL((1,2));
  166. int fast_memcmpstart(const void *mem, size_t memlen,
  167. const char *prefix) ATTR_PURE;
  168. void tor_strstrip(char *s, const char *strip) ATTR_NONNULL((1,2));
  169. long tor_parse_long(const char *s, int base, long min,
  170. long max, int *ok, char **next);
  171. unsigned long tor_parse_ulong(const char *s, int base, unsigned long min,
  172. unsigned long max, int *ok, char **next);
  173. double tor_parse_double(const char *s, double min, double max, int *ok,
  174. char **next);
  175. uint64_t tor_parse_uint64(const char *s, int base, uint64_t min,
  176. uint64_t max, int *ok, char **next);
  177. const char *hex_str(const char *from, size_t fromlen) ATTR_NONNULL((1));
  178. const char *eat_whitespace(const char *s) ATTR_PURE;
  179. const char *eat_whitespace_eos(const char *s, const char *eos) ATTR_PURE;
  180. const char *eat_whitespace_no_nl(const char *s) ATTR_PURE;
  181. const char *eat_whitespace_eos_no_nl(const char *s, const char *eos) ATTR_PURE;
  182. const char *find_whitespace(const char *s) ATTR_PURE;
  183. const char *find_whitespace_eos(const char *s, const char *eos) ATTR_PURE;
  184. const char *find_str_at_start_of_line(const char *haystack, const char *needle)
  185. ATTR_PURE;
  186. int tor_mem_is_zero(const char *mem, size_t len) ATTR_PURE;
  187. int tor_digest_is_zero(const char *digest) ATTR_PURE;
  188. int tor_digest256_is_zero(const char *digest) ATTR_PURE;
  189. char *esc_for_log(const char *string) ATTR_MALLOC;
  190. const char *escaped(const char *string);
  191. struct smartlist_t;
  192. void wrap_string(struct smartlist_t *out, const char *string, size_t width,
  193. const char *prefix0, const char *prefixRest);
  194. int tor_vsscanf(const char *buf, const char *pattern, va_list ap);
  195. int tor_sscanf(const char *buf, const char *pattern, ...)
  196. #ifdef __GNUC__
  197. __attribute__((format(scanf, 2, 3)))
  198. #endif
  199. ;
  200. int hex_decode_digit(char c);
  201. void base16_encode(char *dest, size_t destlen, const char *src, size_t srclen);
  202. int base16_decode(char *dest, size_t destlen, const char *src, size_t srclen);
  203. /* Time helpers */
  204. double tv_to_double(const struct timeval *tv);
  205. int64_t tv_to_msec(const struct timeval *tv);
  206. int64_t tv_to_usec(const struct timeval *tv);
  207. long tv_udiff(const struct timeval *start, const struct timeval *end);
  208. long tv_mdiff(const struct timeval *start, const struct timeval *end);
  209. time_t tor_timegm(struct tm *tm);
  210. #define RFC1123_TIME_LEN 29
  211. void format_rfc1123_time(char *buf, time_t t);
  212. int parse_rfc1123_time(const char *buf, time_t *t);
  213. #define ISO_TIME_LEN 19
  214. void format_local_iso_time(char *buf, time_t t);
  215. void format_iso_time(char *buf, time_t t);
  216. int parse_iso_time(const char *buf, time_t *t);
  217. int parse_http_time(const char *buf, struct tm *tm);
  218. int format_time_interval(char *out, size_t out_len, long interval);
  219. /* Cached time */
  220. #ifdef TIME_IS_FAST
  221. #define approx_time() time(NULL)
  222. #define update_approx_time(t) STMT_NIL
  223. #else
  224. time_t approx_time(void);
  225. void update_approx_time(time_t now);
  226. #endif
  227. /* Rate-limiter */
  228. /** A ratelim_t remembers how often an event is occurring, and how often
  229. * it's allowed to occur. Typical usage is something like:
  230. *
  231. <pre>
  232. if (possibly_very_frequent_event()) {
  233. const int INTERVAL = 300;
  234. static ratelim_t warning_limit = RATELIM_INIT(INTERVAL);
  235. char *m;
  236. if ((m = rate_limit_log(&warning_limit, approx_time()))) {
  237. log_warn(LD_GENERAL, "The event occurred!%s", m);
  238. tor_free(m);
  239. }
  240. }
  241. </pre>
  242. */
  243. typedef struct ratelim_t {
  244. int rate;
  245. time_t last_allowed;
  246. int n_calls_since_last_time;
  247. } ratelim_t;
  248. #define RATELIM_INIT(r) { (r), 0, 0 }
  249. char *rate_limit_log(ratelim_t *lim, time_t now);
  250. /* File helpers */
  251. ssize_t write_all(tor_socket_t fd, const char *buf, size_t count,int isSocket);
  252. ssize_t read_all(tor_socket_t fd, char *buf, size_t count, int isSocket);
  253. /** Return values from file_status(); see that function's documentation
  254. * for details. */
  255. typedef enum { FN_ERROR, FN_NOENT, FN_FILE, FN_DIR } file_status_t;
  256. file_status_t file_status(const char *filename);
  257. /** Possible behaviors for check_private_dir() on encountering a nonexistent
  258. * directory; see that function's documentation for details. */
  259. typedef unsigned int cpd_check_t;
  260. #define CPD_NONE 0
  261. #define CPD_CREATE 1
  262. #define CPD_CHECK 2
  263. #define CPD_GROUP_OK 4
  264. #define CPD_CHECK_MODE_ONLY 8
  265. int check_private_dir(const char *dirname, cpd_check_t check,
  266. const char *effective_user);
  267. #define OPEN_FLAGS_REPLACE (O_WRONLY|O_CREAT|O_TRUNC)
  268. #define OPEN_FLAGS_APPEND (O_WRONLY|O_CREAT|O_APPEND)
  269. typedef struct open_file_t open_file_t;
  270. int start_writing_to_file(const char *fname, int open_flags, int mode,
  271. open_file_t **data_out);
  272. FILE *start_writing_to_stdio_file(const char *fname, int open_flags, int mode,
  273. open_file_t **data_out);
  274. FILE *fdopen_file(open_file_t *file_data);
  275. int finish_writing_to_file(open_file_t *file_data);
  276. int abort_writing_to_file(open_file_t *file_data);
  277. int write_str_to_file(const char *fname, const char *str, int bin);
  278. int write_bytes_to_file(const char *fname, const char *str, size_t len,
  279. int bin);
  280. /** An ad-hoc type to hold a string of characters and a count; used by
  281. * write_chunks_to_file. */
  282. typedef struct sized_chunk_t {
  283. const char *bytes;
  284. size_t len;
  285. } sized_chunk_t;
  286. int write_chunks_to_file(const char *fname, const struct smartlist_t *chunks,
  287. int bin);
  288. int append_bytes_to_file(const char *fname, const char *str, size_t len,
  289. int bin);
  290. /** Flag for read_file_to_str: open the file in binary mode. */
  291. #define RFTS_BIN 1
  292. /** Flag for read_file_to_str: it's okay if the file doesn't exist. */
  293. #define RFTS_IGNORE_MISSING 2
  294. struct stat;
  295. char *read_file_to_str(const char *filename, int flags, struct stat *stat_out)
  296. ATTR_MALLOC;
  297. const char *parse_config_line_from_str(const char *line,
  298. char **key_out, char **value_out);
  299. char *expand_filename(const char *filename);
  300. struct smartlist_t *tor_listdir(const char *dirname);
  301. int path_is_relative(const char *filename) ATTR_PURE;
  302. /* Process helpers */
  303. void start_daemon(void);
  304. void finish_daemon(const char *desired_cwd);
  305. void write_pidfile(char *filename);
  306. /* Port forwarding */
  307. void tor_check_port_forwarding(const char *filename,
  308. int dir_port, int or_port, time_t now);
  309. #ifdef MS_WINDOWS
  310. HANDLE load_windows_system_library(const TCHAR *library_name);
  311. #endif
  312. #ifdef UTIL_PRIVATE
  313. /* Prototypes for private functions only used by util.c (and unit tests) */
  314. typedef struct process_handle_s {
  315. int status;
  316. #ifdef MS_WINDOWS
  317. HANDLE stdout_pipe;
  318. HANDLE stderr_pipe;
  319. PROCESS_INFORMATION pid;
  320. #else
  321. int stdout_pipe;
  322. int stderr_pipe;
  323. int pid;
  324. #endif // MS_WINDOWS
  325. } process_handle_t;
  326. process_handle_t tor_spawn_background(const char *const filename,
  327. const char **argv);
  328. int tor_get_exit_code(const process_handle_t pid);
  329. ssize_t tor_read_all_handle(HANDLE h, char *buf, size_t count, HANDLE hProcess);
  330. ssize_t tor_read_all_from_process_stdout(const process_handle_t process_handle,
  331. char *buf, size_t count);
  332. ssize_t tor_read_all_from_process_stderr(const process_handle_t process_handle,
  333. char *buf, size_t count);
  334. void format_helper_exit_status(unsigned char child_state,
  335. int saved_errno, char *hex_errno);
  336. /* Space for hex values of child state, a slash, saved_errno (with
  337. leading minus) and newline (no null) */
  338. #define HEX_ERRNO_SIZE (sizeof(char) * 2 + 1 + \
  339. 1 + sizeof(int) * 2 + 1)
  340. #endif
  341. const char *libor_get_digests(void);
  342. #endif