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