]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/lib/winapi.c
-- load cwprintf and cgetws dynamically via winapi
[bacula/bacula] / bacula / src / lib / winapi.c
1 /*
2  * Windows APIs that are different for each system.
3  *   We use pointers to the entry points so that a
4  *   single binary will run on all Windows systems.
5  *
6  *     Kern Sibbald MMIII
7  */
8 /*
9    Copyright (C) 2000-2005 Kern Sibbald
10
11    This program is free software; you can redistribute it and/or
12    modify it under the terms of the GNU General Public License as
13    published by the Free Software Foundation; either version 2 of
14    the License, or (at your option) any later version.
15
16    This program is distributed in the hope that it will be useful,
17    but WITHOUT ANY WARRANTY; without even the implied warranty of
18    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19    General Public License for more details.
20
21    You should have received a copy of the GNU General Public
22    License along with this program; if not, write to the Free
23    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
24    MA 02111-1307, USA.
25
26  */
27
28 #include "bacula.h"
29
30 #if defined(HAVE_CYGWIN) || defined(HAVE_WIN32)
31
32 #include "winapi.h"
33
34 // init with win9x, but maybe set to NT in InitWinAPI
35 DWORD  g_platform_id = VER_PLATFORM_WIN32_WINDOWS;
36
37
38 /* API Pointers */
39
40 t_OpenProcessToken      p_OpenProcessToken = NULL;
41 t_AdjustTokenPrivileges p_AdjustTokenPrivileges = NULL;
42 t_LookupPrivilegeValue  p_LookupPrivilegeValue = NULL;
43
44 t_SetProcessShutdownParameters p_SetProcessShutdownParameters = NULL;
45
46 t_CreateFileA   p_CreateFileA = NULL;
47 t_CreateFileW   p_CreateFileW = NULL;
48
49 t_wunlink p_wunlink = NULL;
50 t_wmkdir p_wmkdir = NULL;
51 t_wopen p_wopen = NULL;
52
53 t_cgetws p_cgetws = NULL;
54 t_cwprintf p_cwprintf = NULL;
55
56 t_GetFileAttributesA    p_GetFileAttributesA = NULL;
57 t_GetFileAttributesW    p_GetFileAttributesW = NULL;
58
59 t_GetFileAttributesExA  p_GetFileAttributesExA = NULL;
60 t_GetFileAttributesExW  p_GetFileAttributesExW = NULL;
61
62 t_SetFileAttributesA    p_SetFileAttributesA = NULL;
63 t_SetFileAttributesW    p_SetFileAttributesW = NULL;
64 t_BackupRead            p_BackupRead = NULL;
65 t_BackupWrite           p_BackupWrite = NULL;
66 t_WideCharToMultiByte p_WideCharToMultiByte = NULL;
67 t_MultiByteToWideChar p_MultiByteToWideChar = NULL;
68
69 t_FindFirstFileA p_FindFirstFileA = NULL;
70 t_FindFirstFileW p_FindFirstFileW = NULL;
71
72 t_FindNextFileA p_FindNextFileA = NULL;
73 t_FindNextFileW p_FindNextFileW = NULL;
74
75 t_SetCurrentDirectoryA p_SetCurrentDirectoryA = NULL;
76 t_SetCurrentDirectoryW p_SetCurrentDirectoryW = NULL;
77
78 t_GetCurrentDirectoryA p_GetCurrentDirectoryA = NULL;
79 t_GetCurrentDirectoryW p_GetCurrentDirectoryW = NULL;
80
81
82 void 
83 InitWinAPIWrapper() 
84 {
85    HMODULE hLib = LoadLibraryA("KERNEL32.DLL");
86    if (hLib) {
87       /* create file calls */
88       p_CreateFileA = (t_CreateFileA)
89           GetProcAddress(hLib, "CreateFileA");
90       p_CreateFileW = (t_CreateFileW)
91           GetProcAddress(hLib, "CreateFileW");      
92
93       /* attribute calls */
94       p_GetFileAttributesA = (t_GetFileAttributesA)
95           GetProcAddress(hLib, "GetFileAttributesA");
96       p_GetFileAttributesW = (t_GetFileAttributesW)
97           GetProcAddress(hLib, "GetFileAttributesW");
98       p_GetFileAttributesExA = (t_GetFileAttributesExA)
99           GetProcAddress(hLib, "GetFileAttributesExA");
100       p_GetFileAttributesExW = (t_GetFileAttributesExW)
101           GetProcAddress(hLib, "GetFileAttributesExW");
102       p_SetFileAttributesA = (t_SetFileAttributesA)
103           GetProcAddress(hLib, "SetFileAttributesA");
104       p_SetFileAttributesW = (t_SetFileAttributesW)
105           GetProcAddress(hLib, "SetFileAttributesW");
106       /* process calls */
107       p_SetProcessShutdownParameters = (t_SetProcessShutdownParameters)
108           GetProcAddress(hLib, "SetProcessShutdownParameters");
109       /* backup calls */
110       p_BackupRead = (t_BackupRead)
111           GetProcAddress(hLib, "BackupRead");
112       p_BackupWrite = (t_BackupWrite)
113           GetProcAddress(hLib, "BackupWrite");
114       /* char conversion calls */
115       p_WideCharToMultiByte = (t_WideCharToMultiByte)
116           GetProcAddress(hLib, "WideCharToMultiByte");
117       p_MultiByteToWideChar = (t_MultiByteToWideChar)
118           GetProcAddress(hLib, "MultiByteToWideChar");
119
120       /* find files */
121       p_FindFirstFileA = (t_FindFirstFileA)
122           GetProcAddress(hLib, "FindFirstFileA"); 
123       p_FindFirstFileW = (t_FindFirstFileW)
124           GetProcAddress(hLib, "FindFirstFileW");       
125       p_FindNextFileA = (t_FindNextFileA)
126           GetProcAddress(hLib, "FindNextFileA");
127       p_FindNextFileW = (t_FindNextFileW)
128           GetProcAddress(hLib, "FindNextFileW");
129       /* set and get directory */
130       p_SetCurrentDirectoryA = (t_SetCurrentDirectoryA)
131           GetProcAddress(hLib, "SetCurrentDirectoryA");
132       p_SetCurrentDirectoryW = (t_SetCurrentDirectoryW)
133           GetProcAddress(hLib, "SetCurrentDirectoryW");       
134       p_GetCurrentDirectoryA = (t_GetCurrentDirectoryA)
135           GetProcAddress(hLib, "GetCurrentDirectoryA");
136       p_GetCurrentDirectoryW = (t_GetCurrentDirectoryW)
137           GetProcAddress(hLib, "GetCurrentDirectoryW");      
138       FreeLibrary(hLib);
139    }
140    
141    hLib = LoadLibraryA("MSVCRT.DLL");
142    if (hLib) {
143       /* unlink */
144       p_wunlink = (t_wunlink)
145       GetProcAddress(hLib, "_wunlink");
146       /* wmkdir */
147       p_wmkdir = (t_wmkdir)
148       GetProcAddress(hLib, "_wmkdir");
149       /* wopen */
150       p_wopen = (t_wopen)
151       GetProcAddress(hLib, "_wopen");
152       
153       /* cgetws */
154       p_cgetws = (t_cgetws)
155       GetProcAddress (hLib, "_cgetws");
156       /* cwprintf */
157       p_cwprintf = (t_cwprintf)
158       GetProcAddress (hLib, "_cwprintf");
159       
160       FreeLibrary(hLib);
161    }
162    
163    hLib = LoadLibraryA("ADVAPI32.DLL");
164    if (hLib) {
165       p_OpenProcessToken = (t_OpenProcessToken)
166          GetProcAddress(hLib, "OpenProcessToken");
167       p_AdjustTokenPrivileges = (t_AdjustTokenPrivileges)
168          GetProcAddress(hLib, "AdjustTokenPrivileges");
169       p_LookupPrivilegeValue = (t_LookupPrivilegeValue)
170          GetProcAddress(hLib, "LookupPrivilegeValueA");
171       FreeLibrary(hLib);
172    }
173
174    // do we run on win 9x ???
175    OSVERSIONINFO osversioninfo;
176    osversioninfo.dwOSVersionInfoSize = sizeof(osversioninfo);
177
178    // Get the current OS version
179    if (!GetVersionEx(&osversioninfo)) {
180       g_platform_id = 0;
181    } else {
182       g_platform_id = osversioninfo.dwPlatformId;
183    }
184
185    if (g_platform_id == VER_PLATFORM_WIN32_WINDOWS) {
186       p_BackupRead = NULL;
187       p_BackupWrite = NULL;
188
189       p_CreateFileW = NULL;          
190       p_GetFileAttributesW = NULL;          
191       p_GetFileAttributesExW = NULL;
192           
193       p_SetFileAttributesW = NULL;
194                 
195       p_FindFirstFileW = NULL;
196       p_FindNextFileW = NULL;
197       p_SetCurrentDirectoryW = NULL;
198       p_GetCurrentDirectoryW = NULL;
199
200       p_wunlink = NULL;
201       p_wmkdir = NULL;
202       p_wopen = NULL;
203    }   
204 }
205 #endif