]> sjero.net Git - wget/blob - src/url.c
Automated merge.
[wget] / src / url.c
1 /* URL handling.
2    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
3    2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
4
5 This file is part of GNU Wget.
6
7 GNU Wget is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or (at
10 your option) any later version.
11
12 GNU Wget is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with Wget.  If not, see <http://www.gnu.org/licenses/>.
19
20 Additional permission under GNU GPL version 3 section 7
21
22 If you modify this program, or any covered work, by linking or
23 combining it with the OpenSSL project's OpenSSL library (or a
24 modified version of that library), containing parts covered by the
25 terms of the OpenSSL or SSLeay licenses, the Free Software Foundation
26 grants you additional permission to convey the resulting work.
27 Corresponding Source for a non-source form of such a combination
28 shall include the source code for the parts of OpenSSL used as well
29 as that of the covered work.  */
30
31 #include "wget.h"
32
33 #include <stdio.h>
34 #include <stdlib.h>
35 #include <string.h>
36 #ifdef HAVE_UNISTD_H
37 # include <unistd.h>
38 #endif
39 #include <errno.h>
40 #include <assert.h>
41
42 #include "utils.h"
43 #include "url.h"
44 #include "host.h"  /* for is_valid_ipv6_address */
45
46 #ifdef TESTING
47 #include "test.h"
48 #endif
49
50 enum {
51   scm_disabled = 1,             /* for https when OpenSSL fails to init. */
52   scm_has_params = 2,           /* whether scheme has ;params */
53   scm_has_query = 4,            /* whether scheme has ?query */
54   scm_has_fragment = 8          /* whether scheme has #fragment */
55 };
56
57 struct scheme_data
58 {
59   /* Short name of the scheme, such as "http" or "ftp". */
60   const char *name;
61   /* Leading string that identifies the scheme, such as "https://". */
62   const char *leading_string;
63   /* Default port of the scheme when none is specified. */
64   int default_port;
65   /* Various flags. */
66   int flags;
67 };
68
69 /* Supported schemes: */
70 static struct scheme_data supported_schemes[] =
71 {
72   { "http",     "http://",  DEFAULT_HTTP_PORT,  scm_has_query|scm_has_fragment },
73 #ifdef HAVE_SSL
74   { "https",    "https://", DEFAULT_HTTPS_PORT, scm_has_query|scm_has_fragment },
75 #endif
76   { "ftp",      "ftp://",   DEFAULT_FTP_PORT,   scm_has_params|scm_has_fragment },
77
78   /* SCHEME_INVALID */
79   { NULL,       NULL,       -1,                 0 }
80 };
81
82 /* Forward declarations: */
83
84 static bool path_simplify (enum url_scheme, char *);
85 \f
86 /* Support for escaping and unescaping of URL strings.  */
87
88 /* Table of "reserved" and "unsafe" characters.  Those terms are
89    rfc1738-speak, as such largely obsoleted by rfc2396 and later
90    specs, but the general idea remains.
91
92    A reserved character is the one that you can't decode without
93    changing the meaning of the URL.  For example, you can't decode
94    "/foo/%2f/bar" into "/foo///bar" because the number and contents of
95    path components is different.  Non-reserved characters can be
96    changed, so "/foo/%78/bar" is safe to change to "/foo/x/bar".  The
97    unsafe characters are loosely based on rfc1738, plus "$" and ",",
98    as recommended by rfc2396, and minus "~", which is very frequently
99    used (and sometimes unrecognized as %7E by broken servers).
100
101    An unsafe character is the one that should be encoded when URLs are
102    placed in foreign environments.  E.g. space and newline are unsafe
103    in HTTP contexts because HTTP uses them as separator and line
104    terminator, so they must be encoded to %20 and %0A respectively.
105    "*" is unsafe in shell context, etc.
106
107    We determine whether a character is unsafe through static table
108    lookup.  This code assumes ASCII character set and 8-bit chars.  */
109
110 enum {
111   /* rfc1738 reserved chars + "$" and ",".  */
112   urlchr_reserved = 1,
113
114   /* rfc1738 unsafe chars, plus non-printables.  */
115   urlchr_unsafe   = 2
116 };
117
118 #define urlchr_test(c, mask) (urlchr_table[(unsigned char)(c)] & (mask))
119 #define URL_RESERVED_CHAR(c) urlchr_test(c, urlchr_reserved)
120 #define URL_UNSAFE_CHAR(c) urlchr_test(c, urlchr_unsafe)
121
122 /* Shorthands for the table: */
123 #define R  urlchr_reserved
124 #define U  urlchr_unsafe
125 #define RU R|U
126
127 static const unsigned char urlchr_table[256] =
128 {
129   U,  U,  U,  U,   U,  U,  U,  U,   /* NUL SOH STX ETX  EOT ENQ ACK BEL */
130   U,  U,  U,  U,   U,  U,  U,  U,   /* BS  HT  LF  VT   FF  CR  SO  SI  */
131   U,  U,  U,  U,   U,  U,  U,  U,   /* DLE DC1 DC2 DC3  DC4 NAK SYN ETB */
132   U,  U,  U,  U,   U,  U,  U,  U,   /* CAN EM  SUB ESC  FS  GS  RS  US  */
133   U,  0,  U, RU,   R,  U,  R,  0,   /* SP  !   "   #    $   %   &   '   */
134   0,  0,  0,  R,   R,  0,  0,  R,   /* (   )   *   +    ,   -   .   /   */
135   0,  0,  0,  0,   0,  0,  0,  0,   /* 0   1   2   3    4   5   6   7   */
136   0,  0, RU,  R,   U,  R,  U,  R,   /* 8   9   :   ;    <   =   >   ?   */
137  RU,  0,  0,  0,   0,  0,  0,  0,   /* @   A   B   C    D   E   F   G   */
138   0,  0,  0,  0,   0,  0,  0,  0,   /* H   I   J   K    L   M   N   O   */
139   0,  0,  0,  0,   0,  0,  0,  0,   /* P   Q   R   S    T   U   V   W   */
140   0,  0,  0, RU,   U, RU,  U,  0,   /* X   Y   Z   [    \   ]   ^   _   */
141   U,  0,  0,  0,   0,  0,  0,  0,   /* `   a   b   c    d   e   f   g   */
142   0,  0,  0,  0,   0,  0,  0,  0,   /* h   i   j   k    l   m   n   o   */
143   0,  0,  0,  0,   0,  0,  0,  0,   /* p   q   r   s    t   u   v   w   */
144   0,  0,  0,  U,   U,  U,  0,  U,   /* x   y   z   {    |   }   ~   DEL */
145
146   U, U, U, U,  U, U, U, U,  U, U, U, U,  U, U, U, U,
147   U, U, U, U,  U, U, U, U,  U, U, U, U,  U, U, U, U,
148   U, U, U, U,  U, U, U, U,  U, U, U, U,  U, U, U, U,
149   U, U, U, U,  U, U, U, U,  U, U, U, U,  U, U, U, U,
150
151   U, U, U, U,  U, U, U, U,  U, U, U, U,  U, U, U, U,
152   U, U, U, U,  U, U, U, U,  U, U, U, U,  U, U, U, U,
153   U, U, U, U,  U, U, U, U,  U, U, U, U,  U, U, U, U,
154   U, U, U, U,  U, U, U, U,  U, U, U, U,  U, U, U, U,
155 };
156 #undef R
157 #undef U
158 #undef RU
159
160 /* URL-unescape the string S.
161
162    This is done by transforming the sequences "%HH" to the character
163    represented by the hexadecimal digits HH.  If % is not followed by
164    two hexadecimal digits, it is inserted literally.
165
166    The transformation is done in place.  If you need the original
167    string intact, make a copy before calling this function.  */
168
169 static void
170 url_unescape (char *s)
171 {
172   char *t = s;                  /* t - tortoise */
173   char *h = s;                  /* h - hare     */
174
175   for (; *h; h++, t++)
176     {
177       if (*h != '%')
178         {
179         copychar:
180           *t = *h;
181         }
182       else
183         {
184           char c;
185           /* Do nothing if '%' is not followed by two hex digits. */
186           if (!h[1] || !h[2] || !(c_isxdigit (h[1]) && c_isxdigit (h[2])))
187             goto copychar;
188           c = X2DIGITS_TO_NUM (h[1], h[2]);
189           /* Don't unescape %00 because there is no way to insert it
190              into a C string without effectively truncating it. */
191           if (c == '\0')
192             goto copychar;
193           *t = c;
194           h += 2;
195         }
196     }
197   *t = '\0';
198 }
199
200 /* The core of url_escape_* functions.  Escapes the characters that
201    match the provided mask in urlchr_table.
202
203    If ALLOW_PASSTHROUGH is true, a string with no unsafe chars will be
204    returned unchanged.  If ALLOW_PASSTHROUGH is false, a freshly
205    allocated string will be returned in all cases.  */
206
207 static char *
208 url_escape_1 (const char *s, unsigned char mask, bool allow_passthrough)
209 {
210   const char *p1;
211   char *p2, *newstr;
212   int newlen;
213   int addition = 0;
214
215   for (p1 = s; *p1; p1++)
216     if (urlchr_test (*p1, mask))
217       addition += 2;            /* Two more characters (hex digits) */
218
219   if (!addition)
220     return allow_passthrough ? (char *)s : xstrdup (s);
221
222   newlen = (p1 - s) + addition;
223   newstr = xmalloc (newlen + 1);
224
225   p1 = s;
226   p2 = newstr;
227   while (*p1)
228     {
229       /* Quote the characters that match the test mask. */
230       if (urlchr_test (*p1, mask))
231         {
232           unsigned char c = *p1++;
233           *p2++ = '%';
234           *p2++ = XNUM_TO_DIGIT (c >> 4);
235           *p2++ = XNUM_TO_DIGIT (c & 0xf);
236         }
237       else
238         *p2++ = *p1++;
239     }
240   assert (p2 - newstr == newlen);
241   *p2 = '\0';
242
243   return newstr;
244 }
245
246 /* URL-escape the unsafe characters (see urlchr_table) in a given
247    string, returning a freshly allocated string.  */
248
249 char *
250 url_escape (const char *s)
251 {
252   return url_escape_1 (s, urlchr_unsafe, false);
253 }
254
255 /* URL-escape the unsafe and reserved characters (see urlchr_table) in
256    a given string, returning a freshly allocated string.  */
257
258 char *
259 url_escape_unsafe_and_reserved (const char *s)
260 {
261   return url_escape_1 (s, urlchr_unsafe|urlchr_reserved, false);
262 }
263
264 /* URL-escape the unsafe characters (see urlchr_table) in a given
265    string.  If no characters are unsafe, S is returned.  */
266
267 static char *
268 url_escape_allow_passthrough (const char *s)
269 {
270   return url_escape_1 (s, urlchr_unsafe, true);
271 }
272 \f
273 /* Decide whether the char at position P needs to be encoded.  (It is
274    not enough to pass a single char *P because the function may need
275    to inspect the surrounding context.)
276
277    Return true if the char should be escaped as %XX, false otherwise.  */
278
279 static inline bool
280 char_needs_escaping (const char *p)
281 {
282   if (*p == '%')
283     {
284       if (c_isxdigit (*(p + 1)) && c_isxdigit (*(p + 2)))
285         return false;
286       else
287         /* Garbled %.. sequence: encode `%'. */
288         return true;
289     }
290   else if (URL_UNSAFE_CHAR (*p) && !URL_RESERVED_CHAR (*p))
291     return true;
292   else
293     return false;
294 }
295
296 /* Translate a %-escaped (but possibly non-conformant) input string S
297    into a %-escaped (and conformant) output string.  If no characters
298    are encoded or decoded, return the same string S; otherwise, return
299    a freshly allocated string with the new contents.
300
301    After a URL has been run through this function, the protocols that
302    use `%' as the quote character can use the resulting string as-is,
303    while those that don't can use url_unescape to get to the intended
304    data.  This function is stable: once the input is transformed,
305    further transformations of the result yield the same output.
306
307    Let's discuss why this function is needed.
308
309    Imagine Wget is asked to retrieve `http://abc.xyz/abc def'.  Since
310    a raw space character would mess up the HTTP request, it needs to
311    be quoted, like this:
312
313        GET /abc%20def HTTP/1.0
314
315    It would appear that the unsafe chars need to be quoted, for
316    example with url_escape.  But what if we're requested to download
317    `abc%20def'?  url_escape transforms "%" to "%25", which would leave
318    us with `abc%2520def'.  This is incorrect -- since %-escapes are
319    part of URL syntax, "%20" is the correct way to denote a literal
320    space on the Wget command line.  This leads to the conclusion that
321    in that case Wget should not call url_escape, but leave the `%20'
322    as is.  This is clearly contradictory, but it only gets worse.
323
324    What if the requested URI is `abc%20 def'?  If we call url_escape,
325    we end up with `/abc%2520%20def', which is almost certainly not
326    intended.  If we don't call url_escape, we are left with the
327    embedded space and cannot complete the request.  What the user
328    meant was for Wget to request `/abc%20%20def', and this is where
329    reencode_escapes kicks in.
330
331    Wget used to solve this by first decoding %-quotes, and then
332    encoding all the "unsafe" characters found in the resulting string.
333    This was wrong because it didn't preserve certain URL special
334    (reserved) characters.  For instance, URI containing "a%2B+b" (0x2b
335    == '+') would get translated to "a%2B%2Bb" or "a++b" depending on
336    whether we considered `+' reserved (it is).  One of these results
337    is inevitable because by the second step we would lose information
338    on whether the `+' was originally encoded or not.  Both results
339    were wrong because in CGI parameters + means space, while %2B means
340    literal plus.  reencode_escapes correctly translates the above to
341    "a%2B+b", i.e. returns the original string.
342
343    This function uses a modified version of the algorithm originally
344    proposed by Anon Sricharoenchai:
345
346    * Encode all "unsafe" characters, except those that are also
347      "reserved", to %XX.  See urlchr_table for which characters are
348      unsafe and reserved.
349
350    * Encode the "%" characters not followed by two hex digits to
351      "%25".
352
353    * Pass through all other characters and %XX escapes as-is.  (Up to
354      Wget 1.10 this decoded %XX escapes corresponding to "safe"
355      characters, but that was obtrusive and broke some servers.)
356
357    Anon's test case:
358
359    "http://abc.xyz/%20%3F%%36%31%25aa% a?a=%61+a%2Ba&b=b%26c%3Dc"
360    ->
361    "http://abc.xyz/%20%3F%25%36%31%25aa%25%20a?a=%61+a%2Ba&b=b%26c%3Dc"
362
363    Simpler test cases:
364
365    "foo bar"         -> "foo%20bar"
366    "foo%20bar"       -> "foo%20bar"
367    "foo %20bar"      -> "foo%20%20bar"
368    "foo%%20bar"      -> "foo%25%20bar"       (0x25 == '%')
369    "foo%25%20bar"    -> "foo%25%20bar"
370    "foo%2%20bar"     -> "foo%252%20bar"
371    "foo+bar"         -> "foo+bar"            (plus is reserved!)
372    "foo%2b+bar"      -> "foo%2b+bar"  */
373
374 static char *
375 reencode_escapes (const char *s)
376 {
377   const char *p1;
378   char *newstr, *p2;
379   int oldlen, newlen;
380
381   int encode_count = 0;
382
383   /* First pass: inspect the string to see if there's anything to do,
384      and to calculate the new length.  */
385   for (p1 = s; *p1; p1++)
386     if (char_needs_escaping (p1))
387       ++encode_count;
388
389   if (!encode_count)
390     /* The string is good as it is. */
391     return (char *) s;          /* C const model sucks. */
392
393   oldlen = p1 - s;
394   /* Each encoding adds two characters (hex digits).  */
395   newlen = oldlen + 2 * encode_count;
396   newstr = xmalloc (newlen + 1);
397
398   /* Second pass: copy the string to the destination address, encoding
399      chars when needed.  */
400   p1 = s;
401   p2 = newstr;
402
403   while (*p1)
404     if (char_needs_escaping (p1))
405       {
406         unsigned char c = *p1++;
407         *p2++ = '%';
408         *p2++ = XNUM_TO_DIGIT (c >> 4);
409         *p2++ = XNUM_TO_DIGIT (c & 0xf);
410       }
411     else
412       *p2++ = *p1++;
413
414   *p2 = '\0';
415   assert (p2 - newstr == newlen);
416   return newstr;
417 }
418 \f
419 /* Returns the scheme type if the scheme is supported, or
420    SCHEME_INVALID if not.  */
421
422 enum url_scheme
423 url_scheme (const char *url)
424 {
425   int i;
426
427   for (i = 0; supported_schemes[i].leading_string; i++)
428     if (0 == strncasecmp (url, supported_schemes[i].leading_string,
429                           strlen (supported_schemes[i].leading_string)))
430       {
431         if (!(supported_schemes[i].flags & scm_disabled))
432           return (enum url_scheme) i;
433         else
434           return SCHEME_INVALID;
435       }
436
437   return SCHEME_INVALID;
438 }
439
440 #define SCHEME_CHAR(ch) (c_isalnum (ch) || (ch) == '-' || (ch) == '+')
441
442 /* Return 1 if the URL begins with any "scheme", 0 otherwise.  As
443    currently implemented, it returns true if URL begins with
444    [-+a-zA-Z0-9]+: .  */
445
446 bool
447 url_has_scheme (const char *url)
448 {
449   const char *p = url;
450
451   /* The first char must be a scheme char. */
452   if (!*p || !SCHEME_CHAR (*p))
453     return false;
454   ++p;
455   /* Followed by 0 or more scheme chars. */
456   while (*p && SCHEME_CHAR (*p))
457     ++p;
458   /* Terminated by ':'. */
459   return *p == ':';
460 }
461
462 int
463 scheme_default_port (enum url_scheme scheme)
464 {
465   return supported_schemes[scheme].default_port;
466 }
467
468 void
469 scheme_disable (enum url_scheme scheme)
470 {
471   supported_schemes[scheme].flags |= scm_disabled;
472 }
473
474 /* Skip the username and password, if present in the URL.  The
475    function should *not* be called with the complete URL, but with the
476    portion after the scheme.
477
478    If no username and password are found, return URL.  */
479
480 static const char *
481 url_skip_credentials (const char *url)
482 {
483   /* Look for '@' that comes before terminators, such as '/', '?',
484      '#', or ';'.  */
485   const char *p = (const char *)strpbrk (url, "@/?#;");
486   if (!p || *p != '@')
487     return url;
488   return p + 1;
489 }
490
491 /* Parse credentials contained in [BEG, END).  The region is expected
492    to have come from a URL and is unescaped.  */
493
494 static bool
495 parse_credentials (const char *beg, const char *end, char **user, char **passwd)
496 {
497   char *colon;
498   const char *userend;
499
500   if (beg == end)
501     return false;               /* empty user name */
502
503   colon = memchr (beg, ':', end - beg);
504   if (colon == beg)
505     return false;               /* again empty user name */
506
507   if (colon)
508     {
509       *passwd = strdupdelim (colon + 1, end);
510       userend = colon;
511       url_unescape (*passwd);
512     }
513   else
514     {
515       *passwd = NULL;
516       userend = end;
517     }
518   *user = strdupdelim (beg, userend);
519   url_unescape (*user);
520   return true;
521 }
522
523 /* Used by main.c: detect URLs written using the "shorthand" URL forms
524    originally popularized by Netscape and NcFTP.  HTTP shorthands look
525    like this:
526
527    www.foo.com[:port]/dir/file   -> http://www.foo.com[:port]/dir/file
528    www.foo.com[:port]            -> http://www.foo.com[:port]
529
530    FTP shorthands look like this:
531
532    foo.bar.com:dir/file          -> ftp://foo.bar.com/dir/file
533    foo.bar.com:/absdir/file      -> ftp://foo.bar.com//absdir/file
534
535    If the URL needs not or cannot be rewritten, return NULL.  */
536
537 char *
538 rewrite_shorthand_url (const char *url)
539 {
540   const char *p;
541   char *ret;
542
543   if (url_scheme (url) != SCHEME_INVALID)
544     return NULL;
545
546   /* Look for a ':' or '/'.  The former signifies NcFTP syntax, the
547      latter Netscape.  */
548   p = strpbrk (url, ":/");
549   if (p == url)
550     return NULL;
551
552   /* If we're looking at "://", it means the URL uses a scheme we
553      don't support, which may include "https" when compiled without
554      SSL support.  Don't bogusly rewrite such URLs.  */
555   if (p && p[0] == ':' && p[1] == '/' && p[2] == '/')
556     return NULL;
557
558   if (p && *p == ':')
559     {
560       /* Colon indicates ftp, as in foo.bar.com:path.  Check for
561          special case of http port number ("localhost:10000").  */
562       int digits = strspn (p + 1, "0123456789");
563       if (digits && (p[1 + digits] == '/' || p[1 + digits] == '\0'))
564         goto http;
565
566       /* Turn "foo.bar.com:path" to "ftp://foo.bar.com/path". */
567       ret = aprintf ("ftp://%s", url);
568       ret[6 + (p - url)] = '/';
569     }
570   else
571     {
572     http:
573       /* Just prepend "http://" to URL. */
574       ret = aprintf ("http://%s", url);
575     }
576   return ret;
577 }
578 \f
579 static void split_path (const char *, char **, char **);
580
581 /* Like strpbrk, with the exception that it returns the pointer to the
582    terminating zero (end-of-string aka "eos") if no matching character
583    is found.  */
584
585 static inline char *
586 strpbrk_or_eos (const char *s, const char *accept)
587 {
588   char *p = strpbrk (s, accept);
589   if (!p)
590     p = strchr (s, '\0');
591   return p;
592 }
593
594 /* Turn STR into lowercase; return true if a character was actually
595    changed. */
596
597 static bool
598 lowercase_str (char *str)
599 {
600   bool changed = false;
601   for (; *str; str++)
602     if (c_isupper (*str))
603       {
604         changed = true;
605         *str = c_tolower (*str);
606       }
607   return changed;
608 }
609
610 static const char *
611 init_seps (enum url_scheme scheme)
612 {
613   static char seps[8] = ":/";
614   char *p = seps + 2;
615   int flags = supported_schemes[scheme].flags;
616
617   if (flags & scm_has_params)
618     *p++ = ';';
619   if (flags & scm_has_query)
620     *p++ = '?';
621   if (flags & scm_has_fragment)
622     *p++ = '#';
623   *p++ = '\0';
624   return seps;
625 }
626
627 static const char *parse_errors[] = {
628 #define PE_NO_ERROR                     0
629   N_("No error"),
630 #define PE_UNSUPPORTED_SCHEME           1
631   N_("Unsupported scheme %s"),
632 #define PE_INVALID_HOST_NAME            2
633   N_("Invalid host name"),
634 #define PE_BAD_PORT_NUMBER              3
635   N_("Bad port number"),
636 #define PE_INVALID_USER_NAME            4
637   N_("Invalid user name"),
638 #define PE_UNTERMINATED_IPV6_ADDRESS    5
639   N_("Unterminated IPv6 numeric address"),
640 #define PE_IPV6_NOT_SUPPORTED           6
641   N_("IPv6 addresses not supported"),
642 #define PE_INVALID_IPV6_ADDRESS         7
643   N_("Invalid IPv6 numeric address")
644 };
645
646 /* Parse a URL.
647
648    Return a new struct url if successful, NULL on error.  In case of
649    error, and if ERROR is not NULL, also set *ERROR to the appropriate
650    error code. */
651 struct url *
652 url_parse (const char *url, int *error, struct iri *iri)
653 {
654   struct url *u;
655   const char *p;
656   bool path_modified, host_modified;
657
658   enum url_scheme scheme;
659   const char *seps;
660
661   const char *uname_b,     *uname_e;
662   const char *host_b,      *host_e;
663   const char *path_b,      *path_e;
664   const char *params_b,    *params_e;
665   const char *query_b,     *query_e;
666   const char *fragment_b,  *fragment_e;
667
668   int port;
669   char *user = NULL, *passwd = NULL;
670
671   char *url_encoded = NULL, *new_url = NULL;
672
673   int error_code;
674
675   scheme = url_scheme (url);
676   if (scheme == SCHEME_INVALID)
677     {
678       error_code = PE_UNSUPPORTED_SCHEME;
679       goto error;
680     }
681
682   if (iri && iri->utf8_encode)
683     {
684       url_unescape ((char *) url);
685       iri->utf8_encode = remote_to_utf8 (iri, url, (const char **) &new_url);
686       if (!iri->utf8_encode)
687         new_url = NULL;
688     }
689
690   url_encoded = reencode_escapes (new_url ? new_url : url);
691   p = url_encoded;
692
693   if (new_url && url_encoded != new_url)
694     xfree (new_url);
695
696   p += strlen (supported_schemes[scheme].leading_string);
697   uname_b = p;
698   p = url_skip_credentials (p);
699   uname_e = p;
700
701   /* scheme://user:pass@host[:port]... */
702   /*                    ^              */
703
704   /* We attempt to break down the URL into the components path,
705      params, query, and fragment.  They are ordered like this:
706
707        scheme://host[:port][/path][;params][?query][#fragment]  */
708
709   path_b     = path_e     = NULL;
710   params_b   = params_e   = NULL;
711   query_b    = query_e    = NULL;
712   fragment_b = fragment_e = NULL;
713
714   /* Initialize separators for optional parts of URL, depending on the
715      scheme.  For example, FTP has params, and HTTP and HTTPS have
716      query string and fragment. */
717   seps = init_seps (scheme);
718
719   host_b = p;
720
721   if (*p == '[')
722     {
723       /* Handle IPv6 address inside square brackets.  Ideally we'd
724          just look for the terminating ']', but rfc2732 mandates
725          rejecting invalid IPv6 addresses.  */
726
727       /* The address begins after '['. */
728       host_b = p + 1;
729       host_e = strchr (host_b, ']');
730
731       if (!host_e)
732         {
733           error_code = PE_UNTERMINATED_IPV6_ADDRESS;
734           goto error;
735         }
736
737 #ifdef ENABLE_IPV6
738       /* Check if the IPv6 address is valid. */
739       if (!is_valid_ipv6_address(host_b, host_e))
740         {
741           error_code = PE_INVALID_IPV6_ADDRESS;
742           goto error;
743         }
744
745       /* Continue parsing after the closing ']'. */
746       p = host_e + 1;
747 #else
748       error_code = PE_IPV6_NOT_SUPPORTED;
749       goto error;
750 #endif
751
752       /* The closing bracket must be followed by a separator or by the
753          null char.  */
754       /* http://[::1]... */
755       /*             ^   */
756       if (!strchr (seps, *p))
757         {
758           /* Trailing garbage after []-delimited IPv6 address. */
759           error_code = PE_INVALID_HOST_NAME;
760           goto error;
761         }
762     }
763   else
764     {
765       p = strpbrk_or_eos (p, seps);
766       host_e = p;
767     }
768   ++seps;                       /* advance to '/' */
769
770   if (host_b == host_e)
771     {
772       error_code = PE_INVALID_HOST_NAME;
773       goto error;
774     }
775
776   port = scheme_default_port (scheme);
777   if (*p == ':')
778     {
779       const char *port_b, *port_e, *pp;
780
781       /* scheme://host:port/tralala */
782       /*              ^             */
783       ++p;
784       port_b = p;
785       p = strpbrk_or_eos (p, seps);
786       port_e = p;
787
788       /* Allow empty port, as per rfc2396. */
789       if (port_b != port_e)
790         for (port = 0, pp = port_b; pp < port_e; pp++)
791           {
792             if (!c_isdigit (*pp))
793               {
794                 /* http://host:12randomgarbage/blah */
795                 /*               ^                  */
796                 error_code = PE_BAD_PORT_NUMBER;
797                 goto error;
798               }
799             port = 10 * port + (*pp - '0');
800             /* Check for too large port numbers here, before we have
801                a chance to overflow on bogus port values.  */
802             if (port > 0xffff)
803               {
804                 error_code = PE_BAD_PORT_NUMBER;
805                 goto error;
806               }
807           }
808     }
809   /* Advance to the first separator *after* '/' (either ';' or '?',
810      depending on the scheme).  */
811   ++seps;
812
813   /* Get the optional parts of URL, each part being delimited by
814      current location and the position of the next separator.  */
815 #define GET_URL_PART(sepchar, var) do {                         \
816   if (*p == sepchar)                                            \
817     var##_b = ++p, var##_e = p = strpbrk_or_eos (p, seps);      \
818   ++seps;                                                       \
819 } while (0)
820
821   GET_URL_PART ('/', path);
822   if (supported_schemes[scheme].flags & scm_has_params)
823     GET_URL_PART (';', params);
824   if (supported_schemes[scheme].flags & scm_has_query)
825     GET_URL_PART ('?', query);
826   if (supported_schemes[scheme].flags & scm_has_fragment)
827     GET_URL_PART ('#', fragment);
828
829 #undef GET_URL_PART
830   assert (*p == 0);
831
832   if (uname_b != uname_e)
833     {
834       /* http://user:pass@host */
835       /*        ^         ^    */
836       /*     uname_b   uname_e */
837       if (!parse_credentials (uname_b, uname_e - 1, &user, &passwd))
838         {
839           error_code = PE_INVALID_USER_NAME;
840           goto error;
841         }
842     }
843
844   u = xnew0 (struct url);
845   u->scheme = scheme;
846   u->host   = strdupdelim (host_b, host_e);
847   u->port   = port;
848   u->user   = user;
849   u->passwd = passwd;
850
851   u->path = strdupdelim (path_b, path_e);
852   path_modified = path_simplify (scheme, u->path);
853   split_path (u->path, &u->dir, &u->file);
854
855   host_modified = lowercase_str (u->host);
856
857   /* Decode %HH sequences in host name.  This is important not so much
858      to support %HH sequences in host names (which other browser
859      don't), but to support binary characters (which will have been
860      converted to %HH by reencode_escapes).  */
861   if (strchr (u->host, '%'))
862     {
863       url_unescape (u->host);
864       host_modified = true;
865
866       /* Apply IDNA regardless of iri->utf8_encode status */
867       if (opt.enable_iri && iri)
868         {
869           char *new = idn_encode (iri, u->host);
870           if (new)
871             {
872               xfree (u->host);
873               u->host = new;
874               host_modified = true;
875             }
876         }
877     }
878
879   if (params_b)
880     u->params = strdupdelim (params_b, params_e);
881   if (query_b)
882     u->query = strdupdelim (query_b, query_e);
883   if (fragment_b)
884     u->fragment = strdupdelim (fragment_b, fragment_e);
885
886   if (opt.enable_iri || path_modified || u->fragment || host_modified || path_b == path_e)
887     {
888       /* If we suspect that a transformation has rendered what
889          url_string might return different from URL_ENCODED, rebuild
890          u->url using url_string.  */
891       u->url = url_string (u, URL_AUTH_SHOW);
892
893       if (url_encoded != url)
894         xfree ((char *) url_encoded);
895     }
896   else
897     {
898       if (url_encoded == url)
899         u->url = xstrdup (url);
900       else
901         u->url = url_encoded;
902     }
903
904   return u;
905
906  error:
907   /* Cleanup in case of error: */
908   if (url_encoded && url_encoded != url)
909     xfree (url_encoded);
910
911   /* Transmit the error code to the caller, if the caller wants to
912      know.  */
913   if (error)
914     *error = error_code;
915   return NULL;
916 }
917
918 /* Return the error message string from ERROR_CODE, which should have
919    been retrieved from url_parse.  The error message is translated.  */
920
921 char *
922 url_error (const char *url, int error_code)
923 {
924   assert (error_code >= 0 && ((size_t) error_code) < countof (parse_errors));
925
926   if (error_code == PE_UNSUPPORTED_SCHEME)
927     {
928       char *error, *p;
929       char *scheme = xstrdup (url);
930       assert (url_has_scheme (url));
931
932       if ((p = strchr (scheme, ':')))
933         *p = '\0';
934       if (!strcasecmp (scheme, "https"))
935         error = aprintf (_("HTTPS support not compiled in"));
936       else
937         error = aprintf (_(parse_errors[error_code]), quote (scheme));
938       xfree (scheme);
939
940       return error;
941     }
942   else
943     return xstrdup (_(parse_errors[error_code]));
944 }
945
946 /* Split PATH into DIR and FILE.  PATH comes from the URL and is
947    expected to be URL-escaped.
948
949    The path is split into directory (the part up to the last slash)
950    and file (the part after the last slash), which are subsequently
951    unescaped.  Examples:
952
953    PATH                 DIR           FILE
954    "foo/bar/baz"        "foo/bar"     "baz"
955    "foo/bar/"           "foo/bar"     ""
956    "foo"                ""            "foo"
957    "foo/bar/baz%2fqux"  "foo/bar"     "baz/qux" (!)
958
959    DIR and FILE are freshly allocated.  */
960
961 static void
962 split_path (const char *path, char **dir, char **file)
963 {
964   char *last_slash = strrchr (path, '/');
965   if (!last_slash)
966     {
967       *dir = xstrdup ("");
968       *file = xstrdup (path);
969     }
970   else
971     {
972       *dir = strdupdelim (path, last_slash);
973       *file = xstrdup (last_slash + 1);
974     }
975   url_unescape (*dir);
976   url_unescape (*file);
977 }
978
979 /* Note: URL's "full path" is the path with the query string and
980    params appended.  The "fragment" (#foo) is intentionally ignored,
981    but that might be changed.  For example, if the original URL was
982    "http://host:port/foo/bar/baz;bullshit?querystring#uselessfragment",
983    the full path will be "/foo/bar/baz;bullshit?querystring".  */
984
985 /* Return the length of the full path, without the terminating
986    zero.  */
987
988 static int
989 full_path_length (const struct url *url)
990 {
991   int len = 0;
992
993 #define FROB(el) if (url->el) len += 1 + strlen (url->el)
994
995   FROB (path);
996   FROB (params);
997   FROB (query);
998
999 #undef FROB
1000
1001   return len;
1002 }
1003
1004 /* Write out the full path. */
1005
1006 static void
1007 full_path_write (const struct url *url, char *where)
1008 {
1009 #define FROB(el, chr) do {                      \
1010   char *f_el = url->el;                         \
1011   if (f_el) {                                   \
1012     int l = strlen (f_el);                      \
1013     *where++ = chr;                             \
1014     memcpy (where, f_el, l);                    \
1015     where += l;                                 \
1016   }                                             \
1017 } while (0)
1018
1019   FROB (path, '/');
1020   FROB (params, ';');
1021   FROB (query, '?');
1022
1023 #undef FROB
1024 }
1025
1026 /* Public function for getting the "full path".  E.g. if u->path is
1027    "foo/bar" and u->query is "param=value", full_path will be
1028    "/foo/bar?param=value". */
1029
1030 char *
1031 url_full_path (const struct url *url)
1032 {
1033   int length = full_path_length (url);
1034   char *full_path = xmalloc (length + 1);
1035
1036   full_path_write (url, full_path);
1037   full_path[length] = '\0';
1038
1039   return full_path;
1040 }
1041
1042 /* Unescape CHR in an otherwise escaped STR.  Used to selectively
1043    escaping of certain characters, such as "/" and ":".  Returns a
1044    count of unescaped chars.  */
1045
1046 static void
1047 unescape_single_char (char *str, char chr)
1048 {
1049   const char c1 = XNUM_TO_DIGIT (chr >> 4);
1050   const char c2 = XNUM_TO_DIGIT (chr & 0xf);
1051   char *h = str;                /* hare */
1052   char *t = str;                /* tortoise */
1053   for (; *h; h++, t++)
1054     {
1055       if (h[0] == '%' && h[1] == c1 && h[2] == c2)
1056         {
1057           *t = chr;
1058           h += 2;
1059         }
1060       else
1061         *t = *h;
1062     }
1063   *t = '\0';
1064 }
1065
1066 /* Escape unsafe and reserved characters, except for the slash
1067    characters.  */
1068
1069 static char *
1070 url_escape_dir (const char *dir)
1071 {
1072   char *newdir = url_escape_1 (dir, urlchr_unsafe | urlchr_reserved, 1);
1073   if (newdir == dir)
1074     return (char *)dir;
1075
1076   unescape_single_char (newdir, '/');
1077   return newdir;
1078 }
1079
1080 /* Sync u->path and u->url with u->dir and u->file.  Called after
1081    u->file or u->dir have been changed, typically by the FTP code.  */
1082
1083 static void
1084 sync_path (struct url *u)
1085 {
1086   char *newpath, *efile, *edir;
1087
1088   xfree (u->path);
1089
1090   /* u->dir and u->file are not escaped.  URL-escape them before
1091      reassembling them into u->path.  That way, if they contain
1092      separators like '?' or even if u->file contains slashes, the
1093      path will be correctly assembled.  (u->file can contain slashes
1094      if the URL specifies it with %2f, or if an FTP server returns
1095      it.)  */
1096   edir = url_escape_dir (u->dir);
1097   efile = url_escape_1 (u->file, urlchr_unsafe | urlchr_reserved, 1);
1098
1099   if (!*edir)
1100     newpath = xstrdup (efile);
1101   else
1102     {
1103       int dirlen = strlen (edir);
1104       int filelen = strlen (efile);
1105
1106       /* Copy "DIR/FILE" to newpath. */
1107       char *p = newpath = xmalloc (dirlen + 1 + filelen + 1);
1108       memcpy (p, edir, dirlen);
1109       p += dirlen;
1110       *p++ = '/';
1111       memcpy (p, efile, filelen);
1112       p += filelen;
1113       *p = '\0';
1114     }
1115
1116   u->path = newpath;
1117
1118   if (edir != u->dir)
1119     xfree (edir);
1120   if (efile != u->file)
1121     xfree (efile);
1122
1123   /* Regenerate u->url as well.  */
1124   xfree (u->url);
1125   u->url = url_string (u, URL_AUTH_SHOW);
1126 }
1127
1128 /* Mutators.  Code in ftp.c insists on changing u->dir and u->file.
1129    This way we can sync u->path and u->url when they get changed.  */
1130
1131 void
1132 url_set_dir (struct url *url, const char *newdir)
1133 {
1134   xfree (url->dir);
1135   url->dir = xstrdup (newdir);
1136   sync_path (url);
1137 }
1138
1139 void
1140 url_set_file (struct url *url, const char *newfile)
1141 {
1142   xfree (url->file);
1143   url->file = xstrdup (newfile);
1144   sync_path (url);
1145 }
1146
1147 void
1148 url_free (struct url *url)
1149 {
1150   xfree (url->host);
1151   xfree (url->path);
1152   xfree (url->url);
1153
1154   xfree_null (url->params);
1155   xfree_null (url->query);
1156   xfree_null (url->fragment);
1157   xfree_null (url->user);
1158   xfree_null (url->passwd);
1159
1160   xfree (url->dir);
1161   xfree (url->file);
1162
1163   xfree (url);
1164 }
1165 \f
1166 /* Create all the necessary directories for PATH (a file).  Calls
1167    make_directory internally.  */
1168 int
1169 mkalldirs (const char *path)
1170 {
1171   const char *p;
1172   char *t;
1173   struct_stat st;
1174   int res;
1175
1176   p = path + strlen (path);
1177   for (; *p != '/' && p != path; p--)
1178     ;
1179
1180   /* Don't create if it's just a file.  */
1181   if ((p == path) && (*p != '/'))
1182     return 0;
1183   t = strdupdelim (path, p);
1184
1185   /* Check whether the directory exists.  */
1186   if ((stat (t, &st) == 0))
1187     {
1188       if (S_ISDIR (st.st_mode))
1189         {
1190           xfree (t);
1191           return 0;
1192         }
1193       else
1194         {
1195           /* If the dir exists as a file name, remove it first.  This
1196              is *only* for Wget to work with buggy old CERN http
1197              servers.  Here is the scenario: When Wget tries to
1198              retrieve a directory without a slash, e.g.
1199              http://foo/bar (bar being a directory), CERN server will
1200              not redirect it too http://foo/bar/ -- it will generate a
1201              directory listing containing links to bar/file1,
1202              bar/file2, etc.  Wget will lose because it saves this
1203              HTML listing to a file `bar', so it cannot create the
1204              directory.  To work around this, if the file of the same
1205              name exists, we just remove it and create the directory
1206              anyway.  */
1207           DEBUGP (("Removing %s because of directory danger!\n", t));
1208           unlink (t);
1209         }
1210     }
1211   res = make_directory (t);
1212   if (res != 0)
1213     logprintf (LOG_NOTQUIET, "%s: %s", t, strerror (errno));
1214   xfree (t);
1215   return res;
1216 }
1217 \f
1218 /* Functions for constructing the file name out of URL components.  */
1219
1220 /* A growable string structure, used by url_file_name and friends.
1221    This should perhaps be moved to utils.c.
1222
1223    The idea is to have a convenient and efficient way to construct a
1224    string by having various functions append data to it.  Instead of
1225    passing the obligatory BASEVAR, SIZEVAR and TAILPOS to all the
1226    functions in questions, we pass the pointer to this struct.  */
1227
1228 struct growable {
1229   char *base;
1230   int size;
1231   int tail;
1232 };
1233
1234 /* Ensure that the string can accept APPEND_COUNT more characters past
1235    the current TAIL position.  If necessary, this will grow the string
1236    and update its allocated size.  If the string is already large
1237    enough to take TAIL+APPEND_COUNT characters, this does nothing.  */
1238 #define GROW(g, append_size) do {                                       \
1239   struct growable *G_ = g;                                              \
1240   DO_REALLOC (G_->base, G_->size, G_->tail + append_size, char);        \
1241 } while (0)
1242
1243 /* Return the tail position of the string. */
1244 #define TAIL(r) ((r)->base + (r)->tail)
1245
1246 /* Move the tail position by APPEND_COUNT characters. */
1247 #define TAIL_INCR(r, append_count) ((r)->tail += append_count)
1248
1249 /* Append the string STR to DEST.  NOTICE: the string in DEST is not
1250    terminated.  */
1251
1252 static void
1253 append_string (const char *str, struct growable *dest)
1254 {
1255   int l = strlen (str);
1256   GROW (dest, l);
1257   memcpy (TAIL (dest), str, l);
1258   TAIL_INCR (dest, l);
1259 }
1260
1261 /* Append CH to DEST.  For example, append_char (0, DEST)
1262    zero-terminates DEST.  */
1263
1264 static void
1265 append_char (char ch, struct growable *dest)
1266 {
1267   GROW (dest, 1);
1268   *TAIL (dest) = ch;
1269   TAIL_INCR (dest, 1);
1270 }
1271
1272 enum {
1273   filechr_not_unix    = 1,      /* unusable on Unix, / and \0 */
1274   filechr_not_windows = 2,      /* unusable on Windows, one of \|/<>?:*" */
1275   filechr_control     = 4       /* a control character, e.g. 0-31 */
1276 };
1277
1278 #define FILE_CHAR_TEST(c, mask) (filechr_table[(unsigned char)(c)] & (mask))
1279
1280 /* Shorthands for the table: */
1281 #define U filechr_not_unix
1282 #define W filechr_not_windows
1283 #define C filechr_control
1284
1285 #define UW U|W
1286 #define UWC U|W|C
1287
1288 /* Table of characters unsafe under various conditions (see above).
1289
1290    Arguably we could also claim `%' to be unsafe, since we use it as
1291    the escape character.  If we ever want to be able to reliably
1292    translate file name back to URL, this would become important
1293    crucial.  Right now, it's better to be minimal in escaping.  */
1294
1295 static const unsigned char filechr_table[256] =
1296 {
1297 UWC,  C,  C,  C,   C,  C,  C,  C,   /* NUL SOH STX ETX  EOT ENQ ACK BEL */
1298   C,  C,  C,  C,   C,  C,  C,  C,   /* BS  HT  LF  VT   FF  CR  SO  SI  */
1299   C,  C,  C,  C,   C,  C,  C,  C,   /* DLE DC1 DC2 DC3  DC4 NAK SYN ETB */
1300   C,  C,  C,  C,   C,  C,  C,  C,   /* CAN EM  SUB ESC  FS  GS  RS  US  */
1301   0,  0,  W,  0,   0,  0,  0,  0,   /* SP  !   "   #    $   %   &   '   */
1302   0,  0,  W,  0,   0,  0,  0, UW,   /* (   )   *   +    ,   -   .   /   */
1303   0,  0,  0,  0,   0,  0,  0,  0,   /* 0   1   2   3    4   5   6   7   */
1304   0,  0,  W,  0,   W,  0,  W,  W,   /* 8   9   :   ;    <   =   >   ?   */
1305   0,  0,  0,  0,   0,  0,  0,  0,   /* @   A   B   C    D   E   F   G   */
1306   0,  0,  0,  0,   0,  0,  0,  0,   /* H   I   J   K    L   M   N   O   */
1307   0,  0,  0,  0,   0,  0,  0,  0,   /* P   Q   R   S    T   U   V   W   */
1308   0,  0,  0,  0,   W,  0,  0,  0,   /* X   Y   Z   [    \   ]   ^   _   */
1309   0,  0,  0,  0,   0,  0,  0,  0,   /* `   a   b   c    d   e   f   g   */
1310   0,  0,  0,  0,   0,  0,  0,  0,   /* h   i   j   k    l   m   n   o   */
1311   0,  0,  0,  0,   0,  0,  0,  0,   /* p   q   r   s    t   u   v   w   */
1312   0,  0,  0,  0,   W,  0,  0,  C,   /* x   y   z   {    |   }   ~   DEL */
1313
1314   C, C, C, C,  C, C, C, C,  C, C, C, C,  C, C, C, C, /* 128-143 */
1315   C, C, C, C,  C, C, C, C,  C, C, C, C,  C, C, C, C, /* 144-159 */
1316   0, 0, 0, 0,  0, 0, 0, 0,  0, 0, 0, 0,  0, 0, 0, 0,
1317   0, 0, 0, 0,  0, 0, 0, 0,  0, 0, 0, 0,  0, 0, 0, 0,
1318
1319   0, 0, 0, 0,  0, 0, 0, 0,  0, 0, 0, 0,  0, 0, 0, 0,
1320   0, 0, 0, 0,  0, 0, 0, 0,  0, 0, 0, 0,  0, 0, 0, 0,
1321   0, 0, 0, 0,  0, 0, 0, 0,  0, 0, 0, 0,  0, 0, 0, 0,
1322   0, 0, 0, 0,  0, 0, 0, 0,  0, 0, 0, 0,  0, 0, 0, 0,
1323 };
1324 #undef U
1325 #undef W
1326 #undef C
1327 #undef UW
1328 #undef UWC
1329
1330 /* FN_PORT_SEP is the separator between host and port in file names
1331    for non-standard port numbers.  On Unix this is normally ':', as in
1332    "www.xemacs.org:4001/index.html".  Under Windows, we set it to +
1333    because Windows can't handle ':' in file names.  */
1334 #define FN_PORT_SEP  (opt.restrict_files_os != restrict_windows ? ':' : '+')
1335
1336 /* FN_QUERY_SEP is the separator between the file name and the URL
1337    query, normally '?'.  Since Windows cannot handle '?' as part of
1338    file name, we use '@' instead there.  */
1339 #define FN_QUERY_SEP (opt.restrict_files_os != restrict_windows ? '?' : '@')
1340
1341 /* Quote path element, characters in [b, e), as file name, and append
1342    the quoted string to DEST.  Each character is quoted as per
1343    file_unsafe_char and the corresponding table.
1344
1345    If ESCAPED is true, the path element is considered to be
1346    URL-escaped and will be unescaped prior to inspection.  */
1347
1348 static void
1349 append_uri_pathel (const char *b, const char *e, bool escaped,
1350                    struct growable *dest)
1351 {
1352   const char *p;
1353   int quoted, outlen;
1354
1355   int mask;
1356   if (opt.restrict_files_os == restrict_unix)
1357     mask = filechr_not_unix;
1358   else
1359     mask = filechr_not_windows;
1360   if (opt.restrict_files_ctrl)
1361     mask |= filechr_control;
1362
1363   /* Copy [b, e) to PATHEL and URL-unescape it. */
1364   if (escaped)
1365     {
1366       char *unescaped;
1367       BOUNDED_TO_ALLOCA (b, e, unescaped);
1368       url_unescape (unescaped);
1369       b = unescaped;
1370       e = unescaped + strlen (unescaped);
1371     }
1372
1373   /* Defang ".." when found as component of path.  Remember that path
1374      comes from the URL and might contain malicious input.  */
1375   if (e - b == 2 && b[0] == '.' && b[1] == '.')
1376     {
1377       b = "%2E%2E";
1378       e = b + 6;
1379     }
1380
1381   /* Walk the PATHEL string and check how many characters we'll need
1382      to quote.  */
1383   quoted = 0;
1384   for (p = b; p < e; p++)
1385     if (FILE_CHAR_TEST (*p, mask))
1386       ++quoted;
1387
1388   /* Calculate the length of the output string.  e-b is the input
1389      string length.  Each quoted char introduces two additional
1390      characters in the string, hence 2*quoted.  */
1391   outlen = (e - b) + (2 * quoted);
1392   GROW (dest, outlen);
1393
1394   if (!quoted)
1395     {
1396       /* If there's nothing to quote, we can simply append the string
1397          without processing it again.  */
1398       memcpy (TAIL (dest), b, outlen);
1399     }
1400   else
1401     {
1402       char *q = TAIL (dest);
1403       for (p = b; p < e; p++)
1404         {
1405           if (!FILE_CHAR_TEST (*p, mask))
1406             *q++ = *p;
1407           else
1408             {
1409               unsigned char ch = *p;
1410               *q++ = '%';
1411               *q++ = XNUM_TO_DIGIT (ch >> 4);
1412               *q++ = XNUM_TO_DIGIT (ch & 0xf);
1413             }
1414         }
1415       assert (q - TAIL (dest) == outlen);
1416     }
1417   
1418   /* Perform inline case transformation if required.  */
1419   if (opt.restrict_files_case == restrict_lowercase
1420       || opt.restrict_files_case == restrict_uppercase)
1421     {
1422       char *q;
1423       for (q = TAIL (dest); q < TAIL (dest) + outlen; ++q)
1424         {
1425           if (opt.restrict_files_case == restrict_lowercase)
1426             *q = c_tolower (*q);
1427           else
1428             *q = c_toupper (*q);
1429         }
1430     }
1431           
1432   TAIL_INCR (dest, outlen);
1433 }
1434
1435 /* Append to DEST the directory structure that corresponds the
1436    directory part of URL's path.  For example, if the URL is
1437    http://server/dir1/dir2/file, this appends "/dir1/dir2".
1438
1439    Each path element ("dir1" and "dir2" in the above example) is
1440    examined, url-unescaped, and re-escaped as file name element.
1441
1442    Additionally, it cuts as many directories from the path as
1443    specified by opt.cut_dirs.  For example, if opt.cut_dirs is 1, it
1444    will produce "bar" for the above example.  For 2 or more, it will
1445    produce "".
1446
1447    Each component of the path is quoted for use as file name.  */
1448
1449 static void
1450 append_dir_structure (const struct url *u, struct growable *dest)
1451 {
1452   char *pathel, *next;
1453   int cut = opt.cut_dirs;
1454
1455   /* Go through the path components, de-URL-quote them, and quote them
1456      (if necessary) as file names.  */
1457
1458   pathel = u->path;
1459   for (; (next = strchr (pathel, '/')) != NULL; pathel = next + 1)
1460     {
1461       if (cut-- > 0)
1462         continue;
1463       if (pathel == next)
1464         /* Ignore empty pathels.  */
1465         continue;
1466
1467       if (dest->tail)
1468         append_char ('/', dest);
1469       append_uri_pathel (pathel, next, true, dest);
1470     }
1471 }
1472
1473 /* Return a unique file name that matches the given URL as good as
1474    possible.  Does not create directories on the file system.  */
1475
1476 char *
1477 url_file_name (const struct url *u)
1478 {
1479   struct growable fnres;        /* stands for "file name result" */
1480
1481   const char *u_file, *u_query;
1482   char *fname, *unique;
1483   char *index_filename = "index.html"; /* The default index file is index.html */
1484
1485   fnres.base = NULL;
1486   fnres.size = 0;
1487   fnres.tail = 0;
1488
1489   /* If an alternative index file was defined, change index_filename */
1490   if (opt.default_page)
1491     index_filename = opt.default_page;
1492      
1493
1494   /* Start with the directory prefix, if specified. */
1495   if (opt.dir_prefix)
1496     append_string (opt.dir_prefix, &fnres);
1497
1498   /* If "dirstruct" is turned on (typically the case with -r), add
1499      the host and port (unless those have been turned off) and
1500      directory structure.  */
1501   if (opt.dirstruct)
1502     {
1503       if (opt.protocol_directories)
1504         {
1505           if (fnres.tail)
1506             append_char ('/', &fnres);
1507           append_string (supported_schemes[u->scheme].name, &fnres);
1508         }
1509       if (opt.add_hostdir)
1510         {
1511           if (fnres.tail)
1512             append_char ('/', &fnres);
1513           if (0 != strcmp (u->host, ".."))
1514             append_string (u->host, &fnres);
1515           else
1516             /* Host name can come from the network; malicious DNS may
1517                allow ".." to be resolved, causing us to write to
1518                "../<file>".  Defang such host names.  */
1519             append_string ("%2E%2E", &fnres);
1520           if (u->port != scheme_default_port (u->scheme))
1521             {
1522               char portstr[24];
1523               number_to_string (portstr, u->port);
1524               append_char (FN_PORT_SEP, &fnres);
1525               append_string (portstr, &fnres);
1526             }
1527         }
1528
1529       append_dir_structure (u, &fnres);
1530     }
1531
1532   /* Add the file name. */
1533   if (fnres.tail)
1534     append_char ('/', &fnres);
1535   u_file = *u->file ? u->file : index_filename;
1536   append_uri_pathel (u_file, u_file + strlen (u_file), false, &fnres);
1537
1538   /* Append "?query" to the file name. */
1539   u_query = u->query && *u->query ? u->query : NULL;
1540   if (u_query)
1541     {
1542       append_char (FN_QUERY_SEP, &fnres);
1543       append_uri_pathel (u_query, u_query + strlen (u_query), true, &fnres);
1544     }
1545
1546   /* Zero-terminate the file name. */
1547   append_char ('\0', &fnres);
1548
1549   fname = fnres.base;
1550
1551   /* Check the cases in which the unique extensions are not used:
1552      1) Clobbering is turned off (-nc).
1553      2) Retrieval with regetting.
1554      3) Timestamping is used.
1555      4) Hierarchy is built.
1556
1557      The exception is the case when file does exist and is a
1558      directory (see `mkalldirs' for explanation).  */
1559
1560   if ((opt.noclobber || opt.always_rest || opt.timestamping || opt.dirstruct)
1561       && !(file_exists_p (fname) && !file_non_directory_p (fname)))
1562     return fname;
1563
1564   unique = unique_name (fname, true);
1565   if (unique != fname)
1566     xfree (fname);
1567   return unique;
1568 }
1569 \f
1570 /* Resolve "." and ".." elements of PATH by destructively modifying
1571    PATH and return true if PATH has been modified, false otherwise.
1572
1573    The algorithm is in spirit similar to the one described in rfc1808,
1574    although implemented differently, in one pass.  To recap, path
1575    elements containing only "." are removed, and ".." is taken to mean
1576    "back up one element".  Single leading and trailing slashes are
1577    preserved.
1578
1579    For example, "a/b/c/./../d/.." will yield "a/b/".  More exhaustive
1580    test examples are provided below.  If you change anything in this
1581    function, run test_path_simplify to make sure you haven't broken a
1582    test case.  */
1583
1584 static bool
1585 path_simplify (enum url_scheme scheme, char *path)
1586 {
1587   char *h = path;               /* hare */
1588   char *t = path;               /* tortoise */
1589   char *beg = path;
1590   char *end = strchr (path, '\0');
1591
1592   while (h < end)
1593     {
1594       /* Hare should be at the beginning of a path element. */
1595
1596       if (h[0] == '.' && (h[1] == '/' || h[1] == '\0'))
1597         {
1598           /* Ignore "./". */
1599           h += 2;
1600         }
1601       else if (h[0] == '.' && h[1] == '.' && (h[2] == '/' || h[2] == '\0'))
1602         {
1603           /* Handle "../" by retreating the tortoise by one path
1604              element -- but not past beggining.  */
1605           if (t > beg)
1606             {
1607               /* Move backwards until T hits the beginning of the
1608                  previous path element or the beginning of path. */
1609               for (--t; t > beg && t[-1] != '/'; t--)
1610                 ;
1611             }
1612           else if (scheme == SCHEME_FTP)
1613             {
1614               /* If we're at the beginning, copy the "../" literally
1615                  and move the beginning so a later ".." doesn't remove
1616                  it.  This violates RFC 3986; but we do it for FTP
1617                  anyway because there is otherwise no way to get at a
1618                  parent directory, when the FTP server drops us in a
1619                  non-root directory (which is not uncommon). */
1620               beg = t + 3;
1621               goto regular;
1622             }
1623           h += 3;
1624         }
1625       else
1626         {
1627         regular:
1628           /* A regular path element.  If H hasn't advanced past T,
1629              simply skip to the next path element.  Otherwise, copy
1630              the path element until the next slash.  */
1631           if (t == h)
1632             {
1633               /* Skip the path element, including the slash.  */
1634               while (h < end && *h != '/')
1635                 t++, h++;
1636               if (h < end)
1637                 t++, h++;
1638             }
1639           else
1640             {
1641               /* Copy the path element, including the final slash.  */
1642               while (h < end && *h != '/')
1643                 *t++ = *h++;
1644               if (h < end)
1645                 *t++ = *h++;
1646             }
1647         }
1648     }
1649
1650   if (t != h)
1651     *t = '\0';
1652
1653   return t != h;
1654 }
1655 \f
1656 /* Return the length of URL's path.  Path is considered to be
1657    terminated by one or more of the ?query or ;params or #fragment,
1658    depending on the scheme.  */
1659
1660 static const char *
1661 path_end (const char *url)
1662 {
1663   enum url_scheme scheme = url_scheme (url);
1664   const char *seps;
1665   if (scheme == SCHEME_INVALID)
1666     scheme = SCHEME_HTTP;       /* use http semantics for rel links */
1667   /* +2 to ignore the first two separators ':' and '/' */
1668   seps = init_seps (scheme) + 2;
1669   return strpbrk_or_eos (url, seps);
1670 }
1671
1672 /* Find the last occurrence of character C in the range [b, e), or
1673    NULL, if none are present.  */
1674 #define find_last_char(b, e, c) memrchr ((b), (c), (e) - (b))
1675
1676 /* Merge BASE with LINK and return the resulting URI.
1677
1678    Either of the URIs may be absolute or relative, complete with the
1679    host name, or path only.  This tries to reasonably handle all
1680    foreseeable cases.  It only employs minimal URL parsing, without
1681    knowledge of the specifics of schemes.
1682
1683    I briefly considered making this function call path_simplify after
1684    the merging process, as rfc1738 seems to suggest.  This is a bad
1685    idea for several reasons: 1) it complexifies the code, and 2)
1686    url_parse has to simplify path anyway, so it's wasteful to boot.  */
1687
1688 char *
1689 uri_merge (const char *base, const char *link)
1690 {
1691   int linklength;
1692   const char *end;
1693   char *merge;
1694
1695   if (url_has_scheme (link))
1696     return xstrdup (link);
1697
1698   /* We may not examine BASE past END. */
1699   end = path_end (base);
1700   linklength = strlen (link);
1701
1702   if (!*link)
1703     {
1704       /* Empty LINK points back to BASE, query string and all. */
1705       return xstrdup (base);
1706     }
1707   else if (*link == '?')
1708     {
1709       /* LINK points to the same location, but changes the query
1710          string.  Examples: */
1711       /* uri_merge("path",         "?new") -> "path?new"     */
1712       /* uri_merge("path?foo",     "?new") -> "path?new"     */
1713       /* uri_merge("path?foo#bar", "?new") -> "path?new"     */
1714       /* uri_merge("path#foo",     "?new") -> "path?new"     */
1715       int baselength = end - base;
1716       merge = xmalloc (baselength + linklength + 1);
1717       memcpy (merge, base, baselength);
1718       memcpy (merge + baselength, link, linklength);
1719       merge[baselength + linklength] = '\0';
1720     }
1721   else if (*link == '#')
1722     {
1723       /* uri_merge("path",         "#new") -> "path#new"     */
1724       /* uri_merge("path#foo",     "#new") -> "path#new"     */
1725       /* uri_merge("path?foo",     "#new") -> "path?foo#new" */
1726       /* uri_merge("path?foo#bar", "#new") -> "path?foo#new" */
1727       int baselength;
1728       const char *end1 = strchr (base, '#');
1729       if (!end1)
1730         end1 = base + strlen (base);
1731       baselength = end1 - base;
1732       merge = xmalloc (baselength + linklength + 1);
1733       memcpy (merge, base, baselength);
1734       memcpy (merge + baselength, link, linklength);
1735       merge[baselength + linklength] = '\0';
1736     }
1737   else if (*link == '/' && *(link + 1) == '/')
1738     {
1739       /* LINK begins with "//" and so is a net path: we need to
1740          replace everything after (and including) the double slash
1741          with LINK. */
1742
1743       /* uri_merge("foo", "//new/bar")            -> "//new/bar"      */
1744       /* uri_merge("//old/foo", "//new/bar")      -> "//new/bar"      */
1745       /* uri_merge("http://old/foo", "//new/bar") -> "http://new/bar" */
1746
1747       int span;
1748       const char *slash;
1749       const char *start_insert;
1750
1751       /* Look for first slash. */
1752       slash = memchr (base, '/', end - base);
1753       /* If found slash and it is a double slash, then replace
1754          from this point, else default to replacing from the
1755          beginning.  */
1756       if (slash && *(slash + 1) == '/')
1757         start_insert = slash;
1758       else
1759         start_insert = base;
1760
1761       span = start_insert - base;
1762       merge = xmalloc (span + linklength + 1);
1763       if (span)
1764         memcpy (merge, base, span);
1765       memcpy (merge + span, link, linklength);
1766       merge[span + linklength] = '\0';
1767     }
1768   else if (*link == '/')
1769     {
1770       /* LINK is an absolute path: we need to replace everything
1771          after (and including) the FIRST slash with LINK.
1772
1773          So, if BASE is "http://host/whatever/foo/bar", and LINK is
1774          "/qux/xyzzy", our result should be
1775          "http://host/qux/xyzzy".  */
1776       int span;
1777       const char *slash;
1778       const char *start_insert = NULL; /* for gcc to shut up. */
1779       const char *pos = base;
1780       bool seen_slash_slash = false;
1781       /* We're looking for the first slash, but want to ignore
1782          double slash. */
1783     again:
1784       slash = memchr (pos, '/', end - pos);
1785       if (slash && !seen_slash_slash)
1786         if (*(slash + 1) == '/')
1787           {
1788             pos = slash + 2;
1789             seen_slash_slash = true;
1790             goto again;
1791           }
1792
1793       /* At this point, SLASH is the location of the first / after
1794          "//", or the first slash altogether.  START_INSERT is the
1795          pointer to the location where LINK will be inserted.  When
1796          examining the last two examples, keep in mind that LINK
1797          begins with '/'. */
1798
1799       if (!slash && !seen_slash_slash)
1800         /* example: "foo" */
1801         /*           ^    */
1802         start_insert = base;
1803       else if (!slash && seen_slash_slash)
1804         /* example: "http://foo" */
1805         /*                     ^ */
1806         start_insert = end;
1807       else if (slash && !seen_slash_slash)
1808         /* example: "foo/bar" */
1809         /*           ^        */
1810         start_insert = base;
1811       else if (slash && seen_slash_slash)
1812         /* example: "http://something/" */
1813         /*                           ^  */
1814         start_insert = slash;
1815
1816       span = start_insert - base;
1817       merge = xmalloc (span + linklength + 1);
1818       if (span)
1819         memcpy (merge, base, span);
1820       memcpy (merge + span, link, linklength);
1821       merge[span + linklength] = '\0';
1822     }
1823   else
1824     {
1825       /* LINK is a relative URL: we need to replace everything
1826          after last slash (possibly empty) with LINK.
1827
1828          So, if BASE is "whatever/foo/bar", and LINK is "qux/xyzzy",
1829          our result should be "whatever/foo/qux/xyzzy".  */
1830       bool need_explicit_slash = false;
1831       int span;
1832       const char *start_insert;
1833       const char *last_slash = find_last_char (base, end, '/');
1834       if (!last_slash)
1835         {
1836           /* No slash found at all.  Replace what we have with LINK. */
1837           start_insert = base;
1838         }
1839       else if (last_slash && last_slash >= base + 2
1840                && last_slash[-2] == ':' && last_slash[-1] == '/')
1841         {
1842           /* example: http://host"  */
1843           /*                      ^ */
1844           start_insert = end + 1;
1845           need_explicit_slash = true;
1846         }
1847       else
1848         {
1849           /* example: "whatever/foo/bar" */
1850           /*                        ^    */
1851           start_insert = last_slash + 1;
1852         }
1853
1854       span = start_insert - base;
1855       merge = xmalloc (span + linklength + 1);
1856       if (span)
1857         memcpy (merge, base, span);
1858       if (need_explicit_slash)
1859         merge[span - 1] = '/';
1860       memcpy (merge + span, link, linklength);
1861       merge[span + linklength] = '\0';
1862     }
1863
1864   return merge;
1865 }
1866 \f
1867 #define APPEND(p, s) do {                       \
1868   int len = strlen (s);                         \
1869   memcpy (p, s, len);                           \
1870   p += len;                                     \
1871 } while (0)
1872
1873 /* Use this instead of password when the actual password is supposed
1874    to be hidden.  We intentionally use a generic string without giving
1875    away the number of characters in the password, like previous
1876    versions did.  */
1877 #define HIDDEN_PASSWORD "*password*"
1878
1879 /* Recreate the URL string from the data in URL.
1880
1881    If HIDE is true (as it is when we're calling this on a URL we plan
1882    to print, but not when calling it to canonicalize a URL for use
1883    within the program), password will be hidden.  Unsafe characters in
1884    the URL will be quoted.  */
1885
1886 char *
1887 url_string (const struct url *url, enum url_auth_mode auth_mode)
1888 {
1889   int size;
1890   char *result, *p;
1891   char *quoted_host, *quoted_user = NULL, *quoted_passwd = NULL;
1892
1893   int scheme_port = supported_schemes[url->scheme].default_port;
1894   const char *scheme_str = supported_schemes[url->scheme].leading_string;
1895   int fplen = full_path_length (url);
1896
1897   bool brackets_around_host;
1898
1899   assert (scheme_str != NULL);
1900
1901   /* Make sure the user name and password are quoted. */
1902   if (url->user)
1903     {
1904       if (auth_mode != URL_AUTH_HIDE)
1905         {
1906           quoted_user = url_escape_allow_passthrough (url->user);
1907           if (url->passwd)
1908             {
1909               if (auth_mode == URL_AUTH_HIDE_PASSWD)
1910                 quoted_passwd = HIDDEN_PASSWORD;
1911               else
1912                 quoted_passwd = url_escape_allow_passthrough (url->passwd);
1913             }
1914         }
1915     }
1916
1917   /* In the unlikely event that the host name contains non-printable
1918      characters, quote it for displaying to the user.  */
1919   quoted_host = url_escape_allow_passthrough (url->host);
1920
1921   /* Undo the quoting of colons that URL escaping performs.  IPv6
1922      addresses may legally contain colons, and in that case must be
1923      placed in square brackets.  */
1924   if (quoted_host != url->host)
1925     unescape_single_char (quoted_host, ':');
1926   brackets_around_host = strchr (quoted_host, ':') != NULL;
1927
1928   size = (strlen (scheme_str)
1929           + strlen (quoted_host)
1930           + (brackets_around_host ? 2 : 0)
1931           + fplen
1932           + 1);
1933   if (url->port != scheme_port)
1934     size += 1 + numdigit (url->port);
1935   if (quoted_user)
1936     {
1937       size += 1 + strlen (quoted_user);
1938       if (quoted_passwd)
1939         size += 1 + strlen (quoted_passwd);
1940     }
1941
1942   p = result = xmalloc (size);
1943
1944   APPEND (p, scheme_str);
1945   if (quoted_user)
1946     {
1947       APPEND (p, quoted_user);
1948       if (quoted_passwd)
1949         {
1950           *p++ = ':';
1951           APPEND (p, quoted_passwd);
1952         }
1953       *p++ = '@';
1954     }
1955
1956   if (brackets_around_host)
1957     *p++ = '[';
1958   APPEND (p, quoted_host);
1959   if (brackets_around_host)
1960     *p++ = ']';
1961   if (url->port != scheme_port)
1962     {
1963       *p++ = ':';
1964       p = number_to_string (p, url->port);
1965     }
1966
1967   full_path_write (url, p);
1968   p += fplen;
1969   *p++ = '\0';
1970
1971   assert (p - result == size);
1972
1973   if (quoted_user && quoted_user != url->user)
1974     xfree (quoted_user);
1975   if (quoted_passwd && auth_mode == URL_AUTH_SHOW
1976       && quoted_passwd != url->passwd)
1977     xfree (quoted_passwd);
1978   if (quoted_host != url->host)
1979     xfree (quoted_host);
1980
1981   return result;
1982 }
1983 \f
1984 /* Return true if scheme a is similar to scheme b.
1985  
1986    Schemes are similar if they are equal.  If SSL is supported, schemes
1987    are also similar if one is http (SCHEME_HTTP) and the other is https
1988    (SCHEME_HTTPS).  */
1989 bool
1990 schemes_are_similar_p (enum url_scheme a, enum url_scheme b)
1991 {
1992   if (a == b)
1993     return true;
1994 #ifdef HAVE_SSL
1995   if ((a == SCHEME_HTTP && b == SCHEME_HTTPS)
1996       || (a == SCHEME_HTTPS && b == SCHEME_HTTP))
1997     return true;
1998 #endif
1999   return false;
2000 }
2001 \f
2002 static int
2003 getchar_from_escaped_string (const char *str, char *c)
2004 {  
2005   const char *p = str;
2006
2007   assert (str && *str);
2008   assert (c);
2009   
2010   if (p[0] == '%')
2011     {
2012       if (!c_isxdigit(p[1]) || !c_isxdigit(p[2]))
2013         {
2014           *c = '%';
2015           return 1;
2016         }
2017       else
2018         {
2019           if (p[2] == 0)
2020             return 0; /* error: invalid string */
2021
2022           *c = X2DIGITS_TO_NUM (p[1], p[2]);
2023           if (URL_RESERVED_CHAR(*c))
2024             {
2025               *c = '%';
2026               return 1;
2027             }
2028           else
2029             return 3;
2030         }
2031     }
2032   else
2033     {
2034       *c = p[0];
2035     }
2036
2037   return 1;
2038 }
2039
2040 bool
2041 are_urls_equal (const char *u1, const char *u2)
2042 {
2043   const char *p, *q;
2044   int pp, qq;
2045   char ch1, ch2;
2046   assert(u1 && u2);
2047
2048   p = u1;
2049   q = u2;
2050
2051   while (*p && *q
2052          && (pp = getchar_from_escaped_string (p, &ch1))
2053          && (qq = getchar_from_escaped_string (q, &ch2))
2054          && (c_tolower(ch1) == c_tolower(ch2)))
2055     {
2056       p += pp;
2057       q += qq;
2058     }
2059   
2060   return (*p == 0 && *q == 0 ? true : false);
2061 }
2062 \f
2063 #ifdef TESTING
2064 /* Debugging and testing support for path_simplify. */
2065
2066 #if 0
2067 /* Debug: run path_simplify on PATH and return the result in a new
2068    string.  Useful for calling from the debugger.  */
2069 static char *
2070 ps (char *path)
2071 {
2072   char *copy = xstrdup (path);
2073   path_simplify (copy);
2074   return copy;
2075 }
2076 #endif
2077
2078 static const char *
2079 run_test (char *test, char *expected_result, enum url_scheme scheme,
2080           bool expected_change)
2081 {
2082   char *test_copy = xstrdup (test);
2083   bool modified = path_simplify (scheme, test_copy);
2084
2085   if (0 != strcmp (test_copy, expected_result))
2086     {
2087       printf ("Failed path_simplify(\"%s\"): expected \"%s\", got \"%s\".\n",
2088               test, expected_result, test_copy);
2089       mu_assert ("", 0);
2090     }
2091   if (modified != expected_change)
2092     {
2093       if (expected_change)
2094         printf ("Expected modification with path_simplify(\"%s\").\n",
2095                 test);
2096       else
2097         printf ("Expected no modification with path_simplify(\"%s\").\n",
2098                 test);
2099     }
2100   xfree (test_copy);
2101   mu_assert ("", modified == expected_change);
2102   return NULL;
2103 }
2104
2105 const char *
2106 test_path_simplify (void)
2107 {
2108   static struct {
2109     char *test, *result;
2110     enum url_scheme scheme;
2111     bool should_modify;
2112   } tests[] = {
2113     { "",                       "",             SCHEME_HTTP, false },
2114     { ".",                      "",             SCHEME_HTTP, true },
2115     { "./",                     "",             SCHEME_HTTP, true },
2116     { "..",                     "",             SCHEME_HTTP, true },
2117     { "../",                    "",             SCHEME_HTTP, true },
2118     { "..",                     "..",           SCHEME_FTP,  false },
2119     { "../",                    "../",          SCHEME_FTP,  false },
2120     { "foo",                    "foo",          SCHEME_HTTP, false },
2121     { "foo/bar",                "foo/bar",      SCHEME_HTTP, false },
2122     { "foo///bar",              "foo///bar",    SCHEME_HTTP, false },
2123     { "foo/.",                  "foo/",         SCHEME_HTTP, true },
2124     { "foo/./",                 "foo/",         SCHEME_HTTP, true },
2125     { "foo./",                  "foo./",        SCHEME_HTTP, false },
2126     { "foo/../bar",             "bar",          SCHEME_HTTP, true },
2127     { "foo/../bar/",            "bar/",         SCHEME_HTTP, true },
2128     { "foo/bar/..",             "foo/",         SCHEME_HTTP, true },
2129     { "foo/bar/../x",           "foo/x",        SCHEME_HTTP, true },
2130     { "foo/bar/../x/",          "foo/x/",       SCHEME_HTTP, true },
2131     { "foo/..",                 "",             SCHEME_HTTP, true },
2132     { "foo/../..",              "",             SCHEME_HTTP, true },
2133     { "foo/../../..",           "",             SCHEME_HTTP, true },
2134     { "foo/../../bar/../../baz", "baz",         SCHEME_HTTP, true },
2135     { "foo/../..",              "..",           SCHEME_FTP,  true },
2136     { "foo/../../..",           "../..",        SCHEME_FTP,  true },
2137     { "foo/../../bar/../../baz", "../../baz",   SCHEME_FTP,  true },
2138     { "a/b/../../c",            "c",            SCHEME_HTTP, true },
2139     { "./a/../b",               "b",            SCHEME_HTTP, true }
2140   };
2141   int i;
2142
2143   for (i = 0; i < countof (tests); i++)
2144     {
2145       const char *message;
2146       char *test = tests[i].test;
2147       char *expected_result = tests[i].result;
2148       enum url_scheme scheme = tests[i].scheme;
2149       bool  expected_change = tests[i].should_modify;
2150       message = run_test (test, expected_result, scheme, expected_change);
2151       if (message) return message;
2152     }
2153   return NULL;
2154 }
2155
2156 const char *
2157 test_append_uri_pathel()
2158 {
2159   int i;
2160   struct {
2161     char *original_url;
2162     char *input;
2163     bool escaped;
2164     char *expected_result;
2165   } test_array[] = {
2166     { "http://www.yoyodyne.com/path/", "somepage.html", false, "http://www.yoyodyne.com/path/somepage.html" },
2167   };
2168   
2169   for (i = 0; i < sizeof(test_array)/sizeof(test_array[0]); ++i) 
2170     {
2171       struct growable dest;
2172       const char *p = test_array[i].input;
2173       
2174       memset (&dest, 0, sizeof (dest));
2175       
2176       append_string (test_array[i].original_url, &dest);
2177       append_uri_pathel (p, p + strlen(p), test_array[i].escaped, &dest);
2178       append_char ('\0', &dest);
2179
2180       mu_assert ("test_append_uri_pathel: wrong result", 
2181                  strcmp (dest.base, test_array[i].expected_result) == 0);
2182     }
2183
2184   return NULL;
2185 }
2186
2187 const char*
2188 test_are_urls_equal()
2189 {
2190   int i;
2191   struct {
2192     char *url1;
2193     char *url2;
2194     bool expected_result;
2195   } test_array[] = {
2196     { "http://www.adomain.com/apath/", "http://www.adomain.com/apath/",       true },
2197     { "http://www.adomain.com/apath/", "http://www.adomain.com/anotherpath/", false },
2198     { "http://www.adomain.com/apath/", "http://www.anotherdomain.com/path/",  false },
2199     { "http://www.adomain.com/~path/", "http://www.adomain.com/%7epath/",     true },
2200     { "http://www.adomain.com/longer-path/", "http://www.adomain.com/path/",  false },
2201     { "http://www.adomain.com/path%2f", "http://www.adomain.com/path/",       false },
2202   };
2203   
2204   for (i = 0; i < sizeof(test_array)/sizeof(test_array[0]); ++i) 
2205     {
2206       mu_assert ("test_are_urls_equal: wrong result", 
2207                  are_urls_equal (test_array[i].url1, test_array[i].url2) == test_array[i].expected_result);
2208     }
2209
2210   return NULL;
2211 }
2212
2213 #endif /* TESTING */
2214
2215 /*
2216  * vim: et ts=2 sw=2
2217  */
2218