summaryrefslogtreecommitdiff
path: root/src/hsts.c
diff options
context:
space:
mode:
authorDongHun Kwak <dh0128.kwak@samsung.com>2021-03-05 10:08:17 +0900
committerDongHun Kwak <dh0128.kwak@samsung.com>2021-03-05 10:08:17 +0900
commit6403e0986cb5d0b8b4cbea66f8f3ff7a68cb4c20 (patch)
tree4936775a0caecb157d619aa6c8f26310c2611c7e /src/hsts.c
parent0fd98397eab07f1ec3b1fad9890fd751298e1fe0 (diff)
downloadwget-6403e0986cb5d0b8b4cbea66f8f3ff7a68cb4c20.tar.gz
wget-6403e0986cb5d0b8b4cbea66f8f3ff7a68cb4c20.tar.bz2
wget-6403e0986cb5d0b8b4cbea66f8f3ff7a68cb4c20.zip
Imported Upstream version 1.18upstream/1.18
Diffstat (limited to 'src/hsts.c')
-rw-r--r--src/hsts.c83
1 files changed, 67 insertions, 16 deletions
diff --git a/src/hsts.c b/src/hsts.c
index 1583659..4d748ac 100644
--- a/src/hsts.c
+++ b/src/hsts.c
@@ -53,6 +53,7 @@ as that of the covered work. */
struct hsts_store {
struct hash_table *table;
time_t last_mtime;
+ bool changed;
};
struct hsts_kh {
@@ -316,7 +317,7 @@ hsts_store_dump (hsts_store_t store, FILE *fp)
/* 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 ("# <hostname>[:<port>]\t<incl. subdomains>\t<created>\t<max-age>\n", fp);
+ fputs ("# <hostname>\t<port>\t<incl. subdomains>\t<created>\t<max-age>\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);)
@@ -334,6 +335,22 @@ hsts_store_dump (hsts_store_t store, FILE *fp)
}
}
+/*
+ * Test:
+ * - The file is a regular file (ie. not a symlink), and
+ * - The file is not world-writable.
+ */
+static bool
+hsts_file_access_valid (const char *filename)
+{
+ struct_stat st;
+
+ if (stat (filename, &st) == -1)
+ return false;
+
+ return !(st.st_mode & S_IWOTH) && S_ISREG (st.st_mode);
+}
+
/* HSTS API */
/*
@@ -370,10 +387,14 @@ hsts_match (hsts_store_t store, struct url *u)
if (u->port == 80)
u->port = 443;
url_changed = true;
+ store->changed = true;
}
}
else
- hsts_remove_entry (store, kh);
+ {
+ hsts_remove_entry (store, kh);
+ store->changed = true;
+ }
}
xfree (kh->host);
}
@@ -423,12 +444,14 @@ hsts_store_entry (hsts_store_t store,
if (entry && match == CONGRUENT_MATCH)
{
if (max_age == 0)
- hsts_remove_entry (store, kh);
+ {
+ hsts_remove_entry (store, kh);
+ store->changed = true;
+ }
else if (max_age > 0)
{
- entry->include_subdomains = include_subdomains;
-
- if (entry->max_age != max_age)
+ if (entry->max_age != max_age ||
+ entry->include_subdomains != include_subdomains)
{
/* 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 */
@@ -436,6 +459,9 @@ hsts_store_entry (hsts_store_t store,
if (t != -1)
entry->created = t;
entry->max_age = max_age;
+ entry->include_subdomains = include_subdomains;
+
+ store->changed = true;
}
}
/* we ignore negative max_ages */
@@ -450,6 +476,8 @@ hsts_store_entry (hsts_store_t store,
happen we got a non-existent entry with max_age == 0.
*/
result = hsts_add_entry (store, host, port, max_age, include_subdomains);
+ if (result)
+ store->changed = true;
}
/* we ignore new entries with max_age == 0 */
xfree (kh->host);
@@ -464,28 +492,45 @@ 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;
+ store->changed = false;
if (file_exists_p (filename))
{
- fp = fopen (filename, "r");
+ if (hsts_file_access_valid (filename))
+ {
+ struct_stat st;
+ FILE *fp = fopen (filename, "r");
+
+ if (!fp || !hsts_read_database (store, fp, false))
+ {
+ /* abort! */
+ hsts_store_close (store);
+ xfree (store);
+ fclose (fp);
+ goto out;
+ }
+
+ if (fstat (fileno (fp), &st) == 0)
+ store->last_mtime = st.st_mtime;
- if (!fp || !hsts_read_database (store, fp, false))
+ fclose (fp);
+ }
+ else
{
- /* abort! */
+ /*
+ * If we're not reading the HSTS database,
+ * then by all means act as if HSTS was disabled.
+ */
hsts_store_close (store);
xfree (store);
- goto out;
- }
- if (fstat (fileno (fp), &st) == 0)
- store->last_mtime = st.st_mtime;
- fclose (fp);
+ logprintf (LOG_NOTQUIET, "Will not apply HSTS. "
+ "The HSTS database must be a regular and non-world-writable file.\n");
+ }
}
out:
@@ -529,6 +574,12 @@ hsts_store_save (hsts_store_t store, const char *filename)
}
}
+bool
+hsts_store_has_changed (hsts_store_t store)
+{
+ return (store ? store->changed : false);
+}
+
void
hsts_store_close (hsts_store_t store)
{