2002-05-05 21:40:57 +02:00
|
|
|
/*
|
|
|
|
* Implementation of class factory for IE Web Browser
|
|
|
|
*
|
|
|
|
* Copyright 2001 John R. Sheets (for CodeWeavers)
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-05-05 21:40:57 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
2007-11-01 18:50:49 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2002-05-05 21:40:57 +02:00
|
|
|
#include "shdocvw.h"
|
2007-11-01 18:50:49 +01:00
|
|
|
#include "winreg.h"
|
|
|
|
#include "advpub.h"
|
2007-11-17 20:02:50 +01:00
|
|
|
#include "isguids.h"
|
2007-11-01 18:50:49 +01:00
|
|
|
|
2008-05-08 18:26:47 +02:00
|
|
|
#include "winver.h"
|
|
|
|
|
2007-11-01 18:50:49 +01:00
|
|
|
#include "wine/debug.h"
|
2002-05-05 21:40:57 +02:00
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(shdocvw);
|
|
|
|
|
|
|
|
/**********************************************************************
|
2005-09-06 13:41:14 +02:00
|
|
|
* Implement the WebBrowser class factory
|
2002-05-05 21:40:57 +02:00
|
|
|
*
|
|
|
|
* (Based on implementation in ddraw/main.c)
|
|
|
|
*/
|
|
|
|
|
2006-04-19 20:31:59 +02:00
|
|
|
#define FACTORY(x) ((IClassFactory*) &(x)->lpClassFactoryVtbl)
|
|
|
|
|
2006-04-11 07:48:49 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
/* IUnknown fields */
|
2006-04-19 20:31:59 +02:00
|
|
|
const IClassFactoryVtbl *lpClassFactoryVtbl;
|
2006-04-11 07:48:49 +02:00
|
|
|
HRESULT (*cf)(LPUNKNOWN, REFIID, LPVOID *);
|
|
|
|
LONG ref;
|
|
|
|
} IClassFactoryImpl;
|
|
|
|
|
|
|
|
|
2002-05-05 21:40:57 +02:00
|
|
|
/**********************************************************************
|
|
|
|
* WBCF_QueryInterface (IUnknown)
|
|
|
|
*/
|
|
|
|
static HRESULT WINAPI WBCF_QueryInterface(LPCLASSFACTORY iface,
|
|
|
|
REFIID riid, LPVOID *ppobj)
|
|
|
|
{
|
2005-09-06 13:41:14 +02:00
|
|
|
TRACE("(%s %p)\n", debugstr_guid(riid), ppobj);
|
|
|
|
|
|
|
|
if (!ppobj)
|
|
|
|
return E_POINTER;
|
|
|
|
|
|
|
|
if(IsEqualGUID(&IID_IUnknown, riid) || IsEqualGUID(&IID_IClassFactory, riid)) {
|
|
|
|
*ppobj = iface;
|
2007-02-20 17:13:27 +01:00
|
|
|
IClassFactory_AddRef(iface);
|
2005-09-06 13:41:14 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN("Not supported interface %s\n", debugstr_guid(riid));
|
|
|
|
|
|
|
|
*ppobj = NULL;
|
2002-05-05 21:40:57 +02:00
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* WBCF_AddRef (IUnknown)
|
|
|
|
*/
|
|
|
|
static ULONG WINAPI WBCF_AddRef(LPCLASSFACTORY iface)
|
|
|
|
{
|
2005-01-27 11:43:53 +01:00
|
|
|
SHDOCVW_LockModule();
|
2002-05-05 21:40:57 +02:00
|
|
|
|
2005-01-27 11:43:53 +01:00
|
|
|
return 2; /* non-heap based object */
|
2002-05-05 21:40:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* WBCF_Release (IUnknown)
|
|
|
|
*/
|
|
|
|
static ULONG WINAPI WBCF_Release(LPCLASSFACTORY iface)
|
|
|
|
{
|
2005-01-27 11:43:53 +01:00
|
|
|
SHDOCVW_UnlockModule();
|
2005-01-14 17:02:20 +01:00
|
|
|
|
2005-01-27 11:43:53 +01:00
|
|
|
return 1; /* non-heap based object */
|
2002-05-05 21:40:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* WBCF_CreateInstance (IClassFactory)
|
|
|
|
*/
|
|
|
|
static HRESULT WINAPI WBCF_CreateInstance(LPCLASSFACTORY iface, LPUNKNOWN pOuter,
|
|
|
|
REFIID riid, LPVOID *ppobj)
|
|
|
|
{
|
2006-04-11 07:48:49 +02:00
|
|
|
IClassFactoryImpl *This = (IClassFactoryImpl *) iface;
|
|
|
|
return This->cf(pOuter, riid, ppobj);
|
2002-05-05 21:40:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* WBCF_LockServer (IClassFactory)
|
|
|
|
*/
|
|
|
|
static HRESULT WINAPI WBCF_LockServer(LPCLASSFACTORY iface, BOOL dolock)
|
|
|
|
{
|
2005-01-27 11:43:53 +01:00
|
|
|
TRACE("(%d)\n", dolock);
|
|
|
|
|
|
|
|
if (dolock)
|
2005-09-06 13:41:14 +02:00
|
|
|
SHDOCVW_LockModule();
|
2005-01-27 11:43:53 +01:00
|
|
|
else
|
2005-09-06 13:41:14 +02:00
|
|
|
SHDOCVW_UnlockModule();
|
2005-01-27 11:43:53 +01:00
|
|
|
|
2002-05-05 21:40:57 +02:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2005-06-06 21:50:35 +02:00
|
|
|
static const IClassFactoryVtbl WBCF_Vtbl =
|
2002-05-05 21:40:57 +02:00
|
|
|
{
|
|
|
|
WBCF_QueryInterface,
|
|
|
|
WBCF_AddRef,
|
|
|
|
WBCF_Release,
|
|
|
|
WBCF_CreateInstance,
|
|
|
|
WBCF_LockServer
|
|
|
|
};
|
|
|
|
|
2006-04-19 20:31:59 +02:00
|
|
|
/*************************************************************************
|
|
|
|
* DllGetClassObject (SHDOCVW.@)
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, void **ppv)
|
2006-04-11 07:48:49 +02:00
|
|
|
{
|
2006-05-23 20:03:30 +02:00
|
|
|
static IClassFactoryImpl WB1ClassFactory = {&WBCF_Vtbl, WebBrowserV1_Create};
|
|
|
|
static IClassFactoryImpl WB2ClassFactory = {&WBCF_Vtbl, WebBrowserV2_Create};
|
2006-10-25 23:06:35 +02:00
|
|
|
static IClassFactoryImpl CUHClassFactory = {&WBCF_Vtbl, CUrlHistory_Create};
|
2008-08-03 11:18:26 +02:00
|
|
|
static IClassFactoryImpl ISCClassFactory = {&WBCF_Vtbl, InternetShortcut_Create};
|
2009-03-24 10:09:25 +01:00
|
|
|
static IClassFactoryImpl TBLClassFactory = {&WBCF_Vtbl, TaskbarList_Create};
|
2006-04-19 20:31:59 +02:00
|
|
|
|
|
|
|
TRACE("\n");
|
|
|
|
|
2006-06-30 23:40:54 +02:00
|
|
|
if(IsEqualGUID(&CLSID_WebBrowser, rclsid))
|
2006-05-23 20:03:30 +02:00
|
|
|
return IClassFactory_QueryInterface(FACTORY(&WB2ClassFactory), riid, ppv);
|
2006-04-19 20:31:59 +02:00
|
|
|
|
2006-05-23 20:03:30 +02:00
|
|
|
if(IsEqualGUID(&CLSID_WebBrowser_V1, rclsid))
|
|
|
|
return IClassFactory_QueryInterface(FACTORY(&WB1ClassFactory), riid, ppv);
|
|
|
|
|
2006-10-25 23:06:35 +02:00
|
|
|
if(IsEqualGUID(&CLSID_CUrlHistory, rclsid))
|
|
|
|
return IClassFactory_QueryInterface(FACTORY(&CUHClassFactory), riid, ppv);
|
2006-05-23 20:03:30 +02:00
|
|
|
|
2008-08-03 11:18:26 +02:00
|
|
|
if(IsEqualGUID(&CLSID_InternetShortcut, rclsid))
|
|
|
|
return IClassFactory_QueryInterface(FACTORY(&ISCClassFactory), riid, ppv);
|
|
|
|
|
2009-03-24 10:09:25 +01:00
|
|
|
if(IsEqualGUID(&CLSID_TaskbarList, rclsid))
|
|
|
|
return IClassFactory_QueryInterface(FACTORY(&TBLClassFactory), riid, ppv);
|
|
|
|
|
2006-04-19 20:31:59 +02:00
|
|
|
/* As a last resort, figure if the CLSID belongs to a 'Shell Instance Object' */
|
|
|
|
return SHDOCVW_GetShellInstanceObjectClassObject(rclsid, riid, ppv);
|
2006-04-11 07:48:49 +02:00
|
|
|
}
|
2006-04-19 20:37:57 +02:00
|
|
|
|
|
|
|
HRESULT register_class_object(BOOL do_reg)
|
|
|
|
{
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
static DWORD cookie;
|
|
|
|
static IClassFactoryImpl IEClassFactory = {&WBCF_Vtbl, InternetExplorer_Create};
|
|
|
|
|
|
|
|
if(do_reg) {
|
|
|
|
hres = CoRegisterClassObject(&CLSID_InternetExplorer, (IUnknown*)FACTORY(&IEClassFactory),
|
|
|
|
CLSCTX_SERVER, REGCLS_MULTIPLEUSE|REGCLS_SUSPENDED, &cookie);
|
|
|
|
if (FAILED(hres)) {
|
2006-10-05 23:49:39 +02:00
|
|
|
ERR("failed to register object %08x\n", hres);
|
2006-04-19 20:37:57 +02:00
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
|
|
|
hres = CoResumeClassObjects();
|
|
|
|
if(SUCCEEDED(hres))
|
|
|
|
return hres;
|
|
|
|
|
2006-10-05 23:49:39 +02:00
|
|
|
ERR("failed to resume object %08x\n", hres);
|
2006-04-19 20:37:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return CoRevokeClassObject(cookie);
|
|
|
|
}
|
2007-11-01 18:50:49 +01:00
|
|
|
|
2007-11-02 19:51:53 +01:00
|
|
|
static HRESULT reg_install(LPCSTR section, STRTABLEA *strtable)
|
|
|
|
{
|
2008-02-26 12:13:14 +01:00
|
|
|
HRESULT (WINAPI *pRegInstall)(HMODULE hm, LPCSTR pszSection, const STRTABLEA* pstTable);
|
2007-11-02 19:51:53 +01:00
|
|
|
HMODULE hadvpack;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
static const WCHAR advpackW[] = {'a','d','v','p','a','c','k','.','d','l','l',0};
|
|
|
|
|
|
|
|
hadvpack = LoadLibraryW(advpackW);
|
2008-02-26 12:13:14 +01:00
|
|
|
pRegInstall = (void *)GetProcAddress(hadvpack, "RegInstall");
|
2007-11-02 19:51:53 +01:00
|
|
|
|
|
|
|
hres = pRegInstall(shdocvw_hinstance, section, strtable);
|
|
|
|
|
|
|
|
FreeLibrary(hadvpack);
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2007-11-01 18:50:49 +01:00
|
|
|
static const GUID CLSID_MicrosoftBrowserArchitecture =
|
|
|
|
{0xa5e46e3a, 0x8849, 0x11d1, {0x9d, 0x8c, 0x00, 0xc0, 0x4f, 0xc9, 0x9d, 0x61}};
|
|
|
|
static const GUID CLSID_MruLongList =
|
|
|
|
{0x53bd6b4e, 0x3780, 0x4693, {0xaf, 0xc3, 0x71, 0x61, 0xc2, 0xf3, 0xee, 0x9c}};
|
|
|
|
|
|
|
|
#define INF_SET_CLSID(clsid) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
static CHAR name[] = "CLSID_" #clsid; \
|
|
|
|
\
|
|
|
|
pse[i].pszName = name; \
|
|
|
|
clsids[i++] = &CLSID_ ## clsid; \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
static HRESULT register_server(BOOL doregister)
|
|
|
|
{
|
|
|
|
STRTABLEA strtable;
|
2009-03-24 10:09:25 +01:00
|
|
|
STRENTRYA pse[15];
|
|
|
|
static CLSID const *clsids[15];
|
2008-09-08 20:29:55 +02:00
|
|
|
unsigned int i = 0;
|
2007-11-02 19:51:53 +01:00
|
|
|
HRESULT hres;
|
2007-11-01 18:50:49 +01:00
|
|
|
|
|
|
|
INF_SET_CLSID(CUrlHistory);
|
|
|
|
INF_SET_CLSID(Internet);
|
|
|
|
INF_SET_CLSID(InternetExplorer);
|
2007-11-17 20:02:50 +01:00
|
|
|
INF_SET_CLSID(InternetShortcut);
|
2007-11-01 18:50:49 +01:00
|
|
|
INF_SET_CLSID(MicrosoftBrowserArchitecture);
|
|
|
|
INF_SET_CLSID(MruLongList);
|
|
|
|
INF_SET_CLSID(SearchAssistantOC);
|
|
|
|
INF_SET_CLSID(ShellNameSpace);
|
|
|
|
INF_SET_CLSID(ShellSearchAssistantOC);
|
|
|
|
INF_SET_CLSID(ShellShellNameSpace);
|
|
|
|
INF_SET_CLSID(ShellUIHelper);
|
|
|
|
INF_SET_CLSID(ShellWindows);
|
2009-03-24 10:09:25 +01:00
|
|
|
INF_SET_CLSID(TaskbarList);
|
2007-11-01 18:50:49 +01:00
|
|
|
INF_SET_CLSID(WebBrowser);
|
|
|
|
INF_SET_CLSID(WebBrowser_V1);
|
|
|
|
|
|
|
|
for(i = 0; i < sizeof(pse)/sizeof(pse[0]); i++) {
|
|
|
|
pse[i].pszValue = HeapAlloc(GetProcessHeap(), 0, 39);
|
|
|
|
sprintf(pse[i].pszValue, "{%08X-%04X-%04X-%02X%02X-%02X%02X%02X%02X%02X%02X}",
|
|
|
|
clsids[i]->Data1, clsids[i]->Data2, clsids[i]->Data3, clsids[i]->Data4[0],
|
|
|
|
clsids[i]->Data4[1], clsids[i]->Data4[2], clsids[i]->Data4[3], clsids[i]->Data4[4],
|
|
|
|
clsids[i]->Data4[5], clsids[i]->Data4[6], clsids[i]->Data4[7]);
|
|
|
|
}
|
|
|
|
|
|
|
|
strtable.cEntries = sizeof(pse)/sizeof(pse[0]);
|
|
|
|
strtable.pse = pse;
|
|
|
|
|
2007-11-02 19:51:53 +01:00
|
|
|
hres = reg_install(doregister ? "RegisterDll" : "UnregisterDll", &strtable);
|
2007-11-01 18:50:49 +01:00
|
|
|
|
|
|
|
for(i=0; i < sizeof(pse)/sizeof(pse[0]); i++)
|
|
|
|
HeapFree(GetProcessHeap(), 0, pse[i].pszValue);
|
|
|
|
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef INF_SET_CLSID
|
|
|
|
|
|
|
|
/***********************************************************************
|
2007-11-04 17:26:58 +01:00
|
|
|
* DllRegisterServer (shdocvw.@)
|
2007-11-01 18:50:49 +01:00
|
|
|
*/
|
|
|
|
HRESULT WINAPI DllRegisterServer(void)
|
|
|
|
{
|
|
|
|
ITypeLib *typelib;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
static const WCHAR shdocvwW[] = {'s','h','d','o','c','v','w','.','d','l','l',0};
|
|
|
|
|
|
|
|
hres = register_server(TRUE);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
hres = LoadTypeLibEx(shdocvwW, REGKIND_REGISTER, &typelib);
|
|
|
|
if(FAILED(hres)) {
|
|
|
|
ERR("Could not load typelib: %08x\n", hres);
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
|
|
|
ITypeLib_Release(typelib);
|
|
|
|
|
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
2007-11-04 17:26:58 +01:00
|
|
|
* DllUnregisterServer (shdocvw.@)
|
2007-11-01 18:50:49 +01:00
|
|
|
*/
|
|
|
|
HRESULT WINAPI DllUnregisterServer(void)
|
|
|
|
{
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = register_server(FALSE);
|
|
|
|
if(FAILED(hres))
|
|
|
|
return hres;
|
|
|
|
|
|
|
|
return UnRegisterTypeLib(&LIBID_SHDocVw, 1, 1, LOCALE_SYSTEM_DEFAULT, SYS_WIN32);
|
|
|
|
}
|
2007-11-02 19:51:53 +01:00
|
|
|
|
2008-05-08 18:26:47 +02:00
|
|
|
static BOOL check_native_ie(void)
|
|
|
|
{
|
|
|
|
static const WCHAR cszPath[] = {'b','r','o','w','s','e','u','i','.','d','l','l',0};
|
|
|
|
DWORD handle,size;
|
2008-05-10 01:30:05 +02:00
|
|
|
BOOL ret = TRUE;
|
2008-05-08 18:26:47 +02:00
|
|
|
|
|
|
|
size = GetFileVersionInfoSizeW(cszPath,&handle);
|
|
|
|
if (size)
|
|
|
|
{
|
|
|
|
LPVOID buf;
|
|
|
|
LPWSTR lpFileDescription;
|
|
|
|
UINT dwBytes;
|
|
|
|
static const WCHAR cszFD[] = {'\\','S','t','r','i','n','g','F','i','l','e','I','n','f','o','\\','0','4','0','9','0','4','e','4','\\','F','i','l','e','D','e','s','c','r','i','p','t','i','o','n',0};
|
|
|
|
static const WCHAR cszWine[] = {'W','i','n','e',0};
|
|
|
|
|
|
|
|
buf = HeapAlloc(GetProcessHeap(),0,size);
|
|
|
|
GetFileVersionInfoW(cszPath,0,size,buf);
|
|
|
|
|
|
|
|
if (VerQueryValueW(buf, cszFD, (LPVOID*)&lpFileDescription, &dwBytes) &&
|
|
|
|
strstrW(lpFileDescription,cszWine))
|
2008-05-10 01:30:05 +02:00
|
|
|
ret = FALSE;
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, buf);
|
2008-05-08 18:26:47 +02:00
|
|
|
}
|
|
|
|
|
2008-05-10 01:30:05 +02:00
|
|
|
return ret;
|
2008-05-08 18:26:47 +02:00
|
|
|
}
|
|
|
|
|
2007-11-02 19:51:53 +01:00
|
|
|
DWORD register_iexplore(BOOL doregister)
|
|
|
|
{
|
2008-05-08 18:26:47 +02:00
|
|
|
HRESULT hres;
|
|
|
|
if (check_native_ie())
|
|
|
|
{
|
|
|
|
TRACE("Native IE detected, not doing registration\n");
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
hres = reg_install(doregister ? "RegisterIE" : "UnregisterIE", NULL);
|
2008-10-08 01:36:15 +02:00
|
|
|
return FAILED(hres);
|
2007-11-02 19:51:53 +01:00
|
|
|
}
|