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 "transmission.h"
|
2007-01-19 08:40:06 +00:00
|
|
|
#include "shared.h"
|
2007-01-19 08:36:49 +00:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* Local prototypes
|
|
|
|
**********************************************************************/
|
|
|
|
static tr_torrent_t * torrentRealInit( tr_handle_t *, tr_torrent_t * tor,
|
2007-03-22 18:07:22 +00:00
|
|
|
uint8_t *, int flags, int * error );
|
2007-01-19 08:36:49 +00:00
|
|
|
static void torrentReallyStop( tr_torrent_t * );
|
|
|
|
static void downloadLoop( void * );
|
|
|
|
|
2007-02-02 17:33:32 +00:00
|
|
|
void tr_setUseCustomUpload( tr_torrent_t * tor, int limit )
|
2007-01-19 08:36:49 +00:00
|
|
|
{
|
2007-02-02 17:33:32 +00:00
|
|
|
tor->customUploadLimit = limit;
|
|
|
|
}
|
|
|
|
|
|
|
|
void tr_setUseCustomDownload( tr_torrent_t * tor, int limit )
|
|
|
|
{
|
|
|
|
tor->customDownloadLimit = limit;
|
2007-01-19 08:36:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void tr_setUploadLimit( tr_torrent_t * tor, int limit )
|
|
|
|
{
|
|
|
|
tr_rcSetLimit( tor->upload, limit );
|
|
|
|
}
|
|
|
|
|
|
|
|
void tr_setDownloadLimit( tr_torrent_t * tor, int limit )
|
|
|
|
{
|
|
|
|
tr_rcSetLimit( tor->download, limit );
|
|
|
|
}
|
|
|
|
|
2007-04-02 20:38:23 +00:00
|
|
|
tr_torrent_t *
|
|
|
|
tr_torrentInit( tr_handle_t * h, const char * path,
|
|
|
|
uint8_t * hash, int flags, int * error )
|
2007-01-19 08:36:49 +00:00
|
|
|
{
|
2007-04-02 20:38:23 +00:00
|
|
|
tr_torrent_t * tor;
|
|
|
|
|
|
|
|
tor = calloc( 1, sizeof *tor );
|
|
|
|
if( NULL == tor )
|
|
|
|
{
|
|
|
|
*error = TR_EOTHER;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Parse torrent file */
|
|
|
|
if( tr_metainfoParseFile( &tor->info, h->tag, path,
|
|
|
|
TR_FLAG_SAVE & flags ) )
|
|
|
|
{
|
|
|
|
*error = TR_EINVALID;
|
|
|
|
free( tor );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return torrentRealInit( h, tor, hash, flags, error );
|
|
|
|
}
|
|
|
|
|
|
|
|
tr_torrent_t *
|
|
|
|
tr_torrentInitData( tr_handle_t * h, uint8_t * data, size_t size,
|
|
|
|
uint8_t * hash, int flags, int * error )
|
|
|
|
{
|
|
|
|
tr_torrent_t * tor;
|
|
|
|
|
|
|
|
tor = calloc( 1, sizeof *tor );
|
|
|
|
if( NULL == tor )
|
|
|
|
{
|
|
|
|
*error = TR_EOTHER;
|
|
|
|
return NULL;
|
|
|
|
}
|
2007-01-19 08:36:49 +00:00
|
|
|
|
|
|
|
/* Parse torrent file */
|
2007-04-02 20:38:23 +00:00
|
|
|
if( tr_metainfoParseData( &tor->info, h->tag, data, size,
|
|
|
|
TR_FLAG_SAVE & flags ) )
|
2007-01-19 08:36:49 +00:00
|
|
|
{
|
|
|
|
*error = TR_EINVALID;
|
|
|
|
free( tor );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-03-22 18:07:22 +00:00
|
|
|
return torrentRealInit( h, tor, hash, flags, error );
|
2007-01-19 08:36:49 +00:00
|
|
|
}
|
|
|
|
|
2007-04-02 20:38:23 +00:00
|
|
|
tr_torrent_t *
|
|
|
|
tr_torrentInitSaved( tr_handle_t * h, const char * hashStr,
|
|
|
|
int flags, int * error )
|
2007-01-19 08:36:49 +00:00
|
|
|
{
|
2007-04-02 20:38:23 +00:00
|
|
|
tr_torrent_t * tor;
|
|
|
|
|
|
|
|
tor = calloc( 1, sizeof *tor );
|
|
|
|
if( NULL == tor )
|
|
|
|
{
|
|
|
|
*error = TR_EOTHER;
|
|
|
|
return NULL;
|
|
|
|
}
|
2007-01-19 08:36:49 +00:00
|
|
|
|
|
|
|
/* Parse torrent file */
|
2007-04-02 20:38:23 +00:00
|
|
|
if( tr_metainfoParseHash( &tor->info, h->tag, hashStr ) )
|
2007-01-19 08:36:49 +00:00
|
|
|
{
|
|
|
|
*error = TR_EINVALID;
|
|
|
|
free( tor );
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-03-22 18:07:22 +00:00
|
|
|
return torrentRealInit( h, tor, NULL, ( TR_FLAG_SAVE | flags ), error );
|
2007-01-19 08:36:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* tr_torrentInit
|
|
|
|
***********************************************************************
|
|
|
|
* Allocates a tr_torrent_t structure, then relies on tr_metainfoParse
|
|
|
|
* to fill it.
|
|
|
|
**********************************************************************/
|
|
|
|
static tr_torrent_t * torrentRealInit( tr_handle_t * h, tr_torrent_t * tor,
|
2007-03-22 18:07:22 +00:00
|
|
|
uint8_t * hash, int flags, int * error )
|
2007-01-19 08:36:49 +00:00
|
|
|
{
|
|
|
|
tr_torrent_t * tor_tmp;
|
|
|
|
tr_info_t * inf;
|
|
|
|
int i;
|
|
|
|
|
2007-03-06 01:58:14 +00:00
|
|
|
inf = &tor->info;
|
|
|
|
inf->flags |= flags;
|
2007-01-19 08:36:49 +00:00
|
|
|
|
2007-01-29 08:24:09 +00:00
|
|
|
tr_sharedLock( h->shared );
|
|
|
|
|
2007-01-19 08:36:49 +00:00
|
|
|
/* Make sure this torrent is not already open */
|
|
|
|
for( tor_tmp = h->torrentList; tor_tmp; tor_tmp = tor_tmp->next )
|
|
|
|
{
|
|
|
|
if( !memcmp( tor->info.hash, tor_tmp->info.hash,
|
|
|
|
SHA_DIGEST_LENGTH ) )
|
|
|
|
{
|
2007-03-22 18:07:22 +00:00
|
|
|
if( NULL != hash )
|
|
|
|
{
|
|
|
|
memcpy( hash, tor->info.hash, SHA_DIGEST_LENGTH );
|
|
|
|
}
|
2007-01-19 08:36:49 +00:00
|
|
|
*error = TR_EDUPLICATE;
|
|
|
|
tr_metainfoFree( &tor->info );
|
|
|
|
free( tor );
|
2007-01-29 08:24:09 +00:00
|
|
|
tr_sharedUnlock( h->shared );
|
2007-01-19 08:36:49 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-27 21:17:10 +00:00
|
|
|
tor->handle = h;
|
|
|
|
tor->status = TR_STATUS_PAUSE;
|
|
|
|
tor->id = h->id;
|
|
|
|
tor->key = h->key;
|
2007-03-23 08:28:01 +00:00
|
|
|
tor->azId = h->azId;
|
2007-01-27 21:17:10 +00:00
|
|
|
tor->finished = 0;
|
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", inf->hash[i] );
|
2007-01-19 08:36:49 +00:00
|
|
|
}
|
|
|
|
|
2007-03-31 19:19:09 +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( inf->pieceSize, 1 << 14 );
|
|
|
|
tor->blockCount = ( inf->totalSize + tor->blockSize - 1 ) /
|
|
|
|
tor->blockSize;
|
|
|
|
tor->completion = tr_cpInit( tor );
|
|
|
|
|
|
|
|
tr_lockInit( &tor->lock );
|
2007-01-19 15:24:20 +00:00
|
|
|
tr_condInit( &tor->cond );
|
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 */
|
2007-01-27 21:17:10 +00:00
|
|
|
tor->publicPort = tr_sharedGetPublicPort( h->shared );
|
|
|
|
tor->prev = NULL;
|
|
|
|
tor->next = h->torrentList;
|
2007-01-19 08:36:49 +00:00
|
|
|
if( tor->next )
|
|
|
|
{
|
|
|
|
tor->next->prev = tor;
|
|
|
|
}
|
|
|
|
h->torrentList = tor;
|
|
|
|
(h->torrentCount)++;
|
2007-01-29 08:24:09 +00:00
|
|
|
|
2007-01-19 08:36:49 +00:00
|
|
|
tr_sharedUnlock( h->shared );
|
|
|
|
|
2007-01-27 21:17:10 +00:00
|
|
|
if( !h->isPortSet )
|
2007-01-19 08:36:49 +00:00
|
|
|
{
|
|
|
|
tr_setBindPort( h, TR_DEFAULT_PORT );
|
|
|
|
}
|
|
|
|
|
|
|
|
return tor;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr_info_t * tr_torrentInfo( tr_torrent_t * tor )
|
|
|
|
{
|
|
|
|
return &tor->info;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* tr_torrentScrape
|
|
|
|
**********************************************************************/
|
|
|
|
int tr_torrentScrape( tr_torrent_t * tor, int * s, int * l, int * d )
|
|
|
|
{
|
|
|
|
return tr_trackerScrape( tor, s, l, d );
|
|
|
|
}
|
|
|
|
|
|
|
|
void tr_torrentSetFolder( tr_torrent_t * tor, const char * path )
|
|
|
|
{
|
|
|
|
tor->destination = strdup( path );
|
|
|
|
tr_ioLoadResume( tor );
|
|
|
|
}
|
|
|
|
|
|
|
|
char * tr_torrentGetFolder( tr_torrent_t * tor )
|
|
|
|
{
|
|
|
|
return tor->destination;
|
|
|
|
}
|
|
|
|
|
|
|
|
void tr_torrentStart( tr_torrent_t * tor )
|
|
|
|
{
|
|
|
|
char name[32];
|
|
|
|
|
|
|
|
if( tor->status & ( TR_STATUS_STOPPING | TR_STATUS_STOPPED ) )
|
|
|
|
{
|
|
|
|
/* Join the thread first */
|
|
|
|
torrentReallyStop( tor );
|
|
|
|
}
|
|
|
|
|
2007-01-27 21:17:10 +00:00
|
|
|
tr_lockLock( &tor->lock );
|
|
|
|
|
2007-01-19 08:36:49 +00:00
|
|
|
tor->downloadedPrev += tor->downloadedCur;
|
|
|
|
tor->downloadedCur = 0;
|
|
|
|
tor->uploadedPrev += tor->uploadedCur;
|
|
|
|
tor->uploadedCur = 0;
|
|
|
|
|
|
|
|
tor->status = TR_STATUS_CHECK;
|
|
|
|
tor->error = TR_OK;
|
|
|
|
tor->tracker = tr_trackerInit( tor );
|
|
|
|
|
|
|
|
tor->date = tr_date();
|
|
|
|
tor->die = 0;
|
|
|
|
snprintf( name, sizeof( name ), "torrent %p", tor );
|
2007-01-27 21:17:10 +00:00
|
|
|
|
|
|
|
tr_lockUnlock( &tor->lock );
|
|
|
|
|
2007-01-19 08:36:49 +00:00
|
|
|
tr_threadCreate( &tor->thread, downloadLoop, tor, name );
|
|
|
|
}
|
|
|
|
|
|
|
|
static void torrentStop( tr_torrent_t * tor )
|
|
|
|
{
|
|
|
|
tr_trackerStopped( tor->tracker );
|
|
|
|
tr_rcReset( tor->download );
|
|
|
|
tr_rcReset( tor->upload );
|
|
|
|
tr_rcReset( tor->swarmspeed );
|
|
|
|
tor->status = TR_STATUS_STOPPING;
|
|
|
|
tor->stopDate = tr_date();
|
|
|
|
}
|
|
|
|
|
|
|
|
void tr_torrentStop( tr_torrent_t * tor )
|
|
|
|
{
|
|
|
|
tr_lockLock( &tor->lock );
|
|
|
|
torrentStop( tor );
|
2007-01-19 15:24:20 +00:00
|
|
|
|
|
|
|
/* Don't return until the files are closed, so the UI can trash
|
|
|
|
* them if requested */
|
|
|
|
tr_condWait( &tor->cond, &tor->lock );
|
2007-01-19 08:36:49 +00:00
|
|
|
tr_lockUnlock( &tor->lock );
|
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* torrentReallyStop
|
|
|
|
***********************************************************************
|
|
|
|
* Joins the download thread and frees/closes everything related to it.
|
|
|
|
**********************************************************************/
|
|
|
|
static void torrentReallyStop( tr_torrent_t * tor )
|
|
|
|
{
|
2007-01-21 06:42:05 +00:00
|
|
|
int i;
|
|
|
|
|
2007-01-19 08:36:49 +00:00
|
|
|
tor->die = 1;
|
|
|
|
tr_threadJoin( &tor->thread );
|
|
|
|
|
|
|
|
tr_trackerClose( tor->tracker );
|
|
|
|
tor->tracker = NULL;
|
|
|
|
|
|
|
|
tr_lockLock( &tor->lock );
|
2007-01-21 06:42:05 +00:00
|
|
|
for( i = 0; i < tor->peerCount; i++ )
|
2007-01-19 08:36:49 +00:00
|
|
|
{
|
2007-01-21 06:42:05 +00:00
|
|
|
tr_peerDestroy( tor->peers[i] );
|
2007-01-19 08:36:49 +00:00
|
|
|
}
|
2007-01-21 06:42:05 +00:00
|
|
|
tor->peerCount = 0;
|
2007-01-19 08:36:49 +00:00
|
|
|
tr_lockUnlock( &tor->lock );
|
|
|
|
}
|
|
|
|
|
2007-03-31 19:19:09 +00:00
|
|
|
void tr_torrentDisablePex( tr_torrent_t * tor, int disable )
|
|
|
|
{
|
|
|
|
int ii;
|
|
|
|
|
|
|
|
if( TR_FLAG_PRIVATE & tor->info.flags )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr_lockLock( &tor->lock );
|
|
|
|
|
|
|
|
if( tor->pexDisabled == disable )
|
|
|
|
{
|
|
|
|
tr_lockUnlock( &tor->lock );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
tor->pexDisabled = disable;
|
|
|
|
for( ii = 0; ii < tor->peerCount; ii++ )
|
|
|
|
{
|
|
|
|
tr_peerSetPrivate( tor->peers[ii], disable );
|
|
|
|
}
|
|
|
|
|
|
|
|
tr_lockUnlock( &tor->lock );
|
|
|
|
}
|
|
|
|
|
2007-01-19 08:36:49 +00:00
|
|
|
int tr_getFinished( tr_torrent_t * tor )
|
|
|
|
{
|
|
|
|
if( tor->finished )
|
|
|
|
{
|
|
|
|
tor->finished = 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void tr_manualUpdate( tr_torrent_t * tor )
|
|
|
|
{
|
2007-03-29 00:19:09 +00:00
|
|
|
int peerCount, new;
|
2007-01-19 11:19:20 +00:00
|
|
|
uint8_t * peerCompact;
|
|
|
|
|
2007-01-19 08:36:49 +00:00
|
|
|
if( !( tor->status & TR_STATUS_ACTIVE ) )
|
|
|
|
return;
|
|
|
|
|
|
|
|
tr_lockLock( &tor->lock );
|
2007-01-19 11:19:20 +00:00
|
|
|
tr_trackerAnnouncePulse( tor->tracker, &peerCount, &peerCompact, 1 );
|
2007-03-29 00:19:09 +00:00
|
|
|
new = 0;
|
2007-01-19 11:19:20 +00:00
|
|
|
if( peerCount > 0 )
|
|
|
|
{
|
2007-03-29 00:19:09 +00:00
|
|
|
new = tr_torrentAddCompact( tor, TR_PEER_FROM_TRACKER,
|
2007-03-23 08:28:01 +00:00
|
|
|
peerCompact, peerCount );
|
2007-01-19 11:19:20 +00:00
|
|
|
free( peerCompact );
|
|
|
|
}
|
2007-03-29 00:19:09 +00:00
|
|
|
tr_dbg( "got %i peers from manual announce, used %i", peerCount, new );
|
2007-01-19 08:36:49 +00:00
|
|
|
tr_lockUnlock( &tor->lock );
|
|
|
|
}
|
|
|
|
|
|
|
|
tr_stat_t * tr_torrentStat( tr_torrent_t * tor )
|
|
|
|
{
|
|
|
|
tr_stat_t * s;
|
|
|
|
tr_peer_t * peer;
|
|
|
|
tr_info_t * inf = &tor->info;
|
|
|
|
tr_tracker_t * tc;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
tor->statCur = ( tor->statCur + 1 ) % 2;
|
|
|
|
s = &tor->stats[tor->statCur];
|
|
|
|
|
|
|
|
if( ( tor->status & TR_STATUS_STOPPED ) ||
|
|
|
|
( ( tor->status & TR_STATUS_STOPPING ) &&
|
|
|
|
tr_date() > tor->stopDate + 60000 ) )
|
|
|
|
{
|
|
|
|
torrentReallyStop( tor );
|
|
|
|
tor->status = TR_STATUS_PAUSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr_lockLock( &tor->lock );
|
|
|
|
|
|
|
|
s->status = tor->status;
|
|
|
|
s->error = tor->error;
|
|
|
|
memcpy( s->errorString, tor->errorString,
|
|
|
|
sizeof( s->errorString ) );
|
|
|
|
|
|
|
|
tc = tor->tracker;
|
|
|
|
s->cannotConnect = tr_trackerCannotConnect( tc );
|
2007-02-27 04:00:38 +00:00
|
|
|
s->tracker = ( tc ? tr_trackerGet( tc ) : &inf->trackerList[0].list[0] );
|
2007-01-19 08:36:49 +00:00
|
|
|
|
|
|
|
s->peersTotal = 0;
|
2007-03-23 08:28:01 +00:00
|
|
|
memset( s->peersFrom, 0, sizeof( s->peersFrom ) );
|
2007-01-19 08:36:49 +00:00
|
|
|
s->peersUploading = 0;
|
|
|
|
s->peersDownloading = 0;
|
|
|
|
|
|
|
|
for( i = 0; i < tor->peerCount; i++ )
|
|
|
|
{
|
|
|
|
peer = tor->peers[i];
|
|
|
|
|
|
|
|
if( tr_peerIsConnected( peer ) )
|
|
|
|
{
|
|
|
|
(s->peersTotal)++;
|
2007-03-23 08:28:01 +00:00
|
|
|
(s->peersFrom[ tr_peerIsFrom( peer ) ])++;
|
2007-01-21 07:27:57 +00:00
|
|
|
if( tr_peerAmInterested( peer ) && !tr_peerIsChoking( peer ) )
|
2007-01-19 08:36:49 +00:00
|
|
|
{
|
|
|
|
(s->peersUploading)++;
|
|
|
|
}
|
2007-01-21 07:27:57 +00:00
|
|
|
if( !tr_peerAmChoking( peer ) )
|
2007-01-19 08:36:49 +00:00
|
|
|
{
|
|
|
|
(s->peersDownloading)++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
s->progress = tr_cpCompletionAsFloat( tor->completion );
|
2007-04-04 00:55:53 +00:00
|
|
|
s->left = tr_cpLeftBytes( tor->completion );
|
2007-01-19 08:36:49 +00:00
|
|
|
if( tor->status & TR_STATUS_DOWNLOAD )
|
|
|
|
{
|
|
|
|
s->rateDownload = tr_rcRate( tor->download );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* 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 = 0.0;
|
|
|
|
}
|
|
|
|
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 );
|
|
|
|
|
|
|
|
if( s->rateDownload < 0.1 )
|
|
|
|
{
|
|
|
|
s->eta = -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
s->eta = ( 1.0 - s->progress ) *
|
|
|
|
(float) inf->totalSize / s->rateDownload / 1024.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
s->downloaded = tor->downloadedCur + tor->downloadedPrev;
|
|
|
|
s->uploaded = tor->uploadedCur + tor->uploadedPrev;
|
|
|
|
|
|
|
|
if( s->downloaded == 0 )
|
|
|
|
{
|
2007-04-20 23:51:15 +00:00
|
|
|
//if some is downloaded without a downloaded value, calculate ratio from total size
|
|
|
|
if( s->progress > 0.0 )
|
2007-04-20 23:31:49 +00:00
|
|
|
{
|
2007-04-20 23:51:15 +00:00
|
|
|
s->ratio = (float)s->uploaded / ((float)inf->totalSize * s->progress);
|
2007-04-20 23:31:49 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-04-20 23:51:15 +00:00
|
|
|
s->ratio = TR_RATIO_NA;
|
2007-04-20 23:31:49 +00:00
|
|
|
}
|
2007-01-19 08:36:49 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
s->ratio = (float)s->uploaded / (float)s->downloaded;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr_lockUnlock( &tor->lock );
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
tr_peer_stat_t * tr_torrentPeers( tr_torrent_t * tor, int * peerCount )
|
|
|
|
{
|
|
|
|
tr_peer_stat_t * peers;
|
|
|
|
|
|
|
|
tr_lockLock( &tor->lock );
|
|
|
|
|
|
|
|
*peerCount = tor->peerCount;
|
|
|
|
|
|
|
|
peers = (tr_peer_stat_t *) calloc( tor->peerCount, sizeof( tr_peer_stat_t ) );
|
|
|
|
if (peers != NULL)
|
|
|
|
{
|
|
|
|
tr_peer_t * peer;
|
|
|
|
struct in_addr * addr;
|
|
|
|
int i;
|
|
|
|
for( i = 0; i < tor->peerCount; i++ )
|
|
|
|
{
|
|
|
|
peer = tor->peers[i];
|
|
|
|
|
|
|
|
addr = tr_peerAddress( peer );
|
|
|
|
if( NULL != addr )
|
|
|
|
{
|
|
|
|
tr_netNtop( addr, peers[i].addr,
|
|
|
|
sizeof( peers[i].addr ) );
|
|
|
|
}
|
|
|
|
|
2007-04-03 18:22:58 +00:00
|
|
|
peers[i].client = tr_peerClient( peer );
|
2007-01-19 08:36:49 +00:00
|
|
|
peers[i].isConnected = tr_peerIsConnected( peer );
|
2007-03-23 08:28:01 +00:00
|
|
|
peers[i].from = tr_peerIsFrom( peer );
|
2007-01-19 08:36:49 +00:00
|
|
|
peers[i].progress = tr_peerProgress( peer );
|
|
|
|
peers[i].port = tr_peerPort( peer );
|
|
|
|
|
2007-01-21 07:32:31 +00:00
|
|
|
if( ( peers[i].isDownloading = !tr_peerAmChoking( peer ) ) )
|
2007-01-19 08:36:49 +00:00
|
|
|
{
|
|
|
|
peers[i].uploadToRate = tr_peerUploadRate( peer );
|
|
|
|
}
|
2007-01-21 07:32:31 +00:00
|
|
|
if( ( peers[i].isUploading = ( tr_peerAmInterested( peer ) &&
|
|
|
|
!tr_peerIsChoking( peer ) ) ) )
|
2007-01-19 08:36:49 +00:00
|
|
|
{
|
|
|
|
peers[i].downloadFromRate = tr_peerDownloadRate( peer );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tr_lockUnlock( &tor->lock );
|
|
|
|
|
|
|
|
return peers;
|
|
|
|
}
|
|
|
|
|
2007-04-03 18:22:58 +00:00
|
|
|
void tr_torrentPeersFree( tr_peer_stat_t * peers, int peerCount UNUSED )
|
2007-01-19 08:36:49 +00:00
|
|
|
{
|
|
|
|
if (peers == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
free( peers );
|
|
|
|
}
|
|
|
|
|
|
|
|
void tr_torrentAvailability( tr_torrent_t * tor, int8_t * tab, int size )
|
|
|
|
{
|
|
|
|
int i, j, piece;
|
2007-01-31 16:23:07 +00:00
|
|
|
float interval;
|
2007-01-19 08:36:49 +00:00
|
|
|
|
|
|
|
tr_lockLock( &tor->lock );
|
2007-01-31 16:23:07 +00:00
|
|
|
interval = (float)tor->info.pieceCount / (float)size;
|
2007-01-19 08:36:49 +00:00
|
|
|
for( i = 0; i < size; i++ )
|
|
|
|
{
|
2007-01-31 16:23:07 +00:00
|
|
|
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_peerBitfield( tor->peers[j] ) &&
|
|
|
|
tr_bitfieldHas( tr_peerBitfield( tor->peers[j] ), piece ) )
|
|
|
|
{
|
|
|
|
(tab[i])++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tr_lockUnlock( &tor->lock );
|
|
|
|
}
|
|
|
|
|
2007-02-23 11:26:48 +00:00
|
|
|
float * tr_torrentCompletion( tr_torrent_t * tor )
|
|
|
|
{
|
|
|
|
tr_info_t * inf = &tor->info;
|
|
|
|
int piece, file;
|
|
|
|
float * ret, prog, weight;
|
|
|
|
uint64_t piecemax, piecesize;
|
|
|
|
uint64_t filestart, fileoff, filelen, blockend, blockused;
|
|
|
|
|
|
|
|
tr_lockLock( &tor->lock );
|
|
|
|
|
|
|
|
ret = calloc( inf->fileCount, sizeof( float ) );
|
|
|
|
file = 0;
|
|
|
|
piecemax = inf->pieceSize;
|
|
|
|
filestart = 0;
|
|
|
|
fileoff = 0;
|
|
|
|
piece = 0;
|
|
|
|
while( inf->pieceCount > piece )
|
|
|
|
{
|
|
|
|
assert( file < inf->fileCount );
|
|
|
|
assert( filestart + fileoff < inf->totalSize );
|
|
|
|
filelen = inf->files[file].length;
|
|
|
|
piecesize = tr_pieceSize( piece );
|
|
|
|
blockend = MIN( filestart + filelen, piecemax * piece + piecesize );
|
|
|
|
blockused = blockend - ( filestart + fileoff );
|
|
|
|
weight = ( filelen ? ( float )blockused / ( float )filelen : 1.0 );
|
|
|
|
prog = tr_cpPercentBlocksInPiece( tor->completion, piece );
|
|
|
|
ret[file] += prog * weight;
|
|
|
|
fileoff += blockused;
|
|
|
|
assert( -0.1 < prog && 1.1 > prog );
|
|
|
|
assert( -0.1 < weight && 1.1 > weight );
|
|
|
|
if( fileoff == filelen )
|
|
|
|
{
|
2007-02-23 11:49:18 +00:00
|
|
|
ret[file] = MIN( 1.0, ret[file] );
|
|
|
|
ret[file] = MAX( 0.0, ret[file] );
|
2007-02-23 11:26:48 +00:00
|
|
|
filestart += fileoff;
|
|
|
|
fileoff = 0;
|
|
|
|
file++;
|
|
|
|
}
|
|
|
|
if( filestart + fileoff >= piecemax * piece + piecesize )
|
|
|
|
{
|
|
|
|
piece++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tr_lockUnlock( &tor->lock );
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2007-01-19 08:36:49 +00:00
|
|
|
void tr_torrentAmountFinished( tr_torrent_t * tor, float * tab, int size )
|
|
|
|
{
|
|
|
|
int i, piece;
|
2007-01-31 16:23:07 +00:00
|
|
|
float interval;
|
2007-01-19 08:36:49 +00:00
|
|
|
|
|
|
|
tr_lockLock( &tor->lock );
|
2007-01-31 16:23:07 +00:00
|
|
|
interval = (float)tor->info.pieceCount / (float)size;
|
2007-01-19 08:36:49 +00:00
|
|
|
for( i = 0; i < size; i++ )
|
|
|
|
{
|
2007-01-31 16:23:07 +00:00
|
|
|
piece = i * interval;
|
2007-01-19 08:36:49 +00:00
|
|
|
tab[i] = tr_cpPercentBlocksInPiece( tor->completion, piece );
|
|
|
|
}
|
|
|
|
tr_lockUnlock( &tor->lock );
|
|
|
|
}
|
|
|
|
|
2007-01-19 15:24:20 +00:00
|
|
|
void tr_torrentRemoveSaved( tr_torrent_t * tor )
|
|
|
|
{
|
2007-03-13 06:56:50 +00:00
|
|
|
tr_metainfoRemoveSaved( tor->info.hashString, tor->handle->tag );
|
2007-01-19 08:36:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* tr_torrentClose
|
|
|
|
***********************************************************************
|
|
|
|
* Frees memory allocated by tr_torrentInit.
|
|
|
|
**********************************************************************/
|
|
|
|
void tr_torrentClose( tr_handle_t * h, tr_torrent_t * tor )
|
|
|
|
{
|
|
|
|
tr_info_t * inf = &tor->info;
|
|
|
|
|
|
|
|
if( tor->status & ( TR_STATUS_STOPPING | TR_STATUS_STOPPED ) )
|
|
|
|
{
|
|
|
|
/* Join the thread first */
|
|
|
|
torrentReallyStop( tor );
|
|
|
|
}
|
|
|
|
|
|
|
|
tr_sharedLock( h->shared );
|
|
|
|
|
|
|
|
h->torrentCount--;
|
|
|
|
|
|
|
|
tr_lockClose( &tor->lock );
|
2007-01-19 15:24:20 +00:00
|
|
|
tr_condClose( &tor->cond );
|
2007-01-19 08:36:49 +00:00
|
|
|
tr_cpClose( tor->completion );
|
|
|
|
|
|
|
|
tr_rcClose( tor->upload );
|
|
|
|
tr_rcClose( tor->download );
|
|
|
|
tr_rcClose( tor->swarmspeed );
|
|
|
|
|
|
|
|
if( tor->destination )
|
|
|
|
{
|
|
|
|
free( tor->destination );
|
|
|
|
}
|
|
|
|
|
|
|
|
tr_metainfoFree( inf );
|
|
|
|
|
|
|
|
if( tor->prev )
|
|
|
|
{
|
|
|
|
tor->prev->next = tor->next;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
h->torrentList = tor->next;
|
|
|
|
}
|
|
|
|
if( tor->next )
|
|
|
|
{
|
|
|
|
tor->next->prev = tor->prev;
|
|
|
|
}
|
|
|
|
free( tor );
|
|
|
|
|
|
|
|
tr_sharedUnlock( h->shared );
|
|
|
|
}
|
|
|
|
|
2007-03-29 00:19:09 +00:00
|
|
|
int tr_torrentAttachPeer( tr_torrent_t * tor, tr_peer_t * peer )
|
2007-01-21 06:42:05 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
tr_peer_t * otherPeer;
|
|
|
|
|
|
|
|
if( tor->peerCount >= TR_MAX_PEER_COUNT )
|
|
|
|
{
|
|
|
|
tr_peerDestroy( peer );
|
2007-03-29 00:19:09 +00:00
|
|
|
return 0;
|
2007-01-21 06:42:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* 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 );
|
2007-03-29 00:19:09 +00:00
|
|
|
return 0;
|
2007-01-21 06:42:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-31 19:19:09 +00:00
|
|
|
tr_peerSetPrivate( peer, tor->info.flags & TR_FLAG_PRIVATE ||
|
|
|
|
tor->pexDisabled );
|
2007-01-21 06:42:05 +00:00
|
|
|
tr_peerSetTorrent( peer, tor );
|
|
|
|
tor->peers[tor->peerCount++] = peer;
|
2007-03-29 00:19:09 +00:00
|
|
|
|
|
|
|
return 1;
|
2007-01-21 06:42:05 +00:00
|
|
|
}
|
|
|
|
|
2007-03-29 00:19:09 +00:00
|
|
|
int tr_torrentAddCompact( tr_torrent_t * tor, int from,
|
2007-03-23 08:28:01 +00:00
|
|
|
uint8_t * buf, int count )
|
2007-01-21 06:42:05 +00:00
|
|
|
{
|
|
|
|
struct in_addr addr;
|
|
|
|
in_port_t port;
|
2007-03-29 00:19:09 +00:00
|
|
|
int i, added;
|
2007-01-21 06:42:05 +00:00
|
|
|
tr_peer_t * peer;
|
|
|
|
|
2007-03-29 00:19:09 +00:00
|
|
|
added = 0;
|
2007-01-21 06:42:05 +00:00
|
|
|
for( i = 0; i < count; i++ )
|
|
|
|
{
|
|
|
|
memcpy( &addr, buf, 4 ); buf += 4;
|
|
|
|
memcpy( &port, buf, 2 ); buf += 2;
|
|
|
|
|
2007-03-23 08:28:01 +00:00
|
|
|
peer = tr_peerInit( addr, port, -1, from );
|
2007-03-29 00:19:09 +00:00
|
|
|
added += tr_torrentAttachPeer( tor, peer );
|
2007-01-21 06:42:05 +00:00
|
|
|
}
|
2007-03-29 00:19:09 +00:00
|
|
|
|
|
|
|
return added;
|
2007-01-21 06:42:05 +00:00
|
|
|
}
|
|
|
|
|
2007-01-19 08:36:49 +00:00
|
|
|
/***********************************************************************
|
|
|
|
* downloadLoop
|
|
|
|
**********************************************************************/
|
|
|
|
static void downloadLoop( void * _tor )
|
|
|
|
{
|
|
|
|
tr_torrent_t * tor = _tor;
|
2007-01-21 06:42:05 +00:00
|
|
|
int i, ret;
|
2007-03-29 00:19:09 +00:00
|
|
|
int peerCount, used;
|
2007-01-19 11:19:20 +00:00
|
|
|
uint8_t * peerCompact;
|
2007-01-21 06:42:05 +00:00
|
|
|
tr_peer_t * peer;
|
2007-01-19 08:36:49 +00:00
|
|
|
|
|
|
|
tr_lockLock( &tor->lock );
|
|
|
|
|
|
|
|
tr_cpReset( tor->completion );
|
|
|
|
tor->io = tr_ioInit( tor );
|
|
|
|
tor->status = tr_cpIsSeeding( tor->completion ) ?
|
|
|
|
TR_STATUS_SEED : TR_STATUS_DOWNLOAD;
|
|
|
|
|
|
|
|
while( !tor->die )
|
|
|
|
{
|
2007-01-21 06:42:05 +00:00
|
|
|
tr_lockUnlock( &tor->lock );
|
|
|
|
tr_wait( 20 );
|
|
|
|
tr_lockLock( &tor->lock );
|
2007-01-19 08:36:49 +00:00
|
|
|
|
|
|
|
/* Are we finished ? */
|
|
|
|
if( ( tor->status & TR_STATUS_DOWNLOAD ) &&
|
|
|
|
tr_cpIsSeeding( tor->completion ) )
|
|
|
|
{
|
|
|
|
/* Done */
|
|
|
|
tor->status = TR_STATUS_SEED;
|
|
|
|
tor->finished = 1;
|
|
|
|
tr_trackerCompleted( tor->tracker );
|
|
|
|
tr_ioSync( tor->io );
|
|
|
|
}
|
|
|
|
|
2007-01-21 06:42:05 +00:00
|
|
|
/* Try to get new peers or to send a message to the tracker */
|
|
|
|
tr_trackerPulse( tor->tracker, &peerCount, &peerCompact );
|
|
|
|
if( peerCount > 0 )
|
|
|
|
{
|
2007-03-29 00:19:09 +00:00
|
|
|
used = tr_torrentAddCompact( tor, TR_PEER_FROM_TRACKER,
|
|
|
|
peerCompact, peerCount );
|
2007-01-21 06:42:05 +00:00
|
|
|
free( peerCompact );
|
2007-03-29 01:09:03 +00:00
|
|
|
tr_dbg( "got %i peers from announce, used %i", peerCount, used );
|
2007-01-21 06:42:05 +00:00
|
|
|
}
|
|
|
|
if( tor->status & TR_STATUS_STOPPED )
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Stopping: make sure all files are closed and stop talking
|
|
|
|
to peers */
|
2007-01-19 15:24:20 +00:00
|
|
|
if( tor->status & TR_STATUS_STOPPING )
|
|
|
|
{
|
|
|
|
if( tor->io )
|
|
|
|
{
|
|
|
|
tr_ioClose( tor->io ); tor->io = NULL;
|
|
|
|
tr_condSignal( &tor->cond );
|
|
|
|
}
|
2007-01-21 06:42:05 +00:00
|
|
|
continue;
|
2007-01-19 15:24:20 +00:00
|
|
|
}
|
2007-01-21 06:42:05 +00:00
|
|
|
|
|
|
|
/* Shuffle peers */
|
|
|
|
if( tor->peerCount > 1 )
|
|
|
|
{
|
|
|
|
peer = tor->peers[0];
|
|
|
|
memmove( &tor->peers[0], &tor->peers[1],
|
|
|
|
( tor->peerCount - 1 ) * sizeof( void * ) );
|
|
|
|
tor->peers[tor->peerCount - 1] = peer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Receive/send messages */
|
|
|
|
for( i = 0; i < tor->peerCount; )
|
2007-01-19 08:36:49 +00:00
|
|
|
{
|
2007-01-21 06:42:05 +00:00
|
|
|
peer = tor->peers[i];
|
|
|
|
|
|
|
|
ret = tr_peerPulse( peer );
|
|
|
|
if( ret & TR_ERROR_IO_MASK )
|
2007-01-19 15:24:20 +00:00
|
|
|
{
|
|
|
|
tr_err( "Fatal error, stopping download (%d)", ret );
|
|
|
|
torrentStop( tor );
|
|
|
|
tor->error = ret;
|
|
|
|
snprintf( tor->errorString, sizeof( tor->errorString ),
|
|
|
|
"%s", tr_errorString( ret ) );
|
2007-01-21 06:42:05 +00:00
|
|
|
break;
|
2007-01-19 15:24:20 +00:00
|
|
|
}
|
2007-01-21 06:42:05 +00:00
|
|
|
if( ret )
|
|
|
|
{
|
|
|
|
tr_peerDestroy( peer );
|
|
|
|
tor->peerCount--;
|
|
|
|
memmove( &tor->peers[i], &tor->peers[i+1],
|
|
|
|
( tor->peerCount - i ) * sizeof( void * ) );
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
i++;
|
2007-01-19 08:36:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tr_lockUnlock( &tor->lock );
|
|
|
|
|
2007-01-19 15:24:20 +00:00
|
|
|
if( tor->io )
|
|
|
|
{
|
|
|
|
tr_ioClose( tor->io ); tor->io = NULL;
|
|
|
|
tr_condSignal( &tor->cond );
|
|
|
|
}
|
2007-01-19 08:36:49 +00:00
|
|
|
|
|
|
|
tor->status = TR_STATUS_STOPPED;
|
|
|
|
}
|
|
|
|
|