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