2 * Copyright 2010 Jacek Caban for CodeWeavers
3 * Copyright 2010 Thomas Mullaly
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #define NONAMELESSUNION
22 #include "urlmon_main.h"
23 #include "wine/debug.h"
25 #define NO_SHLWAPI_REG
30 #define UINT_MAX 0xffffffff
31 #define USHORT_MAX 0xffff
33 #define URI_DISPLAY_NO_ABSOLUTE_URI 0x1
34 #define URI_DISPLAY_NO_DEFAULT_PORT_AUTH 0x2
36 #define ALLOW_NULL_TERM_SCHEME 0x01
37 #define ALLOW_NULL_TERM_USER_NAME 0x02
38 #define ALLOW_NULL_TERM_PASSWORD 0x04
39 #define ALLOW_BRACKETLESS_IP_LITERAL 0x08
40 #define SKIP_IP_FUTURE_CHECK 0x10
41 #define IGNORE_PORT_DELIMITER 0x20
43 #define RAW_URI_FORCE_PORT_DISP 0x1
44 #define RAW_URI_CONVERT_TO_DOS_PATH 0x2
46 #define COMBINE_URI_FORCE_FLAG_USE 0x1
48 WINE_DEFAULT_DEBUG_CHANNEL(urlmon
);
50 static const IID IID_IUriObj
= {0x4b364760,0x9f51,0x11df,{0x98,0x1c,0x08,0x00,0x20,0x0c,0x9a,0x66}};
54 IUriBuilderFactory IUriBuilderFactory_iface
;
55 IPersistStream IPersistStream_iface
;
56 IMarshal IMarshal_iface
;
62 /* Information about the canonicalized URI's buffer. */
66 BOOL display_modifiers
;
71 URL_SCHEME scheme_type
;
79 Uri_HOST_TYPE host_type
;
102 IUriBuilder IUriBuilder_iface
;
106 DWORD modified_props
;
139 /* IPv6 addresses can hold up to 8 h16 components. */
143 /* An IPv6 can have 1 elision ("::"). */
144 const WCHAR
*elision
;
146 /* An IPv6 can contain 1 IPv4 address as the last 32bits of the address. */
159 BOOL has_implicit_scheme
;
160 BOOL has_implicit_ip
;
166 URL_SCHEME scheme_type
;
168 const WCHAR
*username
;
171 const WCHAR
*password
;
176 Uri_HOST_TYPE host_type
;
179 ipv6_address ipv6_address
;
192 const WCHAR
*fragment
;
196 static const CHAR hexDigits
[] = "0123456789ABCDEF";
198 /* List of scheme types/scheme names that are recognized by the IUri interface as of IE 7. */
199 static const struct {
201 WCHAR scheme_name
[16];
202 } recognized_schemes
[] = {
203 {URL_SCHEME_FTP
, {'f','t','p',0}},
204 {URL_SCHEME_HTTP
, {'h','t','t','p',0}},
205 {URL_SCHEME_GOPHER
, {'g','o','p','h','e','r',0}},
206 {URL_SCHEME_MAILTO
, {'m','a','i','l','t','o',0}},
207 {URL_SCHEME_NEWS
, {'n','e','w','s',0}},
208 {URL_SCHEME_NNTP
, {'n','n','t','p',0}},
209 {URL_SCHEME_TELNET
, {'t','e','l','n','e','t',0}},
210 {URL_SCHEME_WAIS
, {'w','a','i','s',0}},
211 {URL_SCHEME_FILE
, {'f','i','l','e',0}},
212 {URL_SCHEME_MK
, {'m','k',0}},
213 {URL_SCHEME_HTTPS
, {'h','t','t','p','s',0}},
214 {URL_SCHEME_SHELL
, {'s','h','e','l','l',0}},
215 {URL_SCHEME_SNEWS
, {'s','n','e','w','s',0}},
216 {URL_SCHEME_LOCAL
, {'l','o','c','a','l',0}},
217 {URL_SCHEME_JAVASCRIPT
, {'j','a','v','a','s','c','r','i','p','t',0}},
218 {URL_SCHEME_VBSCRIPT
, {'v','b','s','c','r','i','p','t',0}},
219 {URL_SCHEME_ABOUT
, {'a','b','o','u','t',0}},
220 {URL_SCHEME_RES
, {'r','e','s',0}},
221 {URL_SCHEME_MSSHELLROOTED
, {'m','s','-','s','h','e','l','l','-','r','o','o','t','e','d',0}},
222 {URL_SCHEME_MSSHELLIDLIST
, {'m','s','-','s','h','e','l','l','-','i','d','l','i','s','t',0}},
223 {URL_SCHEME_MSHELP
, {'h','c','p',0}},
224 {URL_SCHEME_WILDCARD
, {'*',0}}
227 /* List of default ports Windows recognizes. */
228 static const struct {
231 } default_ports
[] = {
232 {URL_SCHEME_FTP
, 21},
233 {URL_SCHEME_HTTP
, 80},
234 {URL_SCHEME_GOPHER
, 70},
235 {URL_SCHEME_NNTP
, 119},
236 {URL_SCHEME_TELNET
, 23},
237 {URL_SCHEME_WAIS
, 210},
238 {URL_SCHEME_HTTPS
, 443},
241 /* List of 3-character top level domain names Windows seems to recognize.
242 * There might be more, but, these are the only ones I've found so far.
244 static const struct {
246 } recognized_tlds
[] = {
256 static Uri
*get_uri_obj(IUri
*uri
)
261 hres
= IUri_QueryInterface(uri
, &IID_IUriObj
, (void**)&ret
);
262 return SUCCEEDED(hres
) ? ret
: NULL
;
265 static inline BOOL
is_alpha(WCHAR val
) {
266 return ((val
>= 'a' && val
<= 'z') || (val
>= 'A' && val
<= 'Z'));
269 static inline BOOL
is_num(WCHAR val
) {
270 return (val
>= '0' && val
<= '9');
273 static inline BOOL
is_drive_path(const WCHAR
*str
) {
274 return (is_alpha(str
[0]) && (str
[1] == ':' || str
[1] == '|'));
277 static inline BOOL
is_unc_path(const WCHAR
*str
) {
278 return (str
[0] == '\\' && str
[0] == '\\');
281 static inline BOOL
is_forbidden_dos_path_char(WCHAR val
) {
282 return (val
== '>' || val
== '<' || val
== '\"');
285 /* A URI is implicitly a file path if it begins with
286 * a drive letter (e.g. X:) or starts with "\\" (UNC path).
288 static inline BOOL
is_implicit_file_path(const WCHAR
*str
) {
289 return (is_unc_path(str
) || (is_alpha(str
[0]) && str
[1] == ':'));
292 /* Checks if the URI is a hierarchical URI. A hierarchical
293 * URI is one that has "//" after the scheme.
295 static BOOL
check_hierarchical(const WCHAR
**ptr
) {
296 const WCHAR
*start
= *ptr
;
311 /* unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~" */
312 static inline BOOL
is_unreserved(WCHAR val
) {
313 return (is_alpha(val
) || is_num(val
) || val
== '-' || val
== '.' ||
314 val
== '_' || val
== '~');
317 /* sub-delims = "!" / "$" / "&" / "'" / "(" / ")"
318 * / "*" / "+" / "," / ";" / "="
320 static inline BOOL
is_subdelim(WCHAR val
) {
321 return (val
== '!' || val
== '$' || val
== '&' ||
322 val
== '\'' || val
== '(' || val
== ')' ||
323 val
== '*' || val
== '+' || val
== ',' ||
324 val
== ';' || val
== '=');
327 /* gen-delims = ":" / "/" / "?" / "#" / "[" / "]" / "@" */
328 static inline BOOL
is_gendelim(WCHAR val
) {
329 return (val
== ':' || val
== '/' || val
== '?' ||
330 val
== '#' || val
== '[' || val
== ']' ||
334 /* Characters that delimit the end of the authority
335 * section of a URI. Sometimes a '\\' is considered
336 * an authority delimiter.
338 static inline BOOL
is_auth_delim(WCHAR val
, BOOL acceptSlash
) {
339 return (val
== '#' || val
== '/' || val
== '?' ||
340 val
== '\0' || (acceptSlash
&& val
== '\\'));
343 /* reserved = gen-delims / sub-delims */
344 static inline BOOL
is_reserved(WCHAR val
) {
345 return (is_subdelim(val
) || is_gendelim(val
));
348 static inline BOOL
is_hexdigit(WCHAR val
) {
349 return ((val
>= 'a' && val
<= 'f') ||
350 (val
>= 'A' && val
<= 'F') ||
351 (val
>= '0' && val
<= '9'));
354 static inline BOOL
is_path_delim(WCHAR val
) {
355 return (!val
|| val
== '#' || val
== '?');
358 static inline BOOL
is_slash(WCHAR c
)
360 return c
== '/' || c
== '\\';
363 static BOOL
is_default_port(URL_SCHEME scheme
, DWORD port
) {
366 for(i
= 0; i
< sizeof(default_ports
)/sizeof(default_ports
[0]); ++i
) {
367 if(default_ports
[i
].scheme
== scheme
&& default_ports
[i
].port
)
374 /* List of schemes types Windows seems to expect to be hierarchical. */
375 static inline BOOL
is_hierarchical_scheme(URL_SCHEME type
) {
376 return(type
== URL_SCHEME_HTTP
|| type
== URL_SCHEME_FTP
||
377 type
== URL_SCHEME_GOPHER
|| type
== URL_SCHEME_NNTP
||
378 type
== URL_SCHEME_TELNET
|| type
== URL_SCHEME_WAIS
||
379 type
== URL_SCHEME_FILE
|| type
== URL_SCHEME_HTTPS
||
380 type
== URL_SCHEME_RES
);
383 /* Checks if 'flags' contains an invalid combination of Uri_CREATE flags. */
384 static inline BOOL
has_invalid_flag_combination(DWORD flags
) {
385 return((flags
& Uri_CREATE_DECODE_EXTRA_INFO
&& flags
& Uri_CREATE_NO_DECODE_EXTRA_INFO
) ||
386 (flags
& Uri_CREATE_CANONICALIZE
&& flags
& Uri_CREATE_NO_CANONICALIZE
) ||
387 (flags
& Uri_CREATE_CRACK_UNKNOWN_SCHEMES
&& flags
& Uri_CREATE_NO_CRACK_UNKNOWN_SCHEMES
) ||
388 (flags
& Uri_CREATE_PRE_PROCESS_HTML_URI
&& flags
& Uri_CREATE_NO_PRE_PROCESS_HTML_URI
) ||
389 (flags
& Uri_CREATE_IE_SETTINGS
&& flags
& Uri_CREATE_NO_IE_SETTINGS
));
392 /* Applies each default Uri_CREATE flags to 'flags' if it
393 * doesn't cause a flag conflict.
395 static void apply_default_flags(DWORD
*flags
) {
396 if(!(*flags
& Uri_CREATE_NO_CANONICALIZE
))
397 *flags
|= Uri_CREATE_CANONICALIZE
;
398 if(!(*flags
& Uri_CREATE_NO_DECODE_EXTRA_INFO
))
399 *flags
|= Uri_CREATE_DECODE_EXTRA_INFO
;
400 if(!(*flags
& Uri_CREATE_NO_CRACK_UNKNOWN_SCHEMES
))
401 *flags
|= Uri_CREATE_CRACK_UNKNOWN_SCHEMES
;
402 if(!(*flags
& Uri_CREATE_NO_PRE_PROCESS_HTML_URI
))
403 *flags
|= Uri_CREATE_PRE_PROCESS_HTML_URI
;
404 if(!(*flags
& Uri_CREATE_IE_SETTINGS
))
405 *flags
|= Uri_CREATE_NO_IE_SETTINGS
;
408 /* Determines if the URI is hierarchical using the information already parsed into
409 * data and using the current location of parsing in the URI string.
411 * Windows considers a URI hierarchical if one of the following is true:
412 * A.) It's a wildcard scheme.
413 * B.) It's an implicit file scheme.
414 * C.) It's a known hierarchical scheme and it has two '\\' after the scheme name.
415 * (the '\\' will be converted into "//" during canonicalization).
416 * D.) It's not a relative URI and "//" appears after the scheme name.
418 static inline BOOL
is_hierarchical_uri(const WCHAR
**ptr
, const parse_data
*data
) {
419 const WCHAR
*start
= *ptr
;
421 if(data
->scheme_type
== URL_SCHEME_WILDCARD
)
423 else if(data
->scheme_type
== URL_SCHEME_FILE
&& data
->has_implicit_scheme
)
425 else if(is_hierarchical_scheme(data
->scheme_type
) && (*ptr
)[0] == '\\' && (*ptr
)[1] == '\\') {
428 } else if(!data
->is_relative
&& check_hierarchical(ptr
))
435 /* Computes the size of the given IPv6 address.
436 * Each h16 component is 16 bits. If there is an IPv4 address, it's
437 * 32 bits. If there's an elision it can be 16 to 128 bits, depending
438 * on the number of other components.
440 * Modeled after google-url's CheckIPv6ComponentsSize function
442 static void compute_ipv6_comps_size(ipv6_address
*address
) {
443 address
->components_size
= address
->h16_count
* 2;
446 /* IPv4 address is 4 bytes. */
447 address
->components_size
+= 4;
449 if(address
->elision
) {
450 /* An elision can be anywhere from 2 bytes up to 16 bytes.
451 * Its size depends on the size of the h16 and IPv4 components.
453 address
->elision_size
= 16 - address
->components_size
;
454 if(address
->elision_size
< 2)
455 address
->elision_size
= 2;
457 address
->elision_size
= 0;
460 /* Taken from dlls/jscript/lex.c */
461 static int hex_to_int(WCHAR val
) {
462 if(val
>= '0' && val
<= '9')
464 else if(val
>= 'a' && val
<= 'f')
465 return val
- 'a' + 10;
466 else if(val
>= 'A' && val
<= 'F')
467 return val
- 'A' + 10;
472 /* Helper function for converting a percent encoded string
473 * representation of a WCHAR value into its actual WCHAR value. If
474 * the two characters following the '%' aren't valid hex values then
475 * this function returns the NULL character.
478 * "%2E" will result in '.' being returned by this function.
480 static WCHAR
decode_pct_val(const WCHAR
*ptr
) {
483 if(*ptr
== '%' && is_hexdigit(*(ptr
+ 1)) && is_hexdigit(*(ptr
+ 2))) {
484 INT a
= hex_to_int(*(ptr
+ 1));
485 INT b
= hex_to_int(*(ptr
+ 2));
494 /* Helper function for percent encoding a given character
495 * and storing the encoded value into a given buffer (dest).
497 * It's up to the calling function to ensure that there is
498 * at least enough space in 'dest' for the percent encoded
499 * value to be stored (so dest + 3 spaces available).
501 static inline void pct_encode_val(WCHAR val
, WCHAR
*dest
) {
503 dest
[1] = hexDigits
[(val
>> 4) & 0xf];
504 dest
[2] = hexDigits
[val
& 0xf];
507 /* Attempts to parse the domain name from the host.
509 * This function also includes the Top-level Domain (TLD) name
510 * of the host when it tries to find the domain name. If it finds
511 * a valid domain name it will assign 'domain_start' the offset
512 * into 'host' where the domain name starts.
514 * It's implied that if there is a domain name its range is:
515 * [host+domain_start, host+host_len).
517 void find_domain_name(const WCHAR
*host
, DWORD host_len
,
519 const WCHAR
*last_tld
, *sec_last_tld
, *end
;
521 end
= host
+host_len
-1;
525 /* There has to be at least enough room for a '.' followed by a
526 * 3-character TLD for a domain to even exist in the host name.
531 last_tld
= memrchrW(host
, '.', host_len
);
533 /* http://hostname -> has no domain name. */
536 sec_last_tld
= memrchrW(host
, '.', last_tld
-host
);
538 /* If the '.' is at the beginning of the host there
539 * has to be at least 3 characters in the TLD for it
541 * Ex: .com -> .com as the domain name.
542 * .co -> has no domain name.
544 if(last_tld
-host
== 0) {
545 if(end
-(last_tld
-1) < 3)
547 } else if(last_tld
-host
== 3) {
550 /* If there are three characters in front of last_tld and
551 * they are on the list of recognized TLDs, then this
552 * host doesn't have a domain (since the host only contains
554 * Ex: edu.uk -> has no domain name.
555 * foo.uk -> foo.uk as the domain name.
557 for(i
= 0; i
< sizeof(recognized_tlds
)/sizeof(recognized_tlds
[0]); ++i
) {
558 if(!StrCmpNIW(host
, recognized_tlds
[i
].tld_name
, 3))
561 } else if(last_tld
-host
< 3)
562 /* Anything less than 3 characters is considered part
564 * Ex: ak.uk -> Has no domain name.
568 /* Otherwise the domain name is the whole host name. */
570 } else if(end
+1-last_tld
> 3) {
571 /* If the last_tld has more than 3 characters, then it's automatically
572 * considered the TLD of the domain name.
573 * Ex: www.winehq.org.uk.test -> uk.test as the domain name.
575 *domain_start
= (sec_last_tld
+1)-host
;
576 } else if(last_tld
- (sec_last_tld
+1) < 4) {
578 /* If the sec_last_tld is 3 characters long it HAS to be on the list of
579 * recognized to still be considered part of the TLD name, otherwise
580 * its considered the domain name.
581 * Ex: www.google.com.uk -> google.com.uk as the domain name.
582 * www.google.foo.uk -> foo.uk as the domain name.
584 if(last_tld
- (sec_last_tld
+1) == 3) {
585 for(i
= 0; i
< sizeof(recognized_tlds
)/sizeof(recognized_tlds
[0]); ++i
) {
586 if(!StrCmpNIW(sec_last_tld
+1, recognized_tlds
[i
].tld_name
, 3)) {
587 const WCHAR
*domain
= memrchrW(host
, '.', sec_last_tld
-host
);
592 *domain_start
= (domain
+1) - host
;
593 TRACE("Found domain name %s\n", debugstr_wn(host
+*domain_start
,
594 (host
+host_len
)-(host
+*domain_start
)));
599 *domain_start
= (sec_last_tld
+1)-host
;
601 /* Since the sec_last_tld is less than 3 characters it's considered
603 * Ex: www.google.fo.uk -> google.fo.uk as the domain name.
605 const WCHAR
*domain
= memrchrW(host
, '.', sec_last_tld
-host
);
610 *domain_start
= (domain
+1) - host
;
613 /* The second to last TLD has more than 3 characters making it
615 * Ex: www.google.test.us -> test.us as the domain name.
617 *domain_start
= (sec_last_tld
+1)-host
;
620 TRACE("Found domain name %s\n", debugstr_wn(host
+*domain_start
,
621 (host
+host_len
)-(host
+*domain_start
)));
624 /* Removes the dot segments from a hierarchical URIs path component. This
625 * function performs the removal in place.
627 * This function returns the new length of the path string.
629 static DWORD
remove_dot_segments(WCHAR
*path
, DWORD path_len
) {
631 const WCHAR
*in
= out
;
632 const WCHAR
*end
= out
+ path_len
;
636 /* Move the first path segment in the input buffer to the end of
637 * the output buffer, and any subsequent characters up to, including
638 * the next "/" character (if any) or the end of the input buffer.
640 while(in
< end
&& !is_slash(*in
))
650 /* Handle ending "/." */
657 if(is_slash(in
[1])) {
662 /* If we don't have "/../" or ending "/.." */
663 if(in
[1] != '.' || (in
+ 2 != end
&& !is_slash(in
[2])))
666 /* Find the slash preceding out pointer and move out pointer to it */
667 if(out
> path
+1 && is_slash(*--out
))
669 while(out
> path
&& !is_slash(*(--out
)));
679 TRACE("(%p %d): Path after dot segments removed %s len=%d\n", path
, path_len
,
680 debugstr_wn(path
, len
), len
);
684 /* Attempts to find the file extension in a given path. */
685 static INT
find_file_extension(const WCHAR
*path
, DWORD path_len
) {
688 for(end
= path
+path_len
-1; end
>= path
&& *end
!= '/' && *end
!= '\\'; --end
) {
696 /* Computes the location where the elision should occur in the IPv6
697 * address using the numerical values of each component stored in
698 * 'values'. If the address shouldn't contain an elision then 'index'
699 * is assigned -1 as its value. Otherwise 'index' will contain the
700 * starting index (into values) where the elision should be, and 'count'
701 * will contain the number of cells the elision covers.
704 * Windows will expand an elision if the elision only represents one h16
705 * component of the address.
707 * Ex: [1::2:3:4:5:6:7] -> [1:0:2:3:4:5:6:7]
709 * If the IPv6 address contains an IPv4 address, the IPv4 address is also
710 * considered for being included as part of an elision if all its components
713 * Ex: [1:2:3:4:5:6:0.0.0.0] -> [1:2:3:4:5:6::]
715 static void compute_elision_location(const ipv6_address
*address
, const USHORT values
[8],
716 INT
*index
, DWORD
*count
) {
717 DWORD i
, max_len
, cur_len
;
718 INT max_index
, cur_index
;
720 max_len
= cur_len
= 0;
721 max_index
= cur_index
= -1;
722 for(i
= 0; i
< 8; ++i
) {
723 BOOL check_ipv4
= (address
->ipv4
&& i
== 6);
724 BOOL is_end
= (check_ipv4
|| i
== 7);
727 /* Check if the IPv4 address contains only zeros. */
728 if(values
[i
] == 0 && values
[i
+1] == 0) {
735 } else if(values
[i
] == 0) {
742 if(is_end
|| values
[i
] != 0) {
743 /* We only consider it for an elision if it's
744 * more than 1 component long.
746 if(cur_len
> 1 && cur_len
> max_len
) {
747 /* Found the new elision location. */
749 max_index
= cur_index
;
752 /* Reset the current range for the next range of zeros. */
762 /* Removes all the leading and trailing white spaces or
763 * control characters from the URI and removes all control
764 * characters inside of the URI string.
766 static BSTR
pre_process_uri(LPCWSTR uri
) {
767 const WCHAR
*start
, *end
, *ptr
;
773 /* Skip leading controls and whitespace. */
774 while(*start
&& (iscntrlW(*start
) || isspaceW(*start
))) ++start
;
776 /* URI consisted only of control/whitespace. */
778 return SysAllocStringLen(NULL
, 0);
780 end
= start
+ strlenW(start
);
781 while(--end
> start
&& (iscntrlW(*end
) || isspaceW(*end
)));
784 for(ptr
= start
; ptr
< end
; ptr
++) {
789 ret
= SysAllocStringLen(NULL
, len
);
793 for(ptr
= start
, ptr2
=ret
; ptr
< end
; ptr
++) {
801 /* Converts the specified IPv4 address into an uint value.
803 * This function assumes that the IPv4 address has already been validated.
805 static UINT
ipv4toui(const WCHAR
*ip
, DWORD len
) {
807 DWORD comp_value
= 0;
810 for(ptr
= ip
; ptr
< ip
+len
; ++ptr
) {
816 comp_value
= comp_value
*10 + (*ptr
-'0');
825 /* Converts an IPv4 address in numerical form into its fully qualified
826 * string form. This function returns the number of characters written
827 * to 'dest'. If 'dest' is NULL this function will return the number of
828 * characters that would have been written.
830 * It's up to the caller to ensure there's enough space in 'dest' for the
833 static DWORD
ui2ipv4(WCHAR
*dest
, UINT address
) {
834 static const WCHAR formatW
[] =
835 {'%','u','.','%','u','.','%','u','.','%','u',0};
839 digits
[0] = (address
>> 24) & 0xff;
840 digits
[1] = (address
>> 16) & 0xff;
841 digits
[2] = (address
>> 8) & 0xff;
842 digits
[3] = address
& 0xff;
846 ret
= sprintfW(tmp
, formatW
, digits
[0], digits
[1], digits
[2], digits
[3]);
848 ret
= sprintfW(dest
, formatW
, digits
[0], digits
[1], digits
[2], digits
[3]);
853 static DWORD
ui2str(WCHAR
*dest
, UINT value
) {
854 static const WCHAR formatW
[] = {'%','u',0};
859 ret
= sprintfW(tmp
, formatW
, value
);
861 ret
= sprintfW(dest
, formatW
, value
);
866 /* Converts a h16 component (from an IPv6 address) into its
869 * This function assumes that the h16 component has already been validated.
871 static USHORT
h16tous(h16 component
) {
875 for(i
= 0; i
< component
.len
; ++i
) {
877 ret
+= hex_to_int(component
.str
[i
]);
883 /* Converts an IPv6 address into its 128 bits (16 bytes) numerical value.
885 * This function assumes that the ipv6_address has already been validated.
887 static BOOL
ipv6_to_number(const ipv6_address
*address
, USHORT number
[8]) {
888 DWORD i
, cur_component
= 0;
889 BOOL already_passed_elision
= FALSE
;
891 for(i
= 0; i
< address
->h16_count
; ++i
) {
892 if(address
->elision
) {
893 if(address
->components
[i
].str
> address
->elision
&& !already_passed_elision
) {
894 /* Means we just passed the elision and need to add its values to
895 * 'number' before we do anything else.
898 for(j
= 0; j
< address
->elision_size
; j
+=2)
899 number
[cur_component
++] = 0;
901 already_passed_elision
= TRUE
;
905 number
[cur_component
++] = h16tous(address
->components
[i
]);
908 /* Case when the elision appears after the h16 components. */
909 if(!already_passed_elision
&& address
->elision
) {
910 for(i
= 0; i
< address
->elision_size
; i
+=2)
911 number
[cur_component
++] = 0;
915 UINT value
= ipv4toui(address
->ipv4
, address
->ipv4_len
);
917 if(cur_component
!= 6) {
918 ERR("(%p %p): Failed sanity check with %d\n", address
, number
, cur_component
);
922 number
[cur_component
++] = (value
>> 16) & 0xffff;
923 number
[cur_component
] = value
& 0xffff;
929 /* Checks if the characters pointed to by 'ptr' are
930 * a percent encoded data octet.
932 * pct-encoded = "%" HEXDIG HEXDIG
934 static BOOL
check_pct_encoded(const WCHAR
**ptr
) {
935 const WCHAR
*start
= *ptr
;
941 if(!is_hexdigit(**ptr
)) {
947 if(!is_hexdigit(**ptr
)) {
956 /* dec-octet = DIGIT ; 0-9
957 * / %x31-39 DIGIT ; 10-99
958 * / "1" 2DIGIT ; 100-199
959 * / "2" %x30-34 DIGIT ; 200-249
960 * / "25" %x30-35 ; 250-255
962 static BOOL
check_dec_octet(const WCHAR
**ptr
) {
963 const WCHAR
*c1
, *c2
, *c3
;
966 /* A dec-octet must be at least 1 digit long. */
967 if(*c1
< '0' || *c1
> '9')
973 /* Since the 1-digit requirement was met, it doesn't
974 * matter if this is a DIGIT value, it's considered a
977 if(*c2
< '0' || *c2
> '9')
983 /* Same explanation as above. */
984 if(*c3
< '0' || *c3
> '9')
987 /* Anything > 255 isn't a valid IP dec-octet. */
988 if(*c1
>= '2' && *c2
>= '5' && *c3
>= '5') {
997 /* Checks if there is an implicit IPv4 address in the host component of the URI.
998 * The max value of an implicit IPv4 address is UINT_MAX.
1001 * "234567" would be considered an implicit IPv4 address.
1003 static BOOL
check_implicit_ipv4(const WCHAR
**ptr
, UINT
*val
) {
1004 const WCHAR
*start
= *ptr
;
1008 while(is_num(**ptr
)) {
1009 ret
= ret
*10 + (**ptr
- '0');
1011 if(ret
> UINT_MAX
) {
1025 /* Checks if the string contains an IPv4 address.
1027 * This function has a strict mode or a non-strict mode of operation
1028 * When 'strict' is set to FALSE this function will return TRUE if
1029 * the string contains at least 'dec-octet "." dec-octet' since partial
1030 * IPv4 addresses will be normalized out into full IPv4 addresses. When
1031 * 'strict' is set this function expects there to be a full IPv4 address.
1033 * IPv4address = dec-octet "." dec-octet "." dec-octet "." dec-octet
1035 static BOOL
check_ipv4address(const WCHAR
**ptr
, BOOL strict
) {
1036 const WCHAR
*start
= *ptr
;
1038 if(!check_dec_octet(ptr
)) {
1049 if(!check_dec_octet(ptr
)) {
1063 if(!check_dec_octet(ptr
)) {
1077 if(!check_dec_octet(ptr
)) {
1082 /* Found a four digit ip address. */
1085 /* Tries to parse the scheme name of the URI.
1087 * scheme = ALPHA *(ALPHA | NUM | '+' | '-' | '.') as defined by RFC 3896.
1088 * NOTE: Windows accepts a number as the first character of a scheme.
1090 static BOOL
parse_scheme_name(const WCHAR
**ptr
, parse_data
*data
, DWORD extras
) {
1091 const WCHAR
*start
= *ptr
;
1093 data
->scheme
= NULL
;
1094 data
->scheme_len
= 0;
1097 if(**ptr
== '*' && *ptr
== start
) {
1098 /* Might have found a wildcard scheme. If it is the next
1099 * char has to be a ':' for it to be a valid URI
1103 } else if(!is_num(**ptr
) && !is_alpha(**ptr
) && **ptr
!= '+' &&
1104 **ptr
!= '-' && **ptr
!= '.')
1113 /* Schemes must end with a ':' */
1114 if(**ptr
!= ':' && !((extras
& ALLOW_NULL_TERM_SCHEME
) && !**ptr
)) {
1119 data
->scheme
= start
;
1120 data
->scheme_len
= *ptr
- start
;
1126 /* Tries to deduce the corresponding URL_SCHEME for the given URI. Stores
1127 * the deduced URL_SCHEME in data->scheme_type.
1129 static BOOL
parse_scheme_type(parse_data
*data
) {
1130 /* If there's scheme data then see if it's a recognized scheme. */
1131 if(data
->scheme
&& data
->scheme_len
) {
1134 for(i
= 0; i
< sizeof(recognized_schemes
)/sizeof(recognized_schemes
[0]); ++i
) {
1135 if(lstrlenW(recognized_schemes
[i
].scheme_name
) == data
->scheme_len
) {
1136 /* Has to be a case insensitive compare. */
1137 if(!StrCmpNIW(recognized_schemes
[i
].scheme_name
, data
->scheme
, data
->scheme_len
)) {
1138 data
->scheme_type
= recognized_schemes
[i
].scheme
;
1144 /* If we get here it means it's not a recognized scheme. */
1145 data
->scheme_type
= URL_SCHEME_UNKNOWN
;
1147 } else if(data
->is_relative
) {
1148 /* Relative URI's have no scheme. */
1149 data
->scheme_type
= URL_SCHEME_UNKNOWN
;
1152 /* Should never reach here! what happened... */
1153 FIXME("(%p): Unable to determine scheme type for URI %s\n", data
, debugstr_w(data
->uri
));
1158 /* Tries to parse (or deduce) the scheme_name of a URI. If it can't
1159 * parse a scheme from the URI it will try to deduce the scheme_name and scheme_type
1160 * using the flags specified in 'flags' (if any). Flags that affect how this function
1161 * operates are the Uri_CREATE_ALLOW_* flags.
1163 * All parsed/deduced information will be stored in 'data' when the function returns.
1165 * Returns TRUE if it was able to successfully parse the information.
1167 static BOOL
parse_scheme(const WCHAR
**ptr
, parse_data
*data
, DWORD flags
, DWORD extras
) {
1168 static const WCHAR fileW
[] = {'f','i','l','e',0};
1169 static const WCHAR wildcardW
[] = {'*',0};
1171 /* First check to see if the uri could implicitly be a file path. */
1172 if(is_implicit_file_path(*ptr
)) {
1173 if(flags
& Uri_CREATE_ALLOW_IMPLICIT_FILE_SCHEME
) {
1174 data
->scheme
= fileW
;
1175 data
->scheme_len
= lstrlenW(fileW
);
1176 data
->has_implicit_scheme
= TRUE
;
1178 TRACE("(%p %p %x): URI is an implicit file path.\n", ptr
, data
, flags
);
1180 /* Windows does not consider anything that can implicitly be a file
1181 * path to be a valid URI if the ALLOW_IMPLICIT_FILE_SCHEME flag is not set...
1183 TRACE("(%p %p %x): URI is implicitly a file path, but, the ALLOW_IMPLICIT_FILE_SCHEME flag wasn't set.\n",
1187 } else if(!parse_scheme_name(ptr
, data
, extras
)) {
1188 /* No scheme was found, this means it could be:
1189 * a) an implicit Wildcard scheme
1191 * c) an invalid URI.
1193 if(flags
& Uri_CREATE_ALLOW_IMPLICIT_WILDCARD_SCHEME
) {
1194 data
->scheme
= wildcardW
;
1195 data
->scheme_len
= lstrlenW(wildcardW
);
1196 data
->has_implicit_scheme
= TRUE
;
1198 TRACE("(%p %p %x): URI is an implicit wildcard scheme.\n", ptr
, data
, flags
);
1199 } else if (flags
& Uri_CREATE_ALLOW_RELATIVE
) {
1200 data
->is_relative
= TRUE
;
1201 TRACE("(%p %p %x): URI is relative.\n", ptr
, data
, flags
);
1203 TRACE("(%p %p %x): Malformed URI found. Unable to deduce scheme name.\n", ptr
, data
, flags
);
1208 if(!data
->is_relative
)
1209 TRACE("(%p %p %x): Found scheme=%s scheme_len=%d\n", ptr
, data
, flags
,
1210 debugstr_wn(data
->scheme
, data
->scheme_len
), data
->scheme_len
);
1212 if(!parse_scheme_type(data
))
1215 TRACE("(%p %p %x): Assigned %d as the URL_SCHEME.\n", ptr
, data
, flags
, data
->scheme_type
);
1219 static BOOL
parse_username(const WCHAR
**ptr
, parse_data
*data
, DWORD flags
, DWORD extras
) {
1220 data
->username
= *ptr
;
1222 while(**ptr
!= ':' && **ptr
!= '@') {
1224 if(!check_pct_encoded(ptr
)) {
1225 if(data
->scheme_type
!= URL_SCHEME_UNKNOWN
) {
1226 *ptr
= data
->username
;
1227 data
->username
= NULL
;
1232 } else if(extras
& ALLOW_NULL_TERM_USER_NAME
&& !**ptr
)
1234 else if(is_auth_delim(**ptr
, data
->scheme_type
!= URL_SCHEME_UNKNOWN
)) {
1235 *ptr
= data
->username
;
1236 data
->username
= NULL
;
1243 data
->username_len
= *ptr
- data
->username
;
1247 static BOOL
parse_password(const WCHAR
**ptr
, parse_data
*data
, DWORD flags
, DWORD extras
) {
1248 data
->password
= *ptr
;
1250 while(**ptr
!= '@') {
1252 if(!check_pct_encoded(ptr
)) {
1253 if(data
->scheme_type
!= URL_SCHEME_UNKNOWN
) {
1254 *ptr
= data
->password
;
1255 data
->password
= NULL
;
1260 } else if(extras
& ALLOW_NULL_TERM_PASSWORD
&& !**ptr
)
1262 else if(is_auth_delim(**ptr
, data
->scheme_type
!= URL_SCHEME_UNKNOWN
)) {
1263 *ptr
= data
->password
;
1264 data
->password
= NULL
;
1271 data
->password_len
= *ptr
- data
->password
;
1275 /* Parses the userinfo part of the URI (if it exists). The userinfo field of
1276 * a URI can consist of "username:password@", or just "username@".
1279 * userinfo = *( unreserved / pct-encoded / sub-delims / ":" )
1282 * 1) If there is more than one ':' in the userinfo part of the URI Windows
1283 * uses the first occurrence of ':' to delimit the username and password
1287 * ftp://user:pass:word@winehq.org
1289 * would yield "user" as the username and "pass:word" as the password.
1291 * 2) Windows allows any character to appear in the "userinfo" part of
1292 * a URI, as long as it's not an authority delimiter character set.
1294 static void parse_userinfo(const WCHAR
**ptr
, parse_data
*data
, DWORD flags
) {
1295 const WCHAR
*start
= *ptr
;
1297 if(!parse_username(ptr
, data
, flags
, 0)) {
1298 TRACE("(%p %p %x): URI contained no userinfo.\n", ptr
, data
, flags
);
1304 if(!parse_password(ptr
, data
, flags
, 0)) {
1306 data
->username
= NULL
;
1307 data
->username_len
= 0;
1308 TRACE("(%p %p %x): URI contained no userinfo.\n", ptr
, data
, flags
);
1315 data
->username
= NULL
;
1316 data
->username_len
= 0;
1317 data
->password
= NULL
;
1318 data
->password_len
= 0;
1320 TRACE("(%p %p %x): URI contained no userinfo.\n", ptr
, data
, flags
);
1325 TRACE("(%p %p %x): Found username %s len=%d.\n", ptr
, data
, flags
,
1326 debugstr_wn(data
->username
, data
->username_len
), data
->username_len
);
1329 TRACE("(%p %p %x): Found password %s len=%d.\n", ptr
, data
, flags
,
1330 debugstr_wn(data
->password
, data
->password_len
), data
->password_len
);
1335 /* Attempts to parse a port from the URI.
1338 * Windows seems to have a cap on what the maximum value
1339 * for a port can be. The max value is USHORT_MAX.
1343 static BOOL
parse_port(const WCHAR
**ptr
, parse_data
*data
, DWORD flags
) {
1347 while(!is_auth_delim(**ptr
, data
->scheme_type
!= URL_SCHEME_UNKNOWN
)) {
1348 if(!is_num(**ptr
)) {
1354 port
= port
*10 + (**ptr
-'0');
1356 if(port
> USHORT_MAX
) {
1365 data
->has_port
= TRUE
;
1366 data
->port_value
= port
;
1367 data
->port_len
= *ptr
- data
->port
;
1369 TRACE("(%p %p %x): Found port %s len=%d value=%u\n", ptr
, data
, flags
,
1370 debugstr_wn(data
->port
, data
->port_len
), data
->port_len
, data
->port_value
);
1374 /* Attempts to parse a IPv4 address from the URI.
1377 * Windows normalizes IPv4 addresses, This means there are three
1378 * possibilities for the URI to contain an IPv4 address.
1379 * 1) A well formed address (ex. 192.2.2.2).
1380 * 2) A partially formed address. For example "192.0" would
1381 * normalize to "192.0.0.0" during canonicalization.
1382 * 3) An implicit IPv4 address. For example "256" would
1383 * normalize to "0.0.1.0" during canonicalization. Also
1384 * note that the maximum value for an implicit IP address
1385 * is UINT_MAX, if the value in the URI exceeds this then
1386 * it is not considered an IPv4 address.
1388 static BOOL
parse_ipv4address(const WCHAR
**ptr
, parse_data
*data
, DWORD flags
) {
1389 const BOOL is_unknown
= data
->scheme_type
== URL_SCHEME_UNKNOWN
;
1392 if(!check_ipv4address(ptr
, FALSE
)) {
1393 if(!check_implicit_ipv4(ptr
, &data
->implicit_ipv4
)) {
1394 TRACE("(%p %p %x): URI didn't contain anything looking like an IPv4 address.\n",
1400 data
->has_implicit_ip
= TRUE
;
1403 data
->host_len
= *ptr
- data
->host
;
1404 data
->host_type
= Uri_HOST_IPV4
;
1406 /* Check if what we found is the only part of the host name (if it isn't
1407 * we don't have an IPv4 address).
1411 if(!parse_port(ptr
, data
, flags
)) {
1416 } else if(!is_auth_delim(**ptr
, !is_unknown
)) {
1417 /* Found more data which belongs to the host, so this isn't an IPv4. */
1420 data
->has_implicit_ip
= FALSE
;
1424 TRACE("(%p %p %x): IPv4 address found. host=%s host_len=%d host_type=%d\n",
1425 ptr
, data
, flags
, debugstr_wn(data
->host
, data
->host_len
),
1426 data
->host_len
, data
->host_type
);
1430 /* Attempts to parse the reg-name from the URI.
1432 * Because of the way Windows handles ':' this function also
1433 * handles parsing the port.
1435 * reg-name = *( unreserved / pct-encoded / sub-delims )
1438 * Windows allows everything, but, the characters in "auth_delims" and ':'
1439 * to appear in a reg-name, unless it's an unknown scheme type then ':' is
1440 * allowed to appear (even if a valid port isn't after it).
1442 * Windows doesn't like host names which start with '[' and end with ']'
1443 * and don't contain a valid IP literal address in between them.
1445 * On Windows if a '[' is encountered in the host name the ':' no longer
1446 * counts as a delimiter until you reach the next ']' or an "authority delimiter".
1448 * A reg-name CAN be empty.
1450 static BOOL
parse_reg_name(const WCHAR
**ptr
, parse_data
*data
, DWORD flags
, DWORD extras
) {
1451 const BOOL has_start_bracket
= **ptr
== '[';
1452 const BOOL known_scheme
= data
->scheme_type
!= URL_SCHEME_UNKNOWN
;
1453 const BOOL is_res
= data
->scheme_type
== URL_SCHEME_RES
;
1454 BOOL inside_brackets
= has_start_bracket
;
1456 /* res URIs don't have ports. */
1457 BOOL ignore_col
= (extras
& IGNORE_PORT_DELIMITER
) || is_res
;
1459 /* We have to be careful with file schemes. */
1460 if(data
->scheme_type
== URL_SCHEME_FILE
) {
1461 /* This is because an implicit file scheme could be "C:\\test" and it
1462 * would trick this function into thinking the host is "C", when after
1463 * canonicalization the host would end up being an empty string. A drive
1464 * path can also have a '|' instead of a ':' after the drive letter.
1466 if(is_drive_path(*ptr
)) {
1467 /* Regular old drive paths have no host type (or host name). */
1468 data
->host_type
= Uri_HOST_UNKNOWN
;
1472 } else if(is_unc_path(*ptr
))
1473 /* Skip past the "\\" of a UNC path. */
1479 /* For res URIs, everything before the first '/' is
1480 * considered the host.
1482 while((!is_res
&& !is_auth_delim(**ptr
, known_scheme
)) ||
1483 (is_res
&& **ptr
&& **ptr
!= '/')) {
1484 if(**ptr
== ':' && !ignore_col
) {
1485 /* We can ignore ':' if were inside brackets.*/
1486 if(!inside_brackets
) {
1487 const WCHAR
*tmp
= (*ptr
)++;
1489 /* Attempt to parse the port. */
1490 if(!parse_port(ptr
, data
, flags
)) {
1491 /* Windows expects there to be a valid port for known scheme types. */
1492 if(data
->scheme_type
!= URL_SCHEME_UNKNOWN
) {
1495 TRACE("(%p %p %x %x): Expected valid port\n", ptr
, data
, flags
, extras
);
1498 /* Windows gives up on trying to parse a port when it
1499 * encounters an invalid port.
1503 data
->host_len
= tmp
- data
->host
;
1507 } else if(**ptr
== '%' && (known_scheme
&& !is_res
)) {
1508 /* Has to be a legit % encoded value. */
1509 if(!check_pct_encoded(ptr
)) {
1515 } else if(is_res
&& is_forbidden_dos_path_char(**ptr
)) {
1519 } else if(**ptr
== ']')
1520 inside_brackets
= FALSE
;
1521 else if(**ptr
== '[')
1522 inside_brackets
= TRUE
;
1527 if(has_start_bracket
) {
1528 /* Make sure the last character of the host wasn't a ']'. */
1529 if(*(*ptr
-1) == ']') {
1530 TRACE("(%p %p %x %x): Expected an IP literal inside of the host\n",
1531 ptr
, data
, flags
, extras
);
1538 /* Don't overwrite our length if we found a port earlier. */
1540 data
->host_len
= *ptr
- data
->host
;
1542 /* If the host is empty, then it's an unknown host type. */
1543 if(data
->host_len
== 0 || is_res
)
1544 data
->host_type
= Uri_HOST_UNKNOWN
;
1546 data
->host_type
= Uri_HOST_DNS
;
1548 TRACE("(%p %p %x %x): Parsed reg-name. host=%s len=%d\n", ptr
, data
, flags
, extras
,
1549 debugstr_wn(data
->host
, data
->host_len
), data
->host_len
);
1553 /* Attempts to parse an IPv6 address out of the URI.
1555 * IPv6address = 6( h16 ":" ) ls32
1556 * / "::" 5( h16 ":" ) ls32
1557 * / [ h16 ] "::" 4( h16 ":" ) ls32
1558 * / [ *1( h16 ":" ) h16 ] "::" 3( h16 ":" ) ls32
1559 * / [ *2( h16 ":" ) h16 ] "::" 2( h16 ":" ) ls32
1560 * / [ *3( h16 ":" ) h16 ] "::" h16 ":" ls32
1561 * / [ *4( h16 ":" ) h16 ] "::" ls32
1562 * / [ *5( h16 ":" ) h16 ] "::" h16
1563 * / [ *6( h16 ":" ) h16 ] "::"
1565 * ls32 = ( h16 ":" h16 ) / IPv4address
1566 * ; least-significant 32 bits of address.
1569 * ; 16 bits of address represented in hexadecimal.
1571 * Modeled after google-url's 'DoParseIPv6' function.
1573 static BOOL
parse_ipv6address(const WCHAR
**ptr
, parse_data
*data
, DWORD flags
) {
1574 const WCHAR
*start
, *cur_start
;
1577 start
= cur_start
= *ptr
;
1578 memset(&ip
, 0, sizeof(ipv6_address
));
1581 /* Check if we're on the last character of the host. */
1582 BOOL is_end
= (is_auth_delim(**ptr
, data
->scheme_type
!= URL_SCHEME_UNKNOWN
)
1585 BOOL is_split
= (**ptr
== ':');
1586 BOOL is_elision
= (is_split
&& !is_end
&& *(*ptr
+1) == ':');
1588 /* Check if we're at the end of a component, or
1589 * if we're at the end of the IPv6 address.
1591 if(is_split
|| is_end
) {
1594 cur_len
= *ptr
- cur_start
;
1596 /* h16 can't have a length > 4. */
1600 TRACE("(%p %p %x): h16 component to long.\n",
1606 /* An h16 component can't have the length of 0 unless
1607 * the elision is at the beginning of the address, or
1608 * at the end of the address.
1610 if(!((*ptr
== start
&& is_elision
) ||
1611 (is_end
&& (*ptr
-2) == ip
.elision
))) {
1613 TRACE("(%p %p %x): IPv6 component cannot have a length of 0.\n",
1620 /* An IPv6 address can have no more than 8 h16 components. */
1621 if(ip
.h16_count
>= 8) {
1623 TRACE("(%p %p %x): Not a IPv6 address, to many h16 components.\n",
1628 ip
.components
[ip
.h16_count
].str
= cur_start
;
1629 ip
.components
[ip
.h16_count
].len
= cur_len
;
1631 TRACE("(%p %p %x): Found h16 component %s, len=%d, h16_count=%d\n",
1632 ptr
, data
, flags
, debugstr_wn(cur_start
, cur_len
), cur_len
,
1642 /* A IPv6 address can only have 1 elision ('::'). */
1646 TRACE("(%p %p %x): IPv6 address cannot have 2 elisions.\n",
1658 if(!check_ipv4address(ptr
, TRUE
)) {
1659 if(!is_hexdigit(**ptr
)) {
1660 /* Not a valid character for an IPv6 address. */
1665 /* Found an IPv4 address. */
1666 ip
.ipv4
= cur_start
;
1667 ip
.ipv4_len
= *ptr
- cur_start
;
1669 TRACE("(%p %p %x): Found an attached IPv4 address %s len=%d.\n",
1670 ptr
, data
, flags
, debugstr_wn(ip
.ipv4
, ip
.ipv4_len
),
1673 /* IPv4 addresses can only appear at the end of a IPv6. */
1679 compute_ipv6_comps_size(&ip
);
1681 /* Make sure the IPv6 address adds up to 16 bytes. */
1682 if(ip
.components_size
+ ip
.elision_size
!= 16) {
1684 TRACE("(%p %p %x): Invalid IPv6 address, did not add up to 16 bytes.\n",
1689 if(ip
.elision_size
== 2) {
1690 /* For some reason on Windows if an elision that represents
1691 * only one h16 component is encountered at the very begin or
1692 * end of an IPv6 address, Windows does not consider it a
1693 * valid IPv6 address.
1695 * Ex: [::2:3:4:5:6:7] is not valid, even though the sum
1696 * of all the components == 128bits.
1698 if(ip
.elision
< ip
.components
[0].str
||
1699 ip
.elision
> ip
.components
[ip
.h16_count
-1].str
) {
1701 TRACE("(%p %p %x): Invalid IPv6 address. Detected elision of 2 bytes at the beginning or end of the address.\n",
1707 data
->host_type
= Uri_HOST_IPV6
;
1708 data
->has_ipv6
= TRUE
;
1709 data
->ipv6_address
= ip
;
1711 TRACE("(%p %p %x): Found valid IPv6 literal %s len=%d\n",
1712 ptr
, data
, flags
, debugstr_wn(start
, *ptr
-start
),
1717 /* IPvFuture = "v" 1*HEXDIG "." 1*( unreserved / sub-delims / ":" ) */
1718 static BOOL
parse_ipvfuture(const WCHAR
**ptr
, parse_data
*data
, DWORD flags
) {
1719 const WCHAR
*start
= *ptr
;
1721 /* IPvFuture has to start with a 'v' or 'V'. */
1722 if(**ptr
!= 'v' && **ptr
!= 'V')
1725 /* Following the v there must be at least 1 hex digit. */
1727 if(!is_hexdigit(**ptr
)) {
1733 while(is_hexdigit(**ptr
))
1736 /* End of the hexdigit sequence must be a '.' */
1743 if(!is_unreserved(**ptr
) && !is_subdelim(**ptr
) && **ptr
!= ':') {
1749 while(is_unreserved(**ptr
) || is_subdelim(**ptr
) || **ptr
== ':')
1752 data
->host_type
= Uri_HOST_UNKNOWN
;
1754 TRACE("(%p %p %x): Parsed IPvFuture address %s len=%d\n", ptr
, data
, flags
,
1755 debugstr_wn(start
, *ptr
-start
), (int)(*ptr
-start
));
1760 /* IP-literal = "[" ( IPv6address / IPvFuture ) "]" */
1761 static BOOL
parse_ip_literal(const WCHAR
**ptr
, parse_data
*data
, DWORD flags
, DWORD extras
) {
1764 if(**ptr
!= '[' && !(extras
& ALLOW_BRACKETLESS_IP_LITERAL
)) {
1767 } else if(**ptr
== '[')
1770 if(!parse_ipv6address(ptr
, data
, flags
)) {
1771 if(extras
& SKIP_IP_FUTURE_CHECK
|| !parse_ipvfuture(ptr
, data
, flags
)) {
1778 if(**ptr
!= ']' && !(extras
& ALLOW_BRACKETLESS_IP_LITERAL
)) {
1782 } else if(!**ptr
&& extras
& ALLOW_BRACKETLESS_IP_LITERAL
) {
1783 /* The IP literal didn't contain brackets and was followed by
1784 * a NULL terminator, so no reason to even check the port.
1786 data
->host_len
= *ptr
- data
->host
;
1793 /* If a valid port is not found, then let it trickle down to
1796 if(!parse_port(ptr
, data
, flags
)) {
1802 data
->host_len
= *ptr
- data
->host
;
1807 /* Parses the host information from the URI.
1809 * host = IP-literal / IPv4address / reg-name
1811 static BOOL
parse_host(const WCHAR
**ptr
, parse_data
*data
, DWORD flags
, DWORD extras
) {
1812 if(!parse_ip_literal(ptr
, data
, flags
, extras
)) {
1813 if(!parse_ipv4address(ptr
, data
, flags
)) {
1814 if(!parse_reg_name(ptr
, data
, flags
, extras
)) {
1815 TRACE("(%p %p %x %x): Malformed URI, Unknown host type.\n",
1816 ptr
, data
, flags
, extras
);
1825 /* Parses the authority information from the URI.
1827 * authority = [ userinfo "@" ] host [ ":" port ]
1829 static BOOL
parse_authority(const WCHAR
**ptr
, parse_data
*data
, DWORD flags
) {
1830 parse_userinfo(ptr
, data
, flags
);
1832 /* Parsing the port will happen during one of the host parsing
1833 * routines (if the URI has a port).
1835 if(!parse_host(ptr
, data
, flags
, 0))
1841 /* Attempts to parse the path information of a hierarchical URI. */
1842 static BOOL
parse_path_hierarchical(const WCHAR
**ptr
, parse_data
*data
, DWORD flags
) {
1843 const WCHAR
*start
= *ptr
;
1844 static const WCHAR slash
[] = {'/',0};
1845 const BOOL is_file
= data
->scheme_type
== URL_SCHEME_FILE
;
1847 if(is_path_delim(**ptr
)) {
1848 if(data
->scheme_type
== URL_SCHEME_WILDCARD
&& !data
->must_have_path
) {
1851 } else if(!(flags
& Uri_CREATE_NO_CANONICALIZE
)) {
1852 /* If the path component is empty, then a '/' is added. */
1857 while(!is_path_delim(**ptr
)) {
1858 if(**ptr
== '%' && data
->scheme_type
!= URL_SCHEME_UNKNOWN
&& !is_file
) {
1859 if(!check_pct_encoded(ptr
)) {
1864 } else if(is_forbidden_dos_path_char(**ptr
) && is_file
&&
1865 (flags
& Uri_CREATE_FILE_USE_DOS_PATH
)) {
1866 /* File schemes with USE_DOS_PATH set aren't allowed to have
1867 * a '<' or '>' or '\"' appear in them.
1871 } else if(**ptr
== '\\') {
1872 /* Not allowed to have a backslash if NO_CANONICALIZE is set
1873 * and the scheme is known type (but not a file scheme).
1875 if(flags
& Uri_CREATE_NO_CANONICALIZE
) {
1876 if(data
->scheme_type
!= URL_SCHEME_FILE
&&
1877 data
->scheme_type
!= URL_SCHEME_UNKNOWN
) {
1887 /* The only time a URI doesn't have a path is when
1888 * the NO_CANONICALIZE flag is set and the raw URI
1889 * didn't contain one.
1896 data
->path_len
= *ptr
- start
;
1901 TRACE("(%p %p %x): Parsed path %s len=%d\n", ptr
, data
, flags
,
1902 debugstr_wn(data
->path
, data
->path_len
), data
->path_len
);
1904 TRACE("(%p %p %x): The URI contained no path\n", ptr
, data
, flags
);
1909 /* Parses the path of an opaque URI (much less strict then the parser
1910 * for a hierarchical URI).
1913 * Windows allows invalid % encoded data to appear in opaque URI paths
1914 * for unknown scheme types.
1916 * File schemes with USE_DOS_PATH set aren't allowed to have '<', '>', or '\"'
1919 static BOOL
parse_path_opaque(const WCHAR
**ptr
, parse_data
*data
, DWORD flags
) {
1920 const BOOL known_scheme
= data
->scheme_type
!= URL_SCHEME_UNKNOWN
;
1921 const BOOL is_file
= data
->scheme_type
== URL_SCHEME_FILE
;
1925 while(!is_path_delim(**ptr
)) {
1926 if(**ptr
== '%' && known_scheme
) {
1927 if(!check_pct_encoded(ptr
)) {
1933 } else if(is_forbidden_dos_path_char(**ptr
) && is_file
&&
1934 (flags
& Uri_CREATE_FILE_USE_DOS_PATH
)) {
1943 data
->path_len
= *ptr
- data
->path
;
1944 TRACE("(%p %p %x): Parsed opaque URI path %s len=%d\n", ptr
, data
, flags
,
1945 debugstr_wn(data
->path
, data
->path_len
), data
->path_len
);
1949 /* Determines how the URI should be parsed after the scheme information.
1951 * If the scheme is followed by "//", then it is treated as a hierarchical URI
1952 * which then the authority and path information will be parsed out. Otherwise, the
1953 * URI will be treated as an opaque URI which the authority information is not parsed
1956 * RFC 3896 definition of hier-part:
1958 * hier-part = "//" authority path-abempty
1963 * MSDN opaque URI definition:
1964 * scheme ":" path [ "#" fragment ]
1967 * If the URI is of an unknown scheme type and has a "//" following the scheme then it
1968 * is treated as a hierarchical URI, but, if the CREATE_NO_CRACK_UNKNOWN_SCHEMES flag is
1969 * set then it is considered an opaque URI regardless of what follows the scheme information
1970 * (per MSDN documentation).
1972 static BOOL
parse_hierpart(const WCHAR
**ptr
, parse_data
*data
, DWORD flags
) {
1973 const WCHAR
*start
= *ptr
;
1975 data
->must_have_path
= FALSE
;
1977 /* For javascript: URIs, simply set everything as a path */
1978 if(data
->scheme_type
== URL_SCHEME_JAVASCRIPT
) {
1980 data
->path_len
= strlenW(*ptr
);
1981 data
->is_opaque
= TRUE
;
1982 *ptr
+= data
->path_len
;
1986 /* Checks if the authority information needs to be parsed. */
1987 if(is_hierarchical_uri(ptr
, data
)) {
1988 /* Only treat it as a hierarchical URI if the scheme_type is known or
1989 * the Uri_CREATE_NO_CRACK_UNKNOWN_SCHEMES flag is not set.
1991 if(data
->scheme_type
!= URL_SCHEME_UNKNOWN
||
1992 !(flags
& Uri_CREATE_NO_CRACK_UNKNOWN_SCHEMES
)) {
1993 TRACE("(%p %p %x): Treating URI as an hierarchical URI.\n", ptr
, data
, flags
);
1994 data
->is_opaque
= FALSE
;
1996 if(data
->scheme_type
== URL_SCHEME_WILDCARD
&& !data
->has_implicit_scheme
) {
1997 if(**ptr
== '/' && *(*ptr
+1) == '/') {
1998 data
->must_have_path
= TRUE
;
2003 /* TODO: Handle hierarchical URI's, parse authority then parse the path. */
2004 if(!parse_authority(ptr
, data
, flags
))
2007 return parse_path_hierarchical(ptr
, data
, flags
);
2009 /* Reset ptr to its starting position so opaque path parsing
2010 * begins at the correct location.
2015 /* If it reaches here, then the URI will be treated as an opaque
2019 TRACE("(%p %p %x): Treating URI as an opaque URI.\n", ptr
, data
, flags
);
2021 data
->is_opaque
= TRUE
;
2022 if(!parse_path_opaque(ptr
, data
, flags
))
2028 /* Attempts to parse the query string from the URI.
2031 * If NO_DECODE_EXTRA_INFO flag is set, then invalid percent encoded
2032 * data is allowed to appear in the query string. For unknown scheme types
2033 * invalid percent encoded data is allowed to appear regardless.
2035 static BOOL
parse_query(const WCHAR
**ptr
, parse_data
*data
, DWORD flags
) {
2036 const BOOL known_scheme
= data
->scheme_type
!= URL_SCHEME_UNKNOWN
;
2039 TRACE("(%p %p %x): URI didn't contain a query string.\n", ptr
, data
, flags
);
2046 while(**ptr
&& **ptr
!= '#') {
2047 if(**ptr
== '%' && known_scheme
&&
2048 !(flags
& Uri_CREATE_NO_DECODE_EXTRA_INFO
)) {
2049 if(!check_pct_encoded(ptr
)) {
2060 data
->query_len
= *ptr
- data
->query
;
2062 TRACE("(%p %p %x): Parsed query string %s len=%d\n", ptr
, data
, flags
,
2063 debugstr_wn(data
->query
, data
->query_len
), data
->query_len
);
2067 /* Attempts to parse the fragment from the URI.
2070 * If NO_DECODE_EXTRA_INFO flag is set, then invalid percent encoded
2071 * data is allowed to appear in the query string. For unknown scheme types
2072 * invalid percent encoded data is allowed to appear regardless.
2074 static BOOL
parse_fragment(const WCHAR
**ptr
, parse_data
*data
, DWORD flags
) {
2075 const BOOL known_scheme
= data
->scheme_type
!= URL_SCHEME_UNKNOWN
;
2078 TRACE("(%p %p %x): URI didn't contain a fragment.\n", ptr
, data
, flags
);
2082 data
->fragment
= *ptr
;
2086 if(**ptr
== '%' && known_scheme
&&
2087 !(flags
& Uri_CREATE_NO_DECODE_EXTRA_INFO
)) {
2088 if(!check_pct_encoded(ptr
)) {
2089 *ptr
= data
->fragment
;
2090 data
->fragment
= NULL
;
2099 data
->fragment_len
= *ptr
- data
->fragment
;
2101 TRACE("(%p %p %x): Parsed fragment %s len=%d\n", ptr
, data
, flags
,
2102 debugstr_wn(data
->fragment
, data
->fragment_len
), data
->fragment_len
);
2106 /* Parses and validates the components of the specified by data->uri
2107 * and stores the information it parses into 'data'.
2109 * Returns TRUE if it successfully parsed the URI. False otherwise.
2111 static BOOL
parse_uri(parse_data
*data
, DWORD flags
) {
2118 TRACE("(%p %x): BEGINNING TO PARSE URI %s.\n", data
, flags
, debugstr_w(data
->uri
));
2120 if(!parse_scheme(pptr
, data
, flags
, 0))
2123 if(!parse_hierpart(pptr
, data
, flags
))
2126 if(!parse_query(pptr
, data
, flags
))
2129 if(!parse_fragment(pptr
, data
, flags
))
2132 TRACE("(%p %x): FINISHED PARSING URI.\n", data
, flags
);
2136 static BOOL
canonicalize_username(const parse_data
*data
, Uri
*uri
, DWORD flags
, BOOL computeOnly
) {
2139 if(!data
->username
) {
2140 uri
->userinfo_start
= -1;
2144 uri
->userinfo_start
= uri
->canon_len
;
2145 for(ptr
= data
->username
; ptr
< data
->username
+data
->username_len
; ++ptr
) {
2147 /* Only decode % encoded values for known scheme types. */
2148 if(data
->scheme_type
!= URL_SCHEME_UNKNOWN
) {
2149 /* See if the value really needs decoding. */
2150 WCHAR val
= decode_pct_val(ptr
);
2151 if(is_unreserved(val
)) {
2153 uri
->canon_uri
[uri
->canon_len
] = val
;
2157 /* Move pass the hex characters. */
2162 } else if(!is_reserved(*ptr
) && !is_unreserved(*ptr
) && *ptr
!= '\\') {
2163 /* Only percent encode forbidden characters if the NO_ENCODE_FORBIDDEN_CHARACTERS flag
2166 if(!(flags
& Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS
)) {
2168 pct_encode_val(*ptr
, uri
->canon_uri
+ uri
->canon_len
);
2170 uri
->canon_len
+= 3;
2176 /* Nothing special, so just copy the character over. */
2177 uri
->canon_uri
[uri
->canon_len
] = *ptr
;
2184 static BOOL
canonicalize_password(const parse_data
*data
, Uri
*uri
, DWORD flags
, BOOL computeOnly
) {
2187 if(!data
->password
) {
2188 uri
->userinfo_split
= -1;
2192 if(uri
->userinfo_start
== -1)
2193 /* Has a password, but, doesn't have a username. */
2194 uri
->userinfo_start
= uri
->canon_len
;
2196 uri
->userinfo_split
= uri
->canon_len
- uri
->userinfo_start
;
2198 /* Add the ':' to the userinfo component. */
2200 uri
->canon_uri
[uri
->canon_len
] = ':';
2203 for(ptr
= data
->password
; ptr
< data
->password
+data
->password_len
; ++ptr
) {
2205 /* Only decode % encoded values for known scheme types. */
2206 if(data
->scheme_type
!= URL_SCHEME_UNKNOWN
) {
2207 /* See if the value really needs decoding. */
2208 WCHAR val
= decode_pct_val(ptr
);
2209 if(is_unreserved(val
)) {
2211 uri
->canon_uri
[uri
->canon_len
] = val
;
2215 /* Move pass the hex characters. */
2220 } else if(!is_reserved(*ptr
) && !is_unreserved(*ptr
) && *ptr
!= '\\') {
2221 /* Only percent encode forbidden characters if the NO_ENCODE_FORBIDDEN_CHARACTERS flag
2224 if(!(flags
& Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS
)) {
2226 pct_encode_val(*ptr
, uri
->canon_uri
+ uri
->canon_len
);
2228 uri
->canon_len
+= 3;
2234 /* Nothing special, so just copy the character over. */
2235 uri
->canon_uri
[uri
->canon_len
] = *ptr
;
2242 /* Canonicalizes the userinfo of the URI represented by the parse_data.
2244 * Canonicalization of the userinfo is a simple process. If there are any percent
2245 * encoded characters that fall in the "unreserved" character set, they are decoded
2246 * to their actual value. If a character is not in the "unreserved" or "reserved" sets
2247 * then it is percent encoded. Other than that the characters are copied over without
2250 static BOOL
canonicalize_userinfo(const parse_data
*data
, Uri
*uri
, DWORD flags
, BOOL computeOnly
) {
2251 uri
->userinfo_start
= uri
->userinfo_split
= -1;
2252 uri
->userinfo_len
= 0;
2254 if(!data
->username
&& !data
->password
)
2255 /* URI doesn't have userinfo, so nothing to do here. */
2258 if(!canonicalize_username(data
, uri
, flags
, computeOnly
))
2261 if(!canonicalize_password(data
, uri
, flags
, computeOnly
))
2264 uri
->userinfo_len
= uri
->canon_len
- uri
->userinfo_start
;
2266 TRACE("(%p %p %x %d): Canonicalized userinfo, userinfo_start=%d, userinfo=%s, userinfo_split=%d userinfo_len=%d.\n",
2267 data
, uri
, flags
, computeOnly
, uri
->userinfo_start
, debugstr_wn(uri
->canon_uri
+ uri
->userinfo_start
, uri
->userinfo_len
),
2268 uri
->userinfo_split
, uri
->userinfo_len
);
2270 /* Now insert the '@' after the userinfo. */
2272 uri
->canon_uri
[uri
->canon_len
] = '@';
2278 /* Attempts to canonicalize a reg_name.
2280 * Things that happen:
2281 * 1) If Uri_CREATE_NO_CANONICALIZE flag is not set, then the reg_name is
2282 * lower cased. Unless it's an unknown scheme type, which case it's
2283 * no lower cased regardless.
2285 * 2) Unreserved % encoded characters are decoded for known
2288 * 3) Forbidden characters are % encoded as long as
2289 * Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS flag is not set and
2290 * it isn't an unknown scheme type.
2292 * 4) If it's a file scheme and the host is "localhost" it's removed.
2294 * 5) If it's a file scheme and Uri_CREATE_FILE_USE_DOS_PATH is set,
2295 * then the UNC path characters are added before the host name.
2297 static BOOL
canonicalize_reg_name(const parse_data
*data
, Uri
*uri
,
2298 DWORD flags
, BOOL computeOnly
) {
2299 static const WCHAR localhostW
[] =
2300 {'l','o','c','a','l','h','o','s','t',0};
2302 const BOOL known_scheme
= data
->scheme_type
!= URL_SCHEME_UNKNOWN
;
2304 if(data
->scheme_type
== URL_SCHEME_FILE
&&
2305 data
->host_len
== lstrlenW(localhostW
)) {
2306 if(!StrCmpNIW(data
->host
, localhostW
, data
->host_len
)) {
2307 uri
->host_start
= -1;
2309 uri
->host_type
= Uri_HOST_UNKNOWN
;
2314 if(data
->scheme_type
== URL_SCHEME_FILE
&& flags
& Uri_CREATE_FILE_USE_DOS_PATH
) {
2316 uri
->canon_uri
[uri
->canon_len
] = '\\';
2317 uri
->canon_uri
[uri
->canon_len
+1] = '\\';
2319 uri
->canon_len
+= 2;
2320 uri
->authority_start
= uri
->canon_len
;
2323 uri
->host_start
= uri
->canon_len
;
2325 for(ptr
= data
->host
; ptr
< data
->host
+data
->host_len
; ++ptr
) {
2326 if(*ptr
== '%' && known_scheme
) {
2327 WCHAR val
= decode_pct_val(ptr
);
2328 if(is_unreserved(val
)) {
2329 /* If NO_CANONICALIZE is not set, then windows lower cases the
2332 if(!(flags
& Uri_CREATE_NO_CANONICALIZE
) && isupperW(val
)) {
2334 uri
->canon_uri
[uri
->canon_len
] = tolowerW(val
);
2337 uri
->canon_uri
[uri
->canon_len
] = val
;
2341 /* Skip past the % encoded character. */
2345 /* Just copy the % over. */
2347 uri
->canon_uri
[uri
->canon_len
] = *ptr
;
2350 } else if(*ptr
== '\\') {
2351 /* Only unknown scheme types could have made it here with a '\\' in the host name. */
2353 uri
->canon_uri
[uri
->canon_len
] = *ptr
;
2355 } else if(!(flags
& Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS
) &&
2356 !is_unreserved(*ptr
) && !is_reserved(*ptr
) && known_scheme
) {
2358 pct_encode_val(*ptr
, uri
->canon_uri
+uri
->canon_len
);
2360 /* The percent encoded value gets lower cased also. */
2361 if(!(flags
& Uri_CREATE_NO_CANONICALIZE
)) {
2362 uri
->canon_uri
[uri
->canon_len
+1] = tolowerW(uri
->canon_uri
[uri
->canon_len
+1]);
2363 uri
->canon_uri
[uri
->canon_len
+2] = tolowerW(uri
->canon_uri
[uri
->canon_len
+2]);
2367 uri
->canon_len
+= 3;
2370 if(!(flags
& Uri_CREATE_NO_CANONICALIZE
) && known_scheme
)
2371 uri
->canon_uri
[uri
->canon_len
] = tolowerW(*ptr
);
2373 uri
->canon_uri
[uri
->canon_len
] = *ptr
;
2380 uri
->host_len
= uri
->canon_len
- uri
->host_start
;
2383 TRACE("(%p %p %x %d): Canonicalize reg_name=%s len=%d\n", data
, uri
, flags
,
2384 computeOnly
, debugstr_wn(uri
->canon_uri
+uri
->host_start
, uri
->host_len
),
2388 find_domain_name(uri
->canon_uri
+uri
->host_start
, uri
->host_len
,
2389 &(uri
->domain_offset
));
2394 /* Attempts to canonicalize an implicit IPv4 address. */
2395 static BOOL
canonicalize_implicit_ipv4address(const parse_data
*data
, Uri
*uri
, DWORD flags
, BOOL computeOnly
) {
2396 uri
->host_start
= uri
->canon_len
;
2398 TRACE("%u\n", data
->implicit_ipv4
);
2399 /* For unknown scheme types Windows doesn't convert
2400 * the value into an IP address, but it still considers
2401 * it an IPv4 address.
2403 if(data
->scheme_type
== URL_SCHEME_UNKNOWN
) {
2405 memcpy(uri
->canon_uri
+uri
->canon_len
, data
->host
, data
->host_len
*sizeof(WCHAR
));
2406 uri
->canon_len
+= data
->host_len
;
2409 uri
->canon_len
+= ui2ipv4(uri
->canon_uri
+uri
->canon_len
, data
->implicit_ipv4
);
2411 uri
->canon_len
+= ui2ipv4(NULL
, data
->implicit_ipv4
);
2414 uri
->host_len
= uri
->canon_len
- uri
->host_start
;
2415 uri
->host_type
= Uri_HOST_IPV4
;
2418 TRACE("%p %p %x %d): Canonicalized implicit IP address=%s len=%d\n",
2419 data
, uri
, flags
, computeOnly
,
2420 debugstr_wn(uri
->canon_uri
+uri
->host_start
, uri
->host_len
),
2426 /* Attempts to canonicalize an IPv4 address.
2428 * If the parse_data represents a URI that has an implicit IPv4 address
2429 * (ex. http://256/, this function will convert 256 into 0.0.1.0). If
2430 * the implicit IP address exceeds the value of UINT_MAX (maximum value
2431 * for an IPv4 address) it's canonicalized as if it were a reg-name.
2433 * If the parse_data contains a partial or full IPv4 address it normalizes it.
2434 * A partial IPv4 address is something like "192.0" and would be normalized to
2435 * "192.0.0.0". With a full (or partial) IPv4 address like "192.002.01.003" would
2436 * be normalized to "192.2.1.3".
2439 * Windows ONLY normalizes IPv4 address for known scheme types (one that isn't
2440 * URL_SCHEME_UNKNOWN). For unknown scheme types, it simply copies the data from
2441 * the original URI into the canonicalized URI, but, it still recognizes URI's
2442 * host type as HOST_IPV4.
2444 static BOOL
canonicalize_ipv4address(const parse_data
*data
, Uri
*uri
, DWORD flags
, BOOL computeOnly
) {
2445 if(data
->has_implicit_ip
)
2446 return canonicalize_implicit_ipv4address(data
, uri
, flags
, computeOnly
);
2448 uri
->host_start
= uri
->canon_len
;
2450 /* Windows only normalizes for known scheme types. */
2451 if(data
->scheme_type
!= URL_SCHEME_UNKNOWN
) {
2452 /* parse_data contains a partial or full IPv4 address, so normalize it. */
2453 DWORD i
, octetDigitCount
= 0, octetCount
= 0;
2454 BOOL octetHasDigit
= FALSE
;
2456 for(i
= 0; i
< data
->host_len
; ++i
) {
2457 if(data
->host
[i
] == '0' && !octetHasDigit
) {
2458 /* Can ignore leading zeros if:
2459 * 1) It isn't the last digit of the octet.
2460 * 2) i+1 != data->host_len
2463 if(octetDigitCount
== 2 ||
2464 i
+1 == data
->host_len
||
2465 data
->host
[i
+1] == '.') {
2467 uri
->canon_uri
[uri
->canon_len
] = data
->host
[i
];
2469 TRACE("Adding zero\n");
2471 } else if(data
->host
[i
] == '.') {
2473 uri
->canon_uri
[uri
->canon_len
] = data
->host
[i
];
2476 octetDigitCount
= 0;
2477 octetHasDigit
= FALSE
;
2481 uri
->canon_uri
[uri
->canon_len
] = data
->host
[i
];
2485 octetHasDigit
= TRUE
;
2489 /* Make sure the canonicalized IP address has 4 dec-octets.
2490 * If doesn't add "0" ones until there is 4;
2492 for( ; octetCount
< 3; ++octetCount
) {
2494 uri
->canon_uri
[uri
->canon_len
] = '.';
2495 uri
->canon_uri
[uri
->canon_len
+1] = '0';
2498 uri
->canon_len
+= 2;
2501 /* Windows doesn't normalize addresses in unknown schemes. */
2503 memcpy(uri
->canon_uri
+uri
->canon_len
, data
->host
, data
->host_len
*sizeof(WCHAR
));
2504 uri
->canon_len
+= data
->host_len
;
2507 uri
->host_len
= uri
->canon_len
- uri
->host_start
;
2509 TRACE("(%p %p %x %d): Canonicalized IPv4 address, ip=%s len=%d\n",
2510 data
, uri
, flags
, computeOnly
,
2511 debugstr_wn(uri
->canon_uri
+uri
->host_start
, uri
->host_len
),
2518 /* Attempts to canonicalize the IPv6 address of the URI.
2520 * Multiple things happen during the canonicalization of an IPv6 address:
2521 * 1) Any leading zero's in a h16 component are removed.
2522 * Ex: [0001:0022::] -> [1:22::]
2524 * 2) The longest sequence of zero h16 components are compressed
2525 * into a "::" (elision). If there's a tie, the first is chosen.
2527 * Ex: [0:0:0:0:1:6:7:8] -> [::1:6:7:8]
2528 * [0:0:0:0:1:2::] -> [::1:2:0:0]
2529 * [0:0:1:2:0:0:7:8] -> [::1:2:0:0:7:8]
2531 * 3) If an IPv4 address is attached to the IPv6 address, it's
2533 * Ex: [::001.002.022.000] -> [::1.2.22.0]
2535 * 4) If an elision is present, but, only represents one h16 component
2538 * Ex: [1::2:3:4:5:6:7] -> [1:0:2:3:4:5:6:7]
2540 * 5) If the IPv6 address contains an IPv4 address and there exists
2541 * at least 1 non-zero h16 component the IPv4 address is converted
2542 * into two h16 components, otherwise it's normalized and kept as is.
2544 * Ex: [::192.200.003.4] -> [::192.200.3.4]
2545 * [ffff::192.200.003.4] -> [ffff::c0c8:3041]
2548 * For unknown scheme types Windows simply copies the address over without any
2551 * IPv4 address can be included in an elision if all its components are 0's.
2553 static BOOL
canonicalize_ipv6address(const parse_data
*data
, Uri
*uri
,
2554 DWORD flags
, BOOL computeOnly
) {
2555 uri
->host_start
= uri
->canon_len
;
2557 if(data
->scheme_type
== URL_SCHEME_UNKNOWN
) {
2559 memcpy(uri
->canon_uri
+uri
->canon_len
, data
->host
, data
->host_len
*sizeof(WCHAR
));
2560 uri
->canon_len
+= data
->host_len
;
2564 DWORD i
, elision_len
;
2566 if(!ipv6_to_number(&(data
->ipv6_address
), values
)) {
2567 TRACE("(%p %p %x %d): Failed to compute numerical value for IPv6 address.\n",
2568 data
, uri
, flags
, computeOnly
);
2573 uri
->canon_uri
[uri
->canon_len
] = '[';
2576 /* Find where the elision should occur (if any). */
2577 compute_elision_location(&(data
->ipv6_address
), values
, &elision_start
, &elision_len
);
2579 TRACE("%p %p %x %d): Elision starts at %d, len=%u\n", data
, uri
, flags
,
2580 computeOnly
, elision_start
, elision_len
);
2582 for(i
= 0; i
< 8; ++i
) {
2583 BOOL in_elision
= (elision_start
> -1 && i
>= elision_start
&&
2584 i
< elision_start
+elision_len
);
2585 BOOL do_ipv4
= (i
== 6 && data
->ipv6_address
.ipv4
&& !in_elision
&&
2586 data
->ipv6_address
.h16_count
== 0);
2588 if(i
== elision_start
) {
2590 uri
->canon_uri
[uri
->canon_len
] = ':';
2591 uri
->canon_uri
[uri
->canon_len
+1] = ':';
2593 uri
->canon_len
+= 2;
2596 /* We can ignore the current component if we're in the elision. */
2600 /* We only add a ':' if we're not at i == 0, or when we're at
2601 * the very end of elision range since the ':' colon was handled
2602 * earlier. Otherwise we would end up with ":::" after elision.
2604 if(i
!= 0 && !(elision_start
> -1 && i
== elision_start
+elision_len
)) {
2606 uri
->canon_uri
[uri
->canon_len
] = ':';
2614 /* Combine the two parts of the IPv4 address values. */
2620 len
= ui2ipv4(uri
->canon_uri
+uri
->canon_len
, val
);
2622 len
= ui2ipv4(NULL
, val
);
2624 uri
->canon_len
+= len
;
2627 /* Write a regular h16 component to the URI. */
2629 /* Short circuit for the trivial case. */
2630 if(values
[i
] == 0) {
2632 uri
->canon_uri
[uri
->canon_len
] = '0';
2635 static const WCHAR formatW
[] = {'%','x',0};
2638 uri
->canon_len
+= sprintfW(uri
->canon_uri
+uri
->canon_len
,
2639 formatW
, values
[i
]);
2642 uri
->canon_len
+= sprintfW(tmp
, formatW
, values
[i
]);
2648 /* Add the closing ']'. */
2650 uri
->canon_uri
[uri
->canon_len
] = ']';
2654 uri
->host_len
= uri
->canon_len
- uri
->host_start
;
2657 TRACE("(%p %p %x %d): Canonicalized IPv6 address %s, len=%d\n", data
, uri
, flags
,
2658 computeOnly
, debugstr_wn(uri
->canon_uri
+uri
->host_start
, uri
->host_len
),
2664 /* Attempts to canonicalize the host of the URI (if any). */
2665 static BOOL
canonicalize_host(const parse_data
*data
, Uri
*uri
, DWORD flags
, BOOL computeOnly
) {
2666 uri
->host_start
= -1;
2668 uri
->domain_offset
= -1;
2671 switch(data
->host_type
) {
2673 uri
->host_type
= Uri_HOST_DNS
;
2674 if(!canonicalize_reg_name(data
, uri
, flags
, computeOnly
))
2679 uri
->host_type
= Uri_HOST_IPV4
;
2680 if(!canonicalize_ipv4address(data
, uri
, flags
, computeOnly
))
2685 if(!canonicalize_ipv6address(data
, uri
, flags
, computeOnly
))
2688 uri
->host_type
= Uri_HOST_IPV6
;
2690 case Uri_HOST_UNKNOWN
:
2691 if(data
->host_len
> 0 || data
->scheme_type
!= URL_SCHEME_FILE
) {
2692 uri
->host_start
= uri
->canon_len
;
2694 /* Nothing happens to unknown host types. */
2696 memcpy(uri
->canon_uri
+uri
->canon_len
, data
->host
, data
->host_len
*sizeof(WCHAR
));
2697 uri
->canon_len
+= data
->host_len
;
2698 uri
->host_len
= data
->host_len
;
2701 uri
->host_type
= Uri_HOST_UNKNOWN
;
2704 FIXME("(%p %p %x %d): Canonicalization for host type %d not supported.\n", data
,
2705 uri
, flags
, computeOnly
, data
->host_type
);
2713 static BOOL
canonicalize_port(const parse_data
*data
, Uri
*uri
, DWORD flags
, BOOL computeOnly
) {
2714 BOOL has_default_port
= FALSE
;
2715 USHORT default_port
= 0;
2718 uri
->port_offset
= -1;
2720 /* Check if the scheme has a default port. */
2721 for(i
= 0; i
< sizeof(default_ports
)/sizeof(default_ports
[0]); ++i
) {
2722 if(default_ports
[i
].scheme
== data
->scheme_type
) {
2723 has_default_port
= TRUE
;
2724 default_port
= default_ports
[i
].port
;
2729 uri
->has_port
= data
->has_port
|| has_default_port
;
2732 * 1) Has a port which is the default port.
2733 * 2) Has a port (not the default).
2734 * 3) Doesn't have a port, but, scheme has a default port.
2737 if(has_default_port
&& data
->has_port
&& data
->port_value
== default_port
) {
2738 /* If it's the default port and this flag isn't set, don't do anything. */
2739 if(flags
& Uri_CREATE_NO_CANONICALIZE
) {
2740 uri
->port_offset
= uri
->canon_len
-uri
->authority_start
;
2742 uri
->canon_uri
[uri
->canon_len
] = ':';
2746 /* Copy the original port over. */
2748 memcpy(uri
->canon_uri
+uri
->canon_len
, data
->port
, data
->port_len
*sizeof(WCHAR
));
2749 uri
->canon_len
+= data
->port_len
;
2752 uri
->canon_len
+= ui2str(uri
->canon_uri
+uri
->canon_len
, data
->port_value
);
2754 uri
->canon_len
+= ui2str(NULL
, data
->port_value
);
2758 uri
->port
= default_port
;
2759 } else if(data
->has_port
) {
2760 uri
->port_offset
= uri
->canon_len
-uri
->authority_start
;
2762 uri
->canon_uri
[uri
->canon_len
] = ':';
2765 if(flags
& Uri_CREATE_NO_CANONICALIZE
&& data
->port
) {
2766 /* Copy the original over without changes. */
2768 memcpy(uri
->canon_uri
+uri
->canon_len
, data
->port
, data
->port_len
*sizeof(WCHAR
));
2769 uri
->canon_len
+= data
->port_len
;
2772 uri
->canon_len
+= ui2str(uri
->canon_uri
+uri
->canon_len
, data
->port_value
);
2774 uri
->canon_len
+= ui2str(NULL
, data
->port_value
);
2777 uri
->port
= data
->port_value
;
2778 } else if(has_default_port
)
2779 uri
->port
= default_port
;
2784 /* Canonicalizes the authority of the URI represented by the parse_data. */
2785 static BOOL
canonicalize_authority(const parse_data
*data
, Uri
*uri
, DWORD flags
, BOOL computeOnly
) {
2786 uri
->authority_start
= uri
->canon_len
;
2787 uri
->authority_len
= 0;
2789 if(!canonicalize_userinfo(data
, uri
, flags
, computeOnly
))
2792 if(!canonicalize_host(data
, uri
, flags
, computeOnly
))
2795 if(!canonicalize_port(data
, uri
, flags
, computeOnly
))
2798 if(uri
->host_start
!= -1 || (data
->is_relative
&& (data
->password
|| data
->username
)))
2799 uri
->authority_len
= uri
->canon_len
- uri
->authority_start
;
2801 uri
->authority_start
= -1;
2806 /* Attempts to canonicalize the path of a hierarchical URI.
2808 * Things that happen:
2809 * 1). Forbidden characters are percent encoded, unless the NO_ENCODE_FORBIDDEN
2810 * flag is set or it's a file URI. Forbidden characters are always encoded
2811 * for file schemes regardless and forbidden characters are never encoded
2812 * for unknown scheme types.
2814 * 2). For known scheme types '\\' are changed to '/'.
2816 * 3). Percent encoded, unreserved characters are decoded to their actual values.
2817 * Unless the scheme type is unknown. For file schemes any percent encoded
2818 * character in the unreserved or reserved set is decoded.
2820 * 4). For File schemes if the path is starts with a drive letter and doesn't
2821 * start with a '/' then one is appended.
2822 * Ex: file://c:/test.mp3 -> file:///c:/test.mp3
2824 * 5). Dot segments are removed from the path for all scheme types
2825 * unless NO_CANONICALIZE flag is set. Dot segments aren't removed
2826 * for wildcard scheme types.
2829 * file://c:/test%20test -> file:///c:/test%2520test
2830 * file://c:/test%3Etest -> file:///c:/test%253Etest
2831 * if Uri_CREATE_FILE_USE_DOS_PATH is not set:
2832 * file:///c:/test%20test -> file:///c:/test%20test
2833 * file:///c:/test%test -> file:///c:/test%25test
2835 static DWORD
canonicalize_path_hierarchical(const WCHAR
*path
, DWORD path_len
, URL_SCHEME scheme_type
, BOOL has_host
, DWORD flags
,
2837 const BOOL known_scheme
= scheme_type
!= URL_SCHEME_UNKNOWN
;
2838 const BOOL is_file
= scheme_type
== URL_SCHEME_FILE
;
2839 const BOOL is_res
= scheme_type
== URL_SCHEME_RES
;
2841 BOOL escape_pct
= FALSE
;
2849 if(is_file
&& !has_host
) {
2850 /* Check if a '/' needs to be appended for the file scheme. */
2851 if(path_len
> 1 && is_drive_path(ptr
) && !(flags
& Uri_CREATE_FILE_USE_DOS_PATH
)) {
2853 ret_path
[len
] = '/';
2856 } else if(*ptr
== '/') {
2857 if(!(flags
& Uri_CREATE_FILE_USE_DOS_PATH
)) {
2858 /* Copy the extra '/' over. */
2860 ret_path
[len
] = '/';
2866 if(is_drive_path(ptr
)) {
2868 ret_path
[len
] = *ptr
;
2869 /* If there's a '|' after the drive letter, convert it to a ':'. */
2870 ret_path
[len
+1] = ':';
2877 if(!is_file
&& *path
&& *path
!= '/') {
2878 /* Prepend a '/' to the path if it doesn't have one. */
2880 ret_path
[len
] = '/';
2884 for(; ptr
< path
+path_len
; ++ptr
) {
2885 BOOL do_default_action
= TRUE
;
2887 if(*ptr
== '%' && !is_res
) {
2888 const WCHAR
*tmp
= ptr
;
2891 /* Check if the % represents a valid encoded char, or if it needs encoding. */
2892 BOOL force_encode
= !check_pct_encoded(&tmp
) && is_file
&& !(flags
&Uri_CREATE_FILE_USE_DOS_PATH
);
2893 val
= decode_pct_val(ptr
);
2895 if(force_encode
|| escape_pct
) {
2896 /* Escape the percent sign in the file URI. */
2898 pct_encode_val(*ptr
, ret_path
+len
);
2900 do_default_action
= FALSE
;
2901 } else if((is_unreserved(val
) && known_scheme
) ||
2902 (is_file
&& (is_unreserved(val
) || is_reserved(val
) ||
2903 (val
&& flags
&Uri_CREATE_FILE_USE_DOS_PATH
&& !is_forbidden_dos_path_char(val
))))) {
2905 ret_path
[len
] = val
;
2911 } else if(*ptr
== '/' && is_file
&& (flags
& Uri_CREATE_FILE_USE_DOS_PATH
)) {
2912 /* Convert the '/' back to a '\\'. */
2914 ret_path
[len
] = '\\';
2916 do_default_action
= FALSE
;
2917 } else if(*ptr
== '\\' && known_scheme
) {
2918 if(!(is_file
&& (flags
& Uri_CREATE_FILE_USE_DOS_PATH
))) {
2919 /* Convert '\\' into a '/'. */
2921 ret_path
[len
] = '/';
2923 do_default_action
= FALSE
;
2925 } else if(known_scheme
&& !is_res
&& !is_unreserved(*ptr
) && !is_reserved(*ptr
) &&
2926 (!(flags
& Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS
) || is_file
)) {
2927 if(!(is_file
&& (flags
& Uri_CREATE_FILE_USE_DOS_PATH
))) {
2928 /* Escape the forbidden character. */
2930 pct_encode_val(*ptr
, ret_path
+len
);
2932 do_default_action
= FALSE
;
2936 if(do_default_action
) {
2938 ret_path
[len
] = *ptr
;
2943 /* Removing the dot segments only happens when it's not in
2944 * computeOnly mode and it's not a wildcard scheme. File schemes
2945 * with USE_DOS_PATH set don't get dot segments removed.
2947 if(!(is_file
&& (flags
& Uri_CREATE_FILE_USE_DOS_PATH
)) &&
2948 scheme_type
!= URL_SCHEME_WILDCARD
) {
2949 if(!(flags
& Uri_CREATE_NO_CANONICALIZE
) && ret_path
) {
2950 /* Remove the dot segments (if any) and reset everything to the new
2953 len
= remove_dot_segments(ret_path
, len
);
2958 TRACE("Canonicalized path %s len=%d\n", debugstr_wn(ret_path
, len
), len
);
2962 /* Attempts to canonicalize the path for an opaque URI.
2964 * For known scheme types:
2965 * 1) forbidden characters are percent encoded if
2966 * NO_ENCODE_FORBIDDEN_CHARACTERS isn't set.
2968 * 2) Percent encoded, unreserved characters are decoded
2969 * to their actual values, for known scheme types.
2971 * 3) '\\' are changed to '/' for known scheme types
2972 * except for mailto schemes.
2974 * 4) For file schemes, if USE_DOS_PATH is set all '/'
2975 * are converted to backslashes.
2977 * 5) For file schemes, if USE_DOS_PATH isn't set all '\'
2978 * are converted to forward slashes.
2980 static BOOL
canonicalize_path_opaque(const parse_data
*data
, Uri
*uri
, DWORD flags
, BOOL computeOnly
) {
2982 const BOOL known_scheme
= data
->scheme_type
!= URL_SCHEME_UNKNOWN
;
2983 const BOOL is_file
= data
->scheme_type
== URL_SCHEME_FILE
;
2984 const BOOL is_mk
= data
->scheme_type
== URL_SCHEME_MK
;
2987 uri
->path_start
= -1;
2992 uri
->path_start
= uri
->canon_len
;
2995 /* hijack this flag for SCHEME_MK to tell the function when to start
2996 * converting slashes */
2997 flags
|= Uri_CREATE_FILE_USE_DOS_PATH
;
3000 /* For javascript: URIs, simply copy path part without any canonicalization */
3001 if(data
->scheme_type
== URL_SCHEME_JAVASCRIPT
) {
3003 memcpy(uri
->canon_uri
+uri
->canon_len
, data
->path
, data
->path_len
*sizeof(WCHAR
));
3004 uri
->path_len
= data
->path_len
;
3005 uri
->canon_len
+= data
->path_len
;
3009 /* Windows doesn't allow a "//" to appear after the scheme
3010 * of a URI, if it's an opaque URI.
3012 if(data
->scheme
&& *(data
->path
) == '/' && *(data
->path
+1) == '/') {
3013 /* So it inserts a "/." before the "//" if it exists. */
3015 uri
->canon_uri
[uri
->canon_len
] = '/';
3016 uri
->canon_uri
[uri
->canon_len
+1] = '.';
3019 uri
->canon_len
+= 2;
3022 for(ptr
= data
->path
; ptr
< data
->path
+data
->path_len
; ++ptr
) {
3023 BOOL do_default_action
= TRUE
;
3025 if(*ptr
== '%' && known_scheme
) {
3026 WCHAR val
= decode_pct_val(ptr
);
3028 if(is_unreserved(val
)) {
3030 uri
->canon_uri
[uri
->canon_len
] = val
;
3036 } else if(*ptr
== '/' && is_file
&& (flags
& Uri_CREATE_FILE_USE_DOS_PATH
)) {
3038 uri
->canon_uri
[uri
->canon_len
] = '\\';
3040 do_default_action
= FALSE
;
3041 } else if(*ptr
== '\\') {
3042 if((data
->is_relative
|| is_mk
|| is_file
) && !(flags
& Uri_CREATE_FILE_USE_DOS_PATH
)) {
3043 /* Convert to a '/'. */
3045 uri
->canon_uri
[uri
->canon_len
] = '/';
3047 do_default_action
= FALSE
;
3049 } else if(is_mk
&& *ptr
== ':' && ptr
+ 1 < data
->path
+ data
->path_len
&& *(ptr
+ 1) == ':') {
3050 flags
&= ~Uri_CREATE_FILE_USE_DOS_PATH
;
3051 } else if(known_scheme
&& !is_unreserved(*ptr
) && !is_reserved(*ptr
) &&
3052 !(flags
& Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS
)) {
3053 if(!(is_file
&& (flags
& Uri_CREATE_FILE_USE_DOS_PATH
))) {
3055 pct_encode_val(*ptr
, uri
->canon_uri
+uri
->canon_len
);
3056 uri
->canon_len
+= 3;
3057 do_default_action
= FALSE
;
3061 if(do_default_action
) {
3063 uri
->canon_uri
[uri
->canon_len
] = *ptr
;
3068 if(is_mk
&& !computeOnly
&& !(flags
& Uri_CREATE_NO_CANONICALIZE
)) {
3069 DWORD new_len
= remove_dot_segments(uri
->canon_uri
+ uri
->path_start
,
3070 uri
->canon_len
- uri
->path_start
);
3071 uri
->canon_len
= uri
->path_start
+ new_len
;
3074 uri
->path_len
= uri
->canon_len
- uri
->path_start
;
3077 TRACE("(%p %p %x %d): Canonicalized opaque URI path %s len=%d\n", data
, uri
, flags
, computeOnly
,
3078 debugstr_wn(uri
->canon_uri
+uri
->path_start
, uri
->path_len
), uri
->path_len
);
3082 /* Determines how the URI represented by the parse_data should be canonicalized.
3084 * Essentially, if the parse_data represents an hierarchical URI then it calls
3085 * canonicalize_authority and the canonicalization functions for the path. If the
3086 * URI is opaque it canonicalizes the path of the URI.
3088 static BOOL
canonicalize_hierpart(const parse_data
*data
, Uri
*uri
, DWORD flags
, BOOL computeOnly
) {
3089 if(!data
->is_opaque
|| (data
->is_relative
&& (data
->password
|| data
->username
))) {
3090 /* "//" is only added for non-wildcard scheme types.
3092 * A "//" is only added to a relative URI if it has a
3093 * host or port component (this only happens if a IUriBuilder
3094 * is generating an IUri).
3096 if((data
->is_relative
&& (data
->host
|| data
->has_port
)) ||
3097 (!data
->is_relative
&& data
->scheme_type
!= URL_SCHEME_WILDCARD
)) {
3098 if(data
->scheme_type
== URL_SCHEME_WILDCARD
)
3102 INT pos
= uri
->canon_len
;
3104 uri
->canon_uri
[pos
] = '/';
3105 uri
->canon_uri
[pos
+1] = '/';
3107 uri
->canon_len
+= 2;
3110 if(!canonicalize_authority(data
, uri
, flags
, computeOnly
))
3113 if(data
->is_relative
&& (data
->password
|| data
->username
)) {
3114 if(!canonicalize_path_opaque(data
, uri
, flags
, computeOnly
))
3118 uri
->path_start
= uri
->canon_len
;
3119 uri
->path_len
= canonicalize_path_hierarchical(data
->path
, data
->path_len
, data
->scheme_type
, data
->host_len
!= 0,
3120 flags
, computeOnly
? NULL
: uri
->canon_uri
+uri
->canon_len
);
3121 uri
->canon_len
+= uri
->path_len
;
3122 if(!computeOnly
&& !uri
->path_len
)
3123 uri
->path_start
= -1;
3126 /* Opaque URI's don't have an authority. */
3127 uri
->userinfo_start
= uri
->userinfo_split
= -1;
3128 uri
->userinfo_len
= 0;
3129 uri
->host_start
= -1;
3131 uri
->host_type
= Uri_HOST_UNKNOWN
;
3132 uri
->has_port
= FALSE
;
3133 uri
->authority_start
= -1;
3134 uri
->authority_len
= 0;
3135 uri
->domain_offset
= -1;
3136 uri
->port_offset
= -1;
3138 if(is_hierarchical_scheme(data
->scheme_type
)) {
3141 /* Absolute URIs aren't displayed for known scheme types
3142 * which should be hierarchical URIs.
3144 uri
->display_modifiers
|= URI_DISPLAY_NO_ABSOLUTE_URI
;
3146 /* Windows also sets the port for these (if they have one). */
3147 for(i
= 0; i
< sizeof(default_ports
)/sizeof(default_ports
[0]); ++i
) {
3148 if(data
->scheme_type
== default_ports
[i
].scheme
) {
3149 uri
->has_port
= TRUE
;
3150 uri
->port
= default_ports
[i
].port
;
3156 if(!canonicalize_path_opaque(data
, uri
, flags
, computeOnly
))
3160 if(uri
->path_start
> -1 && !computeOnly
)
3161 /* Finding file extensions happens for both types of URIs. */
3162 uri
->extension_offset
= find_file_extension(uri
->canon_uri
+uri
->path_start
, uri
->path_len
);
3164 uri
->extension_offset
= -1;
3169 /* Attempts to canonicalize the query string of the URI.
3171 * Things that happen:
3172 * 1) For known scheme types forbidden characters
3173 * are percent encoded, unless the NO_DECODE_EXTRA_INFO flag is set
3174 * or NO_ENCODE_FORBIDDEN_CHARACTERS is set.
3176 * 2) For known scheme types, percent encoded, unreserved characters
3177 * are decoded as long as the NO_DECODE_EXTRA_INFO flag isn't set.
3179 static BOOL
canonicalize_query(const parse_data
*data
, Uri
*uri
, DWORD flags
, BOOL computeOnly
) {
3180 const WCHAR
*ptr
, *end
;
3181 const BOOL known_scheme
= data
->scheme_type
!= URL_SCHEME_UNKNOWN
;
3184 uri
->query_start
= -1;
3189 uri
->query_start
= uri
->canon_len
;
3191 end
= data
->query
+data
->query_len
;
3192 for(ptr
= data
->query
; ptr
< end
; ++ptr
) {
3194 if(known_scheme
&& !(flags
& Uri_CREATE_NO_DECODE_EXTRA_INFO
)) {
3195 WCHAR val
= decode_pct_val(ptr
);
3196 if(is_unreserved(val
)) {
3198 uri
->canon_uri
[uri
->canon_len
] = val
;
3205 } else if(known_scheme
&& !is_unreserved(*ptr
) && !is_reserved(*ptr
)) {
3206 if(!(flags
& Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS
) &&
3207 !(flags
& Uri_CREATE_NO_DECODE_EXTRA_INFO
)) {
3209 pct_encode_val(*ptr
, uri
->canon_uri
+uri
->canon_len
);
3210 uri
->canon_len
+= 3;
3216 uri
->canon_uri
[uri
->canon_len
] = *ptr
;
3220 uri
->query_len
= uri
->canon_len
- uri
->query_start
;
3223 TRACE("(%p %p %x %d): Canonicalized query string %s len=%d\n", data
, uri
, flags
,
3224 computeOnly
, debugstr_wn(uri
->canon_uri
+uri
->query_start
, uri
->query_len
),
3229 static BOOL
canonicalize_fragment(const parse_data
*data
, Uri
*uri
, DWORD flags
, BOOL computeOnly
) {
3230 const WCHAR
*ptr
, *end
;
3231 const BOOL known_scheme
= data
->scheme_type
!= URL_SCHEME_UNKNOWN
;
3233 if(!data
->fragment
) {
3234 uri
->fragment_start
= -1;
3235 uri
->fragment_len
= 0;
3239 uri
->fragment_start
= uri
->canon_len
;
3241 end
= data
->fragment
+ data
->fragment_len
;
3242 for(ptr
= data
->fragment
; ptr
< end
; ++ptr
) {
3244 if(known_scheme
&& !(flags
& Uri_CREATE_NO_DECODE_EXTRA_INFO
)) {
3245 WCHAR val
= decode_pct_val(ptr
);
3246 if(is_unreserved(val
)) {
3248 uri
->canon_uri
[uri
->canon_len
] = val
;
3255 } else if(known_scheme
&& !is_unreserved(*ptr
) && !is_reserved(*ptr
)) {
3256 if(!(flags
& Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS
) &&
3257 !(flags
& Uri_CREATE_NO_DECODE_EXTRA_INFO
)) {
3259 pct_encode_val(*ptr
, uri
->canon_uri
+uri
->canon_len
);
3260 uri
->canon_len
+= 3;
3266 uri
->canon_uri
[uri
->canon_len
] = *ptr
;
3270 uri
->fragment_len
= uri
->canon_len
- uri
->fragment_start
;
3273 TRACE("(%p %p %x %d): Canonicalized fragment %s len=%d\n", data
, uri
, flags
,
3274 computeOnly
, debugstr_wn(uri
->canon_uri
+uri
->fragment_start
, uri
->fragment_len
),
3279 /* Canonicalizes the scheme information specified in the parse_data using the specified flags. */
3280 static BOOL
canonicalize_scheme(const parse_data
*data
, Uri
*uri
, DWORD flags
, BOOL computeOnly
) {
3281 uri
->scheme_start
= -1;
3282 uri
->scheme_len
= 0;
3285 /* The only type of URI that doesn't have to have a scheme is a relative
3288 if(!data
->is_relative
) {
3289 FIXME("(%p %p %x): Unable to determine the scheme type of %s.\n", data
,
3290 uri
, flags
, debugstr_w(data
->uri
));
3296 INT pos
= uri
->canon_len
;
3298 for(i
= 0; i
< data
->scheme_len
; ++i
) {
3299 /* Scheme name must be lower case after canonicalization. */
3300 uri
->canon_uri
[i
+ pos
] = tolowerW(data
->scheme
[i
]);
3303 uri
->canon_uri
[i
+ pos
] = ':';
3304 uri
->scheme_start
= pos
;
3306 TRACE("(%p %p %x): Canonicalized scheme=%s, len=%d.\n", data
, uri
, flags
,
3307 debugstr_wn(uri
->canon_uri
, uri
->scheme_len
), data
->scheme_len
);
3310 /* This happens in both computation modes. */
3311 uri
->canon_len
+= data
->scheme_len
+ 1;
3312 uri
->scheme_len
= data
->scheme_len
;
3317 /* Computes what the length of the URI specified by the parse_data will be
3318 * after canonicalization occurs using the specified flags.
3320 * This function will return a non-zero value indicating the length of the canonicalized
3321 * URI, or -1 on error.
3323 static int compute_canonicalized_length(const parse_data
*data
, DWORD flags
) {
3326 memset(&uri
, 0, sizeof(Uri
));
3328 TRACE("(%p %x): Beginning to compute canonicalized length for URI %s\n", data
, flags
,
3329 debugstr_w(data
->uri
));
3331 if(!canonicalize_scheme(data
, &uri
, flags
, TRUE
)) {
3332 ERR("(%p %x): Failed to compute URI scheme length.\n", data
, flags
);
3336 if(!canonicalize_hierpart(data
, &uri
, flags
, TRUE
)) {
3337 ERR("(%p %x): Failed to compute URI hierpart length.\n", data
, flags
);
3341 if(!canonicalize_query(data
, &uri
, flags
, TRUE
)) {
3342 ERR("(%p %x): Failed to compute query string length.\n", data
, flags
);
3346 if(!canonicalize_fragment(data
, &uri
, flags
, TRUE
)) {
3347 ERR("(%p %x): Failed to compute fragment length.\n", data
, flags
);
3351 TRACE("(%p %x): Finished computing canonicalized URI length. length=%d\n", data
, flags
, uri
.canon_len
);
3353 return uri
.canon_len
;
3356 /* Canonicalizes the URI data specified in the parse_data, using the given flags. If the
3357 * canonicalization succeeds it will store all the canonicalization information
3358 * in the pointer to the Uri.
3360 * To canonicalize a URI this function first computes what the length of the URI
3361 * specified by the parse_data will be. Once this is done it will then perform the actual
3362 * canonicalization of the URI.
3364 static HRESULT
canonicalize_uri(const parse_data
*data
, Uri
*uri
, DWORD flags
) {
3367 uri
->canon_uri
= NULL
;
3368 uri
->canon_size
= uri
->canon_len
= 0;
3370 TRACE("(%p %p %x): beginning to canonicalize URI %s.\n", data
, uri
, flags
, debugstr_w(data
->uri
));
3372 /* First try to compute the length of the URI. */
3373 len
= compute_canonicalized_length(data
, flags
);
3375 ERR("(%p %p %x): Could not compute the canonicalized length of %s.\n", data
, uri
, flags
,
3376 debugstr_w(data
->uri
));
3377 return E_INVALIDARG
;
3380 uri
->canon_uri
= heap_alloc((len
+1)*sizeof(WCHAR
));
3382 return E_OUTOFMEMORY
;
3384 uri
->canon_size
= len
;
3385 if(!canonicalize_scheme(data
, uri
, flags
, FALSE
)) {
3386 ERR("(%p %p %x): Unable to canonicalize the scheme of the URI.\n", data
, uri
, flags
);
3387 return E_INVALIDARG
;
3389 uri
->scheme_type
= data
->scheme_type
;
3391 if(!canonicalize_hierpart(data
, uri
, flags
, FALSE
)) {
3392 ERR("(%p %p %x): Unable to canonicalize the heirpart of the URI\n", data
, uri
, flags
);
3393 return E_INVALIDARG
;
3396 if(!canonicalize_query(data
, uri
, flags
, FALSE
)) {
3397 ERR("(%p %p %x): Unable to canonicalize query string of the URI.\n",
3399 return E_INVALIDARG
;
3402 if(!canonicalize_fragment(data
, uri
, flags
, FALSE
)) {
3403 ERR("(%p %p %x): Unable to canonicalize fragment of the URI.\n",
3405 return E_INVALIDARG
;
3408 /* There's a possibility we didn't use all the space we allocated
3411 if(uri
->canon_len
< uri
->canon_size
) {
3412 /* This happens if the URI is hierarchical and dot
3413 * segments were removed from its path.
3415 WCHAR
*tmp
= heap_realloc(uri
->canon_uri
, (uri
->canon_len
+1)*sizeof(WCHAR
));
3417 return E_OUTOFMEMORY
;
3419 uri
->canon_uri
= tmp
;
3420 uri
->canon_size
= uri
->canon_len
;
3423 uri
->canon_uri
[uri
->canon_len
] = '\0';
3424 TRACE("(%p %p %x): finished canonicalizing the URI. uri=%s\n", data
, uri
, flags
, debugstr_w(uri
->canon_uri
));
3429 static HRESULT
get_builder_component(LPWSTR
*component
, DWORD
*component_len
,
3430 LPCWSTR source
, DWORD source_len
,
3431 LPCWSTR
*output
, DWORD
*output_len
)
3444 if(!(*component
) && source
) {
3445 /* Allocate 'component', and copy the contents from 'source'
3446 * into the new allocation.
3448 *component
= heap_alloc((source_len
+1)*sizeof(WCHAR
));
3450 return E_OUTOFMEMORY
;
3452 memcpy(*component
, source
, source_len
*sizeof(WCHAR
));
3453 (*component
)[source_len
] = '\0';
3454 *component_len
= source_len
;
3457 *output
= *component
;
3458 *output_len
= *component_len
;
3459 return *output
? S_OK
: S_FALSE
;
3462 /* Allocates 'component' and copies the string from 'new_value' into 'component'.
3463 * If 'prefix' is set and 'new_value' isn't NULL, then it checks if 'new_value'
3464 * starts with 'prefix'. If it doesn't then 'prefix' is prepended to 'component'.
3466 * If everything is successful, then will set 'success_flag' in 'flags'.
3468 static HRESULT
set_builder_component(LPWSTR
*component
, DWORD
*component_len
, LPCWSTR new_value
,
3469 WCHAR prefix
, DWORD
*flags
, DWORD success_flag
)
3471 heap_free(*component
);
3477 BOOL add_prefix
= FALSE
;
3478 DWORD len
= lstrlenW(new_value
);
3481 if(prefix
&& *new_value
!= prefix
) {
3483 *component
= heap_alloc((len
+2)*sizeof(WCHAR
));
3485 *component
= heap_alloc((len
+1)*sizeof(WCHAR
));
3488 return E_OUTOFMEMORY
;
3491 (*component
)[pos
++] = prefix
;
3493 memcpy(*component
+pos
, new_value
, (len
+1)*sizeof(WCHAR
));
3494 *component_len
= len
+pos
;
3497 *flags
|= success_flag
;
3501 static void reset_builder(UriBuilder
*builder
) {
3503 IUri_Release(&builder
->uri
->IUri_iface
);
3504 builder
->uri
= NULL
;
3506 heap_free(builder
->fragment
);
3507 builder
->fragment
= NULL
;
3508 builder
->fragment_len
= 0;
3510 heap_free(builder
->host
);
3511 builder
->host
= NULL
;
3512 builder
->host_len
= 0;
3514 heap_free(builder
->password
);
3515 builder
->password
= NULL
;
3516 builder
->password_len
= 0;
3518 heap_free(builder
->path
);
3519 builder
->path
= NULL
;
3520 builder
->path_len
= 0;
3522 heap_free(builder
->query
);
3523 builder
->query
= NULL
;
3524 builder
->query_len
= 0;
3526 heap_free(builder
->scheme
);
3527 builder
->scheme
= NULL
;
3528 builder
->scheme_len
= 0;
3530 heap_free(builder
->username
);
3531 builder
->username
= NULL
;
3532 builder
->username_len
= 0;
3534 builder
->has_port
= FALSE
;
3536 builder
->modified_props
= 0;
3539 static HRESULT
validate_scheme_name(const UriBuilder
*builder
, parse_data
*data
, DWORD flags
) {
3540 const WCHAR
*component
;
3545 if(builder
->scheme
) {
3546 ptr
= builder
->scheme
;
3547 expected_len
= builder
->scheme_len
;
3548 } else if(builder
->uri
&& builder
->uri
->scheme_start
> -1) {
3549 ptr
= builder
->uri
->canon_uri
+builder
->uri
->scheme_start
;
3550 expected_len
= builder
->uri
->scheme_len
;
3552 static const WCHAR nullW
[] = {0};
3559 if(parse_scheme(pptr
, data
, flags
, ALLOW_NULL_TERM_SCHEME
) &&
3560 data
->scheme_len
== expected_len
) {
3562 TRACE("(%p %p %x): Found valid scheme component %s len=%d.\n", builder
, data
, flags
,
3563 debugstr_wn(data
->scheme
, data
->scheme_len
), data
->scheme_len
);
3565 TRACE("(%p %p %x): Invalid scheme component found %s.\n", builder
, data
, flags
,
3566 debugstr_wn(component
, expected_len
));
3567 return INET_E_INVALID_URL
;
3573 static HRESULT
validate_username(const UriBuilder
*builder
, parse_data
*data
, DWORD flags
) {
3578 if(builder
->username
) {
3579 ptr
= builder
->username
;
3580 expected_len
= builder
->username_len
;
3581 } else if(!(builder
->modified_props
& Uri_HAS_USER_NAME
) && builder
->uri
&&
3582 builder
->uri
->userinfo_start
> -1 && builder
->uri
->userinfo_split
!= 0) {
3583 /* Just use the username from the base Uri. */
3584 data
->username
= builder
->uri
->canon_uri
+builder
->uri
->userinfo_start
;
3585 data
->username_len
= (builder
->uri
->userinfo_split
> -1) ?
3586 builder
->uri
->userinfo_split
: builder
->uri
->userinfo_len
;
3594 const WCHAR
*component
= ptr
;
3596 if(parse_username(pptr
, data
, flags
, ALLOW_NULL_TERM_USER_NAME
) &&
3597 data
->username_len
== expected_len
)
3598 TRACE("(%p %p %x): Found valid username component %s len=%d.\n", builder
, data
, flags
,
3599 debugstr_wn(data
->username
, data
->username_len
), data
->username_len
);
3601 TRACE("(%p %p %x): Invalid username component found %s.\n", builder
, data
, flags
,
3602 debugstr_wn(component
, expected_len
));
3603 return INET_E_INVALID_URL
;
3610 static HRESULT
validate_password(const UriBuilder
*builder
, parse_data
*data
, DWORD flags
) {
3615 if(builder
->password
) {
3616 ptr
= builder
->password
;
3617 expected_len
= builder
->password_len
;
3618 } else if(!(builder
->modified_props
& Uri_HAS_PASSWORD
) && builder
->uri
&&
3619 builder
->uri
->userinfo_split
> -1) {
3620 data
->password
= builder
->uri
->canon_uri
+builder
->uri
->userinfo_start
+builder
->uri
->userinfo_split
+1;
3621 data
->password_len
= builder
->uri
->userinfo_len
-builder
->uri
->userinfo_split
-1;
3629 const WCHAR
*component
= ptr
;
3631 if(parse_password(pptr
, data
, flags
, ALLOW_NULL_TERM_PASSWORD
) &&
3632 data
->password_len
== expected_len
)
3633 TRACE("(%p %p %x): Found valid password component %s len=%d.\n", builder
, data
, flags
,
3634 debugstr_wn(data
->password
, data
->password_len
), data
->password_len
);
3636 TRACE("(%p %p %x): Invalid password component found %s.\n", builder
, data
, flags
,
3637 debugstr_wn(component
, expected_len
));
3638 return INET_E_INVALID_URL
;
3645 static HRESULT
validate_userinfo(const UriBuilder
*builder
, parse_data
*data
, DWORD flags
) {
3648 hr
= validate_username(builder
, data
, flags
);
3652 hr
= validate_password(builder
, data
, flags
);
3659 static HRESULT
validate_host(const UriBuilder
*builder
, parse_data
*data
, DWORD flags
) {
3665 ptr
= builder
->host
;
3666 expected_len
= builder
->host_len
;
3667 } else if(!(builder
->modified_props
& Uri_HAS_HOST
) && builder
->uri
&& builder
->uri
->host_start
> -1) {
3668 ptr
= builder
->uri
->canon_uri
+ builder
->uri
->host_start
;
3669 expected_len
= builder
->uri
->host_len
;
3674 const WCHAR
*component
= ptr
;
3675 DWORD extras
= ALLOW_BRACKETLESS_IP_LITERAL
|IGNORE_PORT_DELIMITER
|SKIP_IP_FUTURE_CHECK
;
3678 if(parse_host(pptr
, data
, flags
, extras
) && data
->host_len
== expected_len
)
3679 TRACE("(%p %p %x): Found valid host name %s len=%d type=%d.\n", builder
, data
, flags
,
3680 debugstr_wn(data
->host
, data
->host_len
), data
->host_len
, data
->host_type
);
3682 TRACE("(%p %p %x): Invalid host name found %s.\n", builder
, data
, flags
,
3683 debugstr_wn(component
, expected_len
));
3684 return INET_E_INVALID_URL
;
3691 static void setup_port(const UriBuilder
*builder
, parse_data
*data
, DWORD flags
) {
3692 if(builder
->modified_props
& Uri_HAS_PORT
) {
3693 if(builder
->has_port
) {
3694 data
->has_port
= TRUE
;
3695 data
->port_value
= builder
->port
;
3697 } else if(builder
->uri
&& builder
->uri
->has_port
) {
3698 data
->has_port
= TRUE
;
3699 data
->port_value
= builder
->uri
->port
;
3703 TRACE("(%p %p %x): Using %u as port for IUri.\n", builder
, data
, flags
, data
->port_value
);
3706 static HRESULT
validate_path(const UriBuilder
*builder
, parse_data
*data
, DWORD flags
) {
3707 const WCHAR
*ptr
= NULL
;
3708 const WCHAR
*component
;
3711 BOOL check_len
= TRUE
;
3715 ptr
= builder
->path
;
3716 expected_len
= builder
->path_len
;
3717 } else if(!(builder
->modified_props
& Uri_HAS_PATH
) &&
3718 builder
->uri
&& builder
->uri
->path_start
> -1) {
3719 ptr
= builder
->uri
->canon_uri
+builder
->uri
->path_start
;
3720 expected_len
= builder
->uri
->path_len
;
3722 static const WCHAR nullW
[] = {0};
3731 /* How the path is validated depends on what type of
3734 valid
= data
->is_opaque
?
3735 parse_path_opaque(pptr
, data
, flags
) : parse_path_hierarchical(pptr
, data
, flags
);
3737 if(!valid
|| (check_len
&& expected_len
!= data
->path_len
)) {
3738 TRACE("(%p %p %x): Invalid path component %s.\n", builder
, data
, flags
,
3739 debugstr_wn(component
, expected_len
) );
3740 return INET_E_INVALID_URL
;
3743 TRACE("(%p %p %x): Valid path component %s len=%d.\n", builder
, data
, flags
,
3744 debugstr_wn(data
->path
, data
->path_len
), data
->path_len
);
3749 static HRESULT
validate_query(const UriBuilder
*builder
, parse_data
*data
, DWORD flags
) {
3750 const WCHAR
*ptr
= NULL
;
3754 if(builder
->query
) {
3755 ptr
= builder
->query
;
3756 expected_len
= builder
->query_len
;
3757 } else if(!(builder
->modified_props
& Uri_HAS_QUERY
) && builder
->uri
&&
3758 builder
->uri
->query_start
> -1) {
3759 ptr
= builder
->uri
->canon_uri
+builder
->uri
->query_start
;
3760 expected_len
= builder
->uri
->query_len
;
3764 const WCHAR
*component
= ptr
;
3767 if(parse_query(pptr
, data
, flags
) && expected_len
== data
->query_len
)
3768 TRACE("(%p %p %x): Valid query component %s len=%d.\n", builder
, data
, flags
,
3769 debugstr_wn(data
->query
, data
->query_len
), data
->query_len
);
3771 TRACE("(%p %p %x): Invalid query component %s.\n", builder
, data
, flags
,
3772 debugstr_wn(component
, expected_len
));
3773 return INET_E_INVALID_URL
;
3780 static HRESULT
validate_fragment(const UriBuilder
*builder
, parse_data
*data
, DWORD flags
) {
3781 const WCHAR
*ptr
= NULL
;
3785 if(builder
->fragment
) {
3786 ptr
= builder
->fragment
;
3787 expected_len
= builder
->fragment_len
;
3788 } else if(!(builder
->modified_props
& Uri_HAS_FRAGMENT
) && builder
->uri
&&
3789 builder
->uri
->fragment_start
> -1) {
3790 ptr
= builder
->uri
->canon_uri
+builder
->uri
->fragment_start
;
3791 expected_len
= builder
->uri
->fragment_len
;
3795 const WCHAR
*component
= ptr
;
3798 if(parse_fragment(pptr
, data
, flags
) && expected_len
== data
->fragment_len
)
3799 TRACE("(%p %p %x): Valid fragment component %s len=%d.\n", builder
, data
, flags
,
3800 debugstr_wn(data
->fragment
, data
->fragment_len
), data
->fragment_len
);
3802 TRACE("(%p %p %x): Invalid fragment component %s.\n", builder
, data
, flags
,
3803 debugstr_wn(component
, expected_len
));
3804 return INET_E_INVALID_URL
;
3811 static HRESULT
validate_components(const UriBuilder
*builder
, parse_data
*data
, DWORD flags
) {
3814 memset(data
, 0, sizeof(parse_data
));
3816 TRACE("(%p %p %x): Beginning to validate builder components.\n", builder
, data
, flags
);
3818 hr
= validate_scheme_name(builder
, data
, flags
);
3822 /* Extra validation for file schemes. */
3823 if(data
->scheme_type
== URL_SCHEME_FILE
) {
3824 if((builder
->password
|| (builder
->uri
&& builder
->uri
->userinfo_split
> -1)) ||
3825 (builder
->username
|| (builder
->uri
&& builder
->uri
->userinfo_start
> -1))) {
3826 TRACE("(%p %p %x): File schemes can't contain a username or password.\n",
3827 builder
, data
, flags
);
3828 return INET_E_INVALID_URL
;
3832 hr
= validate_userinfo(builder
, data
, flags
);
3836 hr
= validate_host(builder
, data
, flags
);
3840 setup_port(builder
, data
, flags
);
3842 /* The URI is opaque if it doesn't have an authority component. */
3843 if(!data
->is_relative
)
3844 data
->is_opaque
= !data
->username
&& !data
->password
&& !data
->host
&& !data
->has_port
3845 && data
->scheme_type
!= URL_SCHEME_FILE
;
3847 data
->is_opaque
= !data
->host
&& !data
->has_port
;
3849 hr
= validate_path(builder
, data
, flags
);
3853 hr
= validate_query(builder
, data
, flags
);
3857 hr
= validate_fragment(builder
, data
, flags
);
3861 TRACE("(%p %p %x): Finished validating builder components.\n", builder
, data
, flags
);
3866 static HRESULT
compare_file_paths(const Uri
*a
, const Uri
*b
, BOOL
*ret
)
3868 WCHAR
*canon_path_a
, *canon_path_b
;
3872 *ret
= !b
->path_len
;
3882 if(a
->path_len
== b
->path_len
&& !memicmpW(a
->canon_uri
+a
->path_start
, b
->canon_uri
+b
->path_start
, a
->path_len
)) {
3887 len_a
= canonicalize_path_hierarchical(a
->canon_uri
+a
->path_start
, a
->path_len
, a
->scheme_type
, FALSE
, 0, NULL
);
3888 len_b
= canonicalize_path_hierarchical(b
->canon_uri
+b
->path_start
, b
->path_len
, b
->scheme_type
, FALSE
, 0, NULL
);
3890 canon_path_a
= heap_alloc(len_a
*sizeof(WCHAR
));
3892 return E_OUTOFMEMORY
;
3893 canon_path_b
= heap_alloc(len_b
*sizeof(WCHAR
));
3895 heap_free(canon_path_a
);
3896 return E_OUTOFMEMORY
;
3899 len_a
= canonicalize_path_hierarchical(a
->canon_uri
+a
->path_start
, a
->path_len
, a
->scheme_type
, FALSE
, 0, canon_path_a
);
3900 len_b
= canonicalize_path_hierarchical(b
->canon_uri
+b
->path_start
, b
->path_len
, b
->scheme_type
, FALSE
, 0, canon_path_b
);
3902 *ret
= len_a
== len_b
&& !memicmpW(canon_path_a
, canon_path_b
, len_a
);
3904 heap_free(canon_path_a
);
3905 heap_free(canon_path_b
);
3909 /* Checks if the two Uri's are logically equivalent. It's a simple
3910 * comparison, since they are both of type Uri, and it can access
3911 * the properties of each Uri directly without the need to go
3912 * through the "IUri_Get*" interface calls.
3914 static HRESULT
compare_uris(const Uri
*a
, const Uri
*b
, BOOL
*ret
) {
3915 const BOOL known_scheme
= a
->scheme_type
!= URL_SCHEME_UNKNOWN
;
3916 const BOOL are_hierarchical
= a
->authority_start
> -1 && b
->authority_start
> -1;
3921 if(a
->scheme_type
!= b
->scheme_type
)
3924 /* Only compare the scheme names (if any) if their unknown scheme types. */
3926 if((a
->scheme_start
> -1 && b
->scheme_start
> -1) &&
3927 (a
->scheme_len
== b
->scheme_len
)) {
3928 /* Make sure the schemes are the same. */
3929 if(StrCmpNW(a
->canon_uri
+a
->scheme_start
, b
->canon_uri
+b
->scheme_start
, a
->scheme_len
))
3931 } else if(a
->scheme_len
!= b
->scheme_len
)
3932 /* One of the Uri's has a scheme name, while the other doesn't. */
3936 /* If they have a userinfo component, perform case sensitive compare. */
3937 if((a
->userinfo_start
> -1 && b
->userinfo_start
> -1) &&
3938 (a
->userinfo_len
== b
->userinfo_len
)) {
3939 if(StrCmpNW(a
->canon_uri
+a
->userinfo_start
, b
->canon_uri
+b
->userinfo_start
, a
->userinfo_len
))
3941 } else if(a
->userinfo_len
!= b
->userinfo_len
)
3942 /* One of the Uri's had a userinfo, while the other one doesn't. */
3945 /* Check if they have a host name. */
3946 if((a
->host_start
> -1 && b
->host_start
> -1) &&
3947 (a
->host_len
== b
->host_len
)) {
3948 /* Perform a case insensitive compare if they are a known scheme type. */
3950 if(StrCmpNIW(a
->canon_uri
+a
->host_start
, b
->canon_uri
+b
->host_start
, a
->host_len
))
3952 } else if(StrCmpNW(a
->canon_uri
+a
->host_start
, b
->canon_uri
+b
->host_start
, a
->host_len
))
3954 } else if(a
->host_len
!= b
->host_len
)
3955 /* One of the Uri's had a host, while the other one didn't. */
3958 if(a
->has_port
&& b
->has_port
) {
3959 if(a
->port
!= b
->port
)
3961 } else if(a
->has_port
|| b
->has_port
)
3962 /* One had a port, while the other one didn't. */
3965 /* Windows is weird with how it handles paths. For example
3966 * One URI could be "http://google.com" (after canonicalization)
3967 * and one could be "http://google.com/" and the IsEqual function
3968 * would still evaluate to TRUE, but, only if they are both hierarchical
3971 if(a
->scheme_type
== URL_SCHEME_FILE
) {
3974 hres
= compare_file_paths(a
, b
, &cmp
);
3975 if(FAILED(hres
) || !cmp
)
3977 } else if((a
->path_start
> -1 && b
->path_start
> -1) &&
3978 (a
->path_len
== b
->path_len
)) {
3979 if(StrCmpNW(a
->canon_uri
+a
->path_start
, b
->canon_uri
+b
->path_start
, a
->path_len
))
3981 } else if(are_hierarchical
&& a
->path_len
== -1 && b
->path_len
== 0) {
3982 if(*(a
->canon_uri
+a
->path_start
) != '/')
3984 } else if(are_hierarchical
&& b
->path_len
== 1 && a
->path_len
== 0) {
3985 if(*(b
->canon_uri
+b
->path_start
) != '/')
3987 } else if(a
->path_len
!= b
->path_len
)
3990 /* Compare the query strings of the two URIs. */
3991 if((a
->query_start
> -1 && b
->query_start
> -1) &&
3992 (a
->query_len
== b
->query_len
)) {
3993 if(StrCmpNW(a
->canon_uri
+a
->query_start
, b
->canon_uri
+b
->query_start
, a
->query_len
))
3995 } else if(a
->query_len
!= b
->query_len
)
3998 if((a
->fragment_start
> -1 && b
->fragment_start
> -1) &&
3999 (a
->fragment_len
== b
->fragment_len
)) {
4000 if(StrCmpNW(a
->canon_uri
+a
->fragment_start
, b
->canon_uri
+b
->fragment_start
, a
->fragment_len
))
4002 } else if(a
->fragment_len
!= b
->fragment_len
)
4005 /* If we get here, the two URIs are equivalent. */
4010 static void convert_to_dos_path(const WCHAR
*path
, DWORD path_len
,
4011 WCHAR
*output
, DWORD
*output_len
)
4013 const WCHAR
*ptr
= path
;
4015 if(path_len
> 3 && *ptr
== '/' && is_drive_path(path
+1))
4016 /* Skip over the leading / before the drive path. */
4019 for(; ptr
< path
+path_len
; ++ptr
) {
4032 /* Generates a raw uri string using the parse_data. */
4033 static DWORD
generate_raw_uri(const parse_data
*data
, BSTR uri
, DWORD flags
) {
4038 memcpy(uri
, data
->scheme
, data
->scheme_len
*sizeof(WCHAR
));
4039 uri
[data
->scheme_len
] = ':';
4041 length
+= data
->scheme_len
+1;
4044 if(!data
->is_opaque
) {
4045 /* For the "//" which appears before the authority component. */
4048 uri
[length
+1] = '/';
4052 /* Check if we need to add the "\\" before the host name
4053 * of a UNC server name in a DOS path.
4055 if(flags
& RAW_URI_CONVERT_TO_DOS_PATH
&&
4056 data
->scheme_type
== URL_SCHEME_FILE
&& data
->host
) {
4059 uri
[length
+1] = '\\';
4065 if(data
->username
) {
4067 memcpy(uri
+length
, data
->username
, data
->username_len
*sizeof(WCHAR
));
4068 length
+= data
->username_len
;
4071 if(data
->password
) {
4074 memcpy(uri
+length
+1, data
->password
, data
->password_len
*sizeof(WCHAR
));
4076 length
+= data
->password_len
+1;
4079 if(data
->password
|| data
->username
) {
4086 /* IPv6 addresses get the brackets added around them if they don't already
4089 const BOOL add_brackets
= data
->host_type
== Uri_HOST_IPV6
&& *(data
->host
) != '[';
4097 memcpy(uri
+length
, data
->host
, data
->host_len
*sizeof(WCHAR
));
4098 length
+= data
->host_len
;
4107 if(data
->has_port
) {
4108 /* The port isn't included in the raw uri if it's the default
4109 * port for the scheme type.
4112 BOOL is_default
= FALSE
;
4114 for(i
= 0; i
< sizeof(default_ports
)/sizeof(default_ports
[0]); ++i
) {
4115 if(data
->scheme_type
== default_ports
[i
].scheme
&&
4116 data
->port_value
== default_ports
[i
].port
)
4120 if(!is_default
|| flags
& RAW_URI_FORCE_PORT_DISP
) {
4126 length
+= ui2str(uri
+length
, data
->port_value
);
4128 length
+= ui2str(NULL
, data
->port_value
);
4132 /* Check if a '/' should be added before the path for hierarchical URIs. */
4133 if(!data
->is_opaque
&& data
->path
&& *(data
->path
) != '/') {
4140 if(!data
->is_opaque
&& data
->scheme_type
== URL_SCHEME_FILE
&&
4141 flags
& RAW_URI_CONVERT_TO_DOS_PATH
) {
4145 convert_to_dos_path(data
->path
, data
->path_len
, uri
+length
, &len
);
4147 convert_to_dos_path(data
->path
, data
->path_len
, NULL
, &len
);
4152 memcpy(uri
+length
, data
->path
, data
->path_len
*sizeof(WCHAR
));
4153 length
+= data
->path_len
;
4159 memcpy(uri
+length
, data
->query
, data
->query_len
*sizeof(WCHAR
));
4160 length
+= data
->query_len
;
4163 if(data
->fragment
) {
4165 memcpy(uri
+length
, data
->fragment
, data
->fragment_len
*sizeof(WCHAR
));
4166 length
+= data
->fragment_len
;
4170 TRACE("(%p %p): Generated raw uri=%s len=%d\n", data
, uri
, debugstr_wn(uri
, length
), length
);
4172 TRACE("(%p %p): Computed raw uri len=%d\n", data
, uri
, length
);
4177 static HRESULT
generate_uri(const UriBuilder
*builder
, const parse_data
*data
, Uri
*uri
, DWORD flags
) {
4179 DWORD length
= generate_raw_uri(data
, NULL
, 0);
4180 uri
->raw_uri
= SysAllocStringLen(NULL
, length
);
4182 return E_OUTOFMEMORY
;
4184 generate_raw_uri(data
, uri
->raw_uri
, 0);
4186 hr
= canonicalize_uri(data
, uri
, flags
);
4188 if(hr
== E_INVALIDARG
)
4189 return INET_E_INVALID_URL
;
4193 uri
->create_flags
= flags
;
4197 static inline Uri
* impl_from_IUri(IUri
*iface
)
4199 return CONTAINING_RECORD(iface
, Uri
, IUri_iface
);
4202 static inline void destory_uri_obj(Uri
*This
)
4204 SysFreeString(This
->raw_uri
);
4205 heap_free(This
->canon_uri
);
4209 static HRESULT WINAPI
Uri_QueryInterface(IUri
*iface
, REFIID riid
, void **ppv
)
4211 Uri
*This
= impl_from_IUri(iface
);
4213 if(IsEqualGUID(&IID_IUnknown
, riid
)) {
4214 TRACE("(%p)->(IID_IUnknown %p)\n", This
, ppv
);
4215 *ppv
= &This
->IUri_iface
;
4216 }else if(IsEqualGUID(&IID_IUri
, riid
)) {
4217 TRACE("(%p)->(IID_IUri %p)\n", This
, ppv
);
4218 *ppv
= &This
->IUri_iface
;
4219 }else if(IsEqualGUID(&IID_IUriBuilderFactory
, riid
)) {
4220 TRACE("(%p)->(IID_IUriBuilderFactory %p)\n", This
, ppv
);
4221 *ppv
= &This
->IUriBuilderFactory_iface
;
4222 }else if(IsEqualGUID(&IID_IPersistStream
, riid
)) {
4223 TRACE("(%p)->(IID_IPersistStream %p)\n", This
, ppv
);
4224 *ppv
= &This
->IPersistStream_iface
;
4225 }else if(IsEqualGUID(&IID_IMarshal
, riid
)) {
4226 TRACE("(%p)->(IID_IMarshal %p)\n", This
, ppv
);
4227 *ppv
= &This
->IMarshal_iface
;
4228 }else if(IsEqualGUID(&IID_IUriObj
, riid
)) {
4229 TRACE("(%p)->(IID_IUriObj %p)\n", This
, ppv
);
4233 TRACE("(%p)->(%s %p)\n", This
, debugstr_guid(riid
), ppv
);
4235 return E_NOINTERFACE
;
4238 IUnknown_AddRef((IUnknown
*)*ppv
);
4242 static ULONG WINAPI
Uri_AddRef(IUri
*iface
)
4244 Uri
*This
= impl_from_IUri(iface
);
4245 LONG ref
= InterlockedIncrement(&This
->ref
);
4247 TRACE("(%p) ref=%d\n", This
, ref
);
4252 static ULONG WINAPI
Uri_Release(IUri
*iface
)
4254 Uri
*This
= impl_from_IUri(iface
);
4255 LONG ref
= InterlockedDecrement(&This
->ref
);
4257 TRACE("(%p) ref=%d\n", This
, ref
);
4260 destory_uri_obj(This
);
4265 static HRESULT WINAPI
Uri_GetPropertyBSTR(IUri
*iface
, Uri_PROPERTY uriProp
, BSTR
*pbstrProperty
, DWORD dwFlags
)
4267 Uri
*This
= impl_from_IUri(iface
);
4269 TRACE("(%p %s)->(%d %p %x)\n", This
, debugstr_w(This
->canon_uri
), uriProp
, pbstrProperty
, dwFlags
);
4271 if(!This
->create_flags
)
4272 return E_UNEXPECTED
;
4276 if(uriProp
> Uri_PROPERTY_STRING_LAST
) {
4277 /* Windows allocates an empty BSTR for invalid Uri_PROPERTY's. */
4278 *pbstrProperty
= SysAllocStringLen(NULL
, 0);
4279 if(!(*pbstrProperty
))
4280 return E_OUTOFMEMORY
;
4282 /* It only returns S_FALSE for the ZONE property... */
4283 if(uriProp
== Uri_PROPERTY_ZONE
)
4289 /* Don't have support for flags yet. */
4291 FIXME("(%p)->(%d %p %x)\n", This
, uriProp
, pbstrProperty
, dwFlags
);
4296 case Uri_PROPERTY_ABSOLUTE_URI
:
4297 if(This
->display_modifiers
& URI_DISPLAY_NO_ABSOLUTE_URI
) {
4298 *pbstrProperty
= SysAllocStringLen(NULL
, 0);
4301 if(This
->scheme_type
!= URL_SCHEME_UNKNOWN
&& This
->userinfo_start
> -1) {
4302 if(This
->userinfo_len
== 0) {
4303 /* Don't include the '@' after the userinfo component. */
4304 *pbstrProperty
= SysAllocStringLen(NULL
, This
->canon_len
-1);
4306 if(*pbstrProperty
) {
4307 /* Copy everything before it. */
4308 memcpy(*pbstrProperty
, This
->canon_uri
, This
->userinfo_start
*sizeof(WCHAR
));
4310 /* And everything after it. */
4311 memcpy(*pbstrProperty
+This
->userinfo_start
, This
->canon_uri
+This
->userinfo_start
+1,
4312 (This
->canon_len
-This
->userinfo_start
-1)*sizeof(WCHAR
));
4314 } else if(This
->userinfo_split
== 0 && This
->userinfo_len
== 1) {
4315 /* Don't include the ":@" */
4316 *pbstrProperty
= SysAllocStringLen(NULL
, This
->canon_len
-2);
4318 if(*pbstrProperty
) {
4319 memcpy(*pbstrProperty
, This
->canon_uri
, This
->userinfo_start
*sizeof(WCHAR
));
4320 memcpy(*pbstrProperty
+This
->userinfo_start
, This
->canon_uri
+This
->userinfo_start
+2,
4321 (This
->canon_len
-This
->userinfo_start
-2)*sizeof(WCHAR
));
4324 *pbstrProperty
= SysAllocString(This
->canon_uri
);
4328 *pbstrProperty
= SysAllocString(This
->canon_uri
);
4333 if(!(*pbstrProperty
))
4334 hres
= E_OUTOFMEMORY
;
4337 case Uri_PROPERTY_AUTHORITY
:
4338 if(This
->authority_start
> -1) {
4339 if(This
->port_offset
> -1 && is_default_port(This
->scheme_type
, This
->port
) &&
4340 This
->display_modifiers
& URI_DISPLAY_NO_DEFAULT_PORT_AUTH
)
4341 /* Don't include the port in the authority component. */
4342 *pbstrProperty
= SysAllocStringLen(This
->canon_uri
+This
->authority_start
, This
->port_offset
);
4344 *pbstrProperty
= SysAllocStringLen(This
->canon_uri
+This
->authority_start
, This
->authority_len
);
4347 *pbstrProperty
= SysAllocStringLen(NULL
, 0);
4351 if(!(*pbstrProperty
))
4352 hres
= E_OUTOFMEMORY
;
4355 case Uri_PROPERTY_DISPLAY_URI
:
4356 /* The Display URI contains everything except for the userinfo for known
4359 if(This
->scheme_type
!= URL_SCHEME_UNKNOWN
&& This
->userinfo_start
> -1) {
4360 *pbstrProperty
= SysAllocStringLen(NULL
, This
->canon_len
-This
->userinfo_len
);
4362 if(*pbstrProperty
) {
4363 /* Copy everything before the userinfo over. */
4364 memcpy(*pbstrProperty
, This
->canon_uri
, This
->userinfo_start
*sizeof(WCHAR
));
4365 /* Copy everything after the userinfo over. */
4366 memcpy(*pbstrProperty
+This
->userinfo_start
,
4367 This
->canon_uri
+This
->userinfo_start
+This
->userinfo_len
+1,
4368 (This
->canon_len
-(This
->userinfo_start
+This
->userinfo_len
+1))*sizeof(WCHAR
));
4371 *pbstrProperty
= SysAllocString(This
->canon_uri
);
4373 if(!(*pbstrProperty
))
4374 hres
= E_OUTOFMEMORY
;
4379 case Uri_PROPERTY_DOMAIN
:
4380 if(This
->domain_offset
> -1) {
4381 *pbstrProperty
= SysAllocStringLen(This
->canon_uri
+This
->host_start
+This
->domain_offset
,
4382 This
->host_len
-This
->domain_offset
);
4385 *pbstrProperty
= SysAllocStringLen(NULL
, 0);
4389 if(!(*pbstrProperty
))
4390 hres
= E_OUTOFMEMORY
;
4393 case Uri_PROPERTY_EXTENSION
:
4394 if(This
->extension_offset
> -1) {
4395 *pbstrProperty
= SysAllocStringLen(This
->canon_uri
+This
->path_start
+This
->extension_offset
,
4396 This
->path_len
-This
->extension_offset
);
4399 *pbstrProperty
= SysAllocStringLen(NULL
, 0);
4403 if(!(*pbstrProperty
))
4404 hres
= E_OUTOFMEMORY
;
4407 case Uri_PROPERTY_FRAGMENT
:
4408 if(This
->fragment_start
> -1) {
4409 *pbstrProperty
= SysAllocStringLen(This
->canon_uri
+This
->fragment_start
, This
->fragment_len
);
4412 *pbstrProperty
= SysAllocStringLen(NULL
, 0);
4416 if(!(*pbstrProperty
))
4417 hres
= E_OUTOFMEMORY
;
4420 case Uri_PROPERTY_HOST
:
4421 if(This
->host_start
> -1) {
4422 /* The '[' and ']' aren't included for IPv6 addresses. */
4423 if(This
->host_type
== Uri_HOST_IPV6
)
4424 *pbstrProperty
= SysAllocStringLen(This
->canon_uri
+This
->host_start
+1, This
->host_len
-2);
4426 *pbstrProperty
= SysAllocStringLen(This
->canon_uri
+This
->host_start
, This
->host_len
);
4430 *pbstrProperty
= SysAllocStringLen(NULL
, 0);
4434 if(!(*pbstrProperty
))
4435 hres
= E_OUTOFMEMORY
;
4438 case Uri_PROPERTY_PASSWORD
:
4439 if(This
->userinfo_split
> -1) {
4440 *pbstrProperty
= SysAllocStringLen(
4441 This
->canon_uri
+This
->userinfo_start
+This
->userinfo_split
+1,
4442 This
->userinfo_len
-This
->userinfo_split
-1);
4445 *pbstrProperty
= SysAllocStringLen(NULL
, 0);
4449 if(!(*pbstrProperty
))
4450 return E_OUTOFMEMORY
;
4453 case Uri_PROPERTY_PATH
:
4454 if(This
->path_start
> -1) {
4455 *pbstrProperty
= SysAllocStringLen(This
->canon_uri
+This
->path_start
, This
->path_len
);
4458 *pbstrProperty
= SysAllocStringLen(NULL
, 0);
4462 if(!(*pbstrProperty
))
4463 hres
= E_OUTOFMEMORY
;
4466 case Uri_PROPERTY_PATH_AND_QUERY
:
4467 if(This
->path_start
> -1) {
4468 *pbstrProperty
= SysAllocStringLen(This
->canon_uri
+This
->path_start
, This
->path_len
+This
->query_len
);
4470 } else if(This
->query_start
> -1) {
4471 *pbstrProperty
= SysAllocStringLen(This
->canon_uri
+This
->query_start
, This
->query_len
);
4474 *pbstrProperty
= SysAllocStringLen(NULL
, 0);
4478 if(!(*pbstrProperty
))
4479 hres
= E_OUTOFMEMORY
;
4482 case Uri_PROPERTY_QUERY
:
4483 if(This
->query_start
> -1) {
4484 *pbstrProperty
= SysAllocStringLen(This
->canon_uri
+This
->query_start
, This
->query_len
);
4487 *pbstrProperty
= SysAllocStringLen(NULL
, 0);
4491 if(!(*pbstrProperty
))
4492 hres
= E_OUTOFMEMORY
;
4495 case Uri_PROPERTY_RAW_URI
:
4496 *pbstrProperty
= SysAllocString(This
->raw_uri
);
4497 if(!(*pbstrProperty
))
4498 hres
= E_OUTOFMEMORY
;
4502 case Uri_PROPERTY_SCHEME_NAME
:
4503 if(This
->scheme_start
> -1) {
4504 *pbstrProperty
= SysAllocStringLen(This
->canon_uri
+ This
->scheme_start
, This
->scheme_len
);
4507 *pbstrProperty
= SysAllocStringLen(NULL
, 0);
4511 if(!(*pbstrProperty
))
4512 hres
= E_OUTOFMEMORY
;
4515 case Uri_PROPERTY_USER_INFO
:
4516 if(This
->userinfo_start
> -1) {
4517 *pbstrProperty
= SysAllocStringLen(This
->canon_uri
+This
->userinfo_start
, This
->userinfo_len
);
4520 *pbstrProperty
= SysAllocStringLen(NULL
, 0);
4524 if(!(*pbstrProperty
))
4525 hres
= E_OUTOFMEMORY
;
4528 case Uri_PROPERTY_USER_NAME
:
4529 if(This
->userinfo_start
> -1 && This
->userinfo_split
!= 0) {
4530 /* If userinfo_split is set, that means a password exists
4531 * so the username is only from userinfo_start to userinfo_split.
4533 if(This
->userinfo_split
> -1) {
4534 *pbstrProperty
= SysAllocStringLen(This
->canon_uri
+ This
->userinfo_start
, This
->userinfo_split
);
4537 *pbstrProperty
= SysAllocStringLen(This
->canon_uri
+ This
->userinfo_start
, This
->userinfo_len
);
4541 *pbstrProperty
= SysAllocStringLen(NULL
, 0);
4545 if(!(*pbstrProperty
))
4546 return E_OUTOFMEMORY
;
4550 FIXME("(%p)->(%d %p %x)\n", This
, uriProp
, pbstrProperty
, dwFlags
);
4557 static HRESULT WINAPI
Uri_GetPropertyLength(IUri
*iface
, Uri_PROPERTY uriProp
, DWORD
*pcchProperty
, DWORD dwFlags
)
4559 Uri
*This
= impl_from_IUri(iface
);
4561 TRACE("(%p %s)->(%d %p %x)\n", This
, debugstr_w(This
->canon_uri
), uriProp
, pcchProperty
, dwFlags
);
4563 if(!This
->create_flags
)
4564 return E_UNEXPECTED
;
4566 return E_INVALIDARG
;
4568 /* Can only return a length for a property if it's a string. */
4569 if(uriProp
> Uri_PROPERTY_STRING_LAST
)
4570 return E_INVALIDARG
;
4572 /* Don't have support for flags yet. */
4574 FIXME("(%p)->(%d %p %x)\n", This
, uriProp
, pcchProperty
, dwFlags
);
4579 case Uri_PROPERTY_ABSOLUTE_URI
:
4580 if(This
->display_modifiers
& URI_DISPLAY_NO_ABSOLUTE_URI
) {
4584 if(This
->scheme_type
!= URL_SCHEME_UNKNOWN
) {
4585 if(This
->userinfo_start
> -1 && This
->userinfo_len
== 0)
4586 /* Don't include the '@' in the length. */
4587 *pcchProperty
= This
->canon_len
-1;
4588 else if(This
->userinfo_start
> -1 && This
->userinfo_len
== 1 &&
4589 This
->userinfo_split
== 0)
4590 /* Don't include the ":@" in the length. */
4591 *pcchProperty
= This
->canon_len
-2;
4593 *pcchProperty
= This
->canon_len
;
4595 *pcchProperty
= This
->canon_len
;
4601 case Uri_PROPERTY_AUTHORITY
:
4602 if(This
->port_offset
> -1 &&
4603 This
->display_modifiers
& URI_DISPLAY_NO_DEFAULT_PORT_AUTH
&&
4604 is_default_port(This
->scheme_type
, This
->port
))
4605 /* Only count up until the port in the authority. */
4606 *pcchProperty
= This
->port_offset
;
4608 *pcchProperty
= This
->authority_len
;
4609 hres
= (This
->authority_start
> -1) ? S_OK
: S_FALSE
;
4611 case Uri_PROPERTY_DISPLAY_URI
:
4612 if(This
->scheme_type
!= URL_SCHEME_UNKNOWN
&& This
->userinfo_start
> -1)
4613 *pcchProperty
= This
->canon_len
-This
->userinfo_len
-1;
4615 *pcchProperty
= This
->canon_len
;
4619 case Uri_PROPERTY_DOMAIN
:
4620 if(This
->domain_offset
> -1)
4621 *pcchProperty
= This
->host_len
- This
->domain_offset
;
4625 hres
= (This
->domain_offset
> -1) ? S_OK
: S_FALSE
;
4627 case Uri_PROPERTY_EXTENSION
:
4628 if(This
->extension_offset
> -1) {
4629 *pcchProperty
= This
->path_len
- This
->extension_offset
;
4637 case Uri_PROPERTY_FRAGMENT
:
4638 *pcchProperty
= This
->fragment_len
;
4639 hres
= (This
->fragment_start
> -1) ? S_OK
: S_FALSE
;
4641 case Uri_PROPERTY_HOST
:
4642 *pcchProperty
= This
->host_len
;
4644 /* '[' and ']' aren't included in the length. */
4645 if(This
->host_type
== Uri_HOST_IPV6
)
4648 hres
= (This
->host_start
> -1) ? S_OK
: S_FALSE
;
4650 case Uri_PROPERTY_PASSWORD
:
4651 *pcchProperty
= (This
->userinfo_split
> -1) ? This
->userinfo_len
-This
->userinfo_split
-1 : 0;
4652 hres
= (This
->userinfo_split
> -1) ? S_OK
: S_FALSE
;
4654 case Uri_PROPERTY_PATH
:
4655 *pcchProperty
= This
->path_len
;
4656 hres
= (This
->path_start
> -1) ? S_OK
: S_FALSE
;
4658 case Uri_PROPERTY_PATH_AND_QUERY
:
4659 *pcchProperty
= This
->path_len
+This
->query_len
;
4660 hres
= (This
->path_start
> -1 || This
->query_start
> -1) ? S_OK
: S_FALSE
;
4662 case Uri_PROPERTY_QUERY
:
4663 *pcchProperty
= This
->query_len
;
4664 hres
= (This
->query_start
> -1) ? S_OK
: S_FALSE
;
4666 case Uri_PROPERTY_RAW_URI
:
4667 *pcchProperty
= SysStringLen(This
->raw_uri
);
4670 case Uri_PROPERTY_SCHEME_NAME
:
4671 *pcchProperty
= This
->scheme_len
;
4672 hres
= (This
->scheme_start
> -1) ? S_OK
: S_FALSE
;
4674 case Uri_PROPERTY_USER_INFO
:
4675 *pcchProperty
= This
->userinfo_len
;
4676 hres
= (This
->userinfo_start
> -1) ? S_OK
: S_FALSE
;
4678 case Uri_PROPERTY_USER_NAME
:
4679 *pcchProperty
= (This
->userinfo_split
> -1) ? This
->userinfo_split
: This
->userinfo_len
;
4680 if(This
->userinfo_split
== 0)
4683 hres
= (This
->userinfo_start
> -1) ? S_OK
: S_FALSE
;
4686 FIXME("(%p)->(%d %p %x)\n", This
, uriProp
, pcchProperty
, dwFlags
);
4693 static HRESULT WINAPI
Uri_GetPropertyDWORD(IUri
*iface
, Uri_PROPERTY uriProp
, DWORD
*pcchProperty
, DWORD dwFlags
)
4695 Uri
*This
= impl_from_IUri(iface
);
4698 TRACE("(%p %s)->(%d %p %x)\n", This
, debugstr_w(This
->canon_uri
), uriProp
, pcchProperty
, dwFlags
);
4700 if(!This
->create_flags
)
4701 return E_UNEXPECTED
;
4703 return E_INVALIDARG
;
4705 /* Microsoft's implementation for the ZONE property of a URI seems to be lacking...
4706 * From what I can tell, instead of checking which URLZONE the URI belongs to it
4707 * simply assigns URLZONE_INVALID and returns E_NOTIMPL. This also applies to the GetZone
4710 if(uriProp
== Uri_PROPERTY_ZONE
) {
4711 *pcchProperty
= URLZONE_INVALID
;
4715 if(uriProp
< Uri_PROPERTY_DWORD_START
) {
4717 return E_INVALIDARG
;
4721 case Uri_PROPERTY_HOST_TYPE
:
4722 *pcchProperty
= This
->host_type
;
4725 case Uri_PROPERTY_PORT
:
4726 if(!This
->has_port
) {
4730 *pcchProperty
= This
->port
;
4735 case Uri_PROPERTY_SCHEME
:
4736 *pcchProperty
= This
->scheme_type
;
4740 FIXME("(%p)->(%d %p %x)\n", This
, uriProp
, pcchProperty
, dwFlags
);
4747 static HRESULT WINAPI
Uri_HasProperty(IUri
*iface
, Uri_PROPERTY uriProp
, BOOL
*pfHasProperty
)
4749 Uri
*This
= impl_from_IUri(iface
);
4751 TRACE("(%p %s)->(%d %p)\n", This
, debugstr_w(This
->canon_uri
), uriProp
, pfHasProperty
);
4754 return E_INVALIDARG
;
4757 case Uri_PROPERTY_ABSOLUTE_URI
:
4758 *pfHasProperty
= !(This
->display_modifiers
& URI_DISPLAY_NO_ABSOLUTE_URI
);
4760 case Uri_PROPERTY_AUTHORITY
:
4761 *pfHasProperty
= This
->authority_start
> -1;
4763 case Uri_PROPERTY_DISPLAY_URI
:
4764 *pfHasProperty
= TRUE
;
4766 case Uri_PROPERTY_DOMAIN
:
4767 *pfHasProperty
= This
->domain_offset
> -1;
4769 case Uri_PROPERTY_EXTENSION
:
4770 *pfHasProperty
= This
->extension_offset
> -1;
4772 case Uri_PROPERTY_FRAGMENT
:
4773 *pfHasProperty
= This
->fragment_start
> -1;
4775 case Uri_PROPERTY_HOST
:
4776 *pfHasProperty
= This
->host_start
> -1;
4778 case Uri_PROPERTY_PASSWORD
:
4779 *pfHasProperty
= This
->userinfo_split
> -1;
4781 case Uri_PROPERTY_PATH
:
4782 *pfHasProperty
= This
->path_start
> -1;
4784 case Uri_PROPERTY_PATH_AND_QUERY
:
4785 *pfHasProperty
= (This
->path_start
> -1 || This
->query_start
> -1);
4787 case Uri_PROPERTY_QUERY
:
4788 *pfHasProperty
= This
->query_start
> -1;
4790 case Uri_PROPERTY_RAW_URI
:
4791 *pfHasProperty
= TRUE
;
4793 case Uri_PROPERTY_SCHEME_NAME
:
4794 *pfHasProperty
= This
->scheme_start
> -1;
4796 case Uri_PROPERTY_USER_INFO
:
4797 *pfHasProperty
= This
->userinfo_start
> -1;
4799 case Uri_PROPERTY_USER_NAME
:
4800 if(This
->userinfo_split
== 0)
4801 *pfHasProperty
= FALSE
;
4803 *pfHasProperty
= This
->userinfo_start
> -1;
4805 case Uri_PROPERTY_HOST_TYPE
:
4806 *pfHasProperty
= TRUE
;
4808 case Uri_PROPERTY_PORT
:
4809 *pfHasProperty
= This
->has_port
;
4811 case Uri_PROPERTY_SCHEME
:
4812 *pfHasProperty
= TRUE
;
4814 case Uri_PROPERTY_ZONE
:
4815 *pfHasProperty
= FALSE
;
4818 FIXME("(%p)->(%d %p): Unsupported property type.\n", This
, uriProp
, pfHasProperty
);
4825 static HRESULT WINAPI
Uri_GetAbsoluteUri(IUri
*iface
, BSTR
*pstrAbsoluteUri
)
4827 TRACE("(%p)->(%p)\n", iface
, pstrAbsoluteUri
);
4828 return IUri_GetPropertyBSTR(iface
, Uri_PROPERTY_ABSOLUTE_URI
, pstrAbsoluteUri
, 0);
4831 static HRESULT WINAPI
Uri_GetAuthority(IUri
*iface
, BSTR
*pstrAuthority
)
4833 TRACE("(%p)->(%p)\n", iface
, pstrAuthority
);
4834 return IUri_GetPropertyBSTR(iface
, Uri_PROPERTY_AUTHORITY
, pstrAuthority
, 0);
4837 static HRESULT WINAPI
Uri_GetDisplayUri(IUri
*iface
, BSTR
*pstrDisplayUri
)
4839 TRACE("(%p)->(%p)\n", iface
, pstrDisplayUri
);
4840 return IUri_GetPropertyBSTR(iface
, Uri_PROPERTY_DISPLAY_URI
, pstrDisplayUri
, 0);
4843 static HRESULT WINAPI
Uri_GetDomain(IUri
*iface
, BSTR
*pstrDomain
)
4845 TRACE("(%p)->(%p)\n", iface
, pstrDomain
);
4846 return IUri_GetPropertyBSTR(iface
, Uri_PROPERTY_DOMAIN
, pstrDomain
, 0);
4849 static HRESULT WINAPI
Uri_GetExtension(IUri
*iface
, BSTR
*pstrExtension
)
4851 TRACE("(%p)->(%p)\n", iface
, pstrExtension
);
4852 return IUri_GetPropertyBSTR(iface
, Uri_PROPERTY_EXTENSION
, pstrExtension
, 0);
4855 static HRESULT WINAPI
Uri_GetFragment(IUri
*iface
, BSTR
*pstrFragment
)
4857 TRACE("(%p)->(%p)\n", iface
, pstrFragment
);
4858 return IUri_GetPropertyBSTR(iface
, Uri_PROPERTY_FRAGMENT
, pstrFragment
, 0);
4861 static HRESULT WINAPI
Uri_GetHost(IUri
*iface
, BSTR
*pstrHost
)
4863 TRACE("(%p)->(%p)\n", iface
, pstrHost
);
4864 return IUri_GetPropertyBSTR(iface
, Uri_PROPERTY_HOST
, pstrHost
, 0);
4867 static HRESULT WINAPI
Uri_GetPassword(IUri
*iface
, BSTR
*pstrPassword
)
4869 TRACE("(%p)->(%p)\n", iface
, pstrPassword
);
4870 return IUri_GetPropertyBSTR(iface
, Uri_PROPERTY_PASSWORD
, pstrPassword
, 0);
4873 static HRESULT WINAPI
Uri_GetPath(IUri
*iface
, BSTR
*pstrPath
)
4875 TRACE("(%p)->(%p)\n", iface
, pstrPath
);
4876 return IUri_GetPropertyBSTR(iface
, Uri_PROPERTY_PATH
, pstrPath
, 0);
4879 static HRESULT WINAPI
Uri_GetPathAndQuery(IUri
*iface
, BSTR
*pstrPathAndQuery
)
4881 TRACE("(%p)->(%p)\n", iface
, pstrPathAndQuery
);
4882 return IUri_GetPropertyBSTR(iface
, Uri_PROPERTY_PATH_AND_QUERY
, pstrPathAndQuery
, 0);
4885 static HRESULT WINAPI
Uri_GetQuery(IUri
*iface
, BSTR
*pstrQuery
)
4887 TRACE("(%p)->(%p)\n", iface
, pstrQuery
);
4888 return IUri_GetPropertyBSTR(iface
, Uri_PROPERTY_QUERY
, pstrQuery
, 0);
4891 static HRESULT WINAPI
Uri_GetRawUri(IUri
*iface
, BSTR
*pstrRawUri
)
4893 TRACE("(%p)->(%p)\n", iface
, pstrRawUri
);
4894 return IUri_GetPropertyBSTR(iface
, Uri_PROPERTY_RAW_URI
, pstrRawUri
, 0);
4897 static HRESULT WINAPI
Uri_GetSchemeName(IUri
*iface
, BSTR
*pstrSchemeName
)
4899 TRACE("(%p)->(%p)\n", iface
, pstrSchemeName
);
4900 return IUri_GetPropertyBSTR(iface
, Uri_PROPERTY_SCHEME_NAME
, pstrSchemeName
, 0);
4903 static HRESULT WINAPI
Uri_GetUserInfo(IUri
*iface
, BSTR
*pstrUserInfo
)
4905 TRACE("(%p)->(%p)\n", iface
, pstrUserInfo
);
4906 return IUri_GetPropertyBSTR(iface
, Uri_PROPERTY_USER_INFO
, pstrUserInfo
, 0);
4909 static HRESULT WINAPI
Uri_GetUserName(IUri
*iface
, BSTR
*pstrUserName
)
4911 TRACE("(%p)->(%p)\n", iface
, pstrUserName
);
4912 return IUri_GetPropertyBSTR(iface
, Uri_PROPERTY_USER_NAME
, pstrUserName
, 0);
4915 static HRESULT WINAPI
Uri_GetHostType(IUri
*iface
, DWORD
*pdwHostType
)
4917 TRACE("(%p)->(%p)\n", iface
, pdwHostType
);
4918 return IUri_GetPropertyDWORD(iface
, Uri_PROPERTY_HOST_TYPE
, pdwHostType
, 0);
4921 static HRESULT WINAPI
Uri_GetPort(IUri
*iface
, DWORD
*pdwPort
)
4923 TRACE("(%p)->(%p)\n", iface
, pdwPort
);
4924 return IUri_GetPropertyDWORD(iface
, Uri_PROPERTY_PORT
, pdwPort
, 0);
4927 static HRESULT WINAPI
Uri_GetScheme(IUri
*iface
, DWORD
*pdwScheme
)
4929 TRACE("(%p)->(%p)\n", iface
, pdwScheme
);
4930 return IUri_GetPropertyDWORD(iface
, Uri_PROPERTY_SCHEME
, pdwScheme
, 0);
4933 static HRESULT WINAPI
Uri_GetZone(IUri
*iface
, DWORD
*pdwZone
)
4935 TRACE("(%p)->(%p)\n", iface
, pdwZone
);
4936 return IUri_GetPropertyDWORD(iface
, Uri_PROPERTY_ZONE
,pdwZone
, 0);
4939 static HRESULT WINAPI
Uri_GetProperties(IUri
*iface
, DWORD
*pdwProperties
)
4941 Uri
*This
= impl_from_IUri(iface
);
4942 TRACE("(%p %s)->(%p)\n", This
, debugstr_w(This
->canon_uri
), pdwProperties
);
4944 if(!This
->create_flags
)
4945 return E_UNEXPECTED
;
4947 return E_INVALIDARG
;
4949 /* All URIs have these. */
4950 *pdwProperties
= Uri_HAS_DISPLAY_URI
|Uri_HAS_RAW_URI
|Uri_HAS_SCHEME
|Uri_HAS_HOST_TYPE
;
4952 if(!(This
->display_modifiers
& URI_DISPLAY_NO_ABSOLUTE_URI
))
4953 *pdwProperties
|= Uri_HAS_ABSOLUTE_URI
;
4955 if(This
->scheme_start
> -1)
4956 *pdwProperties
|= Uri_HAS_SCHEME_NAME
;
4958 if(This
->authority_start
> -1) {
4959 *pdwProperties
|= Uri_HAS_AUTHORITY
;
4960 if(This
->userinfo_start
> -1) {
4961 *pdwProperties
|= Uri_HAS_USER_INFO
;
4962 if(This
->userinfo_split
!= 0)
4963 *pdwProperties
|= Uri_HAS_USER_NAME
;
4965 if(This
->userinfo_split
> -1)
4966 *pdwProperties
|= Uri_HAS_PASSWORD
;
4967 if(This
->host_start
> -1)
4968 *pdwProperties
|= Uri_HAS_HOST
;
4969 if(This
->domain_offset
> -1)
4970 *pdwProperties
|= Uri_HAS_DOMAIN
;
4974 *pdwProperties
|= Uri_HAS_PORT
;
4975 if(This
->path_start
> -1)
4976 *pdwProperties
|= Uri_HAS_PATH
|Uri_HAS_PATH_AND_QUERY
;
4977 if(This
->query_start
> -1)
4978 *pdwProperties
|= Uri_HAS_QUERY
|Uri_HAS_PATH_AND_QUERY
;
4980 if(This
->extension_offset
> -1)
4981 *pdwProperties
|= Uri_HAS_EXTENSION
;
4983 if(This
->fragment_start
> -1)
4984 *pdwProperties
|= Uri_HAS_FRAGMENT
;
4989 static HRESULT WINAPI
Uri_IsEqual(IUri
*iface
, IUri
*pUri
, BOOL
*pfEqual
)
4991 Uri
*This
= impl_from_IUri(iface
);
4994 TRACE("(%p %s)->(%p %p)\n", This
, debugstr_w(This
->canon_uri
), pUri
, pfEqual
);
4996 if(!This
->create_flags
)
4997 return E_UNEXPECTED
;
5004 /* For some reason Windows returns S_OK here... */
5008 /* Try to convert it to a Uri (allows for a more simple comparison). */
5009 if(!(other
= get_uri_obj(pUri
))) {
5010 FIXME("(%p)->(%p %p) No support for unknown IUri's yet.\n", iface
, pUri
, pfEqual
);
5014 TRACE("comparing to %s\n", debugstr_w(other
->canon_uri
));
5015 return compare_uris(This
, other
, pfEqual
);
5018 static const IUriVtbl UriVtbl
= {
5022 Uri_GetPropertyBSTR
,
5023 Uri_GetPropertyLength
,
5024 Uri_GetPropertyDWORD
,
5035 Uri_GetPathAndQuery
,
5049 static inline Uri
* impl_from_IUriBuilderFactory(IUriBuilderFactory
*iface
)
5051 return CONTAINING_RECORD(iface
, Uri
, IUriBuilderFactory_iface
);
5054 static HRESULT WINAPI
UriBuilderFactory_QueryInterface(IUriBuilderFactory
*iface
, REFIID riid
, void **ppv
)
5056 Uri
*This
= impl_from_IUriBuilderFactory(iface
);
5057 return IUri_QueryInterface(&This
->IUri_iface
, riid
, ppv
);
5060 static ULONG WINAPI
UriBuilderFactory_AddRef(IUriBuilderFactory
*iface
)
5062 Uri
*This
= impl_from_IUriBuilderFactory(iface
);
5063 return IUri_AddRef(&This
->IUri_iface
);
5066 static ULONG WINAPI
UriBuilderFactory_Release(IUriBuilderFactory
*iface
)
5068 Uri
*This
= impl_from_IUriBuilderFactory(iface
);
5069 return IUri_Release(&This
->IUri_iface
);
5072 static HRESULT WINAPI
UriBuilderFactory_CreateIUriBuilder(IUriBuilderFactory
*iface
,
5074 DWORD_PTR dwReserved
,
5075 IUriBuilder
**ppIUriBuilder
)
5077 Uri
*This
= impl_from_IUriBuilderFactory(iface
);
5078 TRACE("(%p)->(%08x %08x %p)\n", This
, dwFlags
, (DWORD
)dwReserved
, ppIUriBuilder
);
5083 if(dwFlags
|| dwReserved
) {
5084 *ppIUriBuilder
= NULL
;
5085 return E_INVALIDARG
;
5088 return CreateIUriBuilder(NULL
, 0, 0, ppIUriBuilder
);
5091 static HRESULT WINAPI
UriBuilderFactory_CreateInitializedIUriBuilder(IUriBuilderFactory
*iface
,
5093 DWORD_PTR dwReserved
,
5094 IUriBuilder
**ppIUriBuilder
)
5096 Uri
*This
= impl_from_IUriBuilderFactory(iface
);
5097 TRACE("(%p)->(%08x %08x %p)\n", This
, dwFlags
, (DWORD
)dwReserved
, ppIUriBuilder
);
5102 if(dwFlags
|| dwReserved
) {
5103 *ppIUriBuilder
= NULL
;
5104 return E_INVALIDARG
;
5107 return CreateIUriBuilder(&This
->IUri_iface
, 0, 0, ppIUriBuilder
);
5110 static const IUriBuilderFactoryVtbl UriBuilderFactoryVtbl
= {
5111 UriBuilderFactory_QueryInterface
,
5112 UriBuilderFactory_AddRef
,
5113 UriBuilderFactory_Release
,
5114 UriBuilderFactory_CreateIUriBuilder
,
5115 UriBuilderFactory_CreateInitializedIUriBuilder
5118 static inline Uri
* impl_from_IPersistStream(IPersistStream
*iface
)
5120 return CONTAINING_RECORD(iface
, Uri
, IPersistStream_iface
);
5123 static HRESULT WINAPI
PersistStream_QueryInterface(IPersistStream
*iface
, REFIID riid
, void **ppvObject
)
5125 Uri
*This
= impl_from_IPersistStream(iface
);
5126 return IUri_QueryInterface(&This
->IUri_iface
, riid
, ppvObject
);
5129 static ULONG WINAPI
PersistStream_AddRef(IPersistStream
*iface
)
5131 Uri
*This
= impl_from_IPersistStream(iface
);
5132 return IUri_AddRef(&This
->IUri_iface
);
5135 static ULONG WINAPI
PersistStream_Release(IPersistStream
*iface
)
5137 Uri
*This
= impl_from_IPersistStream(iface
);
5138 return IUri_Release(&This
->IUri_iface
);
5141 static HRESULT WINAPI
PersistStream_GetClassID(IPersistStream
*iface
, CLSID
*pClassID
)
5143 Uri
*This
= impl_from_IPersistStream(iface
);
5144 TRACE("(%p)->(%p)\n", This
, pClassID
);
5147 return E_INVALIDARG
;
5149 *pClassID
= CLSID_CUri
;
5153 static HRESULT WINAPI
PersistStream_IsDirty(IPersistStream
*iface
)
5155 Uri
*This
= impl_from_IPersistStream(iface
);
5156 TRACE("(%p)\n", This
);
5160 struct persist_uri
{
5169 static HRESULT WINAPI
PersistStream_Load(IPersistStream
*iface
, IStream
*pStm
)
5171 Uri
*This
= impl_from_IPersistStream(iface
);
5172 struct persist_uri
*data
;
5177 TRACE("(%p)->(%p)\n", This
, pStm
);
5179 if(This
->create_flags
)
5180 return E_UNEXPECTED
;
5182 return E_INVALIDARG
;
5184 hr
= IStream_Read(pStm
, &size
, sizeof(DWORD
), NULL
);
5187 data
= heap_alloc(size
);
5189 return E_OUTOFMEMORY
;
5190 hr
= IStream_Read(pStm
, &data
->unk1
, size
-sizeof(DWORD
)-2, NULL
);
5194 if(size
< sizeof(struct persist_uri
)) {
5199 if(*(DWORD
*)data
->data
!= Uri_PROPERTY_RAW_URI
) {
5201 ERR("Can't find raw_uri\n");
5202 return E_UNEXPECTED
;
5205 This
->raw_uri
= SysAllocString((WCHAR
*)(data
->data
+sizeof(DWORD
)*2));
5206 if(!This
->raw_uri
) {
5208 return E_OUTOFMEMORY
;
5210 This
->create_flags
= data
->create_flags
;
5212 TRACE("%x %s\n", This
->create_flags
, debugstr_w(This
->raw_uri
));
5214 memset(&parse
, 0, sizeof(parse_data
));
5215 parse
.uri
= This
->raw_uri
;
5216 if(!parse_uri(&parse
, This
->create_flags
)) {
5217 SysFreeString(This
->raw_uri
);
5218 This
->create_flags
= 0;
5219 return E_UNEXPECTED
;
5222 hr
= canonicalize_uri(&parse
, This
, This
->create_flags
);
5224 SysFreeString(This
->raw_uri
);
5225 This
->create_flags
= 0;
5232 static inline BYTE
* persist_stream_add_strprop(Uri
*This
, BYTE
*p
, DWORD type
, DWORD len
, WCHAR
*data
)
5234 len
*= sizeof(WCHAR
);
5237 *(DWORD
*)p
= len
+sizeof(WCHAR
);
5239 memcpy(p
, data
, len
);
5242 return p
+sizeof(WCHAR
);
5245 static inline void persist_stream_save(Uri
*This
, IStream
*pStm
, BOOL marshal
, struct persist_uri
*data
)
5249 data
->create_flags
= This
->create_flags
;
5251 if(This
->create_flags
) {
5252 data
->fields_no
= 1;
5253 p
= persist_stream_add_strprop(This
, data
->data
, Uri_PROPERTY_RAW_URI
,
5254 SysStringLen(This
->raw_uri
), This
->raw_uri
);
5256 if(This
->scheme_type
!=URL_SCHEME_HTTP
&& This
->scheme_type
!=URL_SCHEME_HTTPS
5257 && This
->scheme_type
!=URL_SCHEME_FTP
)
5260 if(This
->fragment_len
) {
5262 p
= persist_stream_add_strprop(This
, p
, Uri_PROPERTY_FRAGMENT
,
5263 This
->fragment_len
, This
->canon_uri
+This
->fragment_start
);
5266 if(This
->host_len
) {
5268 if(This
->host_type
== Uri_HOST_IPV6
)
5269 p
= persist_stream_add_strprop(This
, p
, Uri_PROPERTY_HOST
,
5270 This
->host_len
-2, This
->canon_uri
+This
->host_start
+1);
5272 p
= persist_stream_add_strprop(This
, p
, Uri_PROPERTY_HOST
,
5273 This
->host_len
, This
->canon_uri
+This
->host_start
);
5276 if(This
->userinfo_split
> -1) {
5278 p
= persist_stream_add_strprop(This
, p
, Uri_PROPERTY_PASSWORD
,
5279 This
->userinfo_len
-This
->userinfo_split
-1,
5280 This
->canon_uri
+This
->userinfo_start
+This
->userinfo_split
+1);
5283 if(This
->path_len
) {
5285 p
= persist_stream_add_strprop(This
, p
, Uri_PROPERTY_PATH
,
5286 This
->path_len
, This
->canon_uri
+This
->path_start
);
5287 } else if(marshal
) {
5288 WCHAR no_path
= '/';
5290 p
= persist_stream_add_strprop(This
, p
, Uri_PROPERTY_PATH
, 1, &no_path
);
5293 if(This
->has_port
) {
5295 *(DWORD
*)p
= Uri_PROPERTY_PORT
;
5297 *(DWORD
*)p
= sizeof(DWORD
);
5299 *(DWORD
*)p
= This
->port
;
5303 if(This
->query_len
) {
5305 p
= persist_stream_add_strprop(This
, p
, Uri_PROPERTY_QUERY
,
5306 This
->query_len
, This
->canon_uri
+This
->query_start
);
5309 if(This
->scheme_len
) {
5311 p
= persist_stream_add_strprop(This
, p
, Uri_PROPERTY_SCHEME_NAME
,
5312 This
->scheme_len
, This
->canon_uri
+This
->scheme_start
);
5315 if(This
->userinfo_start
>-1 && This
->userinfo_split
!=0) {
5317 if(This
->userinfo_split
> -1)
5318 p
= persist_stream_add_strprop(This
, p
, Uri_PROPERTY_USER_NAME
,
5319 This
->userinfo_split
, This
->canon_uri
+This
->userinfo_start
);
5321 p
= persist_stream_add_strprop(This
, p
, Uri_PROPERTY_USER_NAME
,
5322 This
->userinfo_len
, This
->canon_uri
+This
->userinfo_start
);
5326 static HRESULT WINAPI
PersistStream_Save(IPersistStream
*iface
, IStream
*pStm
, BOOL fClearDirty
)
5328 Uri
*This
= impl_from_IPersistStream(iface
);
5329 struct persist_uri
*data
;
5330 ULARGE_INTEGER size
;
5333 TRACE("(%p)->(%p %x)\n", This
, pStm
, fClearDirty
);
5336 return E_INVALIDARG
;
5338 hres
= IPersistStream_GetSizeMax(&This
->IPersistStream_iface
, &size
);
5342 data
= heap_alloc_zero(size
.u
.LowPart
);
5344 return E_OUTOFMEMORY
;
5345 data
->size
= size
.u
.LowPart
;
5346 persist_stream_save(This
, pStm
, FALSE
, data
);
5348 hres
= IStream_Write(pStm
, data
, data
->size
-2, NULL
);
5353 static HRESULT WINAPI
PersistStream_GetSizeMax(IPersistStream
*iface
, ULARGE_INTEGER
*pcbSize
)
5355 Uri
*This
= impl_from_IPersistStream(iface
);
5356 TRACE("(%p)->(%p)\n", This
, pcbSize
);
5359 return E_INVALIDARG
;
5361 pcbSize
->u
.LowPart
= 2+sizeof(struct persist_uri
);
5362 pcbSize
->u
.HighPart
= 0;
5363 if(This
->create_flags
)
5364 pcbSize
->u
.LowPart
+= (SysStringLen(This
->raw_uri
)+1)*sizeof(WCHAR
) + 2*sizeof(DWORD
);
5365 else /* there's no place for fields no */
5366 pcbSize
->u
.LowPart
-= sizeof(DWORD
);
5367 if(This
->scheme_type
!=URL_SCHEME_HTTP
&& This
->scheme_type
!=URL_SCHEME_HTTPS
5368 && This
->scheme_type
!=URL_SCHEME_FTP
)
5371 if(This
->fragment_len
)
5372 pcbSize
->u
.LowPart
+= (This
->fragment_len
+1)*sizeof(WCHAR
) + 2*sizeof(DWORD
);
5373 if(This
->host_len
) {
5374 if(This
->host_type
== Uri_HOST_IPV6
)
5375 pcbSize
->u
.LowPart
+= (This
->host_len
-1)*sizeof(WCHAR
) + 2*sizeof(DWORD
);
5377 pcbSize
->u
.LowPart
+= (This
->host_len
+1)*sizeof(WCHAR
) + 2*sizeof(DWORD
);
5379 if(This
->userinfo_split
> -1)
5380 pcbSize
->u
.LowPart
+= (This
->userinfo_len
-This
->userinfo_split
)*sizeof(WCHAR
) + 2*sizeof(DWORD
);
5382 pcbSize
->u
.LowPart
+= (This
->path_len
+1)*sizeof(WCHAR
) + 2*sizeof(DWORD
);
5384 pcbSize
->u
.LowPart
+= 3*sizeof(DWORD
);
5386 pcbSize
->u
.LowPart
+= (This
->query_len
+1)*sizeof(WCHAR
) + 2*sizeof(DWORD
);
5387 if(This
->scheme_len
)
5388 pcbSize
->u
.LowPart
+= (This
->scheme_len
+1)*sizeof(WCHAR
) + 2*sizeof(DWORD
);
5389 if(This
->userinfo_start
>-1 && This
->userinfo_split
!=0) {
5390 if(This
->userinfo_split
> -1)
5391 pcbSize
->u
.LowPart
+= (This
->userinfo_split
+1)*sizeof(WCHAR
) + 2*sizeof(DWORD
);
5393 pcbSize
->u
.LowPart
+= (This
->userinfo_len
+1)*sizeof(WCHAR
) + 2*sizeof(DWORD
);
5398 static const IPersistStreamVtbl PersistStreamVtbl
= {
5399 PersistStream_QueryInterface
,
5400 PersistStream_AddRef
,
5401 PersistStream_Release
,
5402 PersistStream_GetClassID
,
5403 PersistStream_IsDirty
,
5406 PersistStream_GetSizeMax
5409 static inline Uri
* impl_from_IMarshal(IMarshal
*iface
)
5411 return CONTAINING_RECORD(iface
, Uri
, IMarshal_iface
);
5414 static HRESULT WINAPI
Marshal_QueryInterface(IMarshal
*iface
, REFIID riid
, void **ppvObject
)
5416 Uri
*This
= impl_from_IMarshal(iface
);
5417 return IUri_QueryInterface(&This
->IUri_iface
, riid
, ppvObject
);
5420 static ULONG WINAPI
Marshal_AddRef(IMarshal
*iface
)
5422 Uri
*This
= impl_from_IMarshal(iface
);
5423 return IUri_AddRef(&This
->IUri_iface
);
5426 static ULONG WINAPI
Marshal_Release(IMarshal
*iface
)
5428 Uri
*This
= impl_from_IMarshal(iface
);
5429 return IUri_Release(&This
->IUri_iface
);
5432 static HRESULT WINAPI
Marshal_GetUnmarshalClass(IMarshal
*iface
, REFIID riid
, void *pv
,
5433 DWORD dwDestContext
, void *pvDestContext
, DWORD mshlflags
, CLSID
*pCid
)
5435 Uri
*This
= impl_from_IMarshal(iface
);
5436 TRACE("(%p)->(%s %p %x %p %x %p)\n", This
, debugstr_guid(riid
), pv
,
5437 dwDestContext
, pvDestContext
, mshlflags
, pCid
);
5439 if(!pCid
|| (dwDestContext
!=MSHCTX_LOCAL
&& dwDestContext
!=MSHCTX_NOSHAREDMEM
5440 && dwDestContext
!=MSHCTX_INPROC
))
5441 return E_INVALIDARG
;
5447 struct inproc_marshal_uri
{
5450 DWORD unk
[4]; /* process identifier? */
5454 static HRESULT WINAPI
Marshal_GetMarshalSizeMax(IMarshal
*iface
, REFIID riid
, void *pv
,
5455 DWORD dwDestContext
, void *pvDestContext
, DWORD mshlflags
, DWORD
*pSize
)
5457 Uri
*This
= impl_from_IMarshal(iface
);
5458 ULARGE_INTEGER size
;
5460 TRACE("(%p)->(%s %p %x %p %x %p)\n", This
, debugstr_guid(riid
), pv
,
5461 dwDestContext
, pvDestContext
, mshlflags
, pSize
);
5463 if(!pSize
|| (dwDestContext
!=MSHCTX_LOCAL
&& dwDestContext
!=MSHCTX_NOSHAREDMEM
5464 && dwDestContext
!=MSHCTX_INPROC
))
5465 return E_INVALIDARG
;
5467 if(dwDestContext
== MSHCTX_INPROC
) {
5468 *pSize
= sizeof(struct inproc_marshal_uri
);
5472 hres
= IPersistStream_GetSizeMax(&This
->IPersistStream_iface
, &size
);
5475 if(!This
->path_len
&& (This
->scheme_type
==URL_SCHEME_HTTP
5476 || This
->scheme_type
==URL_SCHEME_HTTPS
5477 || This
->scheme_type
==URL_SCHEME_FTP
))
5478 size
.u
.LowPart
+= 3*sizeof(DWORD
);
5479 *pSize
= size
.u
.LowPart
+2*sizeof(DWORD
);
5483 static HRESULT WINAPI
Marshal_MarshalInterface(IMarshal
*iface
, IStream
*pStm
, REFIID riid
,
5484 void *pv
, DWORD dwDestContext
, void *pvDestContext
, DWORD mshlflags
)
5486 Uri
*This
= impl_from_IMarshal(iface
);
5491 TRACE("(%p)->(%p %s %p %x %p %x)\n", This
, pStm
, debugstr_guid(riid
), pv
,
5492 dwDestContext
, pvDestContext
, mshlflags
);
5494 if(!pStm
|| mshlflags
!=MSHLFLAGS_NORMAL
|| (dwDestContext
!=MSHCTX_LOCAL
5495 && dwDestContext
!=MSHCTX_NOSHAREDMEM
&& dwDestContext
!=MSHCTX_INPROC
))
5496 return E_INVALIDARG
;
5498 if(dwDestContext
== MSHCTX_INPROC
) {
5499 struct inproc_marshal_uri data
;
5501 data
.size
= sizeof(data
);
5502 data
.mshlflags
= MSHCTX_INPROC
;
5509 hres
= IStream_Write(pStm
, &data
, data
.size
, NULL
);
5513 IUri_AddRef(&This
->IUri_iface
);
5517 hres
= IMarshal_GetMarshalSizeMax(iface
, riid
, pv
, dwDestContext
,
5518 pvDestContext
, mshlflags
, &size
);
5522 data
= heap_alloc_zero(size
);
5524 return E_OUTOFMEMORY
;
5527 data
[1] = dwDestContext
;
5528 data
[2] = size
-2*sizeof(DWORD
);
5529 persist_stream_save(This
, pStm
, TRUE
, (struct persist_uri
*)(data
+2));
5531 hres
= IStream_Write(pStm
, data
, data
[0]-2, NULL
);
5536 static HRESULT WINAPI
Marshal_UnmarshalInterface(IMarshal
*iface
,
5537 IStream
*pStm
, REFIID riid
, void **ppv
)
5539 Uri
*This
= impl_from_IMarshal(iface
);
5543 TRACE("(%p)->(%p %s %p)\n", This
, pStm
, debugstr_guid(riid
), ppv
);
5545 if(This
->create_flags
)
5546 return E_UNEXPECTED
;
5547 if(!pStm
|| !riid
|| !ppv
)
5548 return E_INVALIDARG
;
5550 hres
= IStream_Read(pStm
, header
, sizeof(header
), NULL
);
5554 if(header
[1]!=MSHCTX_LOCAL
&& header
[1]!=MSHCTX_NOSHAREDMEM
5555 && header
[1]!=MSHCTX_INPROC
)
5556 return E_UNEXPECTED
;
5558 if(header
[1] == MSHCTX_INPROC
) {
5559 struct inproc_marshal_uri data
;
5562 hres
= IStream_Read(pStm
, data
.unk
, sizeof(data
)-2*sizeof(DWORD
), NULL
);
5566 This
->raw_uri
= SysAllocString(data
.uri
->raw_uri
);
5567 if(!This
->raw_uri
) {
5568 return E_OUTOFMEMORY
;
5571 memset(&parse
, 0, sizeof(parse_data
));
5572 parse
.uri
= This
->raw_uri
;
5574 if(!parse_uri(&parse
, data
.uri
->create_flags
))
5575 return E_INVALIDARG
;
5577 hres
= canonicalize_uri(&parse
, This
, data
.uri
->create_flags
);
5581 This
->create_flags
= data
.uri
->create_flags
;
5582 IUri_Release(&data
.uri
->IUri_iface
);
5584 return IUri_QueryInterface(&This
->IUri_iface
, riid
, ppv
);
5587 hres
= IPersistStream_Load(&This
->IPersistStream_iface
, pStm
);
5591 return IUri_QueryInterface(&This
->IUri_iface
, riid
, ppv
);
5594 static HRESULT WINAPI
Marshal_ReleaseMarshalData(IMarshal
*iface
, IStream
*pStm
)
5596 Uri
*This
= impl_from_IMarshal(iface
);
5601 TRACE("(%p)->(%p)\n", This
, pStm
);
5604 return E_INVALIDARG
;
5606 hres
= IStream_Read(pStm
, header
, 2*sizeof(DWORD
), NULL
);
5610 if(header
[1] == MSHCTX_INPROC
) {
5611 struct inproc_marshal_uri data
;
5613 hres
= IStream_Read(pStm
, data
.unk
, sizeof(data
)-2*sizeof(DWORD
), NULL
);
5617 IUri_Release(&data
.uri
->IUri_iface
);
5621 off
.u
.LowPart
= header
[0]-sizeof(header
)-2;
5623 return IStream_Seek(pStm
, off
, STREAM_SEEK_CUR
, NULL
);
5626 static HRESULT WINAPI
Marshal_DisconnectObject(IMarshal
*iface
, DWORD dwReserved
)
5628 Uri
*This
= impl_from_IMarshal(iface
);
5629 TRACE("(%p)->(%x)\n", This
, dwReserved
);
5633 static const IMarshalVtbl MarshalVtbl
= {
5634 Marshal_QueryInterface
,
5637 Marshal_GetUnmarshalClass
,
5638 Marshal_GetMarshalSizeMax
,
5639 Marshal_MarshalInterface
,
5640 Marshal_UnmarshalInterface
,
5641 Marshal_ReleaseMarshalData
,
5642 Marshal_DisconnectObject
5645 HRESULT
Uri_Construct(IUnknown
*pUnkOuter
, LPVOID
*ppobj
)
5647 Uri
*ret
= heap_alloc_zero(sizeof(Uri
));
5649 TRACE("(%p %p)\n", pUnkOuter
, ppobj
);
5653 return E_OUTOFMEMORY
;
5655 ret
->IUri_iface
.lpVtbl
= &UriVtbl
;
5656 ret
->IUriBuilderFactory_iface
.lpVtbl
= &UriBuilderFactoryVtbl
;
5657 ret
->IPersistStream_iface
.lpVtbl
= &PersistStreamVtbl
;
5658 ret
->IMarshal_iface
.lpVtbl
= &MarshalVtbl
;
5661 *ppobj
= &ret
->IUri_iface
;
5665 /***********************************************************************
5666 * CreateUri (urlmon.@)
5668 * Creates a new IUri object using the URI represented by pwzURI. This function
5669 * parses and validates the components of pwzURI and then canonicalizes the
5670 * parsed components.
5673 * pwzURI [I] The URI to parse, validate, and canonicalize.
5674 * dwFlags [I] Flags which can affect how the parsing/canonicalization is performed.
5675 * dwReserved [I] Reserved (not used).
5676 * ppURI [O] The resulting IUri after parsing/canonicalization occurs.
5679 * Success: Returns S_OK. ppURI contains the pointer to the newly allocated IUri.
5680 * Failure: E_INVALIDARG if there are invalid flag combinations in dwFlags, or an
5681 * invalid parameter, or pwzURI doesn't represent a valid URI.
5682 * E_OUTOFMEMORY if any memory allocation fails.
5686 * Uri_CREATE_CANONICALIZE, Uri_CREATE_DECODE_EXTRA_INFO, Uri_CREATE_CRACK_UNKNOWN_SCHEMES,
5687 * Uri_CREATE_PRE_PROCESS_HTML_URI, Uri_CREATE_NO_IE_SETTINGS.
5689 HRESULT WINAPI
CreateUri(LPCWSTR pwzURI
, DWORD dwFlags
, DWORD_PTR dwReserved
, IUri
**ppURI
)
5691 const DWORD supported_flags
= Uri_CREATE_ALLOW_RELATIVE
|Uri_CREATE_ALLOW_IMPLICIT_WILDCARD_SCHEME
|
5692 Uri_CREATE_ALLOW_IMPLICIT_FILE_SCHEME
|Uri_CREATE_NO_CANONICALIZE
|Uri_CREATE_CANONICALIZE
|
5693 Uri_CREATE_DECODE_EXTRA_INFO
|Uri_CREATE_NO_DECODE_EXTRA_INFO
|Uri_CREATE_CRACK_UNKNOWN_SCHEMES
|
5694 Uri_CREATE_NO_CRACK_UNKNOWN_SCHEMES
|Uri_CREATE_PRE_PROCESS_HTML_URI
|Uri_CREATE_NO_PRE_PROCESS_HTML_URI
|
5695 Uri_CREATE_NO_IE_SETTINGS
|Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS
|Uri_CREATE_FILE_USE_DOS_PATH
;
5700 TRACE("(%s %x %x %p)\n", debugstr_w(pwzURI
), dwFlags
, (DWORD
)dwReserved
, ppURI
);
5703 return E_INVALIDARG
;
5707 return E_INVALIDARG
;
5710 /* Check for invalid flags. */
5711 if(has_invalid_flag_combination(dwFlags
)) {
5713 return E_INVALIDARG
;
5716 /* Currently unsupported. */
5717 if(dwFlags
& ~supported_flags
)
5718 FIXME("Ignoring unsupported flag(s) %x\n", dwFlags
& ~supported_flags
);
5720 hr
= Uri_Construct(NULL
, (void**)&ret
);
5726 /* Explicitly set the default flags if it doesn't cause a flag conflict. */
5727 apply_default_flags(&dwFlags
);
5729 /* Pre process the URI, unless told otherwise. */
5730 if(!(dwFlags
& Uri_CREATE_NO_PRE_PROCESS_HTML_URI
))
5731 ret
->raw_uri
= pre_process_uri(pwzURI
);
5733 ret
->raw_uri
= SysAllocString(pwzURI
);
5737 return E_OUTOFMEMORY
;
5740 memset(&data
, 0, sizeof(parse_data
));
5741 data
.uri
= ret
->raw_uri
;
5743 /* Validate and parse the URI into its components. */
5744 if(!parse_uri(&data
, dwFlags
)) {
5745 /* Encountered an unsupported or invalid URI */
5746 IUri_Release(&ret
->IUri_iface
);
5748 return E_INVALIDARG
;
5751 /* Canonicalize the URI. */
5752 hr
= canonicalize_uri(&data
, ret
, dwFlags
);
5754 IUri_Release(&ret
->IUri_iface
);
5759 ret
->create_flags
= dwFlags
;
5761 *ppURI
= &ret
->IUri_iface
;
5765 /***********************************************************************
5766 * CreateUriWithFragment (urlmon.@)
5768 * Creates a new IUri object. This is almost the same as CreateUri, expect that
5769 * it allows you to explicitly specify a fragment (pwzFragment) for pwzURI.
5772 * pwzURI [I] The URI to parse and perform canonicalization on.
5773 * pwzFragment [I] The explicit fragment string which should be added to pwzURI.
5774 * dwFlags [I] The flags which will be passed to CreateUri.
5775 * dwReserved [I] Reserved (not used).
5776 * ppURI [O] The resulting IUri after parsing/canonicalization.
5779 * Success: S_OK. ppURI contains the pointer to the newly allocated IUri.
5780 * Failure: E_INVALIDARG if pwzURI already contains a fragment and pwzFragment
5781 * isn't NULL. Will also return E_INVALIDARG for the same reasons as
5782 * CreateUri will. E_OUTOFMEMORY if any allocation fails.
5784 HRESULT WINAPI
CreateUriWithFragment(LPCWSTR pwzURI
, LPCWSTR pwzFragment
, DWORD dwFlags
,
5785 DWORD_PTR dwReserved
, IUri
**ppURI
)
5788 TRACE("(%s %s %x %x %p)\n", debugstr_w(pwzURI
), debugstr_w(pwzFragment
), dwFlags
, (DWORD
)dwReserved
, ppURI
);
5791 return E_INVALIDARG
;
5795 return E_INVALIDARG
;
5798 /* Check if a fragment should be appended to the URI string. */
5801 DWORD uri_len
, frag_len
;
5804 /* Check if the original URI already has a fragment component. */
5805 if(StrChrW(pwzURI
, '#')) {
5807 return E_INVALIDARG
;
5810 uri_len
= lstrlenW(pwzURI
);
5811 frag_len
= lstrlenW(pwzFragment
);
5813 /* If the fragment doesn't start with a '#', one will be added. */
5814 add_pound
= *pwzFragment
!= '#';
5817 uriW
= heap_alloc((uri_len
+frag_len
+2)*sizeof(WCHAR
));
5819 uriW
= heap_alloc((uri_len
+frag_len
+1)*sizeof(WCHAR
));
5822 return E_OUTOFMEMORY
;
5824 memcpy(uriW
, pwzURI
, uri_len
*sizeof(WCHAR
));
5826 uriW
[uri_len
++] = '#';
5827 memcpy(uriW
+uri_len
, pwzFragment
, (frag_len
+1)*sizeof(WCHAR
));
5829 hres
= CreateUri(uriW
, dwFlags
, 0, ppURI
);
5833 /* A fragment string wasn't specified, so just forward the call. */
5834 hres
= CreateUri(pwzURI
, dwFlags
, 0, ppURI
);
5839 static HRESULT
build_uri(const UriBuilder
*builder
, IUri
**uri
, DWORD create_flags
,
5840 DWORD use_orig_flags
, DWORD encoding_mask
)
5849 if(encoding_mask
&& (!builder
->uri
|| builder
->modified_props
)) {
5854 /* Decide what flags should be used when creating the Uri. */
5855 if((use_orig_flags
& UriBuilder_USE_ORIGINAL_FLAGS
) && builder
->uri
)
5856 create_flags
= builder
->uri
->create_flags
;
5858 if(has_invalid_flag_combination(create_flags
)) {
5860 return E_INVALIDARG
;
5863 /* Set the default flags if they don't cause a conflict. */
5864 apply_default_flags(&create_flags
);
5867 /* Return the base IUri if no changes have been made and the create_flags match. */
5868 if(builder
->uri
&& !builder
->modified_props
&& builder
->uri
->create_flags
== create_flags
) {
5869 *uri
= &builder
->uri
->IUri_iface
;
5874 hr
= validate_components(builder
, &data
, create_flags
);
5880 hr
= Uri_Construct(NULL
, (void**)&ret
);
5886 hr
= generate_uri(builder
, &data
, ret
, create_flags
);
5888 IUri_Release(&ret
->IUri_iface
);
5893 *uri
= &ret
->IUri_iface
;
5897 static inline UriBuilder
* impl_from_IUriBuilder(IUriBuilder
*iface
)
5899 return CONTAINING_RECORD(iface
, UriBuilder
, IUriBuilder_iface
);
5902 static HRESULT WINAPI
UriBuilder_QueryInterface(IUriBuilder
*iface
, REFIID riid
, void **ppv
)
5904 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
5906 if(IsEqualGUID(&IID_IUnknown
, riid
)) {
5907 TRACE("(%p)->(IID_IUnknown %p)\n", This
, ppv
);
5908 *ppv
= &This
->IUriBuilder_iface
;
5909 }else if(IsEqualGUID(&IID_IUriBuilder
, riid
)) {
5910 TRACE("(%p)->(IID_IUriBuilder %p)\n", This
, ppv
);
5911 *ppv
= &This
->IUriBuilder_iface
;
5913 TRACE("(%p)->(%s %p)\n", This
, debugstr_guid(riid
), ppv
);
5915 return E_NOINTERFACE
;
5918 IUnknown_AddRef((IUnknown
*)*ppv
);
5922 static ULONG WINAPI
UriBuilder_AddRef(IUriBuilder
*iface
)
5924 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
5925 LONG ref
= InterlockedIncrement(&This
->ref
);
5927 TRACE("(%p) ref=%d\n", This
, ref
);
5932 static ULONG WINAPI
UriBuilder_Release(IUriBuilder
*iface
)
5934 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
5935 LONG ref
= InterlockedDecrement(&This
->ref
);
5937 TRACE("(%p) ref=%d\n", This
, ref
);
5940 if(This
->uri
) IUri_Release(&This
->uri
->IUri_iface
);
5941 heap_free(This
->fragment
);
5942 heap_free(This
->host
);
5943 heap_free(This
->password
);
5944 heap_free(This
->path
);
5945 heap_free(This
->query
);
5946 heap_free(This
->scheme
);
5947 heap_free(This
->username
);
5954 static HRESULT WINAPI
UriBuilder_CreateUriSimple(IUriBuilder
*iface
,
5955 DWORD dwAllowEncodingPropertyMask
,
5956 DWORD_PTR dwReserved
,
5959 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
5961 TRACE("(%p)->(%d %d %p)\n", This
, dwAllowEncodingPropertyMask
, (DWORD
)dwReserved
, ppIUri
);
5963 hr
= build_uri(This
, ppIUri
, 0, UriBuilder_USE_ORIGINAL_FLAGS
, dwAllowEncodingPropertyMask
);
5965 FIXME("(%p)->(%d %d %p)\n", This
, dwAllowEncodingPropertyMask
, (DWORD
)dwReserved
, ppIUri
);
5969 static HRESULT WINAPI
UriBuilder_CreateUri(IUriBuilder
*iface
,
5970 DWORD dwCreateFlags
,
5971 DWORD dwAllowEncodingPropertyMask
,
5972 DWORD_PTR dwReserved
,
5975 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
5977 TRACE("(%p)->(0x%08x %d %d %p)\n", This
, dwCreateFlags
, dwAllowEncodingPropertyMask
, (DWORD
)dwReserved
, ppIUri
);
5979 if(dwCreateFlags
== -1)
5980 hr
= build_uri(This
, ppIUri
, 0, UriBuilder_USE_ORIGINAL_FLAGS
, dwAllowEncodingPropertyMask
);
5982 hr
= build_uri(This
, ppIUri
, dwCreateFlags
, 0, dwAllowEncodingPropertyMask
);
5985 FIXME("(%p)->(0x%08x %d %d %p)\n", This
, dwCreateFlags
, dwAllowEncodingPropertyMask
, (DWORD
)dwReserved
, ppIUri
);
5989 static HRESULT WINAPI
UriBuilder_CreateUriWithFlags(IUriBuilder
*iface
,
5990 DWORD dwCreateFlags
,
5991 DWORD dwUriBuilderFlags
,
5992 DWORD dwAllowEncodingPropertyMask
,
5993 DWORD_PTR dwReserved
,
5996 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
5998 TRACE("(%p)->(0x%08x 0x%08x %d %d %p)\n", This
, dwCreateFlags
, dwUriBuilderFlags
,
5999 dwAllowEncodingPropertyMask
, (DWORD
)dwReserved
, ppIUri
);
6001 hr
= build_uri(This
, ppIUri
, dwCreateFlags
, dwUriBuilderFlags
, dwAllowEncodingPropertyMask
);
6003 FIXME("(%p)->(0x%08x 0x%08x %d %d %p)\n", This
, dwCreateFlags
, dwUriBuilderFlags
,
6004 dwAllowEncodingPropertyMask
, (DWORD
)dwReserved
, ppIUri
);
6008 static HRESULT WINAPI
UriBuilder_GetIUri(IUriBuilder
*iface
, IUri
**ppIUri
)
6010 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
6011 TRACE("(%p)->(%p)\n", This
, ppIUri
);
6017 IUri
*uri
= &This
->uri
->IUri_iface
;
6026 static HRESULT WINAPI
UriBuilder_SetIUri(IUriBuilder
*iface
, IUri
*pIUri
)
6028 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
6029 TRACE("(%p)->(%p)\n", This
, pIUri
);
6034 if((uri
= get_uri_obj(pIUri
))) {
6035 /* Only reset the builder if it's Uri isn't the same as
6036 * the Uri passed to the function.
6038 if(This
->uri
!= uri
) {
6039 reset_builder(This
);
6043 This
->port
= uri
->port
;
6048 FIXME("(%p)->(%p) Unknown IUri types not supported yet.\n", This
, pIUri
);
6051 } else if(This
->uri
)
6052 /* Only reset the builder if it's Uri isn't NULL. */
6053 reset_builder(This
);
6058 static HRESULT WINAPI
UriBuilder_GetFragment(IUriBuilder
*iface
, DWORD
*pcchFragment
, LPCWSTR
*ppwzFragment
)
6060 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
6061 TRACE("(%p)->(%p %p)\n", This
, pcchFragment
, ppwzFragment
);
6063 if(!This
->uri
|| This
->uri
->fragment_start
== -1 || This
->modified_props
& Uri_HAS_FRAGMENT
)
6064 return get_builder_component(&This
->fragment
, &This
->fragment_len
, NULL
, 0, ppwzFragment
, pcchFragment
);
6066 return get_builder_component(&This
->fragment
, &This
->fragment_len
, This
->uri
->canon_uri
+This
->uri
->fragment_start
,
6067 This
->uri
->fragment_len
, ppwzFragment
, pcchFragment
);
6070 static HRESULT WINAPI
UriBuilder_GetHost(IUriBuilder
*iface
, DWORD
*pcchHost
, LPCWSTR
*ppwzHost
)
6072 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
6073 TRACE("(%p)->(%p %p)\n", This
, pcchHost
, ppwzHost
);
6075 if(!This
->uri
|| This
->uri
->host_start
== -1 || This
->modified_props
& Uri_HAS_HOST
)
6076 return get_builder_component(&This
->host
, &This
->host_len
, NULL
, 0, ppwzHost
, pcchHost
);
6078 if(This
->uri
->host_type
== Uri_HOST_IPV6
)
6079 /* Don't include the '[' and ']' around the address. */
6080 return get_builder_component(&This
->host
, &This
->host_len
, This
->uri
->canon_uri
+This
->uri
->host_start
+1,
6081 This
->uri
->host_len
-2, ppwzHost
, pcchHost
);
6083 return get_builder_component(&This
->host
, &This
->host_len
, This
->uri
->canon_uri
+This
->uri
->host_start
,
6084 This
->uri
->host_len
, ppwzHost
, pcchHost
);
6088 static HRESULT WINAPI
UriBuilder_GetPassword(IUriBuilder
*iface
, DWORD
*pcchPassword
, LPCWSTR
*ppwzPassword
)
6090 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
6091 TRACE("(%p)->(%p %p)\n", This
, pcchPassword
, ppwzPassword
);
6093 if(!This
->uri
|| This
->uri
->userinfo_split
== -1 || This
->modified_props
& Uri_HAS_PASSWORD
)
6094 return get_builder_component(&This
->password
, &This
->password_len
, NULL
, 0, ppwzPassword
, pcchPassword
);
6096 const WCHAR
*start
= This
->uri
->canon_uri
+This
->uri
->userinfo_start
+This
->uri
->userinfo_split
+1;
6097 DWORD len
= This
->uri
->userinfo_len
-This
->uri
->userinfo_split
-1;
6098 return get_builder_component(&This
->password
, &This
->password_len
, start
, len
, ppwzPassword
, pcchPassword
);
6102 static HRESULT WINAPI
UriBuilder_GetPath(IUriBuilder
*iface
, DWORD
*pcchPath
, LPCWSTR
*ppwzPath
)
6104 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
6105 TRACE("(%p)->(%p %p)\n", This
, pcchPath
, ppwzPath
);
6107 if(!This
->uri
|| This
->uri
->path_start
== -1 || This
->modified_props
& Uri_HAS_PATH
)
6108 return get_builder_component(&This
->path
, &This
->path_len
, NULL
, 0, ppwzPath
, pcchPath
);
6110 return get_builder_component(&This
->path
, &This
->path_len
, This
->uri
->canon_uri
+This
->uri
->path_start
,
6111 This
->uri
->path_len
, ppwzPath
, pcchPath
);
6114 static HRESULT WINAPI
UriBuilder_GetPort(IUriBuilder
*iface
, BOOL
*pfHasPort
, DWORD
*pdwPort
)
6116 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
6117 TRACE("(%p)->(%p %p)\n", This
, pfHasPort
, pdwPort
);
6130 *pfHasPort
= This
->has_port
;
6131 *pdwPort
= This
->port
;
6135 static HRESULT WINAPI
UriBuilder_GetQuery(IUriBuilder
*iface
, DWORD
*pcchQuery
, LPCWSTR
*ppwzQuery
)
6137 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
6138 TRACE("(%p)->(%p %p)\n", This
, pcchQuery
, ppwzQuery
);
6140 if(!This
->uri
|| This
->uri
->query_start
== -1 || This
->modified_props
& Uri_HAS_QUERY
)
6141 return get_builder_component(&This
->query
, &This
->query_len
, NULL
, 0, ppwzQuery
, pcchQuery
);
6143 return get_builder_component(&This
->query
, &This
->query_len
, This
->uri
->canon_uri
+This
->uri
->query_start
,
6144 This
->uri
->query_len
, ppwzQuery
, pcchQuery
);
6147 static HRESULT WINAPI
UriBuilder_GetSchemeName(IUriBuilder
*iface
, DWORD
*pcchSchemeName
, LPCWSTR
*ppwzSchemeName
)
6149 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
6150 TRACE("(%p)->(%p %p)\n", This
, pcchSchemeName
, ppwzSchemeName
);
6152 if(!This
->uri
|| This
->uri
->scheme_start
== -1 || This
->modified_props
& Uri_HAS_SCHEME_NAME
)
6153 return get_builder_component(&This
->scheme
, &This
->scheme_len
, NULL
, 0, ppwzSchemeName
, pcchSchemeName
);
6155 return get_builder_component(&This
->scheme
, &This
->scheme_len
, This
->uri
->canon_uri
+This
->uri
->scheme_start
,
6156 This
->uri
->scheme_len
, ppwzSchemeName
, pcchSchemeName
);
6159 static HRESULT WINAPI
UriBuilder_GetUserName(IUriBuilder
*iface
, DWORD
*pcchUserName
, LPCWSTR
*ppwzUserName
)
6161 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
6162 TRACE("(%p)->(%p %p)\n", This
, pcchUserName
, ppwzUserName
);
6164 if(!This
->uri
|| This
->uri
->userinfo_start
== -1 || This
->uri
->userinfo_split
== 0 ||
6165 This
->modified_props
& Uri_HAS_USER_NAME
)
6166 return get_builder_component(&This
->username
, &This
->username_len
, NULL
, 0, ppwzUserName
, pcchUserName
);
6168 const WCHAR
*start
= This
->uri
->canon_uri
+This
->uri
->userinfo_start
;
6170 /* Check if there's a password in the userinfo section. */
6171 if(This
->uri
->userinfo_split
> -1)
6172 /* Don't include the password. */
6173 return get_builder_component(&This
->username
, &This
->username_len
, start
,
6174 This
->uri
->userinfo_split
, ppwzUserName
, pcchUserName
);
6176 return get_builder_component(&This
->username
, &This
->username_len
, start
,
6177 This
->uri
->userinfo_len
, ppwzUserName
, pcchUserName
);
6181 static HRESULT WINAPI
UriBuilder_SetFragment(IUriBuilder
*iface
, LPCWSTR pwzNewValue
)
6183 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
6184 TRACE("(%p)->(%s)\n", This
, debugstr_w(pwzNewValue
));
6185 return set_builder_component(&This
->fragment
, &This
->fragment_len
, pwzNewValue
, '#',
6186 &This
->modified_props
, Uri_HAS_FRAGMENT
);
6189 static HRESULT WINAPI
UriBuilder_SetHost(IUriBuilder
*iface
, LPCWSTR pwzNewValue
)
6191 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
6192 TRACE("(%p)->(%s)\n", This
, debugstr_w(pwzNewValue
));
6194 /* Host name can't be set to NULL. */
6196 return E_INVALIDARG
;
6198 return set_builder_component(&This
->host
, &This
->host_len
, pwzNewValue
, 0,
6199 &This
->modified_props
, Uri_HAS_HOST
);
6202 static HRESULT WINAPI
UriBuilder_SetPassword(IUriBuilder
*iface
, LPCWSTR pwzNewValue
)
6204 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
6205 TRACE("(%p)->(%s)\n", This
, debugstr_w(pwzNewValue
));
6206 return set_builder_component(&This
->password
, &This
->password_len
, pwzNewValue
, 0,
6207 &This
->modified_props
, Uri_HAS_PASSWORD
);
6210 static HRESULT WINAPI
UriBuilder_SetPath(IUriBuilder
*iface
, LPCWSTR pwzNewValue
)
6212 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
6213 TRACE("(%p)->(%s)\n", This
, debugstr_w(pwzNewValue
));
6214 return set_builder_component(&This
->path
, &This
->path_len
, pwzNewValue
, 0,
6215 &This
->modified_props
, Uri_HAS_PATH
);
6218 static HRESULT WINAPI
UriBuilder_SetPort(IUriBuilder
*iface
, BOOL fHasPort
, DWORD dwNewValue
)
6220 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
6221 TRACE("(%p)->(%d %d)\n", This
, fHasPort
, dwNewValue
);
6223 This
->has_port
= fHasPort
;
6224 This
->port
= dwNewValue
;
6225 This
->modified_props
|= Uri_HAS_PORT
;
6229 static HRESULT WINAPI
UriBuilder_SetQuery(IUriBuilder
*iface
, LPCWSTR pwzNewValue
)
6231 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
6232 TRACE("(%p)->(%s)\n", This
, debugstr_w(pwzNewValue
));
6233 return set_builder_component(&This
->query
, &This
->query_len
, pwzNewValue
, '?',
6234 &This
->modified_props
, Uri_HAS_QUERY
);
6237 static HRESULT WINAPI
UriBuilder_SetSchemeName(IUriBuilder
*iface
, LPCWSTR pwzNewValue
)
6239 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
6240 TRACE("(%p)->(%s)\n", This
, debugstr_w(pwzNewValue
));
6242 /* Only set the scheme name if it's not NULL or empty. */
6243 if(!pwzNewValue
|| !*pwzNewValue
)
6244 return E_INVALIDARG
;
6246 return set_builder_component(&This
->scheme
, &This
->scheme_len
, pwzNewValue
, 0,
6247 &This
->modified_props
, Uri_HAS_SCHEME_NAME
);
6250 static HRESULT WINAPI
UriBuilder_SetUserName(IUriBuilder
*iface
, LPCWSTR pwzNewValue
)
6252 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
6253 TRACE("(%p)->(%s)\n", This
, debugstr_w(pwzNewValue
));
6254 return set_builder_component(&This
->username
, &This
->username_len
, pwzNewValue
, 0,
6255 &This
->modified_props
, Uri_HAS_USER_NAME
);
6258 static HRESULT WINAPI
UriBuilder_RemoveProperties(IUriBuilder
*iface
, DWORD dwPropertyMask
)
6260 const DWORD accepted_flags
= Uri_HAS_AUTHORITY
|Uri_HAS_DOMAIN
|Uri_HAS_EXTENSION
|Uri_HAS_FRAGMENT
|Uri_HAS_HOST
|
6261 Uri_HAS_PASSWORD
|Uri_HAS_PATH
|Uri_HAS_PATH_AND_QUERY
|Uri_HAS_QUERY
|
6262 Uri_HAS_USER_INFO
|Uri_HAS_USER_NAME
;
6264 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
6265 TRACE("(%p)->(0x%08x)\n", This
, dwPropertyMask
);
6267 if(dwPropertyMask
& ~accepted_flags
)
6268 return E_INVALIDARG
;
6270 if(dwPropertyMask
& Uri_HAS_FRAGMENT
)
6271 UriBuilder_SetFragment(iface
, NULL
);
6273 /* Even though you can't set the host name to NULL or an
6274 * empty string, you can still remove it... for some reason.
6276 if(dwPropertyMask
& Uri_HAS_HOST
)
6277 set_builder_component(&This
->host
, &This
->host_len
, NULL
, 0,
6278 &This
->modified_props
, Uri_HAS_HOST
);
6280 if(dwPropertyMask
& Uri_HAS_PASSWORD
)
6281 UriBuilder_SetPassword(iface
, NULL
);
6283 if(dwPropertyMask
& Uri_HAS_PATH
)
6284 UriBuilder_SetPath(iface
, NULL
);
6286 if(dwPropertyMask
& Uri_HAS_PORT
)
6287 UriBuilder_SetPort(iface
, FALSE
, 0);
6289 if(dwPropertyMask
& Uri_HAS_QUERY
)
6290 UriBuilder_SetQuery(iface
, NULL
);
6292 if(dwPropertyMask
& Uri_HAS_USER_NAME
)
6293 UriBuilder_SetUserName(iface
, NULL
);
6298 static HRESULT WINAPI
UriBuilder_HasBeenModified(IUriBuilder
*iface
, BOOL
*pfModified
)
6300 UriBuilder
*This
= impl_from_IUriBuilder(iface
);
6301 TRACE("(%p)->(%p)\n", This
, pfModified
);
6306 *pfModified
= This
->modified_props
> 0;
6310 static const IUriBuilderVtbl UriBuilderVtbl
= {
6311 UriBuilder_QueryInterface
,
6314 UriBuilder_CreateUriSimple
,
6315 UriBuilder_CreateUri
,
6316 UriBuilder_CreateUriWithFlags
,
6319 UriBuilder_GetFragment
,
6321 UriBuilder_GetPassword
,
6324 UriBuilder_GetQuery
,
6325 UriBuilder_GetSchemeName
,
6326 UriBuilder_GetUserName
,
6327 UriBuilder_SetFragment
,
6329 UriBuilder_SetPassword
,
6332 UriBuilder_SetQuery
,
6333 UriBuilder_SetSchemeName
,
6334 UriBuilder_SetUserName
,
6335 UriBuilder_RemoveProperties
,
6336 UriBuilder_HasBeenModified
,
6339 /***********************************************************************
6340 * CreateIUriBuilder (urlmon.@)
6342 HRESULT WINAPI
CreateIUriBuilder(IUri
*pIUri
, DWORD dwFlags
, DWORD_PTR dwReserved
, IUriBuilder
**ppIUriBuilder
)
6346 TRACE("(%p %x %x %p)\n", pIUri
, dwFlags
, (DWORD
)dwReserved
, ppIUriBuilder
);
6351 ret
= heap_alloc_zero(sizeof(UriBuilder
));
6353 return E_OUTOFMEMORY
;
6355 ret
->IUriBuilder_iface
.lpVtbl
= &UriBuilderVtbl
;
6361 if((uri
= get_uri_obj(pIUri
))) {
6362 if(!uri
->create_flags
)
6363 return E_UNEXPECTED
;
6368 /* Windows doesn't set 'has_port' to TRUE in this case. */
6369 ret
->port
= uri
->port
;
6373 *ppIUriBuilder
= NULL
;
6374 FIXME("(%p %x %x %p): Unknown IUri types not supported yet.\n", pIUri
, dwFlags
,
6375 (DWORD
)dwReserved
, ppIUriBuilder
);
6380 *ppIUriBuilder
= &ret
->IUriBuilder_iface
;
6384 /* Merges the base path with the relative path and stores the resulting path
6385 * and path len in 'result' and 'result_len'.
6387 static HRESULT
merge_paths(parse_data
*data
, const WCHAR
*base
, DWORD base_len
, const WCHAR
*relative
,
6388 DWORD relative_len
, WCHAR
**result
, DWORD
*result_len
, DWORD flags
)
6390 const WCHAR
*end
= NULL
;
6391 DWORD base_copy_len
= 0;
6395 /* Find the characters that will be copied over from
6398 end
= memrchrW(base
, '/', base_len
);
6399 if(!end
&& data
->scheme_type
== URL_SCHEME_FILE
)
6400 /* Try looking for a '\\'. */
6401 end
= memrchrW(base
, '\\', base_len
);
6405 base_copy_len
= (end
+1)-base
;
6406 *result
= heap_alloc((base_copy_len
+relative_len
+1)*sizeof(WCHAR
));
6408 *result
= heap_alloc((relative_len
+1)*sizeof(WCHAR
));
6412 return E_OUTOFMEMORY
;
6417 memcpy(ptr
, base
, base_copy_len
*sizeof(WCHAR
));
6418 ptr
+= base_copy_len
;
6421 memcpy(ptr
, relative
, relative_len
*sizeof(WCHAR
));
6422 ptr
+= relative_len
;
6425 *result_len
= (ptr
-*result
);
6429 static HRESULT
combine_uri(Uri
*base
, Uri
*relative
, DWORD flags
, IUri
**result
, DWORD extras
) {
6433 DWORD create_flags
= 0, len
= 0;
6435 memset(&data
, 0, sizeof(parse_data
));
6437 /* Base case is when the relative Uri has a scheme name,
6438 * if it does, then 'result' will contain the same data
6439 * as the relative Uri.
6441 if(relative
->scheme_start
> -1) {
6442 data
.uri
= SysAllocString(relative
->raw_uri
);
6445 return E_OUTOFMEMORY
;
6448 parse_uri(&data
, 0);
6450 hr
= Uri_Construct(NULL
, (void**)&ret
);
6456 if(extras
& COMBINE_URI_FORCE_FLAG_USE
) {
6457 if(flags
& URL_DONT_SIMPLIFY
)
6458 create_flags
|= Uri_CREATE_NO_CANONICALIZE
;
6459 if(flags
& URL_DONT_UNESCAPE_EXTRA_INFO
)
6460 create_flags
|= Uri_CREATE_NO_DECODE_EXTRA_INFO
;
6463 ret
->raw_uri
= data
.uri
;
6464 hr
= canonicalize_uri(&data
, ret
, create_flags
);
6466 IUri_Release(&ret
->IUri_iface
);
6471 apply_default_flags(&create_flags
);
6472 ret
->create_flags
= create_flags
;
6474 *result
= &ret
->IUri_iface
;
6477 DWORD raw_flags
= 0;
6479 if(base
->scheme_start
> -1) {
6480 data
.scheme
= base
->canon_uri
+base
->scheme_start
;
6481 data
.scheme_len
= base
->scheme_len
;
6482 data
.scheme_type
= base
->scheme_type
;
6484 data
.is_relative
= TRUE
;
6485 data
.scheme_type
= URL_SCHEME_UNKNOWN
;
6486 create_flags
|= Uri_CREATE_ALLOW_RELATIVE
;
6489 if(base
->authority_start
> -1) {
6490 if(base
->userinfo_start
> -1 && base
->userinfo_split
!= 0) {
6491 data
.username
= base
->canon_uri
+base
->userinfo_start
;
6492 data
.username_len
= (base
->userinfo_split
> -1) ? base
->userinfo_split
: base
->userinfo_len
;
6495 if(base
->userinfo_split
> -1) {
6496 data
.password
= base
->canon_uri
+base
->userinfo_start
+base
->userinfo_split
+1;
6497 data
.password_len
= base
->userinfo_len
-base
->userinfo_split
-1;
6500 if(base
->host_start
> -1) {
6501 data
.host
= base
->canon_uri
+base
->host_start
;
6502 data
.host_len
= base
->host_len
;
6503 data
.host_type
= base
->host_type
;
6506 if(base
->has_port
) {
6507 data
.has_port
= TRUE
;
6508 data
.port_value
= base
->port
;
6510 } else if(base
->scheme_type
!= URL_SCHEME_FILE
)
6511 data
.is_opaque
= TRUE
;
6513 if(relative
->path_start
== -1 || !relative
->path_len
) {
6514 if(base
->path_start
> -1) {
6515 data
.path
= base
->canon_uri
+base
->path_start
;
6516 data
.path_len
= base
->path_len
;
6517 } else if((base
->path_start
== -1 || !base
->path_len
) && !data
.is_opaque
) {
6518 /* Just set the path as a '/' if the base didn't have
6519 * one and if it's an hierarchical URI.
6521 static const WCHAR slashW
[] = {'/',0};
6526 if(relative
->query_start
> -1) {
6527 data
.query
= relative
->canon_uri
+relative
->query_start
;
6528 data
.query_len
= relative
->query_len
;
6529 } else if(base
->query_start
> -1) {
6530 data
.query
= base
->canon_uri
+base
->query_start
;
6531 data
.query_len
= base
->query_len
;
6534 const WCHAR
*ptr
, **pptr
;
6535 DWORD path_offset
= 0, path_len
= 0;
6537 /* There's two possibilities on what will happen to the path component
6538 * of the result IUri. First, if the relative path begins with a '/'
6539 * then the resulting path will just be the relative path. Second, if
6540 * relative path doesn't begin with a '/' then the base path and relative
6541 * path are merged together.
6543 if(relative
->path_len
&& *(relative
->canon_uri
+relative
->path_start
) == '/') {
6545 BOOL copy_drive_path
= FALSE
;
6547 /* If the relative IUri's path starts with a '/', then we
6548 * don't use the base IUri's path. Unless the base IUri
6549 * is a file URI, in which case it uses the drive path of
6550 * the base IUri (if it has any) in the new path.
6552 if(base
->scheme_type
== URL_SCHEME_FILE
) {
6553 if(base
->path_len
> 3 && *(base
->canon_uri
+base
->path_start
) == '/' &&
6554 is_drive_path(base
->canon_uri
+base
->path_start
+1)) {
6556 copy_drive_path
= TRUE
;
6560 path_len
+= relative
->path_len
;
6562 path
= heap_alloc((path_len
+1)*sizeof(WCHAR
));
6565 return E_OUTOFMEMORY
;
6570 /* Copy the base paths, drive path over. */
6571 if(copy_drive_path
) {
6572 memcpy(tmp
, base
->canon_uri
+base
->path_start
, 3*sizeof(WCHAR
));
6576 memcpy(tmp
, relative
->canon_uri
+relative
->path_start
, relative
->path_len
*sizeof(WCHAR
));
6577 path
[path_len
] = '\0';
6579 /* Merge the base path with the relative path. */
6580 hr
= merge_paths(&data
, base
->canon_uri
+base
->path_start
, base
->path_len
,
6581 relative
->canon_uri
+relative
->path_start
, relative
->path_len
,
6582 &path
, &path_len
, flags
);
6588 /* If the resulting IUri is a file URI, the drive path isn't
6589 * reduced out when the dot segments are removed.
6591 if(path_len
>= 3 && data
.scheme_type
== URL_SCHEME_FILE
&& !data
.host
) {
6592 if(*path
== '/' && is_drive_path(path
+1))
6594 else if(is_drive_path(path
))
6599 /* Check if the dot segments need to be removed from the path. */
6600 if(!(flags
& URL_DONT_SIMPLIFY
) && !data
.is_opaque
) {
6601 DWORD offset
= (path_offset
> 0) ? path_offset
+1 : 0;
6602 DWORD new_len
= remove_dot_segments(path
+offset
,path_len
-offset
);
6604 if(new_len
!= path_len
) {
6605 WCHAR
*tmp
= heap_realloc(path
, (offset
+new_len
+1)*sizeof(WCHAR
));
6609 return E_OUTOFMEMORY
;
6612 tmp
[new_len
+offset
] = '\0';
6614 path_len
= new_len
+offset
;
6618 if(relative
->query_start
> -1) {
6619 data
.query
= relative
->canon_uri
+relative
->query_start
;
6620 data
.query_len
= relative
->query_len
;
6623 /* Make sure the path component is valid. */
6626 if((data
.is_opaque
&& !parse_path_opaque(pptr
, &data
, 0)) ||
6627 (!data
.is_opaque
&& !parse_path_hierarchical(pptr
, &data
, 0))) {
6630 return E_INVALIDARG
;
6634 if(relative
->fragment_start
> -1) {
6635 data
.fragment
= relative
->canon_uri
+relative
->fragment_start
;
6636 data
.fragment_len
= relative
->fragment_len
;
6639 if(flags
& URL_DONT_SIMPLIFY
)
6640 raw_flags
|= RAW_URI_FORCE_PORT_DISP
;
6641 if(flags
& URL_FILE_USE_PATHURL
)
6642 raw_flags
|= RAW_URI_CONVERT_TO_DOS_PATH
;
6644 len
= generate_raw_uri(&data
, data
.uri
, raw_flags
);
6645 data
.uri
= SysAllocStringLen(NULL
, len
);
6649 return E_OUTOFMEMORY
;
6652 generate_raw_uri(&data
, data
.uri
, raw_flags
);
6654 hr
= Uri_Construct(NULL
, (void**)&ret
);
6656 SysFreeString(data
.uri
);
6662 if(flags
& URL_DONT_SIMPLIFY
)
6663 create_flags
|= Uri_CREATE_NO_CANONICALIZE
;
6664 if(flags
& URL_FILE_USE_PATHURL
)
6665 create_flags
|= Uri_CREATE_FILE_USE_DOS_PATH
;
6667 ret
->raw_uri
= data
.uri
;
6668 hr
= canonicalize_uri(&data
, ret
, create_flags
);
6670 IUri_Release(&ret
->IUri_iface
);
6675 if(flags
& URL_DONT_SIMPLIFY
)
6676 ret
->display_modifiers
|= URI_DISPLAY_NO_DEFAULT_PORT_AUTH
;
6678 apply_default_flags(&create_flags
);
6679 ret
->create_flags
= create_flags
;
6680 *result
= &ret
->IUri_iface
;
6688 /***********************************************************************
6689 * CoInternetCombineIUri (urlmon.@)
6691 HRESULT WINAPI
CoInternetCombineIUri(IUri
*pBaseUri
, IUri
*pRelativeUri
, DWORD dwCombineFlags
,
6692 IUri
**ppCombinedUri
, DWORD_PTR dwReserved
)
6695 IInternetProtocolInfo
*info
;
6696 Uri
*relative
, *base
;
6697 TRACE("(%p %p %x %p %x)\n", pBaseUri
, pRelativeUri
, dwCombineFlags
, ppCombinedUri
, (DWORD
)dwReserved
);
6700 return E_INVALIDARG
;
6702 if(!pBaseUri
|| !pRelativeUri
) {
6703 *ppCombinedUri
= NULL
;
6704 return E_INVALIDARG
;
6707 relative
= get_uri_obj(pRelativeUri
);
6708 base
= get_uri_obj(pBaseUri
);
6709 if(!relative
|| !base
) {
6710 *ppCombinedUri
= NULL
;
6711 FIXME("(%p %p %x %p %x) Unknown IUri types not supported yet.\n",
6712 pBaseUri
, pRelativeUri
, dwCombineFlags
, ppCombinedUri
, (DWORD
)dwReserved
);
6716 info
= get_protocol_info(base
->canon_uri
);
6718 WCHAR result
[INTERNET_MAX_URL_LENGTH
+1];
6719 DWORD result_len
= 0;
6721 hr
= IInternetProtocolInfo_CombineUrl(info
, base
->canon_uri
, relative
->canon_uri
, dwCombineFlags
,
6722 result
, INTERNET_MAX_URL_LENGTH
+1, &result_len
, 0);
6723 IInternetProtocolInfo_Release(info
);
6725 hr
= CreateUri(result
, Uri_CREATE_ALLOW_RELATIVE
, 0, ppCombinedUri
);
6731 return combine_uri(base
, relative
, dwCombineFlags
, ppCombinedUri
, 0);
6734 /***********************************************************************
6735 * CoInternetCombineUrlEx (urlmon.@)
6737 HRESULT WINAPI
CoInternetCombineUrlEx(IUri
*pBaseUri
, LPCWSTR pwzRelativeUrl
, DWORD dwCombineFlags
,
6738 IUri
**ppCombinedUri
, DWORD_PTR dwReserved
)
6743 IInternetProtocolInfo
*info
;
6745 TRACE("(%p %s %x %p %x) stub\n", pBaseUri
, debugstr_w(pwzRelativeUrl
), dwCombineFlags
,
6746 ppCombinedUri
, (DWORD
)dwReserved
);
6751 if(!pwzRelativeUrl
) {
6752 *ppCombinedUri
= NULL
;
6753 return E_UNEXPECTED
;
6757 *ppCombinedUri
= NULL
;
6758 return E_INVALIDARG
;
6761 base
= get_uri_obj(pBaseUri
);
6763 *ppCombinedUri
= NULL
;
6764 FIXME("(%p %s %x %p %x) Unknown IUri's not supported yet.\n", pBaseUri
, debugstr_w(pwzRelativeUrl
),
6765 dwCombineFlags
, ppCombinedUri
, (DWORD
)dwReserved
);
6769 info
= get_protocol_info(base
->canon_uri
);
6771 WCHAR result
[INTERNET_MAX_URL_LENGTH
+1];
6772 DWORD result_len
= 0;
6774 hr
= IInternetProtocolInfo_CombineUrl(info
, base
->canon_uri
, pwzRelativeUrl
, dwCombineFlags
,
6775 result
, INTERNET_MAX_URL_LENGTH
+1, &result_len
, 0);
6776 IInternetProtocolInfo_Release(info
);
6778 hr
= CreateUri(result
, Uri_CREATE_ALLOW_RELATIVE
, 0, ppCombinedUri
);
6784 hr
= CreateUri(pwzRelativeUrl
, Uri_CREATE_ALLOW_RELATIVE
, 0, &relative
);
6786 *ppCombinedUri
= NULL
;
6790 hr
= combine_uri(base
, get_uri_obj(relative
), dwCombineFlags
, ppCombinedUri
, COMBINE_URI_FORCE_FLAG_USE
);
6792 IUri_Release(relative
);
6796 static HRESULT
parse_canonicalize(const Uri
*uri
, DWORD flags
, LPWSTR output
,
6797 DWORD output_len
, DWORD
*result_len
)
6799 const WCHAR
*ptr
= NULL
;
6802 WCHAR buffer
[INTERNET_MAX_URL_LENGTH
+1];
6806 /* URL_UNESCAPE only has effect if none of the URL_ESCAPE flags are set. */
6807 const BOOL allow_unescape
= !(flags
& URL_ESCAPE_UNSAFE
) &&
6808 !(flags
& URL_ESCAPE_SPACES_ONLY
) &&
6809 !(flags
& URL_ESCAPE_PERCENT
);
6812 /* Check if the dot segments need to be removed from the
6815 if(uri
->scheme_start
> -1 && uri
->path_start
> -1) {
6816 ptr
= uri
->canon_uri
+uri
->scheme_start
+uri
->scheme_len
+1;
6819 reduce_path
= !(flags
& URL_NO_META
) &&
6820 !(flags
& URL_DONT_SIMPLIFY
) &&
6821 ptr
&& check_hierarchical(pptr
);
6823 for(ptr
= uri
->canon_uri
; ptr
< uri
->canon_uri
+uri
->canon_len
; ++ptr
) {
6824 BOOL do_default_action
= TRUE
;
6826 /* Keep track of the path if we need to remove dot segments from
6829 if(reduce_path
&& !path
&& ptr
== uri
->canon_uri
+uri
->path_start
)
6832 /* Check if it's time to reduce the path. */
6833 if(reduce_path
&& ptr
== uri
->canon_uri
+uri
->path_start
+uri
->path_len
) {
6834 DWORD current_path_len
= (buffer
+len
) - path
;
6835 DWORD new_path_len
= remove_dot_segments(path
, current_path_len
);
6837 /* Update the current length. */
6838 len
-= (current_path_len
-new_path_len
);
6839 reduce_path
= FALSE
;
6843 const WCHAR decoded
= decode_pct_val(ptr
);
6845 if(allow_unescape
&& (flags
& URL_UNESCAPE
)) {
6846 buffer
[len
++] = decoded
;
6848 do_default_action
= FALSE
;
6852 /* See if %'s needed to encoded. */
6853 if(do_default_action
&& (flags
& URL_ESCAPE_PERCENT
)) {
6854 pct_encode_val(*ptr
, buffer
+len
);
6856 do_default_action
= FALSE
;
6858 } else if(*ptr
== ' ') {
6859 if((flags
& URL_ESCAPE_SPACES_ONLY
) &&
6860 !(flags
& URL_ESCAPE_UNSAFE
)) {
6861 pct_encode_val(*ptr
, buffer
+len
);
6863 do_default_action
= FALSE
;
6865 } else if(!is_reserved(*ptr
) && !is_unreserved(*ptr
)) {
6866 if(flags
& URL_ESCAPE_UNSAFE
) {
6867 pct_encode_val(*ptr
, buffer
+len
);
6869 do_default_action
= FALSE
;
6873 if(do_default_action
)
6874 buffer
[len
++] = *ptr
;
6877 /* Sometimes the path is the very last component of the IUri, so
6878 * see if the dot segments need to be reduced now.
6880 if(reduce_path
&& path
) {
6881 DWORD current_path_len
= (buffer
+len
) - path
;
6882 DWORD new_path_len
= remove_dot_segments(path
, current_path_len
);
6884 /* Update the current length. */
6885 len
-= (current_path_len
-new_path_len
);
6890 /* The null terminator isn't included in the length. */
6891 *result_len
= len
-1;
6892 if(len
> output_len
)
6893 return STRSAFE_E_INSUFFICIENT_BUFFER
;
6895 memcpy(output
, buffer
, len
*sizeof(WCHAR
));
6900 static HRESULT
parse_friendly(IUri
*uri
, LPWSTR output
, DWORD output_len
,
6907 hr
= IUri_GetPropertyLength(uri
, Uri_PROPERTY_DISPLAY_URI
, &display_len
, 0);
6913 *result_len
= display_len
;
6914 if(display_len
+1 > output_len
)
6915 return STRSAFE_E_INSUFFICIENT_BUFFER
;
6917 hr
= IUri_GetDisplayUri(uri
, &display
);
6923 memcpy(output
, display
, (display_len
+1)*sizeof(WCHAR
));
6924 SysFreeString(display
);
6928 static HRESULT
parse_rootdocument(const Uri
*uri
, LPWSTR output
, DWORD output_len
,
6931 static const WCHAR colon_slashesW
[] = {':','/','/'};
6936 /* Windows only returns the root document if the URI has an authority
6937 * and it's not an unknown scheme type or a file scheme type.
6939 if(uri
->authority_start
== -1 ||
6940 uri
->scheme_type
== URL_SCHEME_UNKNOWN
||
6941 uri
->scheme_type
== URL_SCHEME_FILE
) {
6944 return STRSAFE_E_INSUFFICIENT_BUFFER
;
6950 len
= uri
->scheme_len
+uri
->authority_len
;
6951 /* For the "://" and '/' which will be added. */
6954 if(len
+1 > output_len
) {
6956 return STRSAFE_E_INSUFFICIENT_BUFFER
;
6960 memcpy(ptr
, uri
->canon_uri
+uri
->scheme_start
, uri
->scheme_len
*sizeof(WCHAR
));
6962 /* Add the "://". */
6963 ptr
+= uri
->scheme_len
;
6964 memcpy(ptr
, colon_slashesW
, sizeof(colon_slashesW
));
6966 /* Add the authority. */
6967 ptr
+= sizeof(colon_slashesW
)/sizeof(WCHAR
);
6968 memcpy(ptr
, uri
->canon_uri
+uri
->authority_start
, uri
->authority_len
*sizeof(WCHAR
));
6970 /* Add the '/' after the authority. */
6971 ptr
+= uri
->authority_len
;
6979 static HRESULT
parse_document(const Uri
*uri
, LPWSTR output
, DWORD output_len
,
6984 /* It has to be a known scheme type, but, it can't be a file
6985 * scheme. It also has to hierarchical.
6987 if(uri
->scheme_type
== URL_SCHEME_UNKNOWN
||
6988 uri
->scheme_type
== URL_SCHEME_FILE
||
6989 uri
->authority_start
== -1) {
6992 return STRSAFE_E_INSUFFICIENT_BUFFER
;
6998 if(uri
->fragment_start
> -1)
6999 len
= uri
->fragment_start
;
7001 len
= uri
->canon_len
;
7004 if(len
+1 > output_len
)
7005 return STRSAFE_E_INSUFFICIENT_BUFFER
;
7007 memcpy(output
, uri
->canon_uri
, len
*sizeof(WCHAR
));
7012 static HRESULT
parse_path_from_url(const Uri
*uri
, LPWSTR output
, DWORD output_len
,
7015 const WCHAR
*path_ptr
;
7016 WCHAR buffer
[INTERNET_MAX_URL_LENGTH
+1];
7019 if(uri
->scheme_type
!= URL_SCHEME_FILE
) {
7023 return E_INVALIDARG
;
7027 if(uri
->host_start
> -1) {
7028 static const WCHAR slash_slashW
[] = {'\\','\\'};
7030 memcpy(ptr
, slash_slashW
, sizeof(slash_slashW
));
7031 ptr
+= sizeof(slash_slashW
)/sizeof(WCHAR
);
7032 memcpy(ptr
, uri
->canon_uri
+uri
->host_start
, uri
->host_len
*sizeof(WCHAR
));
7033 ptr
+= uri
->host_len
;
7036 path_ptr
= uri
->canon_uri
+uri
->path_start
;
7037 if(uri
->path_len
> 3 && *path_ptr
== '/' && is_drive_path(path_ptr
+1))
7038 /* Skip past the '/' in front of the drive path. */
7041 for(; path_ptr
< uri
->canon_uri
+uri
->path_start
+uri
->path_len
; ++path_ptr
, ++ptr
) {
7042 BOOL do_default_action
= TRUE
;
7044 if(*path_ptr
== '%') {
7045 const WCHAR decoded
= decode_pct_val(path_ptr
);
7049 do_default_action
= FALSE
;
7051 } else if(*path_ptr
== '/') {
7053 do_default_action
= FALSE
;
7056 if(do_default_action
)
7062 *result_len
= ptr
-buffer
;
7063 if(*result_len
+1 > output_len
)
7064 return STRSAFE_E_INSUFFICIENT_BUFFER
;
7066 memcpy(output
, buffer
, (*result_len
+1)*sizeof(WCHAR
));
7070 static HRESULT
parse_url_from_path(IUri
*uri
, LPWSTR output
, DWORD output_len
,
7077 hr
= IUri_GetPropertyLength(uri
, Uri_PROPERTY_ABSOLUTE_URI
, &len
, 0);
7084 if(len
+1 > output_len
)
7085 return STRSAFE_E_INSUFFICIENT_BUFFER
;
7087 hr
= IUri_GetAbsoluteUri(uri
, &received
);
7093 memcpy(output
, received
, (len
+1)*sizeof(WCHAR
));
7094 SysFreeString(received
);
7099 static HRESULT
parse_schema(IUri
*uri
, LPWSTR output
, DWORD output_len
,
7106 hr
= IUri_GetPropertyLength(uri
, Uri_PROPERTY_SCHEME_NAME
, &len
, 0);
7113 if(len
+1 > output_len
)
7114 return STRSAFE_E_INSUFFICIENT_BUFFER
;
7116 hr
= IUri_GetSchemeName(uri
, &received
);
7122 memcpy(output
, received
, (len
+1)*sizeof(WCHAR
));
7123 SysFreeString(received
);
7128 static HRESULT
parse_site(IUri
*uri
, LPWSTR output
, DWORD output_len
, DWORD
*result_len
)
7134 hr
= IUri_GetPropertyLength(uri
, Uri_PROPERTY_HOST
, &len
, 0);
7141 if(len
+1 > output_len
)
7142 return STRSAFE_E_INSUFFICIENT_BUFFER
;
7144 hr
= IUri_GetHost(uri
, &received
);
7150 memcpy(output
, received
, (len
+1)*sizeof(WCHAR
));
7151 SysFreeString(received
);
7156 static HRESULT
parse_domain(IUri
*uri
, LPWSTR output
, DWORD output_len
, DWORD
*result_len
)
7162 hr
= IUri_GetPropertyLength(uri
, Uri_PROPERTY_DOMAIN
, &len
, 0);
7169 if(len
+1 > output_len
)
7170 return STRSAFE_E_INSUFFICIENT_BUFFER
;
7172 hr
= IUri_GetDomain(uri
, &received
);
7178 memcpy(output
, received
, (len
+1)*sizeof(WCHAR
));
7179 SysFreeString(received
);
7184 static HRESULT
parse_anchor(IUri
*uri
, LPWSTR output
, DWORD output_len
, DWORD
*result_len
)
7190 hr
= IUri_GetPropertyLength(uri
, Uri_PROPERTY_FRAGMENT
, &len
, 0);
7197 if(len
+1 > output_len
)
7198 return STRSAFE_E_INSUFFICIENT_BUFFER
;
7200 hr
= IUri_GetFragment(uri
, &received
);
7206 memcpy(output
, received
, (len
+1)*sizeof(WCHAR
));
7207 SysFreeString(received
);
7212 /***********************************************************************
7213 * CoInternetParseIUri (urlmon.@)
7215 HRESULT WINAPI
CoInternetParseIUri(IUri
*pIUri
, PARSEACTION ParseAction
, DWORD dwFlags
,
7216 LPWSTR pwzResult
, DWORD cchResult
, DWORD
*pcchResult
,
7217 DWORD_PTR dwReserved
)
7221 IInternetProtocolInfo
*info
;
7223 TRACE("(%p %d %x %p %d %p %x)\n", pIUri
, ParseAction
, dwFlags
, pwzResult
,
7224 cchResult
, pcchResult
, (DWORD
)dwReserved
);
7229 if(!pwzResult
|| !pIUri
) {
7231 return E_INVALIDARG
;
7234 if(!(uri
= get_uri_obj(pIUri
))) {
7236 FIXME("(%p %d %x %p %d %p %x) Unknown IUri's not supported for this action.\n",
7237 pIUri
, ParseAction
, dwFlags
, pwzResult
, cchResult
, pcchResult
, (DWORD
)dwReserved
);
7241 info
= get_protocol_info(uri
->canon_uri
);
7243 hr
= IInternetProtocolInfo_ParseUrl(info
, uri
->canon_uri
, ParseAction
, dwFlags
,
7244 pwzResult
, cchResult
, pcchResult
, 0);
7245 IInternetProtocolInfo_Release(info
);
7246 if(SUCCEEDED(hr
)) return hr
;
7249 switch(ParseAction
) {
7250 case PARSE_CANONICALIZE
:
7251 hr
= parse_canonicalize(uri
, dwFlags
, pwzResult
, cchResult
, pcchResult
);
7253 case PARSE_FRIENDLY
:
7254 hr
= parse_friendly(pIUri
, pwzResult
, cchResult
, pcchResult
);
7256 case PARSE_ROOTDOCUMENT
:
7257 hr
= parse_rootdocument(uri
, pwzResult
, cchResult
, pcchResult
);
7259 case PARSE_DOCUMENT
:
7260 hr
= parse_document(uri
, pwzResult
, cchResult
, pcchResult
);
7262 case PARSE_PATH_FROM_URL
:
7263 hr
= parse_path_from_url(uri
, pwzResult
, cchResult
, pcchResult
);
7265 case PARSE_URL_FROM_PATH
:
7266 hr
= parse_url_from_path(pIUri
, pwzResult
, cchResult
, pcchResult
);
7269 hr
= parse_schema(pIUri
, pwzResult
, cchResult
, pcchResult
);
7272 hr
= parse_site(pIUri
, pwzResult
, cchResult
, pcchResult
);
7275 hr
= parse_domain(pIUri
, pwzResult
, cchResult
, pcchResult
);
7277 case PARSE_LOCATION
:
7279 hr
= parse_anchor(pIUri
, pwzResult
, cchResult
, pcchResult
);
7281 case PARSE_SECURITY_URL
:
7284 case PARSE_SECURITY_DOMAIN
:
7291 FIXME("(%p %d %x %p %d %p %x) Partial stub.\n", pIUri
, ParseAction
, dwFlags
,
7292 pwzResult
, cchResult
, pcchResult
, (DWORD
)dwReserved
);