b6e2a75c48bf7052a9fff1986803df7db0c07a00
[hashcat.git] / include / common.h
1 /**
2 * Authors.....: Jens Steube <jens.steube@gmail.com>
3 * magnum <john.magnum@hushmail.com>
4 *
5 * License.....: MIT
6 */
7
8 #ifndef COMMON_H
9 #define COMMON_H
10
11 #define _POSIX_SOURCE
12 #define _GNU_SOURCE
13 #define _FILE_OFFSET_BITS 64
14 #define _CRT_SECURE_NO_WARNINGS
15
16 #include <stdarg.h>
17 #include <stdint.h>
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <stdbool.h>
21 #include <string.h>
22 #include <errno.h>
23 #include <getopt.h>
24 #include <math.h>
25 #include <ctype.h>
26 #include <dirent.h>
27 #include <time.h>
28 #include <unistd.h>
29 #include <signal.h>
30 #include <sys/stat.h>
31 #include <sys/types.h>
32 #include <search.h>
33 #include <fcntl.h>
34
35 #ifdef _POSIX
36 #include <sys/time.h>
37 #include <pthread.h>
38 #include <semaphore.h>
39 #include <dlfcn.h>
40 #include <pwd.h>
41
42 #ifdef LINUX
43 #include <termio.h>
44 #endif
45
46 #ifdef OSX
47 #include <termios.h>
48 #include <sys/ioctl.h>
49 #include <mach-o/dyld.h>
50 #include <mach/mach.h>
51 #endif
52
53 typedef void *OCL_LIB;
54
55 #ifdef HAVE_HWMON
56 typedef void *ADL_LIB;
57 typedef void *NVAPI_LIB;
58 typedef void *NVML_LIB;
59 typedef void *XNVCTRL_LIB;
60 #ifdef OSX
61 #define __stdcall
62 #endif
63 #endif
64
65 #endif // _POSIX
66
67 #ifdef _WIN
68 #define WIN32_LEAN_AND_MEAN
69 #include <windows.h>
70 #include <process.h>
71 #include <conio.h>
72 #include <tchar.h>
73 #include <psapi.h>
74 #include <io.h>
75
76 typedef UINT8 uint8_t;
77 typedef UINT16 uint16_t;
78 typedef UINT32 uint32_t;
79 typedef UINT64 uint64_t;
80 typedef INT8 int8_t;
81 typedef INT16 int16_t;
82 typedef INT32 int32_t;
83 typedef INT64 int64_t;
84
85 typedef UINT32 uint;
86 typedef UINT64 uint64_t;
87
88 typedef HINSTANCE OCL_LIB;
89
90 #ifdef HAVE_HWMON
91 typedef HINSTANCE ADL_LIB;
92 typedef HINSTANCE NVAPI_LIB;
93 typedef HINSTANCE NVML_LIB;
94 typedef HINSTANCE XNVCTRL_LIB;
95 #endif
96
97 #define mkdir(name,mode) mkdir (name)
98
99 #endif // _WIN
100
101 typedef uint8_t u8;
102 typedef uint16_t u16;
103 typedef uint32_t u32;
104 typedef uint64_t u64;
105
106 typedef uint32_t uint; // we need to get rid of this sooner or later, for consistency
107
108 #define EXEC_CACHE 128
109
110 #define SPEED_CACHE 128
111 #define SPEED_MAXAGE 4096
112
113 #define HCBUFSIZ 0x50000 // general large space buffer size in case the size is unknown at compile-time
114
115 #define EXPECTED_ITERATIONS 10000
116
117 /**
118 * functions
119 */
120
121 int log_out_nn (FILE *fp, const char *fmt, ...);
122 int log_info_nn (const char *fmt, ...);
123 int log_error_nn (const char *fmt, ...);
124
125 int log_out (FILE *fp, const char *fmt, ...);
126 int log_info (const char *fmt, ...);
127 int log_error (const char *fmt, ...);
128
129 #define MIN(a,b) (((a) < (b)) ? (a) : (b))
130 #define MAX(a,b) (((a) > (b)) ? (a) : (b))
131
132 #define CEIL(a) ((a - (int) (a)) > 0 ? a + 1 : a)
133
134 #endif // COMMON_H