2014-01-19 01:09:44 +00:00
|
|
|
/*
|
|
|
|
* This file Copyright (C) 2013-2014 Mnemosyne LLC
|
|
|
|
*
|
2014-01-21 03:10:30 +00:00
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
2014-01-19 01:09:44 +00:00
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2008-03-29 21:05:51 +00:00
|
|
|
#include <stdio.h>
|
2017-04-21 07:40:57 +00:00
|
|
|
#include <string.h> /* strlen() */
|
2013-01-21 21:11:00 +00:00
|
|
|
|
2008-03-29 21:05:51 +00:00
|
|
|
#include "transmission.h"
|
|
|
|
#include "blocklist.h"
|
2014-07-08 00:08:43 +00:00
|
|
|
#include "file.h"
|
2008-03-29 21:05:51 +00:00
|
|
|
#include "net.h"
|
2013-01-21 21:11:00 +00:00
|
|
|
#include "session.h" /* tr_sessionIsAddressBlocked() */
|
2008-03-29 21:05:51 +00:00
|
|
|
#include "utils.h"
|
|
|
|
|
2012-08-18 16:07:05 +00:00
|
|
|
#include "libtransmission-test.h"
|
2008-03-29 21:05:51 +00:00
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
static char const* contents1 =
|
2017-04-19 12:04:45 +00:00
|
|
|
"Austin Law Firm:216.16.1.144-216.16.1.151\n"
|
|
|
|
"Sargent Controls and Aerospace:216.19.18.0-216.19.18.255\n"
|
|
|
|
"Corel Corporation:216.21.157.192-216.21.157.223\n"
|
|
|
|
"Fox Speed Channel:216.79.131.192-216.79.131.223\n";
|
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
static char const* contents2 =
|
2017-04-19 12:04:45 +00:00
|
|
|
"Austin Law Firm:216.16.1.144-216.16.1.151\n"
|
|
|
|
"Sargent Controls and Aerospace:216.19.18.0-216.19.18.255\n"
|
|
|
|
"Corel Corporation:216.21.157.192-216.21.157.223\n"
|
|
|
|
"Fox Speed Channel:216.79.131.192-216.79.131.223\n"
|
|
|
|
"Evilcorp:216.88.88.0-216.88.88.255\n";
|
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
static void create_text_file(char const* path, char const* contents)
|
2008-03-29 21:05:51 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
tr_sys_file_t fd;
|
|
|
|
char* dir;
|
2013-01-21 21:11:00 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
dir = tr_sys_path_dirname(path, NULL);
|
|
|
|
tr_sys_dir_create(dir, TR_SYS_DIR_CREATE_PARENTS, 0700, NULL);
|
|
|
|
tr_free(dir);
|
2013-01-21 21:11:00 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
fd = tr_sys_file_open(path, TR_SYS_FILE_WRITE | TR_SYS_FILE_CREATE | TR_SYS_FILE_TRUNCATE, 0600, NULL);
|
|
|
|
tr_sys_file_write(fd, contents, strlen(contents), NULL, NULL);
|
|
|
|
tr_sys_file_close(fd, NULL);
|
2013-02-01 05:57:47 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
libttest_sync();
|
2013-01-21 21:11:00 +00:00
|
|
|
}
|
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
static bool address_is_blocked(tr_session* session, char const* address_str)
|
2013-01-21 21:11:00 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
struct tr_address addr;
|
|
|
|
tr_address_from_string(&addr, address_str);
|
|
|
|
return tr_sessionIsAddressBlocked(session, &addr);
|
2008-03-29 21:05:51 +00:00
|
|
|
}
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static int test_parsing(void)
|
2008-03-29 21:05:51 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
char* path;
|
|
|
|
tr_session* session;
|
|
|
|
|
|
|
|
/* init the session */
|
|
|
|
session = libttest_session_init(NULL);
|
|
|
|
check(!tr_blocklistExists(session));
|
2017-05-29 20:22:36 +00:00
|
|
|
check_int(tr_blocklistGetRuleCount(session), ==, 0);
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
/* init the blocklist */
|
|
|
|
path = tr_buildPath(tr_sessionGetConfigDir(session), "blocklists", "level1", NULL);
|
|
|
|
create_text_file(path, contents1);
|
|
|
|
tr_free(path);
|
|
|
|
tr_sessionReloadBlocklists(session);
|
|
|
|
check(tr_blocklistExists(session));
|
2017-05-29 20:22:36 +00:00
|
|
|
check_int(tr_blocklistGetRuleCount(session), ==, 4);
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
/* enable the blocklist */
|
|
|
|
check(!tr_blocklistIsEnabled(session));
|
|
|
|
tr_blocklistSetEnabled(session, true);
|
|
|
|
check(tr_blocklistIsEnabled(session));
|
|
|
|
|
|
|
|
/* test blocked addresses */
|
|
|
|
check(!address_is_blocked(session, "216.16.1.143"));
|
|
|
|
check(address_is_blocked(session, "216.16.1.144"));
|
|
|
|
check(address_is_blocked(session, "216.16.1.145"));
|
|
|
|
check(address_is_blocked(session, "216.16.1.146"));
|
|
|
|
check(address_is_blocked(session, "216.16.1.147"));
|
|
|
|
check(address_is_blocked(session, "216.16.1.148"));
|
|
|
|
check(address_is_blocked(session, "216.16.1.149"));
|
|
|
|
check(address_is_blocked(session, "216.16.1.150"));
|
|
|
|
check(address_is_blocked(session, "216.16.1.151"));
|
|
|
|
check(!address_is_blocked(session, "216.16.1.152"));
|
|
|
|
check(!address_is_blocked(session, "216.16.1.153"));
|
|
|
|
check(!address_is_blocked(session, "217.0.0.1"));
|
|
|
|
check(!address_is_blocked(session, "255.0.0.1"));
|
|
|
|
|
|
|
|
/* cleanup */
|
|
|
|
libttest_session_close(session);
|
|
|
|
return 0;
|
2008-03-29 21:05:51 +00:00
|
|
|
}
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2013-01-21 21:11:00 +00:00
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
2012-08-18 16:07:05 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
static int test_updating(void)
|
2013-01-21 21:11:00 +00:00
|
|
|
{
|
2017-04-19 12:04:45 +00:00
|
|
|
char* path;
|
|
|
|
tr_session* session;
|
|
|
|
|
|
|
|
/* init the session */
|
|
|
|
session = libttest_session_init(NULL);
|
|
|
|
path = tr_buildPath(tr_sessionGetConfigDir(session), "blocklists", "level1", NULL);
|
|
|
|
|
|
|
|
/* no blocklist to start with... */
|
2017-05-29 20:22:36 +00:00
|
|
|
check_int(tr_blocklistGetRuleCount(session), ==, 0);
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
/* test that updated source files will get loaded */
|
|
|
|
create_text_file(path, contents1);
|
|
|
|
tr_sessionReloadBlocklists(session);
|
2017-05-29 20:22:36 +00:00
|
|
|
check_int(tr_blocklistGetRuleCount(session), ==, 4);
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
/* test that updated source files will get loaded */
|
|
|
|
create_text_file(path, contents2);
|
|
|
|
tr_sessionReloadBlocklists(session);
|
2017-05-29 20:22:36 +00:00
|
|
|
check_int(tr_blocklistGetRuleCount(session), ==, 5);
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
/* test that updated source files will get loaded */
|
|
|
|
create_text_file(path, contents1);
|
|
|
|
tr_sessionReloadBlocklists(session);
|
2017-05-29 20:22:36 +00:00
|
|
|
check_int(tr_blocklistGetRuleCount(session), ==, 4);
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
/* ensure that new files, if bad, get skipped */
|
|
|
|
create_text_file(path, "# nothing useful\n");
|
|
|
|
tr_sessionReloadBlocklists(session);
|
2017-05-29 20:22:36 +00:00
|
|
|
check_int(tr_blocklistGetRuleCount(session), ==, 4);
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
/* cleanup */
|
|
|
|
libttest_session_close(session);
|
|
|
|
tr_free(path);
|
|
|
|
return 0;
|
2013-01-21 21:11:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
int main(void)
|
2013-01-21 21:11:00 +00:00
|
|
|
{
|
2017-04-20 16:02:19 +00:00
|
|
|
testFunc const tests[] =
|
2017-04-19 12:04:45 +00:00
|
|
|
{
|
|
|
|
test_parsing,
|
|
|
|
test_updating
|
|
|
|
};
|
2013-01-21 21:11:00 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
return runTests(tests, NUM_TESTS(tests));
|
2013-01-21 21:11:00 +00:00
|
|
|
}
|