bitmessage-js/lib/net/tcp.js

325 lines
9.2 KiB
JavaScript
Raw Normal View History

2015-02-01 20:34:47 +00:00
/**
2015-02-10 12:57:55 +00:00
* TCP transport compatible with PyBitmessage. Available only for Node
* platform.
* **NOTE**: `TcpTransport` is exported as a module.
2015-02-14 11:00:27 +00:00
* @module bitmessage/net/tcp
2015-02-12 10:36:44 +00:00
* @example
* var messages = require("bitmessage").messages;
2015-02-14 10:53:24 +00:00
* var TcpTransport = require("bitmessage/lib/net/tcp");
2015-02-12 10:36:44 +00:00
*
* var tcp = new TcpTransport({
* dnsSeeds: [["bootstrap8444.bitmessage.org", 8444]],
* });
*
* tcp.bootstrap().then(function(nodes) {
* var remoteHost = nodes[0][0];
* var remotePort = nodes[0][1];
* console.log("Connecting to", nodes[0]);
* tcp.connect(remotePort, remoteHost);
* });
*
2015-02-24 17:27:41 +00:00
* tcp.on("established", function(version) {
* console.log("Connection established to", version.userAgent);
2015-02-12 10:36:44 +00:00
*
* tcp.on("message", function(command, payload) {
* console.log("Got new", command, "message");
* var decoded;
* if (command === "addr") {
* decoded = messages.addr.decodePayload(payload);
* console.log("Got", decoded.addrs.length, "node addresses");
* }
* });
* });
2015-02-01 20:34:47 +00:00
*/
"use strict";
2015-02-09 14:38:10 +00:00
var objectAssign = Object.assign || require("object-assign");
2015-02-01 20:34:47 +00:00
var inherits = require("inherits");
2015-02-05 18:38:36 +00:00
var net = require("net");
2015-02-05 19:55:36 +00:00
var dns = require("dns");
var util = require("../_util");
2015-02-05 18:38:36 +00:00
var PPromise = require("../platform").Promise;
2015-02-09 14:38:10 +00:00
var structs = require("../structs");
var messages = require("../messages");
2015-02-06 09:47:40 +00:00
var BaseTransport = require("./base");
2015-02-01 20:34:47 +00:00
var assert = util.assert;
2015-02-09 21:56:55 +00:00
var getmsg = BaseTransport._getmsg;
var unmap = BaseTransport._unmap;
2015-02-01 20:34:47 +00:00
/**
2015-02-14 10:53:24 +00:00
* TCP transport class. Implements [base transport interface]{@link
2015-02-14 11:00:27 +00:00
* module:bitmessage/net/base.BaseTransport}.
2015-02-10 18:23:20 +00:00
* @param {Object=} opts - Transport options
2015-02-10 14:59:49 +00:00
* @param {Array} opts.seeds - Bootstrap nodes (none by default)
* @param {Array} opts.dnsSeeds - Bootstrap DNS nodes (none by default)
* @param {Object} opts.services -
* [Service features]{@link module:bitmessage/structs.ServicesBitfield}
* provided by this node (`NODE_NETWORK` by default)
* @param {(Array|string|Buffer)} opts.userAgent -
* [User agent]{@link module:bitmessage/user-agent} of this node
* (user agent of bitmessage library by default)
* @param {number[]} opts.streams - Streams accepted by this node ([1]
* by default)
2015-02-10 14:59:49 +00:00
* @param {number} opts.port - Incoming port of this node (8444 by
* default)
2015-02-01 20:34:47 +00:00
* @constructor
* @static
*/
2015-02-10 12:57:55 +00:00
function TcpTransport(opts) {
TcpTransport.super_.call(this);
2015-02-09 14:38:10 +00:00
objectAssign(this, opts);
this.seeds = this.seeds || [];
this.dnsSeeds = this.dnsSeeds || [];
this.streams = this.streams || [1];
2015-02-05 18:38:36 +00:00
this._clients = {};
2015-02-01 20:34:47 +00:00
}
2015-02-10 12:57:55 +00:00
inherits(TcpTransport, BaseTransport);
2015-02-01 20:34:47 +00:00
2015-02-10 12:57:55 +00:00
TcpTransport.prototype._sendVersion = function() {
2015-02-09 14:38:10 +00:00
return this.send(messages.version.encode({
services: this.services,
userAgent: this.userAgent,
streams: this.streams,
2015-02-09 14:38:10 +00:00
port: this.port,
remoteHost: this._client.remoteAddress,
remotePort: this._client.remotePort,
}));
};
2015-02-17 12:35:40 +00:00
TcpTransport.prototype._setupClient = function(client, incoming) {
2015-02-05 18:38:36 +00:00
var self = this;
2015-02-09 21:56:55 +00:00
self._client = client;
2015-02-09 14:38:10 +00:00
var cache = Buffer(0);
var decoded;
var verackSent = false;
var verackReceived = false;
var established = false;
2015-02-05 18:38:36 +00:00
// Set default transport timeout per spec.
2015-02-09 14:38:10 +00:00
// TODO(Kagami): We may also want to close connection if it wasn't
// established within minute.
client.setTimeout(20000);
2015-02-05 18:38:36 +00:00
client.on("connect", function() {
2015-02-09 14:38:10 +00:00
// NOTE(Kagami): This handler shouldn't be called at all for
2015-02-17 12:35:40 +00:00
// incoming connections but let's be sure.
if (!incoming) {
2015-02-09 21:56:55 +00:00
self.emit("open");
2015-02-10 12:57:55 +00:00
self._sendVersion();
2015-02-09 14:38:10 +00:00
}
});
client.on("data", function(data) {
// TODO(Kagami): We may want to preallocate 1.6M buffer for each
// client instead (max size of the message) to not constantly
// allocate new buffers. Though this may lead to another issues: too
// many memory per client.
cache = Buffer.concat([cache, data]);
while (true) {
decoded = structs.message.tryDecode(cache);
if (!decoded) {
break;
}
cache = decoded.rest;
if (decoded.message) {
self.emit("message", decoded.message.command, decoded.message.payload);
2015-02-09 14:38:10 +00:00
} else if (decoded.error) {
// TODO(Kagami): Wrap it in custom error class?
// TODO(Kagami): Send `error` message and ban node for some time
// if there were too many errors?
self.emit("warning", new Error(
"Message decoding error: " + decoded.error.message
2015-02-09 14:38:10 +00:00
));
}
}
});
// High-level message processing.
self.on("message", function(command, payload) {
var version;
2015-02-09 14:38:10 +00:00
if (!established) {
if (command === "version") {
if (verackSent) {
return;
}
try {
2015-02-24 08:47:56 +00:00
version = self._decodeVersion(payload, {network: true});
} catch(err) {
self.emit("error", err);
return client.end();
}
2015-02-09 14:38:10 +00:00
self.send("verack");
verackSent = true;
2015-02-17 12:35:40 +00:00
if (incoming) {
2015-02-10 12:57:55 +00:00
self._sendVersion();
2015-02-09 21:56:55 +00:00
} else if (verackReceived) {
self.emit("established", version);
2015-02-09 14:38:10 +00:00
}
} else if (command === "verack") {
verackReceived = true;
if (verackSent) {
self.emit("established", version);
2015-02-09 14:38:10 +00:00
}
}
}
2015-02-05 18:38:36 +00:00
});
2015-02-09 14:38:10 +00:00
self.on("established", function() {
established = true;
// Raise timeout up to 10 minutes per spec.
// TODO(Kagami): Send pong messages every 5 minutes as PyBitmessage.
client.setTimeout(600000);
2015-02-05 18:38:36 +00:00
});
client.on("timeout", function() {
client.end();
});
client.on("error", function(err) {
self.emit("error", err);
});
client.on("close", function() {
self.emit("close");
delete self._client;
});
};
2015-02-05 19:55:36 +00:00
function resolveDnsSeed(seed) {
var host = seed[0];
var port = seed[1];
var nodes = [];
// NOTE(Kagami):
// 1) Node's `getaddrinfo` (`dns.lookup`) returns only one address so
// we can't use it.
// 2) Node's `dig host any` (`dns.resolve`) doesn't return type of the
// record! So we resolve twice for A and AAAA.
// 3) We ignore any errors here, promise's result is always a list.
return new PPromise(function(resolve) {
dns.resolve4(host, function(err, nodes4) {
if (!err) {
nodes4.forEach(function(n) {
nodes.push([n, port]);
});
}
dns.resolve6(host, function(err, nodes6) {
if (!err) {
nodes6.forEach(function(n) {
nodes.push([n, port]);
});
}
resolve(nodes);
});
});
});
}
2015-02-10 12:57:55 +00:00
TcpTransport.prototype.bootstrap = function() {
2015-02-05 19:55:36 +00:00
var hardcodedNodes = this.seeds;
// FIXME(Kagami): Filter incorrect/private IP range nodes?
// See also: <https://github.com/Bitmessage/PyBitmessage/issues/768>.
return this.bootstrapDns().then(function(dnsNodes) {
2015-02-05 19:55:36 +00:00
// Add hardcoded nodes to the end of list because DNS nodes should
// be more up-to-date.
return dnsNodes.concat(hardcodedNodes);
});
2015-02-05 18:38:36 +00:00
};
/**
* Do only DNS-specific bootstrap.
* @return {Promise.<Array>} Discovered seed nodes.
*/
TcpTransport.prototype.bootstrapDns = function() {
var promises = this.dnsSeeds.map(resolveDnsSeed);
return PPromise.all(promises).then(function(dnsNodes) {
// Flatten array of arrays.
return Array.prototype.concat.apply([], dnsNodes);
});
};
2015-02-10 12:57:55 +00:00
/**
* Connect to a TCP node. Connection arguments are the same as for
* [net.connect](http://nodejs.org/api/net.html#net_net_connect_port_host_connectlistener).
*/
TcpTransport.prototype.connect = function() {
2015-02-05 18:38:36 +00:00
assert(!this._client, "Already connected");
assert(!this._server, "Already listening");
2015-02-09 21:56:55 +00:00
this._setupClient(net.connect.apply(null, arguments));
2015-02-05 18:38:36 +00:00
};
2015-02-10 12:57:55 +00:00
/**
* Listen for incoming TCP connections. Listen arguments are the same as
* for
* [server.listen](http://nodejs.org/api/net.html#net_server_listen_port_host_backlog_callback).
*/
TcpTransport.prototype.listen = function() {
2015-02-05 18:38:36 +00:00
assert(!this._client, "Already connected");
assert(!this._server, "Already listening");
var self = this;
var server = self._server = net.createServer();
server.listen.apply(server, arguments);
2015-02-17 12:35:40 +00:00
var clientIdCounter = 0;
2015-02-09 14:38:10 +00:00
server.on("connection", function(client) {
2015-02-17 12:35:40 +00:00
var id = client.id = clientIdCounter++;
self._clients[id] = client;
2015-02-09 14:38:10 +00:00
client.on("close", function() {
2015-02-17 12:35:40 +00:00
delete self._clients[id];
2015-02-05 18:38:36 +00:00
});
2015-02-22 10:12:23 +00:00
var opts = objectAssign({}, self);
delete opts._server;
var transport = new self.constructor(opts);
2015-02-17 12:35:40 +00:00
var incoming = true;
transport._setupClient(client, incoming);
var addr = client.remoteAddress;
var port = client.remotePort;
2015-02-06 13:04:17 +00:00
self.emit("connection", transport, unmap(addr), port);
2015-02-05 18:38:36 +00:00
});
server.on("error", function(err) {
self.emit("error", err);
});
server.on("close", function() {
self.emit("close");
delete self._server;
});
};
2015-02-10 12:57:55 +00:00
TcpTransport.prototype.send = function() {
2015-02-05 18:38:36 +00:00
if (this._client) {
2015-02-09 14:38:10 +00:00
this._client.write(getmsg(arguments));
2015-02-05 18:38:36 +00:00
} else {
throw new Error("Not connected");
}
};
2015-02-10 12:57:55 +00:00
TcpTransport.prototype.broadcast = function() {
2015-02-09 14:38:10 +00:00
var data = getmsg(arguments);
2015-02-05 18:38:36 +00:00
if (this._server) {
2015-02-17 12:35:40 +00:00
Object.keys(this._clients).forEach(function(id) {
this._clients[id].write(data);
2015-02-05 18:38:36 +00:00
}, this);
} else {
throw new Error("Not listening");
}
};
2015-02-10 12:57:55 +00:00
TcpTransport.prototype.close = function() {
2015-02-05 18:38:36 +00:00
if (this._client) {
this._client.end();
} else if (this._server) {
2015-02-17 12:35:40 +00:00
Object.keys(this._clients).forEach(function(id) {
this._clients[id].end();
2015-02-05 18:38:36 +00:00
}, this);
this._server.close();
}
};
2015-02-10 12:57:55 +00:00
module.exports = TcpTransport;