ut_metadata/index.js

236 lines
6.2 KiB
JavaScript
Raw Normal View History

var BitField = require('bitfield')
2014-03-23 03:34:50 +00:00
var bncode = require('bncode')
var EventEmitter = require('events').EventEmitter
var inherits = require('inherits')
2014-03-23 05:15:57 +00:00
var Rusha = require('rusha-browserify') // Fast SHA1 (works in browser)
2014-03-23 03:34:50 +00:00
2014-04-20 02:26:19 +01:00
var BITFIELD_GROW = 1000
2014-03-23 03:34:50 +00:00
var PIECE_LENGTH = 16 * 1024
2014-03-23 05:15:57 +00:00
function sha1 (buf) {
return (new Rusha()).digestFromBuffer(buf)
}
2014-03-23 03:34:50 +00:00
module.exports = function (metadata) {
inherits(ut_metadata, EventEmitter)
function ut_metadata (wire) {
EventEmitter.call(this)
this._wire = wire
this._metadataComplete = false
this._metadataSize = null
this._remainingRejects = null // how many reject messages to tolerate before quitting
this._fetching = false
2014-04-20 02:26:19 +01:00
// The largest .torrent file that I know of is ~1-2MB, which is ~100 pieces.
// Therefore, cap the bitfield to 1,000 bits so a malicious peer can't make it grow
// to fill all memory.
this._bitfield = new BitField(0, { grow: BITFIELD_GROW })
2014-03-23 03:34:50 +00:00
2014-03-28 06:36:04 +00:00
if (Buffer.isBuffer(metadata)) {
this.setMetadata(metadata)
2014-03-23 03:34:50 +00:00
}
}
2014-03-23 05:15:57 +00:00
ut_metadata.prototype.onHandshake = function (infoHash, peerId, extensions) {
this._infoHash = infoHash
2014-03-23 03:34:50 +00:00
}
ut_metadata.prototype.onExtendedHandshake = function (handshake) {
if (!handshake.m || !handshake.m.ut_metadata) {
2014-03-23 04:10:23 +00:00
return this.emit('warning', new Error('Peer does not support ut_metadata'))
}
if (!handshake.metadata_size) {
return this.emit('warning', new Error('Peer does not have metadata'))
}
2014-03-23 03:34:50 +00:00
this._metadataSize = handshake.metadata_size
2014-03-23 05:15:57 +00:00
this._numPieces = Math.ceil(this._metadataSize / PIECE_LENGTH)
this._remainingRejects = this._numPieces * 2
2014-03-23 04:10:23 +00:00
if (this._fetching) {
2014-03-23 03:34:50 +00:00
this._requestPieces()
}
}
ut_metadata.prototype.onMessage = function (buf) {
var dict, trailer
try {
var str = buf.toString()
var trailerIndex = str.indexOf('ee') + 2
dict = bncode.decode(str.substring(0, trailerIndex))
trailer = buf.slice(trailerIndex)
} catch (err) {
2014-03-23 04:10:23 +00:00
// drop invalid messages
2014-03-23 03:34:50 +00:00
return
}
switch (dict.msg_type) {
case 0:
// ut_metadata request (from peer)
// example: { 'msg_type': 0, 'piece': 0 }
this._onRequest(dict.piece)
break
case 1:
// ut_metadata data (in response to our request)
// example: { 'msg_type': 1, 'piece': 0, 'total_size': 3425 }
this._onData(dict.piece, trailer, dict.total_size)
break
case 2:
// ut_metadata reject (peer doesn't have piece we requested)
// { 'msg_type': 2, 'piece': 0 }
this._onReject(dict.piece)
break
}
}
2014-06-04 05:17:25 +01:00
/**
* Ask the peer to send metadata.
* @public
*/
2014-03-23 03:34:50 +00:00
ut_metadata.prototype.fetch = function () {
if (this._metadataComplete) {
return
}
this._fetching = true
if (this._metadataSize) {
this._requestPieces()
}
}
2014-06-04 05:17:25 +01:00
/**
* Stop asking the peer to send metadata.
* @public
*/
2014-03-23 03:34:50 +00:00
ut_metadata.prototype.cancel = function () {
this._fetching = false
}
ut_metadata.prototype.setMetadata = function (metadata) {
if (this._metadataComplete) return true
// if full torrent dictionary was passed in, pull out just `info` key
try {
var info = bncode.decode(metadata).info
if (info) {
metadata = bncode.encode(info)
}
} catch (err) {}
// check hash
if (this._infoHash && this._infoHash.toString('hex') !== sha1(metadata)) {
return false
}
this.cancel()
this.metadata = metadata
2014-06-04 05:17:25 +01:00
this._metadataComplete = true
this._metadataSize = this.metadata.length
this._wire.extendedHandshake.metadata_size = this._metadataSize
2014-06-04 05:17:25 +01:00
this.emit('metadata', bncode.encode({ info: bncode.decode(this.metadata) }))
return true
2014-06-04 05:17:25 +01:00
}
2014-03-23 03:34:50 +00:00
ut_metadata.prototype._send = function (dict, trailer) {
var buf = bncode.encode(dict)
if (Buffer.isBuffer(trailer)) {
buf = Buffer.concat([buf, trailer])
}
this._wire.extended('ut_metadata', buf)
}
ut_metadata.prototype._request = function (piece) {
2014-03-23 05:36:12 +00:00
this._send({ msg_type: 0, piece: piece })
2014-03-23 03:34:50 +00:00
}
ut_metadata.prototype._data = function (piece, buf, totalSize) {
2014-03-23 05:36:12 +00:00
var msg = { msg_type: 1, piece: piece }
2014-03-23 03:34:50 +00:00
if (typeof totalSize === 'number') {
msg.total_size = totalSize
}
this._send(msg, buf)
}
ut_metadata.prototype._reject = function (piece) {
2014-03-23 05:36:12 +00:00
this._send({ msg_type: 2, piece: piece })
2014-03-23 03:34:50 +00:00
}
ut_metadata.prototype._onRequest = function (piece) {
2014-04-23 14:38:50 +01:00
if (!this._metadataComplete) {
this._reject(piece)
2014-04-23 14:38:50 +01:00
return
}
var start = piece * PIECE_LENGTH
var end = start + PIECE_LENGTH
if (end > this._metadataSize) {
end = this._metadataSize
2014-03-23 03:34:50 +00:00
}
2014-04-23 14:38:50 +01:00
var buf = this.metadata.slice(start, end)
this._data(piece, buf, this._metadataSize)
2014-03-23 03:34:50 +00:00
}
ut_metadata.prototype._onData = function (piece, buf, totalSize) {
if (buf.length > PIECE_LENGTH) {
return
}
buf.copy(this.metadata, piece * PIECE_LENGTH)
this._bitfield.set(piece)
this._checkDone()
}
ut_metadata.prototype._onReject = function (piece) {
if (this._remainingRejects > 0 && this._fetching) {
// If we haven't been rejected too much, then try to request the piece again
this._request(piece)
this._remainingRejects -= 1
} else {
this.emit('warning', new Error('Peer sent "reject" too much'))
}
}
ut_metadata.prototype._requestPieces = function () {
this.metadata = new Buffer(this._metadataSize)
for (var piece = 0; piece < this._numPieces; piece++) {
this._request(piece)
}
}
ut_metadata.prototype._checkDone = function () {
var done = true
for (var piece = 0; piece < this._numPieces; piece++) {
if (!this._bitfield.get(piece)) {
done = false
break
}
}
if (!done) return
// attempt to set metadata -- may fail sha1 check
var success = this.setMetadata(this.metadata)
2014-05-07 20:09:39 +01:00
if (!success) {
2014-03-23 05:15:57 +00:00
this._failedMetadata()
}
}
2014-03-23 03:34:50 +00:00
2014-03-23 05:15:57 +00:00
ut_metadata.prototype._failedMetadata = function () {
// reset bitfield & try again
this._bitfield = new BitField(0, { grow: BITFIELD_GROW })
2014-03-23 05:15:57 +00:00
this._remainingRejects -= this._numPieces
if (this._remainingRejects > 0) {
this._requestPieces()
} else {
this.emit('warning', new Error('Peer sent invalid metadata'))
}
2014-03-23 03:34:50 +00:00
}
return ut_metadata
}