2008-11-24 04:21:23 +00:00
|
|
|
/*
|
2008-12-16 00:20:44 +00:00
|
|
|
* This file Copyright (C) 2008 Charles Kerr <charles@transmissionbt.com>
|
2008-11-24 04:21:23 +00:00
|
|
|
*
|
|
|
|
* 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:$
|
|
|
|
*/
|
|
|
|
|
2008-11-25 21:35:17 +00:00
|
|
|
#include <assert.h>
|
2008-11-24 04:21:23 +00:00
|
|
|
#include <limits.h>
|
2008-11-25 21:35:17 +00:00
|
|
|
|
|
|
|
#include "event.h"
|
|
|
|
|
2008-11-24 04:21:23 +00:00
|
|
|
#include "transmission.h"
|
|
|
|
#include "bandwidth.h"
|
2008-12-09 22:05:45 +00:00
|
|
|
#include "crypto.h"
|
2008-11-25 21:35:17 +00:00
|
|
|
#include "iobuf.h"
|
|
|
|
#include "ptrarray.h"
|
2008-11-24 04:21:23 +00:00
|
|
|
#include "utils.h"
|
|
|
|
|
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
HISTORY_MSEC = 2000,
|
|
|
|
INTERVAL_MSEC = HISTORY_MSEC,
|
2008-12-04 03:31:14 +00:00
|
|
|
GRANULARITY_MSEC = 50,
|
2008-11-25 21:35:17 +00:00
|
|
|
HISTORY_SIZE = ( INTERVAL_MSEC / GRANULARITY_MSEC ),
|
|
|
|
MAGIC_NUMBER = 43143
|
2008-11-24 04:21:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct bratecontrol
|
|
|
|
{
|
|
|
|
int newest;
|
|
|
|
struct { uint64_t date, size; } transfers[HISTORY_SIZE];
|
|
|
|
};
|
|
|
|
|
|
|
|
static float
|
2008-11-26 18:00:37 +00:00
|
|
|
getSpeed( const struct bratecontrol * r, int interval_msec )
|
2008-11-24 04:21:23 +00:00
|
|
|
{
|
|
|
|
uint64_t bytes = 0;
|
|
|
|
const uint64_t cutoff = tr_date ( ) - interval_msec;
|
|
|
|
int i = r->newest;
|
|
|
|
|
|
|
|
for( ;; )
|
|
|
|
{
|
|
|
|
if( r->transfers[i].date <= cutoff )
|
|
|
|
break;
|
|
|
|
|
|
|
|
bytes += r->transfers[i].size;
|
|
|
|
|
|
|
|
if( --i == -1 ) i = HISTORY_SIZE - 1; /* circular history */
|
|
|
|
if( i == r->newest ) break; /* we've come all the way around */
|
|
|
|
}
|
|
|
|
|
|
|
|
return ( bytes / 1024.0 ) * ( 1000.0 / interval_msec );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
bytesUsed( struct bratecontrol * r, size_t size )
|
|
|
|
{
|
|
|
|
const uint64_t now = tr_date ( );
|
|
|
|
|
|
|
|
if( r->transfers[r->newest].date + GRANULARITY_MSEC >= now )
|
|
|
|
r->transfers[r->newest].size += size;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if( ++r->newest == HISTORY_SIZE ) r->newest = 0;
|
|
|
|
r->transfers[r->newest].date = now;
|
|
|
|
r->transfers[r->newest].size = size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/******
|
|
|
|
*******
|
|
|
|
*******
|
|
|
|
******/
|
|
|
|
|
2008-11-25 21:35:17 +00:00
|
|
|
struct tr_band
|
2008-11-24 04:21:23 +00:00
|
|
|
{
|
2008-11-28 22:11:41 +00:00
|
|
|
tr_bool isLimited;
|
|
|
|
tr_bool honorParentLimits;
|
2008-11-24 04:21:23 +00:00
|
|
|
size_t bytesLeft;
|
2008-11-25 21:35:17 +00:00
|
|
|
double desiredSpeed;
|
2008-11-24 04:21:23 +00:00
|
|
|
struct bratecontrol raw;
|
|
|
|
struct bratecontrol piece;
|
2008-11-25 21:35:17 +00:00
|
|
|
};
|
2008-11-24 04:21:23 +00:00
|
|
|
|
2008-11-25 21:35:17 +00:00
|
|
|
struct tr_bandwidth
|
|
|
|
{
|
|
|
|
struct tr_band band[2];
|
|
|
|
struct tr_bandwidth * parent;
|
|
|
|
int magicNumber;
|
2008-11-24 04:21:23 +00:00
|
|
|
tr_session * session;
|
2008-11-25 21:35:17 +00:00
|
|
|
tr_ptrArray * children; /* struct tr_bandwidth */
|
|
|
|
tr_ptrArray * iobufs; /* struct tr_iobuf */
|
2008-11-24 04:21:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
2008-11-25 21:35:17 +00:00
|
|
|
static int
|
|
|
|
comparePointers( const void * a, const void * b )
|
|
|
|
{
|
|
|
|
return a - b;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
isBandwidth( const tr_bandwidth * b )
|
|
|
|
{
|
|
|
|
return ( b != NULL ) && ( b->magicNumber == MAGIC_NUMBER );
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
isDirection( const tr_direction dir )
|
|
|
|
{
|
|
|
|
return ( dir == TR_UP ) || ( dir == TR_DOWN );
|
|
|
|
}
|
|
|
|
|
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
2008-11-24 04:21:23 +00:00
|
|
|
tr_bandwidth*
|
2008-11-25 21:35:17 +00:00
|
|
|
tr_bandwidthNew( tr_session * session, tr_bandwidth * parent )
|
2008-11-24 04:21:23 +00:00
|
|
|
{
|
|
|
|
tr_bandwidth * b = tr_new0( tr_bandwidth, 1 );
|
|
|
|
b->session = session;
|
2008-11-25 21:35:17 +00:00
|
|
|
b->children = tr_ptrArrayNew( );
|
|
|
|
b->iobufs = tr_ptrArrayNew( );
|
|
|
|
b->magicNumber = MAGIC_NUMBER;
|
|
|
|
b->band[TR_UP].honorParentLimits = 1;
|
|
|
|
b->band[TR_DOWN].honorParentLimits = 1;
|
|
|
|
tr_bandwidthSetParent( b, parent );
|
2008-11-24 04:21:23 +00:00
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tr_bandwidthFree( tr_bandwidth * b )
|
|
|
|
{
|
2008-11-25 21:35:17 +00:00
|
|
|
assert( isBandwidth( b ) );
|
|
|
|
|
|
|
|
tr_bandwidthSetParent( b, NULL );
|
|
|
|
tr_ptrArrayFree( b->iobufs, NULL );
|
|
|
|
tr_ptrArrayFree( b->children, NULL );
|
|
|
|
b->magicNumber = 0xDEAD;
|
2008-11-24 04:21:23 +00:00
|
|
|
tr_free( b );
|
|
|
|
}
|
|
|
|
|
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
2008-11-25 21:35:17 +00:00
|
|
|
void
|
|
|
|
tr_bandwidthSetParent( tr_bandwidth * b,
|
|
|
|
tr_bandwidth * parent )
|
|
|
|
{
|
|
|
|
assert( isBandwidth( b ) );
|
|
|
|
assert( b != parent );
|
|
|
|
|
|
|
|
if( b->parent )
|
|
|
|
{
|
|
|
|
assert( isBandwidth( b->parent ) );
|
|
|
|
|
|
|
|
tr_ptrArrayRemoveSorted( b->parent->children, b, comparePointers );
|
|
|
|
b->parent= NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( parent )
|
|
|
|
{
|
|
|
|
assert( isBandwidth( parent ) );
|
|
|
|
assert( parent->parent != b );
|
|
|
|
|
|
|
|
tr_ptrArrayInsertSorted( parent->children, b, comparePointers );
|
|
|
|
b->parent = parent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tr_bandwidthHonorParentLimits( tr_bandwidth * b,
|
|
|
|
tr_direction dir,
|
|
|
|
int honorParentLimits )
|
|
|
|
{
|
|
|
|
assert( isBandwidth( b ) );
|
|
|
|
assert( isDirection( dir ) );
|
|
|
|
|
|
|
|
b->band[dir].honorParentLimits = honorParentLimits != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
|
|
|
void
|
|
|
|
tr_bandwidthSetDesiredSpeed( tr_bandwidth * b,
|
|
|
|
tr_direction dir,
|
|
|
|
double desiredSpeed )
|
|
|
|
{
|
|
|
|
assert( isBandwidth( b ) );
|
|
|
|
assert( isDirection( dir ) );
|
|
|
|
|
|
|
|
b->band[dir].desiredSpeed = desiredSpeed;
|
|
|
|
}
|
|
|
|
|
|
|
|
double
|
|
|
|
tr_bandwidthGetDesiredSpeed( const tr_bandwidth * b,
|
|
|
|
tr_direction dir )
|
|
|
|
{
|
|
|
|
assert( isBandwidth( b ) );
|
|
|
|
assert( isDirection( dir ) );
|
|
|
|
|
|
|
|
return b->band[dir].desiredSpeed;
|
|
|
|
}
|
|
|
|
|
2008-11-24 04:21:23 +00:00
|
|
|
void
|
|
|
|
tr_bandwidthSetLimited( tr_bandwidth * b,
|
2008-11-25 21:35:17 +00:00
|
|
|
tr_direction dir,
|
|
|
|
int isLimited )
|
2008-11-24 04:21:23 +00:00
|
|
|
{
|
2008-11-25 21:35:17 +00:00
|
|
|
assert( isBandwidth( b ) );
|
|
|
|
assert( isDirection( dir ) );
|
|
|
|
|
|
|
|
b->band[dir].isLimited = isLimited != 0;
|
2008-11-24 04:21:23 +00:00
|
|
|
}
|
|
|
|
|
2008-11-25 21:35:17 +00:00
|
|
|
int
|
|
|
|
tr_bandwidthIsLimited( const tr_bandwidth * b,
|
|
|
|
tr_direction dir )
|
|
|
|
{
|
|
|
|
assert( isBandwidth( b ) );
|
|
|
|
assert( isDirection( dir ) );
|
|
|
|
|
|
|
|
return b->band[dir].isLimited != 0;
|
|
|
|
}
|
|
|
|
|
2008-11-26 18:54:35 +00:00
|
|
|
#if 0
|
|
|
|
#warning do not check the code in with this enabled
|
2008-11-26 15:58:26 +00:00
|
|
|
#define DEBUG_DIRECTION TR_UP
|
2008-11-25 21:35:17 +00:00
|
|
|
#endif
|
|
|
|
|
2008-12-09 22:05:45 +00:00
|
|
|
static void
|
|
|
|
allocateBandwidth( tr_bandwidth * b,
|
|
|
|
tr_direction dir,
|
|
|
|
int period_msec,
|
2008-12-15 21:22:08 +00:00
|
|
|
tr_ptrArray * iobuf_pool )
|
2008-11-24 04:21:23 +00:00
|
|
|
{
|
2008-11-26 15:58:26 +00:00
|
|
|
assert( isBandwidth( b ) );
|
|
|
|
assert( isDirection( dir ) );
|
|
|
|
|
|
|
|
if( b->band[dir].isLimited )
|
|
|
|
{
|
2008-11-27 18:56:58 +00:00
|
|
|
const double desiredSpeed = b->band[dir].desiredSpeed;
|
2008-12-04 03:31:14 +00:00
|
|
|
const double nextPulseSpeed = desiredSpeed;
|
2008-11-28 21:35:01 +00:00
|
|
|
b->band[dir].bytesLeft = MAX( 0.0, nextPulseSpeed * 1024.0 * period_msec / 1000.0 );
|
2008-11-25 21:35:17 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG_DIRECTION
|
2008-11-26 15:58:26 +00:00
|
|
|
if( dir == DEBUG_DIRECTION )
|
2008-11-26 18:00:37 +00:00
|
|
|
fprintf( stderr, "bandwidth %p currentPieceSpeed(%5.2f of %5.2f) desiredSpeed(%5.2f), allocating %5.2f\n",
|
2008-11-26 15:58:26 +00:00
|
|
|
b, currentSpeed, tr_bandwidthGetRawSpeed( b, dir ), desiredSpeed,
|
2008-11-26 18:00:37 +00:00
|
|
|
b->band[dir].bytesLeft/1024.0 );
|
2008-11-25 21:35:17 +00:00
|
|
|
#endif
|
2008-11-26 15:58:26 +00:00
|
|
|
}
|
2008-11-25 21:35:17 +00:00
|
|
|
|
2008-11-26 15:58:26 +00:00
|
|
|
{
|
2008-12-09 22:05:45 +00:00
|
|
|
int i;
|
|
|
|
const int n = tr_ptrArraySize( b->iobufs );
|
|
|
|
for( i=0; i<n; ++i )
|
2008-12-15 21:22:08 +00:00
|
|
|
tr_ptrArrayAppend( iobuf_pool, tr_ptrArrayNth( b->iobufs, i ) );
|
2008-12-09 22:05:45 +00:00
|
|
|
}
|
|
|
|
|
2008-11-25 21:35:17 +00:00
|
|
|
#ifdef DEBUG_DIRECTION
|
2008-11-26 15:58:26 +00:00
|
|
|
if( ( dir == DEBUG_DIRECTION ) && ( n > 1 ) )
|
2008-11-25 21:35:17 +00:00
|
|
|
fprintf( stderr, "bandwidth %p has %d iobufs\n", b, n );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* all children should reallocate too */
|
|
|
|
if( 1 ) {
|
|
|
|
int i, n=0;
|
|
|
|
struct tr_bandwidth ** children = (struct tr_bandwidth**) tr_ptrArrayPeek( b->children, &n );
|
|
|
|
for( i=0; i<n; ++i )
|
2008-12-15 21:22:08 +00:00
|
|
|
allocateBandwidth( children[i], dir, period_msec, iobuf_pool );
|
2008-11-25 21:35:17 +00:00
|
|
|
}
|
2008-11-24 04:21:23 +00:00
|
|
|
}
|
|
|
|
|
2008-12-09 22:05:45 +00:00
|
|
|
void
|
|
|
|
tr_bandwidthAllocate( tr_bandwidth * b,
|
|
|
|
tr_direction dir,
|
|
|
|
int period_msec )
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
tr_ptrArray * tmp;
|
|
|
|
struct tr_iobuf ** buffers;
|
2008-12-15 21:22:08 +00:00
|
|
|
const size_t chunkSize = 1024; /* arbitrary */
|
2008-12-09 22:05:45 +00:00
|
|
|
|
|
|
|
tmp = tr_ptrArrayNew( );
|
|
|
|
allocateBandwidth( b, dir, period_msec, tmp );
|
2008-12-10 03:44:20 +00:00
|
|
|
buffers = (struct tr_iobuf**) tr_ptrArrayPeek( tmp, &n );
|
2008-12-09 22:05:45 +00:00
|
|
|
|
2008-12-15 21:22:08 +00:00
|
|
|
/* loop through all the peers, reading and writing in small chunks,
|
|
|
|
* until we run out of bandwidth or peers. we do it this way to
|
|
|
|
* prevent one peer from using up all the bandwidth */
|
|
|
|
while( n > 0 )
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for( i=0; i<n; )
|
|
|
|
{
|
|
|
|
int byteCount;
|
|
|
|
if( dir == TR_UP )
|
|
|
|
byteCount = tr_iobuf_flush_output_buffer( buffers[i], chunkSize );
|
|
|
|
else
|
|
|
|
byteCount = tr_iobuf_tryread( buffers[i], chunkSize );
|
|
|
|
if( byteCount == (int)chunkSize )
|
|
|
|
++i;
|
|
|
|
else
|
|
|
|
buffers[i] = buffers[--n];
|
|
|
|
}
|
2008-12-09 22:05:45 +00:00
|
|
|
}
|
|
|
|
|
2008-12-15 21:22:08 +00:00
|
|
|
/* cleanup */
|
2008-12-09 22:05:45 +00:00
|
|
|
tr_ptrArrayFree( tmp, NULL );
|
|
|
|
}
|
|
|
|
|
2008-11-25 21:35:17 +00:00
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
|
|
|
void
|
|
|
|
tr_bandwidthAddBuffer( tr_bandwidth * b,
|
|
|
|
struct tr_iobuf * iobuf )
|
2008-11-24 04:21:23 +00:00
|
|
|
{
|
2008-11-25 21:35:17 +00:00
|
|
|
assert( isBandwidth( b ) );
|
|
|
|
assert( iobuf );
|
2008-11-24 04:21:23 +00:00
|
|
|
|
2008-11-25 21:35:17 +00:00
|
|
|
tr_ptrArrayInsertSorted( b->iobufs, iobuf, comparePointers );
|
|
|
|
}
|
2008-11-24 04:21:23 +00:00
|
|
|
|
2008-11-25 21:35:17 +00:00
|
|
|
void
|
|
|
|
tr_bandwidthRemoveBuffer( tr_bandwidth * b,
|
|
|
|
struct tr_iobuf * iobuf )
|
|
|
|
{
|
|
|
|
assert( isBandwidth( b ) );
|
|
|
|
assert( iobuf );
|
|
|
|
|
|
|
|
tr_ptrArrayRemoveSorted( b->iobufs, iobuf, comparePointers );
|
2008-11-24 04:21:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
|
|
|
|
2008-11-25 21:35:17 +00:00
|
|
|
size_t
|
|
|
|
tr_bandwidthClamp( const tr_bandwidth * b,
|
|
|
|
tr_direction dir,
|
|
|
|
size_t byteCount )
|
|
|
|
{
|
|
|
|
assert( isBandwidth( b ) );
|
|
|
|
assert( isDirection( dir ) );
|
|
|
|
|
|
|
|
if( b )
|
|
|
|
{
|
|
|
|
if( b->band[dir].isLimited )
|
|
|
|
byteCount = MIN( byteCount, b->band[dir].bytesLeft );
|
|
|
|
|
|
|
|
if( b->parent && b->band[dir].honorParentLimits )
|
|
|
|
byteCount = tr_bandwidthClamp( b->parent, dir, byteCount );
|
|
|
|
}
|
|
|
|
|
|
|
|
return byteCount;
|
|
|
|
}
|
|
|
|
|
2008-11-24 04:21:23 +00:00
|
|
|
double
|
2008-11-25 21:35:17 +00:00
|
|
|
tr_bandwidthGetRawSpeed( const tr_bandwidth * b, tr_direction dir )
|
2008-11-24 04:21:23 +00:00
|
|
|
{
|
2008-11-25 21:35:17 +00:00
|
|
|
assert( isBandwidth( b ) );
|
|
|
|
assert( isDirection( dir ) );
|
|
|
|
|
2008-11-26 18:00:37 +00:00
|
|
|
return getSpeed( &b->band[dir].raw, HISTORY_MSEC );
|
2008-11-24 04:21:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
double
|
2008-11-25 21:35:17 +00:00
|
|
|
tr_bandwidthGetPieceSpeed( const tr_bandwidth * b, tr_direction dir )
|
2008-11-24 04:21:23 +00:00
|
|
|
{
|
2008-11-25 21:35:17 +00:00
|
|
|
assert( isBandwidth( b ) );
|
|
|
|
assert( isDirection( dir ) );
|
|
|
|
|
2008-11-26 18:00:37 +00:00
|
|
|
return getSpeed( &b->band[dir].piece, HISTORY_MSEC );
|
2008-11-24 04:21:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tr_bandwidthUsed( tr_bandwidth * b,
|
2008-11-25 21:35:17 +00:00
|
|
|
tr_direction dir,
|
2008-11-24 04:21:23 +00:00
|
|
|
size_t byteCount,
|
|
|
|
int isPieceData )
|
|
|
|
{
|
2008-11-25 21:35:17 +00:00
|
|
|
struct tr_band * band;
|
2008-11-26 15:58:26 +00:00
|
|
|
size_t oldBytesLeft;
|
2008-11-25 21:35:17 +00:00
|
|
|
|
|
|
|
assert( isBandwidth( b ) );
|
|
|
|
assert( isDirection( dir ) );
|
|
|
|
|
|
|
|
band = &b->band[dir];
|
2008-11-24 04:21:23 +00:00
|
|
|
|
2008-11-26 15:58:26 +00:00
|
|
|
oldBytesLeft = band->bytesLeft;
|
|
|
|
|
2008-11-25 21:35:17 +00:00
|
|
|
if( band->isLimited && isPieceData )
|
|
|
|
band->bytesLeft -= MIN( band->bytesLeft, byteCount );
|
|
|
|
|
|
|
|
#ifdef DEBUG_DIRECTION
|
2008-11-26 15:58:26 +00:00
|
|
|
if( ( dir == DEBUG_DIRECTION ) && ( band->isLimited ) )
|
|
|
|
fprintf( stderr, "%p consumed %5zu bytes of %5s data... was %6zu, now %6zu left\n",
|
|
|
|
b, byteCount, (isPieceData?"piece":"raw"), oldBytesLeft, band->bytesLeft );
|
2008-11-25 21:35:17 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
bytesUsed( &band->raw, byteCount );
|
2008-11-24 04:21:23 +00:00
|
|
|
|
|
|
|
if( isPieceData )
|
2008-11-25 21:35:17 +00:00
|
|
|
bytesUsed( &band->piece, byteCount );
|
|
|
|
|
|
|
|
if( b->parent != NULL )
|
|
|
|
tr_bandwidthUsed( b->parent, dir, byteCount, isPieceData );
|
2008-11-24 04:21:23 +00:00
|
|
|
}
|