]> sjero.net Git - wget/blob - src/url.c
Applied Alexander Belopolsky's patch for htmlified FTP listings.
[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)
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;
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   url_encoded = reencode_escapes (url);
683   p = url_encoded;
684
685   p += strlen (supported_schemes[scheme].leading_string);
686   uname_b = p;
687   p = url_skip_credentials (p);
688   uname_e = p;
689
690   /* scheme://user:pass@host[:port]... */
691   /*                    ^              */
692
693   /* We attempt to break down the URL into the components path,
694      params, query, and fragment.  They are ordered like this:
695
696        scheme://host[:port][/path][;params][?query][#fragment]  */
697
698   path_b     = path_e     = NULL;
699   params_b   = params_e   = NULL;
700   query_b    = query_e    = NULL;
701   fragment_b = fragment_e = NULL;
702
703   /* Initialize separators for optional parts of URL, depending on the
704      scheme.  For example, FTP has params, and HTTP and HTTPS have
705      query string and fragment. */
706   seps = init_seps (scheme);
707
708   host_b = p;
709
710   if (*p == '[')
711     {
712       /* Handle IPv6 address inside square brackets.  Ideally we'd
713          just look for the terminating ']', but rfc2732 mandates
714          rejecting invalid IPv6 addresses.  */
715
716       /* The address begins after '['. */
717       host_b = p + 1;
718       host_e = strchr (host_b, ']');
719
720       if (!host_e)
721         {
722           error_code = PE_UNTERMINATED_IPV6_ADDRESS;
723           goto error;
724         }
725
726 #ifdef ENABLE_IPV6
727       /* Check if the IPv6 address is valid. */
728       if (!is_valid_ipv6_address(host_b, host_e))
729         {
730           error_code = PE_INVALID_IPV6_ADDRESS;
731           goto error;
732         }
733
734       /* Continue parsing after the closing ']'. */
735       p = host_e + 1;
736 #else
737       error_code = PE_IPV6_NOT_SUPPORTED;
738       goto error;
739 #endif
740
741       /* The closing bracket must be followed by a separator or by the
742          null char.  */
743       /* http://[::1]... */
744       /*             ^   */
745       if (!strchr (seps, *p))
746         {
747           /* Trailing garbage after []-delimited IPv6 address. */
748           error_code = PE_INVALID_HOST_NAME;
749           goto error;
750         }
751     }
752   else
753     {
754       p = strpbrk_or_eos (p, seps);
755       host_e = p;
756     }
757   ++seps;                       /* advance to '/' */
758
759   if (host_b == host_e)
760     {
761       error_code = PE_INVALID_HOST_NAME;
762       goto error;
763     }
764
765   port = scheme_default_port (scheme);
766   if (*p == ':')
767     {
768       const char *port_b, *port_e, *pp;
769
770       /* scheme://host:port/tralala */
771       /*              ^             */
772       ++p;
773       port_b = p;
774       p = strpbrk_or_eos (p, seps);
775       port_e = p;
776
777       /* Allow empty port, as per rfc2396. */
778       if (port_b != port_e)
779         for (port = 0, pp = port_b; pp < port_e; pp++)
780           {
781             if (!c_isdigit (*pp))
782               {
783                 /* http://host:12randomgarbage/blah */
784                 /*               ^                  */
785                 error_code = PE_BAD_PORT_NUMBER;
786                 goto error;
787               }
788             port = 10 * port + (*pp - '0');
789             /* Check for too large port numbers here, before we have
790                a chance to overflow on bogus port values.  */
791             if (port > 0xffff)
792               {
793                 error_code = PE_BAD_PORT_NUMBER;
794                 goto error;
795               }
796           }
797     }
798   /* Advance to the first separator *after* '/' (either ';' or '?',
799      depending on the scheme).  */
800   ++seps;
801
802   /* Get the optional parts of URL, each part being delimited by
803      current location and the position of the next separator.  */
804 #define GET_URL_PART(sepchar, var) do {                         \
805   if (*p == sepchar)                                            \
806     var##_b = ++p, var##_e = p = strpbrk_or_eos (p, seps);      \
807   ++seps;                                                       \
808 } while (0)
809
810   GET_URL_PART ('/', path);
811   if (supported_schemes[scheme].flags & scm_has_params)
812     GET_URL_PART (';', params);
813   if (supported_schemes[scheme].flags & scm_has_query)
814     GET_URL_PART ('?', query);
815   if (supported_schemes[scheme].flags & scm_has_fragment)
816     GET_URL_PART ('#', fragment);
817
818 #undef GET_URL_PART
819   assert (*p == 0);
820
821   if (uname_b != uname_e)
822     {
823       /* http://user:pass@host */
824       /*        ^         ^    */
825       /*     uname_b   uname_e */
826       if (!parse_credentials (uname_b, uname_e - 1, &user, &passwd))
827         {
828           error_code = PE_INVALID_USER_NAME;
829           goto error;
830         }
831     }
832
833   u = xnew0 (struct url);
834   u->scheme = scheme;
835   u->host   = strdupdelim (host_b, host_e);
836   u->port   = port;
837   u->user   = user;
838   u->passwd = passwd;
839
840   u->path = strdupdelim (path_b, path_e);
841   path_modified = path_simplify (scheme, u->path);
842   split_path (u->path, &u->dir, &u->file);
843
844   host_modified = lowercase_str (u->host);
845
846   /* Decode %HH sequences in host name.  This is important not so much
847      to support %HH sequences in host names (which other browser
848      don't), but to support binary characters (which will have been
849      converted to %HH by reencode_escapes).  */
850   if (strchr (u->host, '%'))
851     {
852       url_unescape (u->host);
853       host_modified = true;
854     }
855
856   if (params_b)
857     u->params = strdupdelim (params_b, params_e);
858   if (query_b)
859     u->query = strdupdelim (query_b, query_e);
860   if (fragment_b)
861     u->fragment = strdupdelim (fragment_b, fragment_e);
862
863   if (path_modified || u->fragment || host_modified || path_b == path_e)
864     {
865       /* If we suspect that a transformation has rendered what
866          url_string might return different from URL_ENCODED, rebuild
867          u->url using url_string.  */
868       u->url = url_string (u, URL_AUTH_SHOW);
869
870       if (url_encoded != url)
871         xfree ((char *) url_encoded);
872     }
873   else
874     {
875       if (url_encoded == url)
876         u->url = xstrdup (url);
877       else
878         u->url = url_encoded;
879     }
880
881   return u;
882
883  error:
884   /* Cleanup in case of error: */
885   if (url_encoded && url_encoded != url)
886     xfree (url_encoded);
887
888   /* Transmit the error code to the caller, if the caller wants to
889      know.  */
890   if (error)
891     *error = error_code;
892   return NULL;
893 }
894
895 /* Return the error message string from ERROR_CODE, which should have
896    been retrieved from url_parse.  The error message is translated.  */
897
898 char *
899 url_error (const char *url, int error_code)
900 {
901   assert (error_code >= 0 && ((size_t) error_code) < countof (parse_errors));
902
903   if (error_code == PE_UNSUPPORTED_SCHEME)
904     {
905       char *error, *p;
906       char *scheme = xstrdup (url);
907       assert (url_has_scheme (url));
908
909       if ((p = strchr (scheme, ':')))
910         *p = '\0';
911       if (!strcasecmp (scheme, "https"))
912         error = aprintf (_("HTTPS support not compiled in"));
913       else
914         error = aprintf (_(parse_errors[error_code]), quote (scheme));
915       xfree (scheme);
916
917       return error;
918     }
919   else
920     return xstrdup (_(parse_errors[error_code]));
921 }
922
923 /* Split PATH into DIR and FILE.  PATH comes from the URL and is
924    expected to be URL-escaped.
925
926    The path is split into directory (the part up to the last slash)
927    and file (the part after the last slash), which are subsequently
928    unescaped.  Examples:
929
930    PATH                 DIR           FILE
931    "foo/bar/baz"        "foo/bar"     "baz"
932    "foo/bar/"           "foo/bar"     ""
933    "foo"                ""            "foo"
934    "foo/bar/baz%2fqux"  "foo/bar"     "baz/qux" (!)
935
936    DIR and FILE are freshly allocated.  */
937
938 static void
939 split_path (const char *path, char **dir, char **file)
940 {
941   char *last_slash = strrchr (path, '/');
942   if (!last_slash)
943     {
944       *dir = xstrdup ("");
945       *file = xstrdup (path);
946     }
947   else
948     {
949       *dir = strdupdelim (path, last_slash);
950       *file = xstrdup (last_slash + 1);
951     }
952   url_unescape (*dir);
953   url_unescape (*file);
954 }
955
956 /* Note: URL's "full path" is the path with the query string and
957    params appended.  The "fragment" (#foo) is intentionally ignored,
958    but that might be changed.  For example, if the original URL was
959    "http://host:port/foo/bar/baz;bullshit?querystring#uselessfragment",
960    the full path will be "/foo/bar/baz;bullshit?querystring".  */
961
962 /* Return the length of the full path, without the terminating
963    zero.  */
964
965 static int
966 full_path_length (const struct url *url)
967 {
968   int len = 0;
969
970 #define FROB(el) if (url->el) len += 1 + strlen (url->el)
971
972   FROB (path);
973   FROB (params);
974   FROB (query);
975
976 #undef FROB
977
978   return len;
979 }
980
981 /* Write out the full path. */
982
983 static void
984 full_path_write (const struct url *url, char *where)
985 {
986 #define FROB(el, chr) do {                      \
987   char *f_el = url->el;                         \
988   if (f_el) {                                   \
989     int l = strlen (f_el);                      \
990     *where++ = chr;                             \
991     memcpy (where, f_el, l);                    \
992     where += l;                                 \
993   }                                             \
994 } while (0)
995
996   FROB (path, '/');
997   FROB (params, ';');
998   FROB (query, '?');
999
1000 #undef FROB
1001 }
1002
1003 /* Public function for getting the "full path".  E.g. if u->path is
1004    "foo/bar" and u->query is "param=value", full_path will be
1005    "/foo/bar?param=value". */
1006
1007 char *
1008 url_full_path (const struct url *url)
1009 {
1010   int length = full_path_length (url);
1011   char *full_path = xmalloc (length + 1);
1012
1013   full_path_write (url, full_path);
1014   full_path[length] = '\0';
1015
1016   return full_path;
1017 }
1018
1019 /* Unescape CHR in an otherwise escaped STR.  Used to selectively
1020    escaping of certain characters, such as "/" and ":".  Returns a
1021    count of unescaped chars.  */
1022
1023 static void
1024 unescape_single_char (char *str, char chr)
1025 {
1026   const char c1 = XNUM_TO_DIGIT (chr >> 4);
1027   const char c2 = XNUM_TO_DIGIT (chr & 0xf);
1028   char *h = str;                /* hare */
1029   char *t = str;                /* tortoise */
1030   for (; *h; h++, t++)
1031     {
1032       if (h[0] == '%' && h[1] == c1 && h[2] == c2)
1033         {
1034           *t = chr;
1035           h += 2;
1036         }
1037       else
1038         *t = *h;
1039     }
1040   *t = '\0';
1041 }
1042
1043 /* Escape unsafe and reserved characters, except for the slash
1044    characters.  */
1045
1046 static char *
1047 url_escape_dir (const char *dir)
1048 {
1049   char *newdir = url_escape_1 (dir, urlchr_unsafe | urlchr_reserved, 1);
1050   if (newdir == dir)
1051     return (char *)dir;
1052
1053   unescape_single_char (newdir, '/');
1054   return newdir;
1055 }
1056
1057 /* Sync u->path and u->url with u->dir and u->file.  Called after
1058    u->file or u->dir have been changed, typically by the FTP code.  */
1059
1060 static void
1061 sync_path (struct url *u)
1062 {
1063   char *newpath, *efile, *edir;
1064
1065   xfree (u->path);
1066
1067   /* u->dir and u->file are not escaped.  URL-escape them before
1068      reassembling them into u->path.  That way, if they contain
1069      separators like '?' or even if u->file contains slashes, the
1070      path will be correctly assembled.  (u->file can contain slashes
1071      if the URL specifies it with %2f, or if an FTP server returns
1072      it.)  */
1073   edir = url_escape_dir (u->dir);
1074   efile = url_escape_1 (u->file, urlchr_unsafe | urlchr_reserved, 1);
1075
1076   if (!*edir)
1077     newpath = xstrdup (efile);
1078   else
1079     {
1080       int dirlen = strlen (edir);
1081       int filelen = strlen (efile);
1082
1083       /* Copy "DIR/FILE" to newpath. */
1084       char *p = newpath = xmalloc (dirlen + 1 + filelen + 1);
1085       memcpy (p, edir, dirlen);
1086       p += dirlen;
1087       *p++ = '/';
1088       memcpy (p, efile, filelen);
1089       p += filelen;
1090       *p = '\0';
1091     }
1092
1093   u->path = newpath;
1094
1095   if (edir != u->dir)
1096     xfree (edir);
1097   if (efile != u->file)
1098     xfree (efile);
1099
1100   /* Regenerate u->url as well.  */
1101   xfree (u->url);
1102   u->url = url_string (u, URL_AUTH_SHOW);
1103 }
1104
1105 /* Mutators.  Code in ftp.c insists on changing u->dir and u->file.
1106    This way we can sync u->path and u->url when they get changed.  */
1107
1108 void
1109 url_set_dir (struct url *url, const char *newdir)
1110 {
1111   xfree (url->dir);
1112   url->dir = xstrdup (newdir);
1113   sync_path (url);
1114 }
1115
1116 void
1117 url_set_file (struct url *url, const char *newfile)
1118 {
1119   xfree (url->file);
1120   url->file = xstrdup (newfile);
1121   sync_path (url);
1122 }
1123
1124 void
1125 url_free (struct url *url)
1126 {
1127   xfree (url->host);
1128   xfree (url->path);
1129   xfree (url->url);
1130
1131   xfree_null (url->params);
1132   xfree_null (url->query);
1133   xfree_null (url->fragment);
1134   xfree_null (url->user);
1135   xfree_null (url->passwd);
1136
1137   xfree (url->dir);
1138   xfree (url->file);
1139
1140   xfree (url);
1141 }
1142 \f
1143 /* Create all the necessary directories for PATH (a file).  Calls
1144    make_directory internally.  */
1145 int
1146 mkalldirs (const char *path)
1147 {
1148   const char *p;
1149   char *t;
1150   struct_stat st;
1151   int res;
1152
1153   p = path + strlen (path);
1154   for (; *p != '/' && p != path; p--)
1155     ;
1156
1157   /* Don't create if it's just a file.  */
1158   if ((p == path) && (*p != '/'))
1159     return 0;
1160   t = strdupdelim (path, p);
1161
1162   /* Check whether the directory exists.  */
1163   if ((stat (t, &st) == 0))
1164     {
1165       if (S_ISDIR (st.st_mode))
1166         {
1167           xfree (t);
1168           return 0;
1169         }
1170       else
1171         {
1172           /* If the dir exists as a file name, remove it first.  This
1173              is *only* for Wget to work with buggy old CERN http
1174              servers.  Here is the scenario: When Wget tries to
1175              retrieve a directory without a slash, e.g.
1176              http://foo/bar (bar being a directory), CERN server will
1177              not redirect it too http://foo/bar/ -- it will generate a
1178              directory listing containing links to bar/file1,
1179              bar/file2, etc.  Wget will lose because it saves this
1180              HTML listing to a file `bar', so it cannot create the
1181              directory.  To work around this, if the file of the same
1182              name exists, we just remove it and create the directory
1183              anyway.  */
1184           DEBUGP (("Removing %s because of directory danger!\n", t));
1185           unlink (t);
1186         }
1187     }
1188   res = make_directory (t);
1189   if (res != 0)
1190     logprintf (LOG_NOTQUIET, "%s: %s", t, strerror (errno));
1191   xfree (t);
1192   return res;
1193 }
1194 \f
1195 /* Functions for constructing the file name out of URL components.  */
1196
1197 /* A growable string structure, used by url_file_name and friends.
1198    This should perhaps be moved to utils.c.
1199
1200    The idea is to have a convenient and efficient way to construct a
1201    string by having various functions append data to it.  Instead of
1202    passing the obligatory BASEVAR, SIZEVAR and TAILPOS to all the
1203    functions in questions, we pass the pointer to this struct.  */
1204
1205 struct growable {
1206   char *base;
1207   int size;
1208   int tail;
1209 };
1210
1211 /* Ensure that the string can accept APPEND_COUNT more characters past
1212    the current TAIL position.  If necessary, this will grow the string
1213    and update its allocated size.  If the string is already large
1214    enough to take TAIL+APPEND_COUNT characters, this does nothing.  */
1215 #define GROW(g, append_size) do {                                       \
1216   struct growable *G_ = g;                                              \
1217   DO_REALLOC (G_->base, G_->size, G_->tail + append_size, char);        \
1218 } while (0)
1219
1220 /* Return the tail position of the string. */
1221 #define TAIL(r) ((r)->base + (r)->tail)
1222
1223 /* Move the tail position by APPEND_COUNT characters. */
1224 #define TAIL_INCR(r, append_count) ((r)->tail += append_count)
1225
1226 /* Append the string STR to DEST.  NOTICE: the string in DEST is not
1227    terminated.  */
1228
1229 static void
1230 append_string (const char *str, struct growable *dest)
1231 {
1232   int l = strlen (str);
1233   GROW (dest, l);
1234   memcpy (TAIL (dest), str, l);
1235   TAIL_INCR (dest, l);
1236 }
1237
1238 /* Append CH to DEST.  For example, append_char (0, DEST)
1239    zero-terminates DEST.  */
1240
1241 static void
1242 append_char (char ch, struct growable *dest)
1243 {
1244   GROW (dest, 1);
1245   *TAIL (dest) = ch;
1246   TAIL_INCR (dest, 1);
1247 }
1248
1249 enum {
1250   filechr_not_unix    = 1,      /* unusable on Unix, / and \0 */
1251   filechr_not_windows = 2,      /* unusable on Windows, one of \|/<>?:*" */
1252   filechr_control     = 4       /* a control character, e.g. 0-31 */
1253 };
1254
1255 #define FILE_CHAR_TEST(c, mask) (filechr_table[(unsigned char)(c)] & (mask))
1256
1257 /* Shorthands for the table: */
1258 #define U filechr_not_unix
1259 #define W filechr_not_windows
1260 #define C filechr_control
1261
1262 #define UW U|W
1263 #define UWC U|W|C
1264
1265 /* Table of characters unsafe under various conditions (see above).
1266
1267    Arguably we could also claim `%' to be unsafe, since we use it as
1268    the escape character.  If we ever want to be able to reliably
1269    translate file name back to URL, this would become important
1270    crucial.  Right now, it's better to be minimal in escaping.  */
1271
1272 static const unsigned char filechr_table[256] =
1273 {
1274 UWC,  C,  C,  C,   C,  C,  C,  C,   /* NUL SOH STX ETX  EOT ENQ ACK BEL */
1275   C,  C,  C,  C,   C,  C,  C,  C,   /* BS  HT  LF  VT   FF  CR  SO  SI  */
1276   C,  C,  C,  C,   C,  C,  C,  C,   /* DLE DC1 DC2 DC3  DC4 NAK SYN ETB */
1277   C,  C,  C,  C,   C,  C,  C,  C,   /* CAN EM  SUB ESC  FS  GS  RS  US  */
1278   0,  0,  W,  0,   0,  0,  0,  0,   /* SP  !   "   #    $   %   &   '   */
1279   0,  0,  W,  0,   0,  0,  0, UW,   /* (   )   *   +    ,   -   .   /   */
1280   0,  0,  0,  0,   0,  0,  0,  0,   /* 0   1   2   3    4   5   6   7   */
1281   0,  0,  W,  0,   W,  0,  W,  W,   /* 8   9   :   ;    <   =   >   ?   */
1282   0,  0,  0,  0,   0,  0,  0,  0,   /* @   A   B   C    D   E   F   G   */
1283   0,  0,  0,  0,   0,  0,  0,  0,   /* H   I   J   K    L   M   N   O   */
1284   0,  0,  0,  0,   0,  0,  0,  0,   /* P   Q   R   S    T   U   V   W   */
1285   0,  0,  0,  0,   W,  0,  0,  0,   /* X   Y   Z   [    \   ]   ^   _   */
1286   0,  0,  0,  0,   0,  0,  0,  0,   /* `   a   b   c    d   e   f   g   */
1287   0,  0,  0,  0,   0,  0,  0,  0,   /* h   i   j   k    l   m   n   o   */
1288   0,  0,  0,  0,   0,  0,  0,  0,   /* p   q   r   s    t   u   v   w   */
1289   0,  0,  0,  0,   W,  0,  0,  C,   /* x   y   z   {    |   }   ~   DEL */
1290
1291   C, C, C, C,  C, C, C, C,  C, C, C, C,  C, C, C, C, /* 128-143 */
1292   C, C, C, C,  C, C, C, C,  C, C, C, C,  C, C, C, C, /* 144-159 */
1293   0, 0, 0, 0,  0, 0, 0, 0,  0, 0, 0, 0,  0, 0, 0, 0,
1294   0, 0, 0, 0,  0, 0, 0, 0,  0, 0, 0, 0,  0, 0, 0, 0,
1295
1296   0, 0, 0, 0,  0, 0, 0, 0,  0, 0, 0, 0,  0, 0, 0, 0,
1297   0, 0, 0, 0,  0, 0, 0, 0,  0, 0, 0, 0,  0, 0, 0, 0,
1298   0, 0, 0, 0,  0, 0, 0, 0,  0, 0, 0, 0,  0, 0, 0, 0,
1299   0, 0, 0, 0,  0, 0, 0, 0,  0, 0, 0, 0,  0, 0, 0, 0,
1300 };
1301 #undef U
1302 #undef W
1303 #undef C
1304 #undef UW
1305 #undef UWC
1306
1307 /* FN_PORT_SEP is the separator between host and port in file names
1308    for non-standard port numbers.  On Unix this is normally ':', as in
1309    "www.xemacs.org:4001/index.html".  Under Windows, we set it to +
1310    because Windows can't handle ':' in file names.  */
1311 #define FN_PORT_SEP  (opt.restrict_files_os != restrict_windows ? ':' : '+')
1312
1313 /* FN_QUERY_SEP is the separator between the file name and the URL
1314    query, normally '?'.  Since Windows cannot handle '?' as part of
1315    file name, we use '@' instead there.  */
1316 #define FN_QUERY_SEP (opt.restrict_files_os != restrict_windows ? '?' : '@')
1317
1318 /* Quote path element, characters in [b, e), as file name, and append
1319    the quoted string to DEST.  Each character is quoted as per
1320    file_unsafe_char and the corresponding table.
1321
1322    If ESCAPED is true, the path element is considered to be
1323    URL-escaped and will be unescaped prior to inspection.  */
1324
1325 static void
1326 append_uri_pathel (const char *b, const char *e, bool escaped,
1327                    struct growable *dest)
1328 {
1329   const char *p;
1330   int quoted, outlen;
1331
1332   int mask;
1333   if (opt.restrict_files_os == restrict_unix)
1334     mask = filechr_not_unix;
1335   else
1336     mask = filechr_not_windows;
1337   if (opt.restrict_files_ctrl)
1338     mask |= filechr_control;
1339
1340   /* Copy [b, e) to PATHEL and URL-unescape it. */
1341   if (escaped)
1342     {
1343       char *unescaped;
1344       BOUNDED_TO_ALLOCA (b, e, unescaped);
1345       url_unescape (unescaped);
1346       b = unescaped;
1347       e = unescaped + strlen (unescaped);
1348     }
1349
1350   /* Defang ".." when found as component of path.  Remember that path
1351      comes from the URL and might contain malicious input.  */
1352   if (e - b == 2 && b[0] == '.' && b[1] == '.')
1353     {
1354       b = "%2E%2E";
1355       e = b + 6;
1356     }
1357
1358   /* Walk the PATHEL string and check how many characters we'll need
1359      to quote.  */
1360   quoted = 0;
1361   for (p = b; p < e; p++)
1362     if (FILE_CHAR_TEST (*p, mask))
1363       ++quoted;
1364
1365   /* Calculate the length of the output string.  e-b is the input
1366      string length.  Each quoted char introduces two additional
1367      characters in the string, hence 2*quoted.  */
1368   outlen = (e - b) + (2 * quoted);
1369   GROW (dest, outlen);
1370
1371   if (!quoted)
1372     {
1373       /* If there's nothing to quote, we can simply append the string
1374          without processing it again.  */
1375       memcpy (TAIL (dest), b, outlen);
1376     }
1377   else
1378     {
1379       char *q = TAIL (dest);
1380       for (p = b; p < e; p++)
1381         {
1382           if (!FILE_CHAR_TEST (*p, mask))
1383             *q++ = *p;
1384           else
1385             {
1386               unsigned char ch = *p;
1387               *q++ = '%';
1388               *q++ = XNUM_TO_DIGIT (ch >> 4);
1389               *q++ = XNUM_TO_DIGIT (ch & 0xf);
1390             }
1391         }
1392       assert (q - TAIL (dest) == outlen);
1393     }
1394   
1395   /* Perform inline case transformation if required.  */
1396   if (opt.restrict_files_case == restrict_lowercase
1397       || opt.restrict_files_case == restrict_uppercase)
1398     {
1399       char *q;
1400       for (q = TAIL (dest); q < TAIL (dest) + outlen; ++q)
1401         {
1402           if (opt.restrict_files_case == restrict_lowercase)
1403             *q = c_tolower (*q);
1404           else
1405             *q = c_toupper (*q);
1406         }
1407     }
1408           
1409   TAIL_INCR (dest, outlen);
1410 }
1411
1412 /* Append to DEST the directory structure that corresponds the
1413    directory part of URL's path.  For example, if the URL is
1414    http://server/dir1/dir2/file, this appends "/dir1/dir2".
1415
1416    Each path element ("dir1" and "dir2" in the above example) is
1417    examined, url-unescaped, and re-escaped as file name element.
1418
1419    Additionally, it cuts as many directories from the path as
1420    specified by opt.cut_dirs.  For example, if opt.cut_dirs is 1, it
1421    will produce "bar" for the above example.  For 2 or more, it will
1422    produce "".
1423
1424    Each component of the path is quoted for use as file name.  */
1425
1426 static void
1427 append_dir_structure (const struct url *u, struct growable *dest)
1428 {
1429   char *pathel, *next;
1430   int cut = opt.cut_dirs;
1431
1432   /* Go through the path components, de-URL-quote them, and quote them
1433      (if necessary) as file names.  */
1434
1435   pathel = u->path;
1436   for (; (next = strchr (pathel, '/')) != NULL; pathel = next + 1)
1437     {
1438       if (cut-- > 0)
1439         continue;
1440       if (pathel == next)
1441         /* Ignore empty pathels.  */
1442         continue;
1443
1444       if (dest->tail)
1445         append_char ('/', dest);
1446       append_uri_pathel (pathel, next, true, dest);
1447     }
1448 }
1449
1450 /* Return a unique file name that matches the given URL as good as
1451    possible.  Does not create directories on the file system.  */
1452
1453 char *
1454 url_file_name (const struct url *u)
1455 {
1456   struct growable fnres;        /* stands for "file name result" */
1457
1458   const char *u_file, *u_query;
1459   char *fname, *unique;
1460   char *index_filename = "index.html"; /* The default index file is index.html */
1461
1462   fnres.base = NULL;
1463   fnres.size = 0;
1464   fnres.tail = 0;
1465
1466   /* If an alternative index file was defined, change index_filename */
1467   if (opt.default_page)
1468     index_filename = opt.default_page;
1469      
1470
1471   /* Start with the directory prefix, if specified. */
1472   if (opt.dir_prefix)
1473     append_string (opt.dir_prefix, &fnres);
1474
1475   /* If "dirstruct" is turned on (typically the case with -r), add
1476      the host and port (unless those have been turned off) and
1477      directory structure.  */
1478   if (opt.dirstruct)
1479     {
1480       if (opt.protocol_directories)
1481         {
1482           if (fnres.tail)
1483             append_char ('/', &fnres);
1484           append_string (supported_schemes[u->scheme].name, &fnres);
1485         }
1486       if (opt.add_hostdir)
1487         {
1488           if (fnres.tail)
1489             append_char ('/', &fnres);
1490           if (0 != strcmp (u->host, ".."))
1491             append_string (u->host, &fnres);
1492           else
1493             /* Host name can come from the network; malicious DNS may
1494                allow ".." to be resolved, causing us to write to
1495                "../<file>".  Defang such host names.  */
1496             append_string ("%2E%2E", &fnres);
1497           if (u->port != scheme_default_port (u->scheme))
1498             {
1499               char portstr[24];
1500               number_to_string (portstr, u->port);
1501               append_char (FN_PORT_SEP, &fnres);
1502               append_string (portstr, &fnres);
1503             }
1504         }
1505
1506       append_dir_structure (u, &fnres);
1507     }
1508
1509   /* Add the file name. */
1510   if (fnres.tail)
1511     append_char ('/', &fnres);
1512   u_file = *u->file ? u->file : index_filename;
1513   append_uri_pathel (u_file, u_file + strlen (u_file), false, &fnres);
1514
1515   /* Append "?query" to the file name. */
1516   u_query = u->query && *u->query ? u->query : NULL;
1517   if (u_query)
1518     {
1519       append_char (FN_QUERY_SEP, &fnres);
1520       append_uri_pathel (u_query, u_query + strlen (u_query), true, &fnres);
1521     }
1522
1523   /* Zero-terminate the file name. */
1524   append_char ('\0', &fnres);
1525
1526   fname = fnres.base;
1527
1528   /* Check the cases in which the unique extensions are not used:
1529      1) Clobbering is turned off (-nc).
1530      2) Retrieval with regetting.
1531      3) Timestamping is used.
1532      4) Hierarchy is built.
1533
1534      The exception is the case when file does exist and is a
1535      directory (see `mkalldirs' for explanation).  */
1536
1537   if ((opt.noclobber || opt.always_rest || opt.timestamping || opt.dirstruct)
1538       && !(file_exists_p (fname) && !file_non_directory_p (fname)))
1539     return fname;
1540
1541   unique = unique_name (fname, true);
1542   if (unique != fname)
1543     xfree (fname);
1544   return unique;
1545 }
1546 \f
1547 /* Resolve "." and ".." elements of PATH by destructively modifying
1548    PATH and return true if PATH has been modified, false otherwise.
1549
1550    The algorithm is in spirit similar to the one described in rfc1808,
1551    although implemented differently, in one pass.  To recap, path
1552    elements containing only "." are removed, and ".." is taken to mean
1553    "back up one element".  Single leading and trailing slashes are
1554    preserved.
1555
1556    For example, "a/b/c/./../d/.." will yield "a/b/".  More exhaustive
1557    test examples are provided below.  If you change anything in this
1558    function, run test_path_simplify to make sure you haven't broken a
1559    test case.  */
1560
1561 static bool
1562 path_simplify (enum url_scheme scheme, char *path)
1563 {
1564   char *h = path;               /* hare */
1565   char *t = path;               /* tortoise */
1566   char *beg = path;
1567   char *end = strchr (path, '\0');
1568
1569   while (h < end)
1570     {
1571       /* Hare should be at the beginning of a path element. */
1572
1573       if (h[0] == '.' && (h[1] == '/' || h[1] == '\0'))
1574         {
1575           /* Ignore "./". */
1576           h += 2;
1577         }
1578       else if (h[0] == '.' && h[1] == '.' && (h[2] == '/' || h[2] == '\0'))
1579         {
1580           /* Handle "../" by retreating the tortoise by one path
1581              element -- but not past beggining.  */
1582           if (t > beg)
1583             {
1584               /* Move backwards until T hits the beginning of the
1585                  previous path element or the beginning of path. */
1586               for (--t; t > beg && t[-1] != '/'; t--)
1587                 ;
1588             }
1589           else if (scheme == SCHEME_FTP)
1590             {
1591               /* If we're at the beginning, copy the "../" literally
1592                  and move the beginning so a later ".." doesn't remove
1593                  it.  This violates RFC 3986; but we do it for FTP
1594                  anyway because there is otherwise no way to get at a
1595                  parent directory, when the FTP server drops us in a
1596                  non-root directory (which is not uncommon). */
1597               beg = t + 3;
1598               goto regular;
1599             }
1600           h += 3;
1601         }
1602       else
1603         {
1604         regular:
1605           /* A regular path element.  If H hasn't advanced past T,
1606              simply skip to the next path element.  Otherwise, copy
1607              the path element until the next slash.  */
1608           if (t == h)
1609             {
1610               /* Skip the path element, including the slash.  */
1611               while (h < end && *h != '/')
1612                 t++, h++;
1613               if (h < end)
1614                 t++, h++;
1615             }
1616           else
1617             {
1618               /* Copy the path element, including the final slash.  */
1619               while (h < end && *h != '/')
1620                 *t++ = *h++;
1621               if (h < end)
1622                 *t++ = *h++;
1623             }
1624         }
1625     }
1626
1627   if (t != h)
1628     *t = '\0';
1629
1630   return t != h;
1631 }
1632 \f
1633 /* Return the length of URL's path.  Path is considered to be
1634    terminated by one or more of the ?query or ;params or #fragment,
1635    depending on the scheme.  */
1636
1637 static const char *
1638 path_end (const char *url)
1639 {
1640   enum url_scheme scheme = url_scheme (url);
1641   const char *seps;
1642   if (scheme == SCHEME_INVALID)
1643     scheme = SCHEME_HTTP;       /* use http semantics for rel links */
1644   /* +2 to ignore the first two separators ':' and '/' */
1645   seps = init_seps (scheme) + 2;
1646   return strpbrk_or_eos (url, seps);
1647 }
1648
1649 /* Find the last occurrence of character C in the range [b, e), or
1650    NULL, if none are present.  */
1651 #define find_last_char(b, e, c) memrchr ((b), (c), (e) - (b))
1652
1653 /* Merge BASE with LINK and return the resulting URI.
1654
1655    Either of the URIs may be absolute or relative, complete with the
1656    host name, or path only.  This tries to reasonably handle all
1657    foreseeable cases.  It only employs minimal URL parsing, without
1658    knowledge of the specifics of schemes.
1659
1660    I briefly considered making this function call path_simplify after
1661    the merging process, as rfc1738 seems to suggest.  This is a bad
1662    idea for several reasons: 1) it complexifies the code, and 2)
1663    url_parse has to simplify path anyway, so it's wasteful to boot.  */
1664
1665 char *
1666 uri_merge (const char *base, const char *link)
1667 {
1668   int linklength;
1669   const char *end;
1670   char *merge;
1671
1672   if (url_has_scheme (link))
1673     return xstrdup (link);
1674
1675   /* We may not examine BASE past END. */
1676   end = path_end (base);
1677   linklength = strlen (link);
1678
1679   if (!*link)
1680     {
1681       /* Empty LINK points back to BASE, query string and all. */
1682       return xstrdup (base);
1683     }
1684   else if (*link == '?')
1685     {
1686       /* LINK points to the same location, but changes the query
1687          string.  Examples: */
1688       /* uri_merge("path",         "?new") -> "path?new"     */
1689       /* uri_merge("path?foo",     "?new") -> "path?new"     */
1690       /* uri_merge("path?foo#bar", "?new") -> "path?new"     */
1691       /* uri_merge("path#foo",     "?new") -> "path?new"     */
1692       int baselength = end - base;
1693       merge = xmalloc (baselength + linklength + 1);
1694       memcpy (merge, base, baselength);
1695       memcpy (merge + baselength, link, linklength);
1696       merge[baselength + linklength] = '\0';
1697     }
1698   else if (*link == '#')
1699     {
1700       /* uri_merge("path",         "#new") -> "path#new"     */
1701       /* uri_merge("path#foo",     "#new") -> "path#new"     */
1702       /* uri_merge("path?foo",     "#new") -> "path?foo#new" */
1703       /* uri_merge("path?foo#bar", "#new") -> "path?foo#new" */
1704       int baselength;
1705       const char *end1 = strchr (base, '#');
1706       if (!end1)
1707         end1 = base + strlen (base);
1708       baselength = end1 - base;
1709       merge = xmalloc (baselength + linklength + 1);
1710       memcpy (merge, base, baselength);
1711       memcpy (merge + baselength, link, linklength);
1712       merge[baselength + linklength] = '\0';
1713     }
1714   else if (*link == '/' && *(link + 1) == '/')
1715     {
1716       /* LINK begins with "//" and so is a net path: we need to
1717          replace everything after (and including) the double slash
1718          with LINK. */
1719
1720       /* uri_merge("foo", "//new/bar")            -> "//new/bar"      */
1721       /* uri_merge("//old/foo", "//new/bar")      -> "//new/bar"      */
1722       /* uri_merge("http://old/foo", "//new/bar") -> "http://new/bar" */
1723
1724       int span;
1725       const char *slash;
1726       const char *start_insert;
1727
1728       /* Look for first slash. */
1729       slash = memchr (base, '/', end - base);
1730       /* If found slash and it is a double slash, then replace
1731          from this point, else default to replacing from the
1732          beginning.  */
1733       if (slash && *(slash + 1) == '/')
1734         start_insert = slash;
1735       else
1736         start_insert = base;
1737
1738       span = start_insert - base;
1739       merge = xmalloc (span + linklength + 1);
1740       if (span)
1741         memcpy (merge, base, span);
1742       memcpy (merge + span, link, linklength);
1743       merge[span + linklength] = '\0';
1744     }
1745   else if (*link == '/')
1746     {
1747       /* LINK is an absolute path: we need to replace everything
1748          after (and including) the FIRST slash with LINK.
1749
1750          So, if BASE is "http://host/whatever/foo/bar", and LINK is
1751          "/qux/xyzzy", our result should be
1752          "http://host/qux/xyzzy".  */
1753       int span;
1754       const char *slash;
1755       const char *start_insert = NULL; /* for gcc to shut up. */
1756       const char *pos = base;
1757       bool seen_slash_slash = false;
1758       /* We're looking for the first slash, but want to ignore
1759          double slash. */
1760     again:
1761       slash = memchr (pos, '/', end - pos);
1762       if (slash && !seen_slash_slash)
1763         if (*(slash + 1) == '/')
1764           {
1765             pos = slash + 2;
1766             seen_slash_slash = true;
1767             goto again;
1768           }
1769
1770       /* At this point, SLASH is the location of the first / after
1771          "//", or the first slash altogether.  START_INSERT is the
1772          pointer to the location where LINK will be inserted.  When
1773          examining the last two examples, keep in mind that LINK
1774          begins with '/'. */
1775
1776       if (!slash && !seen_slash_slash)
1777         /* example: "foo" */
1778         /*           ^    */
1779         start_insert = base;
1780       else if (!slash && seen_slash_slash)
1781         /* example: "http://foo" */
1782         /*                     ^ */
1783         start_insert = end;
1784       else if (slash && !seen_slash_slash)
1785         /* example: "foo/bar" */
1786         /*           ^        */
1787         start_insert = base;
1788       else if (slash && seen_slash_slash)
1789         /* example: "http://something/" */
1790         /*                           ^  */
1791         start_insert = slash;
1792
1793       span = start_insert - base;
1794       merge = xmalloc (span + linklength + 1);
1795       if (span)
1796         memcpy (merge, base, span);
1797       memcpy (merge + span, link, linklength);
1798       merge[span + linklength] = '\0';
1799     }
1800   else
1801     {
1802       /* LINK is a relative URL: we need to replace everything
1803          after last slash (possibly empty) with LINK.
1804
1805          So, if BASE is "whatever/foo/bar", and LINK is "qux/xyzzy",
1806          our result should be "whatever/foo/qux/xyzzy".  */
1807       bool need_explicit_slash = false;
1808       int span;
1809       const char *start_insert;
1810       const char *last_slash = find_last_char (base, end, '/');
1811       if (!last_slash)
1812         {
1813           /* No slash found at all.  Replace what we have with LINK. */
1814           start_insert = base;
1815         }
1816       else if (last_slash && last_slash >= base + 2
1817                && last_slash[-2] == ':' && last_slash[-1] == '/')
1818         {
1819           /* example: http://host"  */
1820           /*                      ^ */
1821           start_insert = end + 1;
1822           need_explicit_slash = true;
1823         }
1824       else
1825         {
1826           /* example: "whatever/foo/bar" */
1827           /*                        ^    */
1828           start_insert = last_slash + 1;
1829         }
1830
1831       span = start_insert - base;
1832       merge = xmalloc (span + linklength + 1);
1833       if (span)
1834         memcpy (merge, base, span);
1835       if (need_explicit_slash)
1836         merge[span - 1] = '/';
1837       memcpy (merge + span, link, linklength);
1838       merge[span + linklength] = '\0';
1839     }
1840
1841   return merge;
1842 }
1843 \f
1844 #define APPEND(p, s) do {                       \
1845   int len = strlen (s);                         \
1846   memcpy (p, s, len);                           \
1847   p += len;                                     \
1848 } while (0)
1849
1850 /* Use this instead of password when the actual password is supposed
1851    to be hidden.  We intentionally use a generic string without giving
1852    away the number of characters in the password, like previous
1853    versions did.  */
1854 #define HIDDEN_PASSWORD "*password*"
1855
1856 /* Recreate the URL string from the data in URL.
1857
1858    If HIDE is true (as it is when we're calling this on a URL we plan
1859    to print, but not when calling it to canonicalize a URL for use
1860    within the program), password will be hidden.  Unsafe characters in
1861    the URL will be quoted.  */
1862
1863 char *
1864 url_string (const struct url *url, enum url_auth_mode auth_mode)
1865 {
1866   int size;
1867   char *result, *p;
1868   char *quoted_host, *quoted_user = NULL, *quoted_passwd = NULL;
1869
1870   int scheme_port = supported_schemes[url->scheme].default_port;
1871   const char *scheme_str = supported_schemes[url->scheme].leading_string;
1872   int fplen = full_path_length (url);
1873
1874   bool brackets_around_host;
1875
1876   assert (scheme_str != NULL);
1877
1878   /* Make sure the user name and password are quoted. */
1879   if (url->user)
1880     {
1881       if (auth_mode != URL_AUTH_HIDE)
1882         {
1883           quoted_user = url_escape_allow_passthrough (url->user);
1884           if (url->passwd)
1885             {
1886               if (auth_mode == URL_AUTH_HIDE_PASSWD)
1887                 quoted_passwd = HIDDEN_PASSWORD;
1888               else
1889                 quoted_passwd = url_escape_allow_passthrough (url->passwd);
1890             }
1891         }
1892     }
1893
1894   /* In the unlikely event that the host name contains non-printable
1895      characters, quote it for displaying to the user.  */
1896   quoted_host = url_escape_allow_passthrough (url->host);
1897
1898   /* Undo the quoting of colons that URL escaping performs.  IPv6
1899      addresses may legally contain colons, and in that case must be
1900      placed in square brackets.  */
1901   if (quoted_host != url->host)
1902     unescape_single_char (quoted_host, ':');
1903   brackets_around_host = strchr (quoted_host, ':') != NULL;
1904
1905   size = (strlen (scheme_str)
1906           + strlen (quoted_host)
1907           + (brackets_around_host ? 2 : 0)
1908           + fplen
1909           + 1);
1910   if (url->port != scheme_port)
1911     size += 1 + numdigit (url->port);
1912   if (quoted_user)
1913     {
1914       size += 1 + strlen (quoted_user);
1915       if (quoted_passwd)
1916         size += 1 + strlen (quoted_passwd);
1917     }
1918
1919   p = result = xmalloc (size);
1920
1921   APPEND (p, scheme_str);
1922   if (quoted_user)
1923     {
1924       APPEND (p, quoted_user);
1925       if (quoted_passwd)
1926         {
1927           *p++ = ':';
1928           APPEND (p, quoted_passwd);
1929         }
1930       *p++ = '@';
1931     }
1932
1933   if (brackets_around_host)
1934     *p++ = '[';
1935   APPEND (p, quoted_host);
1936   if (brackets_around_host)
1937     *p++ = ']';
1938   if (url->port != scheme_port)
1939     {
1940       *p++ = ':';
1941       p = number_to_string (p, url->port);
1942     }
1943
1944   full_path_write (url, p);
1945   p += fplen;
1946   *p++ = '\0';
1947
1948   assert (p - result == size);
1949
1950   if (quoted_user && quoted_user != url->user)
1951     xfree (quoted_user);
1952   if (quoted_passwd && auth_mode == URL_AUTH_SHOW
1953       && quoted_passwd != url->passwd)
1954     xfree (quoted_passwd);
1955   if (quoted_host != url->host)
1956     xfree (quoted_host);
1957
1958   return result;
1959 }
1960 \f
1961 /* Return true if scheme a is similar to scheme b.
1962  
1963    Schemes are similar if they are equal.  If SSL is supported, schemes
1964    are also similar if one is http (SCHEME_HTTP) and the other is https
1965    (SCHEME_HTTPS).  */
1966 bool
1967 schemes_are_similar_p (enum url_scheme a, enum url_scheme b)
1968 {
1969   if (a == b)
1970     return true;
1971 #ifdef HAVE_SSL
1972   if ((a == SCHEME_HTTP && b == SCHEME_HTTPS)
1973       || (a == SCHEME_HTTPS && b == SCHEME_HTTP))
1974     return true;
1975 #endif
1976   return false;
1977 }
1978 \f
1979 static int
1980 getchar_from_escaped_string (const char *str, char *c)
1981 {  
1982   const char *p = str;
1983
1984   assert (str && *str);
1985   assert (c);
1986   
1987   if (p[0] == '%')
1988     {
1989       if (!c_isxdigit(p[1]) || !c_isxdigit(p[2]))
1990         {
1991           *c = '%';
1992           return 1;
1993         }
1994       else
1995         {
1996           if (p[2] == 0)
1997             return 0; /* error: invalid string */
1998
1999           *c = X2DIGITS_TO_NUM (p[1], p[2]);
2000           if (URL_RESERVED_CHAR(*c))
2001             {
2002               *c = '%';
2003               return 1;
2004             }
2005           else
2006             return 3;
2007         }
2008     }
2009   else
2010     {
2011       *c = p[0];
2012     }
2013
2014   return 1;
2015 }
2016
2017 bool
2018 are_urls_equal (const char *u1, const char *u2)
2019 {
2020   const char *p, *q;
2021   int pp, qq;
2022   char ch1, ch2;
2023   assert(u1 && u2);
2024
2025   p = u1;
2026   q = u2;
2027
2028   while (*p && *q
2029          && (pp = getchar_from_escaped_string (p, &ch1))
2030          && (qq = getchar_from_escaped_string (q, &ch2))
2031          && (c_tolower(ch1) == c_tolower(ch2)))
2032     {
2033       p += pp;
2034       q += qq;
2035     }
2036   
2037   return (*p == 0 && *q == 0 ? true : false);
2038 }
2039 \f
2040 #ifdef TESTING
2041 /* Debugging and testing support for path_simplify. */
2042
2043 #if 0
2044 /* Debug: run path_simplify on PATH and return the result in a new
2045    string.  Useful for calling from the debugger.  */
2046 static char *
2047 ps (char *path)
2048 {
2049   char *copy = xstrdup (path);
2050   path_simplify (copy);
2051   return copy;
2052 }
2053 #endif
2054
2055 static const char *
2056 run_test (char *test, char *expected_result, enum url_scheme scheme,
2057           bool expected_change)
2058 {
2059   char *test_copy = xstrdup (test);
2060   bool modified = path_simplify (scheme, test_copy);
2061
2062   if (0 != strcmp (test_copy, expected_result))
2063     {
2064       printf ("Failed path_simplify(\"%s\"): expected \"%s\", got \"%s\".\n",
2065               test, expected_result, test_copy);
2066       mu_assert ("", 0);
2067     }
2068   if (modified != expected_change)
2069     {
2070       if (expected_change)
2071         printf ("Expected modification with path_simplify(\"%s\").\n",
2072                 test);
2073       else
2074         printf ("Expected no modification with path_simplify(\"%s\").\n",
2075                 test);
2076     }
2077   xfree (test_copy);
2078   mu_assert ("", modified == expected_change);
2079   return NULL;
2080 }
2081
2082 const char *
2083 test_path_simplify (void)
2084 {
2085   static struct {
2086     char *test, *result;
2087     enum url_scheme scheme;
2088     bool should_modify;
2089   } tests[] = {
2090     { "",                       "",             SCHEME_HTTP, false },
2091     { ".",                      "",             SCHEME_HTTP, true },
2092     { "./",                     "",             SCHEME_HTTP, true },
2093     { "..",                     "",             SCHEME_HTTP, true },
2094     { "../",                    "",             SCHEME_HTTP, true },
2095     { "..",                     "..",           SCHEME_FTP,  false },
2096     { "../",                    "../",          SCHEME_FTP,  false },
2097     { "foo",                    "foo",          SCHEME_HTTP, false },
2098     { "foo/bar",                "foo/bar",      SCHEME_HTTP, false },
2099     { "foo///bar",              "foo///bar",    SCHEME_HTTP, false },
2100     { "foo/.",                  "foo/",         SCHEME_HTTP, true },
2101     { "foo/./",                 "foo/",         SCHEME_HTTP, true },
2102     { "foo./",                  "foo./",        SCHEME_HTTP, false },
2103     { "foo/../bar",             "bar",          SCHEME_HTTP, true },
2104     { "foo/../bar/",            "bar/",         SCHEME_HTTP, true },
2105     { "foo/bar/..",             "foo/",         SCHEME_HTTP, true },
2106     { "foo/bar/../x",           "foo/x",        SCHEME_HTTP, true },
2107     { "foo/bar/../x/",          "foo/x/",       SCHEME_HTTP, true },
2108     { "foo/..",                 "",             SCHEME_HTTP, true },
2109     { "foo/../..",              "",             SCHEME_HTTP, true },
2110     { "foo/../../..",           "",             SCHEME_HTTP, true },
2111     { "foo/../../bar/../../baz", "baz",         SCHEME_HTTP, true },
2112     { "foo/../..",              "..",           SCHEME_FTP,  true },
2113     { "foo/../../..",           "../..",        SCHEME_FTP,  true },
2114     { "foo/../../bar/../../baz", "../../baz",   SCHEME_FTP,  true },
2115     { "a/b/../../c",            "c",            SCHEME_HTTP, true },
2116     { "./a/../b",               "b",            SCHEME_HTTP, true }
2117   };
2118   int i;
2119
2120   for (i = 0; i < countof (tests); i++)
2121     {
2122       const char *message;
2123       char *test = tests[i].test;
2124       char *expected_result = tests[i].result;
2125       enum url_scheme scheme = tests[i].scheme;
2126       bool  expected_change = tests[i].should_modify;
2127       message = run_test (test, expected_result, scheme, expected_change);
2128       if (message) return message;
2129     }
2130   return NULL;
2131 }
2132
2133 const char *
2134 test_append_uri_pathel()
2135 {
2136   int i;
2137   struct {
2138     char *original_url;
2139     char *input;
2140     bool escaped;
2141     char *expected_result;
2142   } test_array[] = {
2143     { "http://www.yoyodyne.com/path/", "somepage.html", false, "http://www.yoyodyne.com/path/somepage.html" },
2144   };
2145   
2146   for (i = 0; i < sizeof(test_array)/sizeof(test_array[0]); ++i) 
2147     {
2148       struct growable dest;
2149       const char *p = test_array[i].input;
2150       
2151       memset (&dest, 0, sizeof (dest));
2152       
2153       append_string (test_array[i].original_url, &dest);
2154       append_uri_pathel (p, p + strlen(p), test_array[i].escaped, &dest);
2155       append_char ('\0', &dest);
2156
2157       mu_assert ("test_append_uri_pathel: wrong result", 
2158                  strcmp (dest.base, test_array[i].expected_result) == 0);
2159     }
2160
2161   return NULL;
2162 }
2163
2164 const char*
2165 test_are_urls_equal()
2166 {
2167   int i;
2168   struct {
2169     char *url1;
2170     char *url2;
2171     bool expected_result;
2172   } test_array[] = {
2173     { "http://www.adomain.com/apath/", "http://www.adomain.com/apath/",       true },
2174     { "http://www.adomain.com/apath/", "http://www.adomain.com/anotherpath/", false },
2175     { "http://www.adomain.com/apath/", "http://www.anotherdomain.com/path/",  false },
2176     { "http://www.adomain.com/~path/", "http://www.adomain.com/%7epath/",     true },
2177     { "http://www.adomain.com/longer-path/", "http://www.adomain.com/path/",  false },
2178     { "http://www.adomain.com/path%2f", "http://www.adomain.com/path/",       false },
2179   };
2180   
2181   for (i = 0; i < sizeof(test_array)/sizeof(test_array[0]); ++i) 
2182     {
2183       mu_assert ("test_are_urls_equal: wrong result", 
2184                  are_urls_equal (test_array[i].url1, test_array[i].url2) == test_array[i].expected_result);
2185     }
2186
2187   return NULL;
2188 }
2189
2190 #endif /* TESTING */
2191
2192 /*
2193  * vim: et ts=2 sw=2
2194  */
2195