winex11: Pass a generic PHYSDEV to all graphics entry points.
[wine] / dlls / urlmon / uri.c
1 /*
2  * Copyright 2010 Jacek Caban for CodeWeavers
3  * Copyright 2010 Thomas Mullaly
4  *
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.
9  *
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.
14  *
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
18  */
19
20 #include "urlmon_main.h"
21 #include "wine/debug.h"
22
23 #define NO_SHLWAPI_REG
24 #include "shlwapi.h"
25
26 #include "strsafe.h"
27
28 #define UINT_MAX 0xffffffff
29 #define USHORT_MAX 0xffff
30
31 #define URI_DISPLAY_NO_ABSOLUTE_URI         0x1
32 #define URI_DISPLAY_NO_DEFAULT_PORT_AUTH    0x2
33
34 #define ALLOW_NULL_TERM_SCHEME          0x01
35 #define ALLOW_NULL_TERM_USER_NAME       0x02
36 #define ALLOW_NULL_TERM_PASSWORD        0x04
37 #define ALLOW_BRACKETLESS_IP_LITERAL    0x08
38 #define SKIP_IP_FUTURE_CHECK            0x10
39 #define IGNORE_PORT_DELIMITER           0x20
40
41 #define RAW_URI_FORCE_PORT_DISP     0x1
42 #define RAW_URI_CONVERT_TO_DOS_PATH 0x2
43
44 #define COMBINE_URI_FORCE_FLAG_USE  0x1
45
46 WINE_DEFAULT_DEBUG_CHANNEL(urlmon);
47
48 static const IID IID_IUriObj = {0x4b364760,0x9f51,0x11df,{0x98,0x1c,0x08,0x00,0x20,0x0c,0x9a,0x66}};
49
50 typedef struct {
51     IUri                IUri_iface;
52     IUriBuilderFactory  IUriBuilderFactory_iface;
53
54     LONG ref;
55
56     BSTR            raw_uri;
57
58     /* Information about the canonicalized URI's buffer. */
59     WCHAR           *canon_uri;
60     DWORD           canon_size;
61     DWORD           canon_len;
62     BOOL            display_modifiers;
63     DWORD           create_flags;
64
65     INT             scheme_start;
66     DWORD           scheme_len;
67     URL_SCHEME      scheme_type;
68
69     INT             userinfo_start;
70     DWORD           userinfo_len;
71     INT             userinfo_split;
72
73     INT             host_start;
74     DWORD           host_len;
75     Uri_HOST_TYPE   host_type;
76
77     INT             port_offset;
78     DWORD           port;
79     BOOL            has_port;
80
81     INT             authority_start;
82     DWORD           authority_len;
83
84     INT             domain_offset;
85
86     INT             path_start;
87     DWORD           path_len;
88     INT             extension_offset;
89
90     INT             query_start;
91     DWORD           query_len;
92
93     INT             fragment_start;
94     DWORD           fragment_len;
95 } Uri;
96
97 typedef struct {
98     IUriBuilder IUriBuilder_iface;
99     LONG ref;
100
101     Uri *uri;
102     DWORD modified_props;
103
104     WCHAR   *fragment;
105     DWORD   fragment_len;
106
107     WCHAR   *host;
108     DWORD   host_len;
109
110     WCHAR   *password;
111     DWORD   password_len;
112
113     WCHAR   *path;
114     DWORD   path_len;
115
116     BOOL    has_port;
117     DWORD   port;
118
119     WCHAR   *query;
120     DWORD   query_len;
121
122     WCHAR   *scheme;
123     DWORD   scheme_len;
124
125     WCHAR   *username;
126     DWORD   username_len;
127 } UriBuilder;
128
129 typedef struct {
130     const WCHAR *str;
131     DWORD       len;
132 } h16;
133
134 typedef struct {
135     /* IPv6 addresses can hold up to 8 h16 components. */
136     h16         components[8];
137     DWORD       h16_count;
138
139     /* An IPv6 can have 1 elision ("::"). */
140     const WCHAR *elision;
141
142     /* An IPv6 can contain 1 IPv4 address as the last 32bits of the address. */
143     const WCHAR *ipv4;
144     DWORD       ipv4_len;
145
146     INT         components_size;
147     INT         elision_size;
148 } ipv6_address;
149
150 typedef struct {
151     BSTR            uri;
152
153     BOOL            is_relative;
154     BOOL            is_opaque;
155     BOOL            has_implicit_scheme;
156     BOOL            has_implicit_ip;
157     UINT            implicit_ipv4;
158
159     const WCHAR     *scheme;
160     DWORD           scheme_len;
161     URL_SCHEME      scheme_type;
162
163     const WCHAR     *username;
164     DWORD           username_len;
165
166     const WCHAR     *password;
167     DWORD           password_len;
168
169     const WCHAR     *host;
170     DWORD           host_len;
171     Uri_HOST_TYPE   host_type;
172
173     BOOL            has_ipv6;
174     ipv6_address    ipv6_address;
175
176     BOOL            has_port;
177     const WCHAR     *port;
178     DWORD           port_len;
179     DWORD           port_value;
180
181     const WCHAR     *path;
182     DWORD           path_len;
183
184     const WCHAR     *query;
185     DWORD           query_len;
186
187     const WCHAR     *fragment;
188     DWORD           fragment_len;
189 } parse_data;
190
191 static const CHAR hexDigits[] = "0123456789ABCDEF";
192
193 /* List of scheme types/scheme names that are recognized by the IUri interface as of IE 7. */
194 static const struct {
195     URL_SCHEME  scheme;
196     WCHAR       scheme_name[16];
197 } recognized_schemes[] = {
198     {URL_SCHEME_FTP,            {'f','t','p',0}},
199     {URL_SCHEME_HTTP,           {'h','t','t','p',0}},
200     {URL_SCHEME_GOPHER,         {'g','o','p','h','e','r',0}},
201     {URL_SCHEME_MAILTO,         {'m','a','i','l','t','o',0}},
202     {URL_SCHEME_NEWS,           {'n','e','w','s',0}},
203     {URL_SCHEME_NNTP,           {'n','n','t','p',0}},
204     {URL_SCHEME_TELNET,         {'t','e','l','n','e','t',0}},
205     {URL_SCHEME_WAIS,           {'w','a','i','s',0}},
206     {URL_SCHEME_FILE,           {'f','i','l','e',0}},
207     {URL_SCHEME_MK,             {'m','k',0}},
208     {URL_SCHEME_HTTPS,          {'h','t','t','p','s',0}},
209     {URL_SCHEME_SHELL,          {'s','h','e','l','l',0}},
210     {URL_SCHEME_SNEWS,          {'s','n','e','w','s',0}},
211     {URL_SCHEME_LOCAL,          {'l','o','c','a','l',0}},
212     {URL_SCHEME_JAVASCRIPT,     {'j','a','v','a','s','c','r','i','p','t',0}},
213     {URL_SCHEME_VBSCRIPT,       {'v','b','s','c','r','i','p','t',0}},
214     {URL_SCHEME_ABOUT,          {'a','b','o','u','t',0}},
215     {URL_SCHEME_RES,            {'r','e','s',0}},
216     {URL_SCHEME_MSSHELLROOTED,  {'m','s','-','s','h','e','l','l','-','r','o','o','t','e','d',0}},
217     {URL_SCHEME_MSSHELLIDLIST,  {'m','s','-','s','h','e','l','l','-','i','d','l','i','s','t',0}},
218     {URL_SCHEME_MSHELP,         {'h','c','p',0}},
219     {URL_SCHEME_WILDCARD,       {'*',0}}
220 };
221
222 /* List of default ports Windows recognizes. */
223 static const struct {
224     URL_SCHEME  scheme;
225     USHORT      port;
226 } default_ports[] = {
227     {URL_SCHEME_FTP,    21},
228     {URL_SCHEME_HTTP,   80},
229     {URL_SCHEME_GOPHER, 70},
230     {URL_SCHEME_NNTP,   119},
231     {URL_SCHEME_TELNET, 23},
232     {URL_SCHEME_WAIS,   210},
233     {URL_SCHEME_HTTPS,  443},
234 };
235
236 /* List of 3 character top level domain names Windows seems to recognize.
237  * There might be more, but, these are the only ones I've found so far.
238  */
239 static const struct {
240     WCHAR tld_name[4];
241 } recognized_tlds[] = {
242     {{'c','o','m',0}},
243     {{'e','d','u',0}},
244     {{'g','o','v',0}},
245     {{'i','n','t',0}},
246     {{'m','i','l',0}},
247     {{'n','e','t',0}},
248     {{'o','r','g',0}}
249 };
250
251 static Uri *get_uri_obj(IUri *uri)
252 {
253     Uri *ret;
254     HRESULT hres;
255
256     hres = IUri_QueryInterface(uri, &IID_IUriObj, (void**)&ret);
257     return SUCCEEDED(hres) ? ret : NULL;
258 }
259
260 static inline BOOL is_alpha(WCHAR val) {
261     return ((val >= 'a' && val <= 'z') || (val >= 'A' && val <= 'Z'));
262 }
263
264 static inline BOOL is_num(WCHAR val) {
265     return (val >= '0' && val <= '9');
266 }
267
268 static inline BOOL is_drive_path(const WCHAR *str) {
269     return (is_alpha(str[0]) && (str[1] == ':' || str[1] == '|'));
270 }
271
272 static inline BOOL is_unc_path(const WCHAR *str) {
273     return (str[0] == '\\' && str[0] == '\\');
274 }
275
276 static inline BOOL is_forbidden_dos_path_char(WCHAR val) {
277     return (val == '>' || val == '<' || val == '\"');
278 }
279
280 /* A URI is implicitly a file path if it begins with
281  * a drive letter (eg X:) or starts with "\\" (UNC path).
282  */
283 static inline BOOL is_implicit_file_path(const WCHAR *str) {
284     return (is_unc_path(str) || (is_alpha(str[0]) && str[1] == ':'));
285 }
286
287 /* Checks if the URI is a hierarchical URI. A hierarchical
288  * URI is one that has "//" after the scheme.
289  */
290 static BOOL check_hierarchical(const WCHAR **ptr) {
291     const WCHAR *start = *ptr;
292
293     if(**ptr != '/')
294         return FALSE;
295
296     ++(*ptr);
297     if(**ptr != '/') {
298         *ptr = start;
299         return FALSE;
300     }
301
302     ++(*ptr);
303     return TRUE;
304 }
305
306 /* unreserved    = ALPHA / DIGIT / "-" / "." / "_" / "~" */
307 static inline BOOL is_unreserved(WCHAR val) {
308     return (is_alpha(val) || is_num(val) || val == '-' || val == '.' ||
309             val == '_' || val == '~');
310 }
311
312 /* sub-delims    = "!" / "$" / "&" / "'" / "(" / ")"
313  *               / "*" / "+" / "," / ";" / "="
314  */
315 static inline BOOL is_subdelim(WCHAR val) {
316     return (val == '!' || val == '$' || val == '&' ||
317             val == '\'' || val == '(' || val == ')' ||
318             val == '*' || val == '+' || val == ',' ||
319             val == ';' || val == '=');
320 }
321
322 /* gen-delims  = ":" / "/" / "?" / "#" / "[" / "]" / "@" */
323 static inline BOOL is_gendelim(WCHAR val) {
324     return (val == ':' || val == '/' || val == '?' ||
325             val == '#' || val == '[' || val == ']' ||
326             val == '@');
327 }
328
329 /* Characters that delimit the end of the authority
330  * section of a URI. Sometimes a '\\' is considered
331  * an authority delimeter.
332  */
333 static inline BOOL is_auth_delim(WCHAR val, BOOL acceptSlash) {
334     return (val == '#' || val == '/' || val == '?' ||
335             val == '\0' || (acceptSlash && val == '\\'));
336 }
337
338 /* reserved = gen-delims / sub-delims */
339 static inline BOOL is_reserved(WCHAR val) {
340     return (is_subdelim(val) || is_gendelim(val));
341 }
342
343 static inline BOOL is_hexdigit(WCHAR val) {
344     return ((val >= 'a' && val <= 'f') ||
345             (val >= 'A' && val <= 'F') ||
346             (val >= '0' && val <= '9'));
347 }
348
349 static inline BOOL is_path_delim(WCHAR val) {
350     return (!val || val == '#' || val == '?');
351 }
352
353 static inline BOOL is_slash(WCHAR c)
354 {
355     return c == '/' || c == '\\';
356 }
357
358 static BOOL is_default_port(URL_SCHEME scheme, DWORD port) {
359     DWORD i;
360
361     for(i = 0; i < sizeof(default_ports)/sizeof(default_ports[0]); ++i) {
362         if(default_ports[i].scheme == scheme && default_ports[i].port)
363             return TRUE;
364     }
365
366     return FALSE;
367 }
368
369 /* List of schemes types Windows seems to expect to be hierarchical. */
370 static inline BOOL is_hierarchical_scheme(URL_SCHEME type) {
371     return(type == URL_SCHEME_HTTP || type == URL_SCHEME_FTP ||
372            type == URL_SCHEME_GOPHER || type == URL_SCHEME_NNTP ||
373            type == URL_SCHEME_TELNET || type == URL_SCHEME_WAIS ||
374            type == URL_SCHEME_FILE || type == URL_SCHEME_HTTPS ||
375            type == URL_SCHEME_RES);
376 }
377
378 /* Checks if 'flags' contains an invalid combination of Uri_CREATE flags. */
379 static inline BOOL has_invalid_flag_combination(DWORD flags) {
380     return((flags & Uri_CREATE_DECODE_EXTRA_INFO && flags & Uri_CREATE_NO_DECODE_EXTRA_INFO) ||
381            (flags & Uri_CREATE_CANONICALIZE && flags & Uri_CREATE_NO_CANONICALIZE) ||
382            (flags & Uri_CREATE_CRACK_UNKNOWN_SCHEMES && flags & Uri_CREATE_NO_CRACK_UNKNOWN_SCHEMES) ||
383            (flags & Uri_CREATE_PRE_PROCESS_HTML_URI && flags & Uri_CREATE_NO_PRE_PROCESS_HTML_URI) ||
384            (flags & Uri_CREATE_IE_SETTINGS && flags & Uri_CREATE_NO_IE_SETTINGS));
385 }
386
387 /* Applies each default Uri_CREATE flags to 'flags' if it
388  * doesn't cause a flag conflict.
389  */
390 static void apply_default_flags(DWORD *flags) {
391     if(!(*flags & Uri_CREATE_NO_CANONICALIZE))
392         *flags |= Uri_CREATE_CANONICALIZE;
393     if(!(*flags & Uri_CREATE_NO_DECODE_EXTRA_INFO))
394         *flags |= Uri_CREATE_DECODE_EXTRA_INFO;
395     if(!(*flags & Uri_CREATE_NO_CRACK_UNKNOWN_SCHEMES))
396         *flags |= Uri_CREATE_CRACK_UNKNOWN_SCHEMES;
397     if(!(*flags & Uri_CREATE_NO_PRE_PROCESS_HTML_URI))
398         *flags |= Uri_CREATE_PRE_PROCESS_HTML_URI;
399     if(!(*flags & Uri_CREATE_IE_SETTINGS))
400         *flags |= Uri_CREATE_NO_IE_SETTINGS;
401 }
402
403 /* Determines if the URI is hierarchical using the information already parsed into
404  * data and using the current location of parsing in the URI string.
405  *
406  * Windows considers a URI hierarchical if on of the following is true:
407  *  A.) It's a wildcard scheme.
408  *  B.) It's an implicit file scheme.
409  *  C.) It's a known hierarchical scheme and it has two '\\' after the scheme name.
410  *      (the '\\' will be converted into "//" during canonicalization).
411  *  D.) It's not a relative URI and "//" appears after the scheme name.
412  */
413 static inline BOOL is_hierarchical_uri(const WCHAR **ptr, const parse_data *data) {
414     const WCHAR *start = *ptr;
415
416     if(data->scheme_type == URL_SCHEME_WILDCARD)
417         return TRUE;
418     else if(data->scheme_type == URL_SCHEME_FILE && data->has_implicit_scheme)
419         return TRUE;
420     else if(is_hierarchical_scheme(data->scheme_type) && (*ptr)[0] == '\\' && (*ptr)[1] == '\\') {
421         *ptr += 2;
422         return TRUE;
423     } else if(!data->is_relative && check_hierarchical(ptr))
424         return TRUE;
425
426     *ptr = start;
427     return FALSE;
428 }
429
430 /* Checks if the two Uri's are logically equivalent. It's a simple
431  * comparison, since they are both of type Uri, and it can access
432  * the properties of each Uri directly without the need to go
433  * through the "IUri_Get*" interface calls.
434  */
435 static BOOL are_equal_simple(const Uri *a, const Uri *b) {
436     if(a->scheme_type == b->scheme_type) {
437         const BOOL known_scheme = a->scheme_type != URL_SCHEME_UNKNOWN;
438         const BOOL are_hierarchical =
439                 (a->authority_start > -1 && b->authority_start > -1);
440
441         if(a->scheme_type == URL_SCHEME_FILE) {
442             if(a->canon_len == b->canon_len)
443                 return !StrCmpIW(a->canon_uri, b->canon_uri);
444         }
445
446         /* Only compare the scheme names (if any) if their unknown scheme types. */
447         if(!known_scheme) {
448             if((a->scheme_start > -1 && b->scheme_start > -1) &&
449                (a->scheme_len == b->scheme_len)) {
450                 /* Make sure the schemes are the same. */
451                 if(StrCmpNW(a->canon_uri+a->scheme_start, b->canon_uri+b->scheme_start, a->scheme_len))
452                     return FALSE;
453             } else if(a->scheme_len != b->scheme_len)
454                 /* One of the Uri's has a scheme name, while the other doesn't. */
455                 return FALSE;
456         }
457
458         /* If they have a userinfo component, perform case sensitive compare. */
459         if((a->userinfo_start > -1 && b->userinfo_start > -1) &&
460            (a->userinfo_len == b->userinfo_len)) {
461             if(StrCmpNW(a->canon_uri+a->userinfo_start, b->canon_uri+b->userinfo_start, a->userinfo_len))
462                 return FALSE;
463         } else if(a->userinfo_len != b->userinfo_len)
464             /* One of the Uri's had a userinfo, while the other one doesn't. */
465             return FALSE;
466
467         /* Check if they have a host name. */
468         if((a->host_start > -1 && b->host_start > -1) &&
469            (a->host_len == b->host_len)) {
470             /* Perform a case insensitive compare if they are a known scheme type. */
471             if(known_scheme) {
472                 if(StrCmpNIW(a->canon_uri+a->host_start, b->canon_uri+b->host_start, a->host_len))
473                     return FALSE;
474             } else if(StrCmpNW(a->canon_uri+a->host_start, b->canon_uri+b->host_start, a->host_len))
475                 return FALSE;
476         } else if(a->host_len != b->host_len)
477             /* One of the Uri's had a host, while the other one didn't. */
478             return FALSE;
479
480         if(a->has_port && b->has_port) {
481             if(a->port != b->port)
482                 return FALSE;
483         } else if(a->has_port || b->has_port)
484             /* One had a port, while the other one didn't. */
485             return FALSE;
486
487         /* Windows is weird with how it handles paths. For example
488          * One URI could be "http://google.com" (after canonicalization)
489          * and one could be "http://google.com/" and the IsEqual function
490          * would still evaluate to TRUE, but, only if they are both hierarchical
491          * URIs.
492          */
493         if((a->path_start > -1 && b->path_start > -1) &&
494            (a->path_len == b->path_len)) {
495             if(StrCmpNW(a->canon_uri+a->path_start, b->canon_uri+b->path_start, a->path_len))
496                 return FALSE;
497         } else if(are_hierarchical && a->path_len == -1 && b->path_len == 0) {
498             if(*(a->canon_uri+a->path_start) != '/')
499                 return FALSE;
500         } else if(are_hierarchical && b->path_len == 1 && a->path_len == 0) {
501             if(*(b->canon_uri+b->path_start) != '/')
502                 return FALSE;
503         } else if(a->path_len != b->path_len)
504             return FALSE;
505
506         /* Compare the query strings of the two URIs. */
507         if((a->query_start > -1 && b->query_start > -1) &&
508            (a->query_len == b->query_len)) {
509             if(StrCmpNW(a->canon_uri+a->query_start, b->canon_uri+b->query_start, a->query_len))
510                 return FALSE;
511         } else if(a->query_len != b->query_len)
512             return FALSE;
513
514         if((a->fragment_start > -1 && b->fragment_start > -1) &&
515            (a->fragment_len == b->fragment_len)) {
516             if(StrCmpNW(a->canon_uri+a->fragment_start, b->canon_uri+b->fragment_start, a->fragment_len))
517                 return FALSE;
518         } else if(a->fragment_len != b->fragment_len)
519             return FALSE;
520
521         /* If we get here, the two URIs are equivalent. */
522         return TRUE;
523     }
524
525     return FALSE;
526 }
527
528 /* Computes the size of the given IPv6 address.
529  * Each h16 component is 16bits, if there is an IPv4 address, it's
530  * 32bits. If there's an elision it can be 16bits to 128bits, depending
531  * on the number of other components.
532  *
533  * Modeled after google-url's CheckIPv6ComponentsSize function
534  */
535 static void compute_ipv6_comps_size(ipv6_address *address) {
536     address->components_size = address->h16_count * 2;
537
538     if(address->ipv4)
539         /* IPv4 address is 4 bytes. */
540         address->components_size += 4;
541
542     if(address->elision) {
543         /* An elision can be anywhere from 2 bytes up to 16 bytes.
544          * It size depends on the size of the h16 and IPv4 components.
545          */
546         address->elision_size = 16 - address->components_size;
547         if(address->elision_size < 2)
548             address->elision_size = 2;
549     } else
550         address->elision_size = 0;
551 }
552
553 /* Taken from dlls/jscript/lex.c */
554 static int hex_to_int(WCHAR val) {
555     if(val >= '0' && val <= '9')
556         return val - '0';
557     else if(val >= 'a' && val <= 'f')
558         return val - 'a' + 10;
559     else if(val >= 'A' && val <= 'F')
560         return val - 'A' + 10;
561
562     return -1;
563 }
564
565 /* Helper function for converting a percent encoded string
566  * representation of a WCHAR value into its actual WCHAR value. If
567  * the two characters following the '%' aren't valid hex values then
568  * this function returns the NULL character.
569  *
570  * Eg.
571  *  "%2E" will result in '.' being returned by this function.
572  */
573 static WCHAR decode_pct_val(const WCHAR *ptr) {
574     WCHAR ret = '\0';
575
576     if(*ptr == '%' && is_hexdigit(*(ptr + 1)) && is_hexdigit(*(ptr + 2))) {
577         INT a = hex_to_int(*(ptr + 1));
578         INT b = hex_to_int(*(ptr + 2));
579
580         ret = a << 4;
581         ret += b;
582     }
583
584     return ret;
585 }
586
587 /* Helper function for percent encoding a given character
588  * and storing the encoded value into a given buffer (dest).
589  *
590  * It's up to the calling function to ensure that there is
591  * at least enough space in 'dest' for the percent encoded
592  * value to be stored (so dest + 3 spaces available).
593  */
594 static inline void pct_encode_val(WCHAR val, WCHAR *dest) {
595     dest[0] = '%';
596     dest[1] = hexDigits[(val >> 4) & 0xf];
597     dest[2] = hexDigits[val & 0xf];
598 }
599
600 /* Attempts to parse the domain name from the host.
601  *
602  * This function also includes the Top-level Domain (TLD) name
603  * of the host when it tries to find the domain name. If it finds
604  * a valid domain name it will assign 'domain_start' the offset
605  * into 'host' where the domain name starts.
606  *
607  * It's implied that if there is a domain name its range is:
608  * [host+domain_start, host+host_len).
609  */
610 void find_domain_name(const WCHAR *host, DWORD host_len,
611                              INT *domain_start) {
612     const WCHAR *last_tld, *sec_last_tld, *end;
613
614     end = host+host_len-1;
615
616     *domain_start = -1;
617
618     /* There has to be at least enough room for a '.' followed by a
619      * 3 character TLD for a domain to even exist in the host name.
620      */
621     if(host_len < 4)
622         return;
623
624     last_tld = memrchrW(host, '.', host_len);
625     if(!last_tld)
626         /* http://hostname -> has no domain name. */
627         return;
628
629     sec_last_tld = memrchrW(host, '.', last_tld-host);
630     if(!sec_last_tld) {
631         /* If the '.' is at the beginning of the host there
632          * has to be at least 3 characters in the TLD for it
633          * to be valid.
634          *  Ex: .com -> .com as the domain name.
635          *      .co  -> has no domain name.
636          */
637         if(last_tld-host == 0) {
638             if(end-(last_tld-1) < 3)
639                 return;
640         } else if(last_tld-host == 3) {
641             DWORD i;
642
643             /* If there's three characters in front of last_tld and
644              * they are on the list of recognized TLDs, then this
645              * host doesn't have a domain (since the host only contains
646              * a TLD name.
647              *  Ex: edu.uk -> has no domain name.
648              *      foo.uk -> foo.uk as the domain name.
649              */
650             for(i = 0; i < sizeof(recognized_tlds)/sizeof(recognized_tlds[0]); ++i) {
651                 if(!StrCmpNIW(host, recognized_tlds[i].tld_name, 3))
652                     return;
653             }
654         } else if(last_tld-host < 3)
655             /* Anything less than 3 characters is considered part
656              * of the TLD name.
657              *  Ex: ak.uk -> Has no domain name.
658              */
659             return;
660
661         /* Otherwise the domain name is the whole host name. */
662         *domain_start = 0;
663     } else if(end+1-last_tld > 3) {
664         /* If the last_tld has more than 3 characters, then it's automatically
665          * considered the TLD of the domain name.
666          *  Ex: www.winehq.org.uk.test -> uk.test as the domain name.
667          */
668         *domain_start = (sec_last_tld+1)-host;
669     } else if(last_tld - (sec_last_tld+1) < 4) {
670         DWORD i;
671         /* If the sec_last_tld is 3 characters long it HAS to be on the list of
672          * recognized to still be considered part of the TLD name, otherwise
673          * its considered the domain name.
674          *  Ex: www.google.com.uk -> google.com.uk as the domain name.
675          *      www.google.foo.uk -> foo.uk as the domain name.
676          */
677         if(last_tld - (sec_last_tld+1) == 3) {
678             for(i = 0; i < sizeof(recognized_tlds)/sizeof(recognized_tlds[0]); ++i) {
679                 if(!StrCmpNIW(sec_last_tld+1, recognized_tlds[i].tld_name, 3)) {
680                     const WCHAR *domain = memrchrW(host, '.', sec_last_tld-host);
681
682                     if(!domain)
683                         *domain_start = 0;
684                     else
685                         *domain_start = (domain+1) - host;
686                     TRACE("Found domain name %s\n", debugstr_wn(host+*domain_start,
687                                                         (host+host_len)-(host+*domain_start)));
688                     return;
689                 }
690             }
691
692             *domain_start = (sec_last_tld+1)-host;
693         } else {
694             /* Since the sec_last_tld is less than 3 characters it's considered
695              * part of the TLD.
696              *  Ex: www.google.fo.uk -> google.fo.uk as the domain name.
697              */
698             const WCHAR *domain = memrchrW(host, '.', sec_last_tld-host);
699
700             if(!domain)
701                 *domain_start = 0;
702             else
703                 *domain_start = (domain+1) - host;
704         }
705     } else {
706         /* The second to last TLD has more than 3 characters making it
707          * the domain name.
708          *  Ex: www.google.test.us -> test.us as the domain name.
709          */
710         *domain_start = (sec_last_tld+1)-host;
711     }
712
713     TRACE("Found domain name %s\n", debugstr_wn(host+*domain_start,
714                                         (host+host_len)-(host+*domain_start)));
715 }
716
717 /* Removes the dot segments from a hierarchical URIs path component. This
718  * function performs the removal in place.
719  *
720  * This function returns the new length of the path string.
721  */
722 static DWORD remove_dot_segments(WCHAR *path, DWORD path_len) {
723     WCHAR *out = path;
724     const WCHAR *in = out;
725     const WCHAR *end = out + path_len;
726     DWORD len;
727
728     while(in < end) {
729         /* Move the first path segment in the input buffer to the end of
730          * the output buffer, and any subsequent characters up to, including
731          * the next "/" character (if any) or the end of the input buffer.
732          */
733         while(in < end && !is_slash(*in))
734             *out++ = *in++;
735         if(in == end)
736             break;
737         *out++ = *in++;
738
739         while(in < end) {
740             if(*in != '.')
741                 break;
742
743             /* Handle ending "/." */
744             if(in + 1 == end) {
745                 ++in;
746                 break;
747             }
748
749             /* Handle "/./" */
750             if(is_slash(in[1])) {
751                 in += 2;
752                 continue;
753             }
754
755             /* If we don't have "/../" or ending "/.." */
756             if(in[1] != '.' || (in + 2 != end && !is_slash(in[2])))
757                 break;
758
759             /* Find the slash preceding out pointer and move out pointer to it */
760             if(out > path+1 && is_slash(*--out))
761                 --out;
762             while(out > path && !is_slash(*(--out)));
763             if(is_slash(*out))
764                 ++out;
765             in += 2;
766             if(in != end)
767                 ++in;
768         }
769     }
770
771     len = out - path;
772     TRACE("(%p %d): Path after dot segments removed %s len=%d\n", path, path_len,
773         debugstr_wn(path, len), len);
774     return len;
775 }
776
777 /* Attempts to find the file extension in a given path. */
778 static INT find_file_extension(const WCHAR *path, DWORD path_len) {
779     const WCHAR *end;
780
781     for(end = path+path_len-1; end >= path && *end != '/' && *end != '\\'; --end) {
782         if(*end == '.')
783             return end-path;
784     }
785
786     return -1;
787 }
788
789 /* Computes the location where the elision should occur in the IPv6
790  * address using the numerical values of each component stored in
791  * 'values'. If the address shouldn't contain an elision then 'index'
792  * is assigned -1 as it's value. Otherwise 'index' will contain the
793  * starting index (into values) where the elision should be, and 'count'
794  * will contain the number of cells the elision covers.
795  *
796  * NOTES:
797  *  Windows will expand an elision if the elision only represents 1 h16
798  *  component of the address.
799  *
800  *  Ex: [1::2:3:4:5:6:7] -> [1:0:2:3:4:5:6:7]
801  *
802  *  If the IPv6 address contains an IPv4 address, the IPv4 address is also
803  *  considered for being included as part of an elision if all its components
804  *  are zeros.
805  *
806  *  Ex: [1:2:3:4:5:6:0.0.0.0] -> [1:2:3:4:5:6::]
807  */
808 static void compute_elision_location(const ipv6_address *address, const USHORT values[8],
809                                      INT *index, DWORD *count) {
810     DWORD i, max_len, cur_len;
811     INT max_index, cur_index;
812
813     max_len = cur_len = 0;
814     max_index = cur_index = -1;
815     for(i = 0; i < 8; ++i) {
816         BOOL check_ipv4 = (address->ipv4 && i == 6);
817         BOOL is_end = (check_ipv4 || i == 7);
818
819         if(check_ipv4) {
820             /* Check if the IPv4 address contains only zeros. */
821             if(values[i] == 0 && values[i+1] == 0) {
822                 if(cur_index == -1)
823                     cur_index = i;
824
825                 cur_len += 2;
826                 ++i;
827             }
828         } else if(values[i] == 0) {
829             if(cur_index == -1)
830                 cur_index = i;
831
832             ++cur_len;
833         }
834
835         if(is_end || values[i] != 0) {
836             /* We only consider it for an elision if it's
837              * more than 1 component long.
838              */
839             if(cur_len > 1 && cur_len > max_len) {
840                 /* Found the new elision location. */
841                 max_len = cur_len;
842                 max_index = cur_index;
843             }
844
845             /* Reset the current range for the next range of zeros. */
846             cur_index = -1;
847             cur_len = 0;
848         }
849     }
850
851     *index = max_index;
852     *count = max_len;
853 }
854
855 /* Removes all the leading and trailing white spaces or
856  * control characters from the URI and removes all control
857  * characters inside of the URI string.
858  */
859 static BSTR pre_process_uri(LPCWSTR uri) {
860     const WCHAR *start, *end, *ptr;
861     WCHAR *ptr2;
862     DWORD len;
863     BSTR ret;
864
865     start = uri;
866     /* Skip leading controls and whitespace. */
867     while(*start && (iscntrlW(*start) || isspaceW(*start))) ++start;
868
869     /* URI consisted only of control/whitespace. */
870     if(!*start)
871         return SysAllocStringLen(NULL, 0);
872
873     end = start + strlenW(start);
874     while(--end > start && (iscntrlW(*end) || isspaceW(*end)));
875
876     len = ++end - start;
877     for(ptr = start; ptr < end; ptr++) {
878         if(iscntrlW(*ptr))
879             len--;
880     }
881
882     ret = SysAllocStringLen(NULL, len);
883     if(!ret)
884         return NULL;
885
886     for(ptr = start, ptr2=ret; ptr < end; ptr++) {
887         if(!iscntrlW(*ptr))
888             *ptr2++ = *ptr;
889     }
890
891     return ret;
892 }
893
894 /* Converts the specified IPv4 address into an uint value.
895  *
896  * This function assumes that the IPv4 address has already been validated.
897  */
898 static UINT ipv4toui(const WCHAR *ip, DWORD len) {
899     UINT ret = 0;
900     DWORD comp_value = 0;
901     const WCHAR *ptr;
902
903     for(ptr = ip; ptr < ip+len; ++ptr) {
904         if(*ptr == '.') {
905             ret <<= 8;
906             ret += comp_value;
907             comp_value = 0;
908         } else
909             comp_value = comp_value*10 + (*ptr-'0');
910     }
911
912     ret <<= 8;
913     ret += comp_value;
914
915     return ret;
916 }
917
918 /* Converts an IPv4 address in numerical form into it's fully qualified
919  * string form. This function returns the number of characters written
920  * to 'dest'. If 'dest' is NULL this function will return the number of
921  * characters that would have been written.
922  *
923  * It's up to the caller to ensure there's enough space in 'dest' for the
924  * address.
925  */
926 static DWORD ui2ipv4(WCHAR *dest, UINT address) {
927     static const WCHAR formatW[] =
928         {'%','u','.','%','u','.','%','u','.','%','u',0};
929     DWORD ret = 0;
930     UCHAR digits[4];
931
932     digits[0] = (address >> 24) & 0xff;
933     digits[1] = (address >> 16) & 0xff;
934     digits[2] = (address >> 8) & 0xff;
935     digits[3] = address & 0xff;
936
937     if(!dest) {
938         WCHAR tmp[16];
939         ret = sprintfW(tmp, formatW, digits[0], digits[1], digits[2], digits[3]);
940     } else
941         ret = sprintfW(dest, formatW, digits[0], digits[1], digits[2], digits[3]);
942
943     return ret;
944 }
945
946 static DWORD ui2str(WCHAR *dest, UINT value) {
947     static const WCHAR formatW[] = {'%','u',0};
948     DWORD ret = 0;
949
950     if(!dest) {
951         WCHAR tmp[11];
952         ret = sprintfW(tmp, formatW, value);
953     } else
954         ret = sprintfW(dest, formatW, value);
955
956     return ret;
957 }
958
959 /* Converts an h16 component (from an IPv6 address) into it's
960  * numerical value.
961  *
962  * This function assumes that the h16 component has already been validated.
963  */
964 static USHORT h16tous(h16 component) {
965     DWORD i;
966     USHORT ret = 0;
967
968     for(i = 0; i < component.len; ++i) {
969         ret <<= 4;
970         ret += hex_to_int(component.str[i]);
971     }
972
973     return ret;
974 }
975
976 /* Converts an IPv6 address into its 128 bits (16 bytes) numerical value.
977  *
978  * This function assumes that the ipv6_address has already been validated.
979  */
980 static BOOL ipv6_to_number(const ipv6_address *address, USHORT number[8]) {
981     DWORD i, cur_component = 0;
982     BOOL already_passed_elision = FALSE;
983
984     for(i = 0; i < address->h16_count; ++i) {
985         if(address->elision) {
986             if(address->components[i].str > address->elision && !already_passed_elision) {
987                 /* Means we just passed the elision and need to add its values to
988                  * 'number' before we do anything else.
989                  */
990                 DWORD j = 0;
991                 for(j = 0; j < address->elision_size; j+=2)
992                     number[cur_component++] = 0;
993
994                 already_passed_elision = TRUE;
995             }
996         }
997
998         number[cur_component++] = h16tous(address->components[i]);
999     }
1000
1001     /* Case when the elision appears after the h16 components. */
1002     if(!already_passed_elision && address->elision) {
1003         for(i = 0; i < address->elision_size; i+=2)
1004             number[cur_component++] = 0;
1005     }
1006
1007     if(address->ipv4) {
1008         UINT value = ipv4toui(address->ipv4, address->ipv4_len);
1009
1010         if(cur_component != 6) {
1011             ERR("(%p %p): Failed sanity check with %d\n", address, number, cur_component);
1012             return FALSE;
1013         }
1014
1015         number[cur_component++] = (value >> 16) & 0xffff;
1016         number[cur_component] = value & 0xffff;
1017     }
1018
1019     return TRUE;
1020 }
1021
1022 /* Checks if the characters pointed to by 'ptr' are
1023  * a percent encoded data octet.
1024  *
1025  * pct-encoded = "%" HEXDIG HEXDIG
1026  */
1027 static BOOL check_pct_encoded(const WCHAR **ptr) {
1028     const WCHAR *start = *ptr;
1029
1030     if(**ptr != '%')
1031         return FALSE;
1032
1033     ++(*ptr);
1034     if(!is_hexdigit(**ptr)) {
1035         *ptr = start;
1036         return FALSE;
1037     }
1038
1039     ++(*ptr);
1040     if(!is_hexdigit(**ptr)) {
1041         *ptr = start;
1042         return FALSE;
1043     }
1044
1045     ++(*ptr);
1046     return TRUE;
1047 }
1048
1049 /* dec-octet   = DIGIT                 ; 0-9
1050  *             / %x31-39 DIGIT         ; 10-99
1051  *             / "1" 2DIGIT            ; 100-199
1052  *             / "2" %x30-34 DIGIT     ; 200-249
1053  *             / "25" %x30-35          ; 250-255
1054  */
1055 static BOOL check_dec_octet(const WCHAR **ptr) {
1056     const WCHAR *c1, *c2, *c3;
1057
1058     c1 = *ptr;
1059     /* A dec-octet must be at least 1 digit long. */
1060     if(*c1 < '0' || *c1 > '9')
1061         return FALSE;
1062
1063     ++(*ptr);
1064
1065     c2 = *ptr;
1066     /* Since the 1 digit requirment was meet, it doesn't
1067      * matter if this is a DIGIT value, it's considered a
1068      * dec-octet.
1069      */
1070     if(*c2 < '0' || *c2 > '9')
1071         return TRUE;
1072
1073     ++(*ptr);
1074
1075     c3 = *ptr;
1076     /* Same explanation as above. */
1077     if(*c3 < '0' || *c3 > '9')
1078         return TRUE;
1079
1080     /* Anything > 255 isn't a valid IP dec-octet. */
1081     if(*c1 >= '2' && *c2 >= '5' && *c3 >= '5') {
1082         *ptr = c1;
1083         return FALSE;
1084     }
1085
1086     ++(*ptr);
1087     return TRUE;
1088 }
1089
1090 /* Checks if there is an implicit IPv4 address in the host component of the URI.
1091  * The max value of an implicit IPv4 address is UINT_MAX.
1092  *
1093  *  Ex:
1094  *      "234567" would be considered an implicit IPv4 address.
1095  */
1096 static BOOL check_implicit_ipv4(const WCHAR **ptr, UINT *val) {
1097     const WCHAR *start = *ptr;
1098     ULONGLONG ret = 0;
1099     *val = 0;
1100
1101     while(is_num(**ptr)) {
1102         ret = ret*10 + (**ptr - '0');
1103
1104         if(ret > UINT_MAX) {
1105             *ptr = start;
1106             return FALSE;
1107         }
1108         ++(*ptr);
1109     }
1110
1111     if(*ptr == start)
1112         return FALSE;
1113
1114     *val = ret;
1115     return TRUE;
1116 }
1117
1118 /* Checks if the string contains an IPv4 address.
1119  *
1120  * This function has a strict mode or a non-strict mode of operation
1121  * When 'strict' is set to FALSE this function will return TRUE if
1122  * the string contains at least 'dec-octet "." dec-octet' since partial
1123  * IPv4 addresses will be normalized out into full IPv4 addresses. When
1124  * 'strict' is set this function expects there to be a full IPv4 address.
1125  *
1126  * IPv4address = dec-octet "." dec-octet "." dec-octet "." dec-octet
1127  */
1128 static BOOL check_ipv4address(const WCHAR **ptr, BOOL strict) {
1129     const WCHAR *start = *ptr;
1130
1131     if(!check_dec_octet(ptr)) {
1132         *ptr = start;
1133         return FALSE;
1134     }
1135
1136     if(**ptr != '.') {
1137         *ptr = start;
1138         return FALSE;
1139     }
1140
1141     ++(*ptr);
1142     if(!check_dec_octet(ptr)) {
1143         *ptr = start;
1144         return FALSE;
1145     }
1146
1147     if(**ptr != '.') {
1148         if(strict) {
1149             *ptr = start;
1150             return FALSE;
1151         } else
1152             return TRUE;
1153     }
1154
1155     ++(*ptr);
1156     if(!check_dec_octet(ptr)) {
1157         *ptr = start;
1158         return FALSE;
1159     }
1160
1161     if(**ptr != '.') {
1162         if(strict) {
1163             *ptr = start;
1164             return FALSE;
1165         } else
1166             return TRUE;
1167     }
1168
1169     ++(*ptr);
1170     if(!check_dec_octet(ptr)) {
1171         *ptr = start;
1172         return FALSE;
1173     }
1174
1175     /* Found a four digit ip address. */
1176     return TRUE;
1177 }
1178 /* Tries to parse the scheme name of the URI.
1179  *
1180  * scheme = ALPHA *(ALPHA | NUM | '+' | '-' | '.') as defined by RFC 3896.
1181  * NOTE: Windows accepts a number as the first character of a scheme.
1182  */
1183 static BOOL parse_scheme_name(const WCHAR **ptr, parse_data *data, DWORD extras) {
1184     const WCHAR *start = *ptr;
1185
1186     data->scheme = NULL;
1187     data->scheme_len = 0;
1188
1189     while(**ptr) {
1190         if(**ptr == '*' && *ptr == start) {
1191             /* Might have found a wildcard scheme. If it is the next
1192              * char has to be a ':' for it to be a valid URI
1193              */
1194             ++(*ptr);
1195             break;
1196         } else if(!is_num(**ptr) && !is_alpha(**ptr) && **ptr != '+' &&
1197            **ptr != '-' && **ptr != '.')
1198             break;
1199
1200         (*ptr)++;
1201     }
1202
1203     if(*ptr == start)
1204         return FALSE;
1205
1206     /* Schemes must end with a ':' */
1207     if(**ptr != ':' && !((extras & ALLOW_NULL_TERM_SCHEME) && !**ptr)) {
1208         *ptr = start;
1209         return FALSE;
1210     }
1211
1212     data->scheme = start;
1213     data->scheme_len = *ptr - start;
1214
1215     ++(*ptr);
1216     return TRUE;
1217 }
1218
1219 /* Tries to deduce the corresponding URL_SCHEME for the given URI. Stores
1220  * the deduced URL_SCHEME in data->scheme_type.
1221  */
1222 static BOOL parse_scheme_type(parse_data *data) {
1223     /* If there's scheme data then see if it's a recognized scheme. */
1224     if(data->scheme && data->scheme_len) {
1225         DWORD i;
1226
1227         for(i = 0; i < sizeof(recognized_schemes)/sizeof(recognized_schemes[0]); ++i) {
1228             if(lstrlenW(recognized_schemes[i].scheme_name) == data->scheme_len) {
1229                 /* Has to be a case insensitive compare. */
1230                 if(!StrCmpNIW(recognized_schemes[i].scheme_name, data->scheme, data->scheme_len)) {
1231                     data->scheme_type = recognized_schemes[i].scheme;
1232                     return TRUE;
1233                 }
1234             }
1235         }
1236
1237         /* If we get here it means it's not a recognized scheme. */
1238         data->scheme_type = URL_SCHEME_UNKNOWN;
1239         return TRUE;
1240     } else if(data->is_relative) {
1241         /* Relative URI's have no scheme. */
1242         data->scheme_type = URL_SCHEME_UNKNOWN;
1243         return TRUE;
1244     } else {
1245         /* Should never reach here! what happened... */
1246         FIXME("(%p): Unable to determine scheme type for URI %s\n", data, debugstr_w(data->uri));
1247         return FALSE;
1248     }
1249 }
1250
1251 /* Tries to parse (or deduce) the scheme_name of a URI. If it can't
1252  * parse a scheme from the URI it will try to deduce the scheme_name and scheme_type
1253  * using the flags specified in 'flags' (if any). Flags that affect how this function
1254  * operates are the Uri_CREATE_ALLOW_* flags.
1255  *
1256  * All parsed/deduced information will be stored in 'data' when the function returns.
1257  *
1258  * Returns TRUE if it was able to successfully parse the information.
1259  */
1260 static BOOL parse_scheme(const WCHAR **ptr, parse_data *data, DWORD flags, DWORD extras) {
1261     static const WCHAR fileW[] = {'f','i','l','e',0};
1262     static const WCHAR wildcardW[] = {'*',0};
1263
1264     /* First check to see if the uri could implicitly be a file path. */
1265     if(is_implicit_file_path(*ptr)) {
1266         if(flags & Uri_CREATE_ALLOW_IMPLICIT_FILE_SCHEME) {
1267             data->scheme = fileW;
1268             data->scheme_len = lstrlenW(fileW);
1269             data->has_implicit_scheme = TRUE;
1270
1271             TRACE("(%p %p %x): URI is an implicit file path.\n", ptr, data, flags);
1272         } else {
1273             /* Window's does not consider anything that can implicitly be a file
1274              * path to be a valid URI if the ALLOW_IMPLICIT_FILE_SCHEME flag is not set...
1275              */
1276             TRACE("(%p %p %x): URI is implicitly a file path, but, the ALLOW_IMPLICIT_FILE_SCHEME flag wasn't set.\n",
1277                     ptr, data, flags);
1278             return FALSE;
1279         }
1280     } else if(!parse_scheme_name(ptr, data, extras)) {
1281         /* No Scheme was found, this means it could be:
1282          *      a) an implicit Wildcard scheme
1283          *      b) a relative URI
1284          *      c) a invalid URI.
1285          */
1286         if(flags & Uri_CREATE_ALLOW_IMPLICIT_WILDCARD_SCHEME) {
1287             data->scheme = wildcardW;
1288             data->scheme_len = lstrlenW(wildcardW);
1289             data->has_implicit_scheme = TRUE;
1290
1291             TRACE("(%p %p %x): URI is an implicit wildcard scheme.\n", ptr, data, flags);
1292         } else if (flags & Uri_CREATE_ALLOW_RELATIVE) {
1293             data->is_relative = TRUE;
1294             TRACE("(%p %p %x): URI is relative.\n", ptr, data, flags);
1295         } else {
1296             TRACE("(%p %p %x): Malformed URI found. Unable to deduce scheme name.\n", ptr, data, flags);
1297             return FALSE;
1298         }
1299     }
1300
1301     if(!data->is_relative)
1302         TRACE("(%p %p %x): Found scheme=%s scheme_len=%d\n", ptr, data, flags,
1303                 debugstr_wn(data->scheme, data->scheme_len), data->scheme_len);
1304
1305     if(!parse_scheme_type(data))
1306         return FALSE;
1307
1308     TRACE("(%p %p %x): Assigned %d as the URL_SCHEME.\n", ptr, data, flags, data->scheme_type);
1309     return TRUE;
1310 }
1311
1312 static BOOL parse_username(const WCHAR **ptr, parse_data *data, DWORD flags, DWORD extras) {
1313     data->username = *ptr;
1314
1315     while(**ptr != ':' && **ptr != '@') {
1316         if(**ptr == '%') {
1317             if(!check_pct_encoded(ptr)) {
1318                 if(data->scheme_type != URL_SCHEME_UNKNOWN) {
1319                     *ptr = data->username;
1320                     data->username = NULL;
1321                     return FALSE;
1322                 }
1323             } else
1324                 continue;
1325         } else if(extras & ALLOW_NULL_TERM_USER_NAME && !**ptr)
1326             break;
1327         else if(is_auth_delim(**ptr, data->scheme_type != URL_SCHEME_UNKNOWN)) {
1328             *ptr = data->username;
1329             data->username = NULL;
1330             return FALSE;
1331         }
1332
1333         ++(*ptr);
1334     }
1335
1336     data->username_len = *ptr - data->username;
1337     return TRUE;
1338 }
1339
1340 static BOOL parse_password(const WCHAR **ptr, parse_data *data, DWORD flags, DWORD extras) {
1341     data->password = *ptr;
1342
1343     while(**ptr != '@') {
1344         if(**ptr == '%') {
1345             if(!check_pct_encoded(ptr)) {
1346                 if(data->scheme_type != URL_SCHEME_UNKNOWN) {
1347                     *ptr = data->password;
1348                     data->password = NULL;
1349                     return FALSE;
1350                 }
1351             } else
1352                 continue;
1353         } else if(extras & ALLOW_NULL_TERM_PASSWORD && !**ptr)
1354             break;
1355         else if(is_auth_delim(**ptr, data->scheme_type != URL_SCHEME_UNKNOWN)) {
1356             *ptr = data->password;
1357             data->password = NULL;
1358             return FALSE;
1359         }
1360
1361         ++(*ptr);
1362     }
1363
1364     data->password_len = *ptr - data->password;
1365     return TRUE;
1366 }
1367
1368 /* Parses the userinfo part of the URI (if it exists). The userinfo field of
1369  * a URI can consist of "username:password@", or just "username@".
1370  *
1371  * RFC def:
1372  * userinfo    = *( unreserved / pct-encoded / sub-delims / ":" )
1373  *
1374  * NOTES:
1375  *  1)  If there is more than one ':' in the userinfo part of the URI Windows
1376  *      uses the first occurrence of ':' to delimit the username and password
1377  *      components.
1378  *
1379  *      ex:
1380  *          ftp://user:pass:word@winehq.org
1381  *
1382  *      Would yield, "user" as the username and "pass:word" as the password.
1383  *
1384  *  2)  Windows allows any character to appear in the "userinfo" part of
1385  *      a URI, as long as it's not an authority delimeter character set.
1386  */
1387 static void parse_userinfo(const WCHAR **ptr, parse_data *data, DWORD flags) {
1388     const WCHAR *start = *ptr;
1389
1390     if(!parse_username(ptr, data, flags, 0)) {
1391         TRACE("(%p %p %x): URI contained no userinfo.\n", ptr, data, flags);
1392         return;
1393     }
1394
1395     if(**ptr == ':') {
1396         ++(*ptr);
1397         if(!parse_password(ptr, data, flags, 0)) {
1398             *ptr = start;
1399             data->username = NULL;
1400             data->username_len = 0;
1401             TRACE("(%p %p %x): URI contained no userinfo.\n", ptr, data, flags);
1402             return;
1403         }
1404     }
1405
1406     if(**ptr != '@') {
1407         *ptr = start;
1408         data->username = NULL;
1409         data->username_len = 0;
1410         data->password = NULL;
1411         data->password_len = 0;
1412
1413         TRACE("(%p %p %x): URI contained no userinfo.\n", ptr, data, flags);
1414         return;
1415     }
1416
1417     if(data->username)
1418         TRACE("(%p %p %x): Found username %s len=%d.\n", ptr, data, flags,
1419             debugstr_wn(data->username, data->username_len), data->username_len);
1420
1421     if(data->password)
1422         TRACE("(%p %p %x): Found password %s len=%d.\n", ptr, data, flags,
1423             debugstr_wn(data->password, data->password_len), data->password_len);
1424
1425     ++(*ptr);
1426 }
1427
1428 /* Attempts to parse a port from the URI.
1429  *
1430  * NOTES:
1431  *  Windows seems to have a cap on what the maximum value
1432  *  for a port can be. The max value is USHORT_MAX.
1433  *
1434  * port = *DIGIT
1435  */
1436 static BOOL parse_port(const WCHAR **ptr, parse_data *data, DWORD flags) {
1437     UINT port = 0;
1438     data->port = *ptr;
1439
1440     while(!is_auth_delim(**ptr, data->scheme_type != URL_SCHEME_UNKNOWN)) {
1441         if(!is_num(**ptr)) {
1442             *ptr = data->port;
1443             data->port = NULL;
1444             return FALSE;
1445         }
1446
1447         port = port*10 + (**ptr-'0');
1448
1449         if(port > USHORT_MAX) {
1450             *ptr = data->port;
1451             data->port = NULL;
1452             return FALSE;
1453         }
1454
1455         ++(*ptr);
1456     }
1457
1458     data->has_port = TRUE;
1459     data->port_value = port;
1460     data->port_len = *ptr - data->port;
1461
1462     TRACE("(%p %p %x): Found port %s len=%d value=%u\n", ptr, data, flags,
1463         debugstr_wn(data->port, data->port_len), data->port_len, data->port_value);
1464     return TRUE;
1465 }
1466
1467 /* Attempts to parse a IPv4 address from the URI.
1468  *
1469  * NOTES:
1470  *  Window's normalizes IPv4 addresses, This means there's three
1471  *  possibilities for the URI to contain an IPv4 address.
1472  *      1)  A well formed address (ex. 192.2.2.2).
1473  *      2)  A partially formed address. For example "192.0" would
1474  *          normalize to "192.0.0.0" during canonicalization.
1475  *      3)  An implicit IPv4 address. For example "256" would
1476  *          normalize to "0.0.1.0" during canonicalization. Also
1477  *          note that the maximum value for an implicit IP address
1478  *          is UINT_MAX, if the value in the URI exceeds this then
1479  *          it is not considered an IPv4 address.
1480  */
1481 static BOOL parse_ipv4address(const WCHAR **ptr, parse_data *data, DWORD flags) {
1482     const BOOL is_unknown = data->scheme_type == URL_SCHEME_UNKNOWN;
1483     data->host = *ptr;
1484
1485     if(!check_ipv4address(ptr, FALSE)) {
1486         if(!check_implicit_ipv4(ptr, &data->implicit_ipv4)) {
1487             TRACE("(%p %p %x): URI didn't contain anything looking like an IPv4 address.\n",
1488                 ptr, data, flags);
1489             *ptr = data->host;
1490             data->host = NULL;
1491             return FALSE;
1492         } else
1493             data->has_implicit_ip = TRUE;
1494     }
1495
1496     /* Check if what we found is the only part of the host name (if it isn't
1497      * we don't have an IPv4 address).
1498      */
1499     if(**ptr == ':') {
1500         ++(*ptr);
1501         if(!parse_port(ptr, data, flags)) {
1502             *ptr = data->host;
1503             data->host = NULL;
1504             return FALSE;
1505         }
1506     } else if(!is_auth_delim(**ptr, !is_unknown)) {
1507         /* Found more data which belongs the host, so this isn't an IPv4. */
1508         *ptr = data->host;
1509         data->host = NULL;
1510         data->has_implicit_ip = FALSE;
1511         return FALSE;
1512     }
1513
1514     data->host_len = *ptr - data->host;
1515     data->host_type = Uri_HOST_IPV4;
1516
1517     TRACE("(%p %p %x): IPv4 address found. host=%s host_len=%d host_type=%d\n",
1518         ptr, data, flags, debugstr_wn(data->host, data->host_len),
1519         data->host_len, data->host_type);
1520     return TRUE;
1521 }
1522
1523 /* Attempts to parse the reg-name from the URI.
1524  *
1525  * Because of the way Windows handles ':' this function also
1526  * handles parsing the port.
1527  *
1528  * reg-name = *( unreserved / pct-encoded / sub-delims )
1529  *
1530  * NOTE:
1531  *  Windows allows everything, but, the characters in "auth_delims" and ':'
1532  *  to appear in a reg-name, unless it's an unknown scheme type then ':' is
1533  *  allowed to appear (even if a valid port isn't after it).
1534  *
1535  *  Windows doesn't like host names which start with '[' and end with ']'
1536  *  and don't contain a valid IP literal address in between them.
1537  *
1538  *  On Windows if an '[' is encountered in the host name the ':' no longer
1539  *  counts as a delimiter until you reach the next ']' or an "authority delimeter".
1540  *
1541  *  A reg-name CAN be empty.
1542  */
1543 static BOOL parse_reg_name(const WCHAR **ptr, parse_data *data, DWORD flags, DWORD extras) {
1544     const BOOL has_start_bracket = **ptr == '[';
1545     const BOOL known_scheme = data->scheme_type != URL_SCHEME_UNKNOWN;
1546     const BOOL is_res = data->scheme_type == URL_SCHEME_RES;
1547     BOOL inside_brackets = has_start_bracket;
1548
1549     /* res URIs don't have ports. */
1550     BOOL ignore_col = (extras & IGNORE_PORT_DELIMITER) || is_res;
1551
1552     /* We have to be careful with file schemes. */
1553     if(data->scheme_type == URL_SCHEME_FILE) {
1554         /* This is because an implicit file scheme could be "C:\\test" and it
1555          * would trick this function into thinking the host is "C", when after
1556          * canonicalization the host would end up being an empty string. A drive
1557          * path can also have a '|' instead of a ':' after the drive letter.
1558          */
1559         if(is_drive_path(*ptr)) {
1560             /* Regular old drive paths don't have a host type (or host name). */
1561             data->host_type = Uri_HOST_UNKNOWN;
1562             data->host = *ptr;
1563             data->host_len = 0;
1564             return TRUE;
1565         } else if(is_unc_path(*ptr))
1566             /* Skip past the "\\" of a UNC path. */
1567             *ptr += 2;
1568     }
1569
1570     data->host = *ptr;
1571
1572     /* For res URIs, everything before the first '/' is
1573      * considered the host.
1574      */
1575     while((!is_res && !is_auth_delim(**ptr, known_scheme)) ||
1576           (is_res && **ptr && **ptr != '/')) {
1577         if(**ptr == ':' && !ignore_col) {
1578             /* We can ignore ':' if were inside brackets.*/
1579             if(!inside_brackets) {
1580                 const WCHAR *tmp = (*ptr)++;
1581
1582                 /* Attempt to parse the port. */
1583                 if(!parse_port(ptr, data, flags)) {
1584                     /* Windows expects there to be a valid port for known scheme types. */
1585                     if(data->scheme_type != URL_SCHEME_UNKNOWN) {
1586                         *ptr = data->host;
1587                         data->host = NULL;
1588                         TRACE("(%p %p %x %x): Expected valid port\n", ptr, data, flags, extras);
1589                         return FALSE;
1590                     } else
1591                         /* Windows gives up on trying to parse a port when it
1592                          * encounters 1 invalid port.
1593                          */
1594                         ignore_col = TRUE;
1595                 } else {
1596                     data->host_len = tmp - data->host;
1597                     break;
1598                 }
1599             }
1600         } else if(**ptr == '%' && (known_scheme && !is_res)) {
1601             /* Has to be a legit % encoded value. */
1602             if(!check_pct_encoded(ptr)) {
1603                 *ptr = data->host;
1604                 data->host = NULL;
1605                 return FALSE;
1606             } else
1607                 continue;
1608         } else if(is_res && is_forbidden_dos_path_char(**ptr)) {
1609             *ptr = data->host;
1610             data->host = NULL;
1611             return FALSE;
1612         } else if(**ptr == ']')
1613             inside_brackets = FALSE;
1614         else if(**ptr == '[')
1615             inside_brackets = TRUE;
1616
1617         ++(*ptr);
1618     }
1619
1620     if(has_start_bracket) {
1621         /* Make sure the last character of the host wasn't a ']'. */
1622         if(*(*ptr-1) == ']') {
1623             TRACE("(%p %p %x %x): Expected an IP literal inside of the host\n",
1624                 ptr, data, flags, extras);
1625             *ptr = data->host;
1626             data->host = NULL;
1627             return FALSE;
1628         }
1629     }
1630
1631     /* Don't overwrite our length if we found a port earlier. */
1632     if(!data->port)
1633         data->host_len = *ptr - data->host;
1634
1635     /* If the host is empty, then it's an unknown host type. */
1636     if(data->host_len == 0 || is_res)
1637         data->host_type = Uri_HOST_UNKNOWN;
1638     else
1639         data->host_type = Uri_HOST_DNS;
1640
1641     TRACE("(%p %p %x %x): Parsed reg-name. host=%s len=%d\n", ptr, data, flags, extras,
1642         debugstr_wn(data->host, data->host_len), data->host_len);
1643     return TRUE;
1644 }
1645
1646 /* Attempts to parse an IPv6 address out of the URI.
1647  *
1648  * IPv6address =                               6( h16 ":" ) ls32
1649  *                /                       "::" 5( h16 ":" ) ls32
1650  *                / [               h16 ] "::" 4( h16 ":" ) ls32
1651  *                / [ *1( h16 ":" ) h16 ] "::" 3( h16 ":" ) ls32
1652  *                / [ *2( h16 ":" ) h16 ] "::" 2( h16 ":" ) ls32
1653  *                / [ *3( h16 ":" ) h16 ] "::"    h16 ":"   ls32
1654  *                / [ *4( h16 ":" ) h16 ] "::"              ls32
1655  *                / [ *5( h16 ":" ) h16 ] "::"              h16
1656  *                / [ *6( h16 ":" ) h16 ] "::"
1657  *
1658  * ls32        = ( h16 ":" h16 ) / IPv4address
1659  *             ; least-significant 32 bits of address.
1660  *
1661  * h16         = 1*4HEXDIG
1662  *             ; 16 bits of address represented in hexadecimal.
1663  *
1664  * Modeled after google-url's 'DoParseIPv6' function.
1665  */
1666 static BOOL parse_ipv6address(const WCHAR **ptr, parse_data *data, DWORD flags) {
1667     const WCHAR *start, *cur_start;
1668     ipv6_address ip;
1669
1670     start = cur_start = *ptr;
1671     memset(&ip, 0, sizeof(ipv6_address));
1672
1673     for(;; ++(*ptr)) {
1674         /* Check if we're on the last character of the host. */
1675         BOOL is_end = (is_auth_delim(**ptr, data->scheme_type != URL_SCHEME_UNKNOWN)
1676                         || **ptr == ']');
1677
1678         BOOL is_split = (**ptr == ':');
1679         BOOL is_elision = (is_split && !is_end && *(*ptr+1) == ':');
1680
1681         /* Check if we're at the end of a component, or
1682          * if we're at the end of the IPv6 address.
1683          */
1684         if(is_split || is_end) {
1685             DWORD cur_len = 0;
1686
1687             cur_len = *ptr - cur_start;
1688
1689             /* h16 can't have a length > 4. */
1690             if(cur_len > 4) {
1691                 *ptr = start;
1692
1693                 TRACE("(%p %p %x): h16 component to long.\n",
1694                     ptr, data, flags);
1695                 return FALSE;
1696             }
1697
1698             if(cur_len == 0) {
1699                 /* An h16 component can't have the length of 0 unless
1700                  * the elision is at the beginning of the address, or
1701                  * at the end of the address.
1702                  */
1703                 if(!((*ptr == start && is_elision) ||
1704                     (is_end && (*ptr-2) == ip.elision))) {
1705                     *ptr = start;
1706                     TRACE("(%p %p %x): IPv6 component cannot have a length of 0.\n",
1707                         ptr, data, flags);
1708                     return FALSE;
1709                 }
1710             }
1711
1712             if(cur_len > 0) {
1713                 /* An IPv6 address can have no more than 8 h16 components. */
1714                 if(ip.h16_count >= 8) {
1715                     *ptr = start;
1716                     TRACE("(%p %p %x): Not a IPv6 address, to many h16 components.\n",
1717                         ptr, data, flags);
1718                     return FALSE;
1719                 }
1720
1721                 ip.components[ip.h16_count].str = cur_start;
1722                 ip.components[ip.h16_count].len = cur_len;
1723
1724                 TRACE("(%p %p %x): Found h16 component %s, len=%d, h16_count=%d\n",
1725                     ptr, data, flags, debugstr_wn(cur_start, cur_len), cur_len,
1726                     ip.h16_count);
1727                 ++ip.h16_count;
1728             }
1729         }
1730
1731         if(is_end)
1732             break;
1733
1734         if(is_elision) {
1735             /* A IPv6 address can only have 1 elision ('::'). */
1736             if(ip.elision) {
1737                 *ptr = start;
1738
1739                 TRACE("(%p %p %x): IPv6 address cannot have 2 elisions.\n",
1740                     ptr, data, flags);
1741                 return FALSE;
1742             }
1743
1744             ip.elision = *ptr;
1745             ++(*ptr);
1746         }
1747
1748         if(is_split)
1749             cur_start = *ptr+1;
1750         else {
1751             if(!check_ipv4address(ptr, TRUE)) {
1752                 if(!is_hexdigit(**ptr)) {
1753                     /* Not a valid character for an IPv6 address. */
1754                     *ptr = start;
1755                     return FALSE;
1756                 }
1757             } else {
1758                 /* Found an IPv4 address. */
1759                 ip.ipv4 = cur_start;
1760                 ip.ipv4_len = *ptr - cur_start;
1761
1762                 TRACE("(%p %p %x): Found an attached IPv4 address %s len=%d.\n",
1763                     ptr, data, flags, debugstr_wn(ip.ipv4, ip.ipv4_len),
1764                     ip.ipv4_len);
1765
1766                 /* IPv4 addresses can only appear at the end of a IPv6. */
1767                 break;
1768             }
1769         }
1770     }
1771
1772     compute_ipv6_comps_size(&ip);
1773
1774     /* Make sure the IPv6 address adds up to 16 bytes. */
1775     if(ip.components_size + ip.elision_size != 16) {
1776         *ptr = start;
1777         TRACE("(%p %p %x): Invalid IPv6 address, did not add up to 16 bytes.\n",
1778             ptr, data, flags);
1779         return FALSE;
1780     }
1781
1782     if(ip.elision_size == 2) {
1783         /* For some reason on Windows if an elision that represents
1784          * only 1 h16 component is encountered at the very begin or
1785          * end of an IPv6 address, Windows does not consider it a
1786          * valid IPv6 address.
1787          *
1788          *  Ex: [::2:3:4:5:6:7] is not valid, even though the sum
1789          *      of all the components == 128bits.
1790          */
1791          if(ip.elision < ip.components[0].str ||
1792             ip.elision > ip.components[ip.h16_count-1].str) {
1793             *ptr = start;
1794             TRACE("(%p %p %x): Invalid IPv6 address. Detected elision of 2 bytes at the beginning or end of the address.\n",
1795                 ptr, data, flags);
1796             return FALSE;
1797         }
1798     }
1799
1800     data->host_type = Uri_HOST_IPV6;
1801     data->has_ipv6 = TRUE;
1802     data->ipv6_address = ip;
1803
1804     TRACE("(%p %p %x): Found valid IPv6 literal %s len=%d\n",
1805         ptr, data, flags, debugstr_wn(start, *ptr-start),
1806         (int)(*ptr-start));
1807     return TRUE;
1808 }
1809
1810 /*  IPvFuture  = "v" 1*HEXDIG "." 1*( unreserved / sub-delims / ":" ) */
1811 static BOOL parse_ipvfuture(const WCHAR **ptr, parse_data *data, DWORD flags) {
1812     const WCHAR *start = *ptr;
1813
1814     /* IPvFuture has to start with a 'v' or 'V'. */
1815     if(**ptr != 'v' && **ptr != 'V')
1816         return FALSE;
1817
1818     /* Following the v there must be at least 1 hex digit. */
1819     ++(*ptr);
1820     if(!is_hexdigit(**ptr)) {
1821         *ptr = start;
1822         return FALSE;
1823     }
1824
1825     ++(*ptr);
1826     while(is_hexdigit(**ptr))
1827         ++(*ptr);
1828
1829     /* End of the hexdigit sequence must be a '.' */
1830     if(**ptr != '.') {
1831         *ptr = start;
1832         return FALSE;
1833     }
1834
1835     ++(*ptr);
1836     if(!is_unreserved(**ptr) && !is_subdelim(**ptr) && **ptr != ':') {
1837         *ptr = start;
1838         return FALSE;
1839     }
1840
1841     ++(*ptr);
1842     while(is_unreserved(**ptr) || is_subdelim(**ptr) || **ptr == ':')
1843         ++(*ptr);
1844
1845     data->host_type = Uri_HOST_UNKNOWN;
1846
1847     TRACE("(%p %p %x): Parsed IPvFuture address %s len=%d\n", ptr, data, flags,
1848           debugstr_wn(start, *ptr-start), (int)(*ptr-start));
1849
1850     return TRUE;
1851 }
1852
1853 /* IP-literal = "[" ( IPv6address / IPvFuture  ) "]" */
1854 static BOOL parse_ip_literal(const WCHAR **ptr, parse_data *data, DWORD flags, DWORD extras) {
1855     data->host = *ptr;
1856
1857     if(**ptr != '[' && !(extras & ALLOW_BRACKETLESS_IP_LITERAL)) {
1858         data->host = NULL;
1859         return FALSE;
1860     } else if(**ptr == '[')
1861         ++(*ptr);
1862
1863     if(!parse_ipv6address(ptr, data, flags)) {
1864         if(extras & SKIP_IP_FUTURE_CHECK || !parse_ipvfuture(ptr, data, flags)) {
1865             *ptr = data->host;
1866             data->host = NULL;
1867             return FALSE;
1868         }
1869     }
1870
1871     if(**ptr != ']' && !(extras & ALLOW_BRACKETLESS_IP_LITERAL)) {
1872         *ptr = data->host;
1873         data->host = NULL;
1874         return FALSE;
1875     } else if(!**ptr && extras & ALLOW_BRACKETLESS_IP_LITERAL) {
1876         /* The IP literal didn't contain brackets and was followed by
1877          * a NULL terminator, so no reason to even check the port.
1878          */
1879         data->host_len = *ptr - data->host;
1880         return TRUE;
1881     }
1882
1883     ++(*ptr);
1884     if(**ptr == ':') {
1885         ++(*ptr);
1886         /* If a valid port is not found, then let it trickle down to
1887          * parse_reg_name.
1888          */
1889         if(!parse_port(ptr, data, flags)) {
1890             *ptr = data->host;
1891             data->host = NULL;
1892             return FALSE;
1893         }
1894     } else
1895         data->host_len = *ptr - data->host;
1896
1897     return TRUE;
1898 }
1899
1900 /* Parses the host information from the URI.
1901  *
1902  * host = IP-literal / IPv4address / reg-name
1903  */
1904 static BOOL parse_host(const WCHAR **ptr, parse_data *data, DWORD flags, DWORD extras) {
1905     if(!parse_ip_literal(ptr, data, flags, extras)) {
1906         if(!parse_ipv4address(ptr, data, flags)) {
1907             if(!parse_reg_name(ptr, data, flags, extras)) {
1908                 TRACE("(%p %p %x %x): Malformed URI, Unknown host type.\n",
1909                     ptr, data, flags, extras);
1910                 return FALSE;
1911             }
1912         }
1913     }
1914
1915     return TRUE;
1916 }
1917
1918 /* Parses the authority information from the URI.
1919  *
1920  * authority   = [ userinfo "@" ] host [ ":" port ]
1921  */
1922 static BOOL parse_authority(const WCHAR **ptr, parse_data *data, DWORD flags) {
1923     parse_userinfo(ptr, data, flags);
1924
1925     /* Parsing the port will happen during one of the host parsing
1926      * routines (if the URI has a port).
1927      */
1928     if(!parse_host(ptr, data, flags, 0))
1929         return FALSE;
1930
1931     return TRUE;
1932 }
1933
1934 /* Attempts to parse the path information of a hierarchical URI. */
1935 static BOOL parse_path_hierarchical(const WCHAR **ptr, parse_data *data, DWORD flags) {
1936     const WCHAR *start = *ptr;
1937     static const WCHAR slash[] = {'/',0};
1938     const BOOL is_file = data->scheme_type == URL_SCHEME_FILE;
1939
1940     if(is_path_delim(**ptr)) {
1941         if(data->scheme_type == URL_SCHEME_WILDCARD) {
1942             /* Wildcard schemes don't get a '/' attached if their path is
1943              * empty.
1944              */
1945             data->path = NULL;
1946             data->path_len = 0;
1947         } else if(!(flags & Uri_CREATE_NO_CANONICALIZE)) {
1948             /* If the path component is empty, then a '/' is added. */
1949             data->path = slash;
1950             data->path_len = 1;
1951         }
1952     } else {
1953         while(!is_path_delim(**ptr)) {
1954             if(**ptr == '%' && data->scheme_type != URL_SCHEME_UNKNOWN && !is_file) {
1955                 if(!check_pct_encoded(ptr)) {
1956                     *ptr = start;
1957                     return FALSE;
1958                 } else
1959                     continue;
1960             } else if(is_forbidden_dos_path_char(**ptr) && is_file &&
1961                       (flags & Uri_CREATE_FILE_USE_DOS_PATH)) {
1962                 /* File schemes with USE_DOS_PATH set aren't allowed to have
1963                  * a '<' or '>' or '\"' appear in them.
1964                  */
1965                 *ptr = start;
1966                 return FALSE;
1967             } else if(**ptr == '\\') {
1968                 /* Not allowed to have a backslash if NO_CANONICALIZE is set
1969                  * and the scheme is known type (but not a file scheme).
1970                  */
1971                 if(flags & Uri_CREATE_NO_CANONICALIZE) {
1972                     if(data->scheme_type != URL_SCHEME_FILE &&
1973                        data->scheme_type != URL_SCHEME_UNKNOWN) {
1974                         *ptr = start;
1975                         return FALSE;
1976                     }
1977                 }
1978             }
1979
1980             ++(*ptr);
1981         }
1982
1983         /* The only time a URI doesn't have a path is when
1984          * the NO_CANONICALIZE flag is set and the raw URI
1985          * didn't contain one.
1986          */
1987         if(*ptr == start) {
1988             data->path = NULL;
1989             data->path_len = 0;
1990         } else {
1991             data->path = start;
1992             data->path_len = *ptr - start;
1993         }
1994     }
1995
1996     if(data->path)
1997         TRACE("(%p %p %x): Parsed path %s len=%d\n", ptr, data, flags,
1998             debugstr_wn(data->path, data->path_len), data->path_len);
1999     else
2000         TRACE("(%p %p %x): The URI contained no path\n", ptr, data, flags);
2001
2002     return TRUE;
2003 }
2004
2005 /* Parses the path of a opaque URI (much less strict then the parser
2006  * for a hierarchical URI).
2007  *
2008  * NOTE:
2009  *  Windows allows invalid % encoded data to appear in opaque URI paths
2010  *  for unknown scheme types.
2011  *
2012  *  File schemes with USE_DOS_PATH set aren't allowed to have '<', '>', or '\"'
2013  *  appear in them.
2014  */
2015 static BOOL parse_path_opaque(const WCHAR **ptr, parse_data *data, DWORD flags) {
2016     const BOOL known_scheme = data->scheme_type != URL_SCHEME_UNKNOWN;
2017     const BOOL is_file = data->scheme_type == URL_SCHEME_FILE;
2018
2019     data->path = *ptr;
2020
2021     while(!is_path_delim(**ptr)) {
2022         if(**ptr == '%' && known_scheme) {
2023             if(!check_pct_encoded(ptr)) {
2024                 *ptr = data->path;
2025                 data->path = NULL;
2026                 return FALSE;
2027             } else
2028                 continue;
2029         } else if(is_forbidden_dos_path_char(**ptr) && is_file &&
2030                   (flags & Uri_CREATE_FILE_USE_DOS_PATH)) {
2031             *ptr = data->path;
2032             data->path = NULL;
2033             return FALSE;
2034         }
2035
2036         ++(*ptr);
2037     }
2038
2039     data->path_len = *ptr - data->path;
2040     TRACE("(%p %p %x): Parsed opaque URI path %s len=%d\n", ptr, data, flags,
2041         debugstr_wn(data->path, data->path_len), data->path_len);
2042     return TRUE;
2043 }
2044
2045 /* Determines how the URI should be parsed after the scheme information.
2046  *
2047  * If the scheme is followed, by "//" then, it is treated as an hierarchical URI
2048  * which then the authority and path information will be parsed out. Otherwise, the
2049  * URI will be treated as an opaque URI which the authority information is not parsed
2050  * out.
2051  *
2052  * RFC 3896 definition of hier-part:
2053  *
2054  * hier-part   = "//" authority path-abempty
2055  *                 / path-absolute
2056  *                 / path-rootless
2057  *                 / path-empty
2058  *
2059  * MSDN opaque URI definition:
2060  *  scheme ":" path [ "#" fragment ]
2061  *
2062  * NOTES:
2063  *  If the URI is of an unknown scheme type and has a "//" following the scheme then it
2064  *  is treated as a hierarchical URI, but, if the CREATE_NO_CRACK_UNKNOWN_SCHEMES flag is
2065  *  set then it is considered an opaque URI reguardless of what follows the scheme information
2066  *  (per MSDN documentation).
2067  */
2068 static BOOL parse_hierpart(const WCHAR **ptr, parse_data *data, DWORD flags) {
2069     const WCHAR *start = *ptr;
2070
2071     /* Checks if the authority information needs to be parsed. */
2072     if(is_hierarchical_uri(ptr, data)) {
2073         /* Only treat it as a hierarchical URI if the scheme_type is known or
2074          * the Uri_CREATE_NO_CRACK_UNKNOWN_SCHEMES flag is not set.
2075          */
2076         if(data->scheme_type != URL_SCHEME_UNKNOWN ||
2077            !(flags & Uri_CREATE_NO_CRACK_UNKNOWN_SCHEMES)) {
2078             TRACE("(%p %p %x): Treating URI as an hierarchical URI.\n", ptr, data, flags);
2079             data->is_opaque = FALSE;
2080
2081             /* TODO: Handle hierarchical URI's, parse authority then parse the path. */
2082             if(!parse_authority(ptr, data, flags))
2083                 return FALSE;
2084
2085             return parse_path_hierarchical(ptr, data, flags);
2086         } else
2087             /* Reset ptr to it's starting position so opaque path parsing
2088              * begins at the correct location.
2089              */
2090             *ptr = start;
2091     }
2092
2093     /* If it reaches here, then the URI will be treated as an opaque
2094      * URI.
2095      */
2096
2097     TRACE("(%p %p %x): Treating URI as an opaque URI.\n", ptr, data, flags);
2098
2099     data->is_opaque = TRUE;
2100     if(!parse_path_opaque(ptr, data, flags))
2101         return FALSE;
2102
2103     return TRUE;
2104 }
2105
2106 /* Attempts to parse the query string from the URI.
2107  *
2108  * NOTES:
2109  *  If NO_DECODE_EXTRA_INFO flag is set, then invalid percent encoded
2110  *  data is allowed appear in the query string. For unknown scheme types
2111  *  invalid percent encoded data is allowed to appear reguardless.
2112  */
2113 static BOOL parse_query(const WCHAR **ptr, parse_data *data, DWORD flags) {
2114     const BOOL known_scheme = data->scheme_type != URL_SCHEME_UNKNOWN;
2115
2116     if(**ptr != '?') {
2117         TRACE("(%p %p %x): URI didn't contain a query string.\n", ptr, data, flags);
2118         return TRUE;
2119     }
2120
2121     data->query = *ptr;
2122
2123     ++(*ptr);
2124     while(**ptr && **ptr != '#') {
2125         if(**ptr == '%' && known_scheme &&
2126            !(flags & Uri_CREATE_NO_DECODE_EXTRA_INFO)) {
2127             if(!check_pct_encoded(ptr)) {
2128                 *ptr = data->query;
2129                 data->query = NULL;
2130                 return FALSE;
2131             } else
2132                 continue;
2133         }
2134
2135         ++(*ptr);
2136     }
2137
2138     data->query_len = *ptr - data->query;
2139
2140     TRACE("(%p %p %x): Parsed query string %s len=%d\n", ptr, data, flags,
2141         debugstr_wn(data->query, data->query_len), data->query_len);
2142     return TRUE;
2143 }
2144
2145 /* Attempts to parse the fragment from the URI.
2146  *
2147  * NOTES:
2148  *  If NO_DECODE_EXTRA_INFO flag is set, then invalid percent encoded
2149  *  data is allowed appear in the query string. For unknown scheme types
2150  *  invalid percent encoded data is allowed to appear reguardless.
2151  */
2152 static BOOL parse_fragment(const WCHAR **ptr, parse_data *data, DWORD flags) {
2153     const BOOL known_scheme = data->scheme_type != URL_SCHEME_UNKNOWN;
2154
2155     if(**ptr != '#') {
2156         TRACE("(%p %p %x): URI didn't contain a fragment.\n", ptr, data, flags);
2157         return TRUE;
2158     }
2159
2160     data->fragment = *ptr;
2161
2162     ++(*ptr);
2163     while(**ptr) {
2164         if(**ptr == '%' && known_scheme &&
2165            !(flags & Uri_CREATE_NO_DECODE_EXTRA_INFO)) {
2166             if(!check_pct_encoded(ptr)) {
2167                 *ptr = data->fragment;
2168                 data->fragment = NULL;
2169                 return FALSE;
2170             } else
2171                 continue;
2172         }
2173
2174         ++(*ptr);
2175     }
2176
2177     data->fragment_len = *ptr - data->fragment;
2178
2179     TRACE("(%p %p %x): Parsed fragment %s len=%d\n", ptr, data, flags,
2180         debugstr_wn(data->fragment, data->fragment_len), data->fragment_len);
2181     return TRUE;
2182 }
2183
2184 /* Parses and validates the components of the specified by data->uri
2185  * and stores the information it parses into 'data'.
2186  *
2187  * Returns TRUE if it successfully parsed the URI. False otherwise.
2188  */
2189 static BOOL parse_uri(parse_data *data, DWORD flags) {
2190     const WCHAR *ptr;
2191     const WCHAR **pptr;
2192
2193     ptr = data->uri;
2194     pptr = &ptr;
2195
2196     TRACE("(%p %x): BEGINNING TO PARSE URI %s.\n", data, flags, debugstr_w(data->uri));
2197
2198     if(!parse_scheme(pptr, data, flags, 0))
2199         return FALSE;
2200
2201     if(!parse_hierpart(pptr, data, flags))
2202         return FALSE;
2203
2204     if(!parse_query(pptr, data, flags))
2205         return FALSE;
2206
2207     if(!parse_fragment(pptr, data, flags))
2208         return FALSE;
2209
2210     TRACE("(%p %x): FINISHED PARSING URI.\n", data, flags);
2211     return TRUE;
2212 }
2213
2214 static BOOL canonicalize_username(const parse_data *data, Uri *uri, DWORD flags, BOOL computeOnly) {
2215     const WCHAR *ptr;
2216
2217     if(!data->username) {
2218         uri->userinfo_start = -1;
2219         return TRUE;
2220     }
2221
2222     uri->userinfo_start = uri->canon_len;
2223     for(ptr = data->username; ptr < data->username+data->username_len; ++ptr) {
2224         if(*ptr == '%') {
2225             /* Only decode % encoded values for known scheme types. */
2226             if(data->scheme_type != URL_SCHEME_UNKNOWN) {
2227                 /* See if the value really needs decoded. */
2228                 WCHAR val = decode_pct_val(ptr);
2229                 if(is_unreserved(val)) {
2230                     if(!computeOnly)
2231                         uri->canon_uri[uri->canon_len] = val;
2232
2233                     ++uri->canon_len;
2234
2235                     /* Move pass the hex characters. */
2236                     ptr += 2;
2237                     continue;
2238                 }
2239             }
2240         } else if(!is_reserved(*ptr) && !is_unreserved(*ptr) && *ptr != '\\') {
2241             /* Only percent encode forbidden characters if the NO_ENCODE_FORBIDDEN_CHARACTERS flag
2242              * is NOT set.
2243              */
2244             if(!(flags & Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS)) {
2245                 if(!computeOnly)
2246                     pct_encode_val(*ptr, uri->canon_uri + uri->canon_len);
2247
2248                 uri->canon_len += 3;
2249                 continue;
2250             }
2251         }
2252
2253         if(!computeOnly)
2254             /* Nothing special, so just copy the character over. */
2255             uri->canon_uri[uri->canon_len] = *ptr;
2256         ++uri->canon_len;
2257     }
2258
2259     return TRUE;
2260 }
2261
2262 static BOOL canonicalize_password(const parse_data *data, Uri *uri, DWORD flags, BOOL computeOnly) {
2263     const WCHAR *ptr;
2264
2265     if(!data->password) {
2266         uri->userinfo_split = -1;
2267         return TRUE;
2268     }
2269
2270     if(uri->userinfo_start == -1)
2271         /* Has a password, but, doesn't have a username. */
2272         uri->userinfo_start = uri->canon_len;
2273
2274     uri->userinfo_split = uri->canon_len - uri->userinfo_start;
2275
2276     /* Add the ':' to the userinfo component. */
2277     if(!computeOnly)
2278         uri->canon_uri[uri->canon_len] = ':';
2279     ++uri->canon_len;
2280
2281     for(ptr = data->password; ptr < data->password+data->password_len; ++ptr) {
2282         if(*ptr == '%') {
2283             /* Only decode % encoded values for known scheme types. */
2284             if(data->scheme_type != URL_SCHEME_UNKNOWN) {
2285                 /* See if the value really needs decoded. */
2286                 WCHAR val = decode_pct_val(ptr);
2287                 if(is_unreserved(val)) {
2288                     if(!computeOnly)
2289                         uri->canon_uri[uri->canon_len] = val;
2290
2291                     ++uri->canon_len;
2292
2293                     /* Move pass the hex characters. */
2294                     ptr += 2;
2295                     continue;
2296                 }
2297             }
2298         } else if(!is_reserved(*ptr) && !is_unreserved(*ptr) && *ptr != '\\') {
2299             /* Only percent encode forbidden characters if the NO_ENCODE_FORBIDDEN_CHARACTERS flag
2300              * is NOT set.
2301              */
2302             if(!(flags & Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS)) {
2303                 if(!computeOnly)
2304                     pct_encode_val(*ptr, uri->canon_uri + uri->canon_len);
2305
2306                 uri->canon_len += 3;
2307                 continue;
2308             }
2309         }
2310
2311         if(!computeOnly)
2312             /* Nothing special, so just copy the character over. */
2313             uri->canon_uri[uri->canon_len] = *ptr;
2314         ++uri->canon_len;
2315     }
2316
2317     return TRUE;
2318 }
2319
2320 /* Canonicalizes the userinfo of the URI represented by the parse_data.
2321  *
2322  * Canonicalization of the userinfo is a simple process. If there are any percent
2323  * encoded characters that fall in the "unreserved" character set, they are decoded
2324  * to their actual value. If a character is not in the "unreserved" or "reserved" sets
2325  * then it is percent encoded. Other than that the characters are copied over without
2326  * change.
2327  */
2328 static BOOL canonicalize_userinfo(const parse_data *data, Uri *uri, DWORD flags, BOOL computeOnly) {
2329     uri->userinfo_start = uri->userinfo_split = -1;
2330     uri->userinfo_len = 0;
2331
2332     if(!data->username && !data->password)
2333         /* URI doesn't have userinfo, so nothing to do here. */
2334         return TRUE;
2335
2336     if(!canonicalize_username(data, uri, flags, computeOnly))
2337         return FALSE;
2338
2339     if(!canonicalize_password(data, uri, flags, computeOnly))
2340         return FALSE;
2341
2342     uri->userinfo_len = uri->canon_len - uri->userinfo_start;
2343     if(!computeOnly)
2344         TRACE("(%p %p %x %d): Canonicalized userinfo, userinfo_start=%d, userinfo=%s, userinfo_split=%d userinfo_len=%d.\n",
2345                 data, uri, flags, computeOnly, uri->userinfo_start, debugstr_wn(uri->canon_uri + uri->userinfo_start, uri->userinfo_len),
2346                 uri->userinfo_split, uri->userinfo_len);
2347
2348     /* Now insert the '@' after the userinfo. */
2349     if(!computeOnly)
2350         uri->canon_uri[uri->canon_len] = '@';
2351     ++uri->canon_len;
2352
2353     return TRUE;
2354 }
2355
2356 /* Attempts to canonicalize a reg_name.
2357  *
2358  * Things that happen:
2359  *  1)  If Uri_CREATE_NO_CANONICALIZE flag is not set, then the reg_name is
2360  *      lower cased. Unless it's an unknown scheme type, which case it's
2361  *      no lower cased reguardless.
2362  *
2363  *  2)  Unreserved % encoded characters are decoded for known
2364  *      scheme types.
2365  *
2366  *  3)  Forbidden characters are % encoded as long as
2367  *      Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS flag is not set and
2368  *      it isn't an unknown scheme type.
2369  *
2370  *  4)  If it's a file scheme and the host is "localhost" it's removed.
2371  *
2372  *  5)  If it's a file scheme and Uri_CREATE_FILE_USE_DOS_PATH is set,
2373  *      then the UNC path characters are added before the host name.
2374  */
2375 static BOOL canonicalize_reg_name(const parse_data *data, Uri *uri,
2376                                   DWORD flags, BOOL computeOnly) {
2377     static const WCHAR localhostW[] =
2378             {'l','o','c','a','l','h','o','s','t',0};
2379     const WCHAR *ptr;
2380     const BOOL known_scheme = data->scheme_type != URL_SCHEME_UNKNOWN;
2381
2382     if(data->scheme_type == URL_SCHEME_FILE &&
2383        data->host_len == lstrlenW(localhostW)) {
2384         if(!StrCmpNIW(data->host, localhostW, data->host_len)) {
2385             uri->host_start = -1;
2386             uri->host_len = 0;
2387             uri->host_type = Uri_HOST_UNKNOWN;
2388             return TRUE;
2389         }
2390     }
2391
2392     if(data->scheme_type == URL_SCHEME_FILE && flags & Uri_CREATE_FILE_USE_DOS_PATH) {
2393         if(!computeOnly) {
2394             uri->canon_uri[uri->canon_len] = '\\';
2395             uri->canon_uri[uri->canon_len+1] = '\\';
2396         }
2397         uri->canon_len += 2;
2398         uri->authority_start = uri->canon_len;
2399     }
2400
2401     uri->host_start = uri->canon_len;
2402
2403     for(ptr = data->host; ptr < data->host+data->host_len; ++ptr) {
2404         if(*ptr == '%' && known_scheme) {
2405             WCHAR val = decode_pct_val(ptr);
2406             if(is_unreserved(val)) {
2407                 /* If NO_CANONICALZE is not set, then windows lower cases the
2408                  * decoded value.
2409                  */
2410                 if(!(flags & Uri_CREATE_NO_CANONICALIZE) && isupperW(val)) {
2411                     if(!computeOnly)
2412                         uri->canon_uri[uri->canon_len] = tolowerW(val);
2413                 } else {
2414                     if(!computeOnly)
2415                         uri->canon_uri[uri->canon_len] = val;
2416                 }
2417                 ++uri->canon_len;
2418
2419                 /* Skip past the % encoded character. */
2420                 ptr += 2;
2421                 continue;
2422             } else {
2423                 /* Just copy the % over. */
2424                 if(!computeOnly)
2425                     uri->canon_uri[uri->canon_len] = *ptr;
2426                 ++uri->canon_len;
2427             }
2428         } else if(*ptr == '\\') {
2429             /* Only unknown scheme types could have made it here with a '\\' in the host name. */
2430             if(!computeOnly)
2431                 uri->canon_uri[uri->canon_len] = *ptr;
2432             ++uri->canon_len;
2433         } else if(!(flags & Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS) &&
2434                   !is_unreserved(*ptr) && !is_reserved(*ptr) && known_scheme) {
2435             if(!computeOnly) {
2436                 pct_encode_val(*ptr, uri->canon_uri+uri->canon_len);
2437
2438                 /* The percent encoded value gets lower cased also. */
2439                 if(!(flags & Uri_CREATE_NO_CANONICALIZE)) {
2440                     uri->canon_uri[uri->canon_len+1] = tolowerW(uri->canon_uri[uri->canon_len+1]);
2441                     uri->canon_uri[uri->canon_len+2] = tolowerW(uri->canon_uri[uri->canon_len+2]);
2442                 }
2443             }
2444
2445             uri->canon_len += 3;
2446         } else {
2447             if(!computeOnly) {
2448                 if(!(flags & Uri_CREATE_NO_CANONICALIZE) && known_scheme)
2449                     uri->canon_uri[uri->canon_len] = tolowerW(*ptr);
2450                 else
2451                     uri->canon_uri[uri->canon_len] = *ptr;
2452             }
2453
2454             ++uri->canon_len;
2455         }
2456     }
2457
2458     uri->host_len = uri->canon_len - uri->host_start;
2459
2460     if(!computeOnly)
2461         TRACE("(%p %p %x %d): Canonicalize reg_name=%s len=%d\n", data, uri, flags,
2462             computeOnly, debugstr_wn(uri->canon_uri+uri->host_start, uri->host_len),
2463             uri->host_len);
2464
2465     if(!computeOnly)
2466         find_domain_name(uri->canon_uri+uri->host_start, uri->host_len,
2467             &(uri->domain_offset));
2468
2469     return TRUE;
2470 }
2471
2472 /* Attempts to canonicalize an implicit IPv4 address. */
2473 static BOOL canonicalize_implicit_ipv4address(const parse_data *data, Uri *uri, DWORD flags, BOOL computeOnly) {
2474     uri->host_start = uri->canon_len;
2475
2476     TRACE("%u\n", data->implicit_ipv4);
2477     /* For unknown scheme types Window's doesn't convert
2478      * the value into an IP address, but, it still considers
2479      * it an IPv4 address.
2480      */
2481     if(data->scheme_type == URL_SCHEME_UNKNOWN) {
2482         if(!computeOnly)
2483             memcpy(uri->canon_uri+uri->canon_len, data->host, data->host_len*sizeof(WCHAR));
2484         uri->canon_len += data->host_len;
2485     } else {
2486         if(!computeOnly)
2487             uri->canon_len += ui2ipv4(uri->canon_uri+uri->canon_len, data->implicit_ipv4);
2488         else
2489             uri->canon_len += ui2ipv4(NULL, data->implicit_ipv4);
2490     }
2491
2492     uri->host_len = uri->canon_len - uri->host_start;
2493     uri->host_type = Uri_HOST_IPV4;
2494
2495     if(!computeOnly)
2496         TRACE("%p %p %x %d): Canonicalized implicit IP address=%s len=%d\n",
2497             data, uri, flags, computeOnly,
2498             debugstr_wn(uri->canon_uri+uri->host_start, uri->host_len),
2499             uri->host_len);
2500
2501     return TRUE;
2502 }
2503
2504 /* Attempts to canonicalize an IPv4 address.
2505  *
2506  * If the parse_data represents a URI that has an implicit IPv4 address
2507  * (ex. http://256/, this function will convert 256 into 0.0.1.0). If
2508  * the implicit IP address exceeds the value of UINT_MAX (maximum value
2509  * for an IPv4 address) it's canonicalized as if were a reg-name.
2510  *
2511  * If the parse_data contains a partial or full IPv4 address it normalizes it.
2512  * A partial IPv4 address is something like "192.0" and would be normalized to
2513  * "192.0.0.0". With a full (or partial) IPv4 address like "192.002.01.003" would
2514  * be normalized to "192.2.1.3".
2515  *
2516  * NOTES:
2517  *  Window's ONLY normalizes IPv4 address for known scheme types (one that isn't
2518  *  URL_SCHEME_UNKNOWN). For unknown scheme types, it simply copies the data from
2519  *  the original URI into the canonicalized URI, but, it still recognizes URI's
2520  *  host type as HOST_IPV4.
2521  */
2522 static BOOL canonicalize_ipv4address(const parse_data *data, Uri *uri, DWORD flags, BOOL computeOnly) {
2523     if(data->has_implicit_ip)
2524         return canonicalize_implicit_ipv4address(data, uri, flags, computeOnly);
2525     else {
2526         uri->host_start = uri->canon_len;
2527
2528         /* Windows only normalizes for known scheme types. */
2529         if(data->scheme_type != URL_SCHEME_UNKNOWN) {
2530             /* parse_data contains a partial or full IPv4 address, so normalize it. */
2531             DWORD i, octetDigitCount = 0, octetCount = 0;
2532             BOOL octetHasDigit = FALSE;
2533
2534             for(i = 0; i < data->host_len; ++i) {
2535                 if(data->host[i] == '0' && !octetHasDigit) {
2536                     /* Can ignore leading zeros if:
2537                      *  1) It isn't the last digit of the octet.
2538                      *  2) i+1 != data->host_len
2539                      *  3) i+1 != '.'
2540                      */
2541                     if(octetDigitCount == 2 ||
2542                        i+1 == data->host_len ||
2543                        data->host[i+1] == '.') {
2544                         if(!computeOnly)
2545                             uri->canon_uri[uri->canon_len] = data->host[i];
2546                         ++uri->canon_len;
2547                         TRACE("Adding zero\n");
2548                     }
2549                 } else if(data->host[i] == '.') {
2550                     if(!computeOnly)
2551                         uri->canon_uri[uri->canon_len] = data->host[i];
2552                     ++uri->canon_len;
2553
2554                     octetDigitCount = 0;
2555                     octetHasDigit = FALSE;
2556                     ++octetCount;
2557                 } else {
2558                     if(!computeOnly)
2559                         uri->canon_uri[uri->canon_len] = data->host[i];
2560                     ++uri->canon_len;
2561
2562                     ++octetDigitCount;
2563                     octetHasDigit = TRUE;
2564                 }
2565             }
2566
2567             /* Make sure the canonicalized IP address has 4 dec-octets.
2568              * If doesn't add "0" ones until there is 4;
2569              */
2570             for( ; octetCount < 3; ++octetCount) {
2571                 if(!computeOnly) {
2572                     uri->canon_uri[uri->canon_len] = '.';
2573                     uri->canon_uri[uri->canon_len+1] = '0';
2574                 }
2575
2576                 uri->canon_len += 2;
2577             }
2578         } else {
2579             /* Windows doesn't normalize addresses in unknown schemes. */
2580             if(!computeOnly)
2581                 memcpy(uri->canon_uri+uri->canon_len, data->host, data->host_len*sizeof(WCHAR));
2582             uri->canon_len += data->host_len;
2583         }
2584
2585         uri->host_len = uri->canon_len - uri->host_start;
2586         if(!computeOnly)
2587             TRACE("(%p %p %x %d): Canonicalized IPv4 address, ip=%s len=%d\n",
2588                 data, uri, flags, computeOnly,
2589                 debugstr_wn(uri->canon_uri+uri->host_start, uri->host_len),
2590                 uri->host_len);
2591     }
2592
2593     return TRUE;
2594 }
2595
2596 /* Attempts to canonicalize the IPv6 address of the URI.
2597  *
2598  * Multiple things happen during the canonicalization of an IPv6 address:
2599  *  1)  Any leading zero's in an h16 component are removed.
2600  *      Ex: [0001:0022::] -> [1:22::]
2601  *
2602  *  2)  The longest sequence of zero h16 components are compressed
2603  *      into a "::" (elision). If there's a tie, the first is choosen.
2604  *
2605  *      Ex: [0:0:0:0:1:6:7:8]   -> [::1:6:7:8]
2606  *          [0:0:0:0:1:2::]     -> [::1:2:0:0]
2607  *          [0:0:1:2:0:0:7:8]   -> [::1:2:0:0:7:8]
2608  *
2609  *  3)  If an IPv4 address is attached to the IPv6 address, it's
2610  *      also normalized.
2611  *      Ex: [::001.002.022.000] -> [::1.2.22.0]
2612  *
2613  *  4)  If an elision is present, but, only represents 1 h16 component
2614  *      it's expanded.
2615  *
2616  *      Ex: [1::2:3:4:5:6:7] -> [1:0:2:3:4:5:6:7]
2617  *
2618  *  5)  If the IPv6 address contains an IPv4 address and there exists
2619  *      at least 1 non-zero h16 component the IPv4 address is converted
2620  *      into two h16 components, otherwise it's normalized and kept as is.
2621  *
2622  *      Ex: [::192.200.003.4]       -> [::192.200.3.4]
2623  *          [ffff::192.200.003.4]   -> [ffff::c0c8:3041]
2624  *
2625  * NOTE:
2626  *  For unknown scheme types Windows simply copies the address over without any
2627  *  changes.
2628  *
2629  *  IPv4 address can be included in an elision if all its components are 0's.
2630  */
2631 static BOOL canonicalize_ipv6address(const parse_data *data, Uri *uri,
2632                                      DWORD flags, BOOL computeOnly) {
2633     uri->host_start = uri->canon_len;
2634
2635     if(data->scheme_type == URL_SCHEME_UNKNOWN) {
2636         if(!computeOnly)
2637             memcpy(uri->canon_uri+uri->canon_len, data->host, data->host_len*sizeof(WCHAR));
2638         uri->canon_len += data->host_len;
2639     } else {
2640         USHORT values[8];
2641         INT elision_start;
2642         DWORD i, elision_len;
2643
2644         if(!ipv6_to_number(&(data->ipv6_address), values)) {
2645             TRACE("(%p %p %x %d): Failed to compute numerical value for IPv6 address.\n",
2646                 data, uri, flags, computeOnly);
2647             return FALSE;
2648         }
2649
2650         if(!computeOnly)
2651             uri->canon_uri[uri->canon_len] = '[';
2652         ++uri->canon_len;
2653
2654         /* Find where the elision should occur (if any). */
2655         compute_elision_location(&(data->ipv6_address), values, &elision_start, &elision_len);
2656
2657         TRACE("%p %p %x %d): Elision starts at %d, len=%u\n", data, uri, flags,
2658             computeOnly, elision_start, elision_len);
2659
2660         for(i = 0; i < 8; ++i) {
2661             BOOL in_elision = (elision_start > -1 && i >= elision_start &&
2662                                i < elision_start+elision_len);
2663             BOOL do_ipv4 = (i == 6 && data->ipv6_address.ipv4 && !in_elision &&
2664                             data->ipv6_address.h16_count == 0);
2665
2666             if(i == elision_start) {
2667                 if(!computeOnly) {
2668                     uri->canon_uri[uri->canon_len] = ':';
2669                     uri->canon_uri[uri->canon_len+1] = ':';
2670                 }
2671                 uri->canon_len += 2;
2672             }
2673
2674             /* We can ignore the current component if we're in the elision. */
2675             if(in_elision)
2676                 continue;
2677
2678             /* We only add a ':' if we're not at i == 0, or when we're at
2679              * the very end of elision range since the ':' colon was handled
2680              * earlier. Otherwise we would end up with ":::" after elision.
2681              */
2682             if(i != 0 && !(elision_start > -1 && i == elision_start+elision_len)) {
2683                 if(!computeOnly)
2684                     uri->canon_uri[uri->canon_len] = ':';
2685                 ++uri->canon_len;
2686             }
2687
2688             if(do_ipv4) {
2689                 UINT val;
2690                 DWORD len;
2691
2692                 /* Combine the two parts of the IPv4 address values. */
2693                 val = values[i];
2694                 val <<= 16;
2695                 val += values[i+1];
2696
2697                 if(!computeOnly)
2698                     len = ui2ipv4(uri->canon_uri+uri->canon_len, val);
2699                 else
2700                     len = ui2ipv4(NULL, val);
2701
2702                 uri->canon_len += len;
2703                 ++i;
2704             } else {
2705                 /* Write a regular h16 component to the URI. */
2706
2707                 /* Short circuit for the trivial case. */
2708                 if(values[i] == 0) {
2709                     if(!computeOnly)
2710                         uri->canon_uri[uri->canon_len] = '0';
2711                     ++uri->canon_len;
2712                 } else {
2713                     static const WCHAR formatW[] = {'%','x',0};
2714
2715                     if(!computeOnly)
2716                         uri->canon_len += sprintfW(uri->canon_uri+uri->canon_len,
2717                                             formatW, values[i]);
2718                     else {
2719                         WCHAR tmp[5];
2720                         uri->canon_len += sprintfW(tmp, formatW, values[i]);
2721                     }
2722                 }
2723             }
2724         }
2725
2726         /* Add the closing ']'. */
2727         if(!computeOnly)
2728             uri->canon_uri[uri->canon_len] = ']';
2729         ++uri->canon_len;
2730     }
2731
2732     uri->host_len = uri->canon_len - uri->host_start;
2733
2734     if(!computeOnly)
2735         TRACE("(%p %p %x %d): Canonicalized IPv6 address %s, len=%d\n", data, uri, flags,
2736             computeOnly, debugstr_wn(uri->canon_uri+uri->host_start, uri->host_len),
2737             uri->host_len);
2738
2739     return TRUE;
2740 }
2741
2742 /* Attempts to canonicalize the host of the URI (if any). */
2743 static BOOL canonicalize_host(const parse_data *data, Uri *uri, DWORD flags, BOOL computeOnly) {
2744     uri->host_start = -1;
2745     uri->host_len = 0;
2746     uri->domain_offset = -1;
2747
2748     if(data->host) {
2749         switch(data->host_type) {
2750         case Uri_HOST_DNS:
2751             uri->host_type = Uri_HOST_DNS;
2752             if(!canonicalize_reg_name(data, uri, flags, computeOnly))
2753                 return FALSE;
2754
2755             break;
2756         case Uri_HOST_IPV4:
2757             uri->host_type = Uri_HOST_IPV4;
2758             if(!canonicalize_ipv4address(data, uri, flags, computeOnly))
2759                 return FALSE;
2760
2761             break;
2762         case Uri_HOST_IPV6:
2763             if(!canonicalize_ipv6address(data, uri, flags, computeOnly))
2764                 return FALSE;
2765
2766             uri->host_type = Uri_HOST_IPV6;
2767             break;
2768         case Uri_HOST_UNKNOWN:
2769             if(data->host_len > 0 || data->scheme_type != URL_SCHEME_FILE) {
2770                 uri->host_start = uri->canon_len;
2771
2772                 /* Nothing happens to unknown host types. */
2773                 if(!computeOnly)
2774                     memcpy(uri->canon_uri+uri->canon_len, data->host, data->host_len*sizeof(WCHAR));
2775                 uri->canon_len += data->host_len;
2776                 uri->host_len = data->host_len;
2777             }
2778
2779             uri->host_type = Uri_HOST_UNKNOWN;
2780             break;
2781         default:
2782             FIXME("(%p %p %x %d): Canonicalization for host type %d not supported.\n", data,
2783                     uri, flags, computeOnly, data->host_type);
2784             return FALSE;
2785        }
2786    }
2787
2788    return TRUE;
2789 }
2790
2791 static BOOL canonicalize_port(const parse_data *data, Uri *uri, DWORD flags, BOOL computeOnly) {
2792     BOOL has_default_port = FALSE;
2793     USHORT default_port = 0;
2794     DWORD i;
2795
2796     uri->port_offset = -1;
2797
2798     /* Check if the scheme has a default port. */
2799     for(i = 0; i < sizeof(default_ports)/sizeof(default_ports[0]); ++i) {
2800         if(default_ports[i].scheme == data->scheme_type) {
2801             has_default_port = TRUE;
2802             default_port = default_ports[i].port;
2803             break;
2804         }
2805     }
2806
2807     uri->has_port = data->has_port || has_default_port;
2808
2809     /* Possible cases:
2810      *  1)  Has a port which is the default port.
2811      *  2)  Has a port (not the default).
2812      *  3)  Doesn't have a port, but, scheme has a default port.
2813      *  4)  No port.
2814      */
2815     if(has_default_port && data->has_port && data->port_value == default_port) {
2816         /* If it's the default port and this flag isn't set, don't do anything. */
2817         if(flags & Uri_CREATE_NO_CANONICALIZE) {
2818             uri->port_offset = uri->canon_len-uri->authority_start;
2819             if(!computeOnly)
2820                 uri->canon_uri[uri->canon_len] = ':';
2821             ++uri->canon_len;
2822
2823             if(data->port) {
2824                 /* Copy the original port over. */
2825                 if(!computeOnly)
2826                     memcpy(uri->canon_uri+uri->canon_len, data->port, data->port_len*sizeof(WCHAR));
2827                 uri->canon_len += data->port_len;
2828             } else {
2829                 if(!computeOnly)
2830                     uri->canon_len += ui2str(uri->canon_uri+uri->canon_len, data->port_value);
2831                 else
2832                     uri->canon_len += ui2str(NULL, data->port_value);
2833             }
2834         }
2835
2836         uri->port = default_port;
2837     } else if(data->has_port) {
2838         uri->port_offset = uri->canon_len-uri->authority_start;
2839         if(!computeOnly)
2840             uri->canon_uri[uri->canon_len] = ':';
2841         ++uri->canon_len;
2842
2843         if(flags & Uri_CREATE_NO_CANONICALIZE && data->port) {
2844             /* Copy the original over without changes. */
2845             if(!computeOnly)
2846                 memcpy(uri->canon_uri+uri->canon_len, data->port, data->port_len*sizeof(WCHAR));
2847             uri->canon_len += data->port_len;
2848         } else {
2849             if(!computeOnly)
2850                 uri->canon_len += ui2str(uri->canon_uri+uri->canon_len, data->port_value);
2851             else
2852                 uri->canon_len += ui2str(NULL, data->port_value);
2853         }
2854
2855         uri->port = data->port_value;
2856     } else if(has_default_port)
2857         uri->port = default_port;
2858
2859     return TRUE;
2860 }
2861
2862 /* Canonicalizes the authority of the URI represented by the parse_data. */
2863 static BOOL canonicalize_authority(const parse_data *data, Uri *uri, DWORD flags, BOOL computeOnly) {
2864     uri->authority_start = uri->canon_len;
2865     uri->authority_len = 0;
2866
2867     if(!canonicalize_userinfo(data, uri, flags, computeOnly))
2868         return FALSE;
2869
2870     if(!canonicalize_host(data, uri, flags, computeOnly))
2871         return FALSE;
2872
2873     if(!canonicalize_port(data, uri, flags, computeOnly))
2874         return FALSE;
2875
2876     if(uri->host_start != -1 || (data->is_relative && (data->password || data->username)))
2877         uri->authority_len = uri->canon_len - uri->authority_start;
2878     else
2879         uri->authority_start = -1;
2880
2881     return TRUE;
2882 }
2883
2884 /* Attempts to canonicalize the path of a hierarchical URI.
2885  *
2886  * Things that happen:
2887  *  1). Forbidden characters are percent encoded, unless the NO_ENCODE_FORBIDDEN
2888  *      flag is set or it's a file URI. Forbidden characters are always encoded
2889  *      for file schemes reguardless and forbidden characters are never encoded
2890  *      for unknown scheme types.
2891  *
2892  *  2). For known scheme types '\\' are changed to '/'.
2893  *
2894  *  3). Percent encoded, unreserved characters are decoded to their actual values.
2895  *      Unless the scheme type is unknown. For file schemes any percent encoded
2896  *      character in the unreserved or reserved set is decoded.
2897  *
2898  *  4). For File schemes if the path is starts with a drive letter and doesn't
2899  *      start with a '/' then one is appended.
2900  *      Ex: file://c:/test.mp3 -> file:///c:/test.mp3
2901  *
2902  *  5). Dot segments are removed from the path for all scheme types
2903  *      unless NO_CANONICALIZE flag is set. Dot segments aren't removed
2904  *      for wildcard scheme types.
2905  *
2906  * NOTES:
2907  *      file://c:/test%20test   -> file:///c:/test%2520test
2908  *      file://c:/test%3Etest   -> file:///c:/test%253Etest
2909  * if Uri_CREATE_FILE_USE_DOS_PATH is not set:
2910  *      file:///c:/test%20test  -> file:///c:/test%20test
2911  *      file:///c:/test%test    -> file:///c:/test%25test
2912  */
2913 static BOOL canonicalize_path_hierarchical(const parse_data *data, Uri *uri,
2914                                            DWORD flags, BOOL computeOnly) {
2915     const WCHAR *ptr;
2916     const BOOL known_scheme = data->scheme_type != URL_SCHEME_UNKNOWN;
2917     const BOOL is_file = data->scheme_type == URL_SCHEME_FILE;
2918     const BOOL is_res = data->scheme_type == URL_SCHEME_RES;
2919
2920     BOOL escape_pct = FALSE;
2921
2922     if(!data->path) {
2923         uri->path_start = -1;
2924         uri->path_len = 0;
2925         return TRUE;
2926     }
2927
2928     uri->path_start = uri->canon_len;
2929     ptr = data->path;
2930
2931     if(is_file && uri->host_start == -1) {
2932         /* Check if a '/' needs to be appended for the file scheme. */
2933         if(data->path_len > 1 && is_drive_path(ptr) && !(flags & Uri_CREATE_FILE_USE_DOS_PATH)) {
2934             if(!computeOnly)
2935                 uri->canon_uri[uri->canon_len] = '/';
2936             uri->canon_len++;
2937             escape_pct = TRUE;
2938         } else if(*ptr == '/') {
2939             if(!(flags & Uri_CREATE_FILE_USE_DOS_PATH)) {
2940                 /* Copy the extra '/' over. */
2941                 if(!computeOnly)
2942                     uri->canon_uri[uri->canon_len] = '/';
2943                 ++uri->canon_len;
2944             }
2945             ++ptr;
2946         }
2947
2948         if(is_drive_path(ptr)) {
2949             if(!computeOnly) {
2950                 uri->canon_uri[uri->canon_len] = *ptr;
2951                 /* If theres a '|' after the drive letter, convert it to a ':'. */
2952                 uri->canon_uri[uri->canon_len+1] = ':';
2953             }
2954             ptr += 2;
2955             uri->canon_len += 2;
2956         }
2957     }
2958
2959     if(!is_file && *(data->path) && *(data->path) != '/') {
2960         /* Prepend a '/' to the path if it doesn't have one. */
2961         if(!computeOnly)
2962             uri->canon_uri[uri->canon_len] = '/';
2963         ++uri->canon_len;
2964     }
2965
2966     for(; ptr < data->path+data->path_len; ++ptr) {
2967         BOOL do_default_action = TRUE;
2968
2969         if(*ptr == '%' && !is_res) {
2970             const WCHAR *tmp = ptr;
2971             WCHAR val;
2972
2973             /* Check if the % represents a valid encoded char, or if it needs encoded. */
2974             BOOL force_encode = !check_pct_encoded(&tmp) && is_file && !(flags&Uri_CREATE_FILE_USE_DOS_PATH);
2975             val = decode_pct_val(ptr);
2976
2977             if(force_encode || escape_pct) {
2978                 /* Escape the percent sign in the file URI. */
2979                 if(!computeOnly)
2980                     pct_encode_val(*ptr, uri->canon_uri+uri->canon_len);
2981                 uri->canon_len += 3;
2982                 do_default_action = FALSE;
2983             } else if((is_unreserved(val) && known_scheme) ||
2984                       (is_file && (is_unreserved(val) || is_reserved(val) ||
2985                       (val && flags&Uri_CREATE_FILE_USE_DOS_PATH && !is_forbidden_dos_path_char(val))))) {
2986                 if(!computeOnly)
2987                     uri->canon_uri[uri->canon_len] = val;
2988                 ++uri->canon_len;
2989
2990                 ptr += 2;
2991                 continue;
2992             }
2993         } else if(*ptr == '/' && is_file && (flags & Uri_CREATE_FILE_USE_DOS_PATH)) {
2994             /* Convert the '/' back to a '\\'. */
2995             if(!computeOnly)
2996                 uri->canon_uri[uri->canon_len] = '\\';
2997             ++uri->canon_len;
2998             do_default_action = FALSE;
2999         } else if(*ptr == '\\' && known_scheme) {
3000             if(!(is_file && (flags & Uri_CREATE_FILE_USE_DOS_PATH))) {
3001                 /* Convert '\\' into a '/'. */
3002                 if(!computeOnly)
3003                     uri->canon_uri[uri->canon_len] = '/';
3004                 ++uri->canon_len;
3005                 do_default_action = FALSE;
3006             }
3007         } else if(known_scheme && !is_res && !is_unreserved(*ptr) && !is_reserved(*ptr) &&
3008                   (!(flags & Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS) || is_file)) {
3009             if(!(is_file && (flags & Uri_CREATE_FILE_USE_DOS_PATH))) {
3010                 /* Escape the forbidden character. */
3011                 if(!computeOnly)
3012                     pct_encode_val(*ptr, uri->canon_uri+uri->canon_len);
3013                 uri->canon_len += 3;
3014                 do_default_action = FALSE;
3015             }
3016         }
3017
3018         if(do_default_action) {
3019             if(!computeOnly)
3020                 uri->canon_uri[uri->canon_len] = *ptr;
3021             ++uri->canon_len;
3022         }
3023     }
3024
3025     uri->path_len = uri->canon_len - uri->path_start;
3026
3027     /* Removing the dot segments only happens when it's not in
3028      * computeOnly mode and it's not a wildcard scheme. File schemes
3029      * with USE_DOS_PATH set don't get dot segments removed.
3030      */
3031     if(!(is_file && (flags & Uri_CREATE_FILE_USE_DOS_PATH)) &&
3032        data->scheme_type != URL_SCHEME_WILDCARD) {
3033         if(!(flags & Uri_CREATE_NO_CANONICALIZE) && !computeOnly) {
3034             /* Remove the dot segments (if any) and reset everything to the new
3035              * correct length.
3036              */
3037             DWORD new_len = remove_dot_segments(uri->canon_uri+uri->path_start, uri->path_len);
3038             uri->canon_len -= uri->path_len-new_len;
3039             uri->path_len = new_len;
3040         }
3041     }
3042
3043     if(!computeOnly)
3044         TRACE("Canonicalized path %s len=%d\n",
3045             debugstr_wn(uri->canon_uri+uri->path_start, uri->path_len),
3046             uri->path_len);
3047
3048     return TRUE;
3049 }
3050
3051 /* Attempts to canonicalize the path for an opaque URI.
3052  *
3053  * For known scheme types:
3054  *  1)  forbidden characters are percent encoded if
3055  *      NO_ENCODE_FORBIDDEN_CHARACTERS isn't set.
3056  *
3057  *  2)  Percent encoded, unreserved characters are decoded
3058  *      to their actual values, for known scheme types.
3059  *
3060  *  3)  '\\' are changed to '/' for known scheme types
3061  *      except for mailto schemes.
3062  *
3063  *  4)  For file schemes, if USE_DOS_PATH is set all '/'
3064  *      are converted to backslashes.
3065  *
3066  *  5)  For file schemes, if USE_DOS_PATH isn't set all '\'
3067  *      are converted to forward slashes.
3068  */
3069 static BOOL canonicalize_path_opaque(const parse_data *data, Uri *uri, DWORD flags, BOOL computeOnly) {
3070     const WCHAR *ptr;
3071     const BOOL known_scheme = data->scheme_type != URL_SCHEME_UNKNOWN;
3072     const BOOL is_file = data->scheme_type == URL_SCHEME_FILE;
3073
3074     if(!data->path) {
3075         uri->path_start = -1;
3076         uri->path_len = 0;
3077         return TRUE;
3078     }
3079
3080     uri->path_start = uri->canon_len;
3081
3082     /* Windows doesn't allow a "//" to appear after the scheme
3083      * of a URI, if it's an opaque URI.
3084      */
3085     if(data->scheme && *(data->path) == '/' && *(data->path+1) == '/') {
3086         /* So it inserts a "/." before the "//" if it exists. */
3087         if(!computeOnly) {
3088             uri->canon_uri[uri->canon_len] = '/';
3089             uri->canon_uri[uri->canon_len+1] = '.';
3090         }
3091
3092         uri->canon_len += 2;
3093     }
3094
3095     for(ptr = data->path; ptr < data->path+data->path_len; ++ptr) {
3096         BOOL do_default_action = TRUE;
3097
3098         if(*ptr == '%' && known_scheme) {
3099             WCHAR val = decode_pct_val(ptr);
3100
3101             if(is_unreserved(val)) {
3102                 if(!computeOnly)
3103                     uri->canon_uri[uri->canon_len] = val;
3104                 ++uri->canon_len;
3105
3106                 ptr += 2;
3107                 continue;
3108             }
3109         } else if(*ptr == '/' && is_file && (flags & Uri_CREATE_FILE_USE_DOS_PATH)) {
3110             if(!computeOnly)
3111                 uri->canon_uri[uri->canon_len] = '\\';
3112             ++uri->canon_len;
3113             do_default_action = FALSE;
3114         } else if(*ptr == '\\') {
3115             if(is_file && !(flags & Uri_CREATE_FILE_USE_DOS_PATH)) {
3116                 /* Convert to a '/'. */
3117                 if(!computeOnly)
3118                     uri->canon_uri[uri->canon_len] = '/';
3119                 ++uri->canon_len;
3120                 do_default_action = FALSE;
3121             }
3122         } else if(known_scheme && !is_unreserved(*ptr) && !is_reserved(*ptr) &&
3123                   !(flags & Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS)) {
3124             if(!(is_file && (flags & Uri_CREATE_FILE_USE_DOS_PATH))) {
3125                 if(!computeOnly)
3126                     pct_encode_val(*ptr, uri->canon_uri+uri->canon_len);
3127                 uri->canon_len += 3;
3128                 do_default_action = FALSE;
3129             }
3130         }
3131
3132         if(do_default_action) {
3133             if(!computeOnly)
3134                 uri->canon_uri[uri->canon_len] = *ptr;
3135             ++uri->canon_len;
3136         }
3137     }
3138
3139     if(data->scheme_type == URL_SCHEME_MK && !computeOnly && !(flags & Uri_CREATE_NO_CANONICALIZE)) {
3140         DWORD new_len = remove_dot_segments(uri->canon_uri + uri->path_start,
3141                                             uri->canon_len - uri->path_start);
3142         uri->canon_len = uri->path_start + new_len;
3143     }
3144
3145     uri->path_len = uri->canon_len - uri->path_start;
3146
3147     if(!computeOnly)
3148         TRACE("(%p %p %x %d): Canonicalized opaque URI path %s len=%d\n", data, uri, flags, computeOnly,
3149             debugstr_wn(uri->canon_uri+uri->path_start, uri->path_len), uri->path_len);
3150     return TRUE;
3151 }
3152
3153 /* Determines how the URI represented by the parse_data should be canonicalized.
3154  *
3155  * Essentially, if the parse_data represents an hierarchical URI then it calls
3156  * canonicalize_authority and the canonicalization functions for the path. If the
3157  * URI is opaque it canonicalizes the path of the URI.
3158  */
3159 static BOOL canonicalize_hierpart(const parse_data *data, Uri *uri, DWORD flags, BOOL computeOnly) {
3160     if(!data->is_opaque || (data->is_relative && (data->password || data->username))) {
3161         /* "//" is only added for non-wildcard scheme types.
3162          *
3163          * A "//" is only added to a relative URI if it has a
3164          * host or port component (this only happens if a IUriBuilder
3165          * is generating an IUri).
3166          */
3167         if((data->is_relative && (data->host || data->has_port)) ||
3168            (!data->is_relative && data->scheme_type != URL_SCHEME_WILDCARD)) {
3169             if(!computeOnly) {
3170                 INT pos = uri->canon_len;
3171
3172                 uri->canon_uri[pos] = '/';
3173                 uri->canon_uri[pos+1] = '/';
3174            }
3175            uri->canon_len += 2;
3176         }
3177
3178         if(!canonicalize_authority(data, uri, flags, computeOnly))
3179             return FALSE;
3180
3181         if(data->is_relative && (data->password || data->username)) {
3182             if(!canonicalize_path_opaque(data, uri, flags, computeOnly))
3183                 return FALSE;
3184         } else {
3185             if(!canonicalize_path_hierarchical(data, uri, flags, computeOnly))
3186                 return FALSE;
3187         }
3188     } else {
3189         /* Opaque URI's don't have an authority. */
3190         uri->userinfo_start = uri->userinfo_split = -1;
3191         uri->userinfo_len = 0;
3192         uri->host_start = -1;
3193         uri->host_len = 0;
3194         uri->host_type = Uri_HOST_UNKNOWN;
3195         uri->has_port = FALSE;
3196         uri->authority_start = -1;
3197         uri->authority_len = 0;
3198         uri->domain_offset = -1;
3199         uri->port_offset = -1;
3200
3201         if(is_hierarchical_scheme(data->scheme_type)) {
3202             DWORD i;
3203
3204             /* Absolute URIs aren't displayed for known scheme types
3205              * which should be hierarchical URIs.
3206              */
3207             uri->display_modifiers |= URI_DISPLAY_NO_ABSOLUTE_URI;
3208
3209             /* Windows also sets the port for these (if they have one). */
3210             for(i = 0; i < sizeof(default_ports)/sizeof(default_ports[0]); ++i) {
3211                 if(data->scheme_type == default_ports[i].scheme) {
3212                     uri->has_port = TRUE;
3213                     uri->port = default_ports[i].port;
3214                     break;
3215                 }
3216             }
3217         }
3218
3219         if(!canonicalize_path_opaque(data, uri, flags, computeOnly))
3220             return FALSE;
3221     }
3222
3223     if(uri->path_start > -1 && !computeOnly)
3224         /* Finding file extensions happens for both types of URIs. */
3225         uri->extension_offset = find_file_extension(uri->canon_uri+uri->path_start, uri->path_len);
3226     else
3227         uri->extension_offset = -1;
3228
3229     return TRUE;
3230 }
3231
3232 /* Attempts to canonicalize the query string of the URI.
3233  *
3234  * Things that happen:
3235  *  1)  For known scheme types forbidden characters
3236  *      are percent encoded, unless the NO_DECODE_EXTRA_INFO flag is set
3237  *      or NO_ENCODE_FORBIDDEN_CHARACTERS is set.
3238  *
3239  *  2)  For known scheme types, percent encoded, unreserved characters
3240  *      are decoded as long as the NO_DECODE_EXTRA_INFO flag isn't set.
3241  */
3242 static BOOL canonicalize_query(const parse_data *data, Uri *uri, DWORD flags, BOOL computeOnly) {
3243     const WCHAR *ptr, *end;
3244     const BOOL known_scheme = data->scheme_type != URL_SCHEME_UNKNOWN;
3245
3246     if(!data->query) {
3247         uri->query_start = -1;
3248         uri->query_len = 0;
3249         return TRUE;
3250     }
3251
3252     uri->query_start = uri->canon_len;
3253
3254     end = data->query+data->query_len;
3255     for(ptr = data->query; ptr < end; ++ptr) {
3256         if(*ptr == '%') {
3257             if(known_scheme && !(flags & Uri_CREATE_NO_DECODE_EXTRA_INFO)) {
3258                 WCHAR val = decode_pct_val(ptr);
3259                 if(is_unreserved(val)) {
3260                     if(!computeOnly)
3261                         uri->canon_uri[uri->canon_len] = val;
3262                     ++uri->canon_len;
3263
3264                     ptr += 2;
3265                     continue;
3266                 }
3267             }
3268         } else if(known_scheme && !is_unreserved(*ptr) && !is_reserved(*ptr)) {
3269             if(!(flags & Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS) &&
3270                !(flags & Uri_CREATE_NO_DECODE_EXTRA_INFO)) {
3271                 if(!computeOnly)
3272                     pct_encode_val(*ptr, uri->canon_uri+uri->canon_len);
3273                 uri->canon_len += 3;
3274                 continue;
3275             }
3276         }
3277
3278         if(!computeOnly)
3279             uri->canon_uri[uri->canon_len] = *ptr;
3280         ++uri->canon_len;
3281     }
3282
3283     uri->query_len = uri->canon_len - uri->query_start;
3284
3285     if(!computeOnly)
3286         TRACE("(%p %p %x %d): Canonicalized query string %s len=%d\n", data, uri, flags,
3287             computeOnly, debugstr_wn(uri->canon_uri+uri->query_start, uri->query_len),
3288             uri->query_len);
3289     return TRUE;
3290 }
3291
3292 static BOOL canonicalize_fragment(const parse_data *data, Uri *uri, DWORD flags, BOOL computeOnly) {
3293     const WCHAR *ptr, *end;
3294     const BOOL known_scheme = data->scheme_type != URL_SCHEME_UNKNOWN;
3295
3296     if(!data->fragment) {
3297         uri->fragment_start = -1;
3298         uri->fragment_len = 0;
3299         return TRUE;
3300     }
3301
3302     uri->fragment_start = uri->canon_len;
3303
3304     end = data->fragment + data->fragment_len;
3305     for(ptr = data->fragment; ptr < end; ++ptr) {
3306         if(*ptr == '%') {
3307             if(known_scheme && !(flags & Uri_CREATE_NO_DECODE_EXTRA_INFO)) {
3308                 WCHAR val = decode_pct_val(ptr);
3309                 if(is_unreserved(val)) {
3310                     if(!computeOnly)
3311                         uri->canon_uri[uri->canon_len] = val;
3312                     ++uri->canon_len;
3313
3314                     ptr += 2;
3315                     continue;
3316                 }
3317             }
3318         } else if(known_scheme && !is_unreserved(*ptr) && !is_reserved(*ptr)) {
3319             if(!(flags & Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS) &&
3320                !(flags & Uri_CREATE_NO_DECODE_EXTRA_INFO)) {
3321                 if(!computeOnly)
3322                     pct_encode_val(*ptr, uri->canon_uri+uri->canon_len);
3323                 uri->canon_len += 3;
3324                 continue;
3325             }
3326         }
3327
3328         if(!computeOnly)
3329             uri->canon_uri[uri->canon_len] = *ptr;
3330         ++uri->canon_len;
3331     }
3332
3333     uri->fragment_len = uri->canon_len - uri->fragment_start;
3334
3335     if(!computeOnly)
3336         TRACE("(%p %p %x %d): Canonicalized fragment %s len=%d\n", data, uri, flags,
3337             computeOnly, debugstr_wn(uri->canon_uri+uri->fragment_start, uri->fragment_len),
3338             uri->fragment_len);
3339     return TRUE;
3340 }
3341
3342 /* Canonicalizes the scheme information specified in the parse_data using the specified flags. */
3343 static BOOL canonicalize_scheme(const parse_data *data, Uri *uri, DWORD flags, BOOL computeOnly) {
3344     uri->scheme_start = -1;
3345     uri->scheme_len = 0;
3346
3347     if(!data->scheme) {
3348         /* The only type of URI that doesn't have to have a scheme is a relative
3349          * URI.
3350          */
3351         if(!data->is_relative) {
3352             FIXME("(%p %p %x): Unable to determine the scheme type of %s.\n", data,
3353                     uri, flags, debugstr_w(data->uri));
3354             return FALSE;
3355         }
3356     } else {
3357         if(!computeOnly) {
3358             DWORD i;
3359             INT pos = uri->canon_len;
3360
3361             for(i = 0; i < data->scheme_len; ++i) {
3362                 /* Scheme name must be lower case after canonicalization. */
3363                 uri->canon_uri[i + pos] = tolowerW(data->scheme[i]);
3364             }
3365
3366             uri->canon_uri[i + pos] = ':';
3367             uri->scheme_start = pos;
3368
3369             TRACE("(%p %p %x): Canonicalized scheme=%s, len=%d.\n", data, uri, flags,
3370                     debugstr_wn(uri->canon_uri,  uri->scheme_len), data->scheme_len);
3371         }
3372
3373         /* This happens in both computation modes. */
3374         uri->canon_len += data->scheme_len + 1;
3375         uri->scheme_len = data->scheme_len;
3376     }
3377     return TRUE;
3378 }
3379
3380 /* Compute's what the length of the URI specified by the parse_data will be
3381  * after canonicalization occurs using the specified flags.
3382  *
3383  * This function will return a non-zero value indicating the length of the canonicalized
3384  * URI, or -1 on error.
3385  */
3386 static int compute_canonicalized_length(const parse_data *data, DWORD flags) {
3387     Uri uri;
3388
3389     memset(&uri, 0, sizeof(Uri));
3390
3391     TRACE("(%p %x): Beginning to compute canonicalized length for URI %s\n", data, flags,
3392             debugstr_w(data->uri));
3393
3394     if(!canonicalize_scheme(data, &uri, flags, TRUE)) {
3395         ERR("(%p %x): Failed to compute URI scheme length.\n", data, flags);
3396         return -1;
3397     }
3398
3399     if(!canonicalize_hierpart(data, &uri, flags, TRUE)) {
3400         ERR("(%p %x): Failed to compute URI hierpart length.\n", data, flags);
3401         return -1;
3402     }
3403
3404     if(!canonicalize_query(data, &uri, flags, TRUE)) {
3405         ERR("(%p %x): Failed to compute query string length.\n", data, flags);
3406         return -1;
3407     }
3408
3409     if(!canonicalize_fragment(data, &uri, flags, TRUE)) {
3410         ERR("(%p %x): Failed to compute fragment length.\n", data, flags);
3411         return -1;
3412     }
3413
3414     TRACE("(%p %x): Finished computing canonicalized URI length. length=%d\n", data, flags, uri.canon_len);
3415
3416     return uri.canon_len;
3417 }
3418
3419 /* Canonicalizes the URI data specified in the parse_data, using the given flags. If the
3420  * canonicalization succeededs it will store all the canonicalization information
3421  * in the pointer to the Uri.
3422  *
3423  * To canonicalize a URI this function first computes what the length of the URI
3424  * specified by the parse_data will be. Once this is done it will then perfom the actual
3425  * canonicalization of the URI.
3426  */
3427 static HRESULT canonicalize_uri(const parse_data *data, Uri *uri, DWORD flags) {
3428     INT len;
3429
3430     uri->canon_uri = NULL;
3431     uri->canon_size = uri->canon_len = 0;
3432
3433     TRACE("(%p %p %x): beginning to canonicalize URI %s.\n", data, uri, flags, debugstr_w(data->uri));
3434
3435     /* First try to compute the length of the URI. */
3436     len = compute_canonicalized_length(data, flags);
3437     if(len == -1) {
3438         ERR("(%p %p %x): Could not compute the canonicalized length of %s.\n", data, uri, flags,
3439                 debugstr_w(data->uri));
3440         return E_INVALIDARG;
3441     }
3442
3443     uri->canon_uri = heap_alloc((len+1)*sizeof(WCHAR));
3444     if(!uri->canon_uri)
3445         return E_OUTOFMEMORY;
3446
3447     uri->canon_size = len;
3448     if(!canonicalize_scheme(data, uri, flags, FALSE)) {
3449         ERR("(%p %p %x): Unable to canonicalize the scheme of the URI.\n", data, uri, flags);
3450         return E_INVALIDARG;
3451     }
3452     uri->scheme_type = data->scheme_type;
3453
3454     if(!canonicalize_hierpart(data, uri, flags, FALSE)) {
3455         ERR("(%p %p %x): Unable to canonicalize the heirpart of the URI\n", data, uri, flags);
3456         return E_INVALIDARG;
3457     }
3458
3459     if(!canonicalize_query(data, uri, flags, FALSE)) {
3460         ERR("(%p %p %x): Unable to canonicalize query string of the URI.\n",
3461             data, uri, flags);
3462         return E_INVALIDARG;
3463     }
3464
3465     if(!canonicalize_fragment(data, uri, flags, FALSE)) {
3466         ERR("(%p %p %x): Unable to canonicalize fragment of the URI.\n",
3467             data, uri, flags);
3468         return E_INVALIDARG;
3469     }
3470
3471     /* There's a possibility we didn't use all the space we allocated
3472      * earlier.
3473      */
3474     if(uri->canon_len < uri->canon_size) {
3475         /* This happens if the URI is hierarchical and dot
3476          * segments were removed from it's path.
3477          */
3478         WCHAR *tmp = heap_realloc(uri->canon_uri, (uri->canon_len+1)*sizeof(WCHAR));
3479         if(!tmp)
3480             return E_OUTOFMEMORY;
3481
3482         uri->canon_uri = tmp;
3483         uri->canon_size = uri->canon_len;
3484     }
3485
3486     uri->canon_uri[uri->canon_len] = '\0';
3487     TRACE("(%p %p %x): finished canonicalizing the URI. uri=%s\n", data, uri, flags, debugstr_w(uri->canon_uri));
3488
3489     return S_OK;
3490 }
3491
3492 static HRESULT get_builder_component(LPWSTR *component, DWORD *component_len,
3493                                      LPCWSTR source, DWORD source_len,
3494                                      LPCWSTR *output, DWORD *output_len)
3495 {
3496     if(!output_len) {
3497         if(output)
3498             *output = NULL;
3499         return E_POINTER;
3500     }
3501
3502     if(!output) {
3503         *output_len = 0;
3504         return E_POINTER;
3505     }
3506
3507     if(!(*component) && source) {
3508         /* Allocate 'component', and copy the contents from 'source'
3509          * into the new allocation.
3510          */
3511         *component = heap_alloc((source_len+1)*sizeof(WCHAR));
3512         if(!(*component))
3513             return E_OUTOFMEMORY;
3514
3515         memcpy(*component, source, source_len*sizeof(WCHAR));
3516         (*component)[source_len] = '\0';
3517         *component_len = source_len;
3518     }
3519
3520     *output = *component;
3521     *output_len = *component_len;
3522     return *output ? S_OK : S_FALSE;
3523 }
3524
3525 /* Allocates 'component' and copies the string from 'new_value' into 'component'.
3526  * If 'prefix' is set and 'new_value' isn't NULL, then it checks if 'new_value'
3527  * starts with 'prefix'. If it doesn't then 'prefix' is prepended to 'component'.
3528  *
3529  * If everything is successful, then will set 'success_flag' in 'flags'.
3530  */
3531 static HRESULT set_builder_component(LPWSTR *component, DWORD *component_len, LPCWSTR new_value,
3532                                      WCHAR prefix, DWORD *flags, DWORD success_flag)
3533 {
3534     heap_free(*component);
3535
3536     if(!new_value) {
3537         *component = NULL;
3538         *component_len = 0;
3539     } else {
3540         BOOL add_prefix = FALSE;
3541         DWORD len = lstrlenW(new_value);
3542         DWORD pos = 0;
3543
3544         if(prefix && *new_value != prefix) {
3545             add_prefix = TRUE;
3546             *component = heap_alloc((len+2)*sizeof(WCHAR));
3547         } else
3548             *component = heap_alloc((len+1)*sizeof(WCHAR));
3549
3550         if(!(*component))
3551             return E_OUTOFMEMORY;
3552
3553         if(add_prefix)
3554             (*component)[pos++] = prefix;
3555
3556         memcpy(*component+pos, new_value, (len+1)*sizeof(WCHAR));
3557         *component_len = len+pos;
3558     }
3559
3560     *flags |= success_flag;
3561     return S_OK;
3562 }
3563
3564 static void reset_builder(UriBuilder *builder) {
3565     if(builder->uri)
3566         IUri_Release(&builder->uri->IUri_iface);
3567     builder->uri = NULL;
3568
3569     heap_free(builder->fragment);
3570     builder->fragment = NULL;
3571     builder->fragment_len = 0;
3572
3573     heap_free(builder->host);
3574     builder->host = NULL;
3575     builder->host_len = 0;
3576
3577     heap_free(builder->password);
3578     builder->password = NULL;
3579     builder->password_len = 0;
3580
3581     heap_free(builder->path);
3582     builder->path = NULL;
3583     builder->path_len = 0;
3584
3585     heap_free(builder->query);
3586     builder->query = NULL;
3587     builder->query_len = 0;
3588
3589     heap_free(builder->scheme);
3590     builder->scheme = NULL;
3591     builder->scheme_len = 0;
3592
3593     heap_free(builder->username);
3594     builder->username = NULL;
3595     builder->username_len = 0;
3596
3597     builder->has_port = FALSE;
3598     builder->port = 0;
3599     builder->modified_props = 0;
3600 }
3601
3602 static HRESULT validate_scheme_name(const UriBuilder *builder, parse_data *data, DWORD flags) {
3603     const WCHAR *component;
3604     const WCHAR *ptr;
3605     const WCHAR **pptr;
3606     DWORD expected_len;
3607
3608     if(builder->scheme) {
3609         ptr = builder->scheme;
3610         expected_len = builder->scheme_len;
3611     } else if(builder->uri && builder->uri->scheme_start > -1) {
3612         ptr = builder->uri->canon_uri+builder->uri->scheme_start;
3613         expected_len = builder->uri->scheme_len;
3614     } else {
3615         static const WCHAR nullW[] = {0};
3616         ptr = nullW;
3617         expected_len = 0;
3618     }
3619
3620     component = ptr;
3621     pptr = &ptr;
3622     if(parse_scheme(pptr, data, flags, ALLOW_NULL_TERM_SCHEME) &&
3623        data->scheme_len == expected_len) {
3624         if(data->scheme)
3625             TRACE("(%p %p %x): Found valid scheme component %s len=%d.\n", builder, data, flags,
3626                debugstr_wn(data->scheme, data->scheme_len), data->scheme_len);
3627     } else {
3628         TRACE("(%p %p %x): Invalid scheme component found %s.\n", builder, data, flags,
3629             debugstr_wn(component, expected_len));
3630         return INET_E_INVALID_URL;
3631    }
3632
3633     return S_OK;
3634 }
3635
3636 static HRESULT validate_username(const UriBuilder *builder, parse_data *data, DWORD flags) {
3637     const WCHAR *ptr;
3638     const WCHAR **pptr;
3639     DWORD expected_len;
3640
3641     if(builder->username) {
3642         ptr = builder->username;
3643         expected_len = builder->username_len;
3644     } else if(!(builder->modified_props & Uri_HAS_USER_NAME) && builder->uri &&
3645               builder->uri->userinfo_start > -1 && builder->uri->userinfo_split != 0) {
3646         /* Just use the username from the base Uri. */
3647         data->username = builder->uri->canon_uri+builder->uri->userinfo_start;
3648         data->username_len = (builder->uri->userinfo_split > -1) ?
3649                                         builder->uri->userinfo_split : builder->uri->userinfo_len;
3650         ptr = NULL;
3651     } else {
3652         ptr = NULL;
3653         expected_len = 0;
3654     }
3655
3656     if(ptr) {
3657         const WCHAR *component = ptr;
3658         pptr = &ptr;
3659         if(parse_username(pptr, data, flags, ALLOW_NULL_TERM_USER_NAME) &&
3660            data->username_len == expected_len)
3661             TRACE("(%p %p %x): Found valid username component %s len=%d.\n", builder, data, flags,
3662                 debugstr_wn(data->username, data->username_len), data->username_len);
3663         else {
3664             TRACE("(%p %p %x): Invalid username component found %s.\n", builder, data, flags,
3665                 debugstr_wn(component, expected_len));
3666             return INET_E_INVALID_URL;
3667         }
3668     }
3669
3670     return S_OK;
3671 }
3672
3673 static HRESULT validate_password(const UriBuilder *builder, parse_data *data, DWORD flags) {
3674     const WCHAR *ptr;
3675     const WCHAR **pptr;
3676     DWORD expected_len;
3677
3678     if(builder->password) {
3679         ptr = builder->password;
3680         expected_len = builder->password_len;
3681     } else if(!(builder->modified_props & Uri_HAS_PASSWORD) && builder->uri &&
3682               builder->uri->userinfo_split > -1) {
3683         data->password = builder->uri->canon_uri+builder->uri->userinfo_start+builder->uri->userinfo_split+1;
3684         data->password_len = builder->uri->userinfo_len-builder->uri->userinfo_split-1;
3685         ptr = NULL;
3686     } else {
3687         ptr = NULL;
3688         expected_len = 0;
3689     }
3690
3691     if(ptr) {
3692         const WCHAR *component = ptr;
3693         pptr = &ptr;
3694         if(parse_password(pptr, data, flags, ALLOW_NULL_TERM_PASSWORD) &&
3695            data->password_len == expected_len)
3696             TRACE("(%p %p %x): Found valid password component %s len=%d.\n", builder, data, flags,
3697                 debugstr_wn(data->password, data->password_len), data->password_len);
3698         else {
3699             TRACE("(%p %p %x): Invalid password component found %s.\n", builder, data, flags,
3700                 debugstr_wn(component, expected_len));
3701             return INET_E_INVALID_URL;
3702         }
3703     }
3704
3705     return S_OK;
3706 }
3707
3708 static HRESULT validate_userinfo(const UriBuilder *builder, parse_data *data, DWORD flags) {
3709     HRESULT hr;
3710
3711     hr = validate_username(builder, data, flags);
3712     if(FAILED(hr))
3713         return hr;
3714
3715     hr = validate_password(builder, data, flags);
3716     if(FAILED(hr))
3717         return hr;
3718
3719     return S_OK;
3720 }
3721
3722 static HRESULT validate_host(const UriBuilder *builder, parse_data *data, DWORD flags) {
3723     const WCHAR *ptr;
3724     const WCHAR **pptr;
3725     DWORD expected_len;
3726
3727     if(builder->host) {
3728         ptr = builder->host;
3729         expected_len = builder->host_len;
3730     } else if(!(builder->modified_props & Uri_HAS_HOST) && builder->uri && builder->uri->host_start > -1) {
3731         ptr = builder->uri->canon_uri + builder->uri->host_start;
3732         expected_len = builder->uri->host_len;
3733     } else
3734         ptr = NULL;
3735
3736     if(ptr) {
3737         const WCHAR *component = ptr;
3738         DWORD extras = ALLOW_BRACKETLESS_IP_LITERAL|IGNORE_PORT_DELIMITER|SKIP_IP_FUTURE_CHECK;
3739         pptr = &ptr;
3740
3741         if(parse_host(pptr, data, flags, extras) && data->host_len == expected_len)
3742             TRACE("(%p %p %x): Found valid host name %s len=%d type=%d.\n", builder, data, flags,
3743                 debugstr_wn(data->host, data->host_len), data->host_len, data->host_type);
3744         else {
3745             TRACE("(%p %p %x): Invalid host name found %s.\n", builder, data, flags,
3746                 debugstr_wn(component, expected_len));
3747             return INET_E_INVALID_URL;
3748         }
3749     }
3750
3751     return S_OK;
3752 }
3753
3754 static void setup_port(const UriBuilder *builder, parse_data *data, DWORD flags) {
3755     if(builder->modified_props & Uri_HAS_PORT) {
3756         if(builder->has_port) {
3757             data->has_port = TRUE;
3758             data->port_value = builder->port;
3759         }
3760     } else if(builder->uri && builder->uri->has_port) {
3761         data->has_port = TRUE;
3762         data->port_value = builder->uri->port;
3763     }
3764
3765     if(data->has_port)
3766         TRACE("(%p %p %x): Using %u as port for IUri.\n", builder, data, flags, data->port_value);
3767 }
3768
3769 static HRESULT validate_path(const UriBuilder *builder, parse_data *data, DWORD flags) {
3770     const WCHAR *ptr = NULL;
3771     const WCHAR *component;
3772     const WCHAR **pptr;
3773     DWORD expected_len;
3774     BOOL check_len = TRUE;
3775     BOOL valid = FALSE;
3776
3777     if(builder->path) {
3778         ptr = builder->path;
3779         expected_len = builder->path_len;
3780     } else if(!(builder->modified_props & Uri_HAS_PATH) &&
3781               builder->uri && builder->uri->path_start > -1) {
3782         ptr = builder->uri->canon_uri+builder->uri->path_start;
3783         expected_len = builder->uri->path_len;
3784     } else {
3785         static const WCHAR nullW[] = {0};
3786         ptr = nullW;
3787         check_len = FALSE;
3788         expected_len = -1;
3789     }
3790
3791     component = ptr;
3792     pptr = &ptr;
3793
3794     /* How the path is validated depends on what type of
3795      * URI it is.
3796      */
3797     valid = data->is_opaque ?
3798         parse_path_opaque(pptr, data, flags) : parse_path_hierarchical(pptr, data, flags);
3799
3800     if(!valid || (check_len && expected_len != data->path_len)) {
3801         TRACE("(%p %p %x): Invalid path component %s.\n", builder, data, flags,
3802             debugstr_wn(component, expected_len) );
3803         return INET_E_INVALID_URL;
3804     }
3805
3806     TRACE("(%p %p %x): Valid path component %s len=%d.\n", builder, data, flags,
3807         debugstr_wn(data->path, data->path_len), data->path_len);
3808
3809     return S_OK;
3810 }
3811
3812 static HRESULT validate_query(const UriBuilder *builder, parse_data *data, DWORD flags) {
3813     const WCHAR *ptr = NULL;
3814     const WCHAR **pptr;
3815     DWORD expected_len;
3816
3817     if(builder->query) {
3818         ptr = builder->query;
3819         expected_len = builder->query_len;
3820     } else if(!(builder->modified_props & Uri_HAS_QUERY) && builder->uri &&
3821               builder->uri->query_start > -1) {
3822         ptr = builder->uri->canon_uri+builder->uri->query_start;
3823         expected_len = builder->uri->query_len;
3824     }
3825
3826     if(ptr) {
3827         const WCHAR *component = ptr;
3828         pptr = &ptr;
3829
3830         if(parse_query(pptr, data, flags) && expected_len == data->query_len)
3831             TRACE("(%p %p %x): Valid query component %s len=%d.\n", builder, data, flags,
3832                 debugstr_wn(data->query, data->query_len), data->query_len);
3833         else {
3834             TRACE("(%p %p %x): Invalid query component %s.\n", builder, data, flags,
3835                 debugstr_wn(component, expected_len));
3836             return INET_E_INVALID_URL;
3837         }
3838     }
3839
3840     return S_OK;
3841 }
3842
3843 static HRESULT validate_fragment(const UriBuilder *builder, parse_data *data, DWORD flags) {
3844     const WCHAR *ptr = NULL;
3845     const WCHAR **pptr;
3846     DWORD expected_len;
3847
3848     if(builder->fragment) {
3849         ptr = builder->fragment;
3850         expected_len = builder->fragment_len;
3851     } else if(!(builder->modified_props & Uri_HAS_FRAGMENT) && builder->uri &&
3852               builder->uri->fragment_start > -1) {
3853         ptr = builder->uri->canon_uri+builder->uri->fragment_start;
3854         expected_len = builder->uri->fragment_len;
3855     }
3856
3857     if(ptr) {
3858         const WCHAR *component = ptr;
3859         pptr = &ptr;
3860
3861         if(parse_fragment(pptr, data, flags) && expected_len == data->fragment_len)
3862             TRACE("(%p %p %x): Valid fragment component %s len=%d.\n", builder, data, flags,
3863                 debugstr_wn(data->fragment, data->fragment_len), data->fragment_len);
3864         else {
3865             TRACE("(%p %p %x): Invalid fragment component %s.\n", builder, data, flags,
3866                 debugstr_wn(component, expected_len));
3867             return INET_E_INVALID_URL;
3868         }
3869     }
3870
3871     return S_OK;
3872 }
3873
3874 static HRESULT validate_components(const UriBuilder *builder, parse_data *data, DWORD flags) {
3875     HRESULT hr;
3876
3877     memset(data, 0, sizeof(parse_data));
3878
3879     TRACE("(%p %p %x): Beginning to validate builder components.\n", builder, data, flags);
3880
3881     hr = validate_scheme_name(builder, data, flags);
3882     if(FAILED(hr))
3883         return hr;
3884
3885     /* Extra validation for file schemes. */
3886     if(data->scheme_type == URL_SCHEME_FILE) {
3887         if((builder->password || (builder->uri && builder->uri->userinfo_split > -1)) ||
3888            (builder->username || (builder->uri && builder->uri->userinfo_start > -1))) {
3889             TRACE("(%p %p %x): File schemes can't contain a username or password.\n",
3890                 builder, data, flags);
3891             return INET_E_INVALID_URL;
3892         }
3893     }
3894
3895     hr = validate_userinfo(builder, data, flags);
3896     if(FAILED(hr))
3897         return hr;
3898
3899     hr = validate_host(builder, data, flags);
3900     if(FAILED(hr))
3901         return hr;
3902
3903     setup_port(builder, data, flags);
3904
3905     /* The URI is opaque if it doesn't have an authority component. */
3906     if(!data->is_relative)
3907         data->is_opaque = !data->username && !data->password && !data->host && !data->has_port;
3908     else
3909         data->is_opaque = !data->host && !data->has_port;
3910
3911     hr = validate_path(builder, data, flags);
3912     if(FAILED(hr))
3913         return hr;
3914
3915     hr = validate_query(builder, data, flags);
3916     if(FAILED(hr))
3917         return hr;
3918
3919     hr = validate_fragment(builder, data, flags);
3920     if(FAILED(hr))
3921         return hr;
3922
3923     TRACE("(%p %p %x): Finished validating builder components.\n", builder, data, flags);
3924
3925     return S_OK;
3926 }
3927
3928 static void convert_to_dos_path(const WCHAR *path, DWORD path_len,
3929                                 WCHAR *output, DWORD *output_len)
3930 {
3931     const WCHAR *ptr = path;
3932
3933     if(path_len > 3 && *ptr == '/' && is_drive_path(path+1))
3934         /* Skip over the leading / before the drive path. */
3935         ++ptr;
3936
3937     for(; ptr < path+path_len; ++ptr) {
3938         if(*ptr == '/') {
3939             if(output)
3940                 *output++ = '\\';
3941             (*output_len)++;
3942         } else {
3943             if(output)
3944                 *output++ = *ptr;
3945             (*output_len)++;
3946         }
3947     }
3948 }
3949
3950 /* Generates a raw uri string using the parse_data. */
3951 static DWORD generate_raw_uri(const parse_data *data, BSTR uri, DWORD flags) {
3952     DWORD length = 0;
3953
3954     if(data->scheme) {
3955         if(uri) {
3956             memcpy(uri, data->scheme, data->scheme_len*sizeof(WCHAR));
3957             uri[data->scheme_len] = ':';
3958         }
3959         length += data->scheme_len+1;
3960     }
3961
3962     if(!data->is_opaque) {
3963         /* For the "//" which appears before the authority component. */
3964         if(uri) {
3965             uri[length] = '/';
3966             uri[length+1] = '/';
3967         }
3968         length += 2;
3969
3970         /* Check if we need to add the "\\" before the host name
3971          * of a UNC server name in a DOS path.
3972          */
3973         if(flags & RAW_URI_CONVERT_TO_DOS_PATH &&
3974            data->scheme_type == URL_SCHEME_FILE && data->host) {
3975             if(uri) {
3976                 uri[length] = '\\';
3977                 uri[length+1] = '\\';
3978             }
3979             length += 2;
3980         }
3981     }
3982
3983     if(data->username) {
3984         if(uri)
3985             memcpy(uri+length, data->username, data->username_len*sizeof(WCHAR));
3986         length += data->username_len;
3987     }
3988
3989     if(data->password) {
3990         if(uri) {
3991             uri[length] = ':';
3992             memcpy(uri+length+1, data->password, data->password_len*sizeof(WCHAR));
3993         }
3994         length += data->password_len+1;
3995     }
3996
3997     if(data->password || data->username) {
3998         if(uri)
3999             uri[length] = '@';
4000         ++length;
4001     }
4002
4003     if(data->host) {
4004         /* IPv6 addresses get the brackets added around them if they don't already
4005          * have them.
4006          */
4007         const BOOL add_brackets = data->host_type == Uri_HOST_IPV6 && *(data->host) != '[';
4008         if(add_brackets) {
4009             if(uri)
4010                 uri[length] = '[';
4011             ++length;
4012         }
4013
4014         if(uri)
4015             memcpy(uri+length, data->host, data->host_len*sizeof(WCHAR));
4016         length += data->host_len;
4017
4018         if(add_brackets) {
4019             if(uri)
4020                 uri[length] = ']';
4021             length++;
4022         }
4023     }
4024
4025     if(data->has_port) {
4026         /* The port isn't included in the raw uri if it's the default
4027          * port for the scheme type.
4028          */
4029         DWORD i;
4030         BOOL is_default = FALSE;
4031
4032         for(i = 0; i < sizeof(default_ports)/sizeof(default_ports[0]); ++i) {
4033             if(data->scheme_type == default_ports[i].scheme &&
4034                data->port_value == default_ports[i].port)
4035                 is_default = TRUE;
4036         }
4037
4038         if(!is_default || flags & RAW_URI_FORCE_PORT_DISP) {
4039             if(uri)
4040                 uri[length] = ':';
4041             ++length;
4042
4043             if(uri)
4044                 length += ui2str(uri+length, data->port_value);
4045             else
4046                 length += ui2str(NULL, data->port_value);
4047         }
4048     }
4049
4050     /* Check if a '/' should be added before the path for hierarchical URIs. */
4051     if(!data->is_opaque && data->path && *(data->path) != '/') {
4052         if(uri)
4053             uri[length] = '/';
4054         ++length;
4055     }
4056
4057     if(data->path) {
4058         if(!data->is_opaque && data->scheme_type == URL_SCHEME_FILE &&
4059            flags & RAW_URI_CONVERT_TO_DOS_PATH) {
4060             DWORD len = 0;
4061
4062             if(uri)
4063                 convert_to_dos_path(data->path, data->path_len, uri+length, &len);
4064             else
4065                 convert_to_dos_path(data->path, data->path_len, NULL, &len);
4066
4067             length += len;
4068         } else {
4069             if(uri)
4070                 memcpy(uri+length, data->path, data->path_len*sizeof(WCHAR));
4071             length += data->path_len;
4072         }
4073     }
4074
4075     if(data->query) {
4076         if(uri)
4077             memcpy(uri+length, data->query, data->query_len*sizeof(WCHAR));
4078         length += data->query_len;
4079     }
4080
4081     if(data->fragment) {
4082         if(uri)
4083             memcpy(uri+length, data->fragment, data->fragment_len*sizeof(WCHAR));
4084         length += data->fragment_len;
4085     }
4086
4087     if(uri)
4088         TRACE("(%p %p): Generated raw uri=%s len=%d\n", data, uri, debugstr_wn(uri, length), length);
4089     else
4090         TRACE("(%p %p): Computed raw uri len=%d\n", data, uri, length);
4091
4092     return length;
4093 }
4094
4095 static HRESULT generate_uri(const UriBuilder *builder, const parse_data *data, Uri *uri, DWORD flags) {
4096     HRESULT hr;
4097     DWORD length = generate_raw_uri(data, NULL, 0);
4098     uri->raw_uri = SysAllocStringLen(NULL, length);
4099     if(!uri->raw_uri)
4100         return E_OUTOFMEMORY;
4101
4102     generate_raw_uri(data, uri->raw_uri, 0);
4103
4104     hr = canonicalize_uri(data, uri, flags);
4105     if(FAILED(hr)) {
4106         if(hr == E_INVALIDARG)
4107             return INET_E_INVALID_URL;
4108         return hr;
4109     }
4110
4111     uri->create_flags = flags;
4112     return S_OK;
4113 }
4114
4115 static inline Uri* impl_from_IUri(IUri *iface)
4116 {
4117     return CONTAINING_RECORD(iface, Uri, IUri_iface);
4118 }
4119
4120 static inline void destory_uri_obj(Uri *This)
4121 {
4122     SysFreeString(This->raw_uri);
4123     heap_free(This->canon_uri);
4124     heap_free(This);
4125 }
4126
4127 static HRESULT WINAPI Uri_QueryInterface(IUri *iface, REFIID riid, void **ppv)
4128 {
4129     Uri *This = impl_from_IUri(iface);
4130
4131     if(IsEqualGUID(&IID_IUnknown, riid)) {
4132         TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
4133         *ppv = &This->IUri_iface;
4134     }else if(IsEqualGUID(&IID_IUri, riid)) {
4135         TRACE("(%p)->(IID_IUri %p)\n", This, ppv);
4136         *ppv = &This->IUri_iface;
4137     }else if(IsEqualGUID(&IID_IUriBuilderFactory, riid)) {
4138         TRACE("(%p)->(IID_IUriBuilderFactory %p)\n", This, riid);
4139         *ppv = &This->IUriBuilderFactory_iface;
4140     }else if(IsEqualGUID(&IID_IUriObj, riid)) {
4141         TRACE("(%p)->(IID_IUriObj %p)\n", This, ppv);
4142         *ppv = This;
4143         return S_OK;
4144     }else {
4145         TRACE("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppv);
4146         *ppv = NULL;
4147         return E_NOINTERFACE;
4148     }
4149
4150     IUnknown_AddRef((IUnknown*)*ppv);
4151     return S_OK;
4152 }
4153
4154 static ULONG WINAPI Uri_AddRef(IUri *iface)
4155 {
4156     Uri *This = impl_from_IUri(iface);
4157     LONG ref = InterlockedIncrement(&This->ref);
4158
4159     TRACE("(%p) ref=%d\n", This, ref);
4160
4161     return ref;
4162 }
4163
4164 static ULONG WINAPI Uri_Release(IUri *iface)
4165 {
4166     Uri *This = impl_from_IUri(iface);
4167     LONG ref = InterlockedDecrement(&This->ref);
4168
4169     TRACE("(%p) ref=%d\n", This, ref);
4170
4171     if(!ref)
4172         destory_uri_obj(This);
4173
4174     return ref;
4175 }
4176
4177 static HRESULT WINAPI Uri_GetPropertyBSTR(IUri *iface, Uri_PROPERTY uriProp, BSTR *pbstrProperty, DWORD dwFlags)
4178 {
4179     Uri *This = impl_from_IUri(iface);
4180     HRESULT hres;
4181     TRACE("(%p)->(%d %p %x)\n", This, uriProp, pbstrProperty, dwFlags);
4182
4183     if(!pbstrProperty)
4184         return E_POINTER;
4185
4186     if(uriProp > Uri_PROPERTY_STRING_LAST) {
4187         /* Windows allocates an empty BSTR for invalid Uri_PROPERTY's. */
4188         *pbstrProperty = SysAllocStringLen(NULL, 0);
4189         if(!(*pbstrProperty))
4190             return E_OUTOFMEMORY;
4191
4192         /* It only returns S_FALSE for the ZONE property... */
4193         if(uriProp == Uri_PROPERTY_ZONE)
4194             return S_FALSE;
4195         else
4196             return S_OK;
4197     }
4198
4199     /* Don't have support for flags yet. */
4200     if(dwFlags) {
4201         FIXME("(%p)->(%d %p %x)\n", This, uriProp, pbstrProperty, dwFlags);
4202         return E_NOTIMPL;
4203     }
4204
4205     switch(uriProp) {
4206     case Uri_PROPERTY_ABSOLUTE_URI:
4207         if(This->display_modifiers & URI_DISPLAY_NO_ABSOLUTE_URI) {
4208             *pbstrProperty = SysAllocStringLen(NULL, 0);
4209             hres = S_FALSE;
4210         } else {
4211             if(This->scheme_type != URL_SCHEME_UNKNOWN && This->userinfo_start > -1) {
4212                 if(This->userinfo_len == 0) {
4213                     /* Don't include the '@' after the userinfo component. */
4214                     *pbstrProperty = SysAllocStringLen(NULL, This->canon_len-1);
4215                     hres = S_OK;
4216                     if(*pbstrProperty) {
4217                         /* Copy everything before it. */
4218                         memcpy(*pbstrProperty, This->canon_uri, This->userinfo_start*sizeof(WCHAR));
4219
4220                         /* And everything after it. */
4221                         memcpy(*pbstrProperty+This->userinfo_start, This->canon_uri+This->userinfo_start+1,
4222                                (This->canon_len-This->userinfo_start-1)*sizeof(WCHAR));
4223                     }
4224                 } else if(This->userinfo_split == 0 && This->userinfo_len == 1) {
4225                     /* Don't include the ":@" */
4226                     *pbstrProperty = SysAllocStringLen(NULL, This->canon_len-2);
4227                     hres = S_OK;
4228                     if(*pbstrProperty) {
4229                         memcpy(*pbstrProperty, This->canon_uri, This->userinfo_start*sizeof(WCHAR));
4230                         memcpy(*pbstrProperty+This->userinfo_start, This->canon_uri+This->userinfo_start+2,
4231                                (This->canon_len-This->userinfo_start-2)*sizeof(WCHAR));
4232                     }
4233                 } else {
4234                     *pbstrProperty = SysAllocString(This->canon_uri);
4235                     hres = S_OK;
4236                 }
4237             } else {
4238                 *pbstrProperty = SysAllocString(This->canon_uri);
4239                 hres = S_OK;
4240             }
4241         }
4242
4243         if(!(*pbstrProperty))
4244             hres = E_OUTOFMEMORY;
4245
4246         break;
4247     case Uri_PROPERTY_AUTHORITY:
4248         if(This->authority_start > -1) {
4249             if(This->port_offset > -1 && is_default_port(This->scheme_type, This->port) &&
4250                This->display_modifiers & URI_DISPLAY_NO_DEFAULT_PORT_AUTH)
4251                 /* Don't include the port in the authority component. */
4252                 *pbstrProperty = SysAllocStringLen(This->canon_uri+This->authority_start, This->port_offset);
4253             else
4254                 *pbstrProperty = SysAllocStringLen(This->canon_uri+This->authority_start, This->authority_len);
4255             hres = S_OK;
4256         } else {
4257             *pbstrProperty = SysAllocStringLen(NULL, 0);
4258             hres = S_FALSE;
4259         }
4260
4261         if(!(*pbstrProperty))
4262             hres = E_OUTOFMEMORY;
4263
4264         break;
4265     case Uri_PROPERTY_DISPLAY_URI:
4266         /* The Display URI contains everything except for the userinfo for known
4267          * scheme types.
4268          */
4269         if(This->scheme_type != URL_SCHEME_UNKNOWN && This->userinfo_start > -1) {
4270             *pbstrProperty = SysAllocStringLen(NULL, This->canon_len-This->userinfo_len);
4271
4272             if(*pbstrProperty) {
4273                 /* Copy everything before the userinfo over. */
4274                 memcpy(*pbstrProperty, This->canon_uri, This->userinfo_start*sizeof(WCHAR));
4275                 /* Copy everything after the userinfo over. */
4276                 memcpy(*pbstrProperty+This->userinfo_start,
4277                    This->canon_uri+This->userinfo_start+This->userinfo_len+1,
4278                    (This->canon_len-(This->userinfo_start+This->userinfo_len+1))*sizeof(WCHAR));
4279             }
4280         } else
4281             *pbstrProperty = SysAllocString(This->canon_uri);
4282
4283         if(!(*pbstrProperty))
4284             hres = E_OUTOFMEMORY;
4285         else
4286             hres = S_OK;
4287
4288         break;
4289     case Uri_PROPERTY_DOMAIN:
4290         if(This->domain_offset > -1) {
4291             *pbstrProperty = SysAllocStringLen(This->canon_uri+This->host_start+This->domain_offset,
4292                                                This->host_len-This->domain_offset);
4293             hres = S_OK;
4294         } else {
4295             *pbstrProperty = SysAllocStringLen(NULL, 0);
4296             hres = S_FALSE;
4297         }
4298
4299         if(!(*pbstrProperty))
4300             hres = E_OUTOFMEMORY;
4301
4302         break;
4303     case Uri_PROPERTY_EXTENSION:
4304         if(This->extension_offset > -1) {
4305             *pbstrProperty = SysAllocStringLen(This->canon_uri+This->path_start+This->extension_offset,
4306                                                This->path_len-This->extension_offset);
4307             hres = S_OK;
4308         } else {
4309             *pbstrProperty = SysAllocStringLen(NULL, 0);
4310             hres = S_FALSE;
4311         }
4312
4313         if(!(*pbstrProperty))
4314             hres = E_OUTOFMEMORY;
4315
4316         break;
4317     case Uri_PROPERTY_FRAGMENT:
4318         if(This->fragment_start > -1) {
4319             *pbstrProperty = SysAllocStringLen(This->canon_uri+This->fragment_start, This->fragment_len);
4320             hres = S_OK;
4321         } else {
4322             *pbstrProperty = SysAllocStringLen(NULL, 0);
4323             hres = S_FALSE;
4324         }
4325
4326         if(!(*pbstrProperty))
4327             hres = E_OUTOFMEMORY;
4328
4329         break;
4330     case Uri_PROPERTY_HOST:
4331         if(This->host_start > -1) {
4332             /* The '[' and ']' aren't included for IPv6 addresses. */
4333             if(This->host_type == Uri_HOST_IPV6)
4334                 *pbstrProperty = SysAllocStringLen(This->canon_uri+This->host_start+1, This->host_len-2);
4335             else
4336                 *pbstrProperty = SysAllocStringLen(This->canon_uri+This->host_start, This->host_len);
4337
4338             hres = S_OK;
4339         } else {
4340             *pbstrProperty = SysAllocStringLen(NULL, 0);
4341             hres = S_FALSE;
4342         }
4343
4344         if(!(*pbstrProperty))
4345             hres = E_OUTOFMEMORY;
4346
4347         break;
4348     case Uri_PROPERTY_PASSWORD:
4349         if(This->userinfo_split > -1) {
4350             *pbstrProperty = SysAllocStringLen(
4351                 This->canon_uri+This->userinfo_start+This->userinfo_split+1,
4352                 This->userinfo_len-This->userinfo_split-1);
4353             hres = S_OK;
4354         } else {
4355             *pbstrProperty = SysAllocStringLen(NULL, 0);
4356             hres = S_FALSE;
4357         }
4358
4359         if(!(*pbstrProperty))
4360             return E_OUTOFMEMORY;
4361
4362         break;
4363     case Uri_PROPERTY_PATH:
4364         if(This->path_start > -1) {
4365             *pbstrProperty = SysAllocStringLen(This->canon_uri+This->path_start, This->path_len);
4366             hres = S_OK;
4367         } else {
4368             *pbstrProperty = SysAllocStringLen(NULL, 0);
4369             hres = S_FALSE;
4370         }
4371
4372         if(!(*pbstrProperty))
4373             hres = E_OUTOFMEMORY;
4374
4375         break;
4376     case Uri_PROPERTY_PATH_AND_QUERY:
4377         if(This->path_start > -1) {
4378             *pbstrProperty = SysAllocStringLen(This->canon_uri+This->path_start, This->path_len+This->query_len);
4379             hres = S_OK;
4380         } else if(This->query_start > -1) {
4381             *pbstrProperty = SysAllocStringLen(This->canon_uri+This->query_start, This->query_len);
4382             hres = S_OK;
4383         } else {
4384             *pbstrProperty = SysAllocStringLen(NULL, 0);
4385             hres = S_FALSE;
4386         }
4387
4388         if(!(*pbstrProperty))
4389             hres = E_OUTOFMEMORY;
4390
4391         break;
4392     case Uri_PROPERTY_QUERY:
4393         if(This->query_start > -1) {
4394             *pbstrProperty = SysAllocStringLen(This->canon_uri+This->query_start, This->query_len);
4395             hres = S_OK;
4396         } else {
4397             *pbstrProperty = SysAllocStringLen(NULL, 0);
4398             hres = S_FALSE;
4399         }
4400
4401         if(!(*pbstrProperty))
4402             hres = E_OUTOFMEMORY;
4403
4404         break;
4405     case Uri_PROPERTY_RAW_URI:
4406         *pbstrProperty = SysAllocString(This->raw_uri);
4407         if(!(*pbstrProperty))
4408             hres = E_OUTOFMEMORY;
4409         else
4410             hres = S_OK;
4411         break;
4412     case Uri_PROPERTY_SCHEME_NAME:
4413         if(This->scheme_start > -1) {
4414             *pbstrProperty = SysAllocStringLen(This->canon_uri + This->scheme_start, This->scheme_len);
4415             hres = S_OK;
4416         } else {
4417             *pbstrProperty = SysAllocStringLen(NULL, 0);
4418             hres = S_FALSE;
4419         }
4420
4421         if(!(*pbstrProperty))
4422             hres = E_OUTOFMEMORY;
4423
4424         break;
4425     case Uri_PROPERTY_USER_INFO:
4426         if(This->userinfo_start > -1) {
4427             *pbstrProperty = SysAllocStringLen(This->canon_uri+This->userinfo_start, This->userinfo_len);
4428             hres = S_OK;
4429         } else {
4430             *pbstrProperty = SysAllocStringLen(NULL, 0);
4431             hres = S_FALSE;
4432         }
4433
4434         if(!(*pbstrProperty))
4435             hres = E_OUTOFMEMORY;
4436
4437         break;
4438     case Uri_PROPERTY_USER_NAME:
4439         if(This->userinfo_start > -1 && This->userinfo_split != 0) {
4440             /* If userinfo_split is set, that means a password exists
4441              * so the username is only from userinfo_start to userinfo_split.
4442              */
4443             if(This->userinfo_split > -1) {
4444                 *pbstrProperty = SysAllocStringLen(This->canon_uri + This->userinfo_start, This->userinfo_split);
4445                 hres = S_OK;
4446             } else {
4447                 *pbstrProperty = SysAllocStringLen(This->canon_uri + This->userinfo_start, This->userinfo_len);
4448                 hres = S_OK;
4449             }
4450         } else {
4451             *pbstrProperty = SysAllocStringLen(NULL, 0);
4452             hres = S_FALSE;
4453         }
4454
4455         if(!(*pbstrProperty))
4456             return E_OUTOFMEMORY;
4457
4458         break;
4459     default:
4460         FIXME("(%p)->(%d %p %x)\n", This, uriProp, pbstrProperty, dwFlags);
4461         hres = E_NOTIMPL;
4462     }
4463
4464     return hres;
4465 }
4466
4467 static HRESULT WINAPI Uri_GetPropertyLength(IUri *iface, Uri_PROPERTY uriProp, DWORD *pcchProperty, DWORD dwFlags)
4468 {
4469     Uri *This = impl_from_IUri(iface);
4470     HRESULT hres;
4471     TRACE("(%p)->(%d %p %x)\n", This, uriProp, pcchProperty, dwFlags);
4472
4473     if(!pcchProperty)
4474         return E_INVALIDARG;
4475
4476     /* Can only return a length for a property if it's a string. */
4477     if(uriProp > Uri_PROPERTY_STRING_LAST)
4478         return E_INVALIDARG;
4479
4480     /* Don't have support for flags yet. */
4481     if(dwFlags) {
4482         FIXME("(%p)->(%d %p %x)\n", This, uriProp, pcchProperty, dwFlags);
4483         return E_NOTIMPL;
4484     }
4485
4486     switch(uriProp) {
4487     case Uri_PROPERTY_ABSOLUTE_URI:
4488         if(This->display_modifiers & URI_DISPLAY_NO_ABSOLUTE_URI) {
4489             *pcchProperty = 0;
4490             hres = S_FALSE;
4491         } else {
4492             if(This->scheme_type != URL_SCHEME_UNKNOWN) {
4493                 if(This->userinfo_start > -1 && This->userinfo_len == 0)
4494                     /* Don't include the '@' in the length. */
4495                     *pcchProperty = This->canon_len-1;
4496                 else if(This->userinfo_start > -1 && This->userinfo_len == 1 &&
4497                         This->userinfo_split == 0)
4498                     /* Don't include the ":@" in the length. */
4499                     *pcchProperty = This->canon_len-2;
4500                 else
4501                     *pcchProperty = This->canon_len;
4502             } else
4503                 *pcchProperty = This->canon_len;
4504
4505             hres = S_OK;
4506         }
4507
4508         break;
4509     case Uri_PROPERTY_AUTHORITY:
4510         if(This->port_offset > -1 &&
4511            This->display_modifiers & URI_DISPLAY_NO_DEFAULT_PORT_AUTH &&
4512            is_default_port(This->scheme_type, This->port))
4513             /* Only count up until the port in the authority. */
4514             *pcchProperty = This->port_offset;
4515         else
4516             *pcchProperty = This->authority_len;
4517         hres = (This->authority_start > -1) ? S_OK : S_FALSE;
4518         break;
4519     case Uri_PROPERTY_DISPLAY_URI:
4520         if(This->scheme_type != URL_SCHEME_UNKNOWN && This->userinfo_start > -1)
4521             *pcchProperty = This->canon_len-This->userinfo_len-1;
4522         else
4523             *pcchProperty = This->canon_len;
4524
4525         hres = S_OK;
4526         break;
4527     case Uri_PROPERTY_DOMAIN:
4528         if(This->domain_offset > -1)
4529             *pcchProperty = This->host_len - This->domain_offset;
4530         else
4531             *pcchProperty = 0;
4532
4533         hres = (This->domain_offset > -1) ? S_OK : S_FALSE;
4534         break;
4535     case Uri_PROPERTY_EXTENSION:
4536         if(This->extension_offset > -1) {
4537             *pcchProperty = This->path_len - This->extension_offset;
4538             hres = S_OK;
4539         } else {
4540             *pcchProperty = 0;
4541             hres = S_FALSE;
4542         }
4543
4544         break;
4545     case Uri_PROPERTY_FRAGMENT:
4546         *pcchProperty = This->fragment_len;
4547         hres = (This->fragment_start > -1) ? S_OK : S_FALSE;
4548         break;
4549     case Uri_PROPERTY_HOST:
4550         *pcchProperty = This->host_len;
4551
4552         /* '[' and ']' aren't included in the length. */
4553         if(This->host_type == Uri_HOST_IPV6)
4554             *pcchProperty -= 2;
4555
4556         hres = (This->host_start > -1) ? S_OK : S_FALSE;
4557         break;
4558     case Uri_PROPERTY_PASSWORD:
4559         *pcchProperty = (This->userinfo_split > -1) ? This->userinfo_len-This->userinfo_split-1 : 0;
4560         hres = (This->userinfo_split > -1) ? S_OK : S_FALSE;
4561         break;
4562     case Uri_PROPERTY_PATH:
4563         *pcchProperty = This->path_len;
4564         hres = (This->path_start > -1) ? S_OK : S_FALSE;
4565         break;
4566     case Uri_PROPERTY_PATH_AND_QUERY:
4567         *pcchProperty = This->path_len+This->query_len;
4568         hres = (This->path_start > -1 || This->query_start > -1) ? S_OK : S_FALSE;
4569         break;
4570     case Uri_PROPERTY_QUERY:
4571         *pcchProperty = This->query_len;
4572         hres = (This->query_start > -1) ? S_OK : S_FALSE;
4573         break;
4574     case Uri_PROPERTY_RAW_URI:
4575         *pcchProperty = SysStringLen(This->raw_uri);
4576         hres = S_OK;
4577         break;
4578     case Uri_PROPERTY_SCHEME_NAME:
4579         *pcchProperty = This->scheme_len;
4580         hres = (This->scheme_start > -1) ? S_OK : S_FALSE;
4581         break;
4582     case Uri_PROPERTY_USER_INFO:
4583         *pcchProperty = This->userinfo_len;
4584         hres = (This->userinfo_start > -1) ? S_OK : S_FALSE;
4585         break;
4586     case Uri_PROPERTY_USER_NAME:
4587         *pcchProperty = (This->userinfo_split > -1) ? This->userinfo_split : This->userinfo_len;
4588         if(This->userinfo_split == 0)
4589             hres = S_FALSE;
4590         else
4591             hres = (This->userinfo_start > -1) ? S_OK : S_FALSE;
4592         break;
4593     default:
4594         FIXME("(%p)->(%d %p %x)\n", This, uriProp, pcchProperty, dwFlags);
4595         hres = E_NOTIMPL;
4596     }
4597
4598     return hres;
4599 }
4600
4601 static HRESULT WINAPI Uri_GetPropertyDWORD(IUri *iface, Uri_PROPERTY uriProp, DWORD *pcchProperty, DWORD dwFlags)
4602 {
4603     Uri *This = impl_from_IUri(iface);
4604     HRESULT hres;
4605
4606     TRACE("(%p)->(%d %p %x)\n", This, uriProp, pcchProperty, dwFlags);
4607
4608     if(!pcchProperty)
4609         return E_INVALIDARG;
4610
4611     /* Microsoft's implementation for the ZONE property of a URI seems to be lacking...
4612      * From what I can tell, instead of checking which URLZONE the URI belongs to it
4613      * simply assigns URLZONE_INVALID and returns E_NOTIMPL. This also applies to the GetZone
4614      * function.
4615      */
4616     if(uriProp == Uri_PROPERTY_ZONE) {
4617         *pcchProperty = URLZONE_INVALID;
4618         return E_NOTIMPL;
4619     }
4620
4621     if(uriProp < Uri_PROPERTY_DWORD_START) {
4622         *pcchProperty = 0;
4623         return E_INVALIDARG;
4624     }
4625
4626     switch(uriProp) {
4627     case Uri_PROPERTY_HOST_TYPE:
4628         *pcchProperty = This->host_type;
4629         hres = S_OK;
4630         break;
4631     case Uri_PROPERTY_PORT:
4632         if(!This->has_port) {
4633             *pcchProperty = 0;
4634             hres = S_FALSE;
4635         } else {
4636             *pcchProperty = This->port;
4637             hres = S_OK;
4638         }
4639
4640         break;
4641     case Uri_PROPERTY_SCHEME:
4642         *pcchProperty = This->scheme_type;
4643         hres = S_OK;
4644         break;
4645     default:
4646         FIXME("(%p)->(%d %p %x)\n", This, uriProp, pcchProperty, dwFlags);
4647         hres = E_NOTIMPL;
4648     }
4649
4650     return hres;
4651 }
4652
4653 static HRESULT WINAPI Uri_HasProperty(IUri *iface, Uri_PROPERTY uriProp, BOOL *pfHasProperty)
4654 {
4655     Uri *This = impl_from_IUri(iface);
4656     TRACE("(%p)->(%d %p)\n", This, uriProp, pfHasProperty);
4657
4658     if(!pfHasProperty)
4659         return E_INVALIDARG;
4660
4661     switch(uriProp) {
4662     case Uri_PROPERTY_ABSOLUTE_URI:
4663         *pfHasProperty = !(This->display_modifiers & URI_DISPLAY_NO_ABSOLUTE_URI);
4664         break;
4665     case Uri_PROPERTY_AUTHORITY:
4666         *pfHasProperty = This->authority_start > -1;
4667         break;
4668     case Uri_PROPERTY_DISPLAY_URI:
4669         *pfHasProperty = TRUE;
4670         break;
4671     case Uri_PROPERTY_DOMAIN:
4672         *pfHasProperty = This->domain_offset > -1;
4673         break;
4674     case Uri_PROPERTY_EXTENSION:
4675         *pfHasProperty = This->extension_offset > -1;
4676         break;
4677     case Uri_PROPERTY_FRAGMENT:
4678         *pfHasProperty = This->fragment_start > -1;
4679         break;
4680     case Uri_PROPERTY_HOST:
4681         *pfHasProperty = This->host_start > -1;
4682         break;
4683     case Uri_PROPERTY_PASSWORD:
4684         *pfHasProperty = This->userinfo_split > -1;
4685         break;
4686     case Uri_PROPERTY_PATH:
4687         *pfHasProperty = This->path_start > -1;
4688         break;
4689     case Uri_PROPERTY_PATH_AND_QUERY:
4690         *pfHasProperty = (This->path_start > -1 || This->query_start > -1);
4691         break;
4692     case Uri_PROPERTY_QUERY:
4693         *pfHasProperty = This->query_start > -1;
4694         break;
4695     case Uri_PROPERTY_RAW_URI:
4696         *pfHasProperty = TRUE;
4697         break;
4698     case Uri_PROPERTY_SCHEME_NAME:
4699         *pfHasProperty = This->scheme_start > -1;
4700         break;
4701     case Uri_PROPERTY_USER_INFO:
4702         *pfHasProperty = This->userinfo_start > -1;
4703         break;
4704     case Uri_PROPERTY_USER_NAME:
4705         if(This->userinfo_split == 0)
4706             *pfHasProperty = FALSE;
4707         else
4708             *pfHasProperty = This->userinfo_start > -1;
4709         break;
4710     case Uri_PROPERTY_HOST_TYPE:
4711         *pfHasProperty = TRUE;
4712         break;
4713     case Uri_PROPERTY_PORT:
4714         *pfHasProperty = This->has_port;
4715         break;
4716     case Uri_PROPERTY_SCHEME:
4717         *pfHasProperty = TRUE;
4718         break;
4719     case Uri_PROPERTY_ZONE:
4720         *pfHasProperty = FALSE;
4721         break;
4722     default:
4723         FIXME("(%p)->(%d %p): Unsupported property type.\n", This, uriProp, pfHasProperty);
4724         return E_NOTIMPL;
4725     }
4726
4727     return S_OK;
4728 }
4729
4730 static HRESULT WINAPI Uri_GetAbsoluteUri(IUri *iface, BSTR *pstrAbsoluteUri)
4731 {
4732     TRACE("(%p)->(%p)\n", iface, pstrAbsoluteUri);
4733     return IUri_GetPropertyBSTR(iface, Uri_PROPERTY_ABSOLUTE_URI, pstrAbsoluteUri, 0);
4734 }
4735
4736 static HRESULT WINAPI Uri_GetAuthority(IUri *iface, BSTR *pstrAuthority)
4737 {
4738     TRACE("(%p)->(%p)\n", iface, pstrAuthority);
4739     return IUri_GetPropertyBSTR(iface, Uri_PROPERTY_AUTHORITY, pstrAuthority, 0);
4740 }
4741
4742 static HRESULT WINAPI Uri_GetDisplayUri(IUri *iface, BSTR *pstrDisplayUri)
4743 {
4744     TRACE("(%p)->(%p)\n", iface, pstrDisplayUri);
4745     return IUri_GetPropertyBSTR(iface, Uri_PROPERTY_DISPLAY_URI, pstrDisplayUri, 0);
4746 }
4747
4748 static HRESULT WINAPI Uri_GetDomain(IUri *iface, BSTR *pstrDomain)
4749 {
4750     TRACE("(%p)->(%p)\n", iface, pstrDomain);
4751     return IUri_GetPropertyBSTR(iface, Uri_PROPERTY_DOMAIN, pstrDomain, 0);
4752 }
4753
4754 static HRESULT WINAPI Uri_GetExtension(IUri *iface, BSTR *pstrExtension)
4755 {
4756     TRACE("(%p)->(%p)\n", iface, pstrExtension);
4757     return IUri_GetPropertyBSTR(iface, Uri_PROPERTY_EXTENSION, pstrExtension, 0);
4758 }
4759
4760 static HRESULT WINAPI Uri_GetFragment(IUri *iface, BSTR *pstrFragment)
4761 {
4762     TRACE("(%p)->(%p)\n", iface, pstrFragment);
4763     return IUri_GetPropertyBSTR(iface, Uri_PROPERTY_FRAGMENT, pstrFragment, 0);
4764 }
4765
4766 static HRESULT WINAPI Uri_GetHost(IUri *iface, BSTR *pstrHost)
4767 {
4768     TRACE("(%p)->(%p)\n", iface, pstrHost);
4769     return IUri_GetPropertyBSTR(iface, Uri_PROPERTY_HOST, pstrHost, 0);
4770 }
4771
4772 static HRESULT WINAPI Uri_GetPassword(IUri *iface, BSTR *pstrPassword)
4773 {
4774     TRACE("(%p)->(%p)\n", iface, pstrPassword);
4775     return IUri_GetPropertyBSTR(iface, Uri_PROPERTY_PASSWORD, pstrPassword, 0);
4776 }
4777
4778 static HRESULT WINAPI Uri_GetPath(IUri *iface, BSTR *pstrPath)
4779 {
4780     TRACE("(%p)->(%p)\n", iface, pstrPath);
4781     return IUri_GetPropertyBSTR(iface, Uri_PROPERTY_PATH, pstrPath, 0);
4782 }
4783
4784 static HRESULT WINAPI Uri_GetPathAndQuery(IUri *iface, BSTR *pstrPathAndQuery)
4785 {
4786     TRACE("(%p)->(%p)\n", iface, pstrPathAndQuery);
4787     return IUri_GetPropertyBSTR(iface, Uri_PROPERTY_PATH_AND_QUERY, pstrPathAndQuery, 0);
4788 }
4789
4790 static HRESULT WINAPI Uri_GetQuery(IUri *iface, BSTR *pstrQuery)
4791 {
4792     TRACE("(%p)->(%p)\n", iface, pstrQuery);
4793     return IUri_GetPropertyBSTR(iface, Uri_PROPERTY_QUERY, pstrQuery, 0);
4794 }
4795
4796 static HRESULT WINAPI Uri_GetRawUri(IUri *iface, BSTR *pstrRawUri)
4797 {
4798     TRACE("(%p)->(%p)\n", iface, pstrRawUri);
4799     return IUri_GetPropertyBSTR(iface, Uri_PROPERTY_RAW_URI, pstrRawUri, 0);
4800 }
4801
4802 static HRESULT WINAPI Uri_GetSchemeName(IUri *iface, BSTR *pstrSchemeName)
4803 {
4804     TRACE("(%p)->(%p)\n", iface, pstrSchemeName);
4805     return IUri_GetPropertyBSTR(iface, Uri_PROPERTY_SCHEME_NAME, pstrSchemeName, 0);
4806 }
4807
4808 static HRESULT WINAPI Uri_GetUserInfo(IUri *iface, BSTR *pstrUserInfo)
4809 {
4810     TRACE("(%p)->(%p)\n", iface, pstrUserInfo);
4811     return IUri_GetPropertyBSTR(iface, Uri_PROPERTY_USER_INFO, pstrUserInfo, 0);
4812 }
4813
4814 static HRESULT WINAPI Uri_GetUserName(IUri *iface, BSTR *pstrUserName)
4815 {
4816     TRACE("(%p)->(%p)\n", iface, pstrUserName);
4817     return IUri_GetPropertyBSTR(iface, Uri_PROPERTY_USER_NAME, pstrUserName, 0);
4818 }
4819
4820 static HRESULT WINAPI Uri_GetHostType(IUri *iface, DWORD *pdwHostType)
4821 {
4822     TRACE("(%p)->(%p)\n", iface, pdwHostType);
4823     return IUri_GetPropertyDWORD(iface, Uri_PROPERTY_HOST_TYPE, pdwHostType, 0);
4824 }
4825
4826 static HRESULT WINAPI Uri_GetPort(IUri *iface, DWORD *pdwPort)
4827 {
4828     TRACE("(%p)->(%p)\n", iface, pdwPort);
4829     return IUri_GetPropertyDWORD(iface, Uri_PROPERTY_PORT, pdwPort, 0);
4830 }
4831
4832 static HRESULT WINAPI Uri_GetScheme(IUri *iface, DWORD *pdwScheme)
4833 {
4834     TRACE("(%p)->(%p)\n", iface, pdwScheme);
4835     return IUri_GetPropertyDWORD(iface, Uri_PROPERTY_SCHEME, pdwScheme, 0);
4836 }
4837
4838 static HRESULT WINAPI Uri_GetZone(IUri *iface, DWORD *pdwZone)
4839 {
4840     TRACE("(%p)->(%p)\n", iface, pdwZone);
4841     return IUri_GetPropertyDWORD(iface, Uri_PROPERTY_ZONE,pdwZone, 0);
4842 }
4843
4844 static HRESULT WINAPI Uri_GetProperties(IUri *iface, DWORD *pdwProperties)
4845 {
4846     Uri *This = impl_from_IUri(iface);
4847     TRACE("(%p)->(%p)\n", This, pdwProperties);
4848
4849     if(!pdwProperties)
4850         return E_INVALIDARG;
4851
4852     /* All URIs have these. */
4853     *pdwProperties = Uri_HAS_DISPLAY_URI|Uri_HAS_RAW_URI|Uri_HAS_SCHEME|Uri_HAS_HOST_TYPE;
4854
4855     if(!(This->display_modifiers & URI_DISPLAY_NO_ABSOLUTE_URI))
4856         *pdwProperties |= Uri_HAS_ABSOLUTE_URI;
4857
4858     if(This->scheme_start > -1)
4859         *pdwProperties |= Uri_HAS_SCHEME_NAME;
4860
4861     if(This->authority_start > -1) {
4862         *pdwProperties |= Uri_HAS_AUTHORITY;
4863         if(This->userinfo_start > -1) {
4864             *pdwProperties |= Uri_HAS_USER_INFO;
4865             if(This->userinfo_split != 0)
4866                 *pdwProperties |= Uri_HAS_USER_NAME;
4867         }
4868         if(This->userinfo_split > -1)
4869             *pdwProperties |= Uri_HAS_PASSWORD;
4870         if(This->host_start > -1)
4871             *pdwProperties |= Uri_HAS_HOST;
4872         if(This->domain_offset > -1)
4873             *pdwProperties |= Uri_HAS_DOMAIN;
4874     }
4875
4876     if(This->has_port)
4877         *pdwProperties |= Uri_HAS_PORT;
4878     if(This->path_start > -1)
4879         *pdwProperties |= Uri_HAS_PATH|Uri_HAS_PATH_AND_QUERY;
4880     if(This->query_start > -1)
4881         *pdwProperties |= Uri_HAS_QUERY|Uri_HAS_PATH_AND_QUERY;
4882
4883     if(This->extension_offset > -1)
4884         *pdwProperties |= Uri_HAS_EXTENSION;
4885
4886     if(This->fragment_start > -1)
4887         *pdwProperties |= Uri_HAS_FRAGMENT;
4888
4889     return S_OK;
4890 }
4891
4892 static HRESULT WINAPI Uri_IsEqual(IUri *iface, IUri *pUri, BOOL *pfEqual)
4893 {
4894     Uri *This = impl_from_IUri(iface);
4895     Uri *other;
4896
4897     TRACE("(%p)->(%p %p)\n", This, pUri, pfEqual);
4898
4899     if(!pfEqual)
4900         return E_POINTER;
4901
4902     if(!pUri) {
4903         *pfEqual = FALSE;
4904
4905         /* For some reason Windows returns S_OK here... */
4906         return S_OK;
4907     }
4908
4909     /* Try to convert it to a Uri (allows for a more simple comparison). */
4910     if((other = get_uri_obj(pUri)))
4911         *pfEqual = are_equal_simple(This, other);
4912     else {
4913         /* Do it the hard way. */
4914         FIXME("(%p)->(%p %p) No support for unknown IUri's yet.\n", iface, pUri, pfEqual);
4915         return E_NOTIMPL;
4916     }
4917
4918     return S_OK;
4919 }
4920
4921 static const IUriVtbl UriVtbl = {
4922     Uri_QueryInterface,
4923     Uri_AddRef,
4924     Uri_Release,
4925     Uri_GetPropertyBSTR,
4926     Uri_GetPropertyLength,
4927     Uri_GetPropertyDWORD,
4928     Uri_HasProperty,
4929     Uri_GetAbsoluteUri,
4930     Uri_GetAuthority,
4931     Uri_GetDisplayUri,
4932     Uri_GetDomain,
4933     Uri_GetExtension,
4934     Uri_GetFragment,
4935     Uri_GetHost,
4936     Uri_GetPassword,
4937     Uri_GetPath,
4938     Uri_GetPathAndQuery,
4939     Uri_GetQuery,
4940     Uri_GetRawUri,
4941     Uri_GetSchemeName,
4942     Uri_GetUserInfo,
4943     Uri_GetUserName,
4944     Uri_GetHostType,
4945     Uri_GetPort,
4946     Uri_GetScheme,
4947     Uri_GetZone,
4948     Uri_GetProperties,
4949     Uri_IsEqual
4950 };
4951
4952 static inline Uri* impl_from_IUriBuilderFactory(IUriBuilderFactory *iface)
4953 {
4954     return CONTAINING_RECORD(iface, Uri, IUriBuilderFactory_iface);
4955 }
4956
4957 static HRESULT WINAPI UriBuilderFactory_QueryInterface(IUriBuilderFactory *iface, REFIID riid, void **ppv)
4958 {
4959     Uri *This = impl_from_IUriBuilderFactory(iface);
4960
4961     if(IsEqualGUID(&IID_IUnknown, riid)) {
4962         TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
4963         *ppv = &This->IUriBuilderFactory_iface;
4964     }else if(IsEqualGUID(&IID_IUriBuilderFactory, riid)) {
4965         TRACE("(%p)->(IID_IUriBuilderFactory %p)\n", This, ppv);
4966         *ppv = &This->IUriBuilderFactory_iface;
4967     }else if(IsEqualGUID(&IID_IUri, riid)) {
4968         TRACE("(%p)->(IID_IUri %p)\n", This, ppv);
4969         *ppv = &This->IUri_iface;
4970     }else {
4971         TRACE("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppv);
4972         *ppv = NULL;
4973         return E_NOINTERFACE;
4974     }
4975
4976     IUnknown_AddRef((IUnknown*)*ppv);
4977     return S_OK;
4978 }
4979
4980 static ULONG WINAPI UriBuilderFactory_AddRef(IUriBuilderFactory *iface)
4981 {
4982     Uri *This = impl_from_IUriBuilderFactory(iface);
4983     LONG ref = InterlockedIncrement(&This->ref);
4984
4985     TRACE("(%p) ref=%d\n", This, ref);
4986
4987     return ref;
4988 }
4989
4990 static ULONG WINAPI UriBuilderFactory_Release(IUriBuilderFactory *iface)
4991 {
4992     Uri *This = impl_from_IUriBuilderFactory(iface);
4993     LONG ref = InterlockedDecrement(&This->ref);
4994
4995     TRACE("(%p) ref=%d\n", This, ref);
4996
4997     if(!ref)
4998         destory_uri_obj(This);
4999
5000     return ref;
5001 }
5002
5003 static HRESULT WINAPI UriBuilderFactory_CreateIUriBuilder(IUriBuilderFactory *iface,
5004                                                           DWORD dwFlags,
5005                                                           DWORD_PTR dwReserved,
5006                                                           IUriBuilder **ppIUriBuilder)
5007 {
5008     Uri *This = impl_from_IUriBuilderFactory(iface);
5009     TRACE("(%p)->(%08x %08x %p)\n", This, dwFlags, (DWORD)dwReserved, ppIUriBuilder);
5010
5011     if(!ppIUriBuilder)
5012         return E_POINTER;
5013
5014     if(dwFlags || dwReserved) {
5015         *ppIUriBuilder = NULL;
5016         return E_INVALIDARG;
5017     }
5018
5019     return CreateIUriBuilder(NULL, 0, 0, ppIUriBuilder);
5020 }
5021
5022 static HRESULT WINAPI UriBuilderFactory_CreateInitializedIUriBuilder(IUriBuilderFactory *iface,
5023                                                                      DWORD dwFlags,
5024                                                                      DWORD_PTR dwReserved,
5025                                                                      IUriBuilder **ppIUriBuilder)
5026 {
5027     Uri *This = impl_from_IUriBuilderFactory(iface);
5028     TRACE("(%p)->(%08x %08x %p)\n", This, dwFlags, (DWORD)dwReserved, ppIUriBuilder);
5029
5030     if(!ppIUriBuilder)
5031         return E_POINTER;
5032
5033     if(dwFlags || dwReserved) {
5034         *ppIUriBuilder = NULL;
5035         return E_INVALIDARG;
5036     }
5037
5038     return CreateIUriBuilder(&This->IUri_iface, 0, 0, ppIUriBuilder);
5039 }
5040
5041 static const IUriBuilderFactoryVtbl UriBuilderFactoryVtbl = {
5042     UriBuilderFactory_QueryInterface,
5043     UriBuilderFactory_AddRef,
5044     UriBuilderFactory_Release,
5045     UriBuilderFactory_CreateIUriBuilder,
5046     UriBuilderFactory_CreateInitializedIUriBuilder
5047 };
5048
5049 static Uri* create_uri_obj(void) {
5050     Uri *ret = heap_alloc_zero(sizeof(Uri));
5051     if(ret) {
5052         ret->IUri_iface.lpVtbl = &UriVtbl;
5053         ret->IUriBuilderFactory_iface.lpVtbl = &UriBuilderFactoryVtbl;
5054         ret->ref = 1;
5055     }
5056
5057     return ret;
5058 }
5059
5060 /***********************************************************************
5061  *           CreateUri (urlmon.@)
5062  *
5063  * Creates a new IUri object using the URI represented by pwzURI. This function
5064  * parses and validates the components of pwzURI and then canonicalizes the
5065  * parsed components.
5066  *
5067  * PARAMS
5068  *  pwzURI      [I] The URI to parse, validate, and canonicalize.
5069  *  dwFlags     [I] Flags which can affect how the parsing/canonicalization is performed.
5070  *  dwReserved  [I] Reserved (not used).
5071  *  ppURI       [O] The resulting IUri after parsing/canonicalization occurs.
5072  *
5073  * RETURNS
5074  *  Success: Returns S_OK. ppURI contains the pointer to the newly allocated IUri.
5075  *  Failure: E_INVALIDARG if there's invalid flag combinations in dwFlags, or an
5076  *           invalid parameters, or pwzURI doesn't represnt a valid URI.
5077  *           E_OUTOFMEMORY if any memory allocation fails.
5078  *
5079  * NOTES
5080  *  Default flags:
5081  *      Uri_CREATE_CANONICALIZE, Uri_CREATE_DECODE_EXTRA_INFO, Uri_CREATE_CRACK_UNKNOWN_SCHEMES,
5082  *      Uri_CREATE_PRE_PROCESS_HTML_URI, Uri_CREATE_NO_IE_SETTINGS.
5083  */
5084 HRESULT WINAPI CreateUri(LPCWSTR pwzURI, DWORD dwFlags, DWORD_PTR dwReserved, IUri **ppURI)
5085 {
5086     const DWORD supported_flags = Uri_CREATE_ALLOW_RELATIVE|Uri_CREATE_ALLOW_IMPLICIT_WILDCARD_SCHEME|
5087         Uri_CREATE_ALLOW_IMPLICIT_FILE_SCHEME|Uri_CREATE_NO_CANONICALIZE|Uri_CREATE_CANONICALIZE|
5088         Uri_CREATE_DECODE_EXTRA_INFO|Uri_CREATE_NO_DECODE_EXTRA_INFO|Uri_CREATE_CRACK_UNKNOWN_SCHEMES|
5089         Uri_CREATE_NO_CRACK_UNKNOWN_SCHEMES|Uri_CREATE_PRE_PROCESS_HTML_URI|Uri_CREATE_NO_PRE_PROCESS_HTML_URI|
5090         Uri_CREATE_NO_IE_SETTINGS|Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS|Uri_CREATE_FILE_USE_DOS_PATH;
5091     Uri *ret;
5092     HRESULT hr;
5093     parse_data data;
5094
5095     TRACE("(%s %x %x %p)\n", debugstr_w(pwzURI), dwFlags, (DWORD)dwReserved, ppURI);
5096
5097     if(!ppURI)
5098         return E_INVALIDARG;
5099
5100     if(!pwzURI) {
5101         *ppURI = NULL;
5102         return E_INVALIDARG;
5103     }
5104
5105     /* Check for invalid flags. */
5106     if(has_invalid_flag_combination(dwFlags)) {
5107         *ppURI = NULL;
5108         return E_INVALIDARG;
5109     }
5110
5111     /* Currently unsupported. */
5112     if(dwFlags & ~supported_flags)
5113         FIXME("Ignoring unsupported flag(s) %x\n", dwFlags & ~supported_flags);
5114
5115     ret = create_uri_obj();
5116     if(!ret) {
5117         *ppURI = NULL;
5118         return E_OUTOFMEMORY;
5119     }
5120
5121     /* Explicitly set the default flags if it doesn't cause a flag conflict. */
5122     apply_default_flags(&dwFlags);
5123
5124     /* Pre process the URI, unless told otherwise. */
5125     if(!(dwFlags & Uri_CREATE_NO_PRE_PROCESS_HTML_URI))
5126         ret->raw_uri = pre_process_uri(pwzURI);
5127     else
5128         ret->raw_uri = SysAllocString(pwzURI);
5129
5130     if(!ret->raw_uri) {
5131         heap_free(ret);
5132         return E_OUTOFMEMORY;
5133     }
5134
5135     memset(&data, 0, sizeof(parse_data));
5136     data.uri = ret->raw_uri;
5137
5138     /* Validate and parse the URI into it's components. */
5139     if(!parse_uri(&data, dwFlags)) {
5140         /* Encountered an unsupported or invalid URI */
5141         IUri_Release(&ret->IUri_iface);
5142         *ppURI = NULL;
5143         return E_INVALIDARG;
5144     }
5145
5146     /* Canonicalize the URI. */
5147     hr = canonicalize_uri(&data, ret, dwFlags);
5148     if(FAILED(hr)) {
5149         IUri_Release(&ret->IUri_iface);
5150         *ppURI = NULL;
5151         return hr;
5152     }
5153
5154     ret->create_flags = dwFlags;
5155
5156     *ppURI = &ret->IUri_iface;
5157     return S_OK;
5158 }
5159
5160 /***********************************************************************
5161  *           CreateUriWithFragment (urlmon.@)
5162  *
5163  * Creates a new IUri object. This is almost the same as CreateUri, expect that
5164  * it allows you to explicitly specify a fragment (pwzFragment) for pwzURI.
5165  *
5166  * PARAMS
5167  *  pwzURI      [I] The URI to parse and perform canonicalization on.
5168  *  pwzFragment [I] The explict fragment string which should be added to pwzURI.
5169  *  dwFlags     [I] The flags which will be passed to CreateUri.
5170  *  dwReserved  [I] Reserved (not used).
5171  *  ppURI       [O] The resulting IUri after parsing/canonicalization.
5172  *
5173  * RETURNS
5174  *  Success: S_OK. ppURI contains the pointer to the newly allocated IUri.
5175  *  Failure: E_INVALIDARG if pwzURI already contains a fragment and pwzFragment
5176  *           isn't NULL. Will also return E_INVALIDARG for the same reasons as
5177  *           CreateUri will. E_OUTOFMEMORY if any allocations fail.
5178  */
5179 HRESULT WINAPI CreateUriWithFragment(LPCWSTR pwzURI, LPCWSTR pwzFragment, DWORD dwFlags,
5180                                      DWORD_PTR dwReserved, IUri **ppURI)
5181 {
5182     HRESULT hres;
5183     TRACE("(%s %s %x %x %p)\n", debugstr_w(pwzURI), debugstr_w(pwzFragment), dwFlags, (DWORD)dwReserved, ppURI);
5184
5185     if(!ppURI)
5186         return E_INVALIDARG;
5187
5188     if(!pwzURI) {
5189         *ppURI = NULL;
5190         return E_INVALIDARG;
5191     }
5192
5193     /* Check if a fragment should be appended to the URI string. */
5194     if(pwzFragment) {
5195         WCHAR *uriW;
5196         DWORD uri_len, frag_len;
5197         BOOL add_pound;
5198
5199         /* Check if the original URI already has a fragment component. */
5200         if(StrChrW(pwzURI, '#')) {
5201             *ppURI = NULL;
5202             return E_INVALIDARG;
5203         }
5204
5205         uri_len = lstrlenW(pwzURI);
5206         frag_len = lstrlenW(pwzFragment);
5207
5208         /* If the fragment doesn't start with a '#', one will be added. */
5209         add_pound = *pwzFragment != '#';
5210
5211         if(add_pound)
5212             uriW = heap_alloc((uri_len+frag_len+2)*sizeof(WCHAR));
5213         else
5214             uriW = heap_alloc((uri_len+frag_len+1)*sizeof(WCHAR));
5215
5216         if(!uriW)
5217             return E_OUTOFMEMORY;
5218
5219         memcpy(uriW, pwzURI, uri_len*sizeof(WCHAR));
5220         if(add_pound)
5221             uriW[uri_len++] = '#';
5222         memcpy(uriW+uri_len, pwzFragment, (frag_len+1)*sizeof(WCHAR));
5223
5224         hres = CreateUri(uriW, dwFlags, 0, ppURI);
5225
5226         heap_free(uriW);
5227     } else
5228         /* A fragment string wasn't specified, so just forward the call. */
5229         hres = CreateUri(pwzURI, dwFlags, 0, ppURI);
5230
5231     return hres;
5232 }
5233
5234 static HRESULT build_uri(const UriBuilder *builder, IUri **uri, DWORD create_flags,
5235                          DWORD use_orig_flags, DWORD encoding_mask)
5236 {
5237     HRESULT hr;
5238     parse_data data;
5239     Uri *ret;
5240
5241     if(!uri)
5242         return E_POINTER;
5243
5244     if(encoding_mask && (!builder->uri || builder->modified_props)) {
5245         *uri = NULL;
5246         return E_NOTIMPL;
5247     }
5248
5249     /* Decide what flags should be used when creating the Uri. */
5250     if((use_orig_flags & UriBuilder_USE_ORIGINAL_FLAGS) && builder->uri)
5251         create_flags = builder->uri->create_flags;
5252     else {
5253         if(has_invalid_flag_combination(create_flags)) {
5254             *uri = NULL;
5255             return E_INVALIDARG;
5256         }
5257
5258         /* Set the default flags if they don't cause a conflict. */
5259         apply_default_flags(&create_flags);
5260     }
5261
5262     /* Return the base IUri if no changes have been made and the create_flags match. */
5263     if(builder->uri && !builder->modified_props && builder->uri->create_flags == create_flags) {
5264         *uri = &builder->uri->IUri_iface;
5265         IUri_AddRef(*uri);
5266         return S_OK;
5267     }
5268
5269     hr = validate_components(builder, &data, create_flags);
5270     if(FAILED(hr)) {
5271         *uri = NULL;
5272         return hr;
5273     }
5274
5275     ret = create_uri_obj();
5276     if(!ret) {
5277         *uri = NULL;
5278         return E_OUTOFMEMORY;
5279     }
5280
5281     hr = generate_uri(builder, &data, ret, create_flags);
5282     if(FAILED(hr)) {
5283         IUri_Release(&ret->IUri_iface);
5284         *uri = NULL;
5285         return hr;
5286     }
5287
5288     *uri = &ret->IUri_iface;
5289     return S_OK;
5290 }
5291
5292 static inline UriBuilder* impl_from_IUriBuilder(IUriBuilder *iface)
5293 {
5294     return CONTAINING_RECORD(iface, UriBuilder, IUriBuilder_iface);
5295 }
5296
5297 static HRESULT WINAPI UriBuilder_QueryInterface(IUriBuilder *iface, REFIID riid, void **ppv)
5298 {
5299     UriBuilder *This = impl_from_IUriBuilder(iface);
5300
5301     if(IsEqualGUID(&IID_IUnknown, riid)) {
5302         TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
5303         *ppv = &This->IUriBuilder_iface;
5304     }else if(IsEqualGUID(&IID_IUriBuilder, riid)) {
5305         TRACE("(%p)->(IID_IUriBuilder %p)\n", This, ppv);
5306         *ppv = &This->IUriBuilder_iface;
5307     }else {
5308         TRACE("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppv);
5309         *ppv = NULL;
5310         return E_NOINTERFACE;
5311     }
5312
5313     IUnknown_AddRef((IUnknown*)*ppv);
5314     return S_OK;
5315 }
5316
5317 static ULONG WINAPI UriBuilder_AddRef(IUriBuilder *iface)
5318 {
5319     UriBuilder *This = impl_from_IUriBuilder(iface);
5320     LONG ref = InterlockedIncrement(&This->ref);
5321
5322     TRACE("(%p) ref=%d\n", This, ref);
5323
5324     return ref;
5325 }
5326
5327 static ULONG WINAPI UriBuilder_Release(IUriBuilder *iface)
5328 {
5329     UriBuilder *This = impl_from_IUriBuilder(iface);
5330     LONG ref = InterlockedDecrement(&This->ref);
5331
5332     TRACE("(%p) ref=%d\n", This, ref);
5333
5334     if(!ref) {
5335         if(This->uri) IUri_Release(&This->uri->IUri_iface);
5336         heap_free(This->fragment);
5337         heap_free(This->host);
5338         heap_free(This->password);
5339         heap_free(This->path);
5340         heap_free(This->query);
5341         heap_free(This->scheme);
5342         heap_free(This->username);
5343         heap_free(This);
5344     }
5345
5346     return ref;
5347 }
5348
5349 static HRESULT WINAPI UriBuilder_CreateUriSimple(IUriBuilder *iface,
5350                                                  DWORD        dwAllowEncodingPropertyMask,
5351                                                  DWORD_PTR    dwReserved,
5352                                                  IUri       **ppIUri)
5353 {
5354     UriBuilder *This = impl_from_IUriBuilder(iface);
5355     HRESULT hr;
5356     TRACE("(%p)->(%d %d %p)\n", This, dwAllowEncodingPropertyMask, (DWORD)dwReserved, ppIUri);
5357
5358     hr = build_uri(This, ppIUri, 0, UriBuilder_USE_ORIGINAL_FLAGS, dwAllowEncodingPropertyMask);
5359     if(hr == E_NOTIMPL)
5360         FIXME("(%p)->(%d %d %p)\n", This, dwAllowEncodingPropertyMask, (DWORD)dwReserved, ppIUri);
5361     return hr;
5362 }
5363
5364 static HRESULT WINAPI UriBuilder_CreateUri(IUriBuilder *iface,
5365                                            DWORD        dwCreateFlags,
5366                                            DWORD        dwAllowEncodingPropertyMask,
5367                                            DWORD_PTR    dwReserved,
5368                                            IUri       **ppIUri)
5369 {
5370     UriBuilder *This = impl_from_IUriBuilder(iface);
5371     HRESULT hr;
5372     TRACE("(%p)->(0x%08x %d %d %p)\n", This, dwCreateFlags, dwAllowEncodingPropertyMask, (DWORD)dwReserved, ppIUri);
5373
5374     if(dwCreateFlags == -1)
5375         hr = build_uri(This, ppIUri, 0, UriBuilder_USE_ORIGINAL_FLAGS, dwAllowEncodingPropertyMask);
5376     else
5377         hr = build_uri(This, ppIUri, dwCreateFlags, 0, dwAllowEncodingPropertyMask);
5378
5379     if(hr == E_NOTIMPL)
5380         FIXME("(%p)->(0x%08x %d %d %p)\n", This, dwCreateFlags, dwAllowEncodingPropertyMask, (DWORD)dwReserved, ppIUri);
5381     return hr;
5382 }
5383
5384 static HRESULT WINAPI UriBuilder_CreateUriWithFlags(IUriBuilder *iface,
5385                                          DWORD        dwCreateFlags,
5386                                          DWORD        dwUriBuilderFlags,
5387                                          DWORD        dwAllowEncodingPropertyMask,
5388                                          DWORD_PTR    dwReserved,
5389                                          IUri       **ppIUri)
5390 {
5391     UriBuilder *This = impl_from_IUriBuilder(iface);
5392     HRESULT hr;
5393     TRACE("(%p)->(0x%08x 0x%08x %d %d %p)\n", This, dwCreateFlags, dwUriBuilderFlags,
5394         dwAllowEncodingPropertyMask, (DWORD)dwReserved, ppIUri);
5395
5396     hr = build_uri(This, ppIUri, dwCreateFlags, dwUriBuilderFlags, dwAllowEncodingPropertyMask);
5397     if(hr == E_NOTIMPL)
5398         FIXME("(%p)->(0x%08x 0x%08x %d %d %p)\n", This, dwCreateFlags, dwUriBuilderFlags,
5399             dwAllowEncodingPropertyMask, (DWORD)dwReserved, ppIUri);
5400     return hr;
5401 }
5402
5403 static HRESULT WINAPI  UriBuilder_GetIUri(IUriBuilder *iface, IUri **ppIUri)
5404 {
5405     UriBuilder *This = impl_from_IUriBuilder(iface);
5406     TRACE("(%p)->(%p)\n", This, ppIUri);
5407
5408     if(!ppIUri)
5409         return E_POINTER;
5410
5411     if(This->uri) {
5412         IUri *uri = &This->uri->IUri_iface;
5413         IUri_AddRef(uri);
5414         *ppIUri = uri;
5415     } else
5416         *ppIUri = NULL;
5417
5418     return S_OK;
5419 }
5420
5421 static HRESULT WINAPI UriBuilder_SetIUri(IUriBuilder *iface, IUri *pIUri)
5422 {
5423     UriBuilder *This = impl_from_IUriBuilder(iface);
5424     TRACE("(%p)->(%p)\n", This, pIUri);
5425
5426     if(pIUri) {
5427         Uri *uri;
5428
5429         if((uri = get_uri_obj(pIUri))) {
5430             /* Only reset the builder if it's Uri isn't the same as
5431              * the Uri passed to the function.
5432              */
5433             if(This->uri != uri) {
5434                 reset_builder(This);
5435
5436                 This->uri = uri;
5437                 if(uri->has_port)
5438                     This->port = uri->port;
5439
5440                 IUri_AddRef(pIUri);
5441             }
5442         } else {
5443             FIXME("(%p)->(%p) Unknown IUri types not supported yet.\n", This, pIUri);
5444             return E_NOTIMPL;
5445         }
5446     } else if(This->uri)
5447         /* Only reset the builder if it's Uri isn't NULL. */
5448         reset_builder(This);
5449
5450     return S_OK;
5451 }
5452
5453 static HRESULT WINAPI UriBuilder_GetFragment(IUriBuilder *iface, DWORD *pcchFragment, LPCWSTR *ppwzFragment)
5454 {
5455     UriBuilder *This = impl_from_IUriBuilder(iface);
5456     TRACE("(%p)->(%p %p)\n", This, pcchFragment, ppwzFragment);
5457
5458     if(!This->uri || This->uri->fragment_start == -1 || This->modified_props & Uri_HAS_FRAGMENT)
5459         return get_builder_component(&This->fragment, &This->fragment_len, NULL, 0, ppwzFragment, pcchFragment);
5460     else
5461         return get_builder_component(&This->fragment, &This->fragment_len, This->uri->canon_uri+This->uri->fragment_start,
5462                                      This->uri->fragment_len, ppwzFragment, pcchFragment);
5463 }
5464
5465 static HRESULT WINAPI UriBuilder_GetHost(IUriBuilder *iface, DWORD *pcchHost, LPCWSTR *ppwzHost)
5466 {
5467     UriBuilder *This = impl_from_IUriBuilder(iface);
5468     TRACE("(%p)->(%p %p)\n", This, pcchHost, ppwzHost);
5469
5470     if(!This->uri || This->uri->host_start == -1 || This->modified_props & Uri_HAS_HOST)
5471         return get_builder_component(&This->host, &This->host_len, NULL, 0, ppwzHost, pcchHost);
5472     else {
5473         if(This->uri->host_type == Uri_HOST_IPV6)
5474             /* Don't include the '[' and ']' around the address. */
5475             return get_builder_component(&This->host, &This->host_len, This->uri->canon_uri+This->uri->host_start+1,
5476                                          This->uri->host_len-2, ppwzHost, pcchHost);
5477         else
5478             return get_builder_component(&This->host, &This->host_len, This->uri->canon_uri+This->uri->host_start,
5479                                          This->uri->host_len, ppwzHost, pcchHost);
5480     }
5481 }
5482
5483 static HRESULT WINAPI UriBuilder_GetPassword(IUriBuilder *iface, DWORD *pcchPassword, LPCWSTR *ppwzPassword)
5484 {
5485     UriBuilder *This = impl_from_IUriBuilder(iface);
5486     TRACE("(%p)->(%p %p)\n", This, pcchPassword, ppwzPassword);
5487
5488     if(!This->uri || This->uri->userinfo_split == -1 || This->modified_props & Uri_HAS_PASSWORD)
5489         return get_builder_component(&This->password, &This->password_len, NULL, 0, ppwzPassword, pcchPassword);
5490     else {
5491         const WCHAR *start = This->uri->canon_uri+This->uri->userinfo_start+This->uri->userinfo_split+1;
5492         DWORD len = This->uri->userinfo_len-This->uri->userinfo_split-1;
5493         return get_builder_component(&This->password, &This->password_len, start, len, ppwzPassword, pcchPassword);
5494     }
5495 }
5496
5497 static HRESULT WINAPI UriBuilder_GetPath(IUriBuilder *iface, DWORD *pcchPath, LPCWSTR *ppwzPath)
5498 {
5499     UriBuilder *This = impl_from_IUriBuilder(iface);
5500     TRACE("(%p)->(%p %p)\n", This, pcchPath, ppwzPath);
5501
5502     if(!This->uri || This->uri->path_start == -1 || This->modified_props & Uri_HAS_PATH)
5503         return get_builder_component(&This->path, &This->path_len, NULL, 0, ppwzPath, pcchPath);
5504     else
5505         return get_builder_component(&This->path, &This->path_len, This->uri->canon_uri+This->uri->path_start,
5506                                      This->uri->path_len, ppwzPath, pcchPath);
5507 }
5508
5509 static HRESULT WINAPI UriBuilder_GetPort(IUriBuilder *iface, BOOL *pfHasPort, DWORD *pdwPort)
5510 {
5511     UriBuilder *This = impl_from_IUriBuilder(iface);
5512     TRACE("(%p)->(%p %p)\n", This, pfHasPort, pdwPort);
5513
5514     if(!pfHasPort) {
5515         if(pdwPort)
5516             *pdwPort = 0;
5517         return E_POINTER;
5518     }
5519
5520     if(!pdwPort) {
5521         *pfHasPort = FALSE;
5522         return E_POINTER;
5523     }
5524
5525     *pfHasPort = This->has_port;
5526     *pdwPort = This->port;
5527     return S_OK;
5528 }
5529
5530 static HRESULT WINAPI UriBuilder_GetQuery(IUriBuilder *iface, DWORD *pcchQuery, LPCWSTR *ppwzQuery)
5531 {
5532     UriBuilder *This = impl_from_IUriBuilder(iface);
5533     TRACE("(%p)->(%p %p)\n", This, pcchQuery, ppwzQuery);
5534
5535     if(!This->uri || This->uri->query_start == -1 || This->modified_props & Uri_HAS_QUERY)
5536         return get_builder_component(&This->query, &This->query_len, NULL, 0, ppwzQuery, pcchQuery);
5537     else
5538         return get_builder_component(&This->query, &This->query_len, This->uri->canon_uri+This->uri->query_start,
5539                                      This->uri->query_len, ppwzQuery, pcchQuery);
5540 }
5541
5542 static HRESULT WINAPI UriBuilder_GetSchemeName(IUriBuilder *iface, DWORD *pcchSchemeName, LPCWSTR *ppwzSchemeName)
5543 {
5544     UriBuilder *This = impl_from_IUriBuilder(iface);
5545     TRACE("(%p)->(%p %p)\n", This, pcchSchemeName, ppwzSchemeName);
5546
5547     if(!This->uri || This->uri->scheme_start == -1 || This->modified_props & Uri_HAS_SCHEME_NAME)
5548         return get_builder_component(&This->scheme, &This->scheme_len, NULL, 0, ppwzSchemeName, pcchSchemeName);
5549     else
5550         return get_builder_component(&This->scheme, &This->scheme_len, This->uri->canon_uri+This->uri->scheme_start,
5551                                      This->uri->scheme_len, ppwzSchemeName, pcchSchemeName);
5552 }
5553
5554 static HRESULT WINAPI UriBuilder_GetUserName(IUriBuilder *iface, DWORD *pcchUserName, LPCWSTR *ppwzUserName)
5555 {
5556     UriBuilder *This = impl_from_IUriBuilder(iface);
5557     TRACE("(%p)->(%p %p)\n", This, pcchUserName, ppwzUserName);
5558
5559     if(!This->uri || This->uri->userinfo_start == -1 || This->uri->userinfo_split == 0 ||
5560        This->modified_props & Uri_HAS_USER_NAME)
5561         return get_builder_component(&This->username, &This->username_len, NULL, 0, ppwzUserName, pcchUserName);
5562     else {
5563         const WCHAR *start = This->uri->canon_uri+This->uri->userinfo_start;
5564
5565         /* Check if there's a password in the userinfo section. */
5566         if(This->uri->userinfo_split > -1)
5567             /* Don't include the password. */
5568             return get_builder_component(&This->username, &This->username_len, start,
5569                                          This->uri->userinfo_split, ppwzUserName, pcchUserName);
5570         else
5571             return get_builder_component(&This->username, &This->username_len, start,
5572                                          This->uri->userinfo_len, ppwzUserName, pcchUserName);
5573     }
5574 }
5575
5576 static HRESULT WINAPI UriBuilder_SetFragment(IUriBuilder *iface, LPCWSTR pwzNewValue)
5577 {
5578     UriBuilder *This = impl_from_IUriBuilder(iface);
5579     TRACE("(%p)->(%s)\n", This, debugstr_w(pwzNewValue));
5580     return set_builder_component(&This->fragment, &This->fragment_len, pwzNewValue, '#',
5581                                  &This->modified_props, Uri_HAS_FRAGMENT);
5582 }
5583
5584 static HRESULT WINAPI UriBuilder_SetHost(IUriBuilder *iface, LPCWSTR pwzNewValue)
5585 {
5586     UriBuilder *This = impl_from_IUriBuilder(iface);
5587     TRACE("(%p)->(%s)\n", This, debugstr_w(pwzNewValue));
5588
5589     /* Host name can't be set to NULL. */
5590     if(!pwzNewValue)
5591         return E_INVALIDARG;
5592
5593     return set_builder_component(&This->host, &This->host_len, pwzNewValue, 0,
5594                                  &This->modified_props, Uri_HAS_HOST);
5595 }
5596
5597 static HRESULT WINAPI UriBuilder_SetPassword(IUriBuilder *iface, LPCWSTR pwzNewValue)
5598 {
5599     UriBuilder *This = impl_from_IUriBuilder(iface);
5600     TRACE("(%p)->(%s)\n", This, debugstr_w(pwzNewValue));
5601     return set_builder_component(&This->password, &This->password_len, pwzNewValue, 0,
5602                                  &This->modified_props, Uri_HAS_PASSWORD);
5603 }
5604
5605 static HRESULT WINAPI UriBuilder_SetPath(IUriBuilder *iface, LPCWSTR pwzNewValue)
5606 {
5607     UriBuilder *This = impl_from_IUriBuilder(iface);
5608     TRACE("(%p)->(%s)\n", This, debugstr_w(pwzNewValue));
5609     return set_builder_component(&This->path, &This->path_len, pwzNewValue, 0,
5610                                  &This->modified_props, Uri_HAS_PATH);
5611 }
5612
5613 static HRESULT WINAPI UriBuilder_SetPort(IUriBuilder *iface, BOOL fHasPort, DWORD dwNewValue)
5614 {
5615     UriBuilder *This = impl_from_IUriBuilder(iface);
5616     TRACE("(%p)->(%d %d)\n", This, fHasPort, dwNewValue);
5617
5618     This->has_port = fHasPort;
5619     This->port = dwNewValue;
5620     This->modified_props |= Uri_HAS_PORT;
5621     return S_OK;
5622 }
5623
5624 static HRESULT WINAPI UriBuilder_SetQuery(IUriBuilder *iface, LPCWSTR pwzNewValue)
5625 {
5626     UriBuilder *This = impl_from_IUriBuilder(iface);
5627     TRACE("(%p)->(%s)\n", This, debugstr_w(pwzNewValue));
5628     return set_builder_component(&This->query, &This->query_len, pwzNewValue, '?',
5629                                  &This->modified_props, Uri_HAS_QUERY);
5630 }
5631
5632 static HRESULT WINAPI UriBuilder_SetSchemeName(IUriBuilder *iface, LPCWSTR pwzNewValue)
5633 {
5634     UriBuilder *This = impl_from_IUriBuilder(iface);
5635     TRACE("(%p)->(%s)\n", This, debugstr_w(pwzNewValue));
5636
5637     /* Only set the scheme name if it's not NULL or empty. */
5638     if(!pwzNewValue || !*pwzNewValue)
5639         return E_INVALIDARG;
5640
5641     return set_builder_component(&This->scheme, &This->scheme_len, pwzNewValue, 0,
5642                                  &This->modified_props, Uri_HAS_SCHEME_NAME);
5643 }
5644
5645 static HRESULT WINAPI UriBuilder_SetUserName(IUriBuilder *iface, LPCWSTR pwzNewValue)
5646 {
5647     UriBuilder *This = impl_from_IUriBuilder(iface);
5648     TRACE("(%p)->(%s)\n", This, debugstr_w(pwzNewValue));
5649     return set_builder_component(&This->username, &This->username_len, pwzNewValue, 0,
5650                                  &This->modified_props, Uri_HAS_USER_NAME);
5651 }
5652
5653 static HRESULT WINAPI UriBuilder_RemoveProperties(IUriBuilder *iface, DWORD dwPropertyMask)
5654 {
5655     const DWORD accepted_flags = Uri_HAS_AUTHORITY|Uri_HAS_DOMAIN|Uri_HAS_EXTENSION|Uri_HAS_FRAGMENT|Uri_HAS_HOST|
5656                                  Uri_HAS_PASSWORD|Uri_HAS_PATH|Uri_HAS_PATH_AND_QUERY|Uri_HAS_QUERY|
5657                                  Uri_HAS_USER_INFO|Uri_HAS_USER_NAME;
5658
5659     UriBuilder *This = impl_from_IUriBuilder(iface);
5660     TRACE("(%p)->(0x%08x)\n", This, dwPropertyMask);
5661
5662     if(dwPropertyMask & ~accepted_flags)
5663         return E_INVALIDARG;
5664
5665     if(dwPropertyMask & Uri_HAS_FRAGMENT)
5666         UriBuilder_SetFragment(iface, NULL);
5667
5668     /* Even though you can't set the host name to NULL or an
5669      * empty string, you can still remove it... for some reason.
5670      */
5671     if(dwPropertyMask & Uri_HAS_HOST)
5672         set_builder_component(&This->host, &This->host_len, NULL, 0,
5673                               &This->modified_props, Uri_HAS_HOST);
5674
5675     if(dwPropertyMask & Uri_HAS_PASSWORD)
5676         UriBuilder_SetPassword(iface, NULL);
5677
5678     if(dwPropertyMask & Uri_HAS_PATH)
5679         UriBuilder_SetPath(iface, NULL);
5680
5681     if(dwPropertyMask & Uri_HAS_PORT)
5682         UriBuilder_SetPort(iface, FALSE, 0);
5683
5684     if(dwPropertyMask & Uri_HAS_QUERY)
5685         UriBuilder_SetQuery(iface, NULL);
5686
5687     if(dwPropertyMask & Uri_HAS_USER_NAME)
5688         UriBuilder_SetUserName(iface, NULL);
5689
5690     return S_OK;
5691 }
5692
5693 static HRESULT WINAPI UriBuilder_HasBeenModified(IUriBuilder *iface, BOOL *pfModified)
5694 {
5695     UriBuilder *This = impl_from_IUriBuilder(iface);
5696     TRACE("(%p)->(%p)\n", This, pfModified);
5697
5698     if(!pfModified)
5699         return E_POINTER;
5700
5701     *pfModified = This->modified_props > 0;
5702     return S_OK;
5703 }
5704
5705 static const IUriBuilderVtbl UriBuilderVtbl = {
5706     UriBuilder_QueryInterface,
5707     UriBuilder_AddRef,
5708     UriBuilder_Release,
5709     UriBuilder_CreateUriSimple,
5710     UriBuilder_CreateUri,
5711     UriBuilder_CreateUriWithFlags,
5712     UriBuilder_GetIUri,
5713     UriBuilder_SetIUri,
5714     UriBuilder_GetFragment,
5715     UriBuilder_GetHost,
5716     UriBuilder_GetPassword,
5717     UriBuilder_GetPath,
5718     UriBuilder_GetPort,
5719     UriBuilder_GetQuery,
5720     UriBuilder_GetSchemeName,
5721     UriBuilder_GetUserName,
5722     UriBuilder_SetFragment,
5723     UriBuilder_SetHost,
5724     UriBuilder_SetPassword,
5725     UriBuilder_SetPath,
5726     UriBuilder_SetPort,
5727     UriBuilder_SetQuery,
5728     UriBuilder_SetSchemeName,
5729     UriBuilder_SetUserName,
5730     UriBuilder_RemoveProperties,
5731     UriBuilder_HasBeenModified,
5732 };
5733
5734 /***********************************************************************
5735  *           CreateIUriBuilder (urlmon.@)
5736  */
5737 HRESULT WINAPI CreateIUriBuilder(IUri *pIUri, DWORD dwFlags, DWORD_PTR dwReserved, IUriBuilder **ppIUriBuilder)
5738 {
5739     UriBuilder *ret;
5740
5741     TRACE("(%p %x %x %p)\n", pIUri, dwFlags, (DWORD)dwReserved, ppIUriBuilder);
5742
5743     if(!ppIUriBuilder)
5744         return E_POINTER;
5745
5746     ret = heap_alloc_zero(sizeof(UriBuilder));
5747     if(!ret)
5748         return E_OUTOFMEMORY;
5749
5750     ret->IUriBuilder_iface.lpVtbl = &UriBuilderVtbl;
5751     ret->ref = 1;
5752
5753     if(pIUri) {
5754         Uri *uri;
5755
5756         if((uri = get_uri_obj(pIUri))) {
5757             IUri_AddRef(pIUri);
5758             ret->uri = uri;
5759
5760             if(uri->has_port)
5761                 /* Windows doesn't set 'has_port' to TRUE in this case. */
5762                 ret->port = uri->port;
5763
5764         } else {
5765             heap_free(ret);
5766             *ppIUriBuilder = NULL;
5767             FIXME("(%p %x %x %p): Unknown IUri types not supported yet.\n", pIUri, dwFlags,
5768                 (DWORD)dwReserved, ppIUriBuilder);
5769             return E_NOTIMPL;
5770         }
5771     }
5772
5773     *ppIUriBuilder = &ret->IUriBuilder_iface;
5774     return S_OK;
5775 }
5776
5777 /* Merges the base path with the relative path and stores the resulting path
5778  * and path len in 'result' and 'result_len'.
5779  */
5780 static HRESULT merge_paths(parse_data *data, const WCHAR *base, DWORD base_len, const WCHAR *relative,
5781                            DWORD relative_len, WCHAR **result, DWORD *result_len, DWORD flags)
5782 {
5783     const WCHAR *end = NULL;
5784     DWORD base_copy_len = 0;
5785     WCHAR *ptr;
5786
5787     if(base_len) {
5788         /* Find the characters the will be copied over from
5789          * the base path.
5790          */
5791         end = memrchrW(base, '/', base_len);
5792         if(!end && data->scheme_type == URL_SCHEME_FILE)
5793             /* Try looking for a '\\'. */
5794             end = memrchrW(base, '\\', base_len);
5795     }
5796
5797     if(end) {
5798         base_copy_len = (end+1)-base;
5799         *result = heap_alloc((base_copy_len+relative_len+1)*sizeof(WCHAR));
5800     } else
5801         *result = heap_alloc((relative_len+1)*sizeof(WCHAR));
5802
5803     if(!(*result)) {
5804         *result_len = 0;
5805         return E_OUTOFMEMORY;
5806     }
5807
5808     ptr = *result;
5809     if(end) {
5810         memcpy(ptr, base, base_copy_len*sizeof(WCHAR));
5811         ptr += base_copy_len;
5812     }
5813
5814     memcpy(ptr, relative, relative_len*sizeof(WCHAR));
5815     ptr += relative_len;
5816     *ptr = '\0';
5817
5818     *result_len = (ptr-*result);
5819     return S_OK;
5820 }
5821
5822 static HRESULT combine_uri(Uri *base, Uri *relative, DWORD flags, IUri **result, DWORD extras) {
5823     Uri *ret;
5824     HRESULT hr;
5825     parse_data data;
5826     DWORD create_flags = 0, len = 0;
5827
5828     memset(&data, 0, sizeof(parse_data));
5829
5830     /* Base case is when the relative Uri has a scheme name,
5831      * if it does, then 'result' will contain the same data
5832      * as the relative Uri.
5833      */
5834     if(relative->scheme_start > -1) {
5835         data.uri = SysAllocString(relative->raw_uri);
5836         if(!data.uri) {
5837             *result = NULL;
5838             return E_OUTOFMEMORY;
5839         }
5840
5841         parse_uri(&data, 0);
5842
5843         ret = create_uri_obj();
5844         if(!ret) {
5845             *result = NULL;
5846             return E_OUTOFMEMORY;
5847         }
5848
5849         if(extras & COMBINE_URI_FORCE_FLAG_USE) {
5850             if(flags & URL_DONT_SIMPLIFY)
5851                 create_flags |= Uri_CREATE_NO_CANONICALIZE;
5852             if(flags & URL_DONT_UNESCAPE_EXTRA_INFO)
5853                 create_flags |= Uri_CREATE_NO_DECODE_EXTRA_INFO;
5854         }
5855
5856         ret->raw_uri = data.uri;
5857         hr = canonicalize_uri(&data, ret, create_flags);
5858         if(FAILED(hr)) {
5859             IUri_Release(&ret->IUri_iface);
5860             *result = NULL;
5861             return hr;
5862         }
5863
5864         apply_default_flags(&create_flags);
5865         ret->create_flags = create_flags;
5866
5867         *result = &ret->IUri_iface;
5868     } else {
5869         WCHAR *path = NULL;
5870         DWORD raw_flags = 0;
5871
5872         if(base->scheme_start > -1) {
5873             data.scheme = base->canon_uri+base->scheme_start;
5874             data.scheme_len = base->scheme_len;
5875             data.scheme_type = base->scheme_type;
5876         } else {
5877             data.is_relative = TRUE;
5878             data.scheme_type = URL_SCHEME_UNKNOWN;
5879             create_flags |= Uri_CREATE_ALLOW_RELATIVE;
5880         }
5881
5882         if(base->authority_start > -1) {
5883             if(base->userinfo_start > -1 && base->userinfo_split != 0) {
5884                 data.username = base->canon_uri+base->userinfo_start;
5885                 data.username_len = (base->userinfo_split > -1) ? base->userinfo_split : base->userinfo_len;
5886             }
5887
5888             if(base->userinfo_split > -1) {
5889                 data.password = base->canon_uri+base->userinfo_start+base->userinfo_split+1;
5890                 data.password_len = base->userinfo_len-base->userinfo_split-1;
5891             }
5892
5893             if(base->host_start > -1) {
5894                 data.host = base->canon_uri+base->host_start;
5895                 data.host_len = base->host_len;
5896                 data.host_type = base->host_type;
5897             }
5898
5899             if(base->has_port) {
5900                 data.has_port = TRUE;
5901                 data.port_value = base->port;
5902             }
5903         } else if(base->scheme_type != URL_SCHEME_FILE)
5904             data.is_opaque = TRUE;
5905
5906         if(relative->path_start == -1 || !relative->path_len) {
5907             if(base->path_start > -1) {
5908                 data.path = base->canon_uri+base->path_start;
5909                 data.path_len = base->path_len;
5910             } else if((base->path_start == -1 || !base->path_len) && !data.is_opaque) {
5911                 /* Just set the path as a '/' if the base didn't have
5912                  * one and if it's an hierarchical URI.
5913                  */
5914                 static const WCHAR slashW[] = {'/',0};
5915                 data.path = slashW;
5916                 data.path_len = 1;
5917             }
5918
5919             if(relative->query_start > -1) {
5920                 data.query = relative->canon_uri+relative->query_start;
5921                 data.query_len = relative->query_len;
5922             } else if(base->query_start > -1) {
5923                 data.query = base->canon_uri+base->query_start;
5924                 data.query_len = base->query_len;
5925             }
5926         } else {
5927             const WCHAR *ptr, **pptr;
5928             DWORD path_offset = 0, path_len = 0;
5929
5930             /* There's two possibilities on what will happen to the path component
5931              * of the result IUri. First, if the relative path begins with a '/'
5932              * then the resulting path will just be the relative path. Second, if
5933              * relative path doesn't begin with a '/' then the base path and relative
5934              * path are merged together.
5935              */
5936             if(relative->path_len && *(relative->canon_uri+relative->path_start) == '/') {
5937                 WCHAR *tmp = NULL;
5938                 BOOL copy_drive_path = FALSE;
5939
5940                 /* If the relative IUri's path starts with a '/', then we
5941                  * don't use the base IUri's path. Unless the base IUri
5942                  * is a file URI, in which case it uses the drive path of
5943                  * the base IUri (if it has any) in the new path.
5944                  */
5945                 if(base->scheme_type == URL_SCHEME_FILE) {
5946                     if(base->path_len > 3 && *(base->canon_uri+base->path_start) == '/' &&
5947                        is_drive_path(base->canon_uri+base->path_start+1)) {
5948                         path_len += 3;
5949                         copy_drive_path = TRUE;
5950                     }
5951                 }
5952
5953                 path_len += relative->path_len;
5954
5955                 path = heap_alloc((path_len+1)*sizeof(WCHAR));
5956                 if(!path) {
5957                     *result = NULL;
5958                     return E_OUTOFMEMORY;
5959                 }
5960
5961                 tmp = path;
5962
5963                 /* Copy the base paths, drive path over. */
5964                 if(copy_drive_path) {
5965                     memcpy(tmp, base->canon_uri+base->path_start, 3*sizeof(WCHAR));
5966                     tmp += 3;
5967                 }
5968
5969                 memcpy(tmp, relative->canon_uri+relative->path_start, relative->path_len*sizeof(WCHAR));
5970                 path[path_len] = '\0';
5971             } else {
5972                 /* Merge the base path with the relative path. */
5973                 hr = merge_paths(&data, base->canon_uri+base->path_start, base->path_len,
5974                                  relative->canon_uri+relative->path_start, relative->path_len,
5975                                  &path, &path_len, flags);
5976                 if(FAILED(hr)) {
5977                     *result = NULL;
5978                     return hr;
5979                 }
5980
5981                 /* If the resulting IUri is a file URI, the drive path isn't
5982                  * reduced out when the dot segments are removed.
5983                  */
5984                 if(path_len >= 3 && data.scheme_type == URL_SCHEME_FILE && !data.host) {
5985                     if(*path == '/' && is_drive_path(path+1))
5986                         path_offset = 2;
5987                     else if(is_drive_path(path))
5988                         path_offset = 1;
5989                 }
5990             }
5991
5992             /* Check if the dot segments need to be removed from the path. */
5993             if(!(flags & URL_DONT_SIMPLIFY) && !data.is_opaque) {
5994                 DWORD offset = (path_offset > 0) ? path_offset+1 : 0;
5995                 DWORD new_len = remove_dot_segments(path+offset,path_len-offset);
5996
5997                 if(new_len != path_len) {
5998                     WCHAR *tmp = heap_realloc(path, (offset+new_len+1)*sizeof(WCHAR));
5999                     if(!tmp) {
6000                         heap_free(path);
6001                         *result = NULL;
6002                         return E_OUTOFMEMORY;
6003                     }
6004
6005                     tmp[new_len+offset] = '\0';
6006                     path = tmp;
6007                     path_len = new_len+offset;
6008                 }
6009             }
6010
6011             if(relative->query_start > -1) {
6012                 data.query = relative->canon_uri+relative->query_start;
6013                 data.query_len = relative->query_len;
6014             }
6015
6016             /* Make sure the path component is valid. */
6017             ptr = path;
6018             pptr = &ptr;
6019             if((data.is_opaque && !parse_path_opaque(pptr, &data, 0)) ||
6020                (!data.is_opaque && !parse_path_hierarchical(pptr, &data, 0))) {
6021                 heap_free(path);
6022                 *result = NULL;
6023                 return E_INVALIDARG;
6024             }
6025         }
6026
6027         if(relative->fragment_start > -1) {
6028             data.fragment = relative->canon_uri+relative->fragment_start;
6029             data.fragment_len = relative->fragment_len;
6030         }
6031
6032         if(flags & URL_DONT_SIMPLIFY)
6033             raw_flags |= RAW_URI_FORCE_PORT_DISP;
6034         if(flags & URL_FILE_USE_PATHURL)
6035             raw_flags |= RAW_URI_CONVERT_TO_DOS_PATH;
6036
6037         len = generate_raw_uri(&data, data.uri, raw_flags);
6038         data.uri = SysAllocStringLen(NULL, len);
6039         if(!data.uri) {
6040             heap_free(path);
6041             *result = NULL;
6042             return E_OUTOFMEMORY;
6043         }
6044
6045         generate_raw_uri(&data, data.uri, raw_flags);
6046
6047         ret = create_uri_obj();
6048         if(!ret) {
6049             SysFreeString(data.uri);
6050             heap_free(path);
6051             *result = NULL;
6052             return E_OUTOFMEMORY;
6053         }
6054
6055         if(flags & URL_DONT_SIMPLIFY)
6056             create_flags |= Uri_CREATE_NO_CANONICALIZE;
6057         if(flags & URL_FILE_USE_PATHURL)
6058             create_flags |= Uri_CREATE_FILE_USE_DOS_PATH;
6059
6060         ret->raw_uri = data.uri;
6061         hr = canonicalize_uri(&data, ret, create_flags);
6062         if(FAILED(hr)) {
6063             IUri_Release(&ret->IUri_iface);
6064             *result = NULL;
6065             return hr;
6066         }
6067
6068         if(flags & URL_DONT_SIMPLIFY)
6069             ret->display_modifiers |= URI_DISPLAY_NO_DEFAULT_PORT_AUTH;
6070
6071         apply_default_flags(&create_flags);
6072         ret->create_flags = create_flags;
6073         *result = &ret->IUri_iface;
6074
6075         heap_free(path);
6076     }
6077
6078     return S_OK;
6079 }
6080
6081 /***********************************************************************
6082  *           CoInternetCombineIUri (urlmon.@)
6083  */
6084 HRESULT WINAPI CoInternetCombineIUri(IUri *pBaseUri, IUri *pRelativeUri, DWORD dwCombineFlags,
6085                                      IUri **ppCombinedUri, DWORD_PTR dwReserved)
6086 {
6087     HRESULT hr;
6088     IInternetProtocolInfo *info;
6089     Uri *relative, *base;
6090     TRACE("(%p %p %x %p %x)\n", pBaseUri, pRelativeUri, dwCombineFlags, ppCombinedUri, (DWORD)dwReserved);
6091
6092     if(!ppCombinedUri)
6093         return E_INVALIDARG;
6094
6095     if(!pBaseUri || !pRelativeUri) {
6096         *ppCombinedUri = NULL;
6097         return E_INVALIDARG;
6098     }
6099
6100     relative = get_uri_obj(pRelativeUri);
6101     base = get_uri_obj(pBaseUri);
6102     if(!relative || !base) {
6103         *ppCombinedUri = NULL;
6104         FIXME("(%p %p %x %p %x) Unknown IUri types not supported yet.\n",
6105             pBaseUri, pRelativeUri, dwCombineFlags, ppCombinedUri, (DWORD)dwReserved);
6106         return E_NOTIMPL;
6107     }
6108
6109     info = get_protocol_info(base->canon_uri);
6110     if(info) {
6111         WCHAR result[INTERNET_MAX_URL_LENGTH+1];
6112         DWORD result_len = 0;
6113
6114         hr = IInternetProtocolInfo_CombineUrl(info, base->canon_uri, relative->canon_uri, dwCombineFlags,
6115                                               result, INTERNET_MAX_URL_LENGTH+1, &result_len, 0);
6116         IInternetProtocolInfo_Release(info);
6117         if(SUCCEEDED(hr)) {
6118             hr = CreateUri(result, Uri_CREATE_ALLOW_RELATIVE, 0, ppCombinedUri);
6119             if(SUCCEEDED(hr))
6120                 return hr;
6121         }
6122     }
6123
6124     return combine_uri(base, relative, dwCombineFlags, ppCombinedUri, 0);
6125 }
6126
6127 /***********************************************************************
6128  *           CoInternetCombineUrlEx (urlmon.@)
6129  */
6130 HRESULT WINAPI CoInternetCombineUrlEx(IUri *pBaseUri, LPCWSTR pwzRelativeUrl, DWORD dwCombineFlags,
6131                                       IUri **ppCombinedUri, DWORD_PTR dwReserved)
6132 {
6133     IUri *relative;
6134     Uri *base;
6135     HRESULT hr;
6136     IInternetProtocolInfo *info;
6137
6138     TRACE("(%p %s %x %p %x) stub\n", pBaseUri, debugstr_w(pwzRelativeUrl), dwCombineFlags,
6139         ppCombinedUri, (DWORD)dwReserved);
6140
6141     if(!ppCombinedUri)
6142         return E_POINTER;
6143
6144     if(!pwzRelativeUrl) {
6145         *ppCombinedUri = NULL;
6146         return E_UNEXPECTED;
6147     }
6148
6149     if(!pBaseUri) {
6150         *ppCombinedUri = NULL;
6151         return E_INVALIDARG;
6152     }
6153
6154     base = get_uri_obj(pBaseUri);
6155     if(!base) {
6156         *ppCombinedUri = NULL;
6157         FIXME("(%p %s %x %p %x) Unknown IUri's not supported yet.\n", pBaseUri, debugstr_w(pwzRelativeUrl),
6158             dwCombineFlags, ppCombinedUri, (DWORD)dwReserved);
6159         return E_NOTIMPL;
6160     }
6161
6162     info = get_protocol_info(base->canon_uri);
6163     if(info) {
6164         WCHAR result[INTERNET_MAX_URL_LENGTH+1];
6165         DWORD result_len = 0;
6166
6167         hr = IInternetProtocolInfo_CombineUrl(info, base->canon_uri, pwzRelativeUrl, dwCombineFlags,
6168                                               result, INTERNET_MAX_URL_LENGTH+1, &result_len, 0);
6169         IInternetProtocolInfo_Release(info);
6170         if(SUCCEEDED(hr)) {
6171             hr = CreateUri(result, Uri_CREATE_ALLOW_RELATIVE, 0, ppCombinedUri);
6172             if(SUCCEEDED(hr))
6173                 return hr;
6174         }
6175     }
6176
6177     hr = CreateUri(pwzRelativeUrl, Uri_CREATE_ALLOW_RELATIVE, 0, &relative);
6178     if(FAILED(hr)) {
6179         *ppCombinedUri = NULL;
6180         return hr;
6181     }
6182
6183     hr = combine_uri(base, get_uri_obj(relative), dwCombineFlags, ppCombinedUri, COMBINE_URI_FORCE_FLAG_USE);
6184
6185     IUri_Release(relative);
6186     return hr;
6187 }
6188
6189 static HRESULT parse_canonicalize(const Uri *uri, DWORD flags, LPWSTR output,
6190                                   DWORD output_len, DWORD *result_len)
6191 {
6192     const WCHAR *ptr = NULL;
6193     WCHAR *path = NULL;
6194     const WCHAR **pptr;
6195     WCHAR buffer[INTERNET_MAX_URL_LENGTH+1];
6196     DWORD len = 0;
6197     BOOL reduce_path;
6198
6199     /* URL_UNESCAPE only has effect if none of the URL_ESCAPE flags are set. */
6200     const BOOL allow_unescape = !(flags & URL_ESCAPE_UNSAFE) &&
6201                                 !(flags & URL_ESCAPE_SPACES_ONLY) &&
6202                                 !(flags & URL_ESCAPE_PERCENT);
6203
6204
6205     /* Check if the dot segments need to be removed from the
6206      * path component.
6207      */
6208     if(uri->scheme_start > -1 && uri->path_start > -1) {
6209         ptr = uri->canon_uri+uri->scheme_start+uri->scheme_len+1;
6210         pptr = &ptr;
6211     }
6212     reduce_path = !(flags & URL_NO_META) &&
6213                   !(flags & URL_DONT_SIMPLIFY) &&
6214                   ptr && check_hierarchical(pptr);
6215
6216     for(ptr = uri->canon_uri; ptr < uri->canon_uri+uri->canon_len; ++ptr) {
6217         BOOL do_default_action = TRUE;
6218
6219         /* Keep track of the path if we need to remove dot segments from
6220          * it later.
6221          */
6222         if(reduce_path && !path && ptr == uri->canon_uri+uri->path_start)
6223             path = buffer+len;
6224
6225         /* Check if it's time to reduce the path. */
6226         if(reduce_path && ptr == uri->canon_uri+uri->path_start+uri->path_len) {
6227             DWORD current_path_len = (buffer+len) - path;
6228             DWORD new_path_len = remove_dot_segments(path, current_path_len);
6229
6230             /* Update the current length. */
6231             len -= (current_path_len-new_path_len);
6232             reduce_path = FALSE;
6233         }
6234
6235         if(*ptr == '%') {
6236             const WCHAR decoded = decode_pct_val(ptr);
6237             if(decoded) {
6238                 if(allow_unescape && (flags & URL_UNESCAPE)) {
6239                     buffer[len++] = decoded;
6240                     ptr += 2;
6241                     do_default_action = FALSE;
6242                 }
6243             }
6244
6245             /* See if %'s needed to encoded. */
6246             if(do_default_action && (flags & URL_ESCAPE_PERCENT)) {
6247                 pct_encode_val(*ptr, buffer+len);
6248                 len += 3;
6249                 do_default_action = FALSE;
6250             }
6251         } else if(*ptr == ' ') {
6252             if((flags & URL_ESCAPE_SPACES_ONLY) &&
6253                !(flags & URL_ESCAPE_UNSAFE)) {
6254                 pct_encode_val(*ptr, buffer+len);
6255                 len += 3;
6256                 do_default_action = FALSE;
6257             }
6258         } else if(!is_reserved(*ptr) && !is_unreserved(*ptr)) {
6259             if(flags & URL_ESCAPE_UNSAFE) {
6260                 pct_encode_val(*ptr, buffer+len);
6261                 len += 3;
6262                 do_default_action = FALSE;
6263             }
6264         }
6265
6266         if(do_default_action)
6267             buffer[len++] = *ptr;
6268     }
6269
6270     /* Sometimes the path is the very last component of the IUri, so
6271      * see if the dot segments need to be reduced now.
6272      */
6273     if(reduce_path && path) {
6274         DWORD current_path_len = (buffer+len) - path;
6275         DWORD new_path_len = remove_dot_segments(path, current_path_len);
6276
6277         /* Update the current length. */
6278         len -= (current_path_len-new_path_len);
6279     }
6280
6281     buffer[len++] = 0;
6282
6283     /* The null terminator isn't included the length. */
6284     *result_len = len-1;
6285     if(len > output_len)
6286         return STRSAFE_E_INSUFFICIENT_BUFFER;
6287     else
6288         memcpy(output, buffer, len*sizeof(WCHAR));
6289
6290     return S_OK;
6291 }
6292
6293 static HRESULT parse_friendly(IUri *uri, LPWSTR output, DWORD output_len,
6294                               DWORD *result_len)
6295 {
6296     HRESULT hr;
6297     DWORD display_len;
6298     BSTR display;
6299
6300     hr = IUri_GetPropertyLength(uri, Uri_PROPERTY_DISPLAY_URI, &display_len, 0);
6301     if(FAILED(hr)) {
6302         *result_len = 0;
6303         return hr;
6304     }
6305
6306     *result_len = display_len;
6307     if(display_len+1 > output_len)
6308         return STRSAFE_E_INSUFFICIENT_BUFFER;
6309
6310     hr = IUri_GetDisplayUri(uri, &display);
6311     if(FAILED(hr)) {
6312         *result_len = 0;
6313         return hr;
6314     }
6315
6316     memcpy(output, display, (display_len+1)*sizeof(WCHAR));
6317     SysFreeString(display);
6318     return S_OK;
6319 }
6320
6321 static HRESULT parse_rootdocument(const Uri *uri, LPWSTR output, DWORD output_len,
6322                                   DWORD *result_len)
6323 {
6324     static const WCHAR colon_slashesW[] = {':','/','/'};
6325
6326     WCHAR *ptr;
6327     DWORD len = 0;
6328
6329     /* Windows only returns the root document if the URI has an authority
6330      * and it's not an unknown scheme type or a file scheme type.
6331      */
6332     if(uri->authority_start == -1 ||
6333        uri->scheme_type == URL_SCHEME_UNKNOWN ||
6334        uri->scheme_type == URL_SCHEME_FILE) {
6335         *result_len = 0;
6336         if(!output_len)
6337             return STRSAFE_E_INSUFFICIENT_BUFFER;
6338
6339         output[0] = 0;
6340         return S_OK;
6341     }
6342
6343     len = uri->scheme_len+uri->authority_len;
6344     /* For the "://" and '/' which will be added. */
6345     len += 4;
6346
6347     if(len+1 > output_len) {
6348         *result_len = len;
6349         return STRSAFE_E_INSUFFICIENT_BUFFER;
6350     }
6351
6352     ptr = output;
6353     memcpy(ptr, uri->canon_uri+uri->scheme_start, uri->scheme_len*sizeof(WCHAR));
6354
6355     /* Add the "://". */
6356     ptr += uri->scheme_len;
6357     memcpy(ptr, colon_slashesW, sizeof(colon_slashesW));
6358
6359     /* Add the authority. */
6360     ptr += sizeof(colon_slashesW)/sizeof(WCHAR);
6361     memcpy(ptr, uri->canon_uri+uri->authority_start, uri->authority_len*sizeof(WCHAR));
6362
6363     /* Add the '/' after the authority. */
6364     ptr += uri->authority_len;
6365     *ptr = '/';
6366     ptr[1] = 0;
6367
6368     *result_len = len;
6369     return S_OK;
6370 }
6371
6372 static HRESULT parse_document(const Uri *uri, LPWSTR output, DWORD output_len,
6373                               DWORD *result_len)
6374 {
6375     DWORD len = 0;
6376
6377     /* It has to be a known scheme type, but, it can't be a file
6378      * scheme. It also has to hierarchical.
6379      */
6380     if(uri->scheme_type == URL_SCHEME_UNKNOWN ||
6381        uri->scheme_type == URL_SCHEME_FILE ||
6382        uri->authority_start == -1) {
6383         *result_len = 0;
6384         if(output_len < 1)
6385             return STRSAFE_E_INSUFFICIENT_BUFFER;
6386
6387         output[0] = 0;
6388         return S_OK;
6389     }
6390
6391     if(uri->fragment_start > -1)
6392         len = uri->fragment_start;
6393     else
6394         len = uri->canon_len;
6395
6396     *result_len = len;
6397     if(len+1 > output_len)
6398         return STRSAFE_E_INSUFFICIENT_BUFFER;
6399
6400     memcpy(output, uri->canon_uri, len*sizeof(WCHAR));
6401     output[len] = 0;
6402     return S_OK;
6403 }
6404
6405 static HRESULT parse_path_from_url(const Uri *uri, LPWSTR output, DWORD output_len,
6406                                    DWORD *result_len)
6407 {
6408     const WCHAR *path_ptr;
6409     WCHAR buffer[INTERNET_MAX_URL_LENGTH+1];
6410     WCHAR *ptr;
6411
6412     if(uri->scheme_type != URL_SCHEME_FILE) {
6413         *result_len = 0;
6414         if(output_len > 0)
6415             output[0] = 0;
6416         return E_INVALIDARG;
6417     }
6418
6419     ptr = buffer;
6420     if(uri->host_start > -1) {
6421         static const WCHAR slash_slashW[] = {'\\','\\'};
6422
6423         memcpy(ptr, slash_slashW, sizeof(slash_slashW));
6424         ptr += sizeof(slash_slashW)/sizeof(WCHAR);
6425         memcpy(ptr, uri->canon_uri+uri->host_start, uri->host_len*sizeof(WCHAR));
6426         ptr += uri->host_len;
6427     }
6428
6429     path_ptr = uri->canon_uri+uri->path_start;
6430     if(uri->path_len > 3 && *path_ptr == '/' && is_drive_path(path_ptr+1))
6431         /* Skip past the '/' in front of the drive path. */
6432         ++path_ptr;
6433
6434     for(; path_ptr < uri->canon_uri+uri->path_start+uri->path_len; ++path_ptr, ++ptr) {
6435         BOOL do_default_action = TRUE;
6436
6437         if(*path_ptr == '%') {
6438             const WCHAR decoded = decode_pct_val(path_ptr);
6439             if(decoded) {
6440                 *ptr = decoded;
6441                 path_ptr += 2;
6442                 do_default_action = FALSE;
6443             }
6444         } else if(*path_ptr == '/') {
6445             *ptr = '\\';
6446             do_default_action = FALSE;
6447         }
6448
6449         if(do_default_action)
6450             *ptr = *path_ptr;
6451     }
6452
6453     *ptr = 0;
6454
6455     *result_len = ptr-buffer;
6456     if(*result_len+1 > output_len)
6457         return STRSAFE_E_INSUFFICIENT_BUFFER;
6458
6459     memcpy(output, buffer, (*result_len+1)*sizeof(WCHAR));
6460     return S_OK;
6461 }
6462
6463 static HRESULT parse_url_from_path(IUri *uri, LPWSTR output, DWORD output_len,
6464                                    DWORD *result_len)
6465 {
6466     HRESULT hr;
6467     BSTR received;
6468     DWORD len = 0;
6469
6470     hr = IUri_GetPropertyLength(uri, Uri_PROPERTY_ABSOLUTE_URI, &len, 0);
6471     if(FAILED(hr)) {
6472         *result_len = 0;
6473         return hr;
6474     }
6475
6476     *result_len = len;
6477     if(len+1 > output_len)
6478         return STRSAFE_E_INSUFFICIENT_BUFFER;
6479
6480     hr = IUri_GetAbsoluteUri(uri, &received);
6481     if(FAILED(hr)) {
6482         *result_len = 0;
6483         return hr;
6484     }
6485
6486     memcpy(output, received, (len+1)*sizeof(WCHAR));
6487     SysFreeString(received);
6488
6489     return S_OK;
6490 }
6491
6492 static HRESULT parse_schema(IUri *uri, LPWSTR output, DWORD output_len,
6493                             DWORD *result_len)
6494 {
6495     HRESULT hr;
6496     DWORD len;
6497     BSTR received;
6498
6499     hr = IUri_GetPropertyLength(uri, Uri_PROPERTY_SCHEME_NAME, &len, 0);
6500     if(FAILED(hr)) {
6501         *result_len = 0;
6502         return hr;
6503     }
6504
6505     *result_len = len;
6506     if(len+1 > output_len)
6507         return STRSAFE_E_INSUFFICIENT_BUFFER;
6508
6509     hr = IUri_GetSchemeName(uri, &received);
6510     if(FAILED(hr)) {
6511         *result_len = 0;
6512         return hr;
6513     }
6514
6515     memcpy(output, received, (len+1)*sizeof(WCHAR));
6516     SysFreeString(received);
6517
6518     return S_OK;
6519 }
6520
6521 static HRESULT parse_site(IUri *uri, LPWSTR output, DWORD output_len, DWORD *result_len)
6522 {
6523     HRESULT hr;
6524     DWORD len;
6525     BSTR received;
6526
6527     hr = IUri_GetPropertyLength(uri, Uri_PROPERTY_HOST, &len, 0);
6528     if(FAILED(hr)) {
6529         *result_len = 0;
6530         return hr;
6531     }
6532
6533     *result_len = len;
6534     if(len+1 > output_len)
6535         return STRSAFE_E_INSUFFICIENT_BUFFER;
6536
6537     hr = IUri_GetHost(uri, &received);
6538     if(FAILED(hr)) {
6539         *result_len = 0;
6540         return hr;
6541     }
6542
6543     memcpy(output, received, (len+1)*sizeof(WCHAR));
6544     SysFreeString(received);
6545
6546     return S_OK;
6547 }
6548
6549 static HRESULT parse_domain(IUri *uri, LPWSTR output, DWORD output_len, DWORD *result_len)
6550 {
6551     HRESULT hr;
6552     DWORD len;
6553     BSTR received;
6554
6555     hr = IUri_GetPropertyLength(uri, Uri_PROPERTY_DOMAIN, &len, 0);
6556     if(FAILED(hr)) {
6557         *result_len = 0;
6558         return hr;
6559     }
6560
6561     *result_len = len;
6562     if(len+1 > output_len)
6563         return STRSAFE_E_INSUFFICIENT_BUFFER;
6564
6565     hr = IUri_GetDomain(uri, &received);
6566     if(FAILED(hr)) {
6567         *result_len = 0;
6568         return hr;
6569     }
6570
6571     memcpy(output, received, (len+1)*sizeof(WCHAR));
6572     SysFreeString(received);
6573
6574     return S_OK;
6575 }
6576
6577 static HRESULT parse_anchor(IUri *uri, LPWSTR output, DWORD output_len, DWORD *result_len)
6578 {
6579     HRESULT hr;
6580     DWORD len;
6581     BSTR received;
6582
6583     hr = IUri_GetPropertyLength(uri, Uri_PROPERTY_FRAGMENT, &len, 0);
6584     if(FAILED(hr)) {
6585         *result_len = 0;
6586         return hr;
6587     }
6588
6589     *result_len = len;
6590     if(len+1 > output_len)
6591         return STRSAFE_E_INSUFFICIENT_BUFFER;
6592
6593     hr = IUri_GetFragment(uri, &received);
6594     if(FAILED(hr)) {
6595         *result_len = 0;
6596         return hr;
6597     }
6598
6599     memcpy(output, received, (len+1)*sizeof(WCHAR));
6600     SysFreeString(received);
6601
6602     return S_OK;
6603 }
6604
6605 /***********************************************************************
6606  *           CoInternetParseIUri (urlmon.@)
6607  */
6608 HRESULT WINAPI CoInternetParseIUri(IUri *pIUri, PARSEACTION ParseAction, DWORD dwFlags,
6609                                    LPWSTR pwzResult, DWORD cchResult, DWORD *pcchResult,
6610                                    DWORD_PTR dwReserved)
6611 {
6612     HRESULT hr;
6613     Uri *uri;
6614     IInternetProtocolInfo *info;
6615
6616     TRACE("(%p %d %x %p %d %p %x)\n", pIUri, ParseAction, dwFlags, pwzResult,
6617         cchResult, pcchResult, (DWORD)dwReserved);
6618
6619     if(!pcchResult)
6620         return E_POINTER;
6621
6622     if(!pwzResult || !pIUri) {
6623         *pcchResult = 0;
6624         return E_INVALIDARG;
6625     }
6626
6627     if(!(uri = get_uri_obj(pIUri))) {
6628         *pcchResult = 0;
6629         FIXME("(%p %d %x %p %d %p %x) Unknown IUri's not supported for this action.\n",
6630             pIUri, ParseAction, dwFlags, pwzResult, cchResult, pcchResult, (DWORD)dwReserved);
6631         return E_NOTIMPL;
6632     }
6633
6634     info = get_protocol_info(uri->canon_uri);
6635     if(info) {
6636         hr = IInternetProtocolInfo_ParseUrl(info, uri->canon_uri, ParseAction, dwFlags,
6637                                             pwzResult, cchResult, pcchResult, 0);
6638         IInternetProtocolInfo_Release(info);
6639         if(SUCCEEDED(hr)) return hr;
6640     }
6641
6642     switch(ParseAction) {
6643     case PARSE_CANONICALIZE:
6644         hr = parse_canonicalize(uri, dwFlags, pwzResult, cchResult, pcchResult);
6645         break;
6646     case PARSE_FRIENDLY:
6647         hr = parse_friendly(pIUri, pwzResult, cchResult, pcchResult);
6648         break;
6649     case PARSE_ROOTDOCUMENT:
6650         hr = parse_rootdocument(uri, pwzResult, cchResult, pcchResult);
6651         break;
6652     case PARSE_DOCUMENT:
6653         hr = parse_document(uri, pwzResult, cchResult, pcchResult);
6654         break;
6655     case PARSE_PATH_FROM_URL:
6656         hr = parse_path_from_url(uri, pwzResult, cchResult, pcchResult);
6657         break;
6658     case PARSE_URL_FROM_PATH:
6659         hr = parse_url_from_path(pIUri, pwzResult, cchResult, pcchResult);
6660         break;
6661     case PARSE_SCHEMA:
6662         hr = parse_schema(pIUri, pwzResult, cchResult, pcchResult);
6663         break;
6664     case PARSE_SITE:
6665         hr = parse_site(pIUri, pwzResult, cchResult, pcchResult);
6666         break;
6667     case PARSE_DOMAIN:
6668         hr = parse_domain(pIUri, pwzResult, cchResult, pcchResult);
6669         break;
6670     case PARSE_LOCATION:
6671     case PARSE_ANCHOR:
6672         hr = parse_anchor(pIUri, pwzResult, cchResult, pcchResult);
6673         break;
6674     case PARSE_SECURITY_URL:
6675     case PARSE_MIME:
6676     case PARSE_SERVER:
6677     case PARSE_SECURITY_DOMAIN:
6678         *pcchResult = 0;
6679         hr = E_FAIL;
6680         break;
6681     default:
6682         *pcchResult = 0;
6683         hr = E_NOTIMPL;
6684         FIXME("(%p %d %x %p %d %p %x) Partial stub.\n", pIUri, ParseAction, dwFlags,
6685             pwzResult, cchResult, pcchResult, (DWORD)dwReserved);
6686     }
6687
6688     return hr;
6689 }