2019-08-20 16:18:15 +00:00
|
|
|
## Nim-LibP2P
|
2019-09-24 17:48:23 +00:00
|
|
|
## Copyright (c) 2019 Status Research & Development GmbH
|
2019-08-20 16:18:15 +00:00
|
|
|
## Licensed under either of
|
|
|
|
## * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE))
|
|
|
|
## * MIT license ([LICENSE-MIT](LICENSE-MIT))
|
|
|
|
## at your option.
|
|
|
|
## This file may not be copied, modified, or distributed except according to
|
|
|
|
## those terms.
|
|
|
|
|
2021-05-21 16:27:01 +00:00
|
|
|
{.push raises: [Defect].}
|
|
|
|
|
2020-11-19 02:06:42 +00:00
|
|
|
import std/[oids, sequtils]
|
|
|
|
import chronos, chronicles
|
2019-09-24 16:16:39 +00:00
|
|
|
import transport,
|
2020-04-21 01:24:42 +00:00
|
|
|
../errors,
|
2019-09-24 16:16:39 +00:00
|
|
|
../wire,
|
|
|
|
../multicodec,
|
2021-03-18 15:20:36 +00:00
|
|
|
../multistream,
|
|
|
|
../connmanager,
|
|
|
|
../multiaddress,
|
2020-06-19 17:29:43 +00:00
|
|
|
../stream/connection,
|
2021-03-18 15:20:36 +00:00
|
|
|
../stream/chronosstream,
|
|
|
|
../upgrademngrs/upgrade
|
2019-08-20 16:18:15 +00:00
|
|
|
|
2019-09-12 00:15:04 +00:00
|
|
|
logScope:
|
2020-12-01 17:34:27 +00:00
|
|
|
topics = "libp2p tcptransport"
|
2019-09-12 00:15:04 +00:00
|
|
|
|
2020-11-28 08:05:12 +00:00
|
|
|
export transport
|
|
|
|
|
2020-04-21 01:24:42 +00:00
|
|
|
const
|
|
|
|
TcpTransportTrackerName* = "libp2p.tcptransport"
|
|
|
|
|
|
|
|
type
|
|
|
|
TcpTransport* = ref object of Transport
|
|
|
|
server*: StreamServer
|
2020-11-19 02:06:42 +00:00
|
|
|
clients: array[Direction, seq[StreamTransport]]
|
2020-05-18 19:04:05 +00:00
|
|
|
flags: set[ServerFlags]
|
2020-04-21 01:24:42 +00:00
|
|
|
|
|
|
|
TcpTransportTracker* = ref object of TrackerBase
|
|
|
|
opened*: uint64
|
|
|
|
closed*: uint64
|
|
|
|
|
2021-03-23 06:45:25 +00:00
|
|
|
proc setupTcpTransportTracker(): TcpTransportTracker {.gcsafe, raises: [Defect].}
|
2020-04-21 01:24:42 +00:00
|
|
|
|
|
|
|
proc getTcpTransportTracker(): TcpTransportTracker {.gcsafe.} =
|
|
|
|
result = cast[TcpTransportTracker](getTracker(TcpTransportTrackerName))
|
|
|
|
if isNil(result):
|
|
|
|
result = setupTcpTransportTracker()
|
|
|
|
|
|
|
|
proc dumpTracking(): string {.gcsafe.} =
|
|
|
|
var tracker = getTcpTransportTracker()
|
2020-05-20 00:14:15 +00:00
|
|
|
result = "Opened tcp transports: " & $tracker.opened & "\n" &
|
|
|
|
"Closed tcp transports: " & $tracker.closed
|
2020-04-21 01:24:42 +00:00
|
|
|
|
|
|
|
proc leakTransport(): bool {.gcsafe.} =
|
|
|
|
var tracker = getTcpTransportTracker()
|
|
|
|
result = (tracker.opened != tracker.closed)
|
|
|
|
|
|
|
|
proc setupTcpTransportTracker(): TcpTransportTracker =
|
|
|
|
result = new TcpTransportTracker
|
|
|
|
result.opened = 0
|
|
|
|
result.closed = 0
|
|
|
|
result.dump = dumpTracking
|
|
|
|
result.isLeaked = leakTransport
|
|
|
|
addTracker(TcpTransportTrackerName, result)
|
2019-08-20 16:18:15 +00:00
|
|
|
|
2021-03-18 15:20:36 +00:00
|
|
|
proc connHandler*(self: TcpTransport,
|
2019-09-24 16:16:39 +00:00
|
|
|
client: StreamTransport,
|
2020-11-19 02:06:42 +00:00
|
|
|
dir: Direction): Future[Connection] {.async.} =
|
2020-11-25 19:34:48 +00:00
|
|
|
var observedAddr: MultiAddress = MultiAddress()
|
|
|
|
try:
|
|
|
|
observedAddr = MultiAddress.init(client.remoteAddress).tryGet()
|
|
|
|
except CatchableError as exc:
|
2021-10-14 11:16:34 +00:00
|
|
|
trace "Failed to create observedAddr", exc = exc.msg
|
2020-11-25 19:34:48 +00:00
|
|
|
if not(isNil(client) and client.closed):
|
|
|
|
await client.closeWait()
|
2021-10-14 11:16:34 +00:00
|
|
|
raise exc
|
2020-11-25 19:34:48 +00:00
|
|
|
|
2021-01-04 18:59:05 +00:00
|
|
|
trace "Handling tcp connection", address = $observedAddr,
|
2020-11-19 02:06:42 +00:00
|
|
|
dir = $dir,
|
2021-03-18 15:20:36 +00:00
|
|
|
clients = self.clients[Direction.In].len +
|
|
|
|
self.clients[Direction.Out].len
|
2020-11-01 22:23:26 +00:00
|
|
|
|
|
|
|
let conn = Connection(
|
|
|
|
ChronosStream.init(
|
2020-11-25 19:34:48 +00:00
|
|
|
client = client,
|
|
|
|
dir = dir,
|
|
|
|
observedAddr = observedAddr
|
2020-11-19 02:06:42 +00:00
|
|
|
))
|
2020-11-01 22:23:26 +00:00
|
|
|
|
2020-11-19 02:06:42 +00:00
|
|
|
proc onClose() {.async.} =
|
2020-05-23 17:10:01 +00:00
|
|
|
try:
|
2020-11-25 13:35:25 +00:00
|
|
|
let futs = @[client.join(), conn.join()]
|
|
|
|
await futs[0] or futs[1]
|
|
|
|
for f in futs:
|
2020-11-28 15:48:06 +00:00
|
|
|
if not f.finished: await f.cancelAndWait() # cancel outstanding join()
|
2020-11-25 13:35:25 +00:00
|
|
|
|
2020-11-19 02:06:42 +00:00
|
|
|
trace "Cleaning up client", addrs = $client.remoteAddress,
|
|
|
|
conn
|
|
|
|
|
2021-03-18 15:20:36 +00:00
|
|
|
self.clients[dir].keepItIf( it != client )
|
2020-11-24 00:22:15 +00:00
|
|
|
await allFuturesThrowing(
|
|
|
|
conn.close(), client.closeWait())
|
2020-11-19 02:06:42 +00:00
|
|
|
|
|
|
|
trace "Cleaned up client", addrs = $client.remoteAddress,
|
|
|
|
conn
|
|
|
|
|
2020-05-23 17:10:01 +00:00
|
|
|
except CatchableError as exc:
|
2020-11-19 02:06:42 +00:00
|
|
|
let useExc {.used.} = exc
|
|
|
|
debug "Error cleaning up client", errMsg = exc.msg, conn
|
2020-05-23 17:10:01 +00:00
|
|
|
|
2021-03-18 15:20:36 +00:00
|
|
|
self.clients[dir].add(client)
|
2020-11-19 02:06:42 +00:00
|
|
|
asyncSpawn onClose()
|
2020-11-02 20:35:26 +00:00
|
|
|
|
2020-11-19 02:06:42 +00:00
|
|
|
return conn
|
|
|
|
|
2021-06-30 08:59:30 +00:00
|
|
|
proc new*(
|
|
|
|
T: typedesc[TcpTransport],
|
2021-03-18 15:20:36 +00:00
|
|
|
flags: set[ServerFlags] = {},
|
|
|
|
upgrade: Upgrade): T =
|
|
|
|
|
2021-06-30 08:59:30 +00:00
|
|
|
let transport = T(
|
2021-03-18 15:20:36 +00:00
|
|
|
flags: flags,
|
|
|
|
upgrader: upgrade
|
|
|
|
)
|
2020-11-19 02:06:42 +00:00
|
|
|
|
2020-04-21 01:24:42 +00:00
|
|
|
inc getTcpTransportTracker().opened
|
2021-06-30 08:59:30 +00:00
|
|
|
return transport
|
2020-04-21 01:24:42 +00:00
|
|
|
|
2021-03-18 15:20:36 +00:00
|
|
|
method start*(
|
|
|
|
self: TcpTransport,
|
|
|
|
ma: MultiAddress) {.async.} =
|
2020-11-19 02:06:42 +00:00
|
|
|
## listen on the transport
|
|
|
|
##
|
2020-05-27 20:46:25 +00:00
|
|
|
|
2021-03-18 15:20:36 +00:00
|
|
|
if self.running:
|
2020-11-19 02:06:42 +00:00
|
|
|
trace "TCP transport already running"
|
|
|
|
return
|
2019-08-21 22:53:16 +00:00
|
|
|
|
2021-03-18 15:20:36 +00:00
|
|
|
await procCall Transport(self).start(ma)
|
2020-11-19 02:06:42 +00:00
|
|
|
trace "Starting TCP transport"
|
2020-05-18 17:05:34 +00:00
|
|
|
|
2021-03-18 15:20:36 +00:00
|
|
|
self.server = createStreamServer(
|
|
|
|
ma = self.ma,
|
|
|
|
flags = self.flags,
|
|
|
|
udata = self)
|
2020-04-21 01:24:42 +00:00
|
|
|
|
2020-11-19 02:06:42 +00:00
|
|
|
# always get the resolved address in case we're bound to 0.0.0.0:0
|
2021-03-18 15:20:36 +00:00
|
|
|
self.ma = MultiAddress.init(self.server.sock.getLocalAddress()).tryGet()
|
2020-04-21 01:24:42 +00:00
|
|
|
|
2021-03-18 15:20:36 +00:00
|
|
|
trace "Listening on", address = self.ma
|
2020-11-19 02:06:42 +00:00
|
|
|
|
2021-03-18 15:20:36 +00:00
|
|
|
method stop*(self: TcpTransport) {.async, gcsafe.} =
|
2020-11-19 02:06:42 +00:00
|
|
|
## stop the transport
|
|
|
|
##
|
2020-04-21 01:24:42 +00:00
|
|
|
|
2020-11-19 02:06:42 +00:00
|
|
|
try:
|
|
|
|
trace "Stopping TCP transport"
|
2021-03-18 15:20:36 +00:00
|
|
|
await procCall Transport(self).stop() # call base
|
2020-04-11 04:08:25 +00:00
|
|
|
|
2020-05-27 20:46:25 +00:00
|
|
|
checkFutures(
|
2020-11-19 02:06:42 +00:00
|
|
|
await allFinished(
|
2021-03-18 15:20:36 +00:00
|
|
|
self.clients[Direction.In].mapIt(it.closeWait()) &
|
|
|
|
self.clients[Direction.Out].mapIt(it.closeWait())))
|
2019-08-20 16:18:15 +00:00
|
|
|
|
2020-11-19 02:06:42 +00:00
|
|
|
# server can be nil
|
2021-03-18 15:20:36 +00:00
|
|
|
if not isNil(self.server):
|
|
|
|
await self.server.closeWait()
|
2020-11-19 02:06:42 +00:00
|
|
|
|
2021-03-18 15:20:36 +00:00
|
|
|
self.server = nil
|
2020-11-19 02:06:42 +00:00
|
|
|
trace "Transport stopped"
|
2020-05-27 20:46:25 +00:00
|
|
|
inc getTcpTransportTracker().closed
|
|
|
|
except CatchableError as exc:
|
2020-11-19 02:06:42 +00:00
|
|
|
trace "Error shutting down tcp transport", exc = exc.msg
|
2020-04-21 01:24:42 +00:00
|
|
|
|
2021-03-18 15:20:36 +00:00
|
|
|
method accept*(self: TcpTransport): Future[Connection] {.async, gcsafe.} =
|
2020-11-19 02:06:42 +00:00
|
|
|
## accept a new TCP connection
|
|
|
|
##
|
2019-09-25 17:36:39 +00:00
|
|
|
|
2021-03-18 15:20:36 +00:00
|
|
|
if not self.running:
|
2020-11-19 02:06:42 +00:00
|
|
|
raise newTransportClosedError()
|
|
|
|
|
2020-11-19 15:10:25 +00:00
|
|
|
try:
|
2021-03-18 15:20:36 +00:00
|
|
|
let transp = await self.server.accept()
|
|
|
|
return await self.connHandler(transp, Direction.In)
|
2020-11-19 15:10:25 +00:00
|
|
|
except TransportOsError as exc:
|
|
|
|
# TODO: it doesn't sound like all OS errors
|
|
|
|
# can be ignored, we should re-raise those
|
2021-03-18 15:20:36 +00:00
|
|
|
# that can'self.
|
2020-11-19 15:10:25 +00:00
|
|
|
debug "OS Error", exc = exc.msg
|
|
|
|
except TransportTooManyError as exc:
|
2021-01-04 18:59:05 +00:00
|
|
|
debug "Too many files opened", exc = exc.msg
|
2020-11-19 15:10:25 +00:00
|
|
|
except TransportUseClosedError as exc:
|
2021-01-04 18:59:05 +00:00
|
|
|
debug "Server was closed", exc = exc.msg
|
2020-11-19 15:10:25 +00:00
|
|
|
raise newTransportClosedError(exc)
|
|
|
|
except CatchableError as exc:
|
2021-08-03 13:48:03 +00:00
|
|
|
debug "Unexpected error accepting connection", exc = exc.msg
|
2020-11-19 15:10:25 +00:00
|
|
|
raise exc
|
2019-08-20 16:18:15 +00:00
|
|
|
|
2021-03-18 15:20:36 +00:00
|
|
|
method dial*(
|
|
|
|
self: TcpTransport,
|
|
|
|
address: MultiAddress): Future[Connection] {.async, gcsafe.} =
|
2019-08-20 16:18:15 +00:00
|
|
|
## dial a peer
|
2020-11-19 02:06:42 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
trace "Dialing remote peer", address = $address
|
|
|
|
|
2020-11-19 15:10:25 +00:00
|
|
|
let transp = await connect(address)
|
2021-03-18 15:20:36 +00:00
|
|
|
return await self.connHandler(transp, Direction.Out)
|
2019-08-22 00:23:13 +00:00
|
|
|
|
2019-12-10 20:50:35 +00:00
|
|
|
method handles*(t: TcpTransport, address: MultiAddress): bool {.gcsafe.} =
|
2019-12-04 04:44:54 +00:00
|
|
|
if procCall Transport(t).handles(address):
|
2021-05-21 16:27:01 +00:00
|
|
|
if address.protocols.isOk:
|
2021-08-03 13:48:03 +00:00
|
|
|
return TCP.match(address)
|