transmission/libtransmission/torrent.c

1403 lines
37 KiB
C
Raw Normal View History

2007-01-19 08:36:49 +00:00
/******************************************************************************
* $Id$
*
* Copyright (c) 2005-2007 Transmission authors and contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*****************************************************************************/
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
2007-01-19 08:36:49 +00:00
#include "transmission.h"
#include "fastresume.h"
#include "trcompat.h" /* for strlcpy */
2007-07-09 20:10:42 +00:00
#include "metainfo.h"
#include "net.h" /* tr_netNtop */
2007-01-19 08:40:06 +00:00
#include "shared.h"
2007-01-19 08:36:49 +00:00
/***
**** LOCKS
***/
void
tr_torrentReaderLock( const tr_torrent_t * tor )
{
tr_rwReaderLock ( (tr_rwlock_t*)&tor->lock );
}
void
tr_torrentReaderUnlock( const tr_torrent_t * tor )
{
tr_rwReaderUnlock ( (tr_rwlock_t*)&tor->lock );
}
void
tr_torrentWriterLock( tr_torrent_t * tor )
{
tr_rwWriterLock ( &tor->lock );
}
void
tr_torrentWriterUnlock( tr_torrent_t * tor )
{
tr_rwWriterUnlock ( &tor->lock );
}
/***
**** PER-TORRENT UL / DL SPEEDS
***/
2007-01-19 08:36:49 +00:00
void
tr_torrentEnableMaxSpeedUL( tr_torrent_t * tor, char doThrottle )
2007-01-19 08:36:49 +00:00
{
tor->customUploadLimit = doThrottle;
}
void
tr_torrentEnableMaxSpeedDL( tr_torrent_t * tor, char doThrottle )
{
tor->customDownloadLimit = doThrottle;
2007-01-19 08:36:49 +00:00
}
void
tr_torrentSetMaxSpeedUL( tr_torrent_t * tor, int KiB_sec )
2007-01-19 08:36:49 +00:00
{
tr_rcSetLimit( tor->upload, KiB_sec );
2007-01-19 08:36:49 +00:00
}
void
tr_torrentSetMaxSpeedDL( tr_torrent_t * tor, int KiB_sec )
{
tr_rcSetLimit( tor->download, KiB_sec );
}
int
tr_torrentIsMaxSpeedEnabledUL( const tr_torrent_t * tor )
{
return tor->customUploadLimit;
}
int
tr_torrentIsMaxSpeedEnabledDL( const tr_torrent_t * tor )
{
return tor->customDownloadLimit;
}
int
tr_torrentGetMaxSpeedUL( const tr_torrent_t * tor )
{
return tr_rcGetLimit( tor->upload );
}
int
tr_torrentGetMaxSpeedDL( const tr_torrent_t * tor )
2007-01-19 08:36:49 +00:00
{
return tr_rcGetLimit( tor->download );
2007-01-19 08:36:49 +00:00
}
/***
****
**** TORRENT INSTANTIATION
****
***/
2007-04-02 20:38:23 +00:00
static int
getBytePiece( const tr_info_t * info, uint64_t byteOffset )
{
assert( info != NULL );
assert( info->pieceSize != 0 );
2007-04-02 20:38:23 +00:00
return byteOffset / info->pieceSize;
2007-04-02 20:38:23 +00:00
}
static void
initFilePieces ( tr_info_t * info, int fileIndex )
2007-04-02 20:38:23 +00:00
{
tr_file_t * file = &info->files[fileIndex];
uint64_t firstByte, lastByte;
2007-04-02 20:38:23 +00:00
assert( info != NULL );
assert( 0<=fileIndex && fileIndex<info->fileCount );
2007-01-19 08:36:49 +00:00
file = &info->files[fileIndex];
firstByte = file->offset;
lastByte = firstByte + (file->length ? file->length-1 : 0);
file->firstPiece = getBytePiece( info, firstByte );
file->lastPiece = getBytePiece( info, lastByte );
tr_dbg( "file #%d is in pieces [%d...%d] (%s)", fileIndex, file->firstPiece, file->lastPiece, file->name );
}
static tr_priority_t
calculatePiecePriority ( const tr_torrent_t * tor,
int piece )
{
int i;
tr_priority_t priority = TR_PRI_NORMAL;
for( i=0; i<tor->info.fileCount; ++i )
2007-01-19 08:36:49 +00:00
{
const tr_file_t * file = &tor->info.files[i];
if ( file->firstPiece <= piece
&& file->lastPiece >= piece
&& file->priority > priority)
priority = file->priority;
2007-01-19 08:36:49 +00:00
}
return priority;
2007-01-19 08:36:49 +00:00
}
static void
tr_torrentInitFilePieces( tr_torrent_t * tor )
2007-01-19 08:36:49 +00:00
{
int i;
uint64_t offset = 0;
2007-04-02 20:38:23 +00:00
assert( tor != NULL );
2007-01-19 08:36:49 +00:00
for( i=0; i<tor->info.fileCount; ++i ) {
tor->info.files[i].offset = offset;
offset += tor->info.files[i].length;
initFilePieces( &tor->info, i );
2007-01-19 08:36:49 +00:00
}
for( i=0; i<tor->info.pieceCount; ++i )
tor->info.pieces[i].priority = calculatePiecePriority( tor, i );
2007-01-19 08:36:49 +00:00
}
static void torrentThreadLoop( void * );
static void
torrentRealInit( tr_handle_t * h,
tr_torrent_t * tor,
const char * destination,
int flags )
2007-01-19 08:36:49 +00:00
{
int i;
char name[512];
2007-01-19 08:36:49 +00:00
tor->info.flags |= flags;
2007-01-19 08:36:49 +00:00
tr_sharedLock( h->shared );
tor->destination = tr_strdup( destination );
tr_torrentInitFilePieces( tor );
tor->handle = h;
tor->key = h->key;
2007-03-23 08:28:01 +00:00
tor->azId = h->azId;
tor->hasChangedState = -1;
2007-01-19 08:36:49 +00:00
/* Escaped info hash for HTTP queries */
for( i = 0; i < SHA_DIGEST_LENGTH; i++ )
{
2007-03-12 00:04:11 +00:00
snprintf( &tor->escapedHashString[3*i],
sizeof( tor->escapedHashString ) - 3 * i,
"%%%02x", tor->info.hash[i] );
2007-01-19 08:36:49 +00:00
}
tor->pexDisabled = 0;
2007-01-19 08:36:49 +00:00
/* Block size: usually 16 ko, or less if we have to */
tor->blockSize = MIN( tor->info.pieceSize, 1 << 14 );
tor->blockCount = ( tor->info.totalSize + tor->blockSize - 1 ) /
2007-01-19 08:36:49 +00:00
tor->blockSize;
tor->completion = tr_cpInit( tor );
tor->thread = THREAD_EMPTY;
tr_rwInit( &tor->lock );
2007-01-19 08:36:49 +00:00
tor->upload = tr_rcInit();
tor->download = tr_rcInit();
tor->swarmspeed = tr_rcInit();
/* We have a new torrent */
tor->publicPort = tr_sharedGetPublicPort( h->shared );
2007-01-19 08:36:49 +00:00
tr_sharedUnlock( h->shared );
if( !h->isPortSet )
2007-01-19 08:36:49 +00:00
tr_setBindPort( h, TR_DEFAULT_PORT );
assert( !tor->downloadedCur );
assert( !tor->uploadedCur );
tor->error = TR_OK;
tor->runStatus = flags & TR_FLAG_PAUSED ? TR_RUN_STOPPED : TR_RUN_RUNNING;
tor->recheckFlag = tr_ioCheckFiles( tor, TR_RECHECK_FAST );
tor->cpStatus = tr_cpGetStatus( tor->completion );
2007-01-19 08:36:49 +00:00
tr_sharedLock( h->shared );
tor->next = h->torrentList;
h->torrentList = tor;
h->torrentCount++;
tr_sharedUnlock( h->shared );
2007-01-19 08:36:49 +00:00
snprintf( name, sizeof( name ), "torrent %p (%s)", tor, tor->info.name );
tr_threadCreate( &tor->thread, torrentThreadLoop, tor, name );
}
static int
pathIsInUse ( const tr_handle_t * h,
const char * destination,
const char * name )
{
const tr_torrent_t * tor;
for( tor=h->torrentList; tor; tor=tor->next )
if( !strcmp( destination, tor->destination )
&& !strcmp( name, tor->info.name ) )
return TRUE;
return FALSE;
}
static int
hashExists( const tr_handle_t * h,
const uint8_t * hash )
{
const tr_torrent_t * tor;
for( tor=h->torrentList; tor; tor=tor->next )
if( !memcmp( hash, tor->info.hash, SHA_DIGEST_LENGTH ) )
return TRUE;
return FALSE;
}
static int
infoCanAdd( const tr_handle_t * h,
const char * destination,
const tr_info_t * info )
{
if( hashExists( h, info->hash ) )
return TR_EDUPLICATE;
if( destination && pathIsInUse( h, destination, info->name ) )
return TR_EDUPLICATE;
return TR_OK;
2007-01-19 08:36:49 +00:00
}
int
tr_torrentParse( const tr_handle_t * h,
const char * path,
const char * destination,
tr_info_t * setme_info )
{
int ret;
tr_info_t tmp;
if( setme_info == NULL )
setme_info = &tmp;
memset( setme_info, 0, sizeof( tr_info_t ) );
ret = tr_metainfoParseFile( setme_info, h->tag, path, FALSE );
if( ret == TR_OK )
ret = infoCanAdd( h, destination, setme_info );
if( setme_info == &tmp )
tr_metainfoFree( &tmp );
return ret;
}
tr_torrent_t *
tr_torrentInit( tr_handle_t * h,
const char * path,
const char * destination,
int flags,
int * error )
2007-01-19 08:36:49 +00:00
{
int val;
tr_torrent_t * tor = NULL;
2007-06-28 00:04:42 +00:00
if(( val = tr_torrentParse( h, path, destination, NULL )))
*error = val;
else if(!(( tor = tr_new0( tr_torrent_t, 1 ))))
*error = TR_EOTHER;
else {
tr_metainfoParseFile( &tor->info, h->tag, path, TR_FLAG_SAVE & flags );
torrentRealInit( h, tor, destination, flags );
}
return tor;
}
2007-06-28 23:35:02 +00:00
int
tr_torrentParseHash( const tr_handle_t * h,
const char * hashStr,
const char * destination,
tr_info_t * setme_info )
2007-01-19 08:36:49 +00:00
{
int ret;
tr_info_t tmp;
if( setme_info == NULL )
setme_info = &tmp;
memset( setme_info, 0, sizeof( tr_info_t ) );
ret = tr_metainfoParseHash( setme_info, h->tag, hashStr );
2007-01-19 08:36:49 +00:00
if( ret == TR_OK )
ret = infoCanAdd( h, destination, setme_info );
if( setme_info == &tmp )
tr_metainfoFree( &tmp );
return ret;
}
2007-01-19 08:36:49 +00:00
tr_torrent_t *
tr_torrentInitSaved( tr_handle_t * h,
const char * hashStr,
const char * destination,
int flags,
int * error )
{
int val;
tr_torrent_t * tor = NULL;
if(( val = tr_torrentParseHash( h, hashStr, destination, NULL )))
*error = val;
else if(!(( tor = tr_new0( tr_torrent_t, 1 ))))
*error = TR_EOTHER;
else {
tr_metainfoParseHash( &tor->info, h->tag, hashStr );
torrentRealInit( h, tor, destination, (TR_FLAG_SAVE|flags) );
}
2007-01-19 08:36:49 +00:00
return tor;
}
static int
tr_torrentParseData( const tr_handle_t * h,
const uint8_t * data,
size_t size,
const char * destination,
tr_info_t * setme_info )
{
int ret;
tr_info_t tmp;
if( setme_info == NULL )
setme_info = &tmp;
memset( setme_info, 0, sizeof( tr_info_t ) );
ret = tr_metainfoParseData( setme_info, h->tag, data, size, FALSE );
if( ret == TR_OK )
ret = infoCanAdd( h, destination, setme_info );
if( setme_info == &tmp )
tr_metainfoFree( &tmp );
return ret;
}
tr_torrent_t *
tr_torrentInitData( tr_handle_t * h,
const uint8_t * data,
size_t size,
const char * destination,
int flags,
int * error )
{
int val;
tr_torrent_t * tor = NULL;
if(( val = tr_torrentParseData( h, data, size, destination, NULL )))
*error = val;
else if(!(( tor = tr_new0( tr_torrent_t, 1 ))))
*error = TR_EOTHER;
else {
tr_metainfoParseData( &tor->info, h->tag, data, size, TR_FLAG_SAVE & flags );
torrentRealInit( h, tor, destination, flags );
}
return tor;
}
2007-06-30 13:36:58 +00:00
const tr_info_t *
tr_torrentInfo( const tr_torrent_t * tor )
{
return &tor->info;
2007-01-19 08:36:49 +00:00
}
/***
****
***/
#if 0
int tr_torrentScrape( tr_torrent_t * tor, int * s, int * l, int * d )
2007-01-19 08:36:49 +00:00
{
return tr_trackerScrape( tor, s, l, d );
2007-01-19 08:36:49 +00:00
}
#endif
2007-01-19 08:36:49 +00:00
void tr_torrentSetFolder( tr_torrent_t * tor, const char * path )
2007-01-19 08:36:49 +00:00
{
tr_free( tor->destination );
tor->destination = tr_strdup( path );
if( !tor->ioLoaded )
tor->ioLoaded = tr_ioLoadResume( tor ) == TR_OK;
}
const char* tr_torrentGetFolder( const tr_torrent_t * tor )
{
return tor->destination;
2007-01-19 08:36:49 +00:00
}
2007-01-19 08:36:49 +00:00
/***********************************************************************
* torrentReallyStop
***********************************************************************
* Joins the download thread and frees/closes everything related to it.
**********************************************************************/
void tr_torrentDisablePex( tr_torrent_t * tor, int disable )
{
tr_torrentWriterLock( tor );
if( ! ( TR_FLAG_PRIVATE & tor->info.flags ) )
{
if( tor->pexDisabled != disable )
{
int i;
tor->pexDisabled = disable;
for( i=0; i<tor->peerCount; ++i )
tr_peerSetPrivate( tor->peers[i], disable );
}
}
tr_torrentWriterUnlock( tor );
}
static int tr_didStateChangeTo ( tr_torrent_t * tor, int status )
2007-01-19 08:36:49 +00:00
{
int ret;
tr_torrentWriterLock( tor );
if (( ret = tor->hasChangedState == status ))
tor->hasChangedState = -1;
tr_torrentWriterUnlock( tor );
return ret;
2007-01-19 08:36:49 +00:00
}
int tr_getIncomplete( tr_torrent_t * tor )
{
return tr_didStateChangeTo( tor, TR_CP_INCOMPLETE );
}
int tr_getDone( tr_torrent_t * tor )
{
return tr_didStateChangeTo( tor, TR_CP_DONE );
}
int tr_getComplete( tr_torrent_t * tor )
{
return tr_didStateChangeTo( tor, TR_CP_COMPLETE );
}
void tr_manualUpdate( tr_torrent_t * tor UNUSED )
2007-01-19 08:36:49 +00:00
{
#if 0
int peerCount, new;
2007-01-19 11:19:20 +00:00
uint8_t * peerCompact;
if( tor->status != TR_RUN_RUNNING )
2007-01-19 08:36:49 +00:00
return;
tr_torrentWriterLock( tor );
2007-01-19 11:19:20 +00:00
tr_trackerAnnouncePulse( tor->tracker, &peerCount, &peerCompact, 1 );
new = 0;
2007-01-19 11:19:20 +00:00
if( peerCount > 0 )
{
new = tr_torrentAddCompact( tor, TR_PEER_FROM_TRACKER,
peerCompact, peerCount );
2007-01-19 11:19:20 +00:00
free( peerCompact );
}
tr_dbg( "got %i peers from manual announce, used %i", peerCount, new );
tr_torrentWriterUnlock( tor );
#endif
2007-01-19 08:36:49 +00:00
}
const tr_stat_t *
tr_torrentStat( tr_torrent_t * tor )
2007-01-19 08:36:49 +00:00
{
tr_stat_t * s;
tr_tracker_t * tc;
int i;
tr_torrentReaderLock( tor );
2007-01-19 08:36:49 +00:00
tor->statCur = ( tor->statCur + 1 ) % 2;
s = &tor->stats[tor->statCur];
s->error = tor->error;
memcpy( s->errorString, tor->errorString,
sizeof( s->errorString ) );
tc = tor->tracker;
s->cannotConnect = tr_trackerCannotConnect( tc );
s->tracker = tc
? tr_trackerGet( tc )
: &tor->info.trackerList[0].list[0];
2007-01-19 08:36:49 +00:00
/* peers... */
2007-03-23 08:28:01 +00:00
memset( s->peersFrom, 0, sizeof( s->peersFrom ) );
s->peersTotal = tor->peerCount;
s->peersConnected = 0;
s->peersSendingToUs = 0;
s->peersGettingFromUs = 0;
for( i=0; i<tor->peerCount; ++i )
{
const tr_peer_t * peer = tor->peers[i];
if( tr_peerIsConnected( peer ) )
{
++s->peersConnected;
++s->peersFrom[tr_peerIsFrom(peer)];
if( tr_peerDownloadRate( peer ) > 0.01 )
++s->peersSendingToUs;
if( tr_peerUploadRate( peer ) > 0.01 )
++s->peersGettingFromUs;
2007-01-19 08:36:49 +00:00
}
}
s->percentDone = tr_cpPercentDone ( tor->completion );
s->percentComplete = tr_cpPercentComplete ( tor->completion );
s->left = tr_cpLeftUntilDone ( tor->completion );
if( tor->recheckFlag )
s->status = TR_STATUS_CHECK_WAIT;
else switch( tor->runStatus ) {
case TR_RUN_STOPPING: /* fallthrough */
case TR_RUN_STOPPING_NET_WAIT: s->status = TR_STATUS_STOPPING; break;
case TR_RUN_STOPPED: s->status = TR_STATUS_STOPPED; break;
case TR_RUN_CHECKING: s->status = TR_STATUS_CHECK; break;
case TR_RUN_RUNNING: switch( tor->cpStatus ) {
case TR_CP_INCOMPLETE: s->status = TR_STATUS_DOWNLOAD; break;
case TR_CP_DONE: s->status = TR_STATUS_DONE; break;
case TR_CP_COMPLETE: s->status = TR_STATUS_SEED; break;
}
2007-01-19 08:36:49 +00:00
}
s->cpStatus = tor->cpStatus;
/* tr_rcRate() doesn't make the difference between 'piece'
messages and other messages, which causes a non-zero
download rate even tough we are not downloading. So we
force it to zero not to confuse the user. */
s->rateDownload = tor->runStatus==TR_RUN_RUNNING
? tr_rcRate( tor->download )
: 0.0;
2007-01-19 08:36:49 +00:00
s->rateUpload = tr_rcRate( tor->upload );
s->seeders = tr_trackerSeeders( tc );
s->leechers = tr_trackerLeechers( tc );
s->completedFromTracker = tr_trackerDownloaded( tc );
s->swarmspeed = tr_rcRate( tor->swarmspeed );
2007-05-25 19:14:42 +00:00
s->startDate = tor->startDate;
s->activityDate = tor->activityDate;
2007-01-19 08:36:49 +00:00
s->eta = s->rateDownload < 0.1
? -1.0f
: (s->left / s->rateDownload / 1024.0);
2007-01-19 08:36:49 +00:00
s->uploaded = tor->uploadedCur + tor->uploadedPrev;
s->downloaded = tor->downloadedCur + tor->downloadedPrev;
s->downloadedValid = tr_cpDownloadedValid( tor->completion );
s->ratio = s->downloaded || s->downloadedValid
? (float)s->uploaded / (float)MAX(s->downloaded, s->downloadedValid)
: TR_RATIO_NA;
2007-01-19 08:36:49 +00:00
tr_torrentReaderUnlock( tor );
2007-01-19 08:36:49 +00:00
return s;
}
/***
****
***/
static uint64_t
fileBytesCompleted ( const tr_torrent_t * tor, int fileIndex )
{
const tr_file_t * file = &tor->info.files[fileIndex];
const uint64_t firstBlock = file->offset / tor->blockSize;
const uint64_t firstBlockOffset = file->offset % tor->blockSize;
const uint64_t lastOffset = file->length ? (file->length-1) : 0;
const uint64_t lastBlock = (file->offset + lastOffset) / tor->blockSize;
const uint64_t lastBlockOffset = (file->offset + lastOffset) % tor->blockSize;
uint64_t haveBytes = 0;
assert( tor != NULL );
assert( 0<=fileIndex && fileIndex<tor->info.fileCount );
assert( file->offset + file->length <= tor->info.totalSize );
assert( (int)firstBlock < tor->blockCount );
assert( (int)lastBlock < tor->blockCount );
assert( firstBlock <= lastBlock );
assert( tr_blockPiece( firstBlock ) == file->firstPiece );
assert( tr_blockPiece( lastBlock ) == file->lastPiece );
if( firstBlock == lastBlock )
{
if( tr_cpBlockIsComplete( tor->completion, firstBlock ) )
haveBytes += lastBlockOffset + 1 - firstBlockOffset;
}
else
{
uint64_t i;
if( tr_cpBlockIsComplete( tor->completion, firstBlock ) )
haveBytes += tor->blockSize - firstBlockOffset;
for( i=firstBlock+1; i<lastBlock; ++i )
if( tr_cpBlockIsComplete( tor->completion, i ) )
haveBytes += tor->blockSize;
if( tr_cpBlockIsComplete( tor->completion, lastBlock ) )
haveBytes += lastBlockOffset + 1;
}
return haveBytes;
}
tr_file_stat_t *
tr_torrentFiles( const tr_torrent_t * tor, int * fileCount )
{
int i;
const int n = tor->info.fileCount;
tr_file_stat_t * files = tr_new0( tr_file_stat_t, n );
tr_file_stat_t * walk = files;
for( i=0; i<n; ++i, ++walk )
{
const tr_file_t * file = tor->info.files + i;
cp_status_t cp;
walk->bytesCompleted = fileBytesCompleted( tor, i );
walk->progress = file->length
? walk->bytesCompleted / (float)file->length
: 1.0;
if( walk->bytesCompleted >= file->length )
cp = TR_CP_COMPLETE;
else if( tor->info.files[i].dnd )
cp = TR_CP_DONE;
else
cp = TR_CP_INCOMPLETE;
walk->completionStatus = cp;
}
*fileCount = n;
return files;
}
void
tr_torrentFilesFree( tr_file_stat_t * files, int fileCount UNUSED )
{
tr_free( files );
}
/***
****
***/
tr_peer_stat_t *
tr_torrentPeers( const tr_torrent_t * tor, int * peerCount )
2007-01-19 08:36:49 +00:00
{
tr_peer_stat_t * peers;
tr_torrentReaderLock( tor );
2007-01-19 08:36:49 +00:00
*peerCount = tor->peerCount;
peers = tr_new0( tr_peer_stat_t, tor->peerCount );
2007-01-19 08:36:49 +00:00
if (peers != NULL)
{
tr_peer_t * peer;
struct in_addr * addr;
int i;
for( i=0; i<tor->peerCount; ++i )
2007-01-19 08:36:49 +00:00
{
peer = tor->peers[i];
addr = tr_peerAddress( peer );
if( NULL != addr )
{
tr_netNtop( addr, peers[i].addr,
sizeof( peers[i].addr ) );
}
peers[i].client = tr_peerClient( peer );
peers[i].isConnected = tr_peerIsConnected( peer );
peers[i].from = tr_peerIsFrom( peer );
peers[i].progress = tr_peerProgress( peer );
peers[i].port = tr_peerPort( peer );
peers[i].uploadToRate = tr_peerUploadRate( peer );
peers[i].downloadFromRate = tr_peerDownloadRate( peer );
2007-07-15 15:45:08 +00:00
peers[i].isDownloading = peers[i].uploadToRate > 0.01;
peers[i].isUploading = peers[i].downloadFromRate > 0.01;
2007-01-19 08:36:49 +00:00
}
}
tr_torrentReaderUnlock( tor );
2007-01-19 08:36:49 +00:00
return peers;
}
void tr_torrentPeersFree( tr_peer_stat_t * peers, int peerCount UNUSED )
2007-01-19 08:36:49 +00:00
{
tr_free( peers );
2007-01-19 08:36:49 +00:00
}
void tr_torrentAvailability( const tr_torrent_t * tor, int8_t * tab, int size )
2007-01-19 08:36:49 +00:00
{
int i, j, piece;
float interval;
2007-01-19 08:36:49 +00:00
tr_torrentReaderLock( tor );
interval = (float)tor->info.pieceCount / (float)size;
2007-01-19 08:36:49 +00:00
for( i = 0; i < size; i++ )
{
piece = i * interval;
2007-01-19 08:36:49 +00:00
if( tr_cpPieceIsComplete( tor->completion, piece ) )
{
tab[i] = -1;
continue;
}
tab[i] = 0;
for( j = 0; j < tor->peerCount; j++ )
{
if( tr_peerHasPiece( tor->peers[j], piece ) )
2007-01-19 08:36:49 +00:00
{
(tab[i])++;
}
}
}
tr_torrentReaderUnlock( tor );
2007-01-19 08:36:49 +00:00
}
void tr_torrentAmountFinished( const tr_torrent_t * tor, float * tab, int size )
2007-01-19 08:36:49 +00:00
{
int i;
float interval;
tr_torrentReaderLock( tor );
2007-01-19 08:36:49 +00:00
interval = (float)tor->info.pieceCount / (float)size;
2007-01-19 08:36:49 +00:00
for( i = 0; i < size; i++ )
{
int piece = i * interval;
2007-01-19 08:36:49 +00:00
tab[i] = tr_cpPercentBlocksInPiece( tor->completion, piece );
}
tr_torrentReaderUnlock( tor );
2007-04-28 01:34:39 +00:00
}
void
tr_torrentResetTransferStats( tr_torrent_t * tor )
2007-01-19 08:36:49 +00:00
{
tr_torrentWriterLock( tor );
2007-01-19 08:36:49 +00:00
tor->downloadedPrev += tor->downloadedCur;
tor->downloadedCur = 0;
tor->uploadedPrev += tor->uploadedCur;
tor->uploadedCur = 0;
2007-01-19 08:36:49 +00:00
tr_torrentWriterUnlock( tor );
}
2007-01-19 08:36:49 +00:00
void
tr_torrentSetHasPiece( tr_torrent_t * tor, int pieceIndex, int has )
{
tr_torrentWriterLock( tor );
2007-01-19 08:36:49 +00:00
if( has )
tr_cpPieceAdd( tor->completion, pieceIndex );
else
tr_cpPieceRem( tor->completion, pieceIndex );
2007-01-19 08:36:49 +00:00
tr_torrentWriterUnlock( tor );
}
2007-01-19 08:36:49 +00:00
void tr_torrentRemoveSaved( tr_torrent_t * tor )
{
tr_metainfoRemoveSaved( tor->info.hashString, tor->handle->tag );
}
2007-01-19 08:36:49 +00:00
void tr_torrentRecheck( tr_torrent_t * tor )
{
tor->recheckFlag = TRUE;
2007-01-19 08:36:49 +00:00
}
int tr_torrentAttachPeer( tr_torrent_t * tor, tr_peer_t * peer )
{
int i;
tr_peer_t * otherPeer;
assert( tor != NULL );
assert( peer != NULL );
if( tor->peerCount >= TR_MAX_PEER_COUNT )
{
tr_peerDestroy( peer );
return 0;
}
/* Don't accept two connections from the same IP */
for( i = 0; i < tor->peerCount; i++ )
{
otherPeer = tor->peers[i];
if( !memcmp( tr_peerAddress( peer ), tr_peerAddress( otherPeer ), 4 ) )
{
tr_peerDestroy( peer );
return 0;
}
}
tr_peerSetPrivate( peer, tor->info.flags & TR_FLAG_PRIVATE ||
tor->pexDisabled );
tr_peerSetTorrent( peer, tor );
tor->peers[tor->peerCount++] = peer;
return 1;
}
int tr_torrentAddCompact( tr_torrent_t * tor, int from,
2007-03-23 08:28:01 +00:00
uint8_t * buf, int count )
{
struct in_addr addr;
in_port_t port;
int i, added;
tr_peer_t * peer;
added = 0;
for( i = 0; i < count; i++ )
{
memcpy( &addr, buf, 4 ); buf += 4;
memcpy( &port, buf, 2 ); buf += 2;
peer = tr_peerInit( &addr, port, -1, from );
added += tr_torrentAttachPeer( tor, peer );
}
return added;
}
/***
****
***/
static void setRunState( tr_torrent_t * tor, run_status_t run )
{
tr_torrentWriterLock( tor );
tor->runStatus = run;
tr_torrentWriterUnlock( tor );
}
void tr_torrentStart( tr_torrent_t * tor )
{
setRunState( tor, TR_RUN_RUNNING );
}
void tr_torrentStop( tr_torrent_t * tor )
{
setRunState( tor, TR_RUN_STOPPING );
}
void tr_torrentClose( tr_torrent_t * tor )
{
tr_torrentStop( tor );
tor->dieFlag = TRUE;
}
static void
tr_torrentFree( tr_torrent_t * tor )
{
tr_torrent_t * t;
tr_handle_t * h = tor->handle;
tr_info_t * inf = &tor->info;
tr_sharedLock( h->shared );
tr_rwClose( &tor->lock );
tr_cpClose( tor->completion );
tr_rcClose( tor->upload );
tr_rcClose( tor->download );
tr_rcClose( tor->swarmspeed );
tr_free( tor->destination );
tr_metainfoFree( inf );
if( tor == h->torrentList )
h->torrentList = tor->next;
else for( t=h->torrentList; t!=NULL; t=t->next ) {
if( t->next == tor ) {
t->next = tor->next;
break;
}
}
tr_free( tor );
h->torrentCount--;
tr_sharedUnlock( h->shared );
}
2007-07-19 03:48:27 +00:00
static void
recheckCpState( tr_torrent_t * tor )
{
cp_status_t cpStatus;
tr_torrentWriterLock( tor );
cpStatus = tr_cpGetStatus( tor->completion );
if( cpStatus != tor->cpStatus ) {
tor->cpStatus = cpStatus;
tor->hasChangedState = tor->cpStatus; /* tell the client... */
if( (cpStatus == TR_CP_COMPLETE) /* ...and if we're complete */
&& tor->tracker!=NULL /* and we have a tracker */
&& tor->downloadedCur ) { /* and it just happened */
tr_trackerCompleted( tor->tracker ); /* tell the tracker */
}
tr_ioSync( tor->io );
}
tr_torrentWriterUnlock( tor );
}
static void
torrentThreadLoop ( void * _tor )
2007-01-19 08:36:49 +00:00
{
static tr_lock_t checkFilesLock;
static int checkFilesLockInited = FALSE;
2007-01-19 08:36:49 +00:00
tr_torrent_t * tor = _tor;
/* create the check-files mutex */
if( !checkFilesLockInited ) {
checkFilesLockInited = TRUE;
tr_lockInit( &checkFilesLock );
}
2007-01-19 08:36:49 +00:00
/* loop until the torrent is being deleted */
while( ! ( tor->dieFlag && (tor->runStatus == TR_RUN_STOPPED) ) )
2007-01-19 08:36:49 +00:00
{
/* sleep a little while */
tr_wait( tor->runStatus == TR_RUN_STOPPED ? 1600 : 600 );
2007-01-19 08:36:49 +00:00
2007-07-19 03:48:27 +00:00
if( tor->fastResumeDirty )
{
tor->fastResumeDirty = FALSE;
fastResumeSave( tor );
2007-07-19 03:48:27 +00:00
recheckCpState( tor );
}
/* if we're stopping... */
if( tor->runStatus == TR_RUN_STOPPING )
{
int i;
int peerCount;
uint8_t * peerCompact;
tr_torrentWriterLock( tor );
/* close the IO */
tr_ioClose( tor->io );
tor->io = NULL;
/* close the peers */
for( i=0; i<tor->peerCount; ++i )
tr_peerDestroy( tor->peers[i] );
tor->peerCount = 0;
/* resest the transfer rates */
tr_rcReset( tor->download );
tr_rcReset( tor->upload );
tr_rcReset( tor->swarmspeed );
/* tell the tracker we're stopping */
tr_trackerStopped( tor->tracker );
tr_trackerPulse( tor->tracker, &peerCount, &peerCompact );
tor->runStatus = TR_RUN_STOPPING_NET_WAIT;
tor->stopDate = tr_date();
tr_torrentWriterUnlock( tor );
}
if( tor->runStatus == TR_RUN_STOPPING_NET_WAIT )
{
uint64_t date;
int peerCount;
uint8_t * peerCompact;
tr_trackerPulse( tor->tracker, &peerCount, &peerCompact );
/* have we finished telling the tracker that we're stopping? */
date = tr_trackerLastResponseDate( tor->tracker );
if( date > tor->stopDate )
{
tr_torrentWriterLock( tor );
tr_trackerClose( tor->tracker );
tor->tracker = NULL;
tor->runStatus = TR_RUN_STOPPED;
tr_torrentWriterUnlock( tor );
}
continue;
}
/* do we need to check files? */
if( tor->recheckFlag )
{
if( !tr_lockTryLock( &checkFilesLock ) )
{
run_status_t realStatus;
tr_torrentWriterLock( tor );
realStatus = tor->runStatus;
tor->recheckFlag = FALSE;
tor->runStatus = TR_RUN_CHECKING;
tr_torrentWriterUnlock( tor );
tr_ioCheckFiles( tor, TR_RECHECK_FORCE );
setRunState( tor, realStatus );
tr_torrentWriterLock( tor );
tor->cpStatus = tr_cpGetStatus( tor->completion );
tr_torrentWriterUnlock( tor );
tr_lockUnlock( &checkFilesLock );
}
continue;
}
/* if we're paused or stopped, not much to do... */
if( tor->runStatus == TR_RUN_STOPPED )
continue;
/* ping our peers if we're running... */
if( tor->runStatus == TR_RUN_RUNNING )
2007-01-19 08:36:49 +00:00
{
int i;
int peerCount;
uint8_t * peerCompact;
/* starting to run... */
if( tor->io == NULL ) {
*tor->errorString = '\0';
tr_torrentResetTransferStats( tor );
tor->io = tr_ioInitFast( tor );
if( tor->io == NULL ) {
tor->recheckFlag = TRUE;
continue;
}
tr_peerIdNew ( tor->peer_id, sizeof(tor->peer_id) );
tor->tracker = tr_trackerInit( tor );
tor->startDate = tr_date();
}
/* refresh our completion state */
2007-07-19 03:48:27 +00:00
recheckCpState( tor );
/* ping the tracker... */
tr_trackerPulse( tor->tracker, &peerCount, &peerCompact );
if( peerCount > 0 ) {
int used = tr_torrentAddCompact( tor, TR_PEER_FROM_TRACKER,
peerCompact, peerCount );
tr_dbg( "got %i peers from announce, used %i", peerCount, used );
free( peerCompact );
}
2007-01-19 08:36:49 +00:00
/* Shuffle peers */
if ( tor->peerCount > 1 ) {
tr_peer_t * tmp = tor->peers[0];
memmove( tor->peers, tor->peers+1,
(tor->peerCount-1) * sizeof(void*) );
tor->peers[tor->peerCount - 1] = tmp;
}
2007-01-19 08:36:49 +00:00
/* receive/send messages */
2007-06-30 12:46:45 +00:00
tr_torrentWriterLock( tor );
for( i=0; i<tor->peerCount; ) {
tr_peer_t * peer = tor->peers[i];
int ret = tr_peerPulse( peer );
if( ret & TR_ERROR_IO_MASK ) {
tr_err( "Fatal error, stopping download (%d)", ret );
tor->runStatus = TR_RUN_STOPPING;
tor->error = ret;
strlcpy( tor->errorString,
tr_errorString(ret),
sizeof(tor->errorString) );
break;
}
if( ret ) {
tr_peerDestroy( peer );
tor->peerCount--;
memmove( &tor->peers[i], &tor->peers[i+1],
(tor->peerCount-i)*sizeof(void*) );
continue;
}
i++;
}
2007-06-30 12:46:45 +00:00
tr_torrentWriterUnlock( tor );
}
}
2007-01-19 08:36:49 +00:00
tr_ioClose( tor->io );
tr_torrentFree( tor );
2007-01-19 08:36:49 +00:00
}
/**
*** File priorities
**/
void
tr_torrentSetFilePriority( tr_torrent_t * tor,
int fileIndex,
tr_priority_t priority )
{
int i;
tr_file_t * file;
tr_torrentWriterLock( tor );
assert( tor != NULL );
assert( 0<=fileIndex && fileIndex<tor->info.fileCount );
assert( priority==TR_PRI_LOW || priority==TR_PRI_NORMAL || priority==TR_PRI_HIGH );
file = &tor->info.files[fileIndex];
file->priority = priority;
for( i=file->firstPiece; i<=file->lastPiece; ++i )
tor->info.pieces[i].priority = calculatePiecePriority( tor, i );
tr_dbg ( "Setting file #%d (pieces %d-%d) priority to %d (%s)",
fileIndex, file->firstPiece, file->lastPiece,
priority, tor->info.files[fileIndex].name );
tor->fastResumeDirty = TRUE;
tr_torrentWriterUnlock( tor );
}
void
tr_torrentSetFilePriorities( tr_torrent_t * tor,
int * files,
int fileCount,
tr_priority_t priority )
{
int i;
for( i=0; i<fileCount; ++i )
tr_torrentSetFilePriority( tor, files[i], priority );
}
tr_priority_t
tr_torrentGetFilePriority( const tr_torrent_t * tor, int file )
{
tr_priority_t ret;
tr_torrentReaderLock( tor );
assert( tor != NULL );
assert( 0<=file && file<tor->info.fileCount );
ret = tor->info.files[file].priority;
tr_torrentReaderUnlock( tor );
return ret;
}
tr_priority_t*
tr_torrentGetFilePriorities( const tr_torrent_t * tor )
{
int i;
tr_priority_t * p;
tr_torrentReaderLock( tor );
p = tr_new0( tr_priority_t, tor->info.fileCount );
for( i=0; i<tor->info.fileCount; ++i )
p[i] = tor->info.files[i].priority;
tr_torrentReaderUnlock( tor );
return p;
}
/**
*** File DND
**/
int
tr_torrentGetFileDL( const tr_torrent_t * tor,
int file )
{
int doDownload;
tr_torrentReaderLock( tor );
assert( 0<=file && file<tor->info.fileCount );
doDownload = !tor->info.files[file].dnd;
tr_torrentReaderUnlock( tor );
return doDownload != 0;
}
void
tr_torrentSetFileDL( tr_torrent_t * tor,
int fileIndex,
int doDownload )
{
2007-07-16 23:52:05 +00:00
tr_file_t * file;
const int dnd = !doDownload;
int firstPiece, firstPieceDND;
int lastPiece, lastPieceDND;
int i;
tr_torrentWriterLock( tor );
file = &tor->info.files[fileIndex];
2007-07-16 23:52:05 +00:00
file->dnd = dnd;
firstPiece = file->firstPiece;
lastPiece = file->lastPiece;
/* can't set the first piece to DND unless
every file using that piece is DND */
firstPieceDND = dnd;
for( i=fileIndex-1; firstPieceDND && i>=0; --i ) {
if( tor->info.files[i].lastPiece != firstPiece )
break;
firstPieceDND = tor->info.files[i].dnd;
}
/* can't set the last piece to DND unless
every file using that piece is DND */
lastPieceDND = dnd;
for( i=fileIndex+1; lastPieceDND && i<tor->info.fileCount; ++i ) {
if( tor->info.files[i].firstPiece != lastPiece )
break;
lastPieceDND = tor->info.files[i].dnd;
}
if( firstPiece == lastPiece )
{
tor->info.pieces[firstPiece].dnd = firstPieceDND && lastPieceDND;
}
else
{
tor->info.pieces[firstPiece].dnd = firstPieceDND;
tor->info.pieces[lastPiece].dnd = lastPieceDND;
2007-07-16 23:52:05 +00:00
for( i=firstPiece+1; i<lastPiece; ++i )
tor->info.pieces[i].dnd = dnd;
}
tor->fastResumeDirty = TRUE;
tr_torrentWriterUnlock( tor );
}
void
tr_torrentSetFileDLs ( tr_torrent_t * tor,
int * files,
int fileCount,
int doDownload )
{
int i;
for( i=0; i<fileCount; ++i )
tr_torrentSetFileDL( tor, files[i], doDownload );
}
/***
****
***/
int _tr_blockPiece( const tr_torrent_t * tor, int block )
{
const tr_info_t * inf = &tor->info;
return block / ( inf->pieceSize / tor->blockSize );
}
int _tr_blockSize( const tr_torrent_t * tor, int block )
{
const tr_info_t * inf = &tor->info;
int dummy;
if( block != tor->blockCount - 1 ||
!( dummy = inf->totalSize % tor->blockSize ) )
{
return tor->blockSize;
}
return dummy;
}
int _tr_blockPosInPiece( const tr_torrent_t * tor, int block )
{
const tr_info_t * inf = &tor->info;
return tor->blockSize *
( block % ( inf->pieceSize / tor->blockSize ) );
}
int _tr_pieceCountBlocks( const tr_torrent_t * tor, int piece )
{
const tr_info_t * inf = &tor->info;
if( piece < inf->pieceCount - 1 ||
!( tor->blockCount % ( inf->pieceSize / tor->blockSize ) ) )
{
return inf->pieceSize / tor->blockSize;
}
return tor->blockCount % ( inf->pieceSize / tor->blockSize );
}
int _tr_pieceStartBlock( const tr_torrent_t * tor, int piece )
{
const tr_info_t * inf = &tor->info;
return piece * ( inf->pieceSize / tor->blockSize );
}
int _tr_pieceSize( const tr_torrent_t * tor, int piece )
{
const tr_info_t * inf = &tor->info;
if( piece < inf->pieceCount - 1 ||
!( inf->totalSize % inf->pieceSize ) )
{
return inf->pieceSize;
}
return inf->totalSize % inf->pieceSize;
}
int _tr_block( const tr_torrent_t * tor, int index, int begin )
{
const tr_info_t * inf = &tor->info;
return index * ( inf->pieceSize / tor->blockSize ) +
begin / tor->blockSize;
}