loader: Check if the preloader overlaps the reserved range on the Mac.
[wine.git] / dlls / msi / msi_main.c
blob0e436b09e59c819f287ba88d93512e416d30df03
1 /*
2 * Implementation of the Microsoft Installer (msi.dll)
4 * Copyright 2006 Mike McCormack for CodeWeavers
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include <stdarg.h>
23 #define COBJMACROS
25 #include "windef.h"
26 #include "winbase.h"
27 #include "winreg.h"
28 #include "shlwapi.h"
29 #include "oleauto.h"
30 #include "rpcproxy.h"
31 #include "msipriv.h"
32 #include "msiserver.h"
34 #include "wine/debug.h"
36 WINE_DEFAULT_DEBUG_CHANNEL(msi);
38 static LONG dll_count;
40 /* the UI level */
41 INSTALLUILEVEL gUILevel = INSTALLUILEVEL_DEFAULT;
42 HWND gUIhwnd = 0;
43 INSTALLUI_HANDLERA gUIHandlerA = NULL;
44 INSTALLUI_HANDLERW gUIHandlerW = NULL;
45 INSTALLUI_HANDLER_RECORD gUIHandlerRecord = NULL;
46 DWORD gUIFilter = 0;
47 DWORD gUIFilterRecord = 0;
48 LPVOID gUIContext = NULL;
49 LPVOID gUIContextRecord = NULL;
50 WCHAR *gszLogFile = NULL;
51 HINSTANCE msi_hInstance;
55 * Dll lifetime tracking declaration
57 static void LockModule(void)
59 InterlockedIncrement(&dll_count);
62 static void UnlockModule(void)
64 InterlockedDecrement(&dll_count);
67 /******************************************************************
68 * DllMain
70 BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
72 switch (fdwReason)
74 case DLL_PROCESS_ATTACH:
75 msi_hInstance = hinstDLL;
76 DisableThreadLibraryCalls(hinstDLL);
77 IsWow64Process( GetCurrentProcess(), &is_wow64 );
78 break;
79 case DLL_PROCESS_DETACH:
80 if (lpvReserved) break;
81 msi_dialog_unregister_class();
82 msi_free_handle_table();
83 msi_free( gszLogFile );
84 release_typelib();
85 break;
87 return TRUE;
90 typedef struct tagIClassFactoryImpl {
91 IClassFactory IClassFactory_iface;
92 HRESULT (*create_object)( IUnknown*, LPVOID* );
93 } IClassFactoryImpl;
95 static inline IClassFactoryImpl *impl_from_IClassFactory(IClassFactory *iface)
97 return CONTAINING_RECORD(iface, IClassFactoryImpl, IClassFactory_iface);
100 static HRESULT WINAPI MsiCF_QueryInterface(LPCLASSFACTORY iface,
101 REFIID riid,LPVOID *ppobj)
103 IClassFactoryImpl *This = impl_from_IClassFactory(iface);
105 TRACE("%p %s %p\n",This,debugstr_guid(riid),ppobj);
107 if( IsEqualCLSID( riid, &IID_IUnknown ) ||
108 IsEqualCLSID( riid, &IID_IClassFactory ) )
110 IClassFactory_AddRef( iface );
111 *ppobj = iface;
112 return S_OK;
114 return E_NOINTERFACE;
117 static ULONG WINAPI MsiCF_AddRef(LPCLASSFACTORY iface)
119 LockModule();
120 return 2;
123 static ULONG WINAPI MsiCF_Release(LPCLASSFACTORY iface)
125 UnlockModule();
126 return 1;
129 static HRESULT WINAPI MsiCF_CreateInstance(LPCLASSFACTORY iface,
130 LPUNKNOWN pOuter, REFIID riid, LPVOID *ppobj)
132 IClassFactoryImpl *This = impl_from_IClassFactory(iface);
133 IUnknown *unk = NULL;
134 HRESULT r;
136 TRACE("%p %p %s %p\n", This, pOuter, debugstr_guid(riid), ppobj);
138 r = This->create_object( pOuter, (LPVOID*) &unk );
139 if (SUCCEEDED(r))
141 r = IUnknown_QueryInterface( unk, riid, ppobj );
142 IUnknown_Release( unk );
144 return r;
147 static HRESULT WINAPI MsiCF_LockServer(LPCLASSFACTORY iface, BOOL dolock)
149 TRACE("%p %d\n", iface, dolock);
151 if (dolock)
152 LockModule();
153 else
154 UnlockModule();
156 return S_OK;
159 static const IClassFactoryVtbl MsiCF_Vtbl =
161 MsiCF_QueryInterface,
162 MsiCF_AddRef,
163 MsiCF_Release,
164 MsiCF_CreateInstance,
165 MsiCF_LockServer
168 static IClassFactoryImpl MsiServer_CF = { { &MsiCF_Vtbl }, create_msiserver };
170 /******************************************************************
171 * DllGetClassObject [MSI.@]
173 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
175 TRACE("%s %s %p\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
177 if ( IsEqualCLSID (rclsid, &CLSID_MsiInstaller) )
179 *ppv = &MsiServer_CF;
180 return S_OK;
183 if( IsEqualCLSID (rclsid, &CLSID_MsiServerMessage) ||
184 IsEqualCLSID (rclsid, &CLSID_MsiServer) ||
185 IsEqualCLSID (rclsid, &CLSID_PSFactoryBuffer) ||
186 IsEqualCLSID (rclsid, &CLSID_MsiServerX3) )
188 FIXME("create %s object\n", debugstr_guid( rclsid ));
191 return CLASS_E_CLASSNOTAVAILABLE;
194 /******************************************************************
195 * DllGetVersion [MSI.@]
197 HRESULT WINAPI DllGetVersion(DLLVERSIONINFO *pdvi)
199 TRACE("%p\n",pdvi);
201 if (pdvi->cbSize < sizeof(DLLVERSIONINFO))
202 return E_INVALIDARG;
204 pdvi->dwMajorVersion = MSI_MAJORVERSION;
205 pdvi->dwMinorVersion = MSI_MINORVERSION;
206 pdvi->dwBuildNumber = MSI_BUILDNUMBER;
207 pdvi->dwPlatformID = DLLVER_PLATFORM_WINDOWS;
209 return S_OK;
212 /******************************************************************
213 * DllCanUnloadNow [MSI.@]
215 HRESULT WINAPI DllCanUnloadNow(void)
217 return dll_count == 0 ? S_OK : S_FALSE;
220 /***********************************************************************
221 * DllRegisterServer (MSI.@)
223 HRESULT WINAPI DllRegisterServer(void)
225 return __wine_register_resources( msi_hInstance );
228 /***********************************************************************
229 * DllUnregisterServer (MSI.@)
231 HRESULT WINAPI DllUnregisterServer(void)
233 return __wine_unregister_resources( msi_hInstance );