]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - win/inspircd_win32wrapper.h
8120e193f1d25a2d6c459576341164bcafbdd74d
[user/henk/code/inspircd.git] / win / inspircd_win32wrapper.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 /* Windows Port
15    Wrapper Functions/Definitions
16    By Burlex */
17
18 #ifndef INSPIRCD_WIN32WRAPPER_H
19 #define INSPIRCD_WIN32WRAPPER_H
20
21 /*
22  * Starting with PSAPI version 2 for Windows 7 and Windows Server 2008 R2, this function is defined as K32GetProcessMemoryInfo in Psapi.h and exported
23  * in Kernel32.lib and Kernel32.dll. However, you should always call this function as GetProcessMemoryInfo. To ensure correct resolution of symbols
24  * for programs that will run on earlier versions ofWindows, add Psapi.lib to the TARGETLIBS macro and compile the program with PSAPI_VERSION=1.
25  * 
26  * We do this before anything to make sure it's done.
27  */
28 #define PSAPI_VERSION 1
29
30 #ifndef CONFIGURE_BUILD
31 #include "win32service.h"
32 #endif
33
34 /* Define the WINDOWS macro. This means we're building on windows to the rest of the server.
35    I think this is more reasonable than using WIN32, especially if we're gonna be doing 64-bit compiles */
36 #define WINDOWS 1
37 #define ENABLE_CRASHDUMPS 0
38
39 /* This defaults to 64, way too small for an ircd! */
40 /* CRT memory debugging */
41 #ifdef DEBUG
42 #define _CRTDBG_MAP_ALLOC
43 #include <stdlib.h>
44 #include <crtdbg.h>
45 #endif
46
47 #define FD_SETSIZE 24000
48
49 typedef unsigned __int16 uint16_t;
50 typedef unsigned __int32 uint32_t;
51
52 /* Make builds smaller, leaner and faster */
53 #define VC_EXTRALEAN
54 #define WIN32_LEAN_AND_MEAN
55
56 /* Not defined in windows */
57 #define SIGHUP 1
58
59 /* Not defined in windows, parameter to shutdown() */
60 #define SHUT_WR 2
61
62 /* They just have to be *different*, don't they. */
63 #define PATH_MAX MAX_PATH
64
65 /* Begone shitty 'safe STL' warnings */
66 #define _SCL_SECURE_NO_WARNINGS
67 #define _CRT_SECURE_NO_WARNINGS
68 #define _AFX_SECURE_NO_WARNINGS
69 #define _ATL_SECURE_NO_WARNINGS
70
71 /* Macros for exporting symbols - dependant on what is being compiled */
72
73 #ifdef DLL_BUILD
74 #define CoreExport __declspec(dllimport)
75 #define DllExport __declspec(dllexport)
76 #else
77 #define CoreExport __declspec(dllexport)
78 #define DllExport __declspec(dllimport)
79 #endif
80
81 /* Redirect main() through a different method in win32service.cpp, to intercept service startup */
82 #define ENTRYPOINT CoreExport int smain(int argc, char** argv)
83
84 /* Disable the deprecation warnings.. it spams :P */
85 #define _CRT_SECURE_NO_DEPRECATE
86 #define _SCL_SECURE_NO_DEPRECATE
87
88 #include <string>
89
90 /* Say we're building on windows 2000. Anyone running something older than this
91  * reeeeeeeally needs to upgrade! */
92
93 /* Normal windows (platform-specific) includes */
94 #include <winsock2.h>
95 #include <windows.h>
96 #include <ws2tcpip.h>
97 #include <sys/types.h>
98 #include <sys/stat.h>
99 #include <direct.h>
100 #include <process.h>
101 #include <stdio.h>
102 #include <algorithm>
103
104 #ifdef ENABLE_CRASHDUMPS
105 #include <DbgHelp.h>
106 #endif
107
108 /* strcasecmp is not defined on windows by default */
109 #define strcasecmp _stricmp
110
111 /* this standard function is nonstarard. go figure. */
112 #define popen _popen
113 #define pclose _pclose
114
115 /* Error macros need to be redirected to winsock error codes, apart from on VS2010 *SIGH* */
116 #if _MSC_VER < 1600
117         #define ETIMEDOUT WSAETIMEDOUT
118         #define ECONNREFUSED WSAECONNREFUSED
119         #define EADDRINUSE WSAEADDRINUSE
120         #define EINPROGRESS WSAEWOULDBLOCK
121         #define EADDRNOTAVAIL WSAEADDRNOTAVAIL
122 #endif
123
124 /* Convert formatted (xxx.xxx.xxx.xxx) string to in_addr struct */
125 CoreExport int insp_inet_pton(int af, const char * src, void * dst);
126
127 /* Convert struct to formatted (xxx.xxx.xxx.xxx) string */
128 CoreExport const char * insp_inet_ntop(int af, const void * src, char * dst, socklen_t cnt);
129
130 /* we don't want to use windows' broken inet_pton and ntop */
131 #define inet_pton insp_inet_pton
132 #define inet_ntop insp_inet_ntop
133
134 /* Safe printf functions aren't defined in VC2003 */
135 #define snprintf _snprintf
136 #define vsnprintf _vsnprintf
137
138 /* Since when does the ISO C++ standard *remove* C functions?! */
139 #define mkdir(file,mode) _mkdir(file)
140
141 /* Unix-style sleep (argument is in seconds) */
142 __inline void sleep(int seconds) { Sleep(seconds * 1000); }
143
144 /* IPV4 only convert string to address struct */
145 CoreExport int inet_aton(const char *, struct in_addr *);
146
147 /* Unix-style get running user id */
148 CoreExport int geteuid();
149
150 /* Handles colors in printf */
151 CoreExport int printf_c(const char * format, ...);
152
153 /* getopt() wrapper */
154 # define no_argument            0
155 # define required_argument      1
156 # define optional_argument      2
157 struct option
158 {
159         char *name;
160         int has_arg;
161         int *flag;
162         int val;
163 };
164 extern int optind;
165 extern char optarg[514];
166 int getopt_long_only (int ___argc, char *const *___argv, const char *__shortopts, const struct option *__longopts, int *__longind);
167
168 /* Module Loading */
169 #define dlopen(path, state) (void*)LoadLibrary(path)
170 #define dlsym(handle, export) (void*)GetProcAddress((HMODULE)handle, export)
171 #define dlclose(handle) FreeLibrary((HMODULE)handle)
172 const char * dlerror();
173
174 /* Unix-style directory searching functions */
175 #define chmod(filename, mode)  
176
177 struct dirent
178 {
179         char d_name[MAX_PATH];
180 };
181
182 struct DIR
183 {
184         dirent dirent_pointer;
185         HANDLE find_handle;
186         WIN32_FIND_DATA find_data;
187         bool first;
188 };
189
190 CoreExport DIR * opendir(const char * path);
191 CoreExport dirent * readdir(DIR * handle);
192 CoreExport void closedir(DIR * handle);
193
194 CoreExport int gettimeofday(struct timeval * tv, void * tz);
195
196 /* Disable these stupid warnings.. */
197 #pragma warning(disable:4800)
198 #pragma warning(disable:4251)
199 #pragma warning(disable:4275)
200 #pragma warning(disable:4244)           // warning C4244: '=' : conversion from 'long' to 'short', possible loss of data
201 #pragma warning(disable:4267)           // warning C4267: 'argument' : conversion from 'size_t' to 'int', possible loss of data
202 #pragma warning(disable:4805)           // warning C4805: '!=' : unsafe mix of type 'char' and type 'bool' in operation
203 #pragma warning(disable:4311)           // warning C4311: 'type cast' : pointer truncation from 'accept_overlap *' to 'int'
204 #pragma warning(disable:4312)           // warning C4312: 'type cast' : conversion from 'int' to 'HANDLE' of greater size
205 #pragma warning(disable:4355)           // warning C4355: 'this' : used in base member initializer list
206 #pragma warning(disable:4996)           // warning C4996: 'std::_Traits_helper::move_s' was declared deprecated
207 #pragma warning(disable:4706)           // warning C4706: assignment within conditional expression
208 #pragma warning(disable:4201)           // mmsystem.h generates this warning
209
210 /* Mehhhh... typedefs. */
211
212 typedef unsigned char uint8_t;
213 typedef unsigned long long uint64_t;
214 typedef signed char int8_t;
215 typedef signed long int32_t;
216 typedef signed long long int64_t;
217
218 /* Shared memory allocation functions */
219 void * ::operator new(size_t iSize);
220 void ::operator delete(void * ptr);
221
222 /* IPC Handlers */
223 class InspIRCd;
224 class ValueItem;
225 class ServerConfig;
226
227 /* Look up the nameserver in use from the registry on windows */
228 CoreExport std::string FindNameServerWin();
229
230 /* Clear a windows console */
231 CoreExport void ClearConsole();
232
233 CoreExport DWORD WindowsForkStart(InspIRCd* Instance);
234
235 CoreExport void WindowsForkKillOwner(InspIRCd* Instance);
236
237 CoreExport void ChangeWindowsSpecificPointers(InspIRCd* Instance);
238
239 CoreExport bool ValidateWindowsDnsServer(ServerConfig* conf, const char* tag, const char* value, ValueItem &data);
240
241 CoreExport bool initwmi();
242 CoreExport void donewmi();
243 CoreExport int getcpu();
244
245 #endif
246