]> sjero.net Git - wget/blob - src/cookies.c
[svn] Fix escape chars in server response vulnerability. Server response is
[wget] / src / cookies.c
1 /* Support for cookies.
2    Copyright (C) 2001, 2002 Free Software Foundation, Inc.
3
4 This file is part of GNU Wget.
5
6 GNU Wget is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or (at
9 your option) any later version.
10
11 GNU Wget is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Wget; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 In addition, as a special exception, the Free Software Foundation
21 gives permission to link the code of its release of Wget with the
22 OpenSSL project's "OpenSSL" library (or with modified versions of it
23 that use the same license as the "OpenSSL" library), and distribute
24 the linked executables.  You must obey the GNU General Public License
25 in all respects for all of the code used other than "OpenSSL".  If you
26 modify this file, you may extend this exception to your version of the
27 file, but you are not obligated to do so.  If you do not wish to do
28 so, delete this exception statement from your version.  */
29
30 /* Written by Hrvoje Niksic.  Parts are loosely inspired by cookie
31    code submitted by Tomasz Wegrzanowski.
32
33    Ideas for future work:
34
35    * Implement limits on cookie-related sizes, such as max. cookie
36      size, max. number of cookies, etc.
37
38    * Add more "cookie jar" methods, such as methods to iterate over
39      stored cookies, to clear temporary cookies, to perform
40      intelligent auto-saving, etc.
41
42    * Support `Set-Cookie2' and `Cookie2' headers?  Does anyone really
43      use them?  */
44
45 #include <config.h>
46
47 #include <stdio.h>
48 #ifdef HAVE_STRING_H
49 # include <string.h>
50 #else
51 # include <strings.h>
52 #endif
53 #include <stdlib.h>
54 #include <assert.h>
55 #include <errno.h>
56
57 #include "wget.h"
58 #include "utils.h"
59 #include "hash.h"
60 #include "cookies.h"
61
62 /* This should *really* be in a .h file!  */
63 time_t http_atotm PARAMS ((const char *));
64 \f
65 /* Declarations of `struct cookie' and the most basic functions. */
66
67 /* Cookie jar serves as cookie storage and a means of retrieving
68    cookies efficiently.  All cookies with the same domain are stored
69    in a linked list called "chain".  A cookie chain can be reached by
70    looking up the domain in the cookie jar's chains_by_domain table.
71
72    For example, to reach all the cookies under google.com, one must
73    execute hash_table_get(jar->chains_by_domain, "google.com").  Of
74    course, when sending a cookie to `www.google.com', one must search
75    for cookies that belong to either `www.google.com' or `google.com'
76    -- but the point is that the code doesn't need to go through *all*
77    the cookies.  */
78
79 struct cookie_jar {
80   /* Cookie chains indexed by domain.  */
81   struct hash_table *chains;
82
83   int cookie_count;             /* number of cookies in the jar. */
84 };
85
86 /* Value set by entry point functions, so that the low-level
87    routines don't need to call time() all the time.  */
88 time_t cookies_now;
89
90 struct cookie_jar *
91 cookie_jar_new (void)
92 {
93   struct cookie_jar *jar = xnew (struct cookie_jar);
94   jar->chains = make_nocase_string_hash_table (0);
95   jar->cookie_count = 0;
96   return jar;
97 }
98
99 struct cookie {
100   char *domain;                 /* domain of the cookie */
101   int port;                     /* port number */
102   char *path;                   /* path prefix of the cookie */
103
104   int secure;                   /* whether cookie should be
105                                    transmitted over non-https
106                                    connections. */
107   int domain_exact;             /* whether DOMAIN must match as a
108                                    whole. */
109
110   int permanent;                /* whether the cookie should outlive
111                                    the session. */
112   time_t expiry_time;           /* time when the cookie expires, 0
113                                    means undetermined. */
114
115   int discard_requested;        /* whether cookie was created to
116                                    request discarding another
117                                    cookie. */
118
119   char *attr;                   /* cookie attribute name */
120   char *value;                  /* cookie attribute value */
121
122   struct cookie *next;          /* used for chaining of cookies in the
123                                    same domain. */
124 };
125
126 #define PORT_ANY (-1)
127
128 /* Allocate and return a new, empty cookie structure. */
129
130 static struct cookie *
131 cookie_new (void)
132 {
133   struct cookie *cookie = xnew0 (struct cookie);
134
135   /* Both cookie->permanent and cookie->expiry_time are now 0.  This
136      means that the cookie doesn't expire, but is only valid for this
137      session (i.e. not written out to disk).  */
138
139   cookie->port = PORT_ANY;
140   return cookie;
141 }
142
143 /* Non-zero if the cookie has expired.  Assumes cookies_now has been
144    set by one of the entry point functions.  */
145
146 static int
147 cookie_expired_p (const struct cookie *c)
148 {
149   return c->expiry_time != 0 && c->expiry_time < cookies_now;
150 }
151
152 /* Deallocate COOKIE and its components. */
153
154 static void
155 delete_cookie (struct cookie *cookie)
156 {
157   xfree_null (cookie->domain);
158   xfree_null (cookie->path);
159   xfree_null (cookie->attr);
160   xfree_null (cookie->value);
161   xfree (cookie);
162 }
163 \f
164 /* Functions for storing cookies.
165
166    All cookies can be reached beginning with jar->chains.  The key in
167    that table is the domain name, and the value is a linked list of
168    all cookies from that domain.  Every new cookie is placed on the
169    head of the list.  */
170
171 /* Find and return a cookie in JAR whose domain, path, and attribute
172    name correspond to COOKIE.  If found, PREVPTR will point to the
173    location of the cookie previous in chain, or NULL if the found
174    cookie is the head of a chain.
175
176    If no matching cookie is found, return NULL. */
177
178 static struct cookie *
179 find_matching_cookie (struct cookie_jar *jar, struct cookie *cookie,
180                       struct cookie **prevptr)
181 {
182   struct cookie *chain, *prev;
183
184   chain = hash_table_get (jar->chains, cookie->domain);
185   if (!chain)
186     goto nomatch;
187
188   prev = NULL;
189   for (; chain; prev = chain, chain = chain->next)
190     if (0 == strcmp (cookie->path, chain->path)
191         && 0 == strcmp (cookie->attr, chain->attr)
192         && cookie->port == chain->port)
193       {
194         *prevptr = prev;
195         return chain;
196       }
197
198  nomatch:
199   *prevptr = NULL;
200   return NULL;
201 }
202
203 /* Store COOKIE to the jar.
204
205    This is done by placing COOKIE at the head of its chain.  However,
206    if COOKIE matches a cookie already in memory, as determined by
207    find_matching_cookie, the old cookie is unlinked and destroyed.
208
209    The key of each chain's hash table entry is allocated only the
210    first time; next hash_table_put's reuse the same key.  */
211
212 static void
213 store_cookie (struct cookie_jar *jar, struct cookie *cookie)
214 {
215   struct cookie *chain_head;
216   char *chain_key;
217
218   if (hash_table_get_pair (jar->chains, cookie->domain,
219                            &chain_key, &chain_head))
220     {
221       /* A chain of cookies in this domain already exists.  Check for
222          duplicates -- if an extant cookie exactly matches our domain,
223          port, path, and name, replace it.  */
224       struct cookie *prev;
225       struct cookie *victim = find_matching_cookie (jar, cookie, &prev);
226
227       if (victim)
228         {
229           /* Remove VICTIM from the chain.  COOKIE will be placed at
230              the head. */
231           if (prev)
232             {
233               prev->next = victim->next;
234               cookie->next = chain_head;
235             }
236           else
237             {
238               /* prev is NULL; apparently VICTIM was at the head of
239                  the chain.  This place will be taken by COOKIE, so
240                  all we need to do is:  */
241               cookie->next = victim->next;
242             }
243           delete_cookie (victim);
244           --jar->cookie_count;
245           DEBUGP (("Deleted old cookie (to be replaced.)\n"));
246         }
247       else
248         cookie->next = chain_head;
249     }
250   else
251     {
252       /* We are now creating the chain.  Use a copy of cookie->domain
253          as the key for the life-time of the chain.  Using
254          cookie->domain would be unsafe because the life-time of the
255          chain may exceed the life-time of the cookie.  (Cookies may
256          be deleted from the chain by this very function.)  */
257       cookie->next = NULL;
258       chain_key = xstrdup (cookie->domain);
259     }
260
261   hash_table_put (jar->chains, chain_key, cookie);
262   ++jar->cookie_count;
263
264 #ifdef ENABLE_DEBUG
265   if (opt.debug)
266     {
267       time_t exptime = (time_t) cookie->expiry_time;
268       DEBUGP (("\nStored cookie %s %d%s %s <%s> <%s> [expiry %s] %s %s\n",
269                cookie->domain, cookie->port,
270                cookie->port == PORT_ANY ? " (ANY)" : "",
271                cookie->path,
272                cookie->permanent ? "permanent" : "session",
273                cookie->secure ? "secure" : "insecure",
274                cookie->expiry_time ? datetime_str (&exptime) : "none",
275                cookie->attr, cookie->value));
276     }
277 #endif
278 }
279
280 /* Discard a cookie matching COOKIE's domain, port, path, and
281    attribute name.  This gets called when we encounter a cookie whose
282    expiry date is in the past, or whose max-age is set to 0.  The
283    former corresponds to netscape cookie spec, while the latter is
284    specified by rfc2109.  */
285
286 static void
287 discard_matching_cookie (struct cookie_jar *jar, struct cookie *cookie)
288 {
289   struct cookie *prev, *victim;
290
291   if (!hash_table_count (jar->chains))
292     /* No elements == nothing to discard. */
293     return;
294
295   victim = find_matching_cookie (jar, cookie, &prev);
296   if (victim)
297     {
298       if (prev)
299         /* Simply unchain the victim. */
300         prev->next = victim->next;
301       else
302         {
303           /* VICTIM was head of its chain.  We need to place a new
304              cookie at the head.  */
305           char *chain_key = NULL;
306           int res;
307
308           res = hash_table_get_pair (jar->chains, victim->domain,
309                                      &chain_key, NULL);
310           assert (res != 0);
311           if (!victim->next)
312             {
313               /* VICTIM was the only cookie in the chain.  Destroy the
314                  chain and deallocate the chain key.  */
315               hash_table_remove (jar->chains, victim->domain);
316               xfree (chain_key);
317             }
318           else
319             hash_table_put (jar->chains, chain_key, victim->next);
320         }
321       delete_cookie (victim);
322       DEBUGP (("Discarded old cookie.\n"));
323     }
324 }
325 \f
326 /* Functions for parsing the `Set-Cookie' header, and creating new
327    cookies from the wire.  */
328
329 #define NAME_IS(string_literal)                                 \
330   BOUNDED_EQUAL_NO_CASE (name_b, name_e, string_literal)
331
332 #define VALUE_EXISTS (value_b && value_e)
333
334 #define VALUE_NON_EMPTY (VALUE_EXISTS && (value_b != value_e))
335
336 /* Update the appropriate cookie field.  [name_b, name_e) are expected
337    to delimit the attribute name, while [value_b, value_e) (optional)
338    should delimit the attribute value.
339
340    When called the first time, it will set the cookie's attribute name
341    and value.  After that, it will check the attribute name for
342    special fields such as `domain', `path', etc.  Where appropriate,
343    it will parse the values of the fields it recognizes and fill the
344    corresponding fields in COOKIE.
345
346    Returns 1 on success.  Returns zero in case a syntax error is
347    found; such a cookie should be discarded.  */
348
349 static int
350 update_cookie_field (struct cookie *cookie,
351                      const char *name_b, const char *name_e,
352                      const char *value_b, const char *value_e)
353 {
354   assert (name_b != NULL && name_e != NULL);
355
356   if (!cookie->attr)
357     {
358       if (!VALUE_EXISTS)
359         return 0;
360       cookie->attr = strdupdelim (name_b, name_e);
361       cookie->value = strdupdelim (value_b, value_e);
362       return 1;
363     }
364
365   if (NAME_IS ("domain"))
366     {
367       if (!VALUE_NON_EMPTY)
368         return 0;
369       xfree_null (cookie->domain);
370       /* Strictly speaking, we should set cookie->domain_exact if the
371          domain doesn't begin with a dot.  But many sites set the
372          domain to "foo.com" and expect "subhost.foo.com" to get the
373          cookie, and it apparently works.  */
374       if (*value_b == '.')
375         ++value_b;
376       cookie->domain = strdupdelim (value_b, value_e);
377       return 1;
378     }
379   else if (NAME_IS ("path"))
380     {
381       if (!VALUE_NON_EMPTY)
382         return 0;
383       xfree_null (cookie->path);
384       cookie->path = strdupdelim (value_b, value_e);
385       return 1;
386     }
387   else if (NAME_IS ("expires"))
388     {
389       char *value_copy;
390       time_t expires;
391
392       if (!VALUE_NON_EMPTY)
393         return 0;
394       BOUNDED_TO_ALLOCA (value_b, value_e, value_copy);
395
396       expires = http_atotm (value_copy);
397       if (expires != -1)
398         {
399           cookie->permanent = 1;
400           cookie->expiry_time = (time_t)expires;
401         }
402       else
403         /* Error in expiration spec.  Assume default (cookie doesn't
404            expire, but valid only for this session.)  */
405         ;
406
407       /* According to netscape's specification, expiry time in the
408          past means that discarding of a matching cookie is
409          requested.  */
410       if (cookie->expiry_time < cookies_now)
411         cookie->discard_requested = 1;
412
413       return 1;
414     }
415   else if (NAME_IS ("max-age"))
416     {
417       double maxage = -1;
418       char *value_copy;
419
420       if (!VALUE_NON_EMPTY)
421         return 0;
422       BOUNDED_TO_ALLOCA (value_b, value_e, value_copy);
423
424       sscanf (value_copy, "%lf", &maxage);
425       if (maxage == -1)
426         /* something went wrong. */
427         return 0;
428       cookie->permanent = 1;
429       cookie->expiry_time = cookies_now + maxage;
430
431       /* According to rfc2109, a cookie with max-age of 0 means that
432          discarding of a matching cookie is requested.  */
433       if (maxage == 0)
434         cookie->discard_requested = 1;
435
436       return 1;
437     }
438   else if (NAME_IS ("secure"))
439     {
440       /* ignore value completely */
441       cookie->secure = 1;
442       return 1;
443     }
444   else
445     /* Unrecognized attribute; ignore it. */
446     return 1;
447 }
448
449 #undef NAME_IS
450
451 /* Returns non-zero for characters that are legal in the name of an
452    attribute.  This used to allow only alphanumerics, '-', and '_',
453    but we need to be more lenient because a number of sites wants to
454    use weirder attribute names.  rfc2965 "informally specifies"
455    attribute name (token) as "a sequence of non-special, non-white
456    space characters".  So we allow everything except the stuff we know
457    could harm us.  */
458
459 #define ATTR_NAME_CHAR(c) ((c) > 32 && (c) < 127        \
460                            && (c) != '"' && (c) != '='  \
461                            && (c) != ';' && (c) != ',')
462
463 /* Parse the contents of the `Set-Cookie' header.  The header looks
464    like this:
465
466    name1=value1; name2=value2; ...
467
468    Trailing semicolon is optional; spaces are allowed between all
469    tokens.  Additionally, values may be quoted.
470
471    A new cookie is returned upon success, NULL otherwise.  The
472    specified CALLBACK function (normally `update_cookie_field' is used
473    to update the fields of the newly created cookie structure.  */
474
475 static struct cookie *
476 parse_set_cookies (const char *sc,
477                    int (*callback) (struct cookie *,
478                                     const char *, const char *,
479                                     const char *, const char *),
480                    int silent)
481 {
482   struct cookie *cookie = cookie_new ();
483
484   /* #### Hand-written DFAs are no fun to debug.  We'de be better off
485      to rewrite this as an inline parser.  */
486
487   enum { S_START, S_NAME, S_NAME_POST,
488          S_VALUE_PRE, S_VALUE, S_QUOTED_VALUE, S_VALUE_TRAILSPACE,
489          S_ATTR_ACTION, S_DONE, S_ERROR
490   } state = S_START;
491
492   const char *p = sc;
493   char c;
494
495   const char *name_b  = NULL, *name_e  = NULL;
496   const char *value_b = NULL, *value_e = NULL;
497
498   c = *p;
499
500   while (state != S_DONE && state != S_ERROR)
501     {
502       switch (state)
503         {
504         case S_START:
505           if (!c)
506             state = S_DONE;
507           else if (ISSPACE (c))
508             /* Strip all whitespace preceding the name. */
509             c = *++p;
510           else if (ATTR_NAME_CHAR (c))
511             {
512               name_b = p;
513               state = S_NAME;
514             }
515           else
516             /* empty attr name not allowed */
517             state = S_ERROR;
518           break;
519         case S_NAME:
520           if (!c || c == ';' || c == '=' || ISSPACE (c))
521             {
522               name_e = p;
523               state = S_NAME_POST;
524             }
525           else if (ATTR_NAME_CHAR (c))
526             c = *++p;
527           else
528             state = S_ERROR;
529           break;
530         case S_NAME_POST:
531           if (!c || c == ';')
532             {
533               value_b = value_e = NULL;
534               if (c == ';')
535                 c = *++p;
536               state = S_ATTR_ACTION;
537             }
538           else if (c == '=')
539             {
540               c = *++p;
541               state = S_VALUE_PRE;
542             }
543           else if (ISSPACE (c))
544             /* Ignore space and keep the state. */
545             c = *++p;
546           else
547             state = S_ERROR;
548           break;
549         case S_VALUE_PRE:
550           if (!c || c == ';')
551             {
552               value_b = value_e = p;
553               if (c == ';')
554                 c = *++p;
555               state = S_ATTR_ACTION;
556             }
557           else if (c == '"')
558             {
559               c = *++p;
560               value_b = p;
561               state = S_QUOTED_VALUE;
562             }
563           else if (ISSPACE (c))
564             c = *++p;
565           else
566             {
567               value_b = p;
568               value_e = NULL;
569               state = S_VALUE;
570             }
571           break;
572         case S_VALUE:
573           if (!c || c == ';' || ISSPACE (c))
574             {
575               value_e = p;
576               state = S_VALUE_TRAILSPACE;
577             }
578           else
579             {
580               value_e = NULL;   /* no trailing space */
581               c = *++p;
582             }
583           break;
584         case S_QUOTED_VALUE:
585           if (c == '"')
586             {
587               value_e = p;
588               c = *++p;
589               state = S_VALUE_TRAILSPACE;
590             }
591           else if (!c)
592             state = S_ERROR;
593           else
594             c = *++p;
595           break;
596         case S_VALUE_TRAILSPACE:
597           if (c == ';')
598             {
599               c = *++p;
600               state = S_ATTR_ACTION;
601             }
602           else if (!c)
603             state = S_ATTR_ACTION;
604           else if (ISSPACE (c))
605             c = *++p;
606           else
607             state = S_VALUE;
608           break;
609         case S_ATTR_ACTION:
610           {
611             int legal = callback (cookie, name_b, name_e, value_b, value_e);
612             if (!legal)
613               {
614                 if (!silent)
615                   {
616                     char *name;
617                     BOUNDED_TO_ALLOCA (name_b, name_e, name);
618                     logprintf (LOG_NOTQUIET,
619                                _("Error in Set-Cookie, field `%s'"),
620                                escnonprint (name));
621                   }
622                 state = S_ERROR;
623                 break;
624               }
625             state = S_START;
626           }
627           break;
628         case S_DONE:
629         case S_ERROR:
630           /* handled by loop condition */
631           break;
632         }
633     }
634   if (state == S_DONE)
635     return cookie;
636
637   delete_cookie (cookie);
638   if (state != S_ERROR)
639     abort ();
640
641   if (!silent)
642     logprintf (LOG_NOTQUIET,
643                _("Syntax error in Set-Cookie: %s at position %d.\n"),
644                escnonprint (sc), p - sc);
645   return NULL;
646 }
647 \f
648 /* Sanity checks.  These are important, otherwise it is possible for
649    mailcious attackers to destroy important cookie information and/or
650    violate your privacy.  */
651
652
653 #define REQUIRE_DIGITS(p) do {                  \
654   if (!ISDIGIT (*p))                            \
655     return 0;                                   \
656   for (++p; ISDIGIT (*p); p++)                  \
657     ;                                           \
658 } while (0)
659
660 #define REQUIRE_DOT(p) do {                     \
661   if (*p++ != '.')                              \
662     return 0;                                   \
663 } while (0)
664
665 /* Check whether ADDR matches <digits>.<digits>.<digits>.<digits>.
666
667    We don't want to call network functions like inet_addr() because
668    all we need is a check, preferrably one that is small, fast, and
669    well-defined.  */
670
671 static int
672 numeric_address_p (const char *addr)
673 {
674   const char *p = addr;
675
676   REQUIRE_DIGITS (p);           /* A */
677   REQUIRE_DOT (p);              /* . */
678   REQUIRE_DIGITS (p);           /* B */
679   REQUIRE_DOT (p);              /* . */
680   REQUIRE_DIGITS (p);           /* C */
681   REQUIRE_DOT (p);              /* . */
682   REQUIRE_DIGITS (p);           /* D */
683
684   if (*p != '\0')
685     return 0;
686   return 1;
687 }
688
689 /* Check whether COOKIE_DOMAIN is an appropriate domain for HOST.
690    Originally I tried to make the check compliant with rfc2109, but
691    the sites deviated too often, so I had to fall back to "tail
692    matching", as defined by the original Netscape's cookie spec.  */
693
694 static int
695 check_domain_match (const char *cookie_domain, const char *host)
696 {
697   DEBUGP (("cdm: 1"));
698
699   /* Numeric address requires exact match.  It also requires HOST to
700      be an IP address.  */
701   if (numeric_address_p (cookie_domain))
702     return 0 == strcmp (cookie_domain, host);
703
704   DEBUGP ((" 2"));
705
706   /* For the sake of efficiency, check for exact match first. */
707   if (0 == strcasecmp (cookie_domain, host))
708     return 1;
709
710   DEBUGP ((" 3"));
711
712   /* HOST must match the tail of cookie_domain. */
713   if (!match_tail (host, cookie_domain, 1))
714     return 0;
715
716   /* We know that COOKIE_DOMAIN is a subset of HOST; however, we must
717      make sure that somebody is not trying to set the cookie for a
718      subdomain shared by many entities.  For example, "company.co.uk"
719      must not be allowed to set a cookie for ".co.uk".  On the other
720      hand, "sso.redhat.de" should be able to set a cookie for
721      ".redhat.de".
722
723      The only marginally sane way to handle this I can think of is to
724      reject on the basis of the length of the second-level domain name
725      (but when the top-level domain is unknown), with the assumption
726      that those of three or less characters could be reserved.  For
727      example:
728
729           .co.org -> works because the TLD is known
730            .co.uk -> doesn't work because "co" is only two chars long
731           .com.au -> doesn't work because "com" is only 3 chars long
732           .cnn.uk -> doesn't work because "cnn" is also only 3 chars long (ugh)
733           .cnn.de -> doesn't work for the same reason (ugh!!)
734          .abcd.de -> works because "abcd" is 4 chars long
735       .img.cnn.de -> works because it's not trying to set the 2nd level domain
736        .cnn.co.uk -> works for the same reason
737
738     That should prevent misuse, while allowing reasonable usage.  If
739     someone knows of a better way to handle this, please let me
740     know.  */
741   {
742     const char *p = cookie_domain;
743     int dccount = 1;            /* number of domain components */
744     int ldcl  = 0;              /* last domain component length */
745     int nldcl = 0;              /* next to last domain component length */
746     int out;
747     if (*p == '.')
748       /* Ignore leading period in this calculation. */
749       ++p;
750     DEBUGP ((" 4"));
751     for (out = 0; !out; p++)
752       switch (*p)
753         {
754         case '\0':
755           out = 1;
756           break;
757         case '.':
758           if (ldcl == 0)
759             /* Empty domain component found -- the domain is invalid. */
760             return 0;
761           if (*(p + 1) == '\0')
762             {
763               /* Tolerate trailing '.' by not treating the domain as
764                  one ending with an empty domain component.  */
765               out = 1;
766               break;
767             }
768           nldcl = ldcl;
769           ldcl  = 0;
770           ++dccount;
771           break;
772         default:
773           ++ldcl;
774         }
775
776     DEBUGP ((" 5"));
777
778     if (dccount < 2)
779       return 0;
780
781     DEBUGP ((" 6"));
782
783     if (dccount == 2)
784       {
785         int i;
786         int known_toplevel = 0;
787         static const char *known_toplevel_domains[] = {
788           ".com", ".edu", ".net", ".org", ".gov", ".mil", ".int"
789         };
790         for (i = 0; i < countof (known_toplevel_domains); i++)
791           if (match_tail (cookie_domain, known_toplevel_domains[i], 1))
792             {
793               known_toplevel = 1;
794               break;
795             }
796         if (!known_toplevel && nldcl <= 3)
797           return 0;
798       }
799   }
800
801   DEBUGP ((" 7"));
802
803   /* Don't allow the host "foobar.com" to set a cookie for domain
804      "bar.com".  */
805   if (*cookie_domain != '.')
806     {
807       int dlen = strlen (cookie_domain);
808       int hlen = strlen (host);
809       /* cookie host:    hostname.foobar.com */
810       /* desired domain:             bar.com */
811       /* '.' must be here in host-> ^        */
812       if (hlen > dlen && host[hlen - dlen - 1] != '.')
813         return 0;
814     }
815
816   DEBUGP ((" 8"));
817
818   return 1;
819 }
820
821 static int path_matches PARAMS ((const char *, const char *));
822
823 /* Check whether PATH begins with COOKIE_PATH. */
824
825 static int
826 check_path_match (const char *cookie_path, const char *path)
827 {
828   return path_matches (path, cookie_path);
829 }
830 \f
831 /* Process the HTTP `Set-Cookie' header.  This results in storing the
832    cookie or discarding a matching one, or ignoring it completely, all
833    depending on the contents.  */
834
835 void
836 cookie_handle_set_cookie (struct cookie_jar *jar,
837                           const char *host, int port,
838                           const char *path, const char *set_cookie)
839 {
840   struct cookie *cookie;
841   cookies_now = time (NULL);
842
843   cookie = parse_set_cookies (set_cookie, update_cookie_field, 0);
844   if (!cookie)
845     goto out;
846
847   /* Sanitize parts of cookie. */
848
849   if (!cookie->domain)
850     {
851     copy_domain:
852       /* If the domain was not provided, we use the one we're talking
853          to, and set exact match.  */
854       cookie->domain = xstrdup (host);
855       cookie->domain_exact = 1;
856       /* Set the port, but only if it's non-default. */
857       if (port != 80 && port != 443)
858         cookie->port = port;
859     }
860   else
861     {
862       if (!check_domain_match (cookie->domain, host))
863         {
864           logprintf (LOG_NOTQUIET,
865                      "Cookie coming from %s attempted to set domain to %s\n",
866                      escnonprint (host), escnonprint (cookie->domain));
867           xfree (cookie->domain);
868           goto copy_domain;
869         }
870     }
871
872   if (!cookie->path)
873     cookie->path = xstrdup (path);
874   else
875     {
876       if (!check_path_match (cookie->path, path))
877         {
878           DEBUGP (("Attempt to fake the path: %s, %s\n",
879                    cookie->path, path));
880           goto out;
881         }
882     }
883
884   if (cookie->discard_requested)
885     {
886       discard_matching_cookie (jar, cookie);
887       goto out;
888     }
889
890   store_cookie (jar, cookie);
891   return;
892
893  out:
894   if (cookie)
895     delete_cookie (cookie);
896 }
897 \f
898 /* Support for sending out cookies in HTTP requests, based on
899    previously stored cookies.  Entry point is
900    `build_cookies_request'.  */
901
902 /* Find the cookie chains whose domains match HOST and store them to
903    DEST.
904
905    A cookie chain is the head of a list of cookies that belong to a
906    host/domain.  Given HOST "img.search.xemacs.org", this function
907    will return the chains for "img.search.xemacs.org",
908    "search.xemacs.org", and "xemacs.org" -- those of them that exist
909    (if any), that is.
910
911    DEST should be large enough to accept (in the worst case) as many
912    elements as there are domain components of HOST.  */
913
914 static int
915 find_chains_of_host (struct cookie_jar *jar, const char *host,
916                      struct cookie *dest[])
917 {
918   int dest_count = 0;
919   int passes, passcnt;
920
921   /* Bail out quickly if there are no cookies in the jar.  */
922   if (!hash_table_count (jar->chains))
923     return 0;
924
925   if (numeric_address_p (host))
926     /* If host is an IP address, only check for the exact match. */
927     passes = 1;
928   else
929     /* Otherwise, check all the subdomains except the top-level (last)
930        one.  As a domain with N components has N-1 dots, the number of
931        passes equals the number of dots.  */
932     passes = count_char (host, '.');
933
934   passcnt = 0;
935
936   /* Find chains that match HOST, starting with exact match and
937      progressing to less specific domains.  For instance, given HOST
938      fly.srk.fer.hr, first look for fly.srk.fer.hr's chain, then
939      srk.fer.hr's, then fer.hr's.  */
940   while (1)
941     {
942       struct cookie *chain = hash_table_get (jar->chains, host);
943       if (chain)
944         dest[dest_count++] = chain;
945       if (++passcnt >= passes)
946         break;
947       host = strchr (host, '.') + 1;
948     }
949
950   return dest_count;
951 }
952
953 /* If FULL_PATH begins with PREFIX, return the length of PREFIX, zero
954    otherwise.  */
955
956 static int
957 path_matches (const char *full_path, const char *prefix)
958 {
959   int len;
960
961   if (*prefix != '/')
962     /* Wget's HTTP paths do not begin with '/' (the URL code treats it
963        as a mere separator, inspired by rfc1808), but the '/' is
964        assumed when matching against the cookie stuff.  */
965     return 0;
966
967   ++prefix;
968   len = strlen (prefix);
969
970   if (0 != strncmp (full_path, prefix, len))
971     /* FULL_PATH doesn't begin with PREFIX. */
972     return 0;
973
974   /* Length of PREFIX determines the quality of the match. */
975   return len + 1;
976 }
977
978 /* Return non-zero iff COOKIE matches the provided parameters of the
979    URL being downloaded: HOST, PORT, PATH, and SECFLAG.
980
981    If PATH_GOODNESS is non-NULL, store the "path goodness" value
982    there.  That value is a measure of how closely COOKIE matches PATH,
983    used for ordering cookies.  */
984
985 static int
986 cookie_matches_url (const struct cookie *cookie,
987                     const char *host, int port, const char *path,
988                     int secflag, int *path_goodness)
989 {
990   int pg;
991
992   if (cookie_expired_p (cookie))
993     /* Ignore stale cookies.  Don't bother unchaining the cookie at
994        this point -- Wget is a relatively short-lived application, and
995        stale cookies will not be saved by `save_cookies'.  On the
996        other hand, this function should be as efficient as
997        possible.  */
998     return 0;
999
1000   if (cookie->secure && !secflag)
1001     /* Don't transmit secure cookies over insecure connections.  */
1002     return 0;
1003   if (cookie->port != PORT_ANY && cookie->port != port)
1004     return 0;
1005
1006   /* If exact domain match is required, verify that cookie's domain is
1007      equal to HOST.  If not, assume success on the grounds of the
1008      cookie's chain having been found by find_chains_of_host.  */
1009   if (cookie->domain_exact
1010       && 0 != strcasecmp (host, cookie->domain))
1011     return 0;
1012
1013   pg = path_matches (path, cookie->path);
1014   if (!pg)
1015     return 0;
1016
1017   if (path_goodness)
1018     /* If the caller requested path_goodness, we return it.  This is
1019        an optimization, so that the caller doesn't need to call
1020        path_matches() again.  */
1021     *path_goodness = pg;
1022   return 1;
1023 }
1024
1025 /* A structure that points to a cookie, along with the additional
1026    information about the cookie's "goodness".  This allows us to sort
1027    the cookies when returning them to the server, as required by the
1028    spec.  */
1029
1030 struct weighed_cookie {
1031   struct cookie *cookie;
1032   int domain_goodness;
1033   int path_goodness;
1034 };
1035
1036 /* Comparator used for uniquifying the list. */
1037
1038 static int
1039 equality_comparator (const void *p1, const void *p2)
1040 {
1041   struct weighed_cookie *wc1 = (struct weighed_cookie *)p1;
1042   struct weighed_cookie *wc2 = (struct weighed_cookie *)p2;
1043
1044   int namecmp  = strcmp (wc1->cookie->attr, wc2->cookie->attr);
1045   int valuecmp = strcmp (wc1->cookie->value, wc2->cookie->value);
1046
1047   /* We only really care whether both name and value are equal.  We
1048      return them in this order only for consistency...  */
1049   return namecmp ? namecmp : valuecmp;
1050 }
1051
1052 /* Eliminate duplicate cookies.  "Duplicate cookies" are any two
1053    cookies with the same attr name and value.  Whenever a duplicate
1054    pair is found, one of the cookies is removed.  */
1055
1056 static int
1057 eliminate_dups (struct weighed_cookie *outgoing, int count)
1058 {
1059   struct weighed_cookie *h;     /* hare */
1060   struct weighed_cookie *t;     /* tortoise */
1061   struct weighed_cookie *end = outgoing + count;
1062
1063   /* We deploy a simple uniquify algorithm: first sort the array
1064      according to our sort criteria, then copy it to itself, comparing
1065      each cookie to its neighbor and ignoring the duplicates.  */
1066
1067   qsort (outgoing, count, sizeof (struct weighed_cookie), equality_comparator);
1068
1069   /* "Hare" runs through all the entries in the array, followed by
1070      "tortoise".  If a duplicate is found, the hare skips it.
1071      Non-duplicate entries are copied to the tortoise ptr.  */
1072
1073   for (h = t = outgoing; h < end; h++)
1074     {
1075       if (h != end - 1)
1076         {
1077           struct cookie *c0 = h[0].cookie;
1078           struct cookie *c1 = h[1].cookie;
1079           if (!strcmp (c0->attr, c1->attr) && !strcmp (c0->value, c1->value))
1080             continue;           /* ignore the duplicate */
1081         }
1082
1083       /* If the hare has advanced past the tortoise (because of
1084          previous dups), make sure the values get copied.  Otherwise,
1085          no copying is necessary.  */
1086       if (h != t)
1087         *t++ = *h;
1088       else
1089         t++;
1090     }
1091   return t - outgoing;
1092 }
1093
1094 /* Comparator used for sorting by quality. */
1095
1096 static int
1097 goodness_comparator (const void *p1, const void *p2)
1098 {
1099   struct weighed_cookie *wc1 = (struct weighed_cookie *)p1;
1100   struct weighed_cookie *wc2 = (struct weighed_cookie *)p2;
1101
1102   /* Subtractions take `wc2' as the first argument becauase we want a
1103      sort in *decreasing* order of goodness.  */
1104   int dgdiff = wc2->domain_goodness - wc1->domain_goodness;
1105   int pgdiff = wc2->path_goodness - wc1->path_goodness;
1106
1107   /* Sort by domain goodness; if these are the same, sort by path
1108      goodness.  (The sorting order isn't really specified; maybe it
1109      should be the other way around.)  */
1110   return dgdiff ? dgdiff : pgdiff;
1111 }
1112
1113 /* Generate a `Cookie' header for a request that goes to HOST:PORT and
1114    requests PATH from the server.  The resulting string is allocated
1115    with `malloc', and the caller is responsible for freeing it.  If no
1116    cookies pertain to this request, i.e. no cookie header should be
1117    generated, NULL is returned.  */
1118
1119 char *
1120 cookie_header (struct cookie_jar *jar, const char *host,
1121                int port, const char *path, int secflag)
1122 {
1123   struct cookie **chains;
1124   int chain_count;
1125
1126   struct cookie *cookie;
1127   struct weighed_cookie *outgoing;
1128   int count, i, ocnt;
1129   char *result;
1130   int result_size, pos;
1131
1132   /* First, find the cookie chains whose domains match HOST. */
1133
1134   /* Allocate room for find_chains_of_host to write to.  The number of
1135      chains can at most equal the number of subdomains, hence
1136      1+<number of dots>.  */
1137   chains = alloca_array (struct cookie *, 1 + count_char (host, '.'));
1138   chain_count = find_chains_of_host (jar, host, chains);
1139
1140   /* No cookies for this host. */
1141   if (!chain_count)
1142     return NULL;
1143
1144   cookies_now = time (NULL);
1145
1146   /* Now extract from the chains those cookies that match our host
1147      (for domain_exact cookies), port (for cookies with port other
1148      than PORT_ANY), etc.  See matching_cookie for details.  */
1149
1150   /* Count the number of matching cookies. */
1151   count = 0;
1152   for (i = 0; i < chain_count; i++)
1153     for (cookie = chains[i]; cookie; cookie = cookie->next)
1154       if (cookie_matches_url (cookie, host, port, path, secflag, NULL))
1155         ++count;
1156   if (!count)
1157     return NULL;                /* no cookies matched */
1158
1159   /* Allocate the array. */
1160   outgoing = alloca_array (struct weighed_cookie, count);
1161
1162   /* Fill the array with all the matching cookies from the chains that
1163      match HOST. */
1164   ocnt = 0;
1165   for (i = 0; i < chain_count; i++)
1166     for (cookie = chains[i]; cookie; cookie = cookie->next)
1167       {
1168         int pg;
1169         if (!cookie_matches_url (cookie, host, port, path, secflag, &pg))
1170           continue;
1171         outgoing[ocnt].cookie = cookie;
1172         outgoing[ocnt].domain_goodness = strlen (cookie->domain);
1173         outgoing[ocnt].path_goodness   = pg;
1174         ++ocnt;
1175       }
1176   assert (ocnt == count);
1177
1178   /* Eliminate duplicate cookies; that is, those whose name and value
1179      are the same.  */
1180   count = eliminate_dups (outgoing, count);
1181
1182   /* Sort the array so that best-matching domains come first, and
1183      that, within one domain, best-matching paths come first. */
1184   qsort (outgoing, count, sizeof (struct weighed_cookie), goodness_comparator);
1185
1186   /* Count the space the name=value pairs will take. */
1187   result_size = 0;
1188   for (i = 0; i < count; i++)
1189     {
1190       struct cookie *c = outgoing[i].cookie;
1191       /* name=value */
1192       result_size += strlen (c->attr) + 1 + strlen (c->value);
1193     }
1194
1195   /* Allocate output buffer:
1196      name=value pairs -- result_size
1197      "; " separators  -- (count - 1) * 2
1198      \0 terminator    -- 1 */
1199   result_size = result_size + (count - 1) * 2 + 1;
1200   result = xmalloc (result_size);
1201   pos = 0;
1202   for (i = 0; i < count; i++)
1203     {
1204       struct cookie *c = outgoing[i].cookie;
1205       int namlen = strlen (c->attr);
1206       int vallen = strlen (c->value);
1207
1208       memcpy (result + pos, c->attr, namlen);
1209       pos += namlen;
1210       result[pos++] = '=';
1211       memcpy (result + pos, c->value, vallen);
1212       pos += vallen;
1213       if (i < count - 1)
1214         {
1215           result[pos++] = ';';
1216           result[pos++] = ' ';
1217         }
1218     }
1219   result[pos++] = '\0';
1220   assert (pos == result_size);
1221   return result;
1222 }
1223 \f
1224 /* Support for loading and saving cookies.  The format used for
1225    loading and saving should be the format of the `cookies.txt' file
1226    used by Netscape and Mozilla, at least the Unix versions.
1227    (Apparently IE can export cookies in that format as well.)  The
1228    format goes like this:
1229
1230        DOMAIN DOMAIN-FLAG PATH SECURE-FLAG TIMESTAMP ATTR-NAME ATTR-VALUE
1231
1232      DOMAIN      -- cookie domain, optionally followed by :PORT
1233      DOMAIN-FLAG -- whether all hosts in the domain match
1234      PATH        -- cookie path
1235      SECURE-FLAG -- whether cookie requires secure connection
1236      TIMESTAMP   -- expiry timestamp, number of seconds since epoch
1237      ATTR-NAME   -- name of the cookie attribute
1238      ATTR-VALUE  -- value of the cookie attribute (empty if absent)
1239
1240    The fields are separated by TABs.  All fields are mandatory, except
1241    for ATTR-VALUE.  The `-FLAG' fields are boolean, their legal values
1242    being "TRUE" and "FALSE'.  Empty lines, lines consisting of
1243    whitespace only, and comment lines (beginning with # optionally
1244    preceded by whitespace) are ignored.
1245
1246    Example line from cookies.txt (split in two lines for readability):
1247
1248        .google.com      TRUE    /       FALSE   2147368447      \
1249        PREF     ID=34bb47565bbcd47b:LD=en:NR=20:TM=985172580:LM=985739012
1250
1251 */
1252
1253 /* If the region [B, E) ends with :<digits>, parse the number, return
1254    it, and store new boundary (location of the `:') to DOMAIN_E_PTR.
1255    If port is not specified, return 0.  */
1256
1257 static int
1258 domain_port (const char *domain_b, const char *domain_e,
1259              const char **domain_e_ptr)
1260 {
1261   int port = 0;
1262   const char *p;
1263   const char *colon = memchr (domain_b, ':', domain_e - domain_b);
1264   if (!colon)
1265     return 0;
1266   for (p = colon + 1; p < domain_e && ISDIGIT (*p); p++)
1267     port = 10 * port + (*p - '0');
1268   if (p < domain_e)
1269     /* Garbage following port number. */
1270     return 0;
1271   *domain_e_ptr = colon;
1272   return port;
1273 }
1274
1275 #define GET_WORD(p, b, e) do {                  \
1276   b = p;                                        \
1277   while (*p && *p != '\t')                      \
1278     ++p;                                        \
1279   e = p;                                        \
1280   if (b == e || !*p)                            \
1281     goto next;                                  \
1282   ++p;                                          \
1283 } while (0)
1284
1285 /* Load cookies from FILE.  */
1286
1287 void
1288 cookie_jar_load (struct cookie_jar *jar, const char *file)
1289 {
1290   char *line;
1291   FILE *fp = fopen (file, "r");
1292   if (!fp)
1293     {
1294       logprintf (LOG_NOTQUIET, "Cannot open cookies file `%s': %s\n",
1295                  file, strerror (errno));
1296       return;
1297     }
1298   cookies_now = time (NULL);
1299
1300   for (; ((line = read_whole_line (fp)) != NULL); xfree (line))
1301     {
1302       struct cookie *cookie;
1303       char *p = line;
1304
1305       double expiry;
1306       int port;
1307
1308       char *domain_b  = NULL, *domain_e  = NULL;
1309       char *domflag_b = NULL, *domflag_e = NULL;
1310       char *path_b    = NULL, *path_e    = NULL;
1311       char *secure_b  = NULL, *secure_e  = NULL;
1312       char *expires_b = NULL, *expires_e = NULL;
1313       char *name_b    = NULL, *name_e    = NULL;
1314       char *value_b   = NULL, *value_e   = NULL;
1315
1316       /* Skip leading white-space. */
1317       while (*p && ISSPACE (*p))
1318         ++p;
1319       /* Ignore empty lines.  */
1320       if (!*p || *p == '#')
1321         continue;
1322
1323       GET_WORD (p, domain_b,  domain_e);
1324       GET_WORD (p, domflag_b, domflag_e);
1325       GET_WORD (p, path_b,    path_e);
1326       GET_WORD (p, secure_b,  secure_e);
1327       GET_WORD (p, expires_b, expires_e);
1328       GET_WORD (p, name_b,    name_e);
1329
1330       /* Don't use GET_WORD for value because it ends with newline,
1331          not TAB.  */
1332       value_b = p;
1333       value_e = p + strlen (p);
1334       if (value_e > value_b && value_e[-1] == '\n')
1335         --value_e;
1336       if (value_e > value_b && value_e[-1] == '\r')
1337         --value_e;
1338       /* Empty values are legal (I think), so don't bother checking. */
1339
1340       cookie = cookie_new ();
1341
1342       cookie->attr    = strdupdelim (name_b, name_e);
1343       cookie->value   = strdupdelim (value_b, value_e);
1344       cookie->path    = strdupdelim (path_b, path_e);
1345       cookie->secure  = BOUNDED_EQUAL (secure_b, secure_e, "TRUE");
1346
1347       /* Curl source says, quoting Andre Garcia: "flag: A TRUE/FALSE
1348          value indicating if all machines within a given domain can
1349          access the variable.  This value is set automatically by the
1350          browser, depending on the value set for the domain."  */
1351       cookie->domain_exact = !BOUNDED_EQUAL (domflag_b, domflag_e, "TRUE");
1352
1353       /* DOMAIN needs special treatment because we might need to
1354          extract the port.  */
1355       port = domain_port (domain_b, domain_e, (const char **)&domain_e);
1356       if (port)
1357         cookie->port = port;
1358
1359       if (*domain_b == '.')
1360         ++domain_b;             /* remove leading dot internally */
1361       cookie->domain  = strdupdelim (domain_b, domain_e);
1362
1363       /* safe default in case EXPIRES field is garbled. */
1364       expiry = (double)cookies_now - 1;
1365
1366       /* I don't like changing the line, but it's safe here.  (line is
1367          malloced.)  */
1368       *expires_e = '\0';
1369       sscanf (expires_b, "%lf", &expiry);
1370
1371       if (expiry == 0)
1372         {
1373           /* EXPIRY can be 0 for session cookies saved because the
1374              user specified `--keep-session-cookies' in the past.
1375              They remain session cookies, and will be saved only if
1376              the user has specified `keep-session-cookies' again.  */
1377         }
1378       else
1379         {
1380           if (expiry < cookies_now)
1381             goto abort;         /* ignore stale cookie. */
1382           cookie->expiry_time = expiry;
1383           cookie->permanent = 1;
1384         }
1385
1386       store_cookie (jar, cookie);
1387
1388     next:
1389       continue;
1390
1391     abort:
1392       delete_cookie (cookie);
1393     }
1394   fclose (fp);
1395 }
1396
1397 /* Mapper for save_cookies callable by hash_table_map.  VALUE points
1398    to the head in a chain of cookies.  The function prints the entire
1399    chain.  */
1400
1401 static int
1402 save_cookies_mapper (void *key, void *value, void *arg)
1403 {
1404   FILE *fp = (FILE *)arg;
1405   char *domain = (char *)key;
1406   struct cookie *cookie = (struct cookie *)value;
1407   for (; cookie; cookie = cookie->next)
1408     {
1409       if (!cookie->permanent && !opt.keep_session_cookies)
1410         continue;
1411       if (cookie_expired_p (cookie))
1412         continue;
1413       if (!cookie->domain_exact)
1414         fputc ('.', fp);
1415       fputs (domain, fp);
1416       if (cookie->port != PORT_ANY)
1417         fprintf (fp, ":%d", cookie->port);
1418       fprintf (fp, "\t%s\t%s\t%s\t%.0f\t%s\t%s\n",
1419                cookie->domain_exact ? "FALSE" : "TRUE",
1420                cookie->path, cookie->secure ? "TRUE" : "FALSE",
1421                (double)cookie->expiry_time,
1422                cookie->attr, cookie->value);
1423       if (ferror (fp))
1424         return 1;               /* stop mapping */
1425     }
1426   return 0;
1427 }
1428
1429 /* Save cookies, in format described above, to FILE. */
1430
1431 void
1432 cookie_jar_save (struct cookie_jar *jar, const char *file)
1433 {
1434   FILE *fp;
1435
1436   DEBUGP (("Saving cookies to %s.\n", file));
1437
1438   cookies_now = time (NULL);
1439
1440   fp = fopen (file, "w");
1441   if (!fp)
1442     {
1443       logprintf (LOG_NOTQUIET, _("Cannot open cookies file `%s': %s\n"),
1444                  file, strerror (errno));
1445       return;
1446     }
1447
1448   fputs ("# HTTP cookie file.\n", fp);
1449   fprintf (fp, "# Generated by Wget on %s.\n", datetime_str (&cookies_now));
1450   fputs ("# Edit at your own risk.\n\n", fp);
1451
1452   hash_table_map (jar->chains, save_cookies_mapper, fp);
1453
1454   if (ferror (fp))
1455     logprintf (LOG_NOTQUIET, _("Error writing to `%s': %s\n"),
1456                file, strerror (errno));
1457   if (fclose (fp) < 0)
1458     logprintf (LOG_NOTQUIET, _("Error closing `%s': %s\n"),
1459                file, strerror (errno));
1460
1461   DEBUGP (("Done saving cookies.\n"));
1462 }
1463 \f
1464 /* Destroy all the elements in the chain and unhook it from the cookie
1465    jar.  This is written in the form of a callback to hash_table_map
1466    and used by cookie_jar_delete to delete all the cookies in a
1467    jar.  */
1468
1469 static int
1470 nuke_cookie_chain (void *value, void *key, void *arg)
1471 {
1472   char *chain_key = (char *)value;
1473   struct cookie *chain = (struct cookie *)key;
1474   struct cookie_jar *jar = (struct cookie_jar *)arg;
1475
1476   /* Remove the chain from the table and free the key. */
1477   hash_table_remove (jar->chains, chain_key);
1478   xfree (chain_key);
1479
1480   /* Then delete all the cookies in the chain. */
1481   while (chain)
1482     {
1483       struct cookie *next = chain->next;
1484       delete_cookie (chain);
1485       chain = next;
1486     }
1487
1488   /* Keep mapping. */
1489   return 0;
1490 }
1491
1492 /* Clean up cookie-related data. */
1493
1494 void
1495 cookie_jar_delete (struct cookie_jar *jar)
1496 {
1497   hash_table_map (jar->chains, nuke_cookie_chain, jar);
1498   hash_table_destroy (jar->chains);
1499   xfree (jar);
1500 }
1501 \f
1502 /* Test cases.  Currently this is only tests parse_set_cookies.  To
1503    use, recompile Wget with -DTEST_COOKIES and call test_cookies()
1504    from main.  */
1505
1506 #ifdef TEST_COOKIES
1507 int test_count;
1508 char *test_results[10];
1509
1510 static int test_parse_cookies_callback (struct cookie *ignored,
1511                                         const char *nb, const char *ne,
1512                                         const char *vb, const char *ve)
1513 {
1514   test_results[test_count++] = strdupdelim (nb, ne);
1515   test_results[test_count++] = strdupdelim (vb, ve);
1516   return 1;
1517 }
1518
1519 void
1520 test_cookies (void)
1521 {
1522   /* Tests expected to succeed: */
1523   static struct {
1524     char *data;
1525     char *results[10];
1526   } tests_succ[] = {
1527     { "", {NULL} },
1528     { "arg=value", {"arg", "value", NULL} },
1529     { "arg1=value1;arg2=value2", {"arg1", "value1", "arg2", "value2", NULL} },
1530     { "arg1=value1; arg2=value2", {"arg1", "value1", "arg2", "value2", NULL} },
1531     { "arg1=value1;  arg2=value2;", {"arg1", "value1", "arg2", "value2", NULL} },
1532     { "arg1=value1;  arg2=value2;  ", {"arg1", "value1", "arg2", "value2", NULL} },
1533     { "arg1=\"value1\"; arg2=\"\"", {"arg1", "value1", "arg2", "", NULL} },
1534     { "arg=", {"arg", "", NULL} },
1535     { "arg1=; arg2=", {"arg1", "", "arg2", "", NULL} },
1536     { "arg1 = ; arg2= ", {"arg1", "", "arg2", "", NULL} },
1537   };
1538
1539   /* Tests expected to fail: */
1540   static char *tests_fail[] = {
1541     ";",
1542     "arg=\"unterminated",
1543     "=empty-name",
1544     "arg1=;=another-empty-name",
1545   };
1546   int i;
1547
1548   for (i = 0; i < countof (tests_succ); i++)
1549     {
1550       int ind;
1551       char *data = tests_succ[i].data;
1552       char **expected = tests_succ[i].results;
1553       struct cookie *c;
1554
1555       test_count = 0;
1556       c = parse_set_cookies (data, test_parse_cookies_callback, 1);
1557       if (!c)
1558         {
1559           printf ("NULL cookie returned for valid data: %s\n", data);
1560           continue;
1561         }
1562
1563       for (ind = 0; ind < test_count; ind += 2)
1564         {
1565           if (!expected[ind])
1566             break;
1567           if (0 != strcmp (expected[ind], test_results[ind]))
1568             printf ("Invalid name %d for '%s' (expected '%s', got '%s')\n",
1569                     ind / 2 + 1, data, expected[ind], test_results[ind]);
1570           if (0 != strcmp (expected[ind + 1], test_results[ind + 1]))
1571             printf ("Invalid value %d for '%s' (expected '%s', got '%s')\n",
1572                     ind / 2 + 1, data, expected[ind + 1], test_results[ind + 1]);
1573         }
1574       if (ind < test_count || expected[ind])
1575         printf ("Unmatched number of results: %s\n", data);
1576     }
1577
1578   for (i = 0; i < countof (tests_fail); i++)
1579     {
1580       struct cookie *c;
1581       char *data = tests_fail[i];
1582       test_count = 0;
1583       c = parse_set_cookies (data, test_parse_cookies_callback, 1);
1584       if (c)
1585         printf ("Failed to report error on invalid data: %s\n", data);
1586     }
1587 }
1588 #endif /* TEST_COOKIES */