/* HTTP Strict Transport Security (HSTS) support. Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2015 Free Software Foundation, Inc. This file is part of GNU Wget. GNU Wget is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. GNU Wget is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Wget. If not, see . Additional permission under GNU GPL version 3 section 7 If you modify this program, or any covered work, by linking or combining it with the OpenSSL project's OpenSSL library (or a modified version of that library), containing parts covered by the terms of the OpenSSL or SSLeay licenses, the Free Software Foundation grants you additional permission to convey the resulting work. Corresponding Source for a non-source form of such a combination shall include the source code for the parts of OpenSSL used as well as that of the covered work. */ #include "wget.h" #ifdef HAVE_HSTS #include "hsts.h" #include "host.h" /* for is_valid_ip_address() */ #include "init.h" /* for home_dir() */ #include "utils.h" #include "hash.h" #include "c-ctype.h" #ifdef TESTING #include "test.h" #endif #include #include #include #include #include #include #include #include struct hsts_store { struct hash_table *table; time_t last_mtime; }; struct hsts_kh { char *host; int explicit_port; }; struct hsts_kh_info { time_t created; time_t max_age; bool include_subdomains; }; enum hsts_kh_match { NO_MATCH, SUPERDOMAIN_MATCH, CONGRUENT_MATCH }; #define hsts_is_host_name_valid(host) (!is_valid_ip_address (host)) #define hsts_is_scheme_valid(scheme) (scheme == SCHEME_HTTPS) #define hsts_is_host_eligible(scheme, host) \ (hsts_is_scheme_valid (scheme) && hsts_is_host_name_valid (host)) #define DEFAULT_HTTP_PORT 80 #define DEFAULT_SSL_PORT 443 #define CHECK_EXPLICIT_PORT(p1, p2) (p1 == 0 || p1 == p2) #define MAKE_EXPLICIT_PORT(s, p) (s == SCHEME_HTTPS ? (p == DEFAULT_SSL_PORT ? 0 : p) \ : (p == DEFAULT_HTTP_PORT ? 0 : p)) /* Hashing and comparison functions for the hash table */ static unsigned long hsts_hash_func (const void *key) { struct hsts_kh *k = (struct hsts_kh *) key; const char *h = NULL; unsigned int hash = k->explicit_port; for (h = k->host; *h; h++) hash = hash * 31 + *h; return hash; } static int hsts_cmp_func (const void *h1, const void *h2) { struct hsts_kh *kh1 = (struct hsts_kh *) h1, *kh2 = (struct hsts_kh *) h2; return (!strcmp (kh1->host, kh2->host)) && (kh1->explicit_port == kh2->explicit_port); } /* Private functions. Feel free to make some of these public when needed. */ static struct hsts_kh_info * hsts_find_entry (hsts_store_t store, const char *host, int explicit_port, enum hsts_kh_match *match_type, struct hsts_kh *kh) { struct hsts_kh *k = NULL; struct hsts_kh_info *khi = NULL; enum hsts_kh_match match = NO_MATCH; char *pos = NULL; char *org_ptr = NULL; k = (struct hsts_kh *) xnew (struct hsts_kh); k->host = xstrdup_lower (host); k->explicit_port = explicit_port; /* save pointer so that we don't get into trouble later when freeing */ org_ptr = k->host; khi = (struct hsts_kh_info *) hash_table_get (store->table, k); if (khi) { match = CONGRUENT_MATCH; goto end; } while (match == NO_MATCH && (pos = strchr (k->host, '.')) && pos - k->host > 0 && strchr (pos + 1, '.')) { k->host += (pos - k->host + 1); khi = (struct hsts_kh_info *) hash_table_get (store->table, k); if (khi) match = SUPERDOMAIN_MATCH; } end: /* restore pointer or we'll get a SEGV */ k->host = org_ptr; /* copy parameters to previous frame */ if (match_type) *match_type = match; if (kh) memcpy (kh, k, sizeof (struct hsts_kh)); else xfree (k->host); xfree (k); return khi; } static bool hsts_new_entry_internal (hsts_store_t store, const char *host, int port, time_t created, time_t max_age, bool include_subdomains, bool check_validity, bool check_expired, bool check_duplicates) { struct hsts_kh *kh = xnew (struct hsts_kh); struct hsts_kh_info *khi = xnew0 (struct hsts_kh_info); bool success = false; kh->host = xstrdup_lower (host); kh->explicit_port = MAKE_EXPLICIT_PORT (SCHEME_HTTPS, port); khi->created = created; khi->max_age = max_age; khi->include_subdomains = include_subdomains; /* Check validity */ if (check_validity && !hsts_is_host_name_valid (host)) goto bail; if (check_expired && ((khi->created + khi->max_age) < khi->created)) goto bail; if (check_duplicates && hash_table_contains (store->table, kh)) goto bail; /* Now store the new entry */ hash_table_put (store->table, kh, khi); success = true; bail: if (!success) { /* abort! */ xfree (kh->host); xfree (kh); xfree (khi); } return success; } /* Creates a new entry, but does not check whether that entry already exists. This function assumes that check has already been done by the caller. */ static bool hsts_add_entry (hsts_store_t store, const char *host, int port, time_t max_age, bool include_subdomains) { time_t t = time (NULL); /* It might happen time() returned -1 */ return (t < 0 ? false : hsts_new_entry_internal (store, host, port, t, max_age, include_subdomains, false, true, false)); } /* Creates a new entry, unless an identical one already exists. */ static bool hsts_new_entry (hsts_store_t store, const char *host, int port, time_t created, time_t max_age, bool include_subdomains) { return hsts_new_entry_internal (store, host, port, created, max_age, include_subdomains, true, true, true); } static void hsts_remove_entry (hsts_store_t store, struct hsts_kh *kh) { hash_table_remove (store->table, kh); } static bool hsts_store_merge (hsts_store_t store, const char *host, int port, time_t created, time_t max_age, bool include_subdomains) { enum hsts_kh_match match_type = NO_MATCH; struct hsts_kh_info *khi = NULL; bool success = false; port = MAKE_EXPLICIT_PORT (SCHEME_HTTPS, port); khi = hsts_find_entry (store, host, port, &match_type, NULL); if (khi && match_type == CONGRUENT_MATCH && created > khi->created) { /* update the entry with the new info */ khi->created = created; khi->max_age = max_age; khi->include_subdomains = include_subdomains; success = true; } else if (!khi) success = hsts_new_entry (store, host, port, created, max_age, include_subdomains); return success; } static bool hsts_read_database (hsts_store_t store, FILE *fp, bool merge_with_existing_entries) { char *line = NULL, *p; size_t len = 0; int items_read; bool result = false; bool (*func)(hsts_store_t, const char *, int, time_t, time_t, bool); char host[256]; int port; time_t created, max_age; int include_subdomains; func = (merge_with_existing_entries ? hsts_store_merge : hsts_new_entry); while (getline (&line, &len, fp) > 0) { for (p = line; c_isspace (*p); p++) ; if (*p == '#') continue; items_read = sscanf (p, "%255s %d %d %lu %lu", host, &port, &include_subdomains, (unsigned long *) &created, (unsigned long *) &max_age); if (items_read == 5) func (store, host, port, created, max_age, !!include_subdomains); } xfree (line); result = true; return result; } static void hsts_store_dump (hsts_store_t store, FILE *fp) { hash_table_iterator it; /* Print preliminary comments. We don't care if any of these fail. */ fputs ("# HSTS 1.0 Known Hosts database for GNU Wget.\n", fp); fputs ("# Edit at your own risk.\n", fp); fputs ("# [:]\t\t\t\n", fp); /* Now cycle through the HSTS store in memory and dump the entries */ for (hash_table_iterate (store->table, &it); hash_table_iter_next (&it);) { struct hsts_kh *kh = (struct hsts_kh *) it.key; struct hsts_kh_info *khi = (struct hsts_kh_info *) it.value; if (fprintf (fp, "%s\t%d\t%d\t%lu\t%lu\n", kh->host, kh->explicit_port, khi->include_subdomains, khi->created, khi->max_age) < 0) { logprintf (LOG_ALWAYS, "Could not write the HSTS database correctly.\n"); break; } } } /* HSTS API */ /* Changes the given URLs according to the HSTS policy. If there's no host in the store that either congruently or not, matches the given URL, no changes are made. Returns true if the URL was changed, or false if it was left intact. */ bool hsts_match (hsts_store_t store, struct url *u) { bool url_changed = false; struct hsts_kh_info *entry = NULL; struct hsts_kh *kh = xnew(struct hsts_kh); enum hsts_kh_match match = NO_MATCH; int port = MAKE_EXPLICIT_PORT (u->scheme, u->port); /* avoid doing any computation if we're already in HTTPS */ if (!hsts_is_scheme_valid (u->scheme)) { entry = hsts_find_entry (store, u->host, port, &match, kh); if (entry) { if ((entry->created + entry->max_age) >= time(NULL)) { if ((match == CONGRUENT_MATCH) || (match == SUPERDOMAIN_MATCH && entry->include_subdomains)) { /* we found a matching Known HSTS Host rewrite the URL */ u->scheme = SCHEME_HTTPS; if (u->port == 80) u->port = 443; url_changed = true; } } else hsts_remove_entry (store, kh); } xfree (kh->host); } xfree (kh); return url_changed; } /* Add a new HSTS Known Host to the HSTS store. If the host already exists, its information is updated, or it'll be removed from the store if max_age is zero. Bear in mind that the store is kept in memory, and will not be written to disk until hsts_store_save is called. This function regrows the in-memory HSTS store if necessary. Currently, for a host to be taken into consideration, two conditions have to be met: - Connection must be through a secure channel (HTTPS). - The host must not be an IPv4 or IPv6 address. The RFC 6797 states that hosts that match IPv4 or IPv6 format should be discarded at URI rewrite time. But we short-circuit that check here, since there's no point in storing a host that will never be matched. Returns true if a new entry was actually created, or false if an existing entry was updated/deleted. */ bool hsts_store_entry (hsts_store_t store, enum url_scheme scheme, const char *host, int port, time_t max_age, bool include_subdomains) { bool result = false; enum hsts_kh_match match = NO_MATCH; struct hsts_kh *kh = xnew(struct hsts_kh); struct hsts_kh_info *entry = NULL; time_t t = 0; if (hsts_is_host_eligible (scheme, host)) { port = MAKE_EXPLICIT_PORT (scheme, port); entry = hsts_find_entry (store, host, port, &match, kh); if (entry && match == CONGRUENT_MATCH) { if (max_age == 0) hsts_remove_entry (store, kh); else if (max_age > 0) { entry->include_subdomains = include_subdomains; if (entry->max_age != max_age) { /* RFC 6797 states that 'max_age' is a TTL relative to the reception of the STS header so we have to update the 'created' field too */ t = time (NULL); if (t != -1) entry->created = t; entry->max_age = max_age; } } /* we ignore negative max_ages */ } else if (entry == NULL || match == SUPERDOMAIN_MATCH) { /* Either we didn't find a matching host, or we got a superdomain match. In either case, we create a new entry. We have to perform an explicit check because it might happen we got a non-existent entry with max_age == 0. */ result = hsts_add_entry (store, host, port, max_age, include_subdomains); } /* we ignore new entries with max_age == 0 */ xfree (kh->host); } xfree (kh); return result; } hsts_store_t hsts_store_open (const char *filename) { hsts_store_t store = NULL; struct_stat st; FILE *fp = NULL; store = xnew0 (struct hsts_store); store->table = hash_table_new (0, hsts_hash_func, hsts_cmp_func); store->last_mtime = 0; if (file_exists_p (filename)) { fp = fopen (filename, "r"); if (!fp || !hsts_read_database (store, fp, false)) { /* abort! */ hsts_store_close (store); xfree (store); goto out; } if (fstat (fileno (fp), &st) == 0) store->last_mtime = st.st_mtime; } out: if (fp) fclose (fp); return store; } void hsts_store_save (hsts_store_t store, const char *filename) { struct_stat st; FILE *fp = NULL; int fd = 0; if (filename && hash_table_count (store->table) > 0) { fp = fopen (filename, "a+"); if (fp) { /* Lock the file to avoid potential race conditions */ fd = fileno (fp); flock (fd, LOCK_EX); /* If the file has changed, merge the changes with our in-memory data before dumping them to the file. Otherwise we could potentially overwrite the data stored by other Wget processes. */ if (store->last_mtime && stat (filename, &st) == 0 && st.st_mtime > store->last_mtime) hsts_read_database (store, fp, true); /* We've merged the latest changes so we can now truncate the file and dump everything. */ fseek (fp, 0, SEEK_SET); ftruncate (fd, 0); /* now dump to the file */ hsts_store_dump (store, fp); /* fclose is expected to unlock the file for us */ fclose (fp); } } } void hsts_store_close (hsts_store_t store) { hash_table_iterator it; /* free all the host fields */ for (hash_table_iterate (store->table, &it); hash_table_iter_next (&it);) { xfree (((struct hsts_kh *) it.key)->host); xfree (it.key); xfree (it.value); } hash_table_destroy (store->table); } #ifdef TESTING /* I know I'm really evil because I'm writing macros that change control flow. But we're testing, who will tell? :D */ #define TEST_URL_RW(s, u, p) do { \ if (test_url_rewrite (s, u, p, true)) \ return test_url_rewrite (s, u, p, true); \ } while (0) #define TEST_URL_NORW(s, u, p) do { \ if (test_url_rewrite (s, u, p, false)) \ return test_url_rewrite (s, u, p, false); \ } while (0) static char * get_hsts_store_filename (void) { char *home = NULL, *filename = NULL; FILE *fp = NULL; home = home_dir (); if (home) { filename = aprintf ("%s/.wget-hsts-test", home); fp = fopen (filename, "w"); if (fp) fclose (fp); } xfree (home); return filename; } static hsts_store_t open_hsts_test_store (void) { char *filename = NULL; hsts_store_t table = NULL; filename = get_hsts_store_filename (); table = hsts_store_open (filename); xfree (filename); return table; } static void close_hsts_test_store (hsts_store_t store) { char *filename = NULL; filename = get_hsts_store_filename (); unlink (filename); xfree (filename); xfree (store); } static const char* test_url_rewrite (hsts_store_t s, const char *url, int port, bool rewrite) { bool result; struct url u; u.host = xstrdup (url); u.port = port; u.scheme = SCHEME_HTTP; result = hsts_match (s, &u); if (rewrite) { if (port == 80) mu_assert("URL: port should've been rewritten to 443", u.port == 443); else mu_assert("URL: port should've been left intact", u.port == port); mu_assert("URL: scheme should've been rewritten to HTTPS", u.scheme == SCHEME_HTTPS); mu_assert("result should've been true", result == true); } else { mu_assert("URL: port should've been left intact", u.port == port); mu_assert("URL: scheme should've been left intact", u.scheme == SCHEME_HTTP); mu_assert("result should've been false", result == false); } xfree (u.host); return NULL; } const char * test_hsts_new_entry (void) { enum hsts_kh_match match = NO_MATCH; struct hsts_kh_info *khi; hsts_store_t s; bool created; s = open_hsts_test_store (); mu_assert("Could not open the HSTS store. This could be due to lack of memory.", s != NULL); created = hsts_store_entry (s, SCHEME_HTTP, "www.foo.com", 80, 1234, true); mu_assert("No entry should have been created.", created == false); created = hsts_store_entry (s, SCHEME_HTTPS, "www.foo.com", 443, 1234, true); mu_assert("A new entry should have been created", created == true); khi = hsts_find_entry (s, "www.foo.com", MAKE_EXPLICIT_PORT (SCHEME_HTTPS, 443), &match, NULL); mu_assert("Should've been a congruent match", match == CONGRUENT_MATCH); mu_assert("No valid HSTS info was returned", khi != NULL); mu_assert("Variable 'max_age' should be 1234", khi->max_age == 1234); mu_assert("Variable 'include_subdomains' should be asserted", khi->include_subdomains == true); khi = hsts_find_entry (s, "b.www.foo.com", MAKE_EXPLICIT_PORT (SCHEME_HTTPS, 443), &match, NULL); mu_assert("Should've been a superdomain match", match == SUPERDOMAIN_MATCH); mu_assert("No valid HSTS info was returned", khi != NULL); mu_assert("Variable 'max_age' should be 1234", khi->max_age == 1234); mu_assert("Variable 'include_subdomains' should be asserted", khi->include_subdomains == true); khi = hsts_find_entry (s, "ww.foo.com", MAKE_EXPLICIT_PORT (SCHEME_HTTPS, 443), &match, NULL); mu_assert("Should've been no match", match == NO_MATCH); khi = hsts_find_entry (s, "foo.com", MAKE_EXPLICIT_PORT (SCHEME_HTTPS, 443), &match, NULL); mu_assert("Should've been no match", match == NO_MATCH); khi = hsts_find_entry (s, ".foo.com", MAKE_EXPLICIT_PORT (SCHEME_HTTPS, 443), &match, NULL); mu_assert("Should've been no match", match == NO_MATCH); khi = hsts_find_entry (s, ".www.foo.com", MAKE_EXPLICIT_PORT (SCHEME_HTTPS, 443), &match, NULL); mu_assert("Should've been no match", match == NO_MATCH); hsts_store_close (s); close_hsts_test_store (s); return NULL; } const char* test_hsts_url_rewrite_superdomain (void) { hsts_store_t s; bool created; s = open_hsts_test_store (); mu_assert("Could not open the HSTS store", s != NULL); created = hsts_store_entry (s, SCHEME_HTTPS, "www.foo.com", 443, 1234, true); mu_assert("A new entry should've been created", created == true); TEST_URL_RW (s, "www.foo.com", 80); TEST_URL_RW (s, "bar.www.foo.com", 80); hsts_store_close (s); close_hsts_test_store (s); return NULL; } const char* test_hsts_url_rewrite_congruent (void) { hsts_store_t s; bool created; s = open_hsts_test_store (); mu_assert("Could not open the HSTS store", s != NULL); created = hsts_store_entry (s, SCHEME_HTTPS, "foo.com", 443, 1234, false); mu_assert("A new entry should've been created", created == true); TEST_URL_RW (s, "foo.com", 80); TEST_URL_NORW (s, "www.foo.com", 80); hsts_store_close (s); close_hsts_test_store (s); return NULL; } const char* test_hsts_read_database (void) { hsts_store_t table; char *home = home_dir(); char *file = NULL; FILE *fp = NULL; time_t created = time(NULL) - 10; if (home) { file = aprintf ("%s/.wget-hsts-testing", home); fp = fopen (file, "w"); if (fp) { fputs ("# dummy comment\n", fp); fprintf (fp, "foo.example.com\t0\t1\t%ld\t123\n",(long) created); fprintf (fp, "bar.example.com\t0\t0\t%ld\t456\n", (long) created); fprintf (fp, "test.example.com\t8080\t0\t%ld\t789\n", (long) created); fclose (fp); table = hsts_store_open (file); TEST_URL_RW (table, "foo.example.com", 80); TEST_URL_RW (table, "www.foo.example.com", 80); TEST_URL_RW (table, "bar.example.com", 80); TEST_URL_NORW(table, "www.bar.example.com", 80); TEST_URL_RW (table, "test.example.com", 8080); hsts_store_close (table); close_hsts_test_store (table); unlink (file); } xfree (file); xfree (home); } return NULL; } #endif /* TESTING */ #endif /* HAVE_HSTS */