1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-22 14:10:34 +00:00

Merge branch 'master' into sparkle-1.24.0

This commit is contained in:
Mitch Livingston 2020-11-15 16:59:20 -05:00 committed by GitHub
commit ca151308d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 156 additions and 108 deletions

View file

@ -534,7 +534,6 @@ set(NEEDED_FUNCTIONS
fallocate64 fallocate64
flock flock
getmntent getmntent
getpagesize
gmtime_r gmtime_r
gmtime_s gmtime_s
htonll htonll
@ -545,7 +544,6 @@ set(NEEDED_FUNCTIONS
ntohll ntohll
posix_fadvise posix_fadvise
posix_fallocate posix_fallocate
posix_memalign
pread pread
pwrite pwrite
statvfs statvfs
@ -553,8 +551,7 @@ set(NEEDED_FUNCTIONS
strlcpy strlcpy
strsep strsep
syslog syslog
uselocale uselocale)
valloc)
foreach(F ${NEEDED_FUNCTIONS}) foreach(F ${NEEDED_FUNCTIONS})
tr_make_id("${F}" F_ID) tr_make_id("${F}" F_ID)

View file

@ -251,7 +251,7 @@ static bool recalculateHash(tr_torrent* tor, tr_piece_index_t pieceIndex, uint8_
uint32_t offset = 0; uint32_t offset = 0;
bool success = true; bool success = true;
size_t const buflen = tor->blockSize; size_t const buflen = tor->blockSize;
void* buffer = tr_valloc(buflen); void* const buffer = tr_malloc(buflen);
tr_sha1_ctx_t sha; tr_sha1_ctx_t sha;
TR_ASSERT(buffer != NULL); TR_ASSERT(buffer != NULL);

View file

@ -265,7 +265,7 @@ static uint8_t* getHashInfo(tr_metainfo_builder* b)
return ret; return ret;
} }
buf = tr_valloc(b->pieceSize); buf = tr_malloc(b->pieceSize);
b->pieceIndex = 0; b->pieceIndex = 0;
totalRemain = b->totalSize; totalRemain = b->totalSize;
fd = tr_sys_file_open(b->files[fileIndex].filename, TR_SYS_FILE_READ | TR_SYS_FILE_SEQUENTIAL, 0, &error); fd = tr_sys_file_open(b->files[fileIndex].filename, TR_SYS_FILE_READ | TR_SYS_FILE_SEQUENTIAL, 0, &error);

View file

@ -46,6 +46,8 @@ static struct tr_key_struct const my_static[] =
Q("announce"), Q("announce"),
Q("announce-list"), Q("announce-list"),
Q("announceState"), Q("announceState"),
Q("anti-brute-force-enabled"),
Q("anti-brute-force-threshold"),
Q("arguments"), Q("arguments"),
Q("bandwidth-priority"), Q("bandwidth-priority"),
Q("bandwidthPriority"), Q("bandwidthPriority"),

View file

@ -45,6 +45,8 @@ enum
TR_KEY_announce, /* metainfo */ TR_KEY_announce, /* metainfo */
TR_KEY_announce_list, /* metainfo */ TR_KEY_announce_list, /* metainfo */
TR_KEY_announceState, /* rpc */ TR_KEY_announceState, /* rpc */
TR_KEY_anti_brute_force_enabled, /* rpc */
TR_KEY_anti_brute_force_threshold, /* rpc */
TR_KEY_arguments, /* rpc */ TR_KEY_arguments, /* rpc */
TR_KEY_bandwidth_priority, TR_KEY_bandwidth_priority,
TR_KEY_bandwidthPriority, TR_KEY_bandwidthPriority,

View file

@ -65,6 +65,8 @@ struct tr_rpc_server
tr_list* whitelist; tr_list* whitelist;
tr_list* hostWhitelist; tr_list* hostWhitelist;
int loginattempts; int loginattempts;
bool isAntiBruteForceEnabled;
int antiBruteForceThreshold;
bool isStreamInitialized; bool isStreamInitialized;
z_stream stream; z_stream stream;
@ -641,7 +643,7 @@ static void handle_request(struct evhttp_request* req, void* arg)
evhttp_add_header(req->output_headers, "Server", MY_REALM); evhttp_add_header(req->output_headers, "Server", MY_REALM);
if (server->loginattempts == 100) if (server->isAntiBruteForceEnabled && server->loginattempts >= server->antiBruteForceThreshold)
{ {
send_simple_response(req, 403, "<p>Too many unsuccessful login attempts. Please restart transmission-daemon.</p>"); send_simple_response(req, 403, "<p>Too many unsuccessful login attempts. Please restart transmission-daemon.</p>");
return; return;
@ -681,7 +683,11 @@ static void handle_request(struct evhttp_request* req, void* arg)
!tr_ssha1_matches(server->password, pass))) !tr_ssha1_matches(server->password, pass)))
{ {
evhttp_add_header(req->output_headers, "WWW-Authenticate", "Basic realm=\"" MY_REALM "\""); evhttp_add_header(req->output_headers, "WWW-Authenticate", "Basic realm=\"" MY_REALM "\"");
if (server->isAntiBruteForceEnabled)
{
server->loginattempts++; server->loginattempts++;
}
char* unauthuser = tr_strdup_printf("<p>Unauthorized User. %d unsuccessful login attempts.</p>", char* unauthuser = tr_strdup_printf("<p>Unauthorized User. %d unsuccessful login attempts.</p>",
server->loginattempts); server->loginattempts);
send_simple_response(req, 401, unauthuser); send_simple_response(req, 401, unauthuser);
@ -1066,6 +1072,30 @@ char const* tr_rpcGetBindAddress(tr_rpc_server const* server)
return tr_address_to_string(&server->bindAddress); return tr_address_to_string(&server->bindAddress);
} }
bool tr_rpcGetAntiBruteForceEnabled(tr_rpc_server const* server)
{
return server->isAntiBruteForceEnabled;
}
void tr_rpcSetAntiBruteForceEnabled(tr_rpc_server* server, bool isEnabled)
{
server->isAntiBruteForceEnabled = isEnabled;
if (!isEnabled)
{
server->loginattempts = 0;
}
}
int tr_rpcGetAntiBruteForceThreshold(tr_rpc_server const* server)
{
return server->antiBruteForceThreshold;
}
void tr_rpcSetAntiBruteForceThreshold(tr_rpc_server* server, int badRequests)
{
server->antiBruteForceThreshold = badRequests;
}
/**** /****
***** LIFE CYCLE ***** LIFE CYCLE
****/ ****/
@ -1228,6 +1258,28 @@ tr_rpc_server* tr_rpcInit(tr_session* session, tr_variant* settings)
tr_rpcSetPassword(s, str); tr_rpcSetPassword(s, str);
} }
key = TR_KEY_anti_brute_force_enabled;
if (!tr_variantDictFindBool(settings, key, &boolVal))
{
missing_settings_key(key);
}
else
{
tr_rpcSetAntiBruteForceEnabled(s, boolVal);
}
key = TR_KEY_anti_brute_force_threshold;
if (!tr_variantDictFindInt(settings, key, &i))
{
missing_settings_key(key);
}
else
{
tr_rpcSetAntiBruteForceThreshold(s, i);
}
key = TR_KEY_rpc_bind_address; key = TR_KEY_rpc_bind_address;
if (!tr_variantDictFindStr(settings, key, &str, NULL)) if (!tr_variantDictFindStr(settings, key, &str, NULL))

View file

@ -58,4 +58,12 @@ void tr_rpcSetPasswordEnabled(tr_rpc_server* server, bool isEnabled);
bool tr_rpcIsPasswordEnabled(tr_rpc_server const* session); bool tr_rpcIsPasswordEnabled(tr_rpc_server const* session);
bool tr_rpcGetAntiBruteForceEnabled(tr_rpc_server const* server);
void tr_rpcSetAntiBruteForceEnabled(tr_rpc_server* server, bool is_enabled);
int tr_rpcGetAntiBruteForceThreshold(tr_rpc_server const* server);
void tr_rpcSetAntiBruteForceThreshold(tr_rpc_server* server, int badRequests);
char const* tr_rpcGetBindAddress(tr_rpc_server const* server); char const* tr_rpcGetBindAddress(tr_rpc_server const* server);

View file

@ -1676,13 +1676,11 @@ static void gotNewBlocklist(tr_session* session, bool did_connect, bool did_time
} }
else /* successfully fetched the blocklist... */ else /* successfully fetched the blocklist... */
{ {
tr_sys_file_t fd;
int err; int err;
char* filename;
z_stream stream; z_stream stream;
char const* configDir = tr_sessionGetConfigDir(session); char const* configDir = tr_sessionGetConfigDir(session);
size_t const buflen = 1024 * 128; /* 128 KiB buffer */ size_t const buflen = 1024 * 128; /* 128 KiB buffer */
uint8_t* buf = tr_valloc(buflen); uint8_t* const buf = tr_malloc(buflen);
tr_error* error = NULL; tr_error* error = NULL;
/* this is an odd Magic Number required by zlib to enable gz support. /* this is an odd Magic Number required by zlib to enable gz support.
@ -1696,8 +1694,8 @@ static void gotNewBlocklist(tr_session* session, bool did_connect, bool did_time
stream.avail_in = response_byte_count; stream.avail_in = response_byte_count;
inflateInit2(&stream, windowBits); inflateInit2(&stream, windowBits);
filename = tr_buildPath(configDir, "blocklist.tmp.XXXXXX", NULL); char* const filename = tr_buildPath(configDir, "blocklist.tmp.XXXXXX", NULL);
fd = tr_sys_file_open_temp(filename, &error); tr_sys_file_t const fd = tr_sys_file_open_temp(filename, &error);
if (fd == TR_BAD_SYS_FILE) if (fd == TR_BAD_SYS_FILE)
{ {
@ -2277,6 +2275,16 @@ static char const* sessionSet(tr_session* session, tr_variant* args_in, tr_varia
} }
} }
if (tr_variantDictFindInt(args_in, TR_KEY_anti_brute_force_threshold, &i))
{
tr_sessionSetAntiBruteForceThreshold(session, i);
}
if (tr_variantDictFindBool(args_in, TR_KEY_anti_brute_force_enabled, &boolVal))
{
tr_sessionSetAntiBruteForceEnabled(session, boolVal);
}
notify(session, TR_RPC_SESSION_CHANGED, NULL); notify(session, TR_RPC_SESSION_CHANGED, NULL);
return NULL; return NULL;
@ -2521,6 +2529,14 @@ static void addSessionField(tr_session* s, tr_variant* d, tr_quark key)
tr_variantDictAddInt(d, key, tr_sessionGetQueueStalledMinutes(s)); tr_variantDictAddInt(d, key, tr_sessionGetQueueStalledMinutes(s));
break; break;
case TR_KEY_anti_brute_force_enabled:
tr_variantDictAddBool(d, key, tr_sessionGetAntiBruteForceEnabled(s));
break;
case TR_KEY_anti_brute_force_threshold:
tr_variantDictAddInt(d, key, tr_sessionGetAntiBruteForceThreshold(s));
break;
case TR_KEY_units: case TR_KEY_units:
tr_formatter_get_units(tr_variantDictAddDict(d, key, 0)); tr_formatter_get_units(tr_variantDictAddDict(d, key, 0));
break; break;

View file

@ -404,6 +404,8 @@ void tr_sessionGetDefaultSettings(tr_variant* d)
tr_variantDictAddStr(d, TR_KEY_bind_address_ipv6, TR_DEFAULT_BIND_ADDRESS_IPV6); tr_variantDictAddStr(d, TR_KEY_bind_address_ipv6, TR_DEFAULT_BIND_ADDRESS_IPV6);
tr_variantDictAddBool(d, TR_KEY_start_added_torrents, true); tr_variantDictAddBool(d, TR_KEY_start_added_torrents, true);
tr_variantDictAddBool(d, TR_KEY_trash_original_torrent_files, false); tr_variantDictAddBool(d, TR_KEY_trash_original_torrent_files, false);
tr_variantDictAddInt(d, TR_KEY_anti_brute_force_threshold, 100);
tr_variantDictAddBool(d, TR_KEY_anti_brute_force_enabled, true);
} }
void tr_sessionGetSettings(tr_session* s, tr_variant* d) void tr_sessionGetSettings(tr_session* s, tr_variant* d)
@ -475,6 +477,8 @@ void tr_sessionGetSettings(tr_session* s, tr_variant* d)
tr_variantDictAddStr(d, TR_KEY_bind_address_ipv6, tr_address_to_string(&s->public_ipv6->addr)); tr_variantDictAddStr(d, TR_KEY_bind_address_ipv6, tr_address_to_string(&s->public_ipv6->addr));
tr_variantDictAddBool(d, TR_KEY_start_added_torrents, !tr_sessionGetPaused(s)); tr_variantDictAddBool(d, TR_KEY_start_added_torrents, !tr_sessionGetPaused(s));
tr_variantDictAddBool(d, TR_KEY_trash_original_torrent_files, tr_sessionGetDeleteSource(s)); tr_variantDictAddBool(d, TR_KEY_trash_original_torrent_files, tr_sessionGetDeleteSource(s));
tr_variantDictAddInt(d, TR_KEY_anti_brute_force_threshold, tr_sessionGetAntiBruteForceThreshold(s));
tr_variantDictAddBool(d, TR_KEY_anti_brute_force_enabled, tr_sessionGetAntiBruteForceEnabled(s));
} }
bool tr_sessionLoadSettings(tr_variant* dict, char const* configDir, char const* appName) bool tr_sessionLoadSettings(tr_variant* dict, char const* configDir, char const* appName)
@ -1144,6 +1148,20 @@ static void sessionSetImpl(void* vdata)
session->scrapePausedTorrents = boolVal; session->scrapePausedTorrents = boolVal;
} }
/**
*** BruteForce
**/
if (tr_variantDictFindInt(settings, TR_KEY_anti_brute_force_threshold, &i))
{
tr_sessionSetAntiBruteForceThreshold(session, i);
}
if (tr_variantDictFindBool(settings, TR_KEY_anti_brute_force_enabled, &boolVal))
{
tr_sessionSetAntiBruteForceEnabled(session, boolVal);
}
data->done = true; data->done = true;
} }
@ -2947,6 +2965,34 @@ int tr_sessionGetQueueStalledMinutes(tr_session const* session)
return session->queueStalledMinutes; return session->queueStalledMinutes;
} }
void tr_sessionSetAntiBruteForceThreshold(tr_session* session, int bad_requests)
{
TR_ASSERT(tr_isSession(session));
TR_ASSERT(bad_requests > 0);
tr_rpcSetAntiBruteForceThreshold(session->rpcServer, bad_requests);
}
void tr_sessionSetAntiBruteForceEnabled(tr_session* session, bool is_enabled)
{
TR_ASSERT(tr_isSession(session));
tr_rpcSetAntiBruteForceEnabled(session->rpcServer, is_enabled);
}
bool tr_sessionGetAntiBruteForceEnabled(tr_session const* session)
{
TR_ASSERT(tr_isSession(session));
return tr_rpcGetAntiBruteForceEnabled(session->rpcServer);
}
int tr_sessionGetAntiBruteForceThreshold(tr_session const* session)
{
TR_ASSERT(tr_isSession(session));
return tr_rpcGetAntiBruteForceThreshold(session->rpcServer);
}
struct TorrentAndPosition struct TorrentAndPosition
{ {
tr_torrent* tor; tr_torrent* tor;

View file

@ -601,6 +601,15 @@ bool tr_sessionGetDeleteSource(tr_session const*);
tr_priority_t tr_torrentGetPriority(tr_torrent const*); tr_priority_t tr_torrentGetPriority(tr_torrent const*);
void tr_torrentSetPriority(tr_torrent*, tr_priority_t); void tr_torrentSetPriority(tr_torrent*, tr_priority_t);
void tr_sessionSetAntiBruteForceThreshold(tr_session*, int bad_requests);
int tr_sessionGetAntiBruteForceThreshold(tr_session const*);
void tr_sessionSetAntiBruteForceEnabled(tr_session*, bool enabled);
bool tr_sessionGetAntiBruteForceEnabled(tr_session const*);
/**
**/
/*** /***
**** ****
**** Torrent Queueing **** Torrent Queueing

View file

@ -10,11 +10,6 @@
#define _GNU_SOURCE /* glibc's string.h needs this to pick up memmem */ #define _GNU_SOURCE /* glibc's string.h needs this to pick up memmem */
#endif #endif
#if defined(XCODE_BUILD)
#define HAVE_GETPAGESIZE
#define HAVE_VALLOC
#endif
#include <ctype.h> /* isdigit(), tolower() */ #include <ctype.h> /* isdigit(), tolower() */
#include <errno.h> #include <errno.h>
#include <float.h> /* DBL_DIG */ #include <float.h> /* DBL_DIG */
@ -554,26 +549,6 @@ int tr_strcmp0(char const* str1, char const* str2)
return 0; return 0;
} }
int tr_memcmp0(void const* lhs, void const* rhs, size_t size)
{
if (lhs != NULL && rhs != NULL)
{
return memcmp(lhs, rhs, size);
}
if (lhs != NULL)
{
return 1;
}
if (rhs != NULL)
{
return -1;
}
return 0;
}
/**** /****
***** *****
****/ ****/
@ -1749,7 +1724,7 @@ bool tr_moveFile(char const* oldpath, char const* newpath, tr_error** error)
char* buf = NULL; char* buf = NULL;
tr_sys_path_info info; tr_sys_path_info info;
uint64_t bytesLeft; uint64_t bytesLeft;
size_t const buflen = 1024 * 1024; /* 1024 KiB buffer */ size_t const buflen = 1024 * 1024; // 1024 KiB buffer
/* make sure the old file exists */ /* make sure the old file exists */
if (!tr_sys_path_get_info(oldpath, 0, &info, error)) if (!tr_sys_path_get_info(oldpath, 0, &info, error))
@ -1801,7 +1776,7 @@ bool tr_moveFile(char const* oldpath, char const* newpath, tr_error** error)
return false; return false;
} }
buf = tr_valloc(buflen); buf = tr_malloc(buflen);
bytesLeft = info.size; bytesLeft = info.size;
while (bytesLeft > 0) while (bytesLeft > 0)
@ -1853,58 +1828,6 @@ bool tr_moveFile(char const* oldpath, char const* newpath, tr_error** error)
**** ****
***/ ***/
void* tr_valloc(size_t bufLen)
{
size_t allocLen;
void* buf = NULL;
static size_t pageSize = 0;
if (pageSize == 0)
{
#if defined(HAVE_GETPAGESIZE) && !defined(_WIN32)
pageSize = (size_t)getpagesize();
#else /* guess */
pageSize = 4096;
#endif
}
allocLen = pageSize;
while (allocLen < bufLen)
{
allocLen += pageSize;
}
#ifdef HAVE_POSIX_MEMALIGN
if ((buf == NULL) && (posix_memalign(&buf, pageSize, allocLen) != 0))
{
buf = NULL; /* just retry with valloc/malloc */
}
#endif
#ifdef HAVE_VALLOC
if (buf == NULL)
{
buf = valloc(allocLen);
}
#endif
if (buf == NULL)
{
buf = tr_malloc(allocLen);
}
return buf;
}
/***
****
***/
uint64_t tr_htonll(uint64_t x) uint64_t tr_htonll(uint64_t x)
{ {
#ifdef HAVE_HTONLL #ifdef HAVE_HTONLL

View file

@ -181,8 +181,6 @@ void* tr_memdup(void const* src, size_t byteCount);
((struct_type*)tr_realloc((mem), sizeof(struct_type) * (size_t)(n_structs))) ((struct_type*)tr_realloc((mem), sizeof(struct_type) * (size_t)(n_structs)))
/* *INDENT-ON* */ /* *INDENT-ON* */
void* tr_valloc(size_t bufLen);
/** /**
* @brief make a newly-allocated copy of a substring * @brief make a newly-allocated copy of a substring
* @param in is a void* so that callers can pass in both signed & unsigned without a cast * @param in is a void* so that callers can pass in both signed & unsigned without a cast
@ -208,11 +206,6 @@ static inline bool tr_str_is_empty(char const* value)
return value == NULL || *value == '\0'; return value == NULL || *value == '\0';
} }
/**
* @brief like memcmp() but gracefully handles NULL pointers
*/
int tr_memcmp0(void const* lhs, void const* rhs, size_t size);
char* evbuffer_free_to_str(struct evbuffer* buf, size_t* result_len); char* evbuffer_free_to_str(struct evbuffer* buf, size_t* result_len);
/** @brief similar to bsearch() but returns the index of the lower bound */ /** @brief similar to bsearch() but returns the index of the lower bound */

View file

@ -18,7 +18,7 @@
#include "platform.h" /* tr_lock() */ #include "platform.h" /* tr_lock() */
#include "torrent.h" #include "torrent.h"
#include "tr-assert.h" #include "tr-assert.h"
#include "utils.h" /* tr_valloc(), tr_free() */ #include "utils.h" /* tr_malloc(), tr_free() */
#include "verify.h" #include "verify.h"
/*** /***
@ -32,8 +32,6 @@ enum
static bool verifyTorrent(tr_torrent* tor, bool* stopFlag) static bool verifyTorrent(tr_torrent* tor, bool* stopFlag)
{ {
time_t end;
tr_sha1_ctx_t sha;
tr_sys_file_t fd = TR_BAD_SYS_FILE; tr_sys_file_t fd = TR_BAD_SYS_FILE;
uint64_t filePos = 0; uint64_t filePos = 0;
bool changed = false; bool changed = false;
@ -44,10 +42,10 @@ static bool verifyTorrent(tr_torrent* tor, bool* stopFlag)
tr_file_index_t prevFileIndex = !fileIndex; tr_file_index_t prevFileIndex = !fileIndex;
tr_piece_index_t pieceIndex = 0; tr_piece_index_t pieceIndex = 0;
time_t const begin = tr_time(); time_t const begin = tr_time();
size_t const buflen = 1024 * 128; /* 128 KiB buffer */ size_t const buflen = 1024 * 128; // 128 KiB buffer
uint8_t* buffer = tr_valloc(buflen); uint8_t* const buffer = tr_malloc(buflen);
sha = tr_sha1_init(); tr_sha1_ctx_t sha = tr_sha1_init();
tr_logAddTorDbg(tor, "%s", "verifying torrent..."); tr_logAddTorDbg(tor, "%s", "verifying torrent...");
tr_torrentSetChecked(tor, 0); tr_torrentSetChecked(tor, 0);
@ -157,7 +155,7 @@ static bool verifyTorrent(tr_torrent* tor, bool* stopFlag)
free(buffer); free(buffer);
/* stopwatch */ /* stopwatch */
end = tr_time(); time_t const end = tr_time();
tr_logAddTorDbg(tor, "Verification is done. It took %d seconds to verify %" PRIu64 " bytes (%" PRIu64 " bytes per second)", tr_logAddTorDbg(tor, "Verification is done. It took %d seconds to verify %" PRIu64 " bytes (%" PRIu64 " bytes per second)",
(int)(end - begin), tor->info.totalSize, (uint64_t)(tor->info.totalSize / (1 + (end - begin)))); (int)(end - begin), tor->info.totalSize, (uint64_t)(tor->info.totalSize / (1 + (end - begin))));

View file

@ -19,7 +19,7 @@
// NOLINTNEXTLINE(cppcoreguidelines-special-member-functions) // NOLINTNEXTLINE(cppcoreguidelines-special-member-functions)
QAXFACTORY_BEGIN("{1e405fc2-1a3a-468b-8bd6-bfbb58770390}", "{792d1aac-53cc-4dc9-bc29-e5295fdb93a9}") QAXFACTORY_BEGIN("{1e405fc2-1a3a-468b-8bd6-bfbb58770390}", "{792d1aac-53cc-4dc9-bc29-e5295fdb93a9}")
QAXCLASS(InteropObject) QAXCLASS(InteropObject)
QAXFACTORY_END() QAXFACTORY_END() // NOLINT
// These are ActiveQt internals; declaring here as I don't like their WinMain much... // These are ActiveQt internals; declaring here as I don't like their WinMain much...
extern HANDLE qAxInstance; // NOLINT extern HANDLE qAxInstance; // NOLINT

View file

@ -102,7 +102,7 @@ TEST_F(RpcTest, sessionGet)
EXPECT_TRUE(tr_variantDictFindDict(&response, TR_KEY_arguments, &args)); EXPECT_TRUE(tr_variantDictFindDict(&response, TR_KEY_arguments, &args));
// what we expected // what we expected
auto const expected_keys = std::array<tr_quark, 50>{ auto const expected_keys = std::array<tr_quark, 52>{
TR_KEY_alt_speed_down, TR_KEY_alt_speed_down,
TR_KEY_alt_speed_enabled, TR_KEY_alt_speed_enabled,
TR_KEY_alt_speed_time_begin, TR_KEY_alt_speed_time_begin,
@ -110,6 +110,8 @@ TEST_F(RpcTest, sessionGet)
TR_KEY_alt_speed_time_enabled, TR_KEY_alt_speed_time_enabled,
TR_KEY_alt_speed_time_end, TR_KEY_alt_speed_time_end,
TR_KEY_alt_speed_up, TR_KEY_alt_speed_up,
TR_KEY_anti_brute_force_enabled,
TR_KEY_anti_brute_force_threshold,
TR_KEY_blocklist_enabled, TR_KEY_blocklist_enabled,
TR_KEY_blocklist_size, TR_KEY_blocklist_size,
TR_KEY_blocklist_url, TR_KEY_blocklist_url,