urlmon: Implemented canonicalization of query strings.
[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 #define UINT_MAX 0xffffffff
27 #define USHORT_MAX 0xffff
28
29 WINE_DEFAULT_DEBUG_CHANNEL(urlmon);
30
31 typedef struct {
32     const IUriVtbl  *lpIUriVtbl;
33     LONG ref;
34
35     BSTR            raw_uri;
36
37     /* Information about the canonicalized URI's buffer. */
38     WCHAR           *canon_uri;
39     DWORD           canon_size;
40     DWORD           canon_len;
41
42     INT             scheme_start;
43     DWORD           scheme_len;
44     URL_SCHEME      scheme_type;
45
46     INT             userinfo_start;
47     DWORD           userinfo_len;
48     INT             userinfo_split;
49
50     INT             host_start;
51     DWORD           host_len;
52     Uri_HOST_TYPE   host_type;
53
54     USHORT          port;
55     BOOL            has_port;
56
57     INT             authority_start;
58     DWORD           authority_len;
59
60     INT             domain_offset;
61
62     INT             path_start;
63     DWORD           path_len;
64     INT             extension_offset;
65
66     INT             query_start;
67     DWORD           query_len;
68 } Uri;
69
70 typedef struct {
71     const IUriBuilderVtbl  *lpIUriBuilderVtbl;
72     LONG ref;
73 } UriBuilder;
74
75 typedef struct {
76     const WCHAR *str;
77     DWORD       len;
78 } h16;
79
80 typedef struct {
81     /* IPv6 addresses can hold up to 8 h16 components. */
82     h16         components[8];
83     DWORD       h16_count;
84
85     /* An IPv6 can have 1 elision ("::"). */
86     const WCHAR *elision;
87
88     /* An IPv6 can contain 1 IPv4 address as the last 32bits of the address. */
89     const WCHAR *ipv4;
90     DWORD       ipv4_len;
91
92     INT         components_size;
93     INT         elision_size;
94 } ipv6_address;
95
96 typedef struct {
97     BSTR            uri;
98
99     BOOL            is_relative;
100     BOOL            is_opaque;
101     BOOL            has_implicit_scheme;
102     BOOL            has_implicit_ip;
103     UINT            implicit_ipv4;
104
105     const WCHAR     *scheme;
106     DWORD           scheme_len;
107     URL_SCHEME      scheme_type;
108
109     const WCHAR     *userinfo;
110     DWORD           userinfo_len;
111     INT             userinfo_split;
112
113     const WCHAR     *host;
114     DWORD           host_len;
115     Uri_HOST_TYPE   host_type;
116
117     BOOL            has_ipv6;
118     ipv6_address    ipv6_address;
119
120     const WCHAR     *port;
121     DWORD           port_len;
122     USHORT          port_value;
123
124     const WCHAR     *path;
125     DWORD           path_len;
126
127     const WCHAR     *query;
128     DWORD           query_len;
129 } parse_data;
130
131 static const CHAR hexDigits[] = "0123456789ABCDEF";
132
133 /* List of scheme types/scheme names that are recognized by the IUri interface as of IE 7. */
134 static const struct {
135     URL_SCHEME  scheme;
136     WCHAR       scheme_name[16];
137 } recognized_schemes[] = {
138     {URL_SCHEME_FTP,            {'f','t','p',0}},
139     {URL_SCHEME_HTTP,           {'h','t','t','p',0}},
140     {URL_SCHEME_GOPHER,         {'g','o','p','h','e','r',0}},
141     {URL_SCHEME_MAILTO,         {'m','a','i','l','t','o',0}},
142     {URL_SCHEME_NEWS,           {'n','e','w','s',0}},
143     {URL_SCHEME_NNTP,           {'n','n','t','p',0}},
144     {URL_SCHEME_TELNET,         {'t','e','l','n','e','t',0}},
145     {URL_SCHEME_WAIS,           {'w','a','i','s',0}},
146     {URL_SCHEME_FILE,           {'f','i','l','e',0}},
147     {URL_SCHEME_MK,             {'m','k',0}},
148     {URL_SCHEME_HTTPS,          {'h','t','t','p','s',0}},
149     {URL_SCHEME_SHELL,          {'s','h','e','l','l',0}},
150     {URL_SCHEME_SNEWS,          {'s','n','e','w','s',0}},
151     {URL_SCHEME_LOCAL,          {'l','o','c','a','l',0}},
152     {URL_SCHEME_JAVASCRIPT,     {'j','a','v','a','s','c','r','i','p','t',0}},
153     {URL_SCHEME_VBSCRIPT,       {'v','b','s','c','r','i','p','t',0}},
154     {URL_SCHEME_ABOUT,          {'a','b','o','u','t',0}},
155     {URL_SCHEME_RES,            {'r','e','s',0}},
156     {URL_SCHEME_MSSHELLROOTED,  {'m','s','-','s','h','e','l','l','-','r','o','o','t','e','d',0}},
157     {URL_SCHEME_MSSHELLIDLIST,  {'m','s','-','s','h','e','l','l','-','i','d','l','i','s','t',0}},
158     {URL_SCHEME_MSHELP,         {'h','c','p',0}},
159     {URL_SCHEME_WILDCARD,       {'*',0}}
160 };
161
162 /* List of default ports Windows recognizes. */
163 static const struct {
164     URL_SCHEME  scheme;
165     USHORT      port;
166 } default_ports[] = {
167     {URL_SCHEME_FTP,    21},
168     {URL_SCHEME_HTTP,   80},
169     {URL_SCHEME_GOPHER, 70},
170     {URL_SCHEME_NNTP,   119},
171     {URL_SCHEME_TELNET, 23},
172     {URL_SCHEME_WAIS,   210},
173     {URL_SCHEME_HTTPS,  443},
174 };
175
176 /* List of 3 character top level domain names Windows seems to recognize.
177  * There might be more, but, these are the only ones I've found so far.
178  */
179 static const struct {
180     WCHAR tld_name[4];
181 } recognized_tlds[] = {
182     {{'c','o','m',0}},
183     {{'e','d','u',0}},
184     {{'g','o','v',0}},
185     {{'i','n','t',0}},
186     {{'m','i','l',0}},
187     {{'n','e','t',0}},
188     {{'o','r','g',0}}
189 };
190
191 static inline BOOL is_alpha(WCHAR val) {
192         return ((val >= 'a' && val <= 'z') || (val >= 'A' && val <= 'Z'));
193 }
194
195 static inline BOOL is_num(WCHAR val) {
196         return (val >= '0' && val <= '9');
197 }
198
199 /* A URI is implicitly a file path if it begins with
200  * a drive letter (eg X:) or starts with "\\" (UNC path).
201  */
202 static inline BOOL is_implicit_file_path(const WCHAR *str) {
203     if(is_alpha(str[0]) && str[1] == ':')
204         return TRUE;
205     else if(str[0] == '\\' && str[1] == '\\')
206         return TRUE;
207
208     return FALSE;
209 }
210
211 /* Checks if the URI is a hierarchical URI. A hierarchical
212  * URI is one that has "//" after the scheme.
213  */
214 static BOOL check_hierarchical(const WCHAR **ptr) {
215     const WCHAR *start = *ptr;
216
217     if(**ptr != '/')
218         return FALSE;
219
220     ++(*ptr);
221     if(**ptr != '/') {
222         *ptr = start;
223         return FALSE;
224     }
225
226     ++(*ptr);
227     return TRUE;
228 }
229
230 /* unreserved    = ALPHA / DIGIT / "-" / "." / "_" / "~" */
231 static inline BOOL is_unreserved(WCHAR val) {
232     return (is_alpha(val) || is_num(val) || val == '-' || val == '.' ||
233             val == '_' || val == '~');
234 }
235
236 /* sub-delims    = "!" / "$" / "&" / "'" / "(" / ")"
237  *               / "*" / "+" / "," / ";" / "="
238  */
239 static inline BOOL is_subdelim(WCHAR val) {
240     return (val == '!' || val == '$' || val == '&' ||
241             val == '\'' || val == '(' || val == ')' ||
242             val == '*' || val == '+' || val == ',' ||
243             val == ';' || val == '=');
244 }
245
246 /* gen-delims  = ":" / "/" / "?" / "#" / "[" / "]" / "@" */
247 static inline BOOL is_gendelim(WCHAR val) {
248     return (val == ':' || val == '/' || val == '?' ||
249             val == '#' || val == '[' || val == ']' ||
250             val == '@');
251 }
252
253 /* Characters that delimit the end of the authority
254  * section of a URI. Sometimes a '\\' is considered
255  * an authority delimeter.
256  */
257 static inline BOOL is_auth_delim(WCHAR val, BOOL acceptSlash) {
258     return (val == '#' || val == '/' || val == '?' ||
259             val == '\0' || (acceptSlash && val == '\\'));
260 }
261
262 /* reserved = gen-delims / sub-delims */
263 static inline BOOL is_reserved(WCHAR val) {
264     return (is_subdelim(val) || is_gendelim(val));
265 }
266
267 static inline BOOL is_hexdigit(WCHAR val) {
268     return ((val >= 'a' && val <= 'f') ||
269             (val >= 'A' && val <= 'F') ||
270             (val >= '0' && val <= '9'));
271 }
272
273 static inline BOOL is_path_delim(WCHAR val) {
274     return (!val || val == '#' || val == '?');
275 }
276
277 /* Computes the size of the given IPv6 address.
278  * Each h16 component is 16bits, if there is an IPv4 address, it's
279  * 32bits. If there's an elision it can be 16bits to 128bits, depending
280  * on the number of other components.
281  *
282  * Modeled after google-url's CheckIPv6ComponentsSize function
283  */
284 static void compute_ipv6_comps_size(ipv6_address *address) {
285     address->components_size = address->h16_count * 2;
286
287     if(address->ipv4)
288         /* IPv4 address is 4 bytes. */
289         address->components_size += 4;
290
291     if(address->elision) {
292         /* An elision can be anywhere from 2 bytes up to 16 bytes.
293          * It size depends on the size of the h16 and IPv4 components.
294          */
295         address->elision_size = 16 - address->components_size;
296         if(address->elision_size < 2)
297             address->elision_size = 2;
298     } else
299         address->elision_size = 0;
300 }
301
302 /* Taken from dlls/jscript/lex.c */
303 static int hex_to_int(WCHAR val) {
304     if(val >= '0' && val <= '9')
305         return val - '0';
306     else if(val >= 'a' && val <= 'f')
307         return val - 'a' + 10;
308     else if(val >= 'A' && val <= 'F')
309         return val - 'A' + 10;
310
311     return -1;
312 }
313
314 /* Helper function for converting a percent encoded string
315  * representation of a WCHAR value into its actual WCHAR value. If
316  * the two characters following the '%' aren't valid hex values then
317  * this function returns the NULL character.
318  *
319  * Eg.
320  *  "%2E" will result in '.' being returned by this function.
321  */
322 static WCHAR decode_pct_val(const WCHAR *ptr) {
323     WCHAR ret = '\0';
324
325     if(*ptr == '%' && is_hexdigit(*(ptr + 1)) && is_hexdigit(*(ptr + 2))) {
326         INT a = hex_to_int(*(ptr + 1));
327         INT b = hex_to_int(*(ptr + 2));
328
329         ret = a << 4;
330         ret += b;
331     }
332
333     return ret;
334 }
335
336 /* Helper function for percent encoding a given character
337  * and storing the encoded value into a given buffer (dest).
338  *
339  * It's up to the calling function to ensure that there is
340  * at least enough space in 'dest' for the percent encoded
341  * value to be stored (so dest + 3 spaces available).
342  */
343 static inline void pct_encode_val(WCHAR val, WCHAR *dest) {
344     dest[0] = '%';
345     dest[1] = hexDigits[(val >> 4) & 0xf];
346     dest[2] = hexDigits[val & 0xf];
347 }
348
349 /* Scans the range of characters [str, end] and returns the last occurence
350  * of 'ch' or returns NULL.
351  */
352 static const WCHAR *str_last_of(const WCHAR *str, const WCHAR *end, WCHAR ch) {
353     const WCHAR *ptr = end;
354
355     while(ptr >= str) {
356         if(*ptr == ch)
357             return ptr;
358         --ptr;
359     }
360
361     return NULL;
362 }
363
364 /* Attempts to parse the domain name from the host.
365  *
366  * This function also includes the Top-level Domain (TLD) name
367  * of the host when it tries to find the domain name. If it finds
368  * a valid domain name it will assign 'domain_start' the offset
369  * into 'host' where the domain name starts.
370  *
371  * It's implied that if a domain name its range is implied to be
372  * [host+domain_start, host+host_len).
373  */
374 static void find_domain_name(const WCHAR *host, DWORD host_len,
375                              INT *domain_start) {
376     const WCHAR *last_tld, *sec_last_tld, *end;
377
378     end = host+host_len-1;
379
380     *domain_start = -1;
381
382     /* There has to be at least enough room for a '.' followed by a
383      * 3 character TLD for a domain to even exist in the host name.
384      */
385     if(host_len < 4)
386         return;
387
388     last_tld = str_last_of(host, end, '.');
389     if(!last_tld)
390         /* http://hostname -> has no domain name. */
391         return;
392
393     sec_last_tld = str_last_of(host, last_tld-1, '.');
394     if(!sec_last_tld) {
395         /* If the '.' is at the beginning of the host there
396          * has to be at least 3 characters in the TLD for it
397          * to be valid.
398          *  Ex: .com -> .com as the domain name.
399          *      .co  -> has no domain name.
400          */
401         if(last_tld-host == 0) {
402             if(end-(last_tld-1) < 3)
403                 return;
404         } else if(last_tld-host == 3) {
405             DWORD i;
406
407             /* If there's three characters in front of last_tld and
408              * they are on the list of recognized TLDs, then this
409              * host doesn't have a domain (since the host only contains
410              * a TLD name.
411              *  Ex: edu.uk -> has no domain name.
412              *      foo.uk -> foo.uk as the domain name.
413              */
414             for(i = 0; i < sizeof(recognized_tlds)/sizeof(recognized_tlds[0]); ++i) {
415                 if(!StrCmpNIW(host, recognized_tlds[i].tld_name, 3))
416                     return;
417             }
418         } else if(last_tld-host < 3)
419             /* Anything less then 3 characters is considered part
420              * of the TLD name.
421              *  Ex: ak.uk -> Has no domain name.
422              */
423             return;
424
425         /* Otherwise the domain name is the whole host name. */
426         *domain_start = 0;
427     } else if(end+1-last_tld > 3) {
428         /* If the last_tld has more then 3 characters then it's automatically
429          * considered the TLD of the domain name.
430          *  Ex: www.winehq.org.uk.test -> uk.test as the domain name.
431          */
432         *domain_start = (sec_last_tld+1)-host;
433     } else if(last_tld - (sec_last_tld+1) < 4) {
434         DWORD i;
435         /* If the sec_last_tld is 3 characters long it HAS to be on the list of
436          * recognized to still be considered part of the TLD name, otherwise
437          * its considered the domain name.
438          *  Ex: www.google.com.uk -> google.com.uk as the domain name.
439          *      www.google.foo.uk -> foo.uk as the domain name.
440          */
441         if(last_tld - (sec_last_tld+1) == 3) {
442             for(i = 0; i < sizeof(recognized_tlds)/sizeof(recognized_tlds[0]); ++i) {
443                 if(!StrCmpNIW(sec_last_tld+1, recognized_tlds[i].tld_name, 3)) {
444                     const WCHAR *domain = str_last_of(host, sec_last_tld-1, '.');
445
446                     if(!domain)
447                         *domain_start = 0;
448                     else
449                         *domain_start = (domain+1) - host;
450                     TRACE("Found domain name %s\n", debugstr_wn(host+*domain_start,
451                                                         (host+host_len)-(host+*domain_start)));
452                     return;
453                 }
454             }
455
456             *domain_start = (sec_last_tld+1)-host;
457         } else {
458             /* Since the sec_last_tld is less then 3 characters it's considered
459              * part of the TLD.
460              *  Ex: www.google.fo.uk -> google.fo.uk as the domain name.
461              */
462             const WCHAR *domain = str_last_of(host, sec_last_tld-1, '.');
463
464             if(!domain)
465                 *domain_start = 0;
466             else
467                 *domain_start = (domain+1) - host;
468         }
469     } else {
470         /* The second to last TLD has more then 3 characters making it
471          * the domain name.
472          *  Ex: www.google.test.us -> test.us as the domain name.
473          */
474         *domain_start = (sec_last_tld+1)-host;
475     }
476
477     TRACE("Found domain name %s\n", debugstr_wn(host+*domain_start,
478                                         (host+host_len)-(host+*domain_start)));
479 }
480
481 /* Removes the dot segments from a heirarchical URIs path component. This
482  * function performs the removal in place.
483  *
484  * This is a modified version of Qt's QUrl function "removeDotsFromPath".
485  *
486  * This function returns the new length of the path string.
487  */
488 static DWORD remove_dot_segments(WCHAR *path, DWORD path_len) {
489     WCHAR *out = path;
490     const WCHAR *in = out;
491     const WCHAR *end = out + path_len;
492     DWORD len;
493
494     while(in < end) {
495         /* A.  if the input buffer begins with a prefix of "/./" or "/.",
496          *     where "." is a complete path segment, then replace that
497          *     prefix with "/" in the input buffer; otherwise,
498          */
499         if(in <= end - 3 && in[0] == '/' && in[1] == '.' && in[2] == '/') {
500             in += 2;
501             continue;
502         } else if(in == end - 2 && in[0] == '/' && in[1] == '.') {
503             *out++ = '/';
504             in += 2;
505             break;
506         }
507
508         /* B.  if the input buffer begins with a prefix of "/../" or "/..",
509          *     where ".." is a complete path segment, then replace that
510          *     prefix with "/" in the input buffer and remove the last
511          *     segment and its preceding "/" (if any) from the output
512          *     buffer; otherwise,
513          */
514         if(in <= end - 4 && in[0] == '/' && in[1] == '.' && in[2] == '.' && in[3] == '/') {
515             while(out > path && *(--out) != '/');
516
517             in += 3;
518             continue;
519         } else if(in == end - 3 && in[0] == '/' && in[1] == '.' && in[2] == '.') {
520             while(out > path && *(--out) != '/');
521
522             if(*out == '/')
523                 ++out;
524
525             in += 3;
526             break;
527         }
528
529         /* C.  move the first path segment in the input buffer to the end of
530          *     the output buffer, including the initial "/" character (if
531          *     any) and any subsequent characters up to, but not including,
532          *     the next "/" character or the end of the input buffer.
533          */
534         *out++ = *in++;
535         while(in < end && *in != '/')
536             *out++ = *in++;
537     }
538
539     len = out - path;
540     TRACE("(%p %d): Path after dot segments removed %s len=%d\n", path, path_len,
541         debugstr_wn(path, len), len);
542     return len;
543 }
544
545 /* Attempts to find the file extension in a given path. */
546 static INT find_file_extension(const WCHAR *path, DWORD path_len) {
547     const WCHAR *end;
548
549     for(end = path+path_len-1; end >= path && *end != '/' && *end != '\\'; --end) {
550         if(*end == '.')
551             return end-path;
552     }
553
554     return -1;
555 }
556
557 /* Computes the location where the elision should occur in the IPv6
558  * address using the numerical values of each component stored in
559  * 'values'. If the address shouldn't contain an elision then 'index'
560  * is assigned -1 as it's value. Otherwise 'index' will contain the
561  * starting index (into values) where the elision should be, and 'count'
562  * will contain the number of cells the elision covers.
563  *
564  * NOTES:
565  *  Windows will expand an elision if the elision only represents 1 h16
566  *  component of the URI.
567  *
568  *  Ex: [1::2:3:4:5:6:7] -> [1:0:2:3:4:5:6:7]
569  *
570  *  If the IPv6 address contains an IPv4 address, the IPv4 address is also
571  *  considered for being included as part of an elision if all it's components
572  *  are zeros.
573  *
574  *  Ex: [1:2:3:4:5:6:0.0.0.0] -> [1:2:3:4:5:6::]
575  */
576 static void compute_elision_location(const ipv6_address *address, const USHORT values[8],
577                                      INT *index, DWORD *count) {
578     DWORD i, max_len, cur_len;
579     INT max_index, cur_index;
580
581     max_len = cur_len = 0;
582     max_index = cur_index = -1;
583     for(i = 0; i < 8; ++i) {
584         BOOL check_ipv4 = (address->ipv4 && i == 6);
585         BOOL is_end = (check_ipv4 || i == 7);
586
587         if(check_ipv4) {
588             /* Check if the IPv4 address contains only zeros. */
589             if(values[i] == 0 && values[i+1] == 0) {
590                 if(cur_index == -1)
591                     cur_index = i;
592
593                 cur_len += 2;
594                 ++i;
595             }
596         } else if(values[i] == 0) {
597             if(cur_index == -1)
598                 cur_index = i;
599
600             ++cur_len;
601         }
602
603         if(is_end || values[i] != 0) {
604             /* We only consider it for an elision if it's
605              * more then 1 component long.
606              */
607             if(cur_len > 1 && cur_len > max_len) {
608                 /* Found the new elision location. */
609                 max_len = cur_len;
610                 max_index = cur_index;
611             }
612
613             /* Reset the current range for the next range of zeros. */
614             cur_index = -1;
615             cur_len = 0;
616         }
617     }
618
619     *index = max_index;
620     *count = max_len;
621 }
622
623 /* Converts the specified IPv4 address into an uint value.
624  *
625  * This function assumes that the IPv4 address has already been validated.
626  */
627 static UINT ipv4toui(const WCHAR *ip, DWORD len) {
628     UINT ret = 0;
629     DWORD comp_value = 0;
630     const WCHAR *ptr;
631
632     for(ptr = ip; ptr < ip+len; ++ptr) {
633         if(*ptr == '.') {
634             ret <<= 8;
635             ret += comp_value;
636             comp_value = 0;
637         } else
638             comp_value = comp_value*10 + (*ptr-'0');
639     }
640
641     ret <<= 8;
642     ret += comp_value;
643
644     return ret;
645 }
646
647 /* Converts an IPv4 address in numerical form into it's fully qualified
648  * string form. This function returns the number of characters written
649  * to 'dest'. If 'dest' is NULL this function will return the number of
650  * characters that would have been written.
651  *
652  * It's up to the caller to ensure there's enough space in 'dest' for the
653  * address.
654  */
655 static DWORD ui2ipv4(WCHAR *dest, UINT address) {
656     static const WCHAR formatW[] =
657         {'%','u','.','%','u','.','%','u','.','%','u',0};
658     DWORD ret = 0;
659     UCHAR digits[4];
660
661     digits[0] = (address >> 24) & 0xff;
662     digits[1] = (address >> 16) & 0xff;
663     digits[2] = (address >> 8) & 0xff;
664     digits[3] = address & 0xff;
665
666     if(!dest) {
667         WCHAR tmp[16];
668         ret = sprintfW(tmp, formatW, digits[0], digits[1], digits[2], digits[3]);
669     } else
670         ret = sprintfW(dest, formatW, digits[0], digits[1], digits[2], digits[3]);
671
672     return ret;
673 }
674
675 /* Converts an h16 component (from an IPv6 address) into it's
676  * numerical value.
677  *
678  * This function assumes that the h16 component has already been validated.
679  */
680 static USHORT h16tous(h16 component) {
681     DWORD i;
682     USHORT ret = 0;
683
684     for(i = 0; i < component.len; ++i) {
685         ret <<= 4;
686         ret += hex_to_int(component.str[i]);
687     }
688
689     return ret;
690 }
691
692 /* Converts an IPv6 address into it's 128 bits (16 bytes) numerical value.
693  *
694  * This function assumes that the ipv6_address has already been validated.
695  */
696 static BOOL ipv6_to_number(const ipv6_address *address, USHORT number[8]) {
697     DWORD i, cur_component = 0;
698     BOOL already_passed_elision = FALSE;
699
700     for(i = 0; i < address->h16_count; ++i) {
701         if(address->elision) {
702             if(address->components[i].str > address->elision && !already_passed_elision) {
703                 /* Means we just passed the elision and need to add it's values to
704                  * 'number' before we do anything else.
705                  */
706                 DWORD j = 0;
707                 for(j = 0; j < address->elision_size; j+=2)
708                     number[cur_component++] = 0;
709
710                 already_passed_elision = TRUE;
711             }
712         }
713
714         number[cur_component++] = h16tous(address->components[i]);
715     }
716
717     /* Case when the elision appears after the h16 components. */
718     if(!already_passed_elision && address->elision) {
719         for(i = 0; i < address->elision_size; i+=2)
720             number[cur_component++] = 0;
721         already_passed_elision = TRUE;
722     }
723
724     if(address->ipv4) {
725         UINT value = ipv4toui(address->ipv4, address->ipv4_len);
726
727         if(cur_component != 6) {
728             ERR("(%p %p): Failed sanity check with %d\n", address, number, cur_component);
729             return FALSE;
730         }
731
732         number[cur_component++] = (value >> 16) & 0xffff;
733         number[cur_component] = value & 0xffff;
734     }
735
736     return TRUE;
737 }
738
739 /* Checks if the characters pointed to by 'ptr' are
740  * a percent encoded data octet.
741  *
742  * pct-encoded = "%" HEXDIG HEXDIG
743  */
744 static BOOL check_pct_encoded(const WCHAR **ptr) {
745     const WCHAR *start = *ptr;
746
747     if(**ptr != '%')
748         return FALSE;
749
750     ++(*ptr);
751     if(!is_hexdigit(**ptr)) {
752         *ptr = start;
753         return FALSE;
754     }
755
756     ++(*ptr);
757     if(!is_hexdigit(**ptr)) {
758         *ptr = start;
759         return FALSE;
760     }
761
762     ++(*ptr);
763     return TRUE;
764 }
765
766 /* dec-octet   = DIGIT                 ; 0-9
767  *             / %x31-39 DIGIT         ; 10-99
768  *             / "1" 2DIGIT            ; 100-199
769  *             / "2" %x30-34 DIGIT     ; 200-249
770  *             / "25" %x30-35          ; 250-255
771  */
772 static BOOL check_dec_octet(const WCHAR **ptr) {
773     const WCHAR *c1, *c2, *c3;
774
775     c1 = *ptr;
776     /* A dec-octet must be at least 1 digit long. */
777     if(*c1 < '0' || *c1 > '9')
778         return FALSE;
779
780     ++(*ptr);
781
782     c2 = *ptr;
783     /* Since the 1 digit requirment was meet, it doesn't
784      * matter if this is a DIGIT value, it's considered a
785      * dec-octet.
786      */
787     if(*c2 < '0' || *c2 > '9')
788         return TRUE;
789
790     ++(*ptr);
791
792     c3 = *ptr;
793     /* Same explanation as above. */
794     if(*c3 < '0' || *c3 > '9')
795         return TRUE;
796
797     /* Anything > 255 isn't a valid IP dec-octet. */
798     if(*c1 >= '2' && *c2 >= '5' && *c3 >= '5') {
799         *ptr = c1;
800         return FALSE;
801     }
802
803     ++(*ptr);
804     return TRUE;
805 }
806
807 /* Checks if there is an implicit IPv4 address in the host component of the URI.
808  * The max value of an implicit IPv4 address is UINT_MAX.
809  *
810  *  Ex:
811  *      "234567" would be considered an implicit IPv4 address.
812  */
813 static BOOL check_implicit_ipv4(const WCHAR **ptr, UINT *val) {
814     const WCHAR *start = *ptr;
815     ULONGLONG ret = 0;
816     *val = 0;
817
818     while(is_num(**ptr)) {
819         ret = ret*10 + (**ptr - '0');
820
821         if(ret > UINT_MAX) {
822             *ptr = start;
823             return FALSE;
824         }
825         ++(*ptr);
826     }
827
828     if(*ptr == start)
829         return FALSE;
830
831     *val = ret;
832     return TRUE;
833 }
834
835 /* Checks if the string contains an IPv4 address.
836  *
837  * This function has a strict mode or a non-strict mode of operation
838  * When 'strict' is set to FALSE this function will return TRUE if
839  * the string contains at least 'dec-octet "." dec-octet' since partial
840  * IPv4 addresses will be normalized out into full IPv4 addresses. When
841  * 'strict' is set this function expects there to be a full IPv4 address.
842  *
843  * IPv4address = dec-octet "." dec-octet "." dec-octet "." dec-octet
844  */
845 static BOOL check_ipv4address(const WCHAR **ptr, BOOL strict) {
846     const WCHAR *start = *ptr;
847
848     if(!check_dec_octet(ptr)) {
849         *ptr = start;
850         return FALSE;
851     }
852
853     if(**ptr != '.') {
854         *ptr = start;
855         return FALSE;
856     }
857
858     ++(*ptr);
859     if(!check_dec_octet(ptr)) {
860         *ptr = start;
861         return FALSE;
862     }
863
864     if(**ptr != '.') {
865         if(strict) {
866             *ptr = start;
867             return FALSE;
868         } else
869             return TRUE;
870     }
871
872     ++(*ptr);
873     if(!check_dec_octet(ptr)) {
874         *ptr = start;
875         return FALSE;
876     }
877
878     if(**ptr != '.') {
879         if(strict) {
880             *ptr = start;
881             return FALSE;
882         } else
883             return TRUE;
884     }
885
886     ++(*ptr);
887     if(!check_dec_octet(ptr)) {
888         *ptr = start;
889         return FALSE;
890     }
891
892     /* Found a four digit ip address. */
893     return TRUE;
894 }
895 /* Tries to parse the scheme name of the URI.
896  *
897  * scheme = ALPHA *(ALPHA | NUM | '+' | '-' | '.') as defined by RFC 3896.
898  * NOTE: Windows accepts a number as the first character of a scheme.
899  */
900 static BOOL parse_scheme_name(const WCHAR **ptr, parse_data *data) {
901     const WCHAR *start = *ptr;
902
903     data->scheme = NULL;
904     data->scheme_len = 0;
905
906     while(**ptr) {
907         if(**ptr == '*' && *ptr == start) {
908             /* Might have found a wildcard scheme. If it is the next
909              * char has to be a ':' for it to be a valid URI
910              */
911             ++(*ptr);
912             break;
913         } else if(!is_num(**ptr) && !is_alpha(**ptr) && **ptr != '+' &&
914            **ptr != '-' && **ptr != '.')
915             break;
916
917         (*ptr)++;
918     }
919
920     if(*ptr == start)
921         return FALSE;
922
923     /* Schemes must end with a ':' */
924     if(**ptr != ':') {
925         *ptr = start;
926         return FALSE;
927     }
928
929     data->scheme = start;
930     data->scheme_len = *ptr - start;
931
932     ++(*ptr);
933     return TRUE;
934 }
935
936 /* Tries to deduce the corresponding URL_SCHEME for the given URI. Stores
937  * the deduced URL_SCHEME in data->scheme_type.
938  */
939 static BOOL parse_scheme_type(parse_data *data) {
940     /* If there's scheme data then see if it's a recognized scheme. */
941     if(data->scheme && data->scheme_len) {
942         DWORD i;
943
944         for(i = 0; i < sizeof(recognized_schemes)/sizeof(recognized_schemes[0]); ++i) {
945             if(lstrlenW(recognized_schemes[i].scheme_name) == data->scheme_len) {
946                 /* Has to be a case insensitive compare. */
947                 if(!StrCmpNIW(recognized_schemes[i].scheme_name, data->scheme, data->scheme_len)) {
948                     data->scheme_type = recognized_schemes[i].scheme;
949                     return TRUE;
950                 }
951             }
952         }
953
954         /* If we get here it means it's not a recognized scheme. */
955         data->scheme_type = URL_SCHEME_UNKNOWN;
956         return TRUE;
957     } else if(data->is_relative) {
958         /* Relative URI's have no scheme. */
959         data->scheme_type = URL_SCHEME_UNKNOWN;
960         return TRUE;
961     } else {
962         /* Should never reach here! what happened... */
963         FIXME("(%p): Unable to determine scheme type for URI %s\n", data, debugstr_w(data->uri));
964         return FALSE;
965     }
966 }
967
968 /* Tries to parse (or deduce) the scheme_name of a URI. If it can't
969  * parse a scheme from the URI it will try to deduce the scheme_name and scheme_type
970  * using the flags specified in 'flags' (if any). Flags that affect how this function
971  * operates are the Uri_CREATE_ALLOW_* flags.
972  *
973  * All parsed/deduced information will be stored in 'data' when the function returns.
974  *
975  * Returns TRUE if it was able to successfully parse the information.
976  */
977 static BOOL parse_scheme(const WCHAR **ptr, parse_data *data, DWORD flags) {
978     static const WCHAR fileW[] = {'f','i','l','e',0};
979     static const WCHAR wildcardW[] = {'*',0};
980
981     /* First check to see if the uri could implicitly be a file path. */
982     if(is_implicit_file_path(*ptr)) {
983         if(flags & Uri_CREATE_ALLOW_IMPLICIT_FILE_SCHEME) {
984             data->scheme = fileW;
985             data->scheme_len = lstrlenW(fileW);
986             data->has_implicit_scheme = TRUE;
987
988             TRACE("(%p %p %x): URI is an implicit file path.\n", ptr, data, flags);
989         } else {
990             /* Window's does not consider anything that can implicitly be a file
991              * path to be a valid URI if the ALLOW_IMPLICIT_FILE_SCHEME flag is not set...
992              */
993             TRACE("(%p %p %x): URI is implicitly a file path, but, the ALLOW_IMPLICIT_FILE_SCHEME flag wasn't set.\n",
994                     ptr, data, flags);
995             return FALSE;
996         }
997     } else if(!parse_scheme_name(ptr, data)) {
998         /* No Scheme was found, this means it could be:
999          *      a) an implicit Wildcard scheme
1000          *      b) a relative URI
1001          *      c) a invalid URI.
1002          */
1003         if(flags & Uri_CREATE_ALLOW_IMPLICIT_WILDCARD_SCHEME) {
1004             data->scheme = wildcardW;
1005             data->scheme_len = lstrlenW(wildcardW);
1006             data->has_implicit_scheme = TRUE;
1007
1008             TRACE("(%p %p %x): URI is an implicit wildcard scheme.\n", ptr, data, flags);
1009         } else if (flags & Uri_CREATE_ALLOW_RELATIVE) {
1010             data->is_relative = TRUE;
1011             TRACE("(%p %p %x): URI is relative.\n", ptr, data, flags);
1012         } else {
1013             TRACE("(%p %p %x): Malformed URI found. Unable to deduce scheme name.\n", ptr, data, flags);
1014             return FALSE;
1015         }
1016     }
1017
1018     if(!data->is_relative)
1019         TRACE("(%p %p %x): Found scheme=%s scheme_len=%d\n", ptr, data, flags,
1020                 debugstr_wn(data->scheme, data->scheme_len), data->scheme_len);
1021
1022     if(!parse_scheme_type(data))
1023         return FALSE;
1024
1025     TRACE("(%p %p %x): Assigned %d as the URL_SCHEME.\n", ptr, data, flags, data->scheme_type);
1026     return TRUE;
1027 }
1028
1029 /* Parses the userinfo part of the URI (if it exists). The userinfo field of
1030  * a URI can consist of "username:password@", or just "username@".
1031  *
1032  * RFC def:
1033  * userinfo    = *( unreserved / pct-encoded / sub-delims / ":" )
1034  *
1035  * NOTES:
1036  *  1)  If there is more than one ':' in the userinfo part of the URI Windows
1037  *      uses the first occurence of ':' to delimit the username and password
1038  *      components.
1039  *
1040  *      ex:
1041  *          ftp://user:pass:word@winehq.org
1042  *
1043  *      Would yield, "user" as the username and "pass:word" as the password.
1044  *
1045  *  2)  Windows allows any character to appear in the "userinfo" part of
1046  *      a URI, as long as it's not an authority delimeter character set.
1047  */
1048 static void parse_userinfo(const WCHAR **ptr, parse_data *data, DWORD flags) {
1049     data->userinfo = *ptr;
1050     data->userinfo_split = -1;
1051
1052     while(**ptr != '@') {
1053         if(**ptr == ':' && data->userinfo_split == -1)
1054             data->userinfo_split = *ptr - data->userinfo;
1055         else if(**ptr == '%') {
1056             /* If it's a known scheme type, it has to be a valid percent
1057              * encoded value.
1058              */
1059             if(!check_pct_encoded(ptr)) {
1060                 if(data->scheme_type != URL_SCHEME_UNKNOWN) {
1061                     *ptr = data->userinfo;
1062                     data->userinfo = NULL;
1063                     data->userinfo_split = -1;
1064
1065                     TRACE("(%p %p %x): URI contained no userinfo.\n", ptr, data, flags);
1066                     return;
1067                 }
1068             } else
1069                 continue;
1070         } else if(is_auth_delim(**ptr, data->scheme_type != URL_SCHEME_UNKNOWN))
1071             break;
1072
1073         ++(*ptr);
1074     }
1075
1076     if(**ptr != '@') {
1077         *ptr = data->userinfo;
1078         data->userinfo = NULL;
1079         data->userinfo_split = -1;
1080
1081         TRACE("(%p %p %x): URI contained no userinfo.\n", ptr, data, flags);
1082         return;
1083     }
1084
1085     data->userinfo_len = *ptr - data->userinfo;
1086     TRACE("(%p %p %x): Found userinfo=%s userinfo_len=%d split=%d.\n", ptr, data, flags,
1087             debugstr_wn(data->userinfo, data->userinfo_len), data->userinfo_len, data->userinfo_split);
1088     ++(*ptr);
1089 }
1090
1091 /* Attempts to parse a port from the URI.
1092  *
1093  * NOTES:
1094  *  Windows seems to have a cap on what the maximum value
1095  *  for a port can be. The max value is USHORT_MAX.
1096  *
1097  * port = *DIGIT
1098  */
1099 static BOOL parse_port(const WCHAR **ptr, parse_data *data, DWORD flags) {
1100     UINT port = 0;
1101     data->port = *ptr;
1102
1103     while(!is_auth_delim(**ptr, data->scheme_type != URL_SCHEME_UNKNOWN)) {
1104         if(!is_num(**ptr)) {
1105             *ptr = data->port;
1106             data->port = NULL;
1107             return FALSE;
1108         }
1109
1110         port = port*10 + (**ptr-'0');
1111
1112         if(port > USHORT_MAX) {
1113             *ptr = data->port;
1114             data->port = NULL;
1115             return FALSE;
1116         }
1117
1118         ++(*ptr);
1119     }
1120
1121     data->port_value = port;
1122     data->port_len = *ptr - data->port;
1123
1124     TRACE("(%p %p %x): Found port %s len=%d value=%u\n", ptr, data, flags,
1125         debugstr_wn(data->port, data->port_len), data->port_len, data->port_value);
1126     return TRUE;
1127 }
1128
1129 /* Attempts to parse a IPv4 address from the URI.
1130  *
1131  * NOTES:
1132  *  Window's normalizes IPv4 addresses, This means there's three
1133  *  possibilities for the URI to contain an IPv4 address.
1134  *      1)  A well formed address (ex. 192.2.2.2).
1135  *      2)  A partially formed address. For example "192.0" would
1136  *          normalize to "192.0.0.0" during canonicalization.
1137  *      3)  An implicit IPv4 address. For example "256" would
1138  *          normalize to "0.0.1.0" during canonicalization. Also
1139  *          note that the maximum value for an implicit IP address
1140  *          is UINT_MAX, if the value in the URI exceeds this then
1141  *          it is not considered an IPv4 address.
1142  */
1143 static BOOL parse_ipv4address(const WCHAR **ptr, parse_data *data, DWORD flags) {
1144     const BOOL is_unknown = data->scheme_type == URL_SCHEME_UNKNOWN;
1145     data->host = *ptr;
1146
1147     if(!check_ipv4address(ptr, FALSE)) {
1148         if(!check_implicit_ipv4(ptr, &data->implicit_ipv4)) {
1149             TRACE("(%p %p %x): URI didn't contain anything looking like an IPv4 address.\n",
1150                 ptr, data, flags);
1151             *ptr = data->host;
1152             data->host = NULL;
1153             return FALSE;
1154         } else
1155             data->has_implicit_ip = TRUE;
1156     }
1157
1158     /* Check if what we found is the only part of the host name (if it isn't
1159      * we don't have an IPv4 address).
1160      */
1161     if(**ptr == ':') {
1162         ++(*ptr);
1163         if(!parse_port(ptr, data, flags)) {
1164             *ptr = data->host;
1165             data->host = NULL;
1166             return FALSE;
1167         }
1168     } else if(!is_auth_delim(**ptr, !is_unknown)) {
1169         /* Found more data which belongs the host, so this isn't an IPv4. */
1170         *ptr = data->host;
1171         data->host = NULL;
1172         data->has_implicit_ip = FALSE;
1173         return FALSE;
1174     }
1175
1176     data->host_len = *ptr - data->host;
1177     data->host_type = Uri_HOST_IPV4;
1178
1179     TRACE("(%p %p %x): IPv4 address found. host=%s host_len=%d host_type=%d\n",
1180         ptr, data, flags, debugstr_wn(data->host, data->host_len),
1181         data->host_len, data->host_type);
1182     return TRUE;
1183 }
1184
1185 /* Attempts to parse the reg-name from the URI.
1186  *
1187  * Because of the way Windows handles ':' this function also
1188  * handles parsing the port.
1189  *
1190  * reg-name = *( unreserved / pct-encoded / sub-delims )
1191  *
1192  * NOTE:
1193  *  Windows allows everything, but, the characters in "auth_delims" and ':'
1194  *  to appear in a reg-name, unless it's an unknown scheme type then ':' is
1195  *  allowed to appear (even if a valid port isn't after it).
1196  *
1197  *  Windows doesn't like host names which start with '[' and end with ']'
1198  *  and don't contain a valid IP literal address in between them.
1199  *
1200  *  On Windows if an '[' is encountered in the host name the ':' no longer
1201  *  counts as a delimiter until you reach the next ']' or an "authority delimeter".
1202  *
1203  *  A reg-name CAN be empty.
1204  */
1205 static BOOL parse_reg_name(const WCHAR **ptr, parse_data *data, DWORD flags) {
1206     const BOOL has_start_bracket = **ptr == '[';
1207     const BOOL known_scheme = data->scheme_type != URL_SCHEME_UNKNOWN;
1208     BOOL inside_brackets = has_start_bracket;
1209     BOOL ignore_col = FALSE;
1210
1211     /* We have to be careful with file schemes. */
1212     if(data->scheme_type == URL_SCHEME_FILE) {
1213         /* This is because an implicit file scheme could be "C:\\test" and it
1214          * would trick this function into thinking the host is "C", when after
1215          * canonicalization the host would end up being an empty string.
1216          */
1217         if(is_alpha(**ptr) && *(*ptr+1) == ':') {
1218             /* Regular old drive paths don't have a host type (or host name). */
1219             data->host_type = Uri_HOST_UNKNOWN;
1220             data->host = *ptr;
1221             data->host_len = 0;
1222             return TRUE;
1223         } else if(**ptr == '\\' && *(*ptr+1) == '\\')
1224             /* Skip past the "\\" of a UNC path. */
1225             *ptr += 2;
1226     }
1227
1228     data->host = *ptr;
1229
1230     while(!is_auth_delim(**ptr, known_scheme)) {
1231         if(**ptr == ':' && !ignore_col) {
1232             /* We can ignore ':' if were inside brackets.*/
1233             if(!inside_brackets) {
1234                 const WCHAR *tmp = (*ptr)++;
1235
1236                 /* Attempt to parse the port. */
1237                 if(!parse_port(ptr, data, flags)) {
1238                     /* Windows expects there to be a valid port for known scheme types. */
1239                     if(data->scheme_type != URL_SCHEME_UNKNOWN) {
1240                         *ptr = data->host;
1241                         data->host = NULL;
1242                         TRACE("(%p %p %x): Expected valid port\n", ptr, data, flags);
1243                         return FALSE;
1244                     } else
1245                         /* Windows gives up on trying to parse a port when it
1246                          * encounters 1 invalid port.
1247                          */
1248                         ignore_col = TRUE;
1249                 } else {
1250                     data->host_len = tmp - data->host;
1251                     break;
1252                 }
1253             }
1254         } else if(**ptr == '%' && known_scheme) {
1255             /* Has to be a legit % encoded value. */
1256             if(!check_pct_encoded(ptr)) {
1257                 *ptr = data->host;
1258                 data->host = NULL;
1259                 return FALSE;
1260             } else
1261                 continue;
1262         } else if(**ptr == ']')
1263             inside_brackets = FALSE;
1264         else if(**ptr == '[')
1265             inside_brackets = TRUE;
1266
1267         ++(*ptr);
1268     }
1269
1270     if(has_start_bracket) {
1271         /* Make sure the last character of the host wasn't a ']'. */
1272         if(*(*ptr-1) == ']') {
1273             TRACE("(%p %p %x): Expected an IP literal inside of the host\n",
1274                 ptr, data, flags);
1275             *ptr = data->host;
1276             data->host = NULL;
1277             return FALSE;
1278         }
1279     }
1280
1281     /* Don't overwrite our length if we found a port earlier. */
1282     if(!data->port)
1283         data->host_len = *ptr - data->host;
1284
1285     /* If the host is empty, then it's an unknown host type. */
1286     if(data->host_len == 0)
1287         data->host_type = Uri_HOST_UNKNOWN;
1288     else
1289         data->host_type = Uri_HOST_DNS;
1290
1291     TRACE("(%p %p %x): Parsed reg-name. host=%s len=%d\n", ptr, data, flags,
1292         debugstr_wn(data->host, data->host_len), data->host_len);
1293     return TRUE;
1294 }
1295
1296 /* Attempts to parse an IPv6 address out of the URI.
1297  *
1298  * IPv6address =                               6( h16 ":" ) ls32
1299  *                /                       "::" 5( h16 ":" ) ls32
1300  *                / [               h16 ] "::" 4( h16 ":" ) ls32
1301  *                / [ *1( h16 ":" ) h16 ] "::" 3( h16 ":" ) ls32
1302  *                / [ *2( h16 ":" ) h16 ] "::" 2( h16 ":" ) ls32
1303  *                / [ *3( h16 ":" ) h16 ] "::"    h16 ":"   ls32
1304  *                / [ *4( h16 ":" ) h16 ] "::"              ls32
1305  *                / [ *5( h16 ":" ) h16 ] "::"              h16
1306  *                / [ *6( h16 ":" ) h16 ] "::"
1307  *
1308  * ls32        = ( h16 ":" h16 ) / IPv4address
1309  *             ; least-significant 32 bits of address.
1310  *
1311  * h16         = 1*4HEXDIG
1312  *             ; 16 bits of address represented in hexadecimal.
1313  *
1314  * Modeled after google-url's 'DoParseIPv6' function.
1315  */
1316 static BOOL parse_ipv6address(const WCHAR **ptr, parse_data *data, DWORD flags) {
1317     const WCHAR *start, *cur_start;
1318     ipv6_address ip;
1319
1320     start = cur_start = *ptr;
1321     memset(&ip, 0, sizeof(ipv6_address));
1322
1323     for(;; ++(*ptr)) {
1324         /* Check if we're on the last character of the host. */
1325         BOOL is_end = (is_auth_delim(**ptr, data->scheme_type != URL_SCHEME_UNKNOWN)
1326                         || **ptr == ']');
1327
1328         BOOL is_split = (**ptr == ':');
1329         BOOL is_elision = (is_split && !is_end && *(*ptr+1) == ':');
1330
1331         /* Check if we're at the end of of the a component, or
1332          * if we're at the end of the IPv6 address.
1333          */
1334         if(is_split || is_end) {
1335             DWORD cur_len = 0;
1336
1337             cur_len = *ptr - cur_start;
1338
1339             /* h16 can't have a length > 4. */
1340             if(cur_len > 4) {
1341                 *ptr = start;
1342
1343                 TRACE("(%p %p %x): h16 component to long.\n",
1344                     ptr, data, flags);
1345                 return FALSE;
1346             }
1347
1348             if(cur_len == 0) {
1349                 /* An h16 component can't have the length of 0 unless
1350                  * the elision is at the beginning of the address, or
1351                  * at the end of the address.
1352                  */
1353                 if(!((*ptr == start && is_elision) ||
1354                     (is_end && (*ptr-2) == ip.elision))) {
1355                     *ptr = start;
1356                     TRACE("(%p %p %x): IPv6 component can not have a length of 0.\n",
1357                         ptr, data, flags);
1358                     return FALSE;
1359                 }
1360             }
1361
1362             if(cur_len > 0) {
1363                 /* An IPv6 address can have no more than 8 h16 components. */
1364                 if(ip.h16_count >= 8) {
1365                     *ptr = start;
1366                     TRACE("(%p %p %x): Not a IPv6 address, to many h16 components.\n",
1367                         ptr, data, flags);
1368                     return FALSE;
1369                 }
1370
1371                 ip.components[ip.h16_count].str = cur_start;
1372                 ip.components[ip.h16_count].len = cur_len;
1373
1374                 TRACE("(%p %p %x): Found h16 component %s, len=%d, h16_count=%d\n",
1375                     ptr, data, flags, debugstr_wn(cur_start, cur_len), cur_len,
1376                     ip.h16_count);
1377                 ++ip.h16_count;
1378             }
1379         }
1380
1381         if(is_end)
1382             break;
1383
1384         if(is_elision) {
1385             /* A IPv6 address can only have 1 elision ('::'). */
1386             if(ip.elision) {
1387                 *ptr = start;
1388
1389                 TRACE("(%p %p %x): IPv6 address cannot have 2 elisions.\n",
1390                     ptr, data, flags);
1391                 return FALSE;
1392             }
1393
1394             ip.elision = *ptr;
1395             ++(*ptr);
1396         }
1397
1398         if(is_split)
1399             cur_start = *ptr+1;
1400         else {
1401             if(!check_ipv4address(ptr, TRUE)) {
1402                 if(!is_hexdigit(**ptr)) {
1403                     /* Not a valid character for an IPv6 address. */
1404                     *ptr = start;
1405                     return FALSE;
1406                 }
1407             } else {
1408                 /* Found an IPv4 address. */
1409                 ip.ipv4 = cur_start;
1410                 ip.ipv4_len = *ptr - cur_start;
1411
1412                 TRACE("(%p %p %x): Found an attached IPv4 address %s len=%d.\n",
1413                     ptr, data, flags, debugstr_wn(ip.ipv4, ip.ipv4_len),
1414                     ip.ipv4_len);
1415
1416                 /* IPv4 addresses can only appear at the end of a IPv6. */
1417                 break;
1418             }
1419         }
1420     }
1421
1422     compute_ipv6_comps_size(&ip);
1423
1424     /* Make sure the IPv6 address adds up to 16 bytes. */
1425     if(ip.components_size + ip.elision_size != 16) {
1426         *ptr = start;
1427         TRACE("(%p %p %x): Invalid IPv6 address, did not add up to 16 bytes.\n",
1428             ptr, data, flags);
1429         return FALSE;
1430     }
1431
1432     if(ip.elision_size == 2) {
1433         /* For some reason on Windows if an elision that represents
1434          * only 1 h16 component is encountered at the very begin or
1435          * end of an IPv6 address, Windows does not consider it a
1436          * valid IPv6 address.
1437          *
1438          *  Ex: [::2:3:4:5:6:7] is not valid, even though the sum
1439          *      of all the components == 128bits.
1440          */
1441          if(ip.elision < ip.components[0].str ||
1442             ip.elision > ip.components[ip.h16_count-1].str) {
1443             *ptr = start;
1444             TRACE("(%p %p %x): Invalid IPv6 address. Detected elision of 2 bytes at the beginning or end of the address.\n",
1445                 ptr, data, flags);
1446             return FALSE;
1447         }
1448     }
1449
1450     data->host_type = Uri_HOST_IPV6;
1451     data->has_ipv6 = TRUE;
1452     data->ipv6_address = ip;
1453
1454     TRACE("(%p %p %x): Found valid IPv6 literal %s len=%d\n",
1455         ptr, data, flags, debugstr_wn(start, *ptr-start),
1456         *ptr-start);
1457     return TRUE;
1458 }
1459
1460 /*  IPvFuture  = "v" 1*HEXDIG "." 1*( unreserved / sub-delims / ":" ) */
1461 static BOOL parse_ipvfuture(const WCHAR **ptr, parse_data *data, DWORD flags) {
1462     const WCHAR *start = *ptr;
1463
1464     /* IPvFuture has to start with a 'v' or 'V'. */
1465     if(**ptr != 'v' && **ptr != 'V')
1466         return FALSE;
1467
1468     /* Following the v their must be atleast 1 hexdigit. */
1469     ++(*ptr);
1470     if(!is_hexdigit(**ptr)) {
1471         *ptr = start;
1472         return FALSE;
1473     }
1474
1475     ++(*ptr);
1476     while(is_hexdigit(**ptr))
1477         ++(*ptr);
1478
1479     /* End of the hexdigit sequence must be a '.' */
1480     if(**ptr != '.') {
1481         *ptr = start;
1482         return FALSE;
1483     }
1484
1485     ++(*ptr);
1486     if(!is_unreserved(**ptr) && !is_subdelim(**ptr) && **ptr != ':') {
1487         *ptr = start;
1488         return FALSE;
1489     }
1490
1491     ++(*ptr);
1492     while(is_unreserved(**ptr) || is_subdelim(**ptr) || **ptr == ':')
1493         ++(*ptr);
1494
1495     data->host_type = Uri_HOST_UNKNOWN;
1496
1497     TRACE("(%p %p %x): Parsed IPvFuture address %s len=%d\n", ptr, data, flags,
1498         debugstr_wn(start, *ptr-start), *ptr-start);
1499
1500     return TRUE;
1501 }
1502
1503 /* IP-literal = "[" ( IPv6address / IPvFuture  ) "]" */
1504 static BOOL parse_ip_literal(const WCHAR **ptr, parse_data *data, DWORD flags) {
1505     data->host = *ptr;
1506
1507     if(**ptr != '[') {
1508         data->host = NULL;
1509         return FALSE;
1510     }
1511
1512     ++(*ptr);
1513     if(!parse_ipv6address(ptr, data, flags)) {
1514         if(!parse_ipvfuture(ptr, data, flags)) {
1515             *ptr = data->host;
1516             data->host = NULL;
1517             return FALSE;
1518         }
1519     }
1520
1521     if(**ptr != ']') {
1522         *ptr = data->host;
1523         data->host = NULL;
1524         return FALSE;
1525     }
1526
1527     ++(*ptr);
1528     if(**ptr == ':') {
1529         ++(*ptr);
1530         /* If a valid port is not found, then let it trickle down to
1531          * parse_reg_name.
1532          */
1533         if(!parse_port(ptr, data, flags)) {
1534             *ptr = data->host;
1535             data->host = NULL;
1536             return FALSE;
1537         }
1538     } else
1539         data->host_len = *ptr - data->host;
1540
1541     return TRUE;
1542 }
1543
1544 /* Parses the host information from the URI.
1545  *
1546  * host = IP-literal / IPv4address / reg-name
1547  */
1548 static BOOL parse_host(const WCHAR **ptr, parse_data *data, DWORD flags) {
1549     if(!parse_ip_literal(ptr, data, flags)) {
1550         if(!parse_ipv4address(ptr, data, flags)) {
1551             if(!parse_reg_name(ptr, data, flags)) {
1552                 TRACE("(%p %p %x): Malformed URI, Unknown host type.\n",
1553                     ptr, data, flags);
1554                 return FALSE;
1555             }
1556         }
1557     }
1558
1559     return TRUE;
1560 }
1561
1562 /* Parses the authority information from the URI.
1563  *
1564  * authority   = [ userinfo "@" ] host [ ":" port ]
1565  */
1566 static BOOL parse_authority(const WCHAR **ptr, parse_data *data, DWORD flags) {
1567     parse_userinfo(ptr, data, flags);
1568
1569     /* Parsing the port will happen during one of the host parsing
1570      * routines (if the URI has a port).
1571      */
1572     if(!parse_host(ptr, data, flags))
1573         return FALSE;
1574
1575     return TRUE;
1576 }
1577
1578 /* Attempts to parse the path information of a hierarchical URI. */
1579 static BOOL parse_path_hierarchical(const WCHAR **ptr, parse_data *data, DWORD flags) {
1580     const WCHAR *start = *ptr;
1581     static const WCHAR slash[] = {'/',0};
1582
1583     if(is_path_delim(**ptr)) {
1584         if(data->scheme_type == URL_SCHEME_WILDCARD) {
1585             /* Wildcard schemes don't get a '/' attached if their path is
1586              * empty.
1587              */
1588             data->path = NULL;
1589             data->path_len = 0;
1590         } else if(!(flags & Uri_CREATE_NO_CANONICALIZE)) {
1591             /* If the path component is empty, then a '/' is added. */
1592             data->path = slash;
1593             data->path_len = 1;
1594         }
1595     } else {
1596         while(!is_path_delim(**ptr)) {
1597             if(**ptr == '%' && data->scheme_type != URL_SCHEME_UNKNOWN &&
1598                data->scheme_type != URL_SCHEME_FILE) {
1599                 if(!check_pct_encoded(ptr)) {
1600                     *ptr = start;
1601                     return FALSE;
1602                 } else
1603                     continue;
1604             } else if(**ptr == '\\') {
1605                 /* Not allowed to have a backslash if NO_CANONICALIZE is set
1606                  * and the scheme is known type (but not a file scheme).
1607                  */
1608                 if(flags & Uri_CREATE_NO_CANONICALIZE) {
1609                     if(data->scheme_type != URL_SCHEME_FILE &&
1610                        data->scheme_type != URL_SCHEME_UNKNOWN) {
1611                         *ptr = start;
1612                         return FALSE;
1613                     }
1614                 }
1615             }
1616
1617             ++(*ptr);
1618         }
1619
1620         /* The only time a URI doesn't have a path is when
1621          * the NO_CANONICALIZE flag is set and the raw URI
1622          * didn't contain one.
1623          */
1624         if(*ptr == start) {
1625             data->path = NULL;
1626             data->path_len = 0;
1627         } else {
1628             data->path = start;
1629             data->path_len = *ptr - start;
1630         }
1631     }
1632
1633     if(data->path)
1634         TRACE("(%p %p %x): Parsed path %s len=%d\n", ptr, data, flags,
1635             debugstr_wn(data->path, data->path_len), data->path_len);
1636     else
1637         TRACE("(%p %p %x): The URI contained no path\n", ptr, data, flags);
1638
1639     return TRUE;
1640 }
1641
1642 /* Parses the path of a opaque URI (much less strict then the parser
1643  * for a hierarchical URI).
1644  *
1645  * NOTE:
1646  *  Windows allows invalid % encoded data to appear in opaque URI paths
1647  *  for unknown scheme types.
1648  */
1649 static BOOL parse_path_opaque(const WCHAR **ptr, parse_data *data, DWORD flags) {
1650     const BOOL known_scheme = data->scheme_type != URL_SCHEME_UNKNOWN;
1651
1652     data->path = *ptr;
1653
1654     while(!is_path_delim(**ptr)) {
1655         if(**ptr == '%' && known_scheme) {
1656             if(!check_pct_encoded(ptr)) {
1657                 *ptr = data->path;
1658                 data->path = NULL;
1659                 return FALSE;
1660             } else
1661                 continue;
1662         }
1663
1664         ++(*ptr);
1665     }
1666
1667     data->path_len = *ptr - data->path;
1668     TRACE("(%p %p %x): Parsed opaque URI path %s len=%d\n", ptr, data, flags,
1669         debugstr_wn(data->path, data->path_len), data->path_len);
1670     return TRUE;
1671 }
1672
1673 /* Determines how the URI should be parsed after the scheme information.
1674  *
1675  * If the scheme is followed, by "//" then, it is treated as an hierarchical URI
1676  * which then the authority and path information will be parsed out. Otherwise, the
1677  * URI will be treated as an opaque URI which the authority information is not parsed
1678  * out.
1679  *
1680  * RFC 3896 definition of hier-part:
1681  *
1682  * hier-part   = "//" authority path-abempty
1683  *                 / path-absolute
1684  *                 / path-rootless
1685  *                 / path-empty
1686  *
1687  * MSDN opaque URI definition:
1688  *  scheme ":" path [ "#" fragment ]
1689  *
1690  * NOTES:
1691  *  If the URI is of an unknown scheme type and has a "//" following the scheme then it
1692  *  is treated as a hierarchical URI, but, if the CREATE_NO_CRACK_UNKNOWN_SCHEMES flag is
1693  *  set then it is considered an opaque URI reguardless of what follows the scheme information
1694  *  (per MSDN documentation).
1695  */
1696 static BOOL parse_hierpart(const WCHAR **ptr, parse_data *data, DWORD flags) {
1697     const WCHAR *start = *ptr;
1698
1699     /* Checks if the authority information needs to be parsed.
1700      *
1701      * Relative URI's aren't hierarchical URI's, but, they could trick
1702      * "check_hierarchical" into thinking it is, so we need to explicitly
1703      * make sure it's not relative. Also, if the URI is an implicit file
1704      * scheme it might not contain a "//", but, it's considered hierarchical
1705      * anyways. Wildcard Schemes are always considered hierarchical
1706      */
1707     if(data->scheme_type == URL_SCHEME_WILDCARD ||
1708        data->scheme_type == URL_SCHEME_FILE ||
1709        (!data->is_relative && check_hierarchical(ptr))) {
1710         /* Only treat it as a hierarchical URI if the scheme_type is known or
1711          * the Uri_CREATE_NO_CRACK_UNKNOWN_SCHEMES flag is not set.
1712          */
1713         if(data->scheme_type != URL_SCHEME_UNKNOWN ||
1714            !(flags & Uri_CREATE_NO_CRACK_UNKNOWN_SCHEMES)) {
1715             TRACE("(%p %p %x): Treating URI as an hierarchical URI.\n", ptr, data, flags);
1716             data->is_opaque = FALSE;
1717
1718             if(data->scheme_type == URL_SCHEME_FILE)
1719                 /* Skip past the "//" after the scheme (if any). */
1720                 check_hierarchical(ptr);
1721
1722             /* TODO: Handle hierarchical URI's, parse authority then parse the path. */
1723             if(!parse_authority(ptr, data, flags))
1724                 return FALSE;
1725
1726             return parse_path_hierarchical(ptr, data, flags);
1727         } else
1728             /* Reset ptr to it's starting position so opaque path parsing
1729              * begins at the correct location.
1730              */
1731             *ptr = start;
1732     }
1733
1734     /* If it reaches here, then the URI will be treated as an opaque
1735      * URI.
1736      */
1737
1738     TRACE("(%p %p %x): Treating URI as an opaque URI.\n", ptr, data, flags);
1739
1740     data->is_opaque = TRUE;
1741     if(!parse_path_opaque(ptr, data, flags))
1742         return FALSE;
1743
1744     return TRUE;
1745 }
1746
1747 /* Attempts to parse the query string from the URI.
1748  *
1749  * NOTES:
1750  *  If NO_DECODE_EXTRA_INFO flag is set, then invalid percent encoded
1751  *  data is allowed appear in the query string. For unknown scheme types
1752  *  invalid percent encoded data is allowed to appear reguardless.
1753  */
1754 static BOOL parse_query(const WCHAR **ptr, parse_data *data, DWORD flags) {
1755     const BOOL known_scheme = data->scheme_type != URL_SCHEME_UNKNOWN;
1756
1757     if(**ptr != '?') {
1758         TRACE("(%p %p %x): URI didn't contain a query string.\n", ptr, data, flags);
1759         return TRUE;
1760     }
1761
1762     data->query = *ptr;
1763
1764     ++(*ptr);
1765     while(**ptr && **ptr != '#') {
1766         if(**ptr == '%' && known_scheme &&
1767            !(flags & Uri_CREATE_NO_DECODE_EXTRA_INFO)) {
1768             if(!check_pct_encoded(ptr)) {
1769                 *ptr = data->query;
1770                 data->query = NULL;
1771                 return FALSE;
1772             } else
1773                 continue;
1774         }
1775
1776         ++(*ptr);
1777     }
1778
1779     data->query_len = *ptr - data->query;
1780
1781     TRACE("(%p %p %x): Parsed query string %s len=%d\n", ptr, data, flags,
1782         debugstr_wn(data->query, data->query_len), data->query_len);
1783     return TRUE;
1784 }
1785
1786 /* Parses and validates the components of the specified by data->uri
1787  * and stores the information it parses into 'data'.
1788  *
1789  * Returns TRUE if it successfully parsed the URI. False otherwise.
1790  */
1791 static BOOL parse_uri(parse_data *data, DWORD flags) {
1792     const WCHAR *ptr;
1793     const WCHAR **pptr;
1794
1795     ptr = data->uri;
1796     pptr = &ptr;
1797
1798     TRACE("(%p %x): BEGINNING TO PARSE URI %s.\n", data, flags, debugstr_w(data->uri));
1799
1800     if(!parse_scheme(pptr, data, flags))
1801         return FALSE;
1802
1803     if(!parse_hierpart(pptr, data, flags))
1804         return FALSE;
1805
1806     if(!parse_query(pptr, data, flags))
1807         return FALSE;
1808
1809     /* TODO: Parse fragment (if the URI has one). */
1810
1811     TRACE("(%p %x): FINISHED PARSING URI.\n", data, flags);
1812     return TRUE;
1813 }
1814
1815 /* Canonicalizes the userinfo of the URI represented by the parse_data.
1816  *
1817  * Canonicalization of the userinfo is a simple process. If there are any percent
1818  * encoded characters that fall in the "unreserved" character set, they are decoded
1819  * to their actual value. If a character is not in the "unreserved" or "reserved" sets
1820  * then it is percent encoded. Other than that the characters are copied over without
1821  * change.
1822  */
1823 static BOOL canonicalize_userinfo(const parse_data *data, Uri *uri, DWORD flags, BOOL computeOnly) {
1824     DWORD i = 0;
1825
1826     uri->userinfo_start = uri->userinfo_split = -1;
1827     uri->userinfo_len = 0;
1828
1829     if(!data->userinfo)
1830         /* URI doesn't have userinfo, so nothing to do here. */
1831         return TRUE;
1832
1833     uri->userinfo_start = uri->canon_len;
1834
1835     while(i < data->userinfo_len) {
1836         if(data->userinfo[i] == ':' && uri->userinfo_split == -1)
1837             /* Windows only considers the first ':' as the delimiter. */
1838             uri->userinfo_split = uri->canon_len - uri->userinfo_start;
1839         else if(data->userinfo[i] == '%') {
1840             /* Only decode % encoded values for known scheme types. */
1841             if(data->scheme_type != URL_SCHEME_UNKNOWN) {
1842                 /* See if the value really needs decoded. */
1843                 WCHAR val = decode_pct_val(data->userinfo + i);
1844                 if(is_unreserved(val)) {
1845                     if(!computeOnly)
1846                         uri->canon_uri[uri->canon_len] = val;
1847
1848                     ++uri->canon_len;
1849
1850                     /* Move pass the hex characters. */
1851                     i += 3;
1852                     continue;
1853                 }
1854             }
1855         } else if(!is_reserved(data->userinfo[i]) && !is_unreserved(data->userinfo[i]) &&
1856                   data->userinfo[i] != '\\') {
1857             /* Only percent encode forbidden characters if the NO_ENCODE_FORBIDDEN_CHARACTERS flag
1858              * is NOT set.
1859              */
1860             if(!(flags & Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS)) {
1861                 if(!computeOnly)
1862                     pct_encode_val(data->userinfo[i], uri->canon_uri + uri->canon_len);
1863
1864                 uri->canon_len += 3;
1865                 ++i;
1866                 continue;
1867             }
1868         }
1869
1870         if(!computeOnly)
1871             /* Nothing special, so just copy the character over. */
1872             uri->canon_uri[uri->canon_len] = data->userinfo[i];
1873
1874         ++uri->canon_len;
1875         ++i;
1876     }
1877
1878     uri->userinfo_len = uri->canon_len - uri->userinfo_start;
1879     if(!computeOnly)
1880         TRACE("(%p %p %x %d): Canonicalized userinfo, userinfo_start=%d, userinfo=%s, userinfo_split=%d userinfo_len=%d.\n",
1881                 data, uri, flags, computeOnly, uri->userinfo_start, debugstr_wn(uri->canon_uri + uri->userinfo_start, uri->userinfo_len),
1882                 uri->userinfo_split, uri->userinfo_len);
1883
1884     /* Now insert the '@' after the userinfo. */
1885     if(!computeOnly)
1886         uri->canon_uri[uri->canon_len] = '@';
1887
1888     ++uri->canon_len;
1889     return TRUE;
1890 }
1891
1892 /* Attempts to canonicalize a reg_name.
1893  *
1894  * Things that happen:
1895  *  1)  If Uri_CREATE_NO_CANONICALIZE flag is not set, then the reg_name is
1896  *      lower cased. Unless it's an unknown scheme type, which case it's
1897  *      no lower cased reguardless.
1898  *
1899  *  2)  Unreserved % encoded characters are decoded for known
1900  *      scheme types.
1901  *
1902  *  3)  Forbidden characters are % encoded as long as
1903  *      Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS flag is not set and
1904  *      it isn't an unknown scheme type.
1905  *
1906  *  4)  If it's a file scheme and the host is "localhost" it's removed.
1907  */
1908 static BOOL canonicalize_reg_name(const parse_data *data, Uri *uri,
1909                                   DWORD flags, BOOL computeOnly) {
1910     static const WCHAR localhostW[] =
1911             {'l','o','c','a','l','h','o','s','t',0};
1912     const WCHAR *ptr;
1913     const BOOL known_scheme = data->scheme_type != URL_SCHEME_UNKNOWN;
1914
1915     uri->host_start = uri->canon_len;
1916
1917     if(data->scheme_type == URL_SCHEME_FILE &&
1918        data->host_len == lstrlenW(localhostW)) {
1919         if(!StrCmpNIW(data->host, localhostW, data->host_len)) {
1920             uri->host_start = -1;
1921             uri->host_len = 0;
1922             uri->host_type = Uri_HOST_UNKNOWN;
1923             return TRUE;
1924         }
1925     }
1926
1927     for(ptr = data->host; ptr < data->host+data->host_len; ++ptr) {
1928         if(*ptr == '%' && known_scheme) {
1929             WCHAR val = decode_pct_val(ptr);
1930             if(is_unreserved(val)) {
1931                 /* If NO_CANONICALZE is not set, then windows lower cases the
1932                  * decoded value.
1933                  */
1934                 if(!(flags & Uri_CREATE_NO_CANONICALIZE) && isupperW(val)) {
1935                     if(!computeOnly)
1936                         uri->canon_uri[uri->canon_len] = tolowerW(val);
1937                 } else {
1938                     if(!computeOnly)
1939                         uri->canon_uri[uri->canon_len] = val;
1940                 }
1941                 ++uri->canon_len;
1942
1943                 /* Skip past the % encoded character. */
1944                 ptr += 2;
1945                 continue;
1946             } else {
1947                 /* Just copy the % over. */
1948                 if(!computeOnly)
1949                     uri->canon_uri[uri->canon_len] = *ptr;
1950                 ++uri->canon_len;
1951             }
1952         } else if(*ptr == '\\') {
1953             /* Only unknown scheme types could have made it here with a '\\' in the host name. */
1954             if(!computeOnly)
1955                 uri->canon_uri[uri->canon_len] = *ptr;
1956             ++uri->canon_len;
1957         } else if(!(flags & Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS) &&
1958                   !is_unreserved(*ptr) && !is_reserved(*ptr) && known_scheme) {
1959             if(!computeOnly) {
1960                 pct_encode_val(*ptr, uri->canon_uri+uri->canon_len);
1961
1962                 /* The percent encoded value gets lower cased also. */
1963                 if(!(flags & Uri_CREATE_NO_CANONICALIZE)) {
1964                     uri->canon_uri[uri->canon_len+1] = tolowerW(uri->canon_uri[uri->canon_len+1]);
1965                     uri->canon_uri[uri->canon_len+2] = tolowerW(uri->canon_uri[uri->canon_len+2]);
1966                 }
1967             }
1968
1969             uri->canon_len += 3;
1970         } else {
1971             if(!computeOnly) {
1972                 if(!(flags & Uri_CREATE_NO_CANONICALIZE) && known_scheme)
1973                     uri->canon_uri[uri->canon_len] = tolowerW(*ptr);
1974                 else
1975                     uri->canon_uri[uri->canon_len] = *ptr;
1976             }
1977
1978             ++uri->canon_len;
1979         }
1980     }
1981
1982     uri->host_len = uri->canon_len - uri->host_start;
1983
1984     if(!computeOnly)
1985         TRACE("(%p %p %x %d): Canonicalize reg_name=%s len=%d\n", data, uri, flags,
1986             computeOnly, debugstr_wn(uri->canon_uri+uri->host_start, uri->host_len),
1987             uri->host_len);
1988
1989     if(!computeOnly)
1990         find_domain_name(uri->canon_uri+uri->host_start, uri->host_len,
1991             &(uri->domain_offset));
1992
1993     return TRUE;
1994 }
1995
1996 /* Attempts to canonicalize an implicit IPv4 address. */
1997 static BOOL canonicalize_implicit_ipv4address(const parse_data *data, Uri *uri, DWORD flags, BOOL computeOnly) {
1998     uri->host_start = uri->canon_len;
1999
2000     TRACE("%u\n", data->implicit_ipv4);
2001     /* For unknown scheme types Window's doesn't convert
2002      * the value into an IP address, but, it still considers
2003      * it an IPv4 address.
2004      */
2005     if(data->scheme_type == URL_SCHEME_UNKNOWN) {
2006         if(!computeOnly)
2007             memcpy(uri->canon_uri+uri->canon_len, data->host, data->host_len*sizeof(WCHAR));
2008         uri->canon_len += data->host_len;
2009     } else {
2010         if(!computeOnly)
2011             uri->canon_len += ui2ipv4(uri->canon_uri+uri->canon_len, data->implicit_ipv4);
2012         else
2013             uri->canon_len += ui2ipv4(NULL, data->implicit_ipv4);
2014     }
2015
2016     uri->host_len = uri->canon_len - uri->host_start;
2017     uri->host_type = Uri_HOST_IPV4;
2018
2019     if(!computeOnly)
2020         TRACE("%p %p %x %d): Canonicalized implicit IP address=%s len=%d\n",
2021             data, uri, flags, computeOnly,
2022             debugstr_wn(uri->canon_uri+uri->host_start, uri->host_len),
2023             uri->host_len);
2024
2025     return TRUE;
2026 }
2027
2028 /* Attempts to canonicalize an IPv4 address.
2029  *
2030  * If the parse_data represents a URI that has an implicit IPv4 address
2031  * (ex. http://256/, this function will convert 256 into 0.0.1.0). If
2032  * the implicit IP address exceeds the value of UINT_MAX (maximum value
2033  * for an IPv4 address) it's canonicalized as if were a reg-name.
2034  *
2035  * If the parse_data contains a partial or full IPv4 address it normalizes it.
2036  * A partial IPv4 address is something like "192.0" and would be normalized to
2037  * "192.0.0.0". With a full (or partial) IPv4 address like "192.002.01.003" would
2038  * be normalized to "192.2.1.3".
2039  *
2040  * NOTES:
2041  *  Window's ONLY normalizes IPv4 address for known scheme types (one that isn't
2042  *  URL_SCHEME_UNKNOWN). For unknown scheme types, it simply copies the data from
2043  *  the original URI into the canonicalized URI, but, it still recognizes URI's
2044  *  host type as HOST_IPV4.
2045  */
2046 static BOOL canonicalize_ipv4address(const parse_data *data, Uri *uri, DWORD flags, BOOL computeOnly) {
2047     if(data->has_implicit_ip)
2048         return canonicalize_implicit_ipv4address(data, uri, flags, computeOnly);
2049     else {
2050         uri->host_start = uri->canon_len;
2051
2052         /* Windows only normalizes for known scheme types. */
2053         if(data->scheme_type != URL_SCHEME_UNKNOWN) {
2054             /* parse_data contains a partial or full IPv4 address, so normalize it. */
2055             DWORD i, octetDigitCount = 0, octetCount = 0;
2056             BOOL octetHasDigit = FALSE;
2057
2058             for(i = 0; i < data->host_len; ++i) {
2059                 if(data->host[i] == '0' && !octetHasDigit) {
2060                     /* Can ignore leading zeros if:
2061                      *  1) It isn't the last digit of the octet.
2062                      *  2) i+1 != data->host_len
2063                      *  3) i+1 != '.'
2064                      */
2065                     if(octetDigitCount == 2 ||
2066                        i+1 == data->host_len ||
2067                        data->host[i+1] == '.') {
2068                         if(!computeOnly)
2069                             uri->canon_uri[uri->canon_len] = data->host[i];
2070                         ++uri->canon_len;
2071                         TRACE("Adding zero\n");
2072                     }
2073                 } else if(data->host[i] == '.') {
2074                     if(!computeOnly)
2075                         uri->canon_uri[uri->canon_len] = data->host[i];
2076                     ++uri->canon_len;
2077
2078                     octetDigitCount = 0;
2079                     octetHasDigit = FALSE;
2080                     ++octetCount;
2081                 } else {
2082                     if(!computeOnly)
2083                         uri->canon_uri[uri->canon_len] = data->host[i];
2084                     ++uri->canon_len;
2085
2086                     ++octetDigitCount;
2087                     octetHasDigit = TRUE;
2088                 }
2089             }
2090
2091             /* Make sure the canonicalized IP address has 4 dec-octets.
2092              * If doesn't add "0" ones until there is 4;
2093              */
2094             for( ; octetCount < 3; ++octetCount) {
2095                 if(!computeOnly) {
2096                     uri->canon_uri[uri->canon_len] = '.';
2097                     uri->canon_uri[uri->canon_len+1] = '0';
2098                 }
2099
2100                 uri->canon_len += 2;
2101             }
2102         } else {
2103             /* Windows doesn't normalize addresses in unknown schemes. */
2104             if(!computeOnly)
2105                 memcpy(uri->canon_uri+uri->canon_len, data->host, data->host_len*sizeof(WCHAR));
2106             uri->canon_len += data->host_len;
2107         }
2108
2109         uri->host_len = uri->canon_len - uri->host_start;
2110         if(!computeOnly)
2111             TRACE("(%p %p %x %d): Canonicalized IPv4 address, ip=%s len=%d\n",
2112                 data, uri, flags, computeOnly,
2113                 debugstr_wn(uri->canon_uri+uri->host_start, uri->host_len),
2114                 uri->host_len);
2115     }
2116
2117     return TRUE;
2118 }
2119
2120 /* Attempts to canonicalize the IPv6 address of the URI.
2121  *
2122  * Multiple things happen during the canonicalization of an IPv6 address:
2123  *  1)  Any leading zero's in an h16 component are removed.
2124  *      Ex: [0001:0022::] -> [1:22::]
2125  *
2126  *  2)  The longest sequence of zero h16 components are compressed
2127  *      into a "::" (elision). If there's a tie, the first is choosen.
2128  *
2129  *      Ex: [0:0:0:0:1:6:7:8]   -> [::1:6:7:8]
2130  *          [0:0:0:0:1:2::]     -> [::1:2:0:0]
2131  *          [0:0:1:2:0:0:7:8]   -> [::1:2:0:0:7:8]
2132  *
2133  *  3)  If an IPv4 address is attached to the IPv6 address, it's
2134  *      also normalized.
2135  *      Ex: [::001.002.022.000] -> [::1.2.22.0]
2136  *
2137  *  4)  If an elision is present, but, only represents 1 h16 component
2138  *      it's expanded.
2139  *
2140  *      Ex: [1::2:3:4:5:6:7] -> [1:0:2:3:4:5:6:7]
2141  *
2142  *  5)  If the IPv6 address contains an IPv4 address and there exists
2143  *      at least 1 non-zero h16 component the IPv4 address is converted
2144  *      into two h16 components, otherwise it's normalized and kept as is.
2145  *
2146  *      Ex: [::192.200.003.4]       -> [::192.200.3.4]
2147  *          [ffff::192.200.003.4]   -> [ffff::c0c8:3041]
2148  *
2149  * NOTE:
2150  *  For unknown scheme types Windows simply copies the address over without any
2151  *  changes.
2152  *
2153  *  IPv4 address can be included in an elision if all its components are 0's.
2154  */
2155 static BOOL canonicalize_ipv6address(const parse_data *data, Uri *uri,
2156                                      DWORD flags, BOOL computeOnly) {
2157     uri->host_start = uri->canon_len;
2158
2159     if(data->scheme_type == URL_SCHEME_UNKNOWN) {
2160         if(!computeOnly)
2161             memcpy(uri->canon_uri+uri->canon_len, data->host, data->host_len*sizeof(WCHAR));
2162         uri->canon_len += data->host_len;
2163     } else {
2164         USHORT values[8];
2165         INT elision_start;
2166         DWORD i, elision_len;
2167
2168         if(!ipv6_to_number(&(data->ipv6_address), values)) {
2169             TRACE("(%p %p %x %d): Failed to compute numerical value for IPv6 address.\n",
2170                 data, uri, flags, computeOnly);
2171             return FALSE;
2172         }
2173
2174         if(!computeOnly)
2175             uri->canon_uri[uri->canon_len] = '[';
2176         ++uri->canon_len;
2177
2178         /* Find where the elision should occur (if any). */
2179         compute_elision_location(&(data->ipv6_address), values, &elision_start, &elision_len);
2180
2181         TRACE("%p %p %x %d): Elision starts at %d, len=%u\n", data, uri, flags,
2182             computeOnly, elision_start, elision_len);
2183
2184         for(i = 0; i < 8; ++i) {
2185             BOOL in_elision = (elision_start > -1 && i >= elision_start &&
2186                                i < elision_start+elision_len);
2187             BOOL do_ipv4 = (i == 6 && data->ipv6_address.ipv4 && !in_elision &&
2188                             data->ipv6_address.h16_count == 0);
2189
2190             if(i == elision_start) {
2191                 if(!computeOnly) {
2192                     uri->canon_uri[uri->canon_len] = ':';
2193                     uri->canon_uri[uri->canon_len+1] = ':';
2194                 }
2195                 uri->canon_len += 2;
2196             }
2197
2198             /* We can ignore the current component if we're in the elision. */
2199             if(in_elision)
2200                 continue;
2201
2202             /* We only add a ':' if we're not at i == 0, or when we're at
2203              * the very end of elision range since the ':' colon was handled
2204              * earlier. Otherwise we would end up with ":::" after elision.
2205              */
2206             if(i != 0 && !(elision_start > -1 && i == elision_start+elision_len)) {
2207                 if(!computeOnly)
2208                     uri->canon_uri[uri->canon_len] = ':';
2209                 ++uri->canon_len;
2210             }
2211
2212             if(do_ipv4) {
2213                 UINT val;
2214                 DWORD len;
2215
2216                 /* Combine the two parts of the IPv4 address values. */
2217                 val = values[i];
2218                 val <<= 16;
2219                 val += values[i+1];
2220
2221                 if(!computeOnly)
2222                     len = ui2ipv4(uri->canon_uri+uri->canon_len, val);
2223                 else
2224                     len = ui2ipv4(NULL, val);
2225
2226                 uri->canon_len += len;
2227                 ++i;
2228             } else {
2229                 /* Write a regular h16 component to the URI. */
2230
2231                 /* Short circuit for the trivial case. */
2232                 if(values[i] == 0) {
2233                     if(!computeOnly)
2234                         uri->canon_uri[uri->canon_len] = '0';
2235                     ++uri->canon_len;
2236                 } else {
2237                     static const WCHAR formatW[] = {'%','x',0};
2238
2239                     if(!computeOnly)
2240                         uri->canon_len += sprintfW(uri->canon_uri+uri->canon_len,
2241                                             formatW, values[i]);
2242                     else {
2243                         WCHAR tmp[5];
2244                         uri->canon_len += sprintfW(tmp, formatW, values[i]);
2245                     }
2246                 }
2247             }
2248         }
2249
2250         /* Add the closing ']'. */
2251         if(!computeOnly)
2252             uri->canon_uri[uri->canon_len] = ']';
2253         ++uri->canon_len;
2254     }
2255
2256     uri->host_len = uri->canon_len - uri->host_start;
2257
2258     if(!computeOnly)
2259         TRACE("(%p %p %x %d): Canonicalized IPv6 address %s, len=%d\n", data, uri, flags,
2260             computeOnly, debugstr_wn(uri->canon_uri+uri->host_start, uri->host_len),
2261             uri->host_len);
2262
2263     return TRUE;
2264 }
2265
2266 /* Attempts to canonicalize the host of the URI (if any). */
2267 static BOOL canonicalize_host(const parse_data *data, Uri *uri, DWORD flags, BOOL computeOnly) {
2268     uri->host_start = -1;
2269     uri->host_len = 0;
2270     uri->domain_offset = -1;
2271
2272     if(data->host) {
2273         switch(data->host_type) {
2274         case Uri_HOST_DNS:
2275             uri->host_type = Uri_HOST_DNS;
2276             if(!canonicalize_reg_name(data, uri, flags, computeOnly))
2277                 return FALSE;
2278
2279             break;
2280         case Uri_HOST_IPV4:
2281             uri->host_type = Uri_HOST_IPV4;
2282             if(!canonicalize_ipv4address(data, uri, flags, computeOnly))
2283                 return FALSE;
2284
2285             break;
2286         case Uri_HOST_IPV6:
2287             if(!canonicalize_ipv6address(data, uri, flags, computeOnly))
2288                 return FALSE;
2289
2290             uri->host_type = Uri_HOST_IPV6;
2291             break;
2292         case Uri_HOST_UNKNOWN:
2293             if(data->host_len > 0 || data->scheme_type != URL_SCHEME_FILE) {
2294                 uri->host_start = uri->canon_len;
2295
2296                 /* Nothing happens to unknown host types. */
2297                 if(!computeOnly)
2298                     memcpy(uri->canon_uri+uri->canon_len, data->host, data->host_len*sizeof(WCHAR));
2299                 uri->canon_len += data->host_len;
2300                 uri->host_len = data->host_len;
2301             }
2302
2303             uri->host_type = Uri_HOST_UNKNOWN;
2304             break;
2305         default:
2306             FIXME("(%p %p %x %d): Canonicalization for host type %d not supported.\n", data,
2307                     uri, flags, computeOnly, data->host_type);
2308             return FALSE;
2309        }
2310    }
2311
2312    return TRUE;
2313 }
2314
2315 static BOOL canonicalize_port(const parse_data *data, Uri *uri, DWORD flags, BOOL computeOnly) {
2316     BOOL has_default_port = FALSE;
2317     USHORT default_port = 0;
2318     DWORD i;
2319
2320     uri->has_port = FALSE;
2321
2322     /* Check if the scheme has a default port. */
2323     for(i = 0; i < sizeof(default_ports)/sizeof(default_ports[0]); ++i) {
2324         if(default_ports[i].scheme == data->scheme_type) {
2325             has_default_port = TRUE;
2326             default_port = default_ports[i].port;
2327             break;
2328         }
2329     }
2330
2331     if(data->port || has_default_port)
2332         uri->has_port = TRUE;
2333
2334     /* Possible cases:
2335      *  1)  Has a port which is the default port.
2336      *  2)  Has a port (not the default).
2337      *  3)  Doesn't have a port, but, scheme has a default port.
2338      *  4)  No port.
2339      */
2340     if(has_default_port && data->port && data->port_value == default_port) {
2341         /* If it's the default port and this flag isn't set, don't do anything. */
2342         if(flags & Uri_CREATE_NO_CANONICALIZE) {
2343             /* Copy the original port over. */
2344             if(!computeOnly) {
2345                 uri->canon_uri[uri->canon_len] = ':';
2346                 memcpy(uri->canon_uri+uri->canon_len+1, data->port, data->port_len*sizeof(WCHAR));
2347             }
2348             uri->canon_len += data->port_len+1;
2349         }
2350
2351         uri->port = default_port;
2352     } else if(data->port) {
2353         if(!computeOnly)
2354             uri->canon_uri[uri->canon_len] = ':';
2355         ++uri->canon_len;
2356
2357         if(flags & Uri_CREATE_NO_CANONICALIZE) {
2358             /* Copy the original over without changes. */
2359             if(!computeOnly)
2360                 memcpy(uri->canon_uri+uri->canon_len, data->port, data->port_len*sizeof(WCHAR));
2361             uri->canon_len += data->port_len;
2362         } else {
2363             const WCHAR formatW[] = {'%','u',0};
2364             INT len = 0;
2365             if(!computeOnly)
2366                 len = sprintfW(uri->canon_uri+uri->canon_len, formatW, data->port_value);
2367             else {
2368                 WCHAR tmp[6];
2369                 len = sprintfW(tmp, formatW, data->port_value);
2370             }
2371             uri->canon_len += len;
2372         }
2373
2374         uri->port = data->port_value;
2375     } else if(has_default_port)
2376         uri->port = default_port;
2377
2378     return TRUE;
2379 }
2380
2381 /* Canonicalizes the authority of the URI represented by the parse_data. */
2382 static BOOL canonicalize_authority(const parse_data *data, Uri *uri, DWORD flags, BOOL computeOnly) {
2383     uri->authority_start = uri->canon_len;
2384     uri->authority_len = 0;
2385
2386     if(!canonicalize_userinfo(data, uri, flags, computeOnly))
2387         return FALSE;
2388
2389     if(!canonicalize_host(data, uri, flags, computeOnly))
2390         return FALSE;
2391
2392     if(!canonicalize_port(data, uri, flags, computeOnly))
2393         return FALSE;
2394
2395     if(uri->host_start != -1)
2396         uri->authority_len = uri->canon_len - uri->authority_start;
2397     else
2398         uri->authority_start = -1;
2399
2400     return TRUE;
2401 }
2402
2403 /* Attempts to canonicalize the path of a hierarchical URI.
2404  *
2405  * Things that happen:
2406  *  1). Forbidden characters are percent encoded, unless the NO_ENCODE_FORBIDDEN
2407  *      flag is set or it's a file URI. Forbidden characters are always encoded
2408  *      for file schemes reguardless and forbidden characters are never encoded
2409  *      for unknown scheme types.
2410  *
2411  *  2). For known scheme types '\\' are changed to '/'.
2412  *
2413  *  3). Percent encoded, unreserved characters are decoded to their actual values.
2414  *      Unless the scheme type is unknown. For file schemes any percent encoded
2415  *      character in the unreserved or reserved set is decoded.
2416  *
2417  *  4). For File schemes if the path is starts with a drive letter and doesn't
2418  *      start with a '/' then one is appended.
2419  *      Ex: file://c:/test.mp3 -> file:///c:/test.mp3
2420  *
2421  *  5). Dot segments are removed from the path for all scheme types
2422  *      unless NO_CANONICALIZE flag is set. Dot segments aren't removed
2423  *      for wildcard scheme types.
2424  *
2425  * NOTES:
2426  *      file://c:/test%20test   -> file:///c:/test%2520test
2427  *      file://c:/test%3Etest   -> file:///c:/test%253Etest
2428  *      file:///c:/test%20test  -> file:///c:/test%20test
2429  *      file:///c:/test%test    -> file:///c:/test%25test
2430  */
2431 static BOOL canonicalize_path_hierarchical(const parse_data *data, Uri *uri,
2432                                            DWORD flags, BOOL computeOnly) {
2433     const WCHAR *ptr;
2434     const BOOL known_scheme = data->scheme_type != URL_SCHEME_UNKNOWN;
2435     const BOOL is_file = data->scheme_type == URL_SCHEME_FILE;
2436
2437     BOOL escape_pct = FALSE;
2438
2439     if(!data->path) {
2440         uri->path_start = -1;
2441         uri->path_len = 0;
2442         return TRUE;
2443     }
2444
2445     uri->path_start = uri->canon_len;
2446
2447     /* Check if a '/' needs to be appended for the file scheme. */
2448     if(is_file) {
2449         if(data->path_len > 1 && is_alpha(*(data->path)) &&
2450            *(data->path+1) == ':') {
2451             if(!computeOnly)
2452                 uri->canon_uri[uri->canon_len] = '/';
2453             uri->canon_len++;
2454             escape_pct = TRUE;
2455         }
2456     }
2457
2458     for(ptr = data->path; ptr < data->path+data->path_len; ++ptr) {
2459         if(*ptr == '%') {
2460             const WCHAR *tmp = ptr;
2461             WCHAR val;
2462
2463             /* Check if the % represents a valid encoded char, or if it needs encoded. */
2464             BOOL force_encode = !check_pct_encoded(&tmp) && is_file;
2465             val = decode_pct_val(ptr);
2466
2467             if(force_encode || escape_pct) {
2468                 /* Escape the percent sign in the file URI. */
2469                 if(!computeOnly)
2470                     pct_encode_val(*ptr, uri->canon_uri+uri->canon_len);
2471                 uri->canon_len += 3;
2472             } else if((is_unreserved(val) && known_scheme) ||
2473                       (is_file && (is_unreserved(val) || is_reserved(val)))) {
2474                 if(!computeOnly)
2475                     uri->canon_uri[uri->canon_len] = val;
2476                 ++uri->canon_len;
2477
2478                 ptr += 2;
2479                 continue;
2480             } else {
2481                 if(!computeOnly)
2482                     uri->canon_uri[uri->canon_len] = *ptr;
2483                 ++uri->canon_len;
2484             }
2485         } else if(*ptr == '\\' && known_scheme) {
2486             if(!computeOnly)
2487                 uri->canon_uri[uri->canon_len] = '/';
2488             ++uri->canon_len;
2489         } else if(known_scheme && !is_unreserved(*ptr) && !is_reserved(*ptr) &&
2490                   (!(flags & Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS) || is_file)) {
2491             /* Escape the forbidden character. */
2492             if(!computeOnly)
2493                 pct_encode_val(*ptr, uri->canon_uri+uri->canon_len);
2494             uri->canon_len += 3;
2495         } else {
2496             if(!computeOnly)
2497                 uri->canon_uri[uri->canon_len] = *ptr;
2498             ++uri->canon_len;
2499         }
2500     }
2501
2502     uri->path_len = uri->canon_len - uri->path_start;
2503
2504     /* Removing the dot segments only happens when it's not in
2505      * computeOnly mode and it's not a wildcard scheme.
2506      */
2507     if(!computeOnly && data->scheme_type != URL_SCHEME_WILDCARD) {
2508         if(!(flags & Uri_CREATE_NO_CANONICALIZE)) {
2509             /* Remove the dot segments (if any) and reset everything to the new
2510              * correct length.
2511              */
2512             DWORD new_len = remove_dot_segments(uri->canon_uri+uri->path_start, uri->path_len);
2513             uri->canon_len -= uri->path_len-new_len;
2514             uri->path_len = new_len;
2515         }
2516     }
2517
2518     if(!computeOnly)
2519         TRACE("Canonicalized path %s len=%d\n",
2520             debugstr_wn(uri->canon_uri+uri->path_start, uri->path_len),
2521             uri->path_len);
2522
2523     return TRUE;
2524 }
2525
2526 /* Attempts to canonicalize the path for an opaque URI.
2527  *
2528  * For known scheme types:
2529  *  1)  forbidden characters are percent encoded if
2530  *      NO_ENCODE_FORBIDDEN_CHARACTERS isn't set.
2531  *
2532  *  2)  Percent encoded, unreserved characters are decoded
2533  *      to their actual values, for known scheme types.
2534  *
2535  *  3)  '\\' are changed to '/' for known scheme types
2536  *      except for mailto schemes.
2537  */
2538 static BOOL canonicalize_path_opaque(const parse_data *data, Uri *uri, DWORD flags, BOOL computeOnly) {
2539     const WCHAR *ptr;
2540     const BOOL known_scheme = data->scheme_type != URL_SCHEME_UNKNOWN;
2541
2542     if(!data->path) {
2543         uri->path_start = -1;
2544         uri->path_len = 0;
2545         return TRUE;
2546     }
2547
2548     uri->path_start = uri->canon_len;
2549
2550     /* Windows doesn't allow a "//" to appear after the scheme
2551      * of a URI, if it's an opaque URI.
2552      */
2553     if(data->scheme && *(data->path) == '/' && *(data->path+1) == '/') {
2554         /* So it inserts a "/." before the "//" if it exists. */
2555         if(!computeOnly) {
2556             uri->canon_uri[uri->canon_len] = '/';
2557             uri->canon_uri[uri->canon_len+1] = '.';
2558         }
2559
2560         uri->canon_len += 2;
2561     }
2562
2563     for(ptr = data->path; ptr < data->path+data->path_len; ++ptr) {
2564         if(*ptr == '%' && known_scheme) {
2565             WCHAR val = decode_pct_val(ptr);
2566
2567             if(is_unreserved(val)) {
2568                 if(!computeOnly)
2569                     uri->canon_uri[uri->canon_len] = val;
2570                 ++uri->canon_len;
2571
2572                 ptr += 2;
2573                 continue;
2574             } else {
2575                 if(!computeOnly)
2576                     uri->canon_uri[uri->canon_len] = *ptr;
2577                 ++uri->canon_len;
2578             }
2579         } else if(known_scheme && !is_unreserved(*ptr) && !is_reserved(*ptr) &&
2580                   !(flags & Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS)) {
2581             if(!computeOnly)
2582                 pct_encode_val(*ptr, uri->canon_uri+uri->canon_len);
2583             uri->canon_len += 3;
2584         } else {
2585             if(!computeOnly)
2586                 uri->canon_uri[uri->canon_len] = *ptr;
2587             ++uri->canon_len;
2588         }
2589     }
2590
2591     uri->path_len = uri->canon_len - uri->path_start;
2592
2593     TRACE("(%p %p %x %d): Canonicalized opaque URI path %s len=%d\n", data, uri, flags, computeOnly,
2594         debugstr_wn(uri->canon_uri+uri->path_start, uri->path_len), uri->path_len);
2595     return TRUE;
2596 }
2597
2598 /* Determines how the URI represented by the parse_data should be canonicalized.
2599  *
2600  * Essentially, if the parse_data represents an hierarchical URI then it calls
2601  * canonicalize_authority and the canonicalization functions for the path. If the
2602  * URI is opaque it canonicalizes the path of the URI.
2603  */
2604 static BOOL canonicalize_hierpart(const parse_data *data, Uri *uri, DWORD flags, BOOL computeOnly) {
2605     if(!data->is_opaque) {
2606         /* "//" is only added for non-wildcard scheme types. */
2607         if(data->scheme_type != URL_SCHEME_WILDCARD) {
2608             if(!computeOnly) {
2609                 INT pos = uri->canon_len;
2610
2611                 uri->canon_uri[pos] = '/';
2612                 uri->canon_uri[pos+1] = '/';
2613            }
2614            uri->canon_len += 2;
2615         }
2616
2617         if(!canonicalize_authority(data, uri, flags, computeOnly))
2618             return FALSE;
2619
2620         /* TODO: Canonicalize the path of the URI. */
2621         if(!canonicalize_path_hierarchical(data, uri, flags, computeOnly))
2622             return FALSE;
2623
2624     } else {
2625         /* Opaque URI's don't have an authority. */
2626         uri->userinfo_start = uri->userinfo_split = -1;
2627         uri->userinfo_len = 0;
2628         uri->host_start = -1;
2629         uri->host_len = 0;
2630         uri->host_type = Uri_HOST_UNKNOWN;
2631         uri->has_port = FALSE;
2632         uri->authority_start = -1;
2633         uri->authority_len = 0;
2634         uri->domain_offset = -1;
2635
2636         if(!canonicalize_path_opaque(data, uri, flags, computeOnly))
2637             return FALSE;
2638     }
2639
2640     if(uri->path_start > -1 && !computeOnly)
2641         /* Finding file extensions happens for both types of URIs. */
2642         uri->extension_offset = find_file_extension(uri->canon_uri+uri->path_start, uri->path_len);
2643     else
2644         uri->extension_offset = -1;
2645
2646     return TRUE;
2647 }
2648
2649 /* Attempts to canonicalize the query string of the URI.
2650  *
2651  * Things that happen:
2652  *  1)  For known scheme types forbidden characters
2653  *      are percent encoded, unless the NO_DECODE_EXTRA_INFO flag is set
2654  *      or NO_ENCODE_FORBIDDEN_CHARACTERS is set.
2655  *
2656  *  2)  For known scheme types, percent encoded, unreserved characters
2657  *      are decoded as long as the NO_DECODE_EXTRA_INFO flag isn't set.
2658  */
2659 static BOOL canonicalize_query(const parse_data *data, Uri *uri, DWORD flags, BOOL computeOnly) {
2660     const WCHAR *ptr, *end;
2661     const BOOL known_scheme = data->scheme_type != URL_SCHEME_UNKNOWN;
2662
2663     if(!data->query) {
2664         uri->query_start = -1;
2665         uri->query_len = 0;
2666         return TRUE;
2667     }
2668
2669     uri->query_start = uri->canon_len;
2670
2671     end = data->query+data->query_len;
2672     for(ptr = data->query; ptr < end; ++ptr) {
2673         if(*ptr == '%') {
2674             if(known_scheme && !(flags & Uri_CREATE_NO_DECODE_EXTRA_INFO)) {
2675                 WCHAR val = decode_pct_val(ptr);
2676                 if(is_unreserved(val)) {
2677                     if(!computeOnly)
2678                         uri->canon_uri[uri->canon_len] = val;
2679                     ++uri->canon_len;
2680
2681                     ptr += 2;
2682                     continue;
2683                 }
2684             }
2685         } else if(known_scheme && !is_unreserved(*ptr) && !is_reserved(*ptr)) {
2686             if(!(flags & Uri_CREATE_NO_ENCODE_FORBIDDEN_CHARACTERS) &&
2687                !(flags & Uri_CREATE_NO_DECODE_EXTRA_INFO)) {
2688                 if(!computeOnly)
2689                     pct_encode_val(*ptr, uri->canon_uri+uri->canon_len);
2690                 uri->canon_len += 3;
2691                 continue;
2692             }
2693         }
2694
2695         if(!computeOnly)
2696             uri->canon_uri[uri->canon_len] = *ptr;
2697         ++uri->canon_len;
2698     }
2699
2700     uri->query_len = uri->canon_len - uri->query_start;
2701
2702     if(!computeOnly)
2703         TRACE("(%p %p %x %d): Canonicalized query string %s len=%d\n", data, uri, flags,
2704             computeOnly, debugstr_wn(uri->canon_uri+uri->query_start, uri->query_len),
2705             uri->query_len);
2706     return TRUE;
2707 }
2708
2709 /* Canonicalizes the scheme information specified in the parse_data using the specified flags. */
2710 static BOOL canonicalize_scheme(const parse_data *data, Uri *uri, DWORD flags, BOOL computeOnly) {
2711     uri->scheme_start = -1;
2712     uri->scheme_len = 0;
2713
2714     if(!data->scheme) {
2715         /* The only type of URI that doesn't have to have a scheme is a relative
2716          * URI.
2717          */
2718         if(!data->is_relative) {
2719             FIXME("(%p %p %x): Unable to determine the scheme type of %s.\n", data,
2720                     uri, flags, debugstr_w(data->uri));
2721             return FALSE;
2722         }
2723     } else {
2724         if(!computeOnly) {
2725             DWORD i;
2726             INT pos = uri->canon_len;
2727
2728             for(i = 0; i < data->scheme_len; ++i) {
2729                 /* Scheme name must be lower case after canonicalization. */
2730                 uri->canon_uri[i + pos] = tolowerW(data->scheme[i]);
2731             }
2732
2733             uri->canon_uri[i + pos] = ':';
2734             uri->scheme_start = pos;
2735
2736             TRACE("(%p %p %x): Canonicalized scheme=%s, len=%d.\n", data, uri, flags,
2737                     debugstr_wn(uri->canon_uri,  uri->scheme_len), data->scheme_len);
2738         }
2739
2740         /* This happens in both computation modes. */
2741         uri->canon_len += data->scheme_len + 1;
2742         uri->scheme_len = data->scheme_len;
2743     }
2744     return TRUE;
2745 }
2746
2747 /* Compute's what the length of the URI specified by the parse_data will be
2748  * after canonicalization occurs using the specified flags.
2749  *
2750  * This function will return a non-zero value indicating the length of the canonicalized
2751  * URI, or -1 on error.
2752  */
2753 static int compute_canonicalized_length(const parse_data *data, DWORD flags) {
2754     Uri uri;
2755
2756     memset(&uri, 0, sizeof(Uri));
2757
2758     TRACE("(%p %x): Beginning to compute canonicalized length for URI %s\n", data, flags,
2759             debugstr_w(data->uri));
2760
2761     if(!canonicalize_scheme(data, &uri, flags, TRUE)) {
2762         ERR("(%p %x): Failed to compute URI scheme length.\n", data, flags);
2763         return -1;
2764     }
2765
2766     if(!canonicalize_hierpart(data, &uri, flags, TRUE)) {
2767         ERR("(%p %x): Failed to compute URI hierpart length.\n", data, flags);
2768         return -1;
2769     }
2770
2771     if(!canonicalize_query(data, &uri, flags, TRUE)) {
2772         ERR("(%p %x): Failed to compute query string length.\n", data, flags);
2773         return -1;
2774     }
2775
2776     TRACE("(%p %x): Finished computing canonicalized URI length. length=%d\n", data, flags, uri.canon_len);
2777
2778     return uri.canon_len;
2779 }
2780
2781 /* Canonicalizes the URI data specified in the parse_data, using the given flags. If the
2782  * canonicalization succeededs it will store all the canonicalization information
2783  * in the pointer to the Uri.
2784  *
2785  * To canonicalize a URI this function first computes what the length of the URI
2786  * specified by the parse_data will be. Once this is done it will then perfom the actual
2787  * canonicalization of the URI.
2788  */
2789 static HRESULT canonicalize_uri(const parse_data *data, Uri *uri, DWORD flags) {
2790     INT len;
2791
2792     uri->canon_uri = NULL;
2793     len = uri->canon_size = uri->canon_len = 0;
2794
2795     TRACE("(%p %p %x): beginning to canonicalize URI %s.\n", data, uri, flags, debugstr_w(data->uri));
2796
2797     /* First try to compute the length of the URI. */
2798     len = compute_canonicalized_length(data, flags);
2799     if(len == -1) {
2800         ERR("(%p %p %x): Could not compute the canonicalized length of %s.\n", data, uri, flags,
2801                 debugstr_w(data->uri));
2802         return E_INVALIDARG;
2803     }
2804
2805     uri->canon_uri = heap_alloc((len+1)*sizeof(WCHAR));
2806     if(!uri->canon_uri)
2807         return E_OUTOFMEMORY;
2808
2809     uri->canon_size = len;
2810     if(!canonicalize_scheme(data, uri, flags, FALSE)) {
2811         ERR("(%p %p %x): Unable to canonicalize the scheme of the URI.\n", data, uri, flags);
2812         heap_free(uri->canon_uri);
2813         return E_INVALIDARG;
2814     }
2815     uri->scheme_type = data->scheme_type;
2816
2817     if(!canonicalize_hierpart(data, uri, flags, FALSE)) {
2818         ERR("(%p %p %x): Unable to canonicalize the heirpart of the URI\n", data, uri, flags);
2819         heap_free(uri->canon_uri);
2820         return E_INVALIDARG;
2821     }
2822
2823     if(!canonicalize_query(data, uri, flags, FALSE)) {
2824         ERR("(%p %p %x): Unable to canonicalize query string of the URI.\n",
2825             data, uri, flags);
2826         return E_INVALIDARG;
2827     }
2828
2829     /* There's a possibility we didn't use all the space we allocated
2830      * earlier.
2831      */
2832     if(uri->canon_len < uri->canon_size) {
2833         /* This happens if the URI is hierarchical and dot
2834          * segments were removed from it's path.
2835          */
2836         WCHAR *tmp = heap_realloc(uri->canon_uri, (uri->canon_len+1)*sizeof(WCHAR));
2837         if(!tmp)
2838             return E_OUTOFMEMORY;
2839
2840         uri->canon_uri = tmp;
2841         uri->canon_size = uri->canon_len;
2842     }
2843
2844     uri->canon_uri[uri->canon_len] = '\0';
2845     TRACE("(%p %p %x): finished canonicalizing the URI. uri=%s\n", data, uri, flags, debugstr_w(uri->canon_uri));
2846
2847     return S_OK;
2848 }
2849
2850 #define URI(x)         ((IUri*)  &(x)->lpIUriVtbl)
2851 #define URIBUILDER(x)  ((IUriBuilder*)  &(x)->lpIUriBuilderVtbl)
2852
2853 #define URI_THIS(iface) DEFINE_THIS(Uri, IUri, iface)
2854
2855 static HRESULT WINAPI Uri_QueryInterface(IUri *iface, REFIID riid, void **ppv)
2856 {
2857     Uri *This = URI_THIS(iface);
2858
2859     if(IsEqualGUID(&IID_IUnknown, riid)) {
2860         TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
2861         *ppv = URI(This);
2862     }else if(IsEqualGUID(&IID_IUri, riid)) {
2863         TRACE("(%p)->(IID_IUri %p)\n", This, ppv);
2864         *ppv = URI(This);
2865     }else {
2866         TRACE("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppv);
2867         *ppv = NULL;
2868         return E_NOINTERFACE;
2869     }
2870
2871     IUnknown_AddRef((IUnknown*)*ppv);
2872     return S_OK;
2873 }
2874
2875 static ULONG WINAPI Uri_AddRef(IUri *iface)
2876 {
2877     Uri *This = URI_THIS(iface);
2878     LONG ref = InterlockedIncrement(&This->ref);
2879
2880     TRACE("(%p) ref=%d\n", This, ref);
2881
2882     return ref;
2883 }
2884
2885 static ULONG WINAPI Uri_Release(IUri *iface)
2886 {
2887     Uri *This = URI_THIS(iface);
2888     LONG ref = InterlockedDecrement(&This->ref);
2889
2890     TRACE("(%p) ref=%d\n", This, ref);
2891
2892     if(!ref) {
2893         SysFreeString(This->raw_uri);
2894         heap_free(This->canon_uri);
2895         heap_free(This);
2896     }
2897
2898     return ref;
2899 }
2900
2901 static HRESULT WINAPI Uri_GetPropertyBSTR(IUri *iface, Uri_PROPERTY uriProp, BSTR *pbstrProperty, DWORD dwFlags)
2902 {
2903     Uri *This = URI_THIS(iface);
2904     HRESULT hres;
2905     TRACE("(%p)->(%d %p %x)\n", This, uriProp, pbstrProperty, dwFlags);
2906
2907     if(!pbstrProperty)
2908         return E_POINTER;
2909
2910     if(uriProp > Uri_PROPERTY_STRING_LAST) {
2911         /* Windows allocates an empty BSTR for invalid Uri_PROPERTY's. */
2912         *pbstrProperty = SysAllocStringLen(NULL, 0);
2913         if(!(*pbstrProperty))
2914             return E_OUTOFMEMORY;
2915
2916         /* It only returns S_FALSE for the ZONE property... */
2917         if(uriProp == Uri_PROPERTY_ZONE)
2918             return S_FALSE;
2919         else
2920             return S_OK;
2921     }
2922
2923     /* Don't have support for flags yet. */
2924     if(dwFlags) {
2925         FIXME("(%p)->(%d %p %x)\n", This, uriProp, pbstrProperty, dwFlags);
2926         return E_NOTIMPL;
2927     }
2928
2929     switch(uriProp) {
2930     case Uri_PROPERTY_AUTHORITY:
2931         if(This->authority_start > -1) {
2932             *pbstrProperty = SysAllocStringLen(This->canon_uri+This->authority_start, This->authority_len);
2933             hres = S_OK;
2934         } else {
2935             *pbstrProperty = SysAllocStringLen(NULL, 0);
2936             hres = S_FALSE;
2937         }
2938
2939         if(!(*pbstrProperty))
2940             hres = E_OUTOFMEMORY;
2941
2942         break;
2943     case Uri_PROPERTY_DOMAIN:
2944         if(This->domain_offset > -1) {
2945             *pbstrProperty = SysAllocStringLen(This->canon_uri+This->host_start+This->domain_offset,
2946                                                This->host_len-This->domain_offset);
2947             hres = S_OK;
2948         } else {
2949             *pbstrProperty = SysAllocStringLen(NULL, 0);
2950             hres = S_FALSE;
2951         }
2952
2953         if(!(*pbstrProperty))
2954             hres = E_OUTOFMEMORY;
2955
2956         break;
2957     case Uri_PROPERTY_EXTENSION:
2958         if(This->extension_offset > -1) {
2959             *pbstrProperty = SysAllocStringLen(This->canon_uri+This->path_start+This->extension_offset,
2960                                                This->path_len-This->extension_offset);
2961             hres = S_OK;
2962         } else {
2963             *pbstrProperty = SysAllocStringLen(NULL, 0);
2964             hres = S_FALSE;
2965         }
2966
2967         if(!(*pbstrProperty))
2968             hres = E_OUTOFMEMORY;
2969
2970         break;
2971     case Uri_PROPERTY_HOST:
2972         if(This->host_start > -1) {
2973             /* The '[' and ']' aren't included for IPv6 addresses. */
2974             if(This->host_type == Uri_HOST_IPV6)
2975                 *pbstrProperty = SysAllocStringLen(This->canon_uri+This->host_start+1, This->host_len-2);
2976             else
2977                 *pbstrProperty = SysAllocStringLen(This->canon_uri+This->host_start, This->host_len);
2978
2979             hres = S_OK;
2980         } else {
2981             *pbstrProperty = SysAllocStringLen(NULL, 0);
2982             hres = S_FALSE;
2983         }
2984
2985         if(!(*pbstrProperty))
2986             hres = E_OUTOFMEMORY;
2987
2988         break;
2989     case Uri_PROPERTY_PASSWORD:
2990         if(This->userinfo_split > -1) {
2991             *pbstrProperty = SysAllocStringLen(
2992                 This->canon_uri+This->userinfo_start+This->userinfo_split+1,
2993                 This->userinfo_len-This->userinfo_split-1);
2994             hres = S_OK;
2995         } else {
2996             *pbstrProperty = SysAllocStringLen(NULL, 0);
2997             hres = S_FALSE;
2998         }
2999
3000         if(!(*pbstrProperty))
3001             return E_OUTOFMEMORY;
3002
3003         break;
3004     case Uri_PROPERTY_PATH:
3005         if(This->path_start > -1) {
3006             *pbstrProperty = SysAllocStringLen(This->canon_uri+This->path_start, This->path_len);
3007             hres = S_OK;
3008         } else {
3009             *pbstrProperty = SysAllocStringLen(NULL, 0);
3010             hres = S_FALSE;
3011         }
3012
3013         if(!(*pbstrProperty))
3014             hres = E_OUTOFMEMORY;
3015
3016         break;
3017     case Uri_PROPERTY_RAW_URI:
3018         *pbstrProperty = SysAllocString(This->raw_uri);
3019         if(!(*pbstrProperty))
3020             hres = E_OUTOFMEMORY;
3021         else
3022             hres = S_OK;
3023         break;
3024     case Uri_PROPERTY_SCHEME_NAME:
3025         if(This->scheme_start > -1) {
3026             *pbstrProperty = SysAllocStringLen(This->canon_uri + This->scheme_start, This->scheme_len);
3027             hres = S_OK;
3028         } else {
3029             *pbstrProperty = SysAllocStringLen(NULL, 0);
3030             hres = S_FALSE;
3031         }
3032
3033         if(!(*pbstrProperty))
3034             hres = E_OUTOFMEMORY;
3035
3036         break;
3037     case Uri_PROPERTY_USER_INFO:
3038         if(This->userinfo_start > -1) {
3039             *pbstrProperty = SysAllocStringLen(This->canon_uri+This->userinfo_start, This->userinfo_len);
3040             hres = S_OK;
3041         } else {
3042             *pbstrProperty = SysAllocStringLen(NULL, 0);
3043             hres = S_FALSE;
3044         }
3045
3046         if(!(*pbstrProperty))
3047             hres = E_OUTOFMEMORY;
3048
3049         break;
3050     case Uri_PROPERTY_USER_NAME:
3051         if(This->userinfo_start > -1) {
3052             /* If userinfo_split is set, that means a password exists
3053              * so the username is only from userinfo_start to userinfo_split.
3054              */
3055             if(This->userinfo_split > -1) {
3056                 *pbstrProperty = SysAllocStringLen(This->canon_uri + This->userinfo_start, This->userinfo_split);
3057                 hres = S_OK;
3058             } else {
3059                 *pbstrProperty = SysAllocStringLen(This->canon_uri + This->userinfo_start, This->userinfo_len);
3060                 hres = S_OK;
3061             }
3062         } else {
3063             *pbstrProperty = SysAllocStringLen(NULL, 0);
3064             hres = S_FALSE;
3065         }
3066
3067         if(!(*pbstrProperty))
3068             return E_OUTOFMEMORY;
3069
3070         break;
3071     default:
3072         FIXME("(%p)->(%d %p %x)\n", This, uriProp, pbstrProperty, dwFlags);
3073         hres = E_NOTIMPL;
3074     }
3075
3076     return hres;
3077 }
3078
3079 static HRESULT WINAPI Uri_GetPropertyLength(IUri *iface, Uri_PROPERTY uriProp, DWORD *pcchProperty, DWORD dwFlags)
3080 {
3081     Uri *This = URI_THIS(iface);
3082     HRESULT hres;
3083     TRACE("(%p)->(%d %p %x)\n", This, uriProp, pcchProperty, dwFlags);
3084
3085     if(!pcchProperty)
3086         return E_INVALIDARG;
3087
3088     /* Can only return a length for a property if it's a string. */
3089     if(uriProp > Uri_PROPERTY_STRING_LAST)
3090         return E_INVALIDARG;
3091
3092     /* Don't have support for flags yet. */
3093     if(dwFlags) {
3094         FIXME("(%p)->(%d %p %x)\n", This, uriProp, pcchProperty, dwFlags);
3095         return E_NOTIMPL;
3096     }
3097
3098     switch(uriProp) {
3099     case Uri_PROPERTY_AUTHORITY:
3100         *pcchProperty = This->authority_len;
3101         hres = (This->authority_start > -1) ? S_OK : S_FALSE;
3102         break;
3103     case Uri_PROPERTY_DOMAIN:
3104         if(This->domain_offset > -1)
3105             *pcchProperty = This->host_len - This->domain_offset;
3106         else
3107             *pcchProperty = 0;
3108
3109         hres = (This->domain_offset > -1) ? S_OK : S_FALSE;
3110         break;
3111     case Uri_PROPERTY_EXTENSION:
3112         if(This->extension_offset > -1) {
3113             *pcchProperty = This->path_len - This->extension_offset;
3114             hres = S_OK;
3115         } else {
3116             *pcchProperty = 0;
3117             hres = S_FALSE;
3118         }
3119
3120         break;
3121     case Uri_PROPERTY_HOST:
3122         *pcchProperty = This->host_len;
3123
3124         /* '[' and ']' aren't included in the length. */
3125         if(This->host_type == Uri_HOST_IPV6)
3126             *pcchProperty -= 2;
3127
3128         hres = (This->host_start > -1) ? S_OK : S_FALSE;
3129         break;
3130     case Uri_PROPERTY_PASSWORD:
3131         *pcchProperty = (This->userinfo_split > -1) ? This->userinfo_len-This->userinfo_split-1 : 0;
3132         hres = (This->userinfo_split > -1) ? S_OK : S_FALSE;
3133         break;
3134     case Uri_PROPERTY_PATH:
3135         *pcchProperty = This->path_len;
3136         hres = (This->path_start > -1) ? S_OK : S_FALSE;
3137         break;
3138     case Uri_PROPERTY_RAW_URI:
3139         *pcchProperty = SysStringLen(This->raw_uri);
3140         hres = S_OK;
3141         break;
3142     case Uri_PROPERTY_SCHEME_NAME:
3143         *pcchProperty = This->scheme_len;
3144         hres = (This->scheme_start > -1) ? S_OK : S_FALSE;
3145         break;
3146     case Uri_PROPERTY_USER_INFO:
3147         *pcchProperty = This->userinfo_len;
3148         hres = (This->userinfo_start > -1) ? S_OK : S_FALSE;
3149         break;
3150     case Uri_PROPERTY_USER_NAME:
3151         *pcchProperty = (This->userinfo_split > -1) ? This->userinfo_split : This->userinfo_len;
3152         hres = (This->userinfo_start > -1) ? S_OK : S_FALSE;
3153         break;
3154     default:
3155         FIXME("(%p)->(%d %p %x)\n", This, uriProp, pcchProperty, dwFlags);
3156         hres = E_NOTIMPL;
3157     }
3158
3159     return hres;
3160 }
3161
3162 static HRESULT WINAPI Uri_GetPropertyDWORD(IUri *iface, Uri_PROPERTY uriProp, DWORD *pcchProperty, DWORD dwFlags)
3163 {
3164     Uri *This = URI_THIS(iface);
3165     HRESULT hres;
3166
3167     TRACE("(%p)->(%d %p %x)\n", This, uriProp, pcchProperty, dwFlags);
3168
3169     if(!pcchProperty)
3170         return E_INVALIDARG;
3171
3172     /* Microsoft's implementation for the ZONE property of a URI seems to be lacking...
3173      * From what I can tell, instead of checking which URLZONE the URI belongs to it
3174      * simply assigns URLZONE_INVALID and returns E_NOTIMPL. This also applies to the GetZone
3175      * function.
3176      */
3177     if(uriProp == Uri_PROPERTY_ZONE) {
3178         *pcchProperty = URLZONE_INVALID;
3179         return E_NOTIMPL;
3180     }
3181
3182     if(uriProp < Uri_PROPERTY_DWORD_START) {
3183         *pcchProperty = 0;
3184         return E_INVALIDARG;
3185     }
3186
3187     switch(uriProp) {
3188     case Uri_PROPERTY_HOST_TYPE:
3189         *pcchProperty = This->host_type;
3190         hres = S_OK;
3191         break;
3192     case Uri_PROPERTY_PORT:
3193         if(!This->has_port) {
3194             *pcchProperty = 0;
3195             hres = S_FALSE;
3196         } else {
3197             *pcchProperty = This->port;
3198             hres = S_OK;
3199         }
3200
3201         break;
3202     case Uri_PROPERTY_SCHEME:
3203         *pcchProperty = This->scheme_type;
3204         hres = S_OK;
3205         break;
3206     default:
3207         FIXME("(%p)->(%d %p %x)\n", This, uriProp, pcchProperty, dwFlags);
3208         hres = E_NOTIMPL;
3209     }
3210
3211     return hres;
3212 }
3213
3214 static HRESULT WINAPI Uri_HasProperty(IUri *iface, Uri_PROPERTY uriProp, BOOL *pfHasProperty)
3215 {
3216     Uri *This = URI_THIS(iface);
3217     FIXME("(%p)->(%d %p)\n", This, uriProp, pfHasProperty);
3218
3219     if(!pfHasProperty)
3220         return E_INVALIDARG;
3221
3222     return E_NOTIMPL;
3223 }
3224
3225 static HRESULT WINAPI Uri_GetAbsoluteUri(IUri *iface, BSTR *pstrAbsoluteUri)
3226 {
3227     Uri *This = URI_THIS(iface);
3228     FIXME("(%p)->(%p)\n", This, pstrAbsoluteUri);
3229
3230     if(!pstrAbsoluteUri)
3231         return E_POINTER;
3232
3233     return E_NOTIMPL;
3234 }
3235
3236 static HRESULT WINAPI Uri_GetAuthority(IUri *iface, BSTR *pstrAuthority)
3237 {
3238     TRACE("(%p)->(%p)\n", iface, pstrAuthority);
3239     return Uri_GetPropertyBSTR(iface, Uri_PROPERTY_AUTHORITY, pstrAuthority, 0);
3240 }
3241
3242 static HRESULT WINAPI Uri_GetDisplayUri(IUri *iface, BSTR *pstrDisplayUri)
3243 {
3244     Uri *This = URI_THIS(iface);
3245     FIXME("(%p)->(%p)\n", This, pstrDisplayUri);
3246
3247     if(!pstrDisplayUri)
3248         return E_POINTER;
3249
3250     return E_NOTIMPL;
3251 }
3252
3253 static HRESULT WINAPI Uri_GetDomain(IUri *iface, BSTR *pstrDomain)
3254 {
3255     TRACE("(%p)->(%p)\n", iface, pstrDomain);
3256     return Uri_GetPropertyBSTR(iface, Uri_PROPERTY_DOMAIN, pstrDomain, 0);
3257 }
3258
3259 static HRESULT WINAPI Uri_GetExtension(IUri *iface, BSTR *pstrExtension)
3260 {
3261     TRACE("(%p)->(%p)\n", iface, pstrExtension);
3262     return Uri_GetPropertyBSTR(iface, Uri_PROPERTY_EXTENSION, pstrExtension, 0);
3263 }
3264
3265 static HRESULT WINAPI Uri_GetFragment(IUri *iface, BSTR *pstrFragment)
3266 {
3267     Uri *This = URI_THIS(iface);
3268     FIXME("(%p)->(%p)\n", This, pstrFragment);
3269
3270     if(!pstrFragment)
3271         return E_POINTER;
3272
3273     return E_NOTIMPL;
3274 }
3275
3276 static HRESULT WINAPI Uri_GetHost(IUri *iface, BSTR *pstrHost)
3277 {
3278     TRACE("(%p)->(%p)\n", iface, pstrHost);
3279     return Uri_GetPropertyBSTR(iface, Uri_PROPERTY_HOST, pstrHost, 0);
3280 }
3281
3282 static HRESULT WINAPI Uri_GetPassword(IUri *iface, BSTR *pstrPassword)
3283 {
3284     TRACE("(%p)->(%p)\n", iface, pstrPassword);
3285     return Uri_GetPropertyBSTR(iface, Uri_PROPERTY_PASSWORD, pstrPassword, 0);
3286 }
3287
3288 static HRESULT WINAPI Uri_GetPath(IUri *iface, BSTR *pstrPath)
3289 {
3290     TRACE("(%p)->(%p)\n", iface, pstrPath);
3291     return Uri_GetPropertyBSTR(iface, Uri_PROPERTY_PATH, pstrPath, 0);
3292 }
3293
3294 static HRESULT WINAPI Uri_GetPathAndQuery(IUri *iface, BSTR *pstrPathAndQuery)
3295 {
3296     Uri *This = URI_THIS(iface);
3297     FIXME("(%p)->(%p)\n", This, pstrPathAndQuery);
3298
3299     if(!pstrPathAndQuery)
3300         return E_POINTER;
3301
3302     return E_NOTIMPL;
3303 }
3304
3305 static HRESULT WINAPI Uri_GetQuery(IUri *iface, BSTR *pstrQuery)
3306 {
3307     Uri *This = URI_THIS(iface);
3308     FIXME("(%p)->(%p)\n", This, pstrQuery);
3309
3310     if(!pstrQuery)
3311         return E_POINTER;
3312
3313     return E_NOTIMPL;
3314 }
3315
3316 static HRESULT WINAPI Uri_GetRawUri(IUri *iface, BSTR *pstrRawUri)
3317 {
3318     Uri *This = URI_THIS(iface);
3319     TRACE("(%p)->(%p)\n", This, pstrRawUri);
3320
3321     /* Just forward the call to GetPropertyBSTR. */
3322     return Uri_GetPropertyBSTR(iface, Uri_PROPERTY_RAW_URI, pstrRawUri, 0);
3323 }
3324
3325 static HRESULT WINAPI Uri_GetSchemeName(IUri *iface, BSTR *pstrSchemeName)
3326 {
3327     Uri *This = URI_THIS(iface);
3328     TRACE("(%p)->(%p)\n", This, pstrSchemeName);
3329     return Uri_GetPropertyBSTR(iface, Uri_PROPERTY_SCHEME_NAME, pstrSchemeName, 0);
3330 }
3331
3332 static HRESULT WINAPI Uri_GetUserInfo(IUri *iface, BSTR *pstrUserInfo)
3333 {
3334     TRACE("(%p)->(%p)\n", iface, pstrUserInfo);
3335     return Uri_GetPropertyBSTR(iface, Uri_PROPERTY_USER_INFO, pstrUserInfo, 0);
3336 }
3337
3338 static HRESULT WINAPI Uri_GetUserName(IUri *iface, BSTR *pstrUserName)
3339 {
3340     TRACE("(%p)->(%p)\n", iface, pstrUserName);
3341     return Uri_GetPropertyBSTR(iface, Uri_PROPERTY_USER_NAME, pstrUserName, 0);
3342 }
3343
3344 static HRESULT WINAPI Uri_GetHostType(IUri *iface, DWORD *pdwHostType)
3345 {
3346     TRACE("(%p)->(%p)\n", iface, pdwHostType);
3347     return Uri_GetPropertyDWORD(iface, Uri_PROPERTY_HOST_TYPE, pdwHostType, 0);
3348 }
3349
3350 static HRESULT WINAPI Uri_GetPort(IUri *iface, DWORD *pdwPort)
3351 {
3352     TRACE("(%p)->(%p)\n", iface, pdwPort);
3353     return Uri_GetPropertyDWORD(iface, Uri_PROPERTY_PORT, pdwPort, 0);
3354 }
3355
3356 static HRESULT WINAPI Uri_GetScheme(IUri *iface, DWORD *pdwScheme)
3357 {
3358     Uri *This = URI_THIS(iface);
3359     TRACE("(%p)->(%p)\n", This, pdwScheme);
3360     return Uri_GetPropertyDWORD(iface, Uri_PROPERTY_SCHEME, pdwScheme, 0);
3361 }
3362
3363 static HRESULT WINAPI Uri_GetZone(IUri *iface, DWORD *pdwZone)
3364 {
3365     TRACE("(%p)->(%p)\n", iface, pdwZone);
3366     return Uri_GetPropertyDWORD(iface, Uri_PROPERTY_ZONE,pdwZone, 0);
3367 }
3368
3369 static HRESULT WINAPI Uri_GetProperties(IUri *iface, DWORD *pdwProperties)
3370 {
3371     Uri *This = URI_THIS(iface);
3372     FIXME("(%p)->(%p)\n", This, pdwProperties);
3373
3374     if(!pdwProperties)
3375         return E_INVALIDARG;
3376
3377     return E_NOTIMPL;
3378 }
3379
3380 static HRESULT WINAPI Uri_IsEqual(IUri *iface, IUri *pUri, BOOL *pfEqual)
3381 {
3382     Uri *This = URI_THIS(iface);
3383     TRACE("(%p)->(%p %p)\n", This, pUri, pfEqual);
3384
3385     if(!pfEqual)
3386         return E_POINTER;
3387
3388     if(!pUri) {
3389         *pfEqual = FALSE;
3390
3391         /* For some reason Windows returns S_OK here... */
3392         return S_OK;
3393     }
3394
3395     FIXME("(%p)->(%p %p)\n", This, pUri, pfEqual);
3396     return E_NOTIMPL;
3397 }
3398
3399 #undef URI_THIS
3400
3401 static const IUriVtbl UriVtbl = {
3402     Uri_QueryInterface,
3403     Uri_AddRef,
3404     Uri_Release,
3405     Uri_GetPropertyBSTR,
3406     Uri_GetPropertyLength,
3407     Uri_GetPropertyDWORD,
3408     Uri_HasProperty,
3409     Uri_GetAbsoluteUri,
3410     Uri_GetAuthority,
3411     Uri_GetDisplayUri,
3412     Uri_GetDomain,
3413     Uri_GetExtension,
3414     Uri_GetFragment,
3415     Uri_GetHost,
3416     Uri_GetPassword,
3417     Uri_GetPath,
3418     Uri_GetPathAndQuery,
3419     Uri_GetQuery,
3420     Uri_GetRawUri,
3421     Uri_GetSchemeName,
3422     Uri_GetUserInfo,
3423     Uri_GetUserName,
3424     Uri_GetHostType,
3425     Uri_GetPort,
3426     Uri_GetScheme,
3427     Uri_GetZone,
3428     Uri_GetProperties,
3429     Uri_IsEqual
3430 };
3431
3432 /***********************************************************************
3433  *           CreateUri (urlmon.@)
3434  */
3435 HRESULT WINAPI CreateUri(LPCWSTR pwzURI, DWORD dwFlags, DWORD_PTR dwReserved, IUri **ppURI)
3436 {
3437     Uri *ret;
3438     HRESULT hr;
3439     parse_data data;
3440
3441     TRACE("(%s %x %x %p)\n", debugstr_w(pwzURI), dwFlags, (DWORD)dwReserved, ppURI);
3442
3443     if(!ppURI)
3444         return E_INVALIDARG;
3445
3446     if(!pwzURI) {
3447         *ppURI = NULL;
3448         return E_INVALIDARG;
3449     }
3450
3451     ret = heap_alloc(sizeof(Uri));
3452     if(!ret)
3453         return E_OUTOFMEMORY;
3454
3455     ret->lpIUriVtbl = &UriVtbl;
3456     ret->ref = 1;
3457
3458     /* Create a copy of pwzURI and store it as the raw_uri. */
3459     ret->raw_uri = SysAllocString(pwzURI);
3460     if(!ret->raw_uri) {
3461         heap_free(ret);
3462         return E_OUTOFMEMORY;
3463     }
3464
3465     memset(&data, 0, sizeof(parse_data));
3466     data.uri = ret->raw_uri;
3467
3468     /* Validate and parse the URI into it's components. */
3469     if(!parse_uri(&data, dwFlags)) {
3470         /* Encountered an unsupported or invalid URI */
3471         SysFreeString(ret->raw_uri);
3472         heap_free(ret);
3473         *ppURI = NULL;
3474         return E_INVALIDARG;
3475     }
3476
3477     /* Canonicalize the URI. */
3478     hr = canonicalize_uri(&data, ret, dwFlags);
3479     if(FAILED(hr)) {
3480         SysFreeString(ret->raw_uri);
3481         heap_free(ret);
3482         *ppURI = NULL;
3483         return hr;
3484     }
3485
3486     *ppURI = URI(ret);
3487     return S_OK;
3488 }
3489
3490 #define URIBUILDER_THIS(iface) DEFINE_THIS(UriBuilder, IUriBuilder, iface)
3491
3492 static HRESULT WINAPI UriBuilder_QueryInterface(IUriBuilder *iface, REFIID riid, void **ppv)
3493 {
3494     UriBuilder *This = URIBUILDER_THIS(iface);
3495
3496     if(IsEqualGUID(&IID_IUnknown, riid)) {
3497         TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
3498         *ppv = URIBUILDER(This);
3499     }else if(IsEqualGUID(&IID_IUriBuilder, riid)) {
3500         TRACE("(%p)->(IID_IUri %p)\n", This, ppv);
3501         *ppv = URIBUILDER(This);
3502     }else {
3503         TRACE("(%p)->(%s %p)\n", This, debugstr_guid(riid), ppv);
3504         *ppv = NULL;
3505         return E_NOINTERFACE;
3506     }
3507
3508     IUnknown_AddRef((IUnknown*)*ppv);
3509     return S_OK;
3510 }
3511
3512 static ULONG WINAPI UriBuilder_AddRef(IUriBuilder *iface)
3513 {
3514     UriBuilder *This = URIBUILDER_THIS(iface);
3515     LONG ref = InterlockedIncrement(&This->ref);
3516
3517     TRACE("(%p) ref=%d\n", This, ref);
3518
3519     return ref;
3520 }
3521
3522 static ULONG WINAPI UriBuilder_Release(IUriBuilder *iface)
3523 {
3524     UriBuilder *This = URIBUILDER_THIS(iface);
3525     LONG ref = InterlockedDecrement(&This->ref);
3526
3527     TRACE("(%p) ref=%d\n", This, ref);
3528
3529     if(!ref)
3530         heap_free(This);
3531
3532     return ref;
3533 }
3534
3535 static HRESULT WINAPI UriBuilder_CreateUriSimple(IUriBuilder *iface,
3536                                                  DWORD        dwAllowEncodingPropertyMask,
3537                                                  DWORD_PTR    dwReserved,
3538                                                  IUri       **ppIUri)
3539 {
3540     UriBuilder *This = URIBUILDER_THIS(iface);
3541     FIXME("(%p)->(%d %d %p)\n", This, dwAllowEncodingPropertyMask, (DWORD)dwReserved, ppIUri);
3542     return E_NOTIMPL;
3543 }
3544
3545 static HRESULT WINAPI UriBuilder_CreateUri(IUriBuilder *iface,
3546                                            DWORD        dwCreateFlags,
3547                                            DWORD        dwAllowEncodingPropertyMask,
3548                                            DWORD_PTR    dwReserved,
3549                                            IUri       **ppIUri)
3550 {
3551     UriBuilder *This = URIBUILDER_THIS(iface);
3552     FIXME("(%p)->(0x%08x %d %d %p)\n", This, dwCreateFlags, dwAllowEncodingPropertyMask, (DWORD)dwReserved, ppIUri);
3553     return E_NOTIMPL;
3554 }
3555
3556 static HRESULT WINAPI UriBuilder_CreateUriWithFlags(IUriBuilder *iface,
3557                                          DWORD        dwCreateFlags,
3558                                          DWORD        dwUriBuilderFlags,
3559                                          DWORD        dwAllowEncodingPropertyMask,
3560                                          DWORD_PTR    dwReserved,
3561                                          IUri       **ppIUri)
3562 {
3563     UriBuilder *This = URIBUILDER_THIS(iface);
3564     FIXME("(%p)->(0x%08x 0x%08x %d %d %p)\n", This, dwCreateFlags, dwUriBuilderFlags,
3565         dwAllowEncodingPropertyMask, (DWORD)dwReserved, ppIUri);
3566     return E_NOTIMPL;
3567 }
3568
3569 static HRESULT WINAPI  UriBuilder_GetIUri(IUriBuilder *iface, IUri **ppIUri)
3570 {
3571     UriBuilder *This = URIBUILDER_THIS(iface);
3572     FIXME("(%p)->(%p)\n", This, ppIUri);
3573     return E_NOTIMPL;
3574 }
3575
3576 static HRESULT WINAPI UriBuilder_SetIUri(IUriBuilder *iface, IUri *pIUri)
3577 {
3578     UriBuilder *This = URIBUILDER_THIS(iface);
3579     FIXME("(%p)->(%p)\n", This, pIUri);
3580     return E_NOTIMPL;
3581 }
3582
3583 static HRESULT WINAPI UriBuilder_GetFragment(IUriBuilder *iface, DWORD *pcchFragment, LPCWSTR *ppwzFragment)
3584 {
3585     UriBuilder *This = URIBUILDER_THIS(iface);
3586     FIXME("(%p)->(%p %p)\n", This, pcchFragment, ppwzFragment);
3587     return E_NOTIMPL;
3588 }
3589
3590 static HRESULT WINAPI UriBuilder_GetHost(IUriBuilder *iface, DWORD *pcchHost, LPCWSTR *ppwzHost)
3591 {
3592     UriBuilder *This = URIBUILDER_THIS(iface);
3593     FIXME("(%p)->(%p %p)\n", This, pcchHost, ppwzHost);
3594     return E_NOTIMPL;
3595 }
3596
3597 static HRESULT WINAPI UriBuilder_GetPassword(IUriBuilder *iface, DWORD *pcchPassword, LPCWSTR *ppwzPassword)
3598 {
3599     UriBuilder *This = URIBUILDER_THIS(iface);
3600     FIXME("(%p)->(%p %p)\n", This, pcchPassword, ppwzPassword);
3601     return E_NOTIMPL;
3602 }
3603
3604 static HRESULT WINAPI UriBuilder_GetPath(IUriBuilder *iface, DWORD *pcchPath, LPCWSTR *ppwzPath)
3605 {
3606     UriBuilder *This = URIBUILDER_THIS(iface);
3607     FIXME("(%p)->(%p %p)\n", This, pcchPath, ppwzPath);
3608     return E_NOTIMPL;
3609 }
3610
3611 static HRESULT WINAPI UriBuilder_GetPort(IUriBuilder *iface, BOOL *pfHasPort, DWORD *pdwPort)
3612 {
3613     UriBuilder *This = URIBUILDER_THIS(iface);
3614     FIXME("(%p)->(%p %p)\n", This, pfHasPort, pdwPort);
3615     return E_NOTIMPL;
3616 }
3617
3618 static HRESULT WINAPI UriBuilder_GetQuery(IUriBuilder *iface, DWORD *pcchQuery, LPCWSTR *ppwzQuery)
3619 {
3620     UriBuilder *This = URIBUILDER_THIS(iface);
3621     FIXME("(%p)->(%p %p)\n", This, pcchQuery, ppwzQuery);
3622     return E_NOTIMPL;
3623 }
3624
3625 static HRESULT WINAPI UriBuilder_GetSchemeName(IUriBuilder *iface, DWORD *pcchSchemeName, LPCWSTR *ppwzSchemeName)
3626 {
3627     UriBuilder *This = URIBUILDER_THIS(iface);
3628     FIXME("(%p)->(%p %p)\n", This, pcchSchemeName, ppwzSchemeName);
3629     return E_NOTIMPL;
3630 }
3631
3632 static HRESULT WINAPI UriBuilder_GetUserName(IUriBuilder *iface, DWORD *pcchUserName, LPCWSTR *ppwzUserName)
3633 {
3634     UriBuilder *This = URIBUILDER_THIS(iface);
3635     FIXME("(%p)->(%p %p)\n", This, pcchUserName, ppwzUserName);
3636     return E_NOTIMPL;
3637 }
3638
3639 static HRESULT WINAPI UriBuilder_SetFragment(IUriBuilder *iface, LPCWSTR pwzNewValue)
3640 {
3641     UriBuilder *This = URIBUILDER_THIS(iface);
3642     FIXME("(%p)->(%s)\n", This, debugstr_w(pwzNewValue));
3643     return E_NOTIMPL;
3644 }
3645
3646 static HRESULT WINAPI UriBuilder_SetHost(IUriBuilder *iface, LPCWSTR pwzNewValue)
3647 {
3648     UriBuilder *This = URIBUILDER_THIS(iface);
3649     FIXME("(%p)->(%s)\n", This, debugstr_w(pwzNewValue));
3650     return E_NOTIMPL;
3651 }
3652
3653 static HRESULT WINAPI UriBuilder_SetPassword(IUriBuilder *iface, LPCWSTR pwzNewValue)
3654 {
3655     UriBuilder *This = URIBUILDER_THIS(iface);
3656     FIXME("(%p)->(%s)\n", This, debugstr_w(pwzNewValue));
3657     return E_NOTIMPL;
3658 }
3659
3660 static HRESULT WINAPI UriBuilder_SetPath(IUriBuilder *iface, LPCWSTR pwzNewValue)
3661 {
3662     UriBuilder *This = URIBUILDER_THIS(iface);
3663     FIXME("(%p)->(%s)\n", This, debugstr_w(pwzNewValue));
3664     return E_NOTIMPL;
3665 }
3666
3667 static HRESULT WINAPI UriBuilder_SetPort(IUriBuilder *iface, BOOL fHasPort, DWORD dwNewValue)
3668 {
3669     UriBuilder *This = URIBUILDER_THIS(iface);
3670     FIXME("(%p)->(%d %d)\n", This, fHasPort, dwNewValue);
3671     return E_NOTIMPL;
3672 }
3673
3674 static HRESULT WINAPI UriBuilder_SetQuery(IUriBuilder *iface, LPCWSTR pwzNewValue)
3675 {
3676     UriBuilder *This = URIBUILDER_THIS(iface);
3677     FIXME("(%p)->(%s)\n", This, debugstr_w(pwzNewValue));
3678     return E_NOTIMPL;
3679 }
3680
3681 static HRESULT WINAPI UriBuilder_SetSchemeName(IUriBuilder *iface, LPCWSTR pwzNewValue)
3682 {
3683     UriBuilder *This = URIBUILDER_THIS(iface);
3684     FIXME("(%p)->(%s)\n", This, debugstr_w(pwzNewValue));
3685     return E_NOTIMPL;
3686 }
3687
3688 static HRESULT WINAPI UriBuilder_SetUserName(IUriBuilder *iface, LPCWSTR pwzNewValue)
3689 {
3690     UriBuilder *This = URIBUILDER_THIS(iface);
3691     FIXME("(%p)->(%s)\n", This, debugstr_w(pwzNewValue));
3692     return E_NOTIMPL;
3693 }
3694
3695 static HRESULT WINAPI UriBuilder_RemoveProperties(IUriBuilder *iface, DWORD dwPropertyMask)
3696 {
3697     UriBuilder *This = URIBUILDER_THIS(iface);
3698     FIXME("(%p)->(0x%08x)\n", This, dwPropertyMask);
3699     return E_NOTIMPL;
3700 }
3701
3702 static HRESULT WINAPI UriBuilder_HasBeenModified(IUriBuilder *iface, BOOL *pfModified)
3703 {
3704     UriBuilder *This = URIBUILDER_THIS(iface);
3705     FIXME("(%p)->(%p)\n", This, pfModified);
3706     return E_NOTIMPL;
3707 }
3708
3709 #undef URIBUILDER_THIS
3710
3711 static const IUriBuilderVtbl UriBuilderVtbl = {
3712     UriBuilder_QueryInterface,
3713     UriBuilder_AddRef,
3714     UriBuilder_Release,
3715     UriBuilder_CreateUriSimple,
3716     UriBuilder_CreateUri,
3717     UriBuilder_CreateUriWithFlags,
3718     UriBuilder_GetIUri,
3719     UriBuilder_SetIUri,
3720     UriBuilder_GetFragment,
3721     UriBuilder_GetHost,
3722     UriBuilder_GetPassword,
3723     UriBuilder_GetPath,
3724     UriBuilder_GetPort,
3725     UriBuilder_GetQuery,
3726     UriBuilder_GetSchemeName,
3727     UriBuilder_GetUserName,
3728     UriBuilder_SetFragment,
3729     UriBuilder_SetHost,
3730     UriBuilder_SetPassword,
3731     UriBuilder_SetPath,
3732     UriBuilder_SetPort,
3733     UriBuilder_SetQuery,
3734     UriBuilder_SetSchemeName,
3735     UriBuilder_SetUserName,
3736     UriBuilder_RemoveProperties,
3737     UriBuilder_HasBeenModified,
3738 };
3739
3740 /***********************************************************************
3741  *           CreateIUriBuilder (urlmon.@)
3742  */
3743 HRESULT WINAPI CreateIUriBuilder(IUri *pIUri, DWORD dwFlags, DWORD_PTR dwReserved, IUriBuilder **ppIUriBuilder)
3744 {
3745     UriBuilder *ret;
3746
3747     TRACE("(%p %x %x %p)\n", pIUri, dwFlags, (DWORD)dwReserved, ppIUriBuilder);
3748
3749     ret = heap_alloc(sizeof(UriBuilder));
3750     if(!ret)
3751         return E_OUTOFMEMORY;
3752
3753     ret->lpIUriBuilderVtbl = &UriBuilderVtbl;
3754     ret->ref = 1;
3755
3756     *ppIUriBuilder = URIBUILDER(ret);
3757     return S_OK;
3758 }