1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
* soup-hsts-enforcer-db.c: persistent HTTP Strict Transport Security feature
*
* Using soup-cookie-jar-db as template
* Copyright (C) 2016, 2017, 2018 Igalia S.L.
* Copyright (C) 2017, 2018 Metrological Group B.V.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdlib.h>
#include <sqlite3.h>
#include "soup-hsts-enforcer-db.h"
#include "soup.h"
/**
* SECTION:soup-hsts-enforcer-db
* @short_description: Persistent HTTP Strict Transport Security enforcer
*
* #SoupHSTSEnforcerDB is a #SoupHSTSEnforcer that uses a SQLite
* database as a backend for persistency.
**/
enum {
PROP_0,
PROP_FILENAME,
LAST_PROP
};
struct _SoupHSTSEnforcerDBPrivate {
char *filename;
sqlite3 *db;
};
G_DEFINE_TYPE_WITH_CODE (SoupHSTSEnforcerDB, soup_hsts_enforcer_db, SOUP_TYPE_HSTS_ENFORCER,
G_ADD_PRIVATE(SoupHSTSEnforcerDB))
static void load (SoupHSTSEnforcer *hsts_enforcer);
static void
soup_hsts_enforcer_db_init (SoupHSTSEnforcerDB *db)
{
db->priv = soup_hsts_enforcer_db_get_instance_private (db);
}
static void
soup_hsts_enforcer_db_finalize (GObject *object)
{
SoupHSTSEnforcerDBPrivate *priv = SOUP_HSTS_ENFORCER_DB (object)->priv;
g_free (priv->filename);
sqlite3_close (priv->db);
G_OBJECT_CLASS (soup_hsts_enforcer_db_parent_class)->finalize (object);
}
static void
soup_hsts_enforcer_db_set_property (GObject *object, guint prop_id,
const GValue *value, GParamSpec *pspec)
{
SoupHSTSEnforcerDBPrivate *priv = SOUP_HSTS_ENFORCER_DB (object)->priv;
switch (prop_id) {
case PROP_FILENAME:
priv->filename = g_value_dup_string (value);
load (SOUP_HSTS_ENFORCER (object));
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
static void
soup_hsts_enforcer_db_get_property (GObject *object, guint prop_id,
GValue *value, GParamSpec *pspec)
{
SoupHSTSEnforcerDBPrivate *priv = SOUP_HSTS_ENFORCER_DB (object)->priv;
switch (prop_id) {
case PROP_FILENAME:
g_value_set_string (value, priv->filename);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
}
}
/**
* soup_hsts_enforcer_db_new:
* @filename: the filename of the database to read/write from.
*
* Creates a #SoupHSTSEnforcerDB.
*
* @filename will be read in during the initialization of a
* #SoupHSTSEnforcerDB, in order to create an initial set of HSTS
* policies. If the file doesn't exist, a new database will be created
* and initialized. Changes to the policies during the lifetime of a
* #SoupHSTSEnforcerDB will be written to @filename when
* #SoupHSTSEnforcer::changed is emitted.
*
* Return value: the new #SoupHSTSEnforcer
*
* Since: 2.68
**/
SoupHSTSEnforcer *
soup_hsts_enforcer_db_new (const char *filename)
{
g_return_val_if_fail (filename != NULL, NULL);
return g_object_new (SOUP_TYPE_HSTS_ENFORCER_DB,
SOUP_HSTS_ENFORCER_DB_FILENAME, filename,
NULL);
}
#define QUERY_ALL "SELECT id, host, max_age, expiry, include_subdomains FROM soup_hsts_policies;"
#define CREATE_TABLE "CREATE TABLE soup_hsts_policies (id INTEGER PRIMARY KEY, host TEXT UNIQUE, max_age INTEGER, expiry INTEGER, include_subdomains INTEGER)"
#define QUERY_INSERT "INSERT OR REPLACE INTO soup_hsts_policies VALUES((SELECT id FROM soup_hsts_policies WHERE host=%Q), %Q, %lu, %lu, %u);"
#define QUERY_DELETE "DELETE FROM soup_hsts_policies WHERE host=%Q;"
enum {
COL_ID,
COL_HOST,
COL_MAX_AGE,
COL_EXPIRY,
COL_SUBDOMAINS,
N_COL,
};
static int
query_all_callback (void *data, int argc, char **argv, char **colname)
{
SoupHSTSPolicy *policy = NULL;
SoupHSTSEnforcer *hsts_enforcer = SOUP_HSTS_ENFORCER (data);
char *host;
gulong expire_time;
unsigned long max_age;
time_t now;
SoupDate *expires;
gboolean include_subdomains = FALSE;
now = time (NULL);
host = argv[COL_HOST];
expire_time = strtoul (argv[COL_EXPIRY], NULL, 10);
if (now >= expire_time)
return 0;
expires = soup_date_new_from_time_t (expire_time);
max_age = strtoul (argv[COL_MAX_AGE], NULL, 10);
include_subdomains = (g_strcmp0 (argv[COL_SUBDOMAINS], "1") == 0);
policy = soup_hsts_policy_new_full (host, max_age, expires, include_subdomains);
if (policy) {
soup_hsts_enforcer_set_policy (hsts_enforcer, policy);
soup_hsts_policy_free (policy);
} else
soup_date_free (expires);
return 0;
}
static void
try_create_table (sqlite3 *db)
{
char *error = NULL;
if (sqlite3_exec (db, CREATE_TABLE, NULL, NULL, &error)) {
g_warning ("Failed to execute query: %s", error);
sqlite3_free (error);
}
}
typedef int (*ExecQueryCallback) (void *, int, char**, char**);
static void
exec_query_with_try_create_table (sqlite3 *db,
const char *sql,
ExecQueryCallback callback,
void *argument)
{
char *error = NULL;
gboolean try_create = TRUE;
try_exec:
if (sqlite3_exec (db, sql, callback, argument, &error)) {
if (try_create) {
try_create = FALSE;
try_create_table (db);
sqlite3_free (error);
error = NULL;
goto try_exec;
} else {
g_warning ("Failed to execute query: %s", error);
sqlite3_free (error);
}
}
}
/* Follows sqlite3 convention; returns TRUE on error */
static gboolean
open_db (SoupHSTSEnforcer *hsts_enforcer)
{
SoupHSTSEnforcerDBPrivate *priv = SOUP_HSTS_ENFORCER_DB (hsts_enforcer)->priv;
char *error = NULL;
if (sqlite3_open (priv->filename, &priv->db)) {
sqlite3_close (priv->db);
priv->db = NULL;
g_warning ("Can't open %s", priv->filename);
return TRUE;
}
if (sqlite3_exec (priv->db, "PRAGMA synchronous = OFF; PRAGMA secure_delete = 1;", NULL, NULL, &error)) {
g_warning ("Failed to execute query: %s", error);
sqlite3_free (error);
}
return FALSE;
}
static void
load (SoupHSTSEnforcer *hsts_enforcer)
{
SoupHSTSEnforcerDBPrivate *priv = SOUP_HSTS_ENFORCER_DB (hsts_enforcer)->priv;
if (priv->db == NULL) {
if (open_db (hsts_enforcer))
return;
}
exec_query_with_try_create_table (priv->db, QUERY_ALL, query_all_callback, hsts_enforcer);
}
static void
soup_hsts_enforcer_db_changed (SoupHSTSEnforcer *hsts_enforcer,
SoupHSTSPolicy *old_policy,
SoupHSTSPolicy *new_policy)
{
SoupHSTSEnforcerDBPrivate *priv = SOUP_HSTS_ENFORCER_DB (hsts_enforcer)->priv;
char *query;
/* Session policies do not need to be stored in the database. */
if ((old_policy && soup_hsts_policy_is_session_policy (old_policy)) ||
(new_policy && soup_hsts_policy_is_session_policy (new_policy)))
return;
if (priv->db == NULL) {
if (open_db (hsts_enforcer))
return;
}
if (old_policy && !new_policy) {
query = sqlite3_mprintf (QUERY_DELETE,
old_policy->domain);
g_assert (query);
exec_query_with_try_create_table (priv->db, query, NULL, NULL);
sqlite3_free (query);
}
/* Insert the new policy or update the existing one. */
if (new_policy && new_policy->expires) {
gulong expires;
expires = (gulong)soup_date_to_time_t (new_policy->expires);
query = sqlite3_mprintf (QUERY_INSERT,
new_policy->domain,
new_policy->domain,
new_policy->max_age,
expires,
new_policy->include_subdomains);
g_assert (query);
exec_query_with_try_create_table (priv->db, query, NULL, NULL);
sqlite3_free (query);
}
}
static gboolean
soup_hsts_enforcer_db_is_persistent (SoupHSTSEnforcer *hsts_enforcer)
{
return TRUE;
}
static gboolean
soup_hsts_enforcer_db_has_valid_policy (SoupHSTSEnforcer *hsts_enforcer,
const char *domain)
{
/* TODO: In the future we should not load the full contents of
this database into the enforcer, and instead query the
database on request here. Loading the entire database for a
potentially large amount of domains is probably not the
best approach.
*/
return SOUP_HSTS_ENFORCER_CLASS (soup_hsts_enforcer_db_parent_class)->has_valid_policy (hsts_enforcer, domain);
}
static void
soup_hsts_enforcer_db_class_init (SoupHSTSEnforcerDBClass *db_class)
{
SoupHSTSEnforcerClass *hsts_enforcer_class =
SOUP_HSTS_ENFORCER_CLASS (db_class);
GObjectClass *object_class = G_OBJECT_CLASS (db_class);
hsts_enforcer_class->is_persistent = soup_hsts_enforcer_db_is_persistent;
hsts_enforcer_class->has_valid_policy = soup_hsts_enforcer_db_has_valid_policy;
hsts_enforcer_class->changed = soup_hsts_enforcer_db_changed;
object_class->finalize = soup_hsts_enforcer_db_finalize;
object_class->set_property = soup_hsts_enforcer_db_set_property;
object_class->get_property = soup_hsts_enforcer_db_get_property;
/**
* SoupHSTSEnforcerDB:filename:
*
* The filename of the SQLite database where HSTS policies are stored.
**/
g_object_class_install_property (
object_class, PROP_FILENAME,
g_param_spec_string (SOUP_HSTS_ENFORCER_DB_FILENAME,
"Filename",
"HSTS policy storage filename",
NULL,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
G_PARAM_STATIC_STRINGS));
}
|