# Nimbus # Copyright (c) 2022-2023 Status Research & Development GmbH # Licensed and distributed under either of # * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT). # * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0). # at your option. This file may not be copied, modified, or distributed except according to those terms. {.push raises: [].} import std/sequtils, chronos, stew/[byteutils, leb128], chronicles, eth/utp/utp_discv5_protocol, # even though utp_discv5_protocol exports this, import is still needed, # perhaps protocol.Protocol type of usage? eth/p2p/discoveryv5/protocol, ./messages export utp_discv5_protocol logScope: topics = "portal_stream" const utpProtocolId = "utp".toBytes() defaultConnectionTimeout = 15.seconds defaultContentReadTimeout = 60.seconds # TalkReq message is used as transport for uTP. It is assumed here that Portal # protocol messages were exchanged before sending uTP over discv5 data. This # means that a session is established and that the discv5 messages send are # discv5 ordinary message packets, for which below calculation applies. talkReqOverhead = getTalkReqOverhead(utpProtocolId) utpHeaderOverhead = 20 maxUtpPayloadSize = maxDiscv5PacketSize - talkReqOverhead - utpHeaderOverhead type ContentRequest = object connectionId: uint16 nodeId: NodeId content: seq[byte] timeout: Moment ContentOffer = object connectionId: uint16 nodeId: NodeId contentKeys: ContentKeysList timeout: Moment PortalStream* = ref object transport: UtpDiscv5Protocol # TODO: # Decide on what's the better collection to use and set some limits in them # on how many uTP transfers allowed to happen concurrently. # Either set some limit, and drop whatever comes next. Unsure how to # communicate that with the peer however. Or have some more async waiting # until a spot becomes free, like with an AsyncQueue. Although the latter # probably can not be used here directly. This system however does needs # some agreement on timeout values of how long a uTP socket may be # "listening" before it times out because of inactivity. # Or, depending on the direction, it might also depend on the time out # values of the discovery v5 talkresp message. # TODO: Should the content key also be stored to be able to validate the # received data? contentRequests: seq[ContentRequest] contentOffers: seq[ContentOffer] connectionTimeout: Duration contentReadTimeout*: Duration rng: ref HmacDrbgContext contentQueue*: AsyncQueue[(ContentKeysList, seq[seq[byte]])] StreamManager* = ref object transport: UtpDiscv5Protocol streams: seq[PortalStream] rng: ref HmacDrbgContext proc pruneAllowedConnections(stream: PortalStream) = # Prune requests and offers that didn't receive a connection request # before `connectionTimeout`. let now = Moment.now() stream.contentRequests.keepIf(proc(x: ContentRequest): bool = x.timeout > now) stream.contentOffers.keepIf(proc(x: ContentOffer): bool = x.timeout > now) proc addContentOffer*( stream: PortalStream, nodeId: NodeId, contentKeys: ContentKeysList): Bytes2 = stream.pruneAllowedConnections() # TODO: Should we check if `NodeId` & `connectionId` combo already exists? # What happens if we get duplicates? var connectionId: Bytes2 stream.rng[].generate(connectionId) # uTP protocol uses BE for all values in the header, incl. connection id. let id = uint16.fromBytesBE(connectionId) debug "Register new incoming offer", contentKeys let contentOffer = ContentOffer( connectionId: id, nodeId: nodeId, contentKeys: contentKeys, timeout: Moment.now() + stream.connectionTimeout) stream.contentOffers.add(contentOffer) return connectionId proc addContentRequest*( stream: PortalStream, nodeId: NodeId, content: seq[byte]): Bytes2 = stream.pruneAllowedConnections() # TODO: Should we check if `NodeId` & `connectionId` combo already exists? # What happens if we get duplicates? var connectionId: Bytes2 stream.rng[].generate(connectionId) # uTP protocol uses BE for all values in the header, incl. connection id. let id = uint16.fromBytesBE(connectionId) let contentRequest = ContentRequest( connectionId: id, nodeId: nodeId, content: content, timeout: Moment.now() + stream.connectionTimeout) stream.contentRequests.add(contentRequest) return connectionId proc connectTo*( stream: PortalStream, nodeAddress: NodeAddress, connectionId: uint16): Future[Result[UtpSocket[NodeAddress], string]] {.async.} = let connectFut = stream.transport.connectTo(nodeAddress, connectionId) # using yield, not await, as await does not play nice with cancellation # interacting with async procs which allocates some resource yield connectFut var socketRes: ConnectionResult[NodeAddress] if connectFut.completed(): socketRes = connectFut.read() else: raise connectFut.error if socketRes.isErr(): case socketRes.error.kind of SocketAlreadyExists: # This means that there is already a socket to this nodeAddress with given # connection id. It probably means that a peersent us a connection id # which is already in use.. # For now just fail the connection and return an error. Another strategy # to consider would be to check what is the connection status, and then # re-use it, or close it and retry connection. let msg = "Socket to " & $nodeAddress & "with connection id: " & $connectionId & " already exists" return err(msg) of ConnectionTimedOut: # Another strategy for handling this error would be to retry connecting a # few times before giving up. But we know (as we control the uTP impl) # that this error will only occur when a SYN packet was re-sent 3 times # and failed to be acked. This should be enough of indication that the # remote host is not reachable. let msg = "uTP timeout while trying to connect to " & $nodeAddress return err(msg) let socket = socketRes.get() return ok(socket) proc writeContentRequest( socket: UtpSocket[NodeAddress], stream: PortalStream, request: ContentRequest) {.async.} = let dataWritten = await socket.write(request.content) if dataWritten.isErr(): debug "Error writing requested data", error = dataWritten.error await socket.closeWait() proc readVarint(socket: UtpSocket[NodeAddress]): Future[Opt[uint32]] {.async.} = var buffer: array[5, byte] for i in 0.. 0: return ok(lenU32) elif bytesRead == 0: continue else: return err() proc readContentItem(socket: UtpSocket[NodeAddress]): Future[Opt[seq[byte]]] {.async.} = let len = await socket.readVarint() if len.isOk(): let contentItem = await socket.read(len.get()) if contentItem.len() == len.get().int: return ok(contentItem) else: return err() else: return err() proc readContentOffer( socket: UtpSocket[NodeAddress], stream: PortalStream, offer: ContentOffer) {.async.} = # Read number of content items according to amount of ContentKeys accepted. # This will either end with a FIN, or because the read action times out or # because the number of expected items was read (if this happens and no FIN # was received yet, a FIN will be send from this side). # None of this means that the contentItems are valid, further validation is # required. # Socket will be closed when this call ends. # TODO: Currently reading from the socket 1 item at a time, and validating # items at later time. Uncertain what is best approach here (mostly from a # security PoV), e.g. other options such as reading all content from socket at # once, then processing the individual content items. Or reading and # validating one per time. let amount = offer.contentKeys.len() var contentItems: seq[seq[byte]] for i in 0..