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 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505
|
/* -*- Mode: C; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/*
* Copyright © 2017 Gabriel Ivascu <gabrielivascu@gnome.org>
*
* This file is part of Epiphany.
*
* Epiphany 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.
*
* Epiphany 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 Epiphany. If not, see <http://www.gnu.org/licenses/>.
*/
#include "config.h"
#include "ephy-sync-utils.h"
#include "ephy-settings.h"
#include <errno.h>
#include <glib/gi18n.h>
#include <inttypes.h>
#include <json-glib/json-glib.h>
#include <stdio.h>
#include <string.h>
#include <webkit/webkit.h>
#if defined(__linux__)
#include <sys/random.h>
#elif defined(__FreeBSD__) || defined(__OpenBSD__)
#include <unistd.h>
#endif
static const char hex_digits[] = "0123456789abcdef";
const SecretSchema *
ephy_sync_utils_get_secret_schema (void)
{
static const SecretSchema schema = {
"org.epiphany.SyncSecrets", SECRET_SCHEMA_NONE,
{
{ EPHY_SYNC_SECRET_ACCOUNT_KEY, SECRET_SCHEMA_ATTRIBUTE_STRING },
{ "NULL", 0 },
}
};
return &schema;
}
char *
ephy_sync_utils_encode_hex (const guint8 *data,
gsize data_len)
{
char *encoded;
g_assert (data);
encoded = g_malloc (data_len * 2 + 1);
for (gsize i = 0; i < data_len; i++) {
guint8 byte = data[i];
encoded[2 * i] = hex_digits[byte >> 4];
encoded[2 * i + 1] = hex_digits[byte & 0xf];
}
encoded[data_len * 2] = 0;
return encoded;
}
guint8 *
ephy_sync_utils_decode_hex (const char *hex)
{
guint8 *decoded;
g_assert (hex);
decoded = g_malloc (strlen (hex) / 2);
for (gsize i = 0, j = 0; i < strlen (hex); i += 2, j++)
sscanf (hex + i, "%2hhx", decoded + j);
return decoded;
}
static void
base64_to_base64_urlsafe (char *text)
{
g_assert (text);
/* / and + are inappropriate for URLs and file systems paths, so they have to
* be omitted to make the base64 string safe. / is replaced with _ and + is
* replaced with -.
*/
g_strcanon (text, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789=/", '-');
g_strcanon (text, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789=-", '_');
}
char *
ephy_sync_utils_base64_urlsafe_encode (const guint8 *data,
gsize data_len,
gboolean should_strip)
{
char *base64;
char *out;
gsize start = 0;
gssize end;
g_assert (data);
base64 = g_base64_encode (data, data_len);
end = strlen (base64) - 1;
/* Strip the data of any leading or trailing '=' characters. */
if (should_strip) {
while (start < strlen (base64) && base64[start] == '=')
start++;
while (end >= 0 && base64[end] == '=')
end--;
}
out = g_strndup (base64 + start, end - start + 1);
base64_to_base64_urlsafe (out);
g_free (base64);
return out;
}
static void
base64_urlsafe_to_base64 (char *text)
{
g_assert (text);
/* Replace '-' with '+' and '_' with '/' */
g_strcanon (text, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789=_", '+');
g_strcanon (text, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789=+", '/');
}
guint8 *
ephy_sync_utils_base64_urlsafe_decode (const char *text,
gsize *out_len,
gboolean should_fill)
{
guint8 *out;
char *to_decode;
char *suffix = NULL;
g_assert (text);
g_assert (out_len);
/* Fill the text with trailing '=' characters up to the proper length. */
if (should_fill)
suffix = g_strnfill ((4 - strlen (text) % 4) % 4, '=');
to_decode = g_strconcat (text, suffix, NULL);
base64_urlsafe_to_base64 (to_decode);
out = g_base64_decode (to_decode, out_len);
g_free (suffix);
g_free (to_decode);
return out;
}
/*
* This is mainly required by Nettle's RSA support.
* From Nettle's documentation: random_ctx and random is a randomness generator.
* random(random_ctx, length, dst) should generate length random octets and store them at dst.
* We don't use random_ctx.
*/
void
ephy_sync_utils_generate_random_bytes (void *random_ctx,
gsize num_bytes,
guint8 *out)
{
gssize ret;
g_assert (num_bytes > 0);
g_assert (out);
#ifdef __OpenBSD__
if (getentropy (out, num_bytes) == -1) {
g_error ("Failed to get entropy: %s", g_strerror (errno));
}
#else
do {
ret = getrandom (out, num_bytes, 0);
} while (ret < (gssize)num_bytes && errno == EINTR);
if (ret != (gssize)num_bytes)
g_error ("Failed to generate randomness: %s", g_strerror (errno));
#endif
}
char *
ephy_sync_utils_get_audience (const char *url)
{
g_autoptr (WebKitSecurityOrigin) origin = webkit_security_origin_new_for_uri (url);
return webkit_security_origin_to_string (origin);
}
char *
ephy_sync_utils_get_random_sync_id (void)
{
char *id;
char *base64;
guint8 *bytes;
gsize bytes_len;
/* The sync id is a base64-urlsafe string. Base64 uses 4 chars to represent 3 bytes,
* therefore we need ceil(len * 3 / 4) bytes to cover the requested length. */
bytes_len = (EPHY_SYNC_BSO_ID_LEN + 3) / 4 * 3;
bytes = g_malloc (bytes_len);
ephy_sync_utils_generate_random_bytes (NULL, bytes_len, bytes);
base64 = ephy_sync_utils_base64_urlsafe_encode (bytes, bytes_len, FALSE);
id = g_strndup (base64, EPHY_SYNC_BSO_ID_LEN);
g_free (base64);
g_free (bytes);
return id;
}
char *
ephy_sync_utils_make_client_record (const char *device_bso_id,
const char *device_id,
const char *device_name)
{
JsonNode *node;
JsonObject *object;
JsonArray *array;
char *protocol;
char *retval;
g_assert (device_bso_id);
g_assert (device_id);
g_assert (device_name);
array = json_array_new ();
protocol = g_strdup_printf ("1.%" PRIu32, EPHY_SYNC_STORAGE_VERSION);
json_array_add_string_element (array, protocol);
object = json_object_new ();
json_object_set_string_member (object, "id", device_bso_id);
json_object_set_string_member (object, "fxaDeviceId", device_id);
json_object_set_string_member (object, "name", device_name);
json_object_set_string_member (object, "type", "desktop");
json_object_set_string_member (object, "version", VERSION);
json_object_set_array_member (object, "protocols", array);
json_object_set_string_member (object, "os", "Linux");
json_object_set_string_member (object, "appPackage", "org.gnome.epiphany");
json_object_set_string_member (object, "application", "Epiphany");
node = json_node_new (JSON_NODE_OBJECT);
json_node_take_object (node, object);
retval = json_to_string (node, FALSE);
g_free (protocol);
json_node_unref (node);
return retval;
}
void
ephy_sync_utils_set_device_id (const char *id)
{
id = id ? id : "";
g_settings_set_string (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_DEVICE_ID, id);
}
char *
ephy_sync_utils_get_device_id (void)
{
return g_settings_get_string (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_DEVICE_ID);
}
char *
ephy_sync_utils_get_device_bso_id (void)
{
char *device_bso_id;
char *device_id;
device_id = g_settings_get_string (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_DEVICE_ID);
if (!g_strcmp0 (device_id, "")) {
/* This should never be reached. */
return g_strnfill (EPHY_SYNC_BSO_ID_LEN, '0');
}
device_bso_id = g_strndup (device_id, EPHY_SYNC_BSO_ID_LEN);
g_free (device_id);
return device_bso_id;
}
void
ephy_sync_utils_set_device_name (const char *name)
{
name = name ? name : "";
g_settings_set_string (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_DEVICE_NAME, name);
}
char *
ephy_sync_utils_get_device_name (void)
{
char *name;
name = g_settings_get_string (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_DEVICE_NAME);
if (g_strcmp0 (name, ""))
return name;
g_free (name);
/* Translators: First %s is the name of the user currently logged in on the
* machine. The second %s is the machine's name. You can use the variables
* in a different order by changing them to %2$s and %1$s. */
name = g_strdup_printf (_("%s’s GNOME Web on %s"), g_get_user_name (), g_get_host_name ());
g_settings_set_string (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_DEVICE_NAME, name);
return name;
}
void
ephy_sync_utils_set_sync_user (const char *user)
{
user = user ? user : "";
g_settings_set_string (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_USER, user);
}
char *
ephy_sync_utils_get_sync_user (void)
{
char *user = g_settings_get_string (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_USER);
if (!g_strcmp0 (user, "")) {
g_free (user);
return NULL;
}
return user;
}
gboolean
ephy_sync_utils_user_is_signed_in (void)
{
char *user = ephy_sync_utils_get_sync_user ();
if (user) {
g_free (user);
return TRUE;
}
return FALSE;
}
void
ephy_sync_utils_set_sync_time (gint64 time)
{
time = time > 0 ? time : 0;
g_settings_set_int64 (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_TIME, time);
}
gint64
ephy_sync_utils_get_sync_time (void)
{
return g_settings_get_int64 (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_TIME);
}
guint
ephy_sync_utils_get_sync_frequency (void)
{
/* Minutes. */
return g_settings_get_uint (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_FREQUENCY);
}
gboolean
ephy_sync_utils_sync_with_firefox (void)
{
return g_settings_get_boolean (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_WITH_FIREFOX);
}
gboolean
ephy_sync_utils_bookmarks_sync_is_enabled (void)
{
return g_settings_get_boolean (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_BOOKMARKS_ENABLED);
}
void
ephy_sync_utils_set_bookmarks_sync_time (gint64 time)
{
g_settings_set_int64 (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_BOOKMARKS_TIME, time);
}
gint64
ephy_sync_utils_get_bookmarks_sync_time (void)
{
return g_settings_get_int64 (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_BOOKMARKS_TIME);
}
void
ephy_sync_utils_set_bookmarks_sync_is_initial (gboolean is_initial)
{
g_settings_set_boolean (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_BOOKMARKS_INITIAL, is_initial);
}
gboolean
ephy_sync_utils_get_bookmarks_sync_is_initial (void)
{
return g_settings_get_boolean (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_BOOKMARKS_INITIAL);
}
gboolean
ephy_sync_utils_passwords_sync_is_enabled (void)
{
return g_settings_get_boolean (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_PASSWORDS_ENABLED);
}
void
ephy_sync_utils_set_passwords_sync_time (gint64 time)
{
g_settings_set_int64 (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_PASSWORDS_TIME, time);
}
gint64
ephy_sync_utils_get_passwords_sync_time (void)
{
return g_settings_get_int64 (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_PASSWORDS_TIME);
}
void
ephy_sync_utils_set_passwords_sync_is_initial (gboolean is_initial)
{
g_settings_set_boolean (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_PASSWORDS_INITIAL, is_initial);
}
gboolean
ephy_sync_utils_get_passwords_sync_is_initial (void)
{
return g_settings_get_boolean (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_PASSWORDS_INITIAL);
}
gboolean
ephy_sync_utils_history_sync_is_enabled (void)
{
return g_settings_get_boolean (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_HISTORY_ENABLED);
}
void
ephy_sync_utils_set_history_sync_time (gint64 time)
{
g_settings_set_int64 (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_HISTORY_TIME, time);
}
gint64
ephy_sync_utils_get_history_sync_time (void)
{
return g_settings_get_int64 (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_HISTORY_TIME);
}
void
ephy_sync_utils_set_history_sync_is_initial (gboolean is_initial)
{
g_settings_set_boolean (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_HISTORY_INITIAL, is_initial);
}
gboolean
ephy_sync_utils_get_history_sync_is_initial (void)
{
return g_settings_get_boolean (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_HISTORY_INITIAL);
}
gboolean
ephy_sync_utils_open_tabs_sync_is_enabled (void)
{
return g_settings_get_boolean (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_OPEN_TABS_ENABLED);
}
void
ephy_sync_utils_set_open_tabs_sync_time (gint64 time)
{
g_settings_set_int64 (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_OPEN_TABS_TIME, time);
}
gint64
ephy_sync_utils_get_open_tabs_sync_time (void)
{
return g_settings_get_int64 (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_OPEN_TABS_TIME);
}
char *
ephy_sync_utils_get_token_server (void)
{
return g_settings_get_string (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_TOKEN_SERVER);
}
char *
ephy_sync_utils_get_accounts_server (void)
{
return g_settings_get_string (EPHY_SETTINGS_SYNC, EPHY_PREFS_SYNC_ACCOUNTS_SERVER);
}
|