From 853dc33be26a8c5fbad59f0193909366cdb34c2c Mon Sep 17 00:00:00 2001 From: erdgeist <> Date: Thu, 1 Nov 2007 20:13:03 +0000 Subject: Allow for more than one admin ip address --- opentracker.c | 14 +++++++++++--- trackerlogic.h | 3 +++ 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/opentracker.c b/opentracker.c index 9c36361..00210d2 100644 --- a/opentracker.c +++ b/opentracker.c @@ -40,7 +40,8 @@ static unsigned long long ot_full_scrape_size = 0; static time_t ot_start_time; static const size_t SUCCESS_HTTP_HEADER_LENGTH = 80; static const size_t SUCCESS_HTTP_SIZE_OFF = 17; -static char g_adminip[4] = {0,0,0,0}; +static uint32_t g_adminip_addresses[OT_ADMINIP_MAX]; +static unsigned int g_adminip_count = 0; time_t g_now; #if defined ( WANT_BLACKLISTING ) && defined (WANT_CLOSED_TRACKER ) @@ -90,7 +91,8 @@ struct http_data { unsigned char ip[4]; STRUCT_HTTP_FLAG flag; }; -#define NOTBLESSED( h ) byte_diff( &h->ip, 4, g_adminip ) +#define NOTBLESSED( h ) (!bsearch( &h->ip, g_adminip_addresses, g_adminip_count, 4, ot_ip_compare )) +static int ot_ip_compare( const void *a, const void *b ) { return memcmp( a,b,4 ); } /* Prototypes */ @@ -954,7 +956,6 @@ int main( int argc, char **argv ) { "h" ) ) { case -1 : scanon = 0; break; case 'i': scan_ip4( optarg, serverip ); break; - case 'A': scan_ip4( optarg, g_adminip ); break; #ifdef WANT_BLACKLISTING case 'b': accesslist_filename = optarg; break; #elif defined( WANT_CLOSED_TRACKER ) @@ -963,12 +964,19 @@ int main( int argc, char **argv ) { case 'p': ot_try_bind( serverip, (uint16)atol( optarg ), 1 ); break; case 'P': ot_try_bind( serverip, (uint16)atol( optarg ), 0 ); break; case 'd': serverdir = optarg; break; + case 'A': + if( g_adminip_count < OT_ADMINIP_MAX ) + scan_ip4( optarg, (char*)(g_adminip_addresses + g_adminip_count++) ); + break; case 'h': help( argv[0] ); exit( 0 ); default: case '?': usage( argv[0] ); exit( 1 ); } } + /* Sort our admin ips for quick lookup */ + qsort( g_adminip_addresses, g_adminip_count, 4, ot_ip_compare ); + /* Bind to our default tcp/udp ports */ if( !ot_sockets_count ) { ot_try_bind( serverip, 6969, 1 ); diff --git a/trackerlogic.h b/trackerlogic.h index ccd3465..9cbffc1 100644 --- a/trackerlogic.h +++ b/trackerlogic.h @@ -42,6 +42,9 @@ typedef struct { #define OT_CLIENT_REQUEST_INTERVAL_RANDOM ( OT_CLIENT_REQUEST_INTERVAL - OT_CLIENT_REQUEST_VARIATION/2 + (int)( random( ) % OT_CLIENT_REQUEST_VARIATION ) ) +/* Number of tracker admin ip addresses allowed */ +#define OT_ADMINIP_MAX 64 + /* We maintain a list of 4096 pointers to sorted list of ot_torrent structs Sort key is, of course, its hash */ #define OT_BUCKET_COUNT 1024 -- cgit v1.2.3