transmission/libtransmission/blocklist.c

268 lines
5.4 KiB
C
Raw Normal View History

/*
* This file Copyright (C) 2008 Charles Kerr <charles@rebelbase.com>
*
* This file is licensed by the GPL version 2. Works owned by the
* Transmission project are granted a special exemption to clause 2(b)
* so that the bulk of its code can remain under the MIT license.
* This exemption does not extend to derived works not owned by
* the Transmission project.
*
* $Id:$
*/
#include <stdio.h>
#include <stdlib.h> /* free */
#include <string.h>
#include <sys/mman.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include "ggets.h"
#include "transmission.h"
2008-03-30 13:22:45 +00:00
#include "blocklist.h"
#include "net.h" /* tr_netResolve() */
#include "utils.h"
/***
**** PRIVATE
***/
struct tr_ip_range
{
2008-03-30 13:22:45 +00:00
uint32_t begin;
uint32_t end;
};
2008-03-30 13:22:45 +00:00
struct tr_blocklist
{
unsigned int isEnabled : 1;
int fd;
2008-03-30 13:22:45 +00:00
size_t ruleCount;
size_t byteCount;
char * filename;
struct tr_ip_range * rules;
2008-03-30 13:22:45 +00:00
};
static void
2008-03-30 13:22:45 +00:00
blocklistClose( tr_blocklist * b )
{
2008-03-30 13:22:45 +00:00
if( b->rules )
{
2008-03-30 13:22:45 +00:00
munmap( b->rules, b->byteCount );
close( b->fd );
b->rules = NULL;
b->ruleCount = 0;
b->byteCount = 0;
b->fd = -1;
}
}
static void
2008-03-30 13:22:45 +00:00
blocklistLoad( tr_blocklist * b )
{
int fd;
struct stat st;
2008-03-30 13:52:55 +00:00
const char * err_fmt = _( "Couldn't read \"%1$s\": %2$s" );
2008-03-30 13:22:45 +00:00
blocklistClose( b );
2008-03-30 13:22:45 +00:00
fd = open( b->filename, O_RDONLY );
if( fd == -1 ) {
2008-03-30 13:52:55 +00:00
tr_err( err_fmt, b->filename, tr_strerror(errno) );
return;
}
if( fstat( fd, &st ) == -1 ) {
2008-03-30 13:52:55 +00:00
tr_err( err_fmt, b->filename, tr_strerror(errno) );
close( fd );
return;
}
2008-03-30 13:22:45 +00:00
b->rules = mmap( 0, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0 );
if( !b->rules ) {
2008-03-30 13:52:55 +00:00
tr_err( err_fmt, b->filename, tr_strerror(errno) );
close( fd );
return;
}
2008-03-30 13:22:45 +00:00
b->byteCount = st.st_size;
b->ruleCount = st.st_size / sizeof( struct tr_ip_range );
b->fd = fd;
tr_inf( _( "Blocklist contains %'d entries" ), b->ruleCount );
}
2008-03-30 00:00:28 +00:00
static void
blocklistEnsureLoaded( tr_blocklist * b )
2008-03-30 00:00:28 +00:00
{
2008-03-30 13:22:45 +00:00
if( !b->rules )
blocklistLoad( b );
2008-03-30 00:00:28 +00:00
}
static int
compareAddressToRange( const void * va, const void * vb )
{
const uint32_t * a = va;
const struct tr_ip_range * b = vb;
if( *a < b->begin ) return -1;
if( *a > b->end ) return 1;
return 0;
}
2008-03-30 13:22:45 +00:00
static void
blocklistDelete( tr_blocklist * b )
{
blocklistClose( b );
unlink( b->filename );
}
/***
**** PACKAGE-VISIBLE
2008-03-30 13:22:45 +00:00
***/
tr_blocklist *
_tr_blocklistNew( const char * filename, int isEnabled )
2008-03-30 13:22:45 +00:00
{
tr_blocklist * b;
b = tr_new0( tr_blocklist, 1 );
b->fd = -1;
b->filename = tr_strdup( filename );
b->isEnabled = isEnabled;
return b;
}
void
_tr_blocklistFree( tr_blocklist * b )
2008-03-30 13:22:45 +00:00
{
blocklistClose( b );
tr_free( b->filename );
tr_free( b );
}
int
_tr_blocklistGetRuleCount( tr_blocklist * b )
{
blocklistEnsureLoaded( b );
2008-03-30 13:22:45 +00:00
return b->ruleCount;
}
int
_tr_blocklistIsEnabled( tr_blocklist * b )
2008-03-30 13:22:45 +00:00
{
return b->isEnabled;
}
void
_tr_blocklistSetEnabled( tr_blocklist * b, int isEnabled )
{
b->isEnabled = isEnabled ? 1 : 0;
}
int
_tr_blocklistHasAddress( tr_blocklist * b, const struct in_addr * addr )
{
uint32_t needle;
const struct tr_ip_range * range;
2008-03-30 13:22:45 +00:00
if( !b->isEnabled )
return 0;
blocklistEnsureLoaded( b );
2008-03-30 13:22:45 +00:00
if( !b->rules )
return 0;
needle = ntohl( addr->s_addr );
range = bsearch( &needle,
2008-03-30 13:22:45 +00:00
b->rules,
b->ruleCount,
sizeof( struct tr_ip_range ),
compareAddressToRange );
return range != NULL;
}
int
_tr_blocklistExists( const tr_blocklist * b )
{
struct stat st;
return !stat( b->filename, &st );
}
2008-03-30 00:00:28 +00:00
int
_tr_blocklistSetContent( tr_blocklist * b,
const char * filename )
{
FILE * in;
FILE * out;
char * line;
int lineCount = 0;
2008-03-30 13:52:55 +00:00
const char * err_fmt = _( "Couldn't read \"%1$s\": %2$s" );
2008-03-30 13:22:45 +00:00
if( !filename ) {
blocklistDelete( b );
2008-03-30 00:00:28 +00:00
return 0;
}
in = fopen( filename, "r" );
if( !in ) {
2008-03-30 13:52:55 +00:00
tr_err( err_fmt, filename, tr_strerror(errno) );
2008-03-30 00:00:28 +00:00
return 0;
}
2008-03-30 13:22:45 +00:00
blocklistClose( b );
2008-03-30 13:22:45 +00:00
out = fopen( b->filename, "wb+" );
if( !out ) {
2008-03-30 13:52:55 +00:00
tr_err( err_fmt, b->filename, tr_strerror( errno ) );
fclose( in );
2008-03-30 00:00:28 +00:00
return 0;
}
while( !fggets( &line, in ) )
{
char * rangeBegin;
char * rangeEnd;
struct in_addr in_addr;
struct tr_ip_range range;
rangeBegin = strrchr( line, ':' );
if( !rangeBegin ) { free(line); continue; }
++rangeBegin;
rangeEnd = strchr( rangeBegin, '-' );
if( !rangeEnd ) { free(line); continue; }
*rangeEnd++ = '\0';
if( tr_netResolve( rangeBegin, &in_addr ) )
tr_err( "blocklist skipped invalid address [%s]\n", rangeBegin );
range.begin = ntohl( in_addr.s_addr );
if( tr_netResolve( rangeEnd, &in_addr ) )
tr_err( "blocklist skipped invalid address [%s]\n", rangeEnd );
range.end = ntohl( in_addr.s_addr );
free( line );
if( fwrite( &range, sizeof(struct tr_ip_range), 1, out ) != 1 ) {
2008-03-30 13:52:55 +00:00
tr_err( _( "Couldn't save file \"%1$s\": %2$s" ), b->filename, tr_strerror( errno ) );
break;
}
++lineCount;
}
tr_inf( _( "Blocklist updated with %'d entries" ), lineCount );
fclose( out );
fclose( in );
2008-03-30 13:22:45 +00:00
blocklistLoad( b );
2008-03-30 00:00:28 +00:00
return lineCount;
}