2 * Internet Security and Zone Manager
4 * Copyright (c) 2004 Huw D M Davies
5 * Copyright 2004 Jacek Caban
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #include "urlmon_main.h"
28 #include "wine/debug.h"
30 WINE_DEFAULT_DEBUG_CHANNEL(urlmon);
32 static const WCHAR currentlevelW[] = {'C','u','r','r','e','n','t','L','e','v','e','l',0};
33 static const WCHAR descriptionW[] = {'D','e','s','c','r','i','p','t','i','o','n',0};
34 static const WCHAR displaynameW[] = {'D','i','s','p','l','a','y','N','a','m','e',0};
35 static const WCHAR fileW[] = {'f','i','l','e',0};
36 static const WCHAR flagsW[] = {'F','l','a','g','s',0};
37 static const WCHAR iconW[] = {'I','c','o','n',0};
38 static const WCHAR minlevelW[] = {'M','i','n','L','e','v','e','l',0};
39 static const WCHAR recommendedlevelW[] = {'R','e','c','o','m','m','e','n','d','e','d',
40 'L','e','v','e','l',0};
42 /********************************************************************
43 * get_string_from_reg [internal]
45 * helper to get a string from the reg.
48 static void get_string_from_reg(HKEY hcu, HKEY hklm, LPCWSTR name, LPWSTR out, DWORD maxlen)
51 DWORD len = maxlen * sizeof(WCHAR);
54 res = RegQueryValueExW(hcu, name, NULL, &type, (LPBYTE) out, &len);
57 len = maxlen * sizeof(WCHAR);
59 res = RegQueryValueExW(hklm, name, NULL, &type, (LPBYTE) out, &len);
63 TRACE("%s failed: %d\n", debugstr_w(name), res);
68 /********************************************************************
69 * get_dword_from_reg [internal]
71 * helper to get a dword from the reg.
74 static void get_dword_from_reg(HKEY hcu, HKEY hklm, LPCWSTR name, LPDWORD out)
76 DWORD type = REG_DWORD;
77 DWORD len = sizeof(DWORD);
80 res = RegQueryValueExW(hcu, name, NULL, &type, (LPBYTE) out, &len);
85 res = RegQueryValueExW(hklm, name, NULL, &type, (LPBYTE) out, &len);
89 TRACE("%s failed: %d\n", debugstr_w(name), res);
94 static HRESULT get_zone_from_reg(LPCWSTR schema, DWORD *zone)
99 static const WCHAR wszZoneMapProtocolKey[] =
100 {'S','o','f','t','w','a','r','e','\\',
101 'M','i','c','r','o','s','o','f','t','\\',
102 'W','i','n','d','o','w','s','\\',
103 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
104 'I','n','t','e','r','n','e','t',' ','S','e','t','t','i','n','g','s','\\',
105 'Z','o','n','e','M','a','p','\\',
106 'P','r','o','t','o','c','o','l','D','e','f','a','u','l','t','s',0};
108 res = RegOpenKeyW(HKEY_CURRENT_USER, wszZoneMapProtocolKey, &hkey);
109 if(res != ERROR_SUCCESS) {
110 ERR("Could not open key %s\n", debugstr_w(wszZoneMapProtocolKey));
114 size = sizeof(DWORD);
115 res = RegQueryValueExW(hkey, schema, NULL, NULL, (PBYTE)zone, &size);
117 if(res == ERROR_SUCCESS)
120 res = RegOpenKeyW(HKEY_LOCAL_MACHINE, wszZoneMapProtocolKey, &hkey);
121 if(res != ERROR_SUCCESS) {
122 ERR("Could not open key %s\n", debugstr_w(wszZoneMapProtocolKey));
126 size = sizeof(DWORD);
127 res = RegQueryValueExW(hkey, schema, NULL, NULL, (PBYTE)zone, &size);
129 if(res == ERROR_SUCCESS)
136 static HRESULT map_url_to_zone(LPCWSTR url, DWORD *zone, LPWSTR *ret_url)
143 secur_url = heap_alloc(INTERNET_MAX_URL_LENGTH*sizeof(WCHAR));
146 hres = CoInternetParseUrl(url, PARSE_SECURITY_URL, 0, secur_url, INTERNET_MAX_URL_LENGTH, &size, 0);
148 strcpyW(secur_url, url);
150 hres = CoInternetParseUrl(secur_url, PARSE_SCHEMA, 0, schema, sizeof(schema)/sizeof(WCHAR), &size, 0);
151 if(FAILED(hres) || !*schema) {
152 heap_free(secur_url);
156 /* file protocol is a special case */
157 if(!strcmpW(schema, fileW)) {
158 WCHAR path[MAX_PATH], root[20];
161 hres = CoInternetParseUrl(secur_url, PARSE_PATH_FROM_URL, 0, path,
162 sizeof(path)/sizeof(WCHAR), &size, 0);
164 if(SUCCEEDED(hres) && (ptr = strchrW(path, '\\')) && ptr-path < sizeof(root)/sizeof(WCHAR)) {
167 memcpy(root, path, (ptr-path)*sizeof(WCHAR));
170 type = GetDriveTypeW(root);
174 case DRIVE_NO_ROOT_DIR:
176 case DRIVE_REMOVABLE:
188 FIXME("unsupported drive type %d\n", type);
194 WARN("domains are not yet implemented\n");
195 hres = get_zone_from_reg(schema, zone);
198 if(FAILED(hres) || !ret_url)
199 heap_free(secur_url);
201 *ret_url = secur_url;
206 static HRESULT open_zone_key(HKEY parent_key, DWORD zone, HKEY *hkey)
208 static const WCHAR wszZonesKey[] =
209 {'S','o','f','t','w','a','r','e','\\',
210 'M','i','c','r','o','s','o','f','t','\\',
211 'W','i','n','d','o','w','s','\\',
212 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
213 'I','n','t','e','r','n','e','t',' ','S','e','t','t','i','n','g','s','\\',
214 'Z','o','n','e','s','\\',0};
215 static const WCHAR wszFormat[] = {'%','s','%','l','d',0};
217 WCHAR key_name[sizeof(wszZonesKey)/sizeof(WCHAR)+8];
220 wsprintfW(key_name, wszFormat, wszZonesKey, zone);
222 res = RegOpenKeyW(parent_key, key_name, hkey);
224 if(res != ERROR_SUCCESS) {
225 WARN("RegOpenKey failed\n");
232 static HRESULT get_action_policy(DWORD zone, DWORD action, BYTE *policy, DWORD size, URLZONEREG zone_reg)
240 case URLACTION_SCRIPT_OVERRIDE_SAFETY:
241 *(DWORD*)policy = URLPOLICY_DISALLOW;
246 case URLZONEREG_DEFAULT:
247 case URLZONEREG_HKCU:
248 parent_key = HKEY_CURRENT_USER;
250 case URLZONEREG_HKLM:
251 parent_key = HKEY_LOCAL_MACHINE;
254 WARN("Unknown URLZONEREG: %d\n", zone_reg);
258 hres = open_zone_key(parent_key, zone, &hkey);
259 if(SUCCEEDED(hres)) {
260 WCHAR action_str[16];
263 static const WCHAR formatW[] = {'%','X',0};
265 wsprintfW(action_str, formatW, action);
267 res = RegQueryValueExW(hkey, action_str, NULL, NULL, policy, &len);
268 if(res == ERROR_MORE_DATA) {
270 }else if(res == ERROR_FILE_NOT_FOUND) {
272 }else if(res != ERROR_SUCCESS) {
273 ERR("RegQueryValue failed: %d\n", res);
280 if(FAILED(hres) && zone_reg == URLZONEREG_DEFAULT)
281 return get_action_policy(zone, action, policy, size, URLZONEREG_HKLM);
286 /***********************************************************************
287 * InternetSecurityManager implementation
291 const IInternetSecurityManagerVtbl* lpInternetSecurityManagerVtbl;
295 IInternetSecurityMgrSite *mgrsite;
296 IInternetSecurityManager *custom_manager;
299 #define SECMGR_THIS(iface) DEFINE_THIS(SecManagerImpl, InternetSecurityManager, iface)
301 static HRESULT WINAPI SecManagerImpl_QueryInterface(IInternetSecurityManager* iface,REFIID riid,void** ppvObject)
303 SecManagerImpl *This = SECMGR_THIS(iface);
305 TRACE("(%p)->(%s,%p)\n",This,debugstr_guid(riid),ppvObject);
307 /* Perform a sanity check on the parameters.*/
308 if ( (This==0) || (ppvObject==0) )
311 /* Initialize the return parameter */
314 /* Compare the riid with the interface IDs implemented by this object.*/
315 if (IsEqualIID(&IID_IUnknown, riid) ||
316 IsEqualIID(&IID_IInternetSecurityManager, riid))
319 /* Check that we obtained an interface.*/
321 WARN("not supported interface %s\n", debugstr_guid(riid));
322 return E_NOINTERFACE;
325 /* Query Interface always increases the reference count by one when it is successful */
326 IInternetSecurityManager_AddRef(iface);
331 static ULONG WINAPI SecManagerImpl_AddRef(IInternetSecurityManager* iface)
333 SecManagerImpl *This = SECMGR_THIS(iface);
334 ULONG refCount = InterlockedIncrement(&This->ref);
336 TRACE("(%p) ref=%u\n", This, refCount);
341 static ULONG WINAPI SecManagerImpl_Release(IInternetSecurityManager* iface)
343 SecManagerImpl *This = SECMGR_THIS(iface);
344 ULONG refCount = InterlockedDecrement(&This->ref);
346 TRACE("(%p) ref=%u\n", This, refCount);
348 /* destroy the object if there's no more reference on it */
351 IInternetSecurityMgrSite_Release(This->mgrsite);
352 if(This->custom_manager)
353 IInternetSecurityManager_Release(This->custom_manager);
357 URLMON_UnlockModule();
363 static HRESULT WINAPI SecManagerImpl_SetSecuritySite(IInternetSecurityManager *iface,
364 IInternetSecurityMgrSite *pSite)
366 SecManagerImpl *This = SECMGR_THIS(iface);
368 TRACE("(%p)->(%p)\n", This, pSite);
371 IInternetSecurityMgrSite_Release(This->mgrsite);
373 if(This->custom_manager) {
374 IInternetSecurityManager_Release(This->custom_manager);
375 This->custom_manager = NULL;
378 This->mgrsite = pSite;
381 IServiceProvider *servprov;
384 IInternetSecurityMgrSite_AddRef(pSite);
386 hres = IInternetSecurityMgrSite_QueryInterface(pSite, &IID_IServiceProvider,
388 if(SUCCEEDED(hres)) {
389 IServiceProvider_QueryService(servprov, &SID_SInternetSecurityManager,
390 &IID_IInternetSecurityManager, (void**)&This->custom_manager);
391 IServiceProvider_Release(servprov);
398 static HRESULT WINAPI SecManagerImpl_GetSecuritySite(IInternetSecurityManager *iface,
399 IInternetSecurityMgrSite **ppSite)
401 SecManagerImpl *This = SECMGR_THIS(iface);
403 TRACE("(%p)->(%p)\n", This, ppSite);
409 IInternetSecurityMgrSite_AddRef(This->mgrsite);
411 *ppSite = This->mgrsite;
415 static HRESULT WINAPI SecManagerImpl_MapUrlToZone(IInternetSecurityManager *iface,
416 LPCWSTR pwszUrl, DWORD *pdwZone,
419 SecManagerImpl *This = SECMGR_THIS(iface);
422 TRACE("(%p)->(%s %p %08x)\n", iface, debugstr_w(pwszUrl), pdwZone, dwFlags);
424 if(This->custom_manager) {
425 hres = IInternetSecurityManager_MapUrlToZone(This->custom_manager,
426 pwszUrl, pdwZone, dwFlags);
427 if(hres != INET_E_DEFAULT_ACTION)
437 FIXME("not supported flags: %08x\n", dwFlags);
439 return map_url_to_zone(pwszUrl, pdwZone, NULL);
442 static HRESULT WINAPI SecManagerImpl_GetSecurityId(IInternetSecurityManager *iface,
443 LPCWSTR pwszUrl, BYTE *pbSecurityId, DWORD *pcbSecurityId, DWORD_PTR dwReserved)
445 SecManagerImpl *This = SECMGR_THIS(iface);
446 LPWSTR url, ptr, ptr2;
450 static const WCHAR wszFile[] = {'f','i','l','e',':'};
452 TRACE("(%p)->(%s %p %p %08lx)\n", iface, debugstr_w(pwszUrl), pbSecurityId,
453 pcbSecurityId, dwReserved);
455 if(This->custom_manager) {
456 hres = IInternetSecurityManager_GetSecurityId(This->custom_manager,
457 pwszUrl, pbSecurityId, pcbSecurityId, dwReserved);
458 if(hres != INET_E_DEFAULT_ACTION)
462 if(!pwszUrl || !pbSecurityId || !pcbSecurityId)
466 FIXME("dwReserved is not supported\n");
468 hres = map_url_to_zone(pwszUrl, &zone, &url);
470 return hres == 0x80041001 ? E_INVALIDARG : hres;
472 /* file protocol is a special case */
473 if(strlenW(url) >= sizeof(wszFile)/sizeof(WCHAR)
474 && !memcmp(url, wszFile, sizeof(wszFile)) && strchrW(url, '\\')) {
476 static const BYTE secidFile[] = {'f','i','l','e',':'};
480 if(*pcbSecurityId < sizeof(secidFile)+sizeof(zone))
481 return HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER);
483 memcpy(pbSecurityId, secidFile, sizeof(secidFile));
484 *(DWORD*)(pbSecurityId+sizeof(secidFile)) = zone;
486 *pcbSecurityId = sizeof(secidFile)+sizeof(zone);
490 ptr = strchrW(url, ':');
495 memmove(ptr, ptr2, (strlenW(ptr2)+1)*sizeof(WCHAR));
497 ptr = strchrW(ptr, '/');
501 len = WideCharToMultiByte(CP_ACP, 0, url, -1, NULL, 0, NULL, NULL)-1;
503 if(len+sizeof(DWORD) > *pcbSecurityId) {
505 return HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER);
508 WideCharToMultiByte(CP_ACP, 0, url, -1, (LPSTR)pbSecurityId, len, NULL, NULL);
511 *(DWORD*)(pbSecurityId+len) = zone;
513 *pcbSecurityId = len+sizeof(DWORD);
519 static HRESULT WINAPI SecManagerImpl_ProcessUrlAction(IInternetSecurityManager *iface,
520 LPCWSTR pwszUrl, DWORD dwAction,
521 BYTE *pPolicy, DWORD cbPolicy,
522 BYTE *pContext, DWORD cbContext,
523 DWORD dwFlags, DWORD dwReserved)
525 SecManagerImpl *This = SECMGR_THIS(iface);
529 TRACE("(%p)->(%s %08x %p %08x %p %08x %08x %08x)\n", iface, debugstr_w(pwszUrl), dwAction,
530 pPolicy, cbPolicy, pContext, cbContext, dwFlags, dwReserved);
532 if(This->custom_manager) {
533 hres = IInternetSecurityManager_ProcessUrlAction(This->custom_manager, pwszUrl, dwAction,
534 pPolicy, cbPolicy, pContext, cbContext, dwFlags, dwReserved);
535 if(hres != INET_E_DEFAULT_ACTION)
539 if(pContext || cbContext || dwFlags || dwReserved)
540 FIXME("Unsupported arguments\n");
545 hres = map_url_to_zone(pwszUrl, &zone, NULL);
549 hres = get_action_policy(zone, dwAction, (BYTE*)&policy, sizeof(policy), URLZONEREG_DEFAULT);
553 TRACE("policy %x\n", policy);
555 switch(GetUrlPolicyPermissions(policy)) {
556 case URLPOLICY_ALLOW:
557 case URLPOLICY_CHANNEL_SOFTDIST_PRECACHE:
559 case URLPOLICY_DISALLOW:
561 case URLPOLICY_QUERY:
562 FIXME("URLPOLICY_QUERY not implemented\n");
565 FIXME("Not implemented policy %x\n", policy);
572 static HRESULT WINAPI SecManagerImpl_QueryCustomPolicy(IInternetSecurityManager *iface,
573 LPCWSTR pwszUrl, REFGUID guidKey,
574 BYTE **ppPolicy, DWORD *pcbPolicy,
575 BYTE *pContext, DWORD cbContext,
578 SecManagerImpl *This = SECMGR_THIS(iface);
581 TRACE("(%p)->(%s %s %p %p %p %08x %08x )\n", iface, debugstr_w(pwszUrl), debugstr_guid(guidKey),
582 ppPolicy, pcbPolicy, pContext, cbContext, dwReserved);
584 if(This->custom_manager) {
585 hres = IInternetSecurityManager_QueryCustomPolicy(This->custom_manager, pwszUrl, guidKey,
586 ppPolicy, pcbPolicy, pContext, cbContext, dwReserved);
587 if(hres != INET_E_DEFAULT_ACTION)
591 FIXME("Default action is not implemented\n");
595 static HRESULT WINAPI SecManagerImpl_SetZoneMapping(IInternetSecurityManager *iface,
596 DWORD dwZone, LPCWSTR pwszPattern, DWORD dwFlags)
598 SecManagerImpl *This = SECMGR_THIS(iface);
601 TRACE("(%p)->(%08x %s %08x)\n", iface, dwZone, debugstr_w(pwszPattern),dwFlags);
603 if(This->custom_manager) {
604 hres = IInternetSecurityManager_SetZoneMapping(This->custom_manager, dwZone,
605 pwszPattern, dwFlags);
606 if(hres != INET_E_DEFAULT_ACTION)
610 FIXME("Default action is not implemented\n");
614 static HRESULT WINAPI SecManagerImpl_GetZoneMappings(IInternetSecurityManager *iface,
615 DWORD dwZone, IEnumString **ppenumString, DWORD dwFlags)
617 SecManagerImpl *This = SECMGR_THIS(iface);
620 TRACE("(%p)->(%08x %p %08x)\n", iface, dwZone, ppenumString,dwFlags);
622 if(This->custom_manager) {
623 hres = IInternetSecurityManager_GetZoneMappings(This->custom_manager, dwZone,
624 ppenumString, dwFlags);
625 if(hres != INET_E_DEFAULT_ACTION)
629 FIXME("Default action is not implemented\n");
633 static const IInternetSecurityManagerVtbl VT_SecManagerImpl =
635 SecManagerImpl_QueryInterface,
636 SecManagerImpl_AddRef,
637 SecManagerImpl_Release,
638 SecManagerImpl_SetSecuritySite,
639 SecManagerImpl_GetSecuritySite,
640 SecManagerImpl_MapUrlToZone,
641 SecManagerImpl_GetSecurityId,
642 SecManagerImpl_ProcessUrlAction,
643 SecManagerImpl_QueryCustomPolicy,
644 SecManagerImpl_SetZoneMapping,
645 SecManagerImpl_GetZoneMappings
648 HRESULT SecManagerImpl_Construct(IUnknown *pUnkOuter, LPVOID *ppobj)
650 SecManagerImpl *This;
652 TRACE("(%p,%p)\n",pUnkOuter,ppobj);
653 This = heap_alloc(sizeof(*This));
655 /* Initialize the virtual function table. */
656 This->lpInternetSecurityManagerVtbl = &VT_SecManagerImpl;
659 This->mgrsite = NULL;
660 This->custom_manager = NULL;
669 /***********************************************************************
670 * InternetZoneManager implementation
674 const IInternetZoneManagerVtbl* lpVtbl;
678 /********************************************************************
679 * IInternetZoneManager_QueryInterface
681 static HRESULT WINAPI ZoneMgrImpl_QueryInterface(IInternetZoneManager* iface, REFIID riid, void** ppvObject)
683 ZoneMgrImpl* This = (ZoneMgrImpl*)iface;
685 TRACE("(%p)->(%s,%p)\n", This, debugstr_guid(riid), ppvObject);
687 if(!This || !ppvObject)
690 if(!IsEqualIID(&IID_IUnknown, riid) && !IsEqualIID(&IID_IInternetZoneManager, riid)) {
691 FIXME("Unknown interface: %s\n", debugstr_guid(riid));
693 return E_NOINTERFACE;
697 IInternetZoneManager_AddRef(iface);
702 /********************************************************************
703 * IInternetZoneManager_AddRef
705 static ULONG WINAPI ZoneMgrImpl_AddRef(IInternetZoneManager* iface)
707 ZoneMgrImpl* This = (ZoneMgrImpl*)iface;
708 ULONG refCount = InterlockedIncrement(&This->ref);
710 TRACE("(%p)->(ref before=%u)\n",This, refCount - 1);
715 /********************************************************************
716 * IInternetZoneManager_Release
718 static ULONG WINAPI ZoneMgrImpl_Release(IInternetZoneManager* iface)
720 ZoneMgrImpl* This = (ZoneMgrImpl*)iface;
721 ULONG refCount = InterlockedDecrement(&This->ref);
723 TRACE("(%p)->(ref before=%u)\n",This, refCount + 1);
727 URLMON_UnlockModule();
733 /********************************************************************
734 * IInternetZoneManager_GetZoneAttributes
736 static HRESULT WINAPI ZoneMgrImpl_GetZoneAttributes(IInternetZoneManager* iface,
738 ZONEATTRIBUTES* pZoneAttributes)
740 ZoneMgrImpl* This = (ZoneMgrImpl*)iface;
745 TRACE("(%p)->(%d %p)\n", This, dwZone, pZoneAttributes);
747 if (!pZoneAttributes)
750 hr = open_zone_key(HKEY_CURRENT_USER, dwZone, &hcu);
752 return S_OK; /* IE6 and older returned E_FAIL here */
754 hr = open_zone_key(HKEY_LOCAL_MACHINE, dwZone, &hklm);
756 TRACE("Zone %d not in HKLM\n", dwZone);
758 get_string_from_reg(hcu, hklm, displaynameW, pZoneAttributes->szDisplayName, MAX_ZONE_PATH);
759 get_string_from_reg(hcu, hklm, descriptionW, pZoneAttributes->szDescription, MAX_ZONE_DESCRIPTION);
760 get_string_from_reg(hcu, hklm, iconW, pZoneAttributes->szIconPath, MAX_ZONE_PATH);
761 get_dword_from_reg(hcu, hklm, minlevelW, &pZoneAttributes->dwTemplateMinLevel);
762 get_dword_from_reg(hcu, hklm, currentlevelW, &pZoneAttributes->dwTemplateCurrentLevel);
763 get_dword_from_reg(hcu, hklm, recommendedlevelW, &pZoneAttributes->dwTemplateRecommended);
764 get_dword_from_reg(hcu, hklm, flagsW, &pZoneAttributes->dwFlags);
771 /********************************************************************
772 * IInternetZoneManager_SetZoneAttributes
774 static HRESULT WINAPI ZoneMgrImpl_SetZoneAttributes(IInternetZoneManager* iface,
776 ZONEATTRIBUTES* pZoneAttributes)
778 FIXME("(%p)->(%08x %p) stub\n", iface, dwZone, pZoneAttributes);
782 /********************************************************************
783 * IInternetZoneManager_GetZoneCustomPolicy
785 static HRESULT WINAPI ZoneMgrImpl_GetZoneCustomPolicy(IInternetZoneManager* iface,
790 URLZONEREG ulrZoneReg)
792 FIXME("(%p)->(%08x %s %p %p %08x) stub\n", iface, dwZone, debugstr_guid(guidKey),
793 ppPolicy, pcbPolicy, ulrZoneReg);
797 /********************************************************************
798 * IInternetZoneManager_SetZoneCustomPolicy
800 static HRESULT WINAPI ZoneMgrImpl_SetZoneCustomPolicy(IInternetZoneManager* iface,
805 URLZONEREG ulrZoneReg)
807 FIXME("(%p)->(%08x %s %p %08x %08x) stub\n", iface, dwZone, debugstr_guid(guidKey),
808 ppPolicy, cbPolicy, ulrZoneReg);
812 /********************************************************************
813 * IInternetZoneManager_GetZoneActionPolicy
815 static HRESULT WINAPI ZoneMgrImpl_GetZoneActionPolicy(IInternetZoneManager* iface,
816 DWORD dwZone, DWORD dwAction, BYTE* pPolicy, DWORD cbPolicy, URLZONEREG urlZoneReg)
818 TRACE("(%p)->(%d %08x %p %d %d)\n", iface, dwZone, dwAction, pPolicy,
819 cbPolicy, urlZoneReg);
824 return get_action_policy(dwZone, dwAction, pPolicy, cbPolicy, urlZoneReg);
827 /********************************************************************
828 * IInternetZoneManager_SetZoneActionPolicy
830 static HRESULT WINAPI ZoneMgrImpl_SetZoneActionPolicy(IInternetZoneManager* iface,
835 URLZONEREG urlZoneReg)
837 FIXME("(%p)->(%08x %08x %p %08x %08x) stub\n", iface, dwZone, dwAction, pPolicy,
838 cbPolicy, urlZoneReg);
842 /********************************************************************
843 * IInternetZoneManager_PromptAction
845 static HRESULT WINAPI ZoneMgrImpl_PromptAction(IInternetZoneManager* iface,
852 FIXME("%p %08x %p %s %s %08x\n", iface, dwAction, hwndParent,
853 debugstr_w(pwszUrl), debugstr_w(pwszText), dwPromptFlags );
857 /********************************************************************
858 * IInternetZoneManager_LogAction
860 static HRESULT WINAPI ZoneMgrImpl_LogAction(IInternetZoneManager* iface,
866 FIXME("(%p)->(%08x %s %s %08x) stub\n", iface, dwAction, debugstr_w(pwszUrl),
867 debugstr_w(pwszText), dwLogFlags);
871 /********************************************************************
872 * IInternetZoneManager_CreateZoneEnumerator
874 static HRESULT WINAPI ZoneMgrImpl_CreateZoneEnumerator(IInternetZoneManager* iface,
879 FIXME("(%p)->(%p %p %08x) stub\n", iface, pdwEnum, pdwCount, dwFlags);
883 /********************************************************************
884 * IInternetZoneManager_GetZoneAt
886 static HRESULT WINAPI ZoneMgrImpl_GetZoneAt(IInternetZoneManager* iface,
891 FIXME("(%p)->(%08x %08x %p) stub\n", iface, dwEnum, dwIndex, pdwZone);
895 /********************************************************************
896 * IInternetZoneManager_DestroyZoneEnumerator
898 static HRESULT WINAPI ZoneMgrImpl_DestroyZoneEnumerator(IInternetZoneManager* iface,
901 FIXME("(%p)->(%08x) stub\n", iface, dwEnum);
905 /********************************************************************
906 * IInternetZoneManager_CopyTemplatePoliciesToZone
908 static HRESULT WINAPI ZoneMgrImpl_CopyTemplatePoliciesToZone(IInternetZoneManager* iface,
913 FIXME("(%p)->(%08x %08x %08x) stub\n", iface, dwTemplate, dwZone, dwReserved);
917 /********************************************************************
918 * IInternetZoneManager_Construct
920 static const IInternetZoneManagerVtbl ZoneMgrImplVtbl = {
921 ZoneMgrImpl_QueryInterface,
924 ZoneMgrImpl_GetZoneAttributes,
925 ZoneMgrImpl_SetZoneAttributes,
926 ZoneMgrImpl_GetZoneCustomPolicy,
927 ZoneMgrImpl_SetZoneCustomPolicy,
928 ZoneMgrImpl_GetZoneActionPolicy,
929 ZoneMgrImpl_SetZoneActionPolicy,
930 ZoneMgrImpl_PromptAction,
931 ZoneMgrImpl_LogAction,
932 ZoneMgrImpl_CreateZoneEnumerator,
933 ZoneMgrImpl_GetZoneAt,
934 ZoneMgrImpl_DestroyZoneEnumerator,
935 ZoneMgrImpl_CopyTemplatePoliciesToZone,
938 HRESULT ZoneMgrImpl_Construct(IUnknown *pUnkOuter, LPVOID *ppobj)
940 ZoneMgrImpl* ret = heap_alloc(sizeof(ZoneMgrImpl));
942 TRACE("(%p %p)\n", pUnkOuter, ppobj);
943 ret->lpVtbl = &ZoneMgrImplVtbl;
945 *ppobj = (IInternetZoneManager*)ret;
952 /***********************************************************************
953 * CoInternetCreateSecurityManager (URLMON.@)
956 HRESULT WINAPI CoInternetCreateSecurityManager( IServiceProvider *pSP,
957 IInternetSecurityManager **ppSM, DWORD dwReserved )
959 TRACE("%p %p %d\n", pSP, ppSM, dwReserved );
962 FIXME("pSP not supported\n");
964 return SecManagerImpl_Construct(NULL, (void**) ppSM);
967 /********************************************************************
968 * CoInternetCreateZoneManager (URLMON.@)
970 HRESULT WINAPI CoInternetCreateZoneManager(IServiceProvider* pSP, IInternetZoneManager** ppZM, DWORD dwReserved)
972 TRACE("(%p %p %x)\n", pSP, ppZM, dwReserved);
973 return ZoneMgrImpl_Construct(NULL, (void**)ppZM);