2005-09-15 18:47:13 +00:00
|
|
|
/*
|
2006-05-24 16:00:08 +00:00
|
|
|
* Copyright 2005-2006 Jacek Caban for CodeWeavers
|
2005-09-15 18:47:13 +00:00
|
|
|
*
|
|
|
|
* 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 12:49:52 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2005-09-15 18:47:13 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#define COBJMACROS
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winuser.h"
|
2005-11-14 12:28:18 +00:00
|
|
|
#include "winreg.h"
|
2005-09-15 18:47:13 +00:00
|
|
|
#include "ole2.h"
|
|
|
|
#include "urlmon.h"
|
|
|
|
#include "urlmon_main.h"
|
|
|
|
|
|
|
|
#include "wine/debug.h"
|
2006-05-24 15:59:07 +00:00
|
|
|
#include "wine/unicode.h"
|
2005-09-15 18:47:13 +00:00
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(urlmon);
|
|
|
|
|
2006-05-24 15:59:07 +00:00
|
|
|
typedef struct name_space {
|
|
|
|
LPWSTR protocol;
|
|
|
|
IClassFactory *cf;
|
2007-01-23 18:35:35 +00:00
|
|
|
CLSID clsid;
|
2006-05-24 15:59:07 +00:00
|
|
|
|
|
|
|
struct name_space *next;
|
|
|
|
} name_space;
|
|
|
|
|
|
|
|
static name_space *name_space_list = NULL;
|
|
|
|
|
2007-01-23 18:35:35 +00:00
|
|
|
static name_space *find_name_space(LPCWSTR protocol)
|
2005-11-14 12:28:18 +00:00
|
|
|
{
|
2006-05-24 16:00:08 +00:00
|
|
|
name_space *iter;
|
|
|
|
|
|
|
|
for(iter = name_space_list; iter; iter = iter->next) {
|
|
|
|
if(!strcmpW(iter->protocol, protocol))
|
2007-01-23 18:35:35 +00:00
|
|
|
return iter;
|
2006-05-24 16:00:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-02-22 20:13:01 +00:00
|
|
|
static HRESULT get_protocol_cf(LPCWSTR schema, DWORD schema_len, CLSID *pclsid, IClassFactory **ret)
|
2006-05-24 16:00:08 +00:00
|
|
|
{
|
|
|
|
WCHAR str_clsid[64];
|
2005-11-14 12:28:18 +00:00
|
|
|
HKEY hkey = NULL;
|
2006-05-24 16:00:08 +00:00
|
|
|
DWORD res, type, size;
|
2005-11-14 12:28:18 +00:00
|
|
|
CLSID clsid;
|
|
|
|
LPWSTR wszKey;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
static const WCHAR wszProtocolsKey[] =
|
|
|
|
{'P','R','O','T','O','C','O','L','S','\\','H','a','n','d','l','e','r','\\'};
|
|
|
|
static const WCHAR wszCLSID[] = {'C','L','S','I','D',0};
|
|
|
|
|
|
|
|
wszKey = HeapAlloc(GetProcessHeap(), 0, sizeof(wszProtocolsKey)+(schema_len+1)*sizeof(WCHAR));
|
|
|
|
memcpy(wszKey, wszProtocolsKey, sizeof(wszProtocolsKey));
|
|
|
|
memcpy(wszKey + sizeof(wszProtocolsKey)/sizeof(WCHAR), schema, (schema_len+1)*sizeof(WCHAR));
|
|
|
|
|
|
|
|
res = RegOpenKeyW(HKEY_CLASSES_ROOT, wszKey, &hkey);
|
|
|
|
HeapFree(GetProcessHeap(), 0, wszKey);
|
|
|
|
if(res != ERROR_SUCCESS) {
|
2006-07-22 13:21:20 +00:00
|
|
|
TRACE("Could not open protocol handler key\n");
|
2005-11-14 12:28:18 +00:00
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
size = sizeof(str_clsid);
|
|
|
|
res = RegQueryValueExW(hkey, wszCLSID, NULL, &type, (LPBYTE)str_clsid, &size);
|
|
|
|
RegCloseKey(hkey);
|
|
|
|
if(res != ERROR_SUCCESS || type != REG_SZ) {
|
2006-10-05 21:49:11 +00:00
|
|
|
WARN("Could not get protocol CLSID res=%d\n", res);
|
2005-11-14 12:28:18 +00:00
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
hres = CLSIDFromString(str_clsid, &clsid);
|
|
|
|
if(FAILED(hres)) {
|
2006-10-05 21:49:11 +00:00
|
|
|
WARN("CLSIDFromString failed: %08x\n", hres);
|
2005-11-14 12:28:18 +00:00
|
|
|
return hres;
|
|
|
|
}
|
|
|
|
|
2007-01-23 18:35:35 +00:00
|
|
|
if(pclsid)
|
|
|
|
*pclsid = clsid;
|
|
|
|
|
2007-02-22 20:13:01 +00:00
|
|
|
return CoGetClassObject(&clsid, CLSCTX_INPROC_SERVER, NULL, &IID_IClassFactory, (void**)ret);
|
2005-11-14 12:28:18 +00:00
|
|
|
}
|
|
|
|
|
2006-05-24 16:00:08 +00:00
|
|
|
IInternetProtocolInfo *get_protocol_info(LPCWSTR url)
|
|
|
|
{
|
|
|
|
IInternetProtocolInfo *ret = NULL;
|
2007-02-22 20:13:01 +00:00
|
|
|
IClassFactory *cf;
|
2007-01-23 18:35:35 +00:00
|
|
|
name_space *ns;
|
2006-05-24 16:00:08 +00:00
|
|
|
WCHAR schema[64];
|
|
|
|
DWORD schema_len;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = CoInternetParseUrl(url, PARSE_SCHEMA, 0, schema, sizeof(schema)/sizeof(schema[0]),
|
|
|
|
&schema_len, 0);
|
|
|
|
if(FAILED(hres) || !schema_len)
|
|
|
|
return NULL;
|
|
|
|
|
2007-01-23 18:35:35 +00:00
|
|
|
ns = find_name_space(schema);
|
|
|
|
if(ns) {
|
|
|
|
hres = IClassFactory_QueryInterface(ns->cf, &IID_IInternetProtocolInfo, (void**)&ret);
|
2006-05-24 16:00:08 +00:00
|
|
|
if(SUCCEEDED(hres))
|
|
|
|
return ret;
|
|
|
|
|
2007-01-23 18:35:35 +00:00
|
|
|
hres = IClassFactory_CreateInstance(ns->cf, NULL, &IID_IInternetProtocolInfo, (void**)&ret);
|
2006-05-24 16:00:08 +00:00
|
|
|
if(SUCCEEDED(hres))
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2007-02-22 20:13:01 +00:00
|
|
|
hres = get_protocol_cf(schema, schema_len, NULL, &cf);
|
2006-05-24 16:00:08 +00:00
|
|
|
if(FAILED(hres))
|
|
|
|
return NULL;
|
|
|
|
|
2007-02-22 20:13:01 +00:00
|
|
|
hres = IClassFactory_QueryInterface(cf, &IID_IInternetProtocolInfo, (void**)&ret);
|
|
|
|
if(FAILED(hres))
|
|
|
|
IClassFactory_CreateInstance(cf, NULL, &IID_IInternetProtocolInfo, (void**)&ret);
|
|
|
|
IClassFactory_Release(cf);
|
2006-05-24 16:00:08 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2007-01-23 18:35:35 +00:00
|
|
|
HRESULT get_protocol_handler(LPCWSTR url, CLSID *clsid, IClassFactory **ret)
|
2006-05-24 16:00:08 +00:00
|
|
|
{
|
2007-01-23 18:35:35 +00:00
|
|
|
name_space *ns;
|
2006-05-24 16:00:08 +00:00
|
|
|
WCHAR schema[64];
|
|
|
|
DWORD schema_len;
|
|
|
|
HRESULT hres;
|
|
|
|
|
|
|
|
hres = CoInternetParseUrl(url, PARSE_SCHEMA, 0, schema, sizeof(schema)/sizeof(schema[0]),
|
|
|
|
&schema_len, 0);
|
|
|
|
if(FAILED(hres) || !schema_len)
|
|
|
|
return schema_len ? hres : E_FAIL;
|
|
|
|
|
2007-01-23 18:35:35 +00:00
|
|
|
ns = find_name_space(schema);
|
|
|
|
if(ns) {
|
|
|
|
*ret = ns->cf;
|
2007-07-24 05:14:58 +00:00
|
|
|
IClassFactory_AddRef(*ret);
|
2007-01-23 18:35:35 +00:00
|
|
|
if(clsid)
|
|
|
|
*clsid = ns->clsid;
|
2006-05-27 20:55:32 +00:00
|
|
|
return S_OK;
|
2006-05-24 16:00:08 +00:00
|
|
|
}
|
|
|
|
|
2007-02-22 20:13:01 +00:00
|
|
|
return get_protocol_cf(schema, schema_len, clsid, ret);
|
2006-05-24 16:00:08 +00:00
|
|
|
}
|
|
|
|
|
2005-09-15 18:47:13 +00:00
|
|
|
static HRESULT WINAPI InternetSession_QueryInterface(IInternetSession *iface,
|
|
|
|
REFIID riid, void **ppv)
|
|
|
|
{
|
|
|
|
TRACE("(%s %p)\n", debugstr_guid(riid), ppv);
|
|
|
|
|
|
|
|
if(IsEqualGUID(&IID_IUnknown, riid) || IsEqualGUID(&IID_IInternetSession, riid)) {
|
|
|
|
*ppv = iface;
|
|
|
|
IInternetSession_AddRef(iface);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
*ppv = NULL;
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI InternetSession_AddRef(IInternetSession *iface)
|
|
|
|
{
|
|
|
|
TRACE("()\n");
|
|
|
|
URLMON_LockModule();
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI InternetSession_Release(IInternetSession *iface)
|
|
|
|
{
|
|
|
|
TRACE("()\n");
|
|
|
|
URLMON_UnlockModule();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI InternetSession_RegisterNameSpace(IInternetSession *iface,
|
|
|
|
IClassFactory *pCF, REFCLSID rclsid, LPCWSTR pwzProtocol, ULONG cPatterns,
|
|
|
|
const LPCWSTR *ppwzPatterns, DWORD dwReserved)
|
|
|
|
{
|
2006-05-24 15:59:07 +00:00
|
|
|
name_space *new_name_space;
|
|
|
|
int size;
|
|
|
|
|
2006-10-05 21:49:11 +00:00
|
|
|
TRACE("(%p %s %s %d %p %d)\n", pCF, debugstr_guid(rclsid), debugstr_w(pwzProtocol),
|
2006-05-24 15:59:07 +00:00
|
|
|
cPatterns, ppwzPatterns, dwReserved);
|
|
|
|
|
|
|
|
if(cPatterns || ppwzPatterns)
|
|
|
|
FIXME("patterns not supported\n");
|
|
|
|
if(dwReserved)
|
2006-10-05 21:49:11 +00:00
|
|
|
WARN("dwReserved = %d\n", dwReserved);
|
2006-05-24 15:59:07 +00:00
|
|
|
|
|
|
|
if(!pCF || !pwzProtocol)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
new_name_space = HeapAlloc(GetProcessHeap(), 0, sizeof(name_space));
|
|
|
|
|
|
|
|
size = (strlenW(pwzProtocol)+1)*sizeof(WCHAR);
|
|
|
|
new_name_space->protocol = HeapAlloc(GetProcessHeap(), 0, size);
|
|
|
|
memcpy(new_name_space->protocol, pwzProtocol, size);
|
|
|
|
|
|
|
|
IClassFactory_AddRef(pCF);
|
|
|
|
new_name_space->cf = pCF;
|
2007-01-23 18:35:35 +00:00
|
|
|
new_name_space->clsid = *rclsid;
|
2006-05-24 15:59:07 +00:00
|
|
|
|
|
|
|
new_name_space->next = name_space_list;
|
|
|
|
name_space_list = new_name_space;
|
|
|
|
return S_OK;
|
2005-09-15 18:47:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI InternetSession_UnregisterNameSpace(IInternetSession *iface,
|
|
|
|
IClassFactory *pCF, LPCWSTR pszProtocol)
|
|
|
|
{
|
2006-05-24 15:59:07 +00:00
|
|
|
name_space *iter, *last = NULL;
|
|
|
|
|
|
|
|
TRACE("(%p %s)\n", pCF, debugstr_w(pszProtocol));
|
|
|
|
|
|
|
|
if(!pCF || !pszProtocol)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
for(iter = name_space_list; iter; iter = iter->next) {
|
|
|
|
if(iter->cf == pCF && !strcmpW(iter->protocol, pszProtocol))
|
|
|
|
break;
|
|
|
|
last = iter;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!iter)
|
|
|
|
return S_OK;
|
|
|
|
|
|
|
|
if(last)
|
|
|
|
last->next = iter->next;
|
|
|
|
else
|
|
|
|
name_space_list = iter->next;
|
|
|
|
|
|
|
|
IClassFactory_Release(iter->cf);
|
|
|
|
HeapFree(GetProcessHeap(), 0, iter->protocol);
|
|
|
|
HeapFree(GetProcessHeap(), 0, iter);
|
|
|
|
|
|
|
|
return S_OK;
|
2005-09-15 18:47:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI InternetSession_RegisterMimeFilter(IInternetSession *iface,
|
|
|
|
IClassFactory *pCF, REFCLSID rclsid, LPCWSTR pwzType)
|
|
|
|
{
|
|
|
|
FIXME("(%p %s %s)\n", pCF, debugstr_guid(rclsid), debugstr_w(pwzType));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI InternetSession_UnregisterMimeFilter(IInternetSession *iface,
|
|
|
|
IClassFactory *pCF, LPCWSTR pwzType)
|
|
|
|
{
|
|
|
|
FIXME("(%p %s)\n", pCF, debugstr_w(pwzType));
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI InternetSession_CreateBinding(IInternetSession *iface,
|
|
|
|
LPBC pBC, LPCWSTR szUrl, IUnknown *pUnkOuter, IUnknown **ppUnk,
|
2005-09-19 14:29:16 +00:00
|
|
|
IInternetProtocol **ppOInetProt, DWORD dwOption)
|
2005-09-15 18:47:13 +00:00
|
|
|
{
|
2007-01-23 18:33:30 +00:00
|
|
|
TRACE("(%p %s %p %p %p %08x)\n", pBC, debugstr_w(szUrl), pUnkOuter, ppUnk,
|
2005-09-15 18:47:13 +00:00
|
|
|
ppOInetProt, dwOption);
|
2007-01-23 18:33:30 +00:00
|
|
|
|
|
|
|
if(pBC || pUnkOuter || ppUnk || dwOption)
|
|
|
|
FIXME("Unsupported arguments\n");
|
|
|
|
|
|
|
|
return create_binding_protocol(szUrl, ppOInetProt);
|
2005-09-15 18:47:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI InternetSession_SetSessionOption(IInternetSession *iface,
|
|
|
|
DWORD dwOption, LPVOID pBuffer, DWORD dwBufferLength, DWORD dwReserved)
|
|
|
|
{
|
2006-10-05 21:49:11 +00:00
|
|
|
FIXME("(%08x %p %d %d)\n", dwOption, pBuffer, dwBufferLength, dwReserved);
|
2005-09-15 18:47:13 +00:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IInternetSessionVtbl InternetSessionVtbl = {
|
|
|
|
InternetSession_QueryInterface,
|
|
|
|
InternetSession_AddRef,
|
|
|
|
InternetSession_Release,
|
|
|
|
InternetSession_RegisterNameSpace,
|
|
|
|
InternetSession_UnregisterNameSpace,
|
|
|
|
InternetSession_RegisterMimeFilter,
|
|
|
|
InternetSession_UnregisterMimeFilter,
|
|
|
|
InternetSession_CreateBinding,
|
|
|
|
InternetSession_SetSessionOption
|
|
|
|
};
|
|
|
|
|
|
|
|
static IInternetSession InternetSession = { &InternetSessionVtbl };
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* CoInternetGetSession (URLMON.@)
|
|
|
|
*
|
|
|
|
* Create a new internet session and return an IInternetSession interface
|
|
|
|
* representing it.
|
|
|
|
*
|
|
|
|
* PARAMS
|
|
|
|
* dwSessionMode [I] Mode for the internet session
|
|
|
|
* ppIInternetSession [O] Destination for creates IInternetSession object
|
|
|
|
* dwReserved [I] Reserved, must be 0.
|
|
|
|
*
|
|
|
|
* RETURNS
|
|
|
|
* Success: S_OK. ppIInternetSession contains the IInternetSession interface.
|
|
|
|
* Failure: E_INVALIDARG, if any argument is invalid, or
|
|
|
|
* E_OUTOFMEMORY if memory allocation fails.
|
|
|
|
*/
|
|
|
|
HRESULT WINAPI CoInternetGetSession(DWORD dwSessionMode, IInternetSession **ppIInternetSession,
|
|
|
|
DWORD dwReserved)
|
|
|
|
{
|
2006-10-05 21:49:11 +00:00
|
|
|
TRACE("(%d %p %d)\n", dwSessionMode, ppIInternetSession, dwReserved);
|
2005-09-15 18:47:13 +00:00
|
|
|
|
|
|
|
if(dwSessionMode)
|
2006-10-05 21:49:11 +00:00
|
|
|
ERR("dwSessionMode=%d\n", dwSessionMode);
|
2005-09-15 18:47:13 +00:00
|
|
|
if(dwReserved)
|
2006-10-05 21:49:11 +00:00
|
|
|
ERR("dwReserved=%d\n", dwReserved);
|
2005-09-15 18:47:13 +00:00
|
|
|
|
2007-01-26 17:49:59 +00:00
|
|
|
IInternetSession_AddRef(&InternetSession);
|
2005-09-15 18:47:13 +00:00
|
|
|
*ppIInternetSession = &InternetSession;
|
|
|
|
return S_OK;
|
|
|
|
}
|
2006-07-16 19:40:33 +00:00
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* UrlMkGetSessionOption (URLMON.@)
|
|
|
|
*/
|
|
|
|
static BOOL get_url_encoding(HKEY root, DWORD *encoding)
|
|
|
|
{
|
|
|
|
DWORD size = sizeof(DWORD), res, type;
|
|
|
|
HKEY hkey;
|
|
|
|
|
|
|
|
static const WCHAR wszKeyName[] =
|
|
|
|
{'S','O','F','T','W','A','R','E',
|
|
|
|
'\\','M','i','c','r','o','s','o','f','t',
|
|
|
|
'\\','W','i','n','d','o','w','s',
|
|
|
|
'\\','C','u','r','r','e','n','t','V','e','r','s','i','o','n',
|
|
|
|
'\\','I','n','t','e','r','n','e','t',' ','S','e','t','t','i','n','g','s',0};
|
|
|
|
static const WCHAR wszUrlEncoding[] = {'U','r','l','E','n','c','o','d','i','n','g',0};
|
|
|
|
|
|
|
|
res = RegOpenKeyW(root, wszKeyName, &hkey);
|
|
|
|
if(res != ERROR_SUCCESS)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
res = RegQueryValueExW(hkey, wszUrlEncoding, NULL, &type, (LPBYTE)encoding, &size);
|
|
|
|
RegCloseKey(hkey);
|
|
|
|
|
|
|
|
return res == ERROR_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI UrlMkGetSessionOption(DWORD dwOption, LPVOID pBuffer, DWORD dwBufferLength,
|
|
|
|
DWORD* pdwBufferLength, DWORD dwReserved)
|
|
|
|
{
|
2006-10-05 21:49:11 +00:00
|
|
|
TRACE("(%x, %p, %d, %p)\n", dwOption, pBuffer, dwBufferLength, pdwBufferLength);
|
2006-07-16 19:40:33 +00:00
|
|
|
|
|
|
|
if(dwReserved)
|
2006-10-05 21:49:11 +00:00
|
|
|
WARN("dwReserved = %d\n", dwReserved);
|
2006-07-16 19:40:33 +00:00
|
|
|
|
|
|
|
switch(dwOption) {
|
|
|
|
case URLMON_OPTION_URL_ENCODING: {
|
|
|
|
DWORD encoding = 0;
|
|
|
|
|
|
|
|
if(!pBuffer || dwBufferLength < sizeof(DWORD) || !pdwBufferLength)
|
|
|
|
return E_INVALIDARG;
|
|
|
|
|
|
|
|
if(!get_url_encoding(HKEY_CURRENT_USER, &encoding))
|
|
|
|
get_url_encoding(HKEY_LOCAL_MACHINE, &encoding);
|
|
|
|
|
|
|
|
*pdwBufferLength = sizeof(DWORD);
|
|
|
|
*(DWORD*)pBuffer = encoding ? URL_ENCODING_DISABLE_UTF8 : URL_ENCODING_ENABLE_UTF8;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
default:
|
2006-10-05 21:49:11 +00:00
|
|
|
FIXME("unsupported option %x\n", dwOption);
|
2006-07-16 19:40:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return E_INVALIDARG;
|
|
|
|
}
|