transmission/libtransmission/torrent-magnet.c

408 lines
11 KiB
C
Raw Normal View History

2009-11-24 02:16:31 +00:00
/*
* This file Copyright (C) 2012-2014 Mnemosyne LLC
2009-11-24 02:16:31 +00:00
*
* It may be used under the GNU Public License v2 or v3 licenses,
* or any future license endorsed by Mnemosyne LLC.
2009-11-24 02:16:31 +00:00
*
* $Id$
2009-11-24 02:16:31 +00:00
*/
#include <assert.h>
#include <string.h> /* memcpy (), memset (), memcmp () */
2009-11-24 02:16:31 +00:00
#include <event2/buffer.h>
2009-11-24 02:16:31 +00:00
#include "transmission.h"
#include "crypto.h" /* tr_sha1 () */
#include "log.h"
2009-11-24 02:16:31 +00:00
#include "magnet.h"
#include "metainfo.h"
#include "resume.h"
2009-11-24 02:16:31 +00:00
#include "torrent.h"
#include "torrent-magnet.h"
#include "utils.h"
#include "variant.h"
2009-11-24 02:16:31 +00:00
#include "web.h"
#define dbgmsg(tor, ...) \
do \
{ \
if (tr_logGetDeepEnabled ()) \
tr_logAddDeep (__FILE__, __LINE__, tr_torrentName (tor), __VA_ARGS__); \
} \
while (0)
2009-11-24 02:16:31 +00:00
/***
****
***/
enum
{
/* don't ask for the same metadata piece more than this often */
MIN_REPEAT_INTERVAL_SECS = 3
2009-11-24 02:16:31 +00:00
};
struct metadata_node
{
time_t requestedAt;
int piece;
2009-11-24 02:16:31 +00:00
};
struct tr_incomplete_metadata
{
uint8_t * metadata;
int metadata_size;
int pieceCount;
2009-11-24 02:16:31 +00:00
/** sorted from least to most recently requested */
struct metadata_node * piecesNeeded;
int piecesNeededCount;
2009-11-24 02:16:31 +00:00
};
static void
incompleteMetadataFree (struct tr_incomplete_metadata * m)
2009-11-24 02:16:31 +00:00
{
tr_free (m->metadata);
tr_free (m->piecesNeeded);
tr_free (m);
2009-11-24 02:16:31 +00:00
}
void
tr_torrentSetMetadataSizeHint (tr_torrent * tor, int size)
2009-11-24 02:16:31 +00:00
{
if (!tr_torrentHasMetadata (tor))
2009-11-24 02:16:31 +00:00
{
if (tor->incompleteMetadata == NULL)
2009-11-24 02:16:31 +00:00
{
int i;
struct tr_incomplete_metadata * m;
const int n = (size + (METADATA_PIECE_SIZE - 1)) / METADATA_PIECE_SIZE;
dbgmsg (tor, "metadata is %d bytes in %d pieces", size, n);
m = tr_new (struct tr_incomplete_metadata, 1);
m->pieceCount = n;
m->metadata = tr_new (uint8_t, size);
m->metadata_size = size;
m->piecesNeededCount = n;
m->piecesNeeded = tr_new (struct metadata_node, n);
for (i=0; i<n; ++i)
{
m->piecesNeeded[i].piece = i;
m->piecesNeeded[i].requestedAt = 0;
2009-11-24 02:16:31 +00:00
}
tor->incompleteMetadata = m;
2009-11-24 02:16:31 +00:00
}
}
}
static int
findInfoDictOffset (const tr_torrent * tor)
{
size_t fileLen;
uint8_t * fileContents;
int offset = 0;
/* load the file, and find the info dict's offset inside the file */
if ((fileContents = tr_loadFile (tor->info.torrent, &fileLen)))
{
tr_variant top;
if (!tr_variantFromBenc (&top, fileContents, fileLen))
{
tr_variant * infoDict;
if (tr_variantDictFindDict (&top, TR_KEY_info, &infoDict))
{
int infoLen;
char * infoContents = tr_variantToStr (infoDict, TR_VARIANT_FMT_BENC, &infoLen);
const uint8_t * i = (const uint8_t*) tr_memmem ((char*)fileContents, fileLen, infoContents, infoLen);
offset = i != NULL ? i - fileContents : 0;
tr_free (infoContents);
}
tr_variantFree (&top);
}
tr_free (fileContents);
}
return offset;
}
static void
ensureInfoDictOffsetIsCached (tr_torrent * tor)
{
assert (tr_torrentHasMetadata (tor));
if (!tor->infoDictOffsetIsCached)
{
tor->infoDictOffset = findInfoDictOffset (tor);
tor->infoDictOffsetIsCached = true;
}
}
2009-11-24 02:16:31 +00:00
void*
tr_torrentGetMetadataPiece (tr_torrent * tor, int piece, int * len)
2009-11-24 02:16:31 +00:00
{
char * ret = NULL;
2009-11-24 02:16:31 +00:00
assert (tr_isTorrent (tor));
assert (piece >= 0);
assert (len != NULL);
2009-11-24 02:16:31 +00:00
if (tr_torrentHasMetadata (tor))
2009-11-24 02:16:31 +00:00
{
FILE * fp;
ensureInfoDictOffsetIsCached (tor);
assert (tor->infoDictLength > 0);
assert (tor->infoDictOffset >= 0);
fp = fopen (tor->info.torrent, "rb");
if (fp != NULL)
2009-11-24 02:16:31 +00:00
{
const int o = piece * METADATA_PIECE_SIZE;
2009-11-24 02:16:31 +00:00
if (!fseek (fp, tor->infoDictOffset + o, SEEK_SET))
2009-11-24 02:16:31 +00:00
{
const int l = o + METADATA_PIECE_SIZE <= tor->infoDictLength
? METADATA_PIECE_SIZE
: tor->infoDictLength - o;
if (0<l && l<=METADATA_PIECE_SIZE)
2009-11-24 02:16:31 +00:00
{
char * buf = tr_new (char, l);
const int n = fread (buf, 1, l, fp);
if (n == l)
{
*len = l;
ret = buf;
buf = NULL;
}
tr_free (buf);
2009-11-24 02:16:31 +00:00
}
}
fclose (fp);
2009-11-24 02:16:31 +00:00
}
}
return ret;
}
void
tr_torrentSetMetadataPiece (tr_torrent * tor, int piece, const void * data, int len)
2009-11-24 02:16:31 +00:00
{
int i;
struct tr_incomplete_metadata * m;
const int offset = piece * METADATA_PIECE_SIZE;
2009-11-24 02:16:31 +00:00
assert (tr_isTorrent (tor));
2009-11-24 02:16:31 +00:00
dbgmsg (tor, "got metadata piece %d", piece);
2009-11-24 02:16:31 +00:00
/* are we set up to download metadata? */
m = tor->incompleteMetadata;
if (m == NULL)
return;
2009-11-24 02:16:31 +00:00
/* does this data pass the smell test? */
if (offset + len > m->metadata_size)
return;
2009-11-24 02:16:31 +00:00
/* do we need this piece? */
for (i=0; i<m->piecesNeededCount; ++i)
if (m->piecesNeeded[i].piece == piece)
break;
if (i==m->piecesNeededCount)
return;
2009-11-24 02:16:31 +00:00
memcpy (m->metadata + offset, data, len);
2009-11-24 02:16:31 +00:00
tr_removeElementFromArray (m->piecesNeeded, i,
sizeof (struct metadata_node),
m->piecesNeededCount--);
2009-11-24 02:16:31 +00:00
dbgmsg (tor, "saving metainfo piece %d... %d remain", piece, m->piecesNeededCount);
2009-11-24 02:16:31 +00:00
/* are we done? */
if (m->piecesNeededCount == 0)
2009-11-24 02:16:31 +00:00
{
bool success = false;
bool checksumPassed = false;
bool metainfoParsed = false;
uint8_t sha1[SHA_DIGEST_LENGTH];
/* we've got a complete set of metainfo... see if it passes the checksum test */
dbgmsg (tor, "metainfo piece %d was the last one", piece);
tr_sha1 (sha1, m->metadata, m->metadata_size, NULL);
if ((checksumPassed = !memcmp (sha1, tor->info.hash, SHA_DIGEST_LENGTH)))
2009-11-24 02:16:31 +00:00
{
/* checksum passed; now try to parse it as benc */
tr_variant infoDict;
const int err = tr_variantFromBenc (&infoDict, m->metadata, m->metadata_size);
dbgmsg (tor, "err is %d", err);
if ((metainfoParsed = !err))
2009-11-24 02:16:31 +00:00
{
/* yay we have bencoded metainfo... merge it into our .torrent file */
tr_variant newMetainfo;
char * path = tr_strdup (tor->info.torrent);
if (!tr_variantFromFile (&newMetainfo, TR_VARIANT_FMT_BENC, path))
2009-11-24 02:16:31 +00:00
{
bool hasInfo;
tr_info info;
int infoDictLength;
2009-11-24 02:16:31 +00:00
/* remove any old .torrent and .resume files */
tr_remove (path);
tr_torrentRemoveResume (tor);
dbgmsg (tor, "Saving completed metadata to \"%s\"", path);
tr_variantMergeDicts (tr_variantDictAddDict (&newMetainfo, TR_KEY_info, 0), &infoDict);
2009-11-24 02:16:31 +00:00
memset (&info, 0, sizeof (tr_info));
success = tr_metainfoParse (tor->session, &newMetainfo, &info, &hasInfo, &infoDictLength);
if (success && !tr_getBlockSize (info.pieceSize))
{
tr_torrentSetLocalError (tor, "%s", _("Magnet torrent's metadata is not usable"));
success = false;
}
if (success)
{
/* keep the new info */
tor->info = info;
tor->infoDictLength = infoDictLength;
/* save the new .torrent file */
tr_variantToFile (&newMetainfo, TR_VARIANT_FMT_BENC, tor->info.torrent);
tr_sessionSetTorrentFile (tor->session, tor->info.hashString, tor->info.torrent);
tr_torrentGotNewInfoDict (tor);
tr_torrentSetDirty (tor);
}
tr_variantFree (&newMetainfo);
}
tr_variantFree (&infoDict);
tr_free (path);
2009-11-24 02:16:31 +00:00
}
}
if (success)
2009-11-24 02:16:31 +00:00
{
incompleteMetadataFree (tor->incompleteMetadata);
tor->incompleteMetadata = NULL;
tor->isStopping = true;
tor->magnetVerify = true;
tor->startAfterVerify = true;
2009-11-24 02:16:31 +00:00
}
else /* drat. */
{
const int n = m->pieceCount;
for (i=0; i<n; ++i)
{
m->piecesNeeded[i].piece = i;
m->piecesNeeded[i].requestedAt = 0;
2009-11-24 02:16:31 +00:00
}
m->piecesNeededCount = n;
dbgmsg (tor, "metadata error; trying again. %d pieces left", n);
tr_logAddError ("magnet status: checksum passed %d, metainfo parsed %d",
(int)checksumPassed, (int)metainfoParsed);
2009-11-24 02:16:31 +00:00
}
}
}
bool
tr_torrentGetNextMetadataRequest (tr_torrent * tor, time_t now, int * setme_piece)
2009-11-24 02:16:31 +00:00
{
bool have_request = false;
struct tr_incomplete_metadata * m;
2009-11-24 02:16:31 +00:00
assert (tr_isTorrent (tor));
2009-11-24 02:16:31 +00:00
m = tor->incompleteMetadata;
2009-11-24 02:16:31 +00:00
if ((m != NULL) && (m->piecesNeededCount > 0)
&& (m->piecesNeeded[0].requestedAt + MIN_REPEAT_INTERVAL_SECS < now))
2009-11-24 02:16:31 +00:00
{
int i;
const int piece = m->piecesNeeded[0].piece;
2009-11-24 02:16:31 +00:00
tr_removeElementFromArray (m->piecesNeeded, 0,
sizeof (struct metadata_node),
m->piecesNeededCount--);
2009-11-24 02:16:31 +00:00
i = m->piecesNeededCount++;
m->piecesNeeded[i].piece = piece;
m->piecesNeeded[i].requestedAt = now;
2009-11-24 02:16:31 +00:00
dbgmsg (tor, "next piece to request: %d", piece);
*setme_piece = piece;
have_request = true;
2009-11-24 02:16:31 +00:00
}
return have_request;
2009-11-24 02:16:31 +00:00
}
2009-11-24 17:10:40 +00:00
double
tr_torrentGetMetadataPercent (const tr_torrent * tor)
2009-11-24 17:10:40 +00:00
{
double ret;
if (tr_torrentHasMetadata (tor))
{
ret = 1.0;
2009-11-24 17:10:40 +00:00
}
else
{
const struct tr_incomplete_metadata * m = tor->incompleteMetadata;
2009-11-24 17:10:40 +00:00
if (!m || !m->pieceCount)
ret = 0.0;
else
ret = (m->pieceCount - m->piecesNeededCount) / (double)m->pieceCount;
}
return ret;
2009-11-24 17:10:40 +00:00
}
/* FIXME: this should be renamed tr_metainfoGetMagnetLink() and moved to metainfo.c for consistency */
char *
tr_torrentInfoGetMagnetLink (const tr_info * inf)
{
unsigned int i;
const char * name;
struct evbuffer * s = evbuffer_new ();
evbuffer_add_printf (s, "magnet:?xt=urn:btih:%s", inf->hashString);
name = inf->name;
if (name && *name)
{
evbuffer_add_printf (s, "%s", "&dn=");
tr_http_escape (s, name, -1, true);
}
for (i=0; i<inf->trackerCount; ++i)
{
evbuffer_add_printf (s, "%s", "&tr=");
tr_http_escape (s, inf->trackers[i].announce, -1, true);
}
for (i=0; i<inf->webseedCount; i++)
{
evbuffer_add_printf (s, "%s", "&ws=");
tr_http_escape (s, inf->webseeds[i], -1, true);
}
return evbuffer_free_to_str (s);
}