2 * Internet Security and Zone Manager
4 * Copyright (c) 2004 Huw D M Davies
5 * Copyright 2004 Jacek Caban
6 * Copyright 2009 Detlef Riekenberg
7 * Copyright 2011 Thomas Mullaly for CodeWeavers
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 #include "urlmon_main.h"
30 #define NO_SHLWAPI_REG
33 #include "wine/debug.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(urlmon);
37 static const WCHAR currentlevelW[] = {'C','u','r','r','e','n','t','L','e','v','e','l',0};
38 static const WCHAR descriptionW[] = {'D','e','s','c','r','i','p','t','i','o','n',0};
39 static const WCHAR displaynameW[] = {'D','i','s','p','l','a','y','N','a','m','e',0};
40 static const WCHAR fileW[] = {'f','i','l','e',0};
41 static const WCHAR flagsW[] = {'F','l','a','g','s',0};
42 static const WCHAR iconW[] = {'I','c','o','n',0};
43 static const WCHAR minlevelW[] = {'M','i','n','L','e','v','e','l',0};
44 static const WCHAR recommendedlevelW[] = {'R','e','c','o','m','m','e','n','d','e','d',
45 'L','e','v','e','l',0};
46 static const WCHAR wszZonesKey[] = {'S','o','f','t','w','a','r','e','\\',
47 'M','i','c','r','o','s','o','f','t','\\',
48 'W','i','n','d','o','w','s','\\',
49 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
50 'I','n','t','e','r','n','e','t',' ','S','e','t','t','i','n','g','s','\\',
51 'Z','o','n','e','s','\\',0};
52 static const WCHAR wszZoneMapDomainsKey[] = {'S','o','f','t','w','a','r','e','\\',
53 'M','i','c','r','o','s','o','f','t','\\',
54 'W','i','n','d','o','w','s','\\',
55 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
56 'I','n','t','e','r','n','e','t',' ','S','e','t','t','i','n','g','s','\\',
57 'Z','o','n','e','M','a','p','\\',
58 'D','o','m','a','i','n','s',0};
60 static inline BOOL is_drive_path(const WCHAR *path)
62 return isalphaW(*path) && *(path+1) == ':';
65 /* List of schemes types Windows seems to expect to be hierarchical. */
66 static inline BOOL is_hierarchical_scheme(URL_SCHEME type) {
67 return(type == URL_SCHEME_HTTP || type == URL_SCHEME_FTP ||
68 type == URL_SCHEME_GOPHER || type == URL_SCHEME_NNTP ||
69 type == URL_SCHEME_TELNET || type == URL_SCHEME_WAIS ||
70 type == URL_SCHEME_FILE || type == URL_SCHEME_HTTPS ||
71 type == URL_SCHEME_RES);
74 /********************************************************************
75 * get_string_from_reg [internal]
77 * helper to get a string from the reg.
80 static void get_string_from_reg(HKEY hcu, HKEY hklm, LPCWSTR name, LPWSTR out, DWORD maxlen)
83 DWORD len = maxlen * sizeof(WCHAR);
86 res = RegQueryValueExW(hcu, name, NULL, &type, (LPBYTE) out, &len);
89 len = maxlen * sizeof(WCHAR);
91 res = RegQueryValueExW(hklm, name, NULL, &type, (LPBYTE) out, &len);
95 TRACE("%s failed: %d\n", debugstr_w(name), res);
100 /********************************************************************
101 * get_dword_from_reg [internal]
103 * helper to get a dword from the reg.
106 static void get_dword_from_reg(HKEY hcu, HKEY hklm, LPCWSTR name, LPDWORD out)
108 DWORD type = REG_DWORD;
109 DWORD len = sizeof(DWORD);
112 res = RegQueryValueExW(hcu, name, NULL, &type, (LPBYTE) out, &len);
117 res = RegQueryValueExW(hklm, name, NULL, &type, (LPBYTE) out, &len);
121 TRACE("%s failed: %d\n", debugstr_w(name), res);
126 static HRESULT get_zone_from_reg(LPCWSTR schema, DWORD *zone)
131 static const WCHAR wszZoneMapProtocolKey[] =
132 {'S','o','f','t','w','a','r','e','\\',
133 'M','i','c','r','o','s','o','f','t','\\',
134 'W','i','n','d','o','w','s','\\',
135 'C','u','r','r','e','n','t','V','e','r','s','i','o','n','\\',
136 'I','n','t','e','r','n','e','t',' ','S','e','t','t','i','n','g','s','\\',
137 'Z','o','n','e','M','a','p','\\',
138 'P','r','o','t','o','c','o','l','D','e','f','a','u','l','t','s',0};
140 res = RegOpenKeyW(HKEY_CURRENT_USER, wszZoneMapProtocolKey, &hkey);
141 if(res != ERROR_SUCCESS) {
142 ERR("Could not open key %s\n", debugstr_w(wszZoneMapProtocolKey));
146 size = sizeof(DWORD);
147 res = RegQueryValueExW(hkey, schema, NULL, NULL, (PBYTE)zone, &size);
149 if(res == ERROR_SUCCESS)
152 res = RegOpenKeyW(HKEY_LOCAL_MACHINE, wszZoneMapProtocolKey, &hkey);
153 if(res != ERROR_SUCCESS) {
154 ERR("Could not open key %s\n", debugstr_w(wszZoneMapProtocolKey));
158 size = sizeof(DWORD);
159 res = RegQueryValueExW(hkey, schema, NULL, NULL, (PBYTE)zone, &size);
161 if(res == ERROR_SUCCESS)
168 /********************************************************************
169 * matches_domain_pattern [internal]
171 * Checks if the given string matches the specified domain pattern.
173 * This function looks for explicit wildcard domain components iff
174 * they appear at the very beginning of the 'pattern' string
176 * pattern = "*.google.com"
178 static BOOL matches_domain_pattern(LPCWSTR pattern, LPCWSTR str, BOOL implicit_wildcard, LPCWSTR *matched)
180 BOOL matches = FALSE;
181 DWORD pattern_len = strlenW(pattern);
182 DWORD str_len = strlenW(str);
184 TRACE("(%d) Checking if %s matches %s\n", implicit_wildcard, debugstr_w(str), debugstr_w(pattern));
187 if(str_len >= pattern_len) {
188 /* Check if there's an explicit wildcard in the pattern. */
189 if(pattern[0] == '*' && pattern[1] == '.') {
190 /* Make sure that 'str' matches the wildcard pattern.
193 * pattern = "*.google.com"
195 * So in this case 'str' would have to end with ".google.com" in order
196 * to map to this pattern.
198 if(str_len >= pattern_len+1 && !strcmpiW(str+(str_len-pattern_len+1), pattern+1)) {
199 /* Check if there's another '.' inside of the "unmatched" portion
203 * pattern = "*.google.com"
204 * str = "test.testing.google.com"
206 * The currently matched portion is ".google.com" in 'str', we need
207 * see if there's a '.' inside of the unmatched portion ("test.testing"), because
208 * if there is and 'implicit_wildcard' isn't set, then this isn't
212 if(str_len > pattern_len+1 && (ptr = memrchrW(str, '.', str_len-pattern_len-2))) {
213 if(implicit_wildcard) {
222 } else if(implicit_wildcard && str_len > pattern_len) {
223 /* When the pattern has an implicit wildcard component, it means
224 * that anything goes in 'str' as long as it ends with the pattern
225 * and that the beginning of the match has a '.' before it.
228 * pattern = "google.com"
229 * str = "www.google.com"
231 * Implicitly matches the pattern, where as:
233 * pattern = "google.com"
234 * str = "wwwgoogle.com"
236 * Doesn't match the pattern.
238 if(str_len > pattern_len) {
239 if(str[str_len-pattern_len-1] == '.' && !strcmpiW(str+(str_len-pattern_len), pattern)) {
241 *matched = str+(str_len-pattern_len);
245 /* The pattern doesn't have an implicit wildcard, or an explicit wildcard,
246 * so 'str' has to be an exact match to the 'pattern'.
248 if(!strcmpiW(str, pattern)) {
256 TRACE("Found a match: matched=%s\n", debugstr_w(*matched));
258 TRACE("No match found\n");
263 static BOOL get_zone_for_scheme(HKEY key, LPCWSTR schema, DWORD *zone)
265 static const WCHAR wildcardW[] = {'*',0};
268 DWORD size = sizeof(DWORD);
271 /* See if the key contains a value for the scheme first. */
272 res = RegQueryValueExW(key, schema, NULL, &type, (BYTE*)zone, &size);
273 if(res == ERROR_SUCCESS) {
274 if(type == REG_DWORD)
276 WARN("Unexpected value type %d for value %s, expected REG_DWORD\n", type, debugstr_w(schema));
279 /* Try to get the zone for the wildcard scheme. */
280 size = sizeof(DWORD);
281 res = RegQueryValueExW(key, wildcardW, NULL, &type, (BYTE*)zone, &size);
282 if(res != ERROR_SUCCESS)
285 if(type != REG_DWORD) {
286 WARN("Unexpected value type %d for value %s, expected REG_DWORD\n", type, debugstr_w(wildcardW));
293 /********************************************************************
294 * search_domain_for_zone [internal]
296 * Searches the specified 'domain' registry key to see if 'host' maps into it, or any
297 * of it's subdomain registry keys.
299 * Returns S_OK if a match is found, S_FALSE if no matches were found, or an error code.
301 static HRESULT search_domain_for_zone(HKEY domains, LPCWSTR domain, DWORD domain_len, LPCWSTR schema,
302 LPCWSTR host, DWORD host_len, DWORD *zone)
309 if(host_len >= domain_len && matches_domain_pattern(domain, host, TRUE, &matched)) {
310 res = RegOpenKeyW(domains, domain, &domain_key);
311 if(res != ERROR_SUCCESS) {
312 ERR("Failed to open domain key %s: %d\n", debugstr_w(domain), res);
317 found = get_zone_for_scheme(domain_key, schema, zone);
320 DWORD subdomain_count, subdomain_len;
321 BOOL check_domain = TRUE;
323 find_domain_name(domain, domain_len, &domain_offset);
325 res = RegQueryInfoKeyW(domain_key, NULL, NULL, NULL, &subdomain_count, &subdomain_len,
326 NULL, NULL, NULL, NULL, NULL, NULL);
327 if(res != ERROR_SUCCESS) {
328 ERR("Unable to query info for key %s: %d\n", debugstr_w(domain), res);
329 RegCloseKey(domain_key);
333 if(subdomain_count) {
338 subdomain = heap_alloc((subdomain_len+1)*sizeof(WCHAR));
340 RegCloseKey(domain_key);
341 return E_OUTOFMEMORY;
344 component = heap_strndupW(host, matched-host-1);
346 heap_free(subdomain);
347 RegCloseKey(domain_key);
348 return E_OUTOFMEMORY;
351 for(i = 0; i < subdomain_count; ++i) {
352 DWORD len = subdomain_len+1;
353 const WCHAR *sub_matched;
355 res = RegEnumKeyExW(domain_key, i, subdomain, &len, NULL, NULL, NULL, NULL);
356 if(res != ERROR_SUCCESS) {
357 heap_free(component);
358 heap_free(subdomain);
359 RegCloseKey(domain_key);
363 if(matches_domain_pattern(subdomain, component, FALSE, &sub_matched)) {
366 res = RegOpenKeyW(domain_key, subdomain, &subdomain_key);
367 if(res != ERROR_SUCCESS) {
368 ERR("Unable to open subdomain key %s of %s: %d\n", debugstr_w(subdomain),
369 debugstr_w(domain), res);
370 heap_free(component);
371 heap_free(subdomain);
372 RegCloseKey(domain_key);
376 found = get_zone_for_scheme(subdomain_key, schema, zone);
377 check_domain = FALSE;
378 RegCloseKey(subdomain_key);
382 heap_free(subdomain);
383 heap_free(component);
386 /* There's a chance that 'host' implicitly mapped into 'domain', in
387 * which case we check to see if 'domain' contains zone information.
389 * This can only happen if 'domain' is it's own domain name.
391 * "google.com" (domain name = "google.com")
394 * host = "www.google.com"
396 * Then host would map directly into the "google.com" domain key.
398 * If 'domain' has more than just it's domain name, or it does not
399 * have a domain name, then we don't perform the check. The reason
400 * for this is that these domains don't allow implicit mappings.
402 * domain = "org" (has no domain name)
405 * The mapping would only happen if the "org" key had an explicit subkey
408 if(check_domain && !domain_offset && !strchrW(host, matched-host-1))
409 found = get_zone_for_scheme(domain_key, schema, zone);
411 RegCloseKey(domain_key);
414 return found ? S_OK : S_FALSE;
417 static HRESULT search_for_domain_mapping(HKEY domains, LPCWSTR schema, LPCWSTR host, DWORD host_len, DWORD *zone)
420 DWORD domain_count, domain_len, i;
422 HRESULT hres = S_FALSE;
424 res = RegQueryInfoKeyW(domains, NULL, NULL, NULL, &domain_count, &domain_len,
425 NULL, NULL, NULL, NULL, NULL, NULL);
426 if(res != ERROR_SUCCESS) {
427 WARN("Failed to retrieve information about key\n");
434 domain = heap_alloc((domain_len+1)*sizeof(WCHAR));
436 return E_OUTOFMEMORY;
438 for(i = 0; i < domain_count; ++i) {
439 DWORD len = domain_len+1;
441 res = RegEnumKeyExW(domains, i, domain, &len, NULL, NULL, NULL, NULL);
442 if(res != ERROR_SUCCESS) {
447 hres = search_domain_for_zone(domains, domain, len, schema, host, host_len, zone);
448 if(FAILED(hres) || hres == S_OK)
456 static HRESULT get_zone_from_domains(IUri *uri, DWORD *zone)
464 hres = IUri_GetScheme(uri, &scheme_type);
468 /* Windows doesn't play nice with unknown scheme types when it tries
469 * to check if a host name maps into any domains.
471 if(scheme_type == URL_SCHEME_UNKNOWN)
474 hres = IUri_GetHost(uri, &host);
478 /* Known hierarchical scheme types must have a host. If they don't Windows
479 * assigns URLZONE_INVALID to the zone.
481 if((scheme_type != URL_SCHEME_UNKNOWN && scheme_type != URL_SCHEME_FILE)
482 && is_hierarchical_scheme(scheme_type) && !*host) {
483 *zone = URLZONE_INVALID;
487 /* The MapUrlToZone functions return S_OK when this condition occurs. */
491 hres = IUri_GetSchemeName(uri, &scheme);
497 /* First try CURRENT_USER. */
498 res = RegOpenKeyW(HKEY_CURRENT_USER, wszZoneMapDomainsKey, &domains);
499 if(res == ERROR_SUCCESS) {
500 hres = search_for_domain_mapping(domains, scheme, host, SysStringLen(host), zone);
501 RegCloseKey(domains);
503 WARN("Failed to open HKCU's %s key\n", debugstr_w(wszZoneMapDomainsKey));
505 /* If that doesn't work try LOCAL_MACHINE. */
506 if(hres == S_FALSE) {
507 res = RegOpenKeyW(HKEY_LOCAL_MACHINE, wszZoneMapDomainsKey, &domains);
508 if(res == ERROR_SUCCESS) {
509 hres = search_for_domain_mapping(domains, scheme, host, SysStringLen(host), zone);
510 RegCloseKey(domains);
512 WARN("Failed to open HKLM's %s key\n", debugstr_w(wszZoneMapDomainsKey));
516 SysFreeString(scheme);
520 static HRESULT map_security_uri_to_zone(IUri *uri, DWORD *zone)
525 *zone = URLZONE_INVALID;
527 hres = IUri_GetSchemeName(uri, &scheme);
531 if(!strcmpiW(scheme, fileW)) {
533 WCHAR *ptr, *path_start, root[20];
535 hres = IUri_GetPath(uri, &path);
537 SysFreeString(scheme);
541 if(*path == '/' && is_drive_path(path+1))
546 if(((ptr = strchrW(path_start, '\\')) || (ptr = strchrW(path_start, '/'))) && ptr-path_start < sizeof(root)/sizeof(WCHAR)) {
549 memcpy(root, path_start, (ptr-path_start)*sizeof(WCHAR));
550 root[ptr-path_start] = 0;
552 type = GetDriveTypeW(root);
556 case DRIVE_NO_ROOT_DIR:
558 case DRIVE_REMOVABLE:
562 *zone = URLZONE_LOCAL_MACHINE;
566 *zone = URLZONE_INTERNET;
570 FIXME("unsupported drive type %d\n", type);
576 if(*zone == URLZONE_INVALID) {
577 hres = get_zone_from_domains(uri, zone);
579 hres = get_zone_from_reg(scheme, zone);
582 SysFreeString(scheme);
586 static HRESULT map_url_to_zone(LPCWSTR url, DWORD *zone, LPWSTR *ret_url)
592 *zone = URLZONE_INVALID;
594 hres = CoInternetGetSecurityUrl(url, &secur_url, PSU_SECURITY_URL_ONLY, 0);
596 DWORD size = strlenW(url)*sizeof(WCHAR);
598 secur_url = CoTaskMemAlloc(size);
600 return E_OUTOFMEMORY;
602 memcpy(secur_url, url, size);
605 hres = CreateUri(secur_url, 0, 0, &secur_uri);
607 CoTaskMemFree(secur_url);
611 hres = map_security_uri_to_zone(secur_uri, zone);
612 IUri_Release(secur_uri);
614 if(FAILED(hres) || !ret_url)
615 CoTaskMemFree(secur_url);
617 *ret_url = secur_url;
622 static HRESULT map_uri_to_zone(IUri *uri, DWORD *zone)
627 hres = CoInternetGetSecurityUrlEx(uri, &secur_uri, PSU_SECURITY_URL_ONLY, 0);
631 hres = map_security_uri_to_zone(secur_uri, zone);
632 IUri_Release(secur_uri);
637 static HRESULT open_zone_key(HKEY parent_key, DWORD zone, HKEY *hkey)
639 static const WCHAR wszFormat[] = {'%','s','%','u',0};
641 WCHAR key_name[sizeof(wszZonesKey)/sizeof(WCHAR)+12];
644 wsprintfW(key_name, wszFormat, wszZonesKey, zone);
646 res = RegOpenKeyW(parent_key, key_name, hkey);
648 if(res != ERROR_SUCCESS) {
649 WARN("RegOpenKey failed\n");
656 static HRESULT get_action_policy(DWORD zone, DWORD action, BYTE *policy, DWORD size, URLZONEREG zone_reg)
664 case URLACTION_SCRIPT_OVERRIDE_SAFETY:
665 case URLACTION_ACTIVEX_OVERRIDE_SCRIPT_SAFETY:
666 *(DWORD*)policy = URLPOLICY_DISALLOW;
671 case URLZONEREG_DEFAULT:
672 case URLZONEREG_HKCU:
673 parent_key = HKEY_CURRENT_USER;
675 case URLZONEREG_HKLM:
676 parent_key = HKEY_LOCAL_MACHINE;
679 WARN("Unknown URLZONEREG: %d\n", zone_reg);
683 hres = open_zone_key(parent_key, zone, &hkey);
684 if(SUCCEEDED(hres)) {
685 WCHAR action_str[16];
688 static const WCHAR formatW[] = {'%','X',0};
690 wsprintfW(action_str, formatW, action);
692 res = RegQueryValueExW(hkey, action_str, NULL, NULL, policy, &len);
693 if(res == ERROR_MORE_DATA) {
695 }else if(res == ERROR_FILE_NOT_FOUND) {
697 }else if(res != ERROR_SUCCESS) {
698 ERR("RegQueryValue failed: %d\n", res);
705 if(FAILED(hres) && zone_reg == URLZONEREG_DEFAULT)
706 return get_action_policy(zone, action, policy, size, URLZONEREG_HKLM);
711 static HRESULT get_security_id(LPCWSTR url, BYTE *secid, DWORD *secid_len)
713 LPWSTR secur_url, ptr, ptr2;
717 static const WCHAR wszFile[] = {'f','i','l','e',':'};
719 hres = map_url_to_zone(url, &zone, &secur_url);
720 if(zone == URLZONE_INVALID)
721 return (hres == 0x80041001 || hres == S_OK) ? E_INVALIDARG : hres;
723 /* file protocol is a special case */
724 if(strlenW(secur_url) >= sizeof(wszFile)/sizeof(WCHAR)
725 && !memcmp(secur_url, wszFile, sizeof(wszFile))) {
726 WCHAR path[MAX_PATH];
727 len = sizeof(path)/sizeof(WCHAR);
729 hres = CoInternetParseUrl(secur_url, PARSE_PATH_FROM_URL, 0, path, len, &len, 0);
730 if(hres == S_OK && !PathIsNetworkPathW(path)) {
731 static const BYTE secidFile[] = {'f','i','l','e',':'};
733 CoTaskMemFree(secur_url);
735 if(*secid_len < sizeof(secidFile)+sizeof(zone))
736 return HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER);
738 memcpy(secid, secidFile, sizeof(secidFile));
739 *(DWORD*)(secid+sizeof(secidFile)) = zone;
741 *secid_len = sizeof(secidFile)+sizeof(zone);
746 ptr = strchrW(secur_url, ':');
751 memmove(ptr, ptr2, (strlenW(ptr2)+1)*sizeof(WCHAR));
753 ptr = strchrW(ptr, '/');
757 len = WideCharToMultiByte(CP_ACP, 0, secur_url, -1, NULL, 0, NULL, NULL)-1;
759 if(len+sizeof(DWORD) > *secid_len) {
760 CoTaskMemFree(secur_url);
761 return HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER);
764 WideCharToMultiByte(CP_ACP, 0, secur_url, -1, (LPSTR)secid, len, NULL, NULL);
765 CoTaskMemFree(secur_url);
767 *(DWORD*)(secid+len) = zone;
769 *secid_len = len+sizeof(DWORD);
774 /***********************************************************************
775 * InternetSecurityManager implementation
779 IInternetSecurityManagerEx2 IInternetSecurityManagerEx2_iface;
783 IInternetSecurityMgrSite *mgrsite;
784 IInternetSecurityManager *custom_manager;
787 static inline SecManagerImpl *impl_from_IInternetSecurityManagerEx2(IInternetSecurityManagerEx2 *iface)
789 return CONTAINING_RECORD(iface, SecManagerImpl, IInternetSecurityManagerEx2_iface);
792 static HRESULT WINAPI SecManagerImpl_QueryInterface(IInternetSecurityManagerEx2* iface,REFIID riid,void** ppvObject)
794 SecManagerImpl *This = impl_from_IInternetSecurityManagerEx2(iface);
796 TRACE("(%p)->(%s,%p)\n",This,debugstr_guid(riid),ppvObject);
798 /* Perform a sanity check on the parameters.*/
799 if ( (This==0) || (ppvObject==0) )
802 /* Initialize the return parameter */
805 /* Compare the riid with the interface IDs implemented by this object.*/
806 if (IsEqualIID(&IID_IUnknown, riid) ||
807 IsEqualIID(&IID_IInternetSecurityManager, riid) ||
808 IsEqualIID(&IID_IInternetSecurityManagerEx, riid) ||
809 IsEqualIID(&IID_IInternetSecurityManagerEx2, riid))
812 /* Check that we obtained an interface.*/
814 WARN("not supported interface %s\n", debugstr_guid(riid));
815 return E_NOINTERFACE;
818 /* Query Interface always increases the reference count by one when it is successful */
819 IInternetSecurityManager_AddRef(iface);
824 static ULONG WINAPI SecManagerImpl_AddRef(IInternetSecurityManagerEx2* iface)
826 SecManagerImpl *This = impl_from_IInternetSecurityManagerEx2(iface);
827 ULONG refCount = InterlockedIncrement(&This->ref);
829 TRACE("(%p) ref=%u\n", This, refCount);
834 static ULONG WINAPI SecManagerImpl_Release(IInternetSecurityManagerEx2* iface)
836 SecManagerImpl *This = impl_from_IInternetSecurityManagerEx2(iface);
837 ULONG refCount = InterlockedDecrement(&This->ref);
839 TRACE("(%p) ref=%u\n", This, refCount);
841 /* destroy the object if there's no more reference on it */
844 IInternetSecurityMgrSite_Release(This->mgrsite);
845 if(This->custom_manager)
846 IInternetSecurityManager_Release(This->custom_manager);
850 URLMON_UnlockModule();
856 static HRESULT WINAPI SecManagerImpl_SetSecuritySite(IInternetSecurityManagerEx2 *iface,
857 IInternetSecurityMgrSite *pSite)
859 SecManagerImpl *This = impl_from_IInternetSecurityManagerEx2(iface);
861 TRACE("(%p)->(%p)\n", This, pSite);
864 IInternetSecurityMgrSite_Release(This->mgrsite);
866 if(This->custom_manager) {
867 IInternetSecurityManager_Release(This->custom_manager);
868 This->custom_manager = NULL;
871 This->mgrsite = pSite;
874 IServiceProvider *servprov;
877 IInternetSecurityMgrSite_AddRef(pSite);
879 hres = IInternetSecurityMgrSite_QueryInterface(pSite, &IID_IServiceProvider,
881 if(SUCCEEDED(hres)) {
882 IServiceProvider_QueryService(servprov, &SID_SInternetSecurityManager,
883 &IID_IInternetSecurityManager, (void**)&This->custom_manager);
884 IServiceProvider_Release(servprov);
891 static HRESULT WINAPI SecManagerImpl_GetSecuritySite(IInternetSecurityManagerEx2 *iface,
892 IInternetSecurityMgrSite **ppSite)
894 SecManagerImpl *This = impl_from_IInternetSecurityManagerEx2(iface);
896 TRACE("(%p)->(%p)\n", This, ppSite);
902 IInternetSecurityMgrSite_AddRef(This->mgrsite);
904 *ppSite = This->mgrsite;
908 static HRESULT WINAPI SecManagerImpl_MapUrlToZone(IInternetSecurityManagerEx2 *iface,
909 LPCWSTR pwszUrl, DWORD *pdwZone,
912 SecManagerImpl *This = impl_from_IInternetSecurityManagerEx2(iface);
915 TRACE("(%p)->(%s %p %08x)\n", iface, debugstr_w(pwszUrl), pdwZone, dwFlags);
917 if(This->custom_manager) {
918 hres = IInternetSecurityManager_MapUrlToZone(This->custom_manager,
919 pwszUrl, pdwZone, dwFlags);
920 if(hres != INET_E_DEFAULT_ACTION)
925 *pdwZone = URLZONE_INVALID;
930 FIXME("not supported flags: %08x\n", dwFlags);
932 return map_url_to_zone(pwszUrl, pdwZone, NULL);
935 static HRESULT WINAPI SecManagerImpl_GetSecurityId(IInternetSecurityManagerEx2 *iface,
936 LPCWSTR pwszUrl, BYTE *pbSecurityId, DWORD *pcbSecurityId, DWORD_PTR dwReserved)
938 SecManagerImpl *This = impl_from_IInternetSecurityManagerEx2(iface);
940 TRACE("(%p)->(%s %p %p %08lx)\n", iface, debugstr_w(pwszUrl), pbSecurityId,
941 pcbSecurityId, dwReserved);
943 if(This->custom_manager) {
946 hres = IInternetSecurityManager_GetSecurityId(This->custom_manager,
947 pwszUrl, pbSecurityId, pcbSecurityId, dwReserved);
948 if(hres != INET_E_DEFAULT_ACTION)
952 if(!pwszUrl || !pbSecurityId || !pcbSecurityId)
956 FIXME("dwReserved is not supported\n");
958 return get_security_id(pwszUrl, pbSecurityId, pcbSecurityId);
962 static HRESULT WINAPI SecManagerImpl_ProcessUrlAction(IInternetSecurityManagerEx2 *iface,
963 LPCWSTR pwszUrl, DWORD dwAction,
964 BYTE *pPolicy, DWORD cbPolicy,
965 BYTE *pContext, DWORD cbContext,
966 DWORD dwFlags, DWORD dwReserved)
968 SecManagerImpl *This = impl_from_IInternetSecurityManagerEx2(iface);
972 TRACE("(%p)->(%s %08x %p %08x %p %08x %08x %08x)\n", iface, debugstr_w(pwszUrl), dwAction,
973 pPolicy, cbPolicy, pContext, cbContext, dwFlags, dwReserved);
975 if(This->custom_manager) {
976 hres = IInternetSecurityManager_ProcessUrlAction(This->custom_manager, pwszUrl, dwAction,
977 pPolicy, cbPolicy, pContext, cbContext, dwFlags, dwReserved);
978 if(hres != INET_E_DEFAULT_ACTION)
982 if(dwFlags || dwReserved)
983 FIXME("Unsupported arguments\n");
988 hres = map_url_to_zone(pwszUrl, &zone, NULL);
992 hres = get_action_policy(zone, dwAction, (BYTE*)&policy, sizeof(policy), URLZONEREG_DEFAULT);
996 TRACE("policy %x\n", policy);
997 if(cbPolicy >= sizeof(DWORD))
998 *(DWORD*)pPolicy = policy;
1000 switch(GetUrlPolicyPermissions(policy)) {
1001 case URLPOLICY_ALLOW:
1002 case URLPOLICY_CHANNEL_SOFTDIST_PRECACHE:
1004 case URLPOLICY_DISALLOW:
1006 case URLPOLICY_QUERY:
1007 FIXME("URLPOLICY_QUERY not implemented\n");
1010 FIXME("Not implemented policy %x\n", policy);
1017 static HRESULT WINAPI SecManagerImpl_QueryCustomPolicy(IInternetSecurityManagerEx2 *iface,
1018 LPCWSTR pwszUrl, REFGUID guidKey,
1019 BYTE **ppPolicy, DWORD *pcbPolicy,
1020 BYTE *pContext, DWORD cbContext,
1023 SecManagerImpl *This = impl_from_IInternetSecurityManagerEx2(iface);
1026 TRACE("(%p)->(%s %s %p %p %p %08x %08x )\n", iface, debugstr_w(pwszUrl), debugstr_guid(guidKey),
1027 ppPolicy, pcbPolicy, pContext, cbContext, dwReserved);
1029 if(This->custom_manager) {
1030 hres = IInternetSecurityManager_QueryCustomPolicy(This->custom_manager, pwszUrl, guidKey,
1031 ppPolicy, pcbPolicy, pContext, cbContext, dwReserved);
1032 if(hres != INET_E_DEFAULT_ACTION)
1036 WARN("Unknown guidKey %s\n", debugstr_guid(guidKey));
1037 return HRESULT_FROM_WIN32(ERROR_NOT_FOUND);
1040 static HRESULT WINAPI SecManagerImpl_SetZoneMapping(IInternetSecurityManagerEx2 *iface,
1041 DWORD dwZone, LPCWSTR pwszPattern, DWORD dwFlags)
1043 SecManagerImpl *This = impl_from_IInternetSecurityManagerEx2(iface);
1046 TRACE("(%p)->(%08x %s %08x)\n", iface, dwZone, debugstr_w(pwszPattern),dwFlags);
1048 if(This->custom_manager) {
1049 hres = IInternetSecurityManager_SetZoneMapping(This->custom_manager, dwZone,
1050 pwszPattern, dwFlags);
1051 if(hres != INET_E_DEFAULT_ACTION)
1055 FIXME("Default action is not implemented\n");
1059 static HRESULT WINAPI SecManagerImpl_GetZoneMappings(IInternetSecurityManagerEx2 *iface,
1060 DWORD dwZone, IEnumString **ppenumString, DWORD dwFlags)
1062 SecManagerImpl *This = impl_from_IInternetSecurityManagerEx2(iface);
1065 TRACE("(%p)->(%08x %p %08x)\n", iface, dwZone, ppenumString,dwFlags);
1067 if(This->custom_manager) {
1068 hres = IInternetSecurityManager_GetZoneMappings(This->custom_manager, dwZone,
1069 ppenumString, dwFlags);
1070 if(hres != INET_E_DEFAULT_ACTION)
1074 FIXME("Default action is not implemented\n");
1078 static HRESULT WINAPI SecManagerImpl_ProcessUrlActionEx(IInternetSecurityManagerEx2 *iface,
1079 LPCWSTR pwszUrl, DWORD dwAction, BYTE *pPolicy, DWORD cbPolicy, BYTE *pContext, DWORD cbContext,
1080 DWORD dwFlags, DWORD dwReserved, DWORD *pdwOutFlags)
1082 SecManagerImpl *This = impl_from_IInternetSecurityManagerEx2(iface);
1083 FIXME("(%p)->(%s %08x %p %d %p %d %08x %08x %p) stub\n", This, debugstr_w(pwszUrl), dwAction, pPolicy, cbPolicy,
1084 pContext, cbContext, dwFlags, dwReserved, pdwOutFlags);
1088 static HRESULT WINAPI SecManagerImpl_MapUrlToZoneEx2(IInternetSecurityManagerEx2 *iface,
1089 IUri *pUri, DWORD *pdwZone, DWORD dwFlags, LPWSTR *ppwszMappedUrl, DWORD *pdwOutFlags)
1091 SecManagerImpl *This = impl_from_IInternetSecurityManagerEx2(iface);
1093 TRACE("(%p)->(%p %p %08x %p %p)\n", This, pUri, pdwZone, dwFlags, ppwszMappedUrl, pdwOutFlags);
1095 if(This->custom_manager) {
1097 IInternetSecurityManagerEx2 *sec_mgr2;
1099 hres = IInternetSecurityManager_QueryInterface(This->custom_manager, &IID_IInternetSecurityManagerEx2,
1101 if(SUCCEEDED(hres)) {
1102 hres = IInternetSecurityManagerEx2_MapUrlToZoneEx2(sec_mgr2, pUri, pdwZone, dwFlags, ppwszMappedUrl, pdwOutFlags);
1103 IInternetSecurityManagerEx2_Release(sec_mgr2);
1107 hres = IUri_GetDisplayUri(pUri, &url);
1111 hres = IInternetSecurityManager_MapUrlToZone(This->custom_manager, url, pdwZone, dwFlags);
1115 if(hres != INET_E_DEFAULT_ACTION)
1120 return E_INVALIDARG;
1123 *pdwZone = URLZONE_INVALID;
1124 return E_INVALIDARG;
1128 FIXME("Unsupported flags: %08x\n", dwFlags);
1130 return map_uri_to_zone(pUri, pdwZone);
1133 static HRESULT WINAPI SecManagerImpl_ProcessUrlActionEx2(IInternetSecurityManagerEx2 *iface,
1134 IUri *pUri, DWORD dwAction, BYTE *pPolicy, DWORD cbPolicy, BYTE *pContext, DWORD cbContext,
1135 DWORD dwFlags, DWORD_PTR dwReserved, DWORD *pdwOutFlags)
1137 SecManagerImpl *This = impl_from_IInternetSecurityManagerEx2(iface);
1138 FIXME("(%p)->(%p %08x %p %d %p %d %08x %08x %p) stub\n", This, pUri, dwAction, pPolicy,
1139 cbPolicy, pContext, cbContext, dwFlags, (DWORD)dwReserved, pdwOutFlags);
1143 static HRESULT WINAPI SecManagerImpl_GetSecurityIdEx2(IInternetSecurityManagerEx2 *iface,
1144 IUri *pUri, BYTE *pbSecurityId, DWORD *pcbSecurityId, DWORD_PTR dwReserved)
1146 SecManagerImpl *This = impl_from_IInternetSecurityManagerEx2(iface);
1147 FIXME("(%p)->(%p %p %p %08x) stub\n", This, pUri, pbSecurityId, pcbSecurityId, (DWORD)dwReserved);
1151 static HRESULT WINAPI SecManagerImpl_QueryCustomPolicyEx2(IInternetSecurityManagerEx2 *iface,
1152 IUri *pUri, REFGUID guidKey, BYTE **ppPolicy, DWORD *pcbPolicy, BYTE *pContext,
1153 DWORD cbContext, DWORD_PTR dwReserved)
1155 SecManagerImpl *This = impl_from_IInternetSecurityManagerEx2(iface);
1156 FIXME("(%p)->(%p %s %p %p %p %d %08x) stub\n", This, pUri, debugstr_guid(guidKey), ppPolicy, pcbPolicy,
1157 pContext, cbContext, (DWORD)dwReserved);
1161 static const IInternetSecurityManagerEx2Vtbl VT_SecManagerImpl =
1163 SecManagerImpl_QueryInterface,
1164 SecManagerImpl_AddRef,
1165 SecManagerImpl_Release,
1166 SecManagerImpl_SetSecuritySite,
1167 SecManagerImpl_GetSecuritySite,
1168 SecManagerImpl_MapUrlToZone,
1169 SecManagerImpl_GetSecurityId,
1170 SecManagerImpl_ProcessUrlAction,
1171 SecManagerImpl_QueryCustomPolicy,
1172 SecManagerImpl_SetZoneMapping,
1173 SecManagerImpl_GetZoneMappings,
1174 SecManagerImpl_ProcessUrlActionEx,
1175 SecManagerImpl_MapUrlToZoneEx2,
1176 SecManagerImpl_ProcessUrlActionEx2,
1177 SecManagerImpl_GetSecurityIdEx2,
1178 SecManagerImpl_QueryCustomPolicyEx2
1181 HRESULT SecManagerImpl_Construct(IUnknown *pUnkOuter, LPVOID *ppobj)
1183 SecManagerImpl *This;
1185 TRACE("(%p,%p)\n",pUnkOuter,ppobj);
1186 This = heap_alloc(sizeof(*This));
1188 /* Initialize the virtual function table. */
1189 This->IInternetSecurityManagerEx2_iface.lpVtbl = &VT_SecManagerImpl;
1192 This->mgrsite = NULL;
1193 This->custom_manager = NULL;
1197 URLMON_LockModule();
1202 /***********************************************************************
1203 * InternetZoneManager implementation
1207 IInternetZoneManagerEx2 IInternetZoneManagerEx2_iface;
1210 DWORD zonemap_count;
1213 static inline ZoneMgrImpl *impl_from_IInternetZoneManagerEx2(IInternetZoneManagerEx2 *iface)
1215 return CONTAINING_RECORD(iface, ZoneMgrImpl, IInternetZoneManagerEx2_iface);
1219 /***********************************************************************
1220 * build_zonemap_from_reg [internal]
1222 * Enumerate the Zones in the Registry and return the Zones in a DWORD-array
1223 * The number of the Zones is returned in data[0]
1225 static LPDWORD build_zonemap_from_reg(void)
1229 LPDWORD data = NULL;
1230 DWORD allocated = 6; /* space for the zonecount and Zone "0" up to Zone "4" */
1236 res = RegOpenKeyW(HKEY_CURRENT_USER, wszZonesKey, &hkey);
1240 data = heap_alloc(allocated * sizeof(DWORD));
1246 len = sizeof(name) / sizeof(name[0]);
1247 res = RegEnumKeyExW(hkey, used, name, &len, NULL, NULL, NULL, NULL);
1251 if (used == allocated) {
1255 new_data = heap_realloc_zero(data, allocated * sizeof(DWORD));
1261 data[used] = atoiW(name);
1271 /* something failed */
1277 /********************************************************************
1278 * IInternetZoneManager_QueryInterface
1280 static HRESULT WINAPI ZoneMgrImpl_QueryInterface(IInternetZoneManagerEx2* iface, REFIID riid, void** ppvObject)
1282 ZoneMgrImpl* This = impl_from_IInternetZoneManagerEx2(iface);
1284 TRACE("(%p)->(%s,%p)\n", This, debugstr_guid(riid), ppvObject);
1286 if(!This || !ppvObject)
1287 return E_INVALIDARG;
1289 if(IsEqualIID(&IID_IUnknown, riid)) {
1290 TRACE("(%p)->(IID_IUnknown %p)\n", This, ppvObject);
1291 }else if(IsEqualIID(&IID_IInternetZoneManager, riid)) {
1292 TRACE("(%p)->(IID_InternetZoneManager %p)\n", This, ppvObject);
1293 }else if(IsEqualIID(&IID_IInternetZoneManagerEx, riid)) {
1294 TRACE("(%p)->(IID_InternetZoneManagerEx %p)\n", This, ppvObject);
1295 }else if(IsEqualIID(&IID_IInternetZoneManagerEx2, riid)) {
1296 TRACE("(%p)->(IID_InternetZoneManagerEx2 %p)\n", This, ppvObject);
1300 FIXME("Unknown interface: %s\n", debugstr_guid(riid));
1302 return E_NOINTERFACE;
1306 IInternetZoneManager_AddRef(iface);
1310 /********************************************************************
1311 * IInternetZoneManager_AddRef
1313 static ULONG WINAPI ZoneMgrImpl_AddRef(IInternetZoneManagerEx2* iface)
1315 ZoneMgrImpl* This = impl_from_IInternetZoneManagerEx2(iface);
1316 ULONG refCount = InterlockedIncrement(&This->ref);
1318 TRACE("(%p)->(ref before=%u)\n",This, refCount - 1);
1323 /********************************************************************
1324 * IInternetZoneManager_Release
1326 static ULONG WINAPI ZoneMgrImpl_Release(IInternetZoneManagerEx2* iface)
1328 ZoneMgrImpl* This = impl_from_IInternetZoneManagerEx2(iface);
1329 ULONG refCount = InterlockedDecrement(&This->ref);
1331 TRACE("(%p)->(ref before=%u)\n",This, refCount + 1);
1334 while (This->zonemap_count) heap_free(This->zonemaps[--This->zonemap_count]);
1335 heap_free(This->zonemaps);
1337 URLMON_UnlockModule();
1343 /********************************************************************
1344 * IInternetZoneManager_GetZoneAttributes
1346 static HRESULT WINAPI ZoneMgrImpl_GetZoneAttributes(IInternetZoneManagerEx2* iface,
1348 ZONEATTRIBUTES* pZoneAttributes)
1350 ZoneMgrImpl* This = impl_from_IInternetZoneManagerEx2(iface);
1355 TRACE("(%p)->(%d %p)\n", This, dwZone, pZoneAttributes);
1357 if (!pZoneAttributes)
1358 return E_INVALIDARG;
1360 hr = open_zone_key(HKEY_CURRENT_USER, dwZone, &hcu);
1362 return S_OK; /* IE6 and older returned E_FAIL here */
1364 hr = open_zone_key(HKEY_LOCAL_MACHINE, dwZone, &hklm);
1366 TRACE("Zone %d not in HKLM\n", dwZone);
1368 get_string_from_reg(hcu, hklm, displaynameW, pZoneAttributes->szDisplayName, MAX_ZONE_PATH);
1369 get_string_from_reg(hcu, hklm, descriptionW, pZoneAttributes->szDescription, MAX_ZONE_DESCRIPTION);
1370 get_string_from_reg(hcu, hklm, iconW, pZoneAttributes->szIconPath, MAX_ZONE_PATH);
1371 get_dword_from_reg(hcu, hklm, minlevelW, &pZoneAttributes->dwTemplateMinLevel);
1372 get_dword_from_reg(hcu, hklm, currentlevelW, &pZoneAttributes->dwTemplateCurrentLevel);
1373 get_dword_from_reg(hcu, hklm, recommendedlevelW, &pZoneAttributes->dwTemplateRecommended);
1374 get_dword_from_reg(hcu, hklm, flagsW, &pZoneAttributes->dwFlags);
1381 /********************************************************************
1382 * IInternetZoneManager_SetZoneAttributes
1384 static HRESULT WINAPI ZoneMgrImpl_SetZoneAttributes(IInternetZoneManagerEx2* iface,
1386 ZONEATTRIBUTES* pZoneAttributes)
1388 ZoneMgrImpl* This = impl_from_IInternetZoneManagerEx2(iface);
1392 TRACE("(%p)->(%d %p)\n", This, dwZone, pZoneAttributes);
1394 if (!pZoneAttributes)
1395 return E_INVALIDARG;
1397 hr = open_zone_key(HKEY_CURRENT_USER, dwZone, &hcu);
1399 return S_OK; /* IE6 returned E_FAIL here */
1401 /* cbSize is ignored */
1402 RegSetValueExW(hcu, displaynameW, 0, REG_SZ, (LPBYTE) pZoneAttributes->szDisplayName,
1403 (lstrlenW(pZoneAttributes->szDisplayName)+1)* sizeof(WCHAR));
1405 RegSetValueExW(hcu, descriptionW, 0, REG_SZ, (LPBYTE) pZoneAttributes->szDescription,
1406 (lstrlenW(pZoneAttributes->szDescription)+1)* sizeof(WCHAR));
1408 RegSetValueExW(hcu, iconW, 0, REG_SZ, (LPBYTE) pZoneAttributes->szIconPath,
1409 (lstrlenW(pZoneAttributes->szIconPath)+1)* sizeof(WCHAR));
1411 RegSetValueExW(hcu, minlevelW, 0, REG_DWORD,
1412 (const BYTE*) &pZoneAttributes->dwTemplateMinLevel, sizeof(DWORD));
1414 RegSetValueExW(hcu, currentlevelW, 0, REG_DWORD,
1415 (const BYTE*) &pZoneAttributes->dwTemplateCurrentLevel, sizeof(DWORD));
1417 RegSetValueExW(hcu, recommendedlevelW, 0, REG_DWORD,
1418 (const BYTE*) &pZoneAttributes->dwTemplateRecommended, sizeof(DWORD));
1420 RegSetValueExW(hcu, flagsW, 0, REG_DWORD, (const BYTE*) &pZoneAttributes->dwFlags, sizeof(DWORD));
1426 /********************************************************************
1427 * IInternetZoneManager_GetZoneCustomPolicy
1429 static HRESULT WINAPI ZoneMgrImpl_GetZoneCustomPolicy(IInternetZoneManagerEx2* iface,
1434 URLZONEREG ulrZoneReg)
1436 FIXME("(%p)->(%08x %s %p %p %08x) stub\n", iface, dwZone, debugstr_guid(guidKey),
1437 ppPolicy, pcbPolicy, ulrZoneReg);
1441 /********************************************************************
1442 * IInternetZoneManager_SetZoneCustomPolicy
1444 static HRESULT WINAPI ZoneMgrImpl_SetZoneCustomPolicy(IInternetZoneManagerEx2* iface,
1449 URLZONEREG ulrZoneReg)
1451 FIXME("(%p)->(%08x %s %p %08x %08x) stub\n", iface, dwZone, debugstr_guid(guidKey),
1452 ppPolicy, cbPolicy, ulrZoneReg);
1456 /********************************************************************
1457 * IInternetZoneManager_GetZoneActionPolicy
1459 static HRESULT WINAPI ZoneMgrImpl_GetZoneActionPolicy(IInternetZoneManagerEx2* iface,
1460 DWORD dwZone, DWORD dwAction, BYTE* pPolicy, DWORD cbPolicy, URLZONEREG urlZoneReg)
1462 TRACE("(%p)->(%d %08x %p %d %d)\n", iface, dwZone, dwAction, pPolicy,
1463 cbPolicy, urlZoneReg);
1466 return E_INVALIDARG;
1468 return get_action_policy(dwZone, dwAction, pPolicy, cbPolicy, urlZoneReg);
1471 /********************************************************************
1472 * IInternetZoneManager_SetZoneActionPolicy
1474 static HRESULT WINAPI ZoneMgrImpl_SetZoneActionPolicy(IInternetZoneManagerEx2* iface,
1479 URLZONEREG urlZoneReg)
1481 FIXME("(%p)->(%08x %08x %p %08x %08x) stub\n", iface, dwZone, dwAction, pPolicy,
1482 cbPolicy, urlZoneReg);
1486 /********************************************************************
1487 * IInternetZoneManager_PromptAction
1489 static HRESULT WINAPI ZoneMgrImpl_PromptAction(IInternetZoneManagerEx2* iface,
1494 DWORD dwPromptFlags)
1496 FIXME("%p %08x %p %s %s %08x\n", iface, dwAction, hwndParent,
1497 debugstr_w(pwszUrl), debugstr_w(pwszText), dwPromptFlags );
1501 /********************************************************************
1502 * IInternetZoneManager_LogAction
1504 static HRESULT WINAPI ZoneMgrImpl_LogAction(IInternetZoneManagerEx2* iface,
1510 FIXME("(%p)->(%08x %s %s %08x) stub\n", iface, dwAction, debugstr_w(pwszUrl),
1511 debugstr_w(pwszText), dwLogFlags);
1515 /********************************************************************
1516 * IInternetZoneManager_CreateZoneEnumerator
1518 static HRESULT WINAPI ZoneMgrImpl_CreateZoneEnumerator(IInternetZoneManagerEx2* iface,
1523 ZoneMgrImpl* This = impl_from_IInternetZoneManagerEx2(iface);
1528 TRACE("(%p)->(%p, %p, 0x%08x)\n", This, pdwEnum, pdwCount, dwFlags);
1529 if (!pdwEnum || !pdwCount || (dwFlags != 0))
1530 return E_INVALIDARG;
1532 data = build_zonemap_from_reg();
1533 TRACE("found %d zones\n", data ? data[0] : -1);
1538 for (i = 0; i < This->zonemap_count; i++) {
1539 if (This->zonemaps && !This->zonemaps[i]) {
1540 This->zonemaps[i] = data;
1542 *pdwCount = data[0];
1547 if (This->zonemaps) {
1548 /* try to double the nr. of pointers in the array */
1549 new_maps = heap_realloc_zero(This->zonemaps, This->zonemap_count * 2 * sizeof(LPDWORD));
1551 This->zonemap_count *= 2;
1555 This->zonemap_count = 2;
1556 new_maps = heap_alloc_zero(This->zonemap_count * sizeof(LPDWORD));
1563 This->zonemaps = new_maps;
1564 This->zonemaps[i] = data;
1566 *pdwCount = data[0];
1570 /********************************************************************
1571 * IInternetZoneManager_GetZoneAt
1573 static HRESULT WINAPI ZoneMgrImpl_GetZoneAt(IInternetZoneManagerEx2* iface,
1578 ZoneMgrImpl* This = impl_from_IInternetZoneManagerEx2(iface);
1581 TRACE("(%p)->(0x%08x, %d, %p)\n", This, dwEnum, dwIndex, pdwZone);
1583 /* make sure, that dwEnum and dwIndex are in the valid range */
1584 if (dwEnum < This->zonemap_count) {
1585 if ((data = This->zonemaps[dwEnum])) {
1586 if (dwIndex < data[0]) {
1587 *pdwZone = data[dwIndex + 1];
1592 return E_INVALIDARG;
1595 /********************************************************************
1596 * IInternetZoneManager_DestroyZoneEnumerator
1598 static HRESULT WINAPI ZoneMgrImpl_DestroyZoneEnumerator(IInternetZoneManagerEx2* iface,
1601 ZoneMgrImpl* This = impl_from_IInternetZoneManagerEx2(iface);
1604 TRACE("(%p)->(0x%08x)\n", This, dwEnum);
1605 /* make sure, that dwEnum is valid */
1606 if (dwEnum < This->zonemap_count) {
1607 if ((data = This->zonemaps[dwEnum])) {
1608 This->zonemaps[dwEnum] = NULL;
1613 return E_INVALIDARG;
1616 /********************************************************************
1617 * IInternetZoneManager_CopyTemplatePoliciesToZone
1619 static HRESULT WINAPI ZoneMgrImpl_CopyTemplatePoliciesToZone(IInternetZoneManagerEx2* iface,
1624 FIXME("(%p)->(%08x %08x %08x) stub\n", iface, dwTemplate, dwZone, dwReserved);
1628 /********************************************************************
1629 * IInternetZoneManagerEx_GetZoneActionPolicyEx
1631 static HRESULT WINAPI ZoneMgrImpl_GetZoneActionPolicyEx(IInternetZoneManagerEx2* iface,
1636 URLZONEREG urlZoneReg,
1639 TRACE("(%p)->(%d, 0x%x, %p, %d, %d, 0x%x)\n", iface, dwZone,
1640 dwAction, pPolicy, cbPolicy, urlZoneReg, dwFlags);
1643 return E_INVALIDARG;
1646 FIXME("dwFlags 0x%x ignored\n", dwFlags);
1648 return get_action_policy(dwZone, dwAction, pPolicy, cbPolicy, urlZoneReg);
1651 /********************************************************************
1652 * IInternetZoneManagerEx_SetZoneActionPolicyEx
1654 static HRESULT WINAPI ZoneMgrImpl_SetZoneActionPolicyEx(IInternetZoneManagerEx2* iface,
1659 URLZONEREG urlZoneReg,
1662 FIXME("(%p)->(%d, 0x%x, %p, %d, %d, 0x%x) stub\n", iface, dwZone, dwAction, pPolicy,
1663 cbPolicy, urlZoneReg, dwFlags);
1667 /********************************************************************
1668 * IInternetZoneManagerEx2_GetZoneAttributesEx
1670 static HRESULT WINAPI ZoneMgrImpl_GetZoneAttributesEx(IInternetZoneManagerEx2* iface,
1672 ZONEATTRIBUTES* pZoneAttributes,
1675 TRACE("(%p)->(%d, %p, 0x%x)\n", iface, dwZone, pZoneAttributes, dwFlags);
1678 FIXME("dwFlags 0x%x ignored\n", dwFlags);
1680 return IInternetZoneManager_GetZoneAttributes(iface, dwZone, pZoneAttributes);
1684 /********************************************************************
1685 * IInternetZoneManagerEx2_GetZoneSecurityState
1687 static HRESULT WINAPI ZoneMgrImpl_GetZoneSecurityState(IInternetZoneManagerEx2* iface,
1689 BOOL fRespectPolicy,
1691 BOOL *pfPolicyEncountered)
1693 FIXME("(%p)->(%d, %d, %p, %p) stub\n", iface, dwZoneIndex, fRespectPolicy,
1694 pdwState, pfPolicyEncountered);
1696 *pdwState = SECURITY_IE_STATE_GREEN;
1698 if (pfPolicyEncountered)
1699 *pfPolicyEncountered = FALSE;
1704 /********************************************************************
1705 * IInternetZoneManagerEx2_GetIESecurityState
1707 static HRESULT WINAPI ZoneMgrImpl_GetIESecurityState(IInternetZoneManagerEx2* iface,
1708 BOOL fRespectPolicy,
1710 BOOL *pfPolicyEncountered,
1713 FIXME("(%p)->(%d, %p, %p, %d) stub\n", iface, fRespectPolicy, pdwState,
1714 pfPolicyEncountered, fNoCache);
1716 *pdwState = SECURITY_IE_STATE_GREEN;
1718 if (pfPolicyEncountered)
1719 *pfPolicyEncountered = FALSE;
1724 /********************************************************************
1725 * IInternetZoneManagerEx2_FixInsecureSettings
1727 static HRESULT WINAPI ZoneMgrImpl_FixInsecureSettings(IInternetZoneManagerEx2* iface)
1729 FIXME("(%p) stub\n", iface);
1733 /********************************************************************
1734 * IInternetZoneManager_Construct
1736 static const IInternetZoneManagerEx2Vtbl ZoneMgrImplVtbl = {
1737 ZoneMgrImpl_QueryInterface,
1739 ZoneMgrImpl_Release,
1740 /* IInternetZoneManager */
1741 ZoneMgrImpl_GetZoneAttributes,
1742 ZoneMgrImpl_SetZoneAttributes,
1743 ZoneMgrImpl_GetZoneCustomPolicy,
1744 ZoneMgrImpl_SetZoneCustomPolicy,
1745 ZoneMgrImpl_GetZoneActionPolicy,
1746 ZoneMgrImpl_SetZoneActionPolicy,
1747 ZoneMgrImpl_PromptAction,
1748 ZoneMgrImpl_LogAction,
1749 ZoneMgrImpl_CreateZoneEnumerator,
1750 ZoneMgrImpl_GetZoneAt,
1751 ZoneMgrImpl_DestroyZoneEnumerator,
1752 ZoneMgrImpl_CopyTemplatePoliciesToZone,
1753 /* IInternetZoneManagerEx */
1754 ZoneMgrImpl_GetZoneActionPolicyEx,
1755 ZoneMgrImpl_SetZoneActionPolicyEx,
1756 /* IInternetZoneManagerEx2 */
1757 ZoneMgrImpl_GetZoneAttributesEx,
1758 ZoneMgrImpl_GetZoneSecurityState,
1759 ZoneMgrImpl_GetIESecurityState,
1760 ZoneMgrImpl_FixInsecureSettings,
1763 HRESULT ZoneMgrImpl_Construct(IUnknown *pUnkOuter, LPVOID *ppobj)
1765 ZoneMgrImpl* ret = heap_alloc_zero(sizeof(ZoneMgrImpl));
1767 TRACE("(%p %p)\n", pUnkOuter, ppobj);
1768 ret->IInternetZoneManagerEx2_iface.lpVtbl = &ZoneMgrImplVtbl;
1770 *ppobj = (IInternetZoneManagerEx*)ret;
1772 URLMON_LockModule();
1777 /***********************************************************************
1778 * CoInternetCreateSecurityManager (URLMON.@)
1781 HRESULT WINAPI CoInternetCreateSecurityManager( IServiceProvider *pSP,
1782 IInternetSecurityManager **ppSM, DWORD dwReserved )
1784 TRACE("%p %p %d\n", pSP, ppSM, dwReserved );
1787 FIXME("pSP not supported\n");
1789 return SecManagerImpl_Construct(NULL, (void**) ppSM);
1792 /********************************************************************
1793 * CoInternetCreateZoneManager (URLMON.@)
1795 HRESULT WINAPI CoInternetCreateZoneManager(IServiceProvider* pSP, IInternetZoneManager** ppZM, DWORD dwReserved)
1797 TRACE("(%p %p %x)\n", pSP, ppZM, dwReserved);
1798 return ZoneMgrImpl_Construct(NULL, (void**)ppZM);
1801 static HRESULT parse_security_url(const WCHAR *url, PSUACTION action, WCHAR **result) {
1802 IInternetProtocolInfo *protocol_info;
1803 WCHAR *tmp, *new_url = NULL, *alloc_url = NULL;
1804 DWORD size, new_size;
1805 HRESULT hres = S_OK, parse_hres;
1808 TRACE("parsing %s\n", debugstr_w(url));
1810 protocol_info = get_protocol_info(url);
1814 size = strlenW(url)+1;
1815 new_url = CoTaskMemAlloc(size*sizeof(WCHAR));
1817 hres = E_OUTOFMEMORY;
1822 parse_hres = IInternetProtocolInfo_ParseUrl(protocol_info, url, PARSE_SECURITY_URL, 0, new_url, size, &new_size, 0);
1823 if(parse_hres == S_FALSE) {
1825 hres = E_UNEXPECTED;
1829 tmp = CoTaskMemRealloc(new_url, new_size*sizeof(WCHAR));
1831 hres = E_OUTOFMEMORY;
1835 parse_hres = IInternetProtocolInfo_ParseUrl(protocol_info, url, PARSE_SECURITY_URL, 0, new_url,
1836 new_size, &new_size, 0);
1837 if(parse_hres == S_FALSE) {
1843 if(parse_hres != S_OK || !strcmpW(url, new_url))
1846 CoTaskMemFree(alloc_url);
1847 url = alloc_url = new_url;
1851 CoTaskMemFree(new_url);
1854 WARN("failed: %08x\n", hres);
1855 CoTaskMemFree(alloc_url);
1859 if(action == PSU_DEFAULT && (protocol_info = get_protocol_info(url))) {
1860 size = strlenW(url)+1;
1861 new_url = CoTaskMemAlloc(size * sizeof(WCHAR));
1864 parse_hres = IInternetProtocolInfo_ParseUrl(protocol_info, url, PARSE_SECURITY_DOMAIN, 0,
1865 new_url, size, &new_size, 0);
1866 if(parse_hres == S_FALSE) {
1868 tmp = CoTaskMemRealloc(new_url, new_size*sizeof(WCHAR));
1871 parse_hres = IInternetProtocolInfo_ParseUrl(protocol_info, url, PARSE_SECURITY_DOMAIN, 0, new_url,
1872 new_size, &new_size, 0);
1873 if(parse_hres == S_FALSE)
1876 hres = E_OUTOFMEMORY;
1879 hres = E_UNEXPECTED;
1883 if(hres == S_OK && parse_hres == S_OK) {
1884 CoTaskMemFree(alloc_url);
1885 url = alloc_url = new_url;
1889 CoTaskMemFree(new_url);
1891 hres = E_OUTOFMEMORY;
1893 IInternetProtocolInfo_Release(protocol_info);
1897 WARN("failed %08x\n", hres);
1898 CoTaskMemFree(alloc_url);
1903 size = strlenW(url)+1;
1904 alloc_url = CoTaskMemAlloc(size * sizeof(WCHAR));
1906 return E_OUTOFMEMORY;
1907 memcpy(alloc_url, url, size * sizeof(WCHAR));
1910 *result = alloc_url;
1914 /********************************************************************
1915 * CoInternetGetSecurityUrl (URLMON.@)
1917 HRESULT WINAPI CoInternetGetSecurityUrl(LPCWSTR pwzUrl, LPWSTR *ppwzSecUrl, PSUACTION psuAction, DWORD dwReserved)
1922 TRACE("(%p,%p,%u,%u)\n", pwzUrl, ppwzSecUrl, psuAction, dwReserved);
1924 hres = parse_security_url(pwzUrl, psuAction, &secure_url);
1928 if(psuAction != PSU_SECURITY_URL_ONLY) {
1929 PARSEDURLW parsed_url = { sizeof(parsed_url) };
1932 /* FIXME: Use helpers from uri.c */
1933 if(SUCCEEDED(ParseURLW(secure_url, &parsed_url))) {
1936 switch(parsed_url.nScheme) {
1937 case URL_SCHEME_FTP:
1938 case URL_SCHEME_HTTP:
1939 case URL_SCHEME_HTTPS:
1940 size = strlenW(secure_url)+1;
1941 new_url = CoTaskMemAlloc(size * sizeof(WCHAR));
1943 hres = UrlGetPartW(secure_url, new_url, &size, URL_PART_HOSTNAME, URL_PARTFLAG_KEEPSCHEME);
1945 hres = E_OUTOFMEMORY;
1946 CoTaskMemFree(secure_url);
1948 WARN("UrlGetPart failed: %08x\n", hres);
1949 CoTaskMemFree(new_url);
1950 return FAILED(hres) ? hres : E_FAIL;
1952 secure_url = new_url;
1957 *ppwzSecUrl = secure_url;
1961 /********************************************************************
1962 * CoInternetGetSecurityUrlEx (URLMON.@)
1964 HRESULT WINAPI CoInternetGetSecurityUrlEx(IUri *pUri, IUri **ppSecUri, PSUACTION psuAction, DWORD_PTR dwReserved)
1966 URL_SCHEME scheme_type;
1971 TRACE("(%p,%p,%u,%u)\n", pUri, ppSecUri, psuAction, (DWORD)dwReserved);
1973 if(!pUri || !ppSecUri)
1974 return E_INVALIDARG;
1976 hres = IUri_GetDisplayUri(pUri, &secure_uri);
1980 hres = parse_security_url(secure_uri, psuAction, &ret_url);
1981 SysFreeString(secure_uri);
1985 /* File URIs have to hierarchical. */
1986 hres = IUri_GetScheme(pUri, (DWORD*)&scheme_type);
1987 if(SUCCEEDED(hres) && scheme_type == URL_SCHEME_FILE) {
1988 const WCHAR *tmp = ret_url;
1990 /* Check and see if a "//" is after the scheme name. */
1991 tmp += sizeof(fileW)/sizeof(WCHAR);
1992 if(*tmp != '/' || *(tmp+1) != '/')
1993 hres = E_INVALIDARG;
1997 hres = CreateUri(ret_url, Uri_CREATE_ALLOW_IMPLICIT_WILDCARD_SCHEME, 0, ppSecUri);
1998 CoTaskMemFree(ret_url);