Specify EOF error (#759)

This commit is contained in:
lchenut 2022-09-14 10:58:41 +02:00 committed by GitHub
parent ef594e1e02
commit 4d8b50d24c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 132 additions and 38 deletions

View File

@ -58,6 +58,8 @@ type
initiator*: bool # initiated remotely or locally flag initiator*: bool # initiated remotely or locally flag
isOpen*: bool # has channel been opened isOpen*: bool # has channel been opened
closedLocal*: bool # has channel been closed locally closedLocal*: bool # has channel been closed locally
remoteReset*: bool # has channel been remotely reset
localReset*: bool # has channel been reset locally
msgCode*: MessageType # cached in/out message code msgCode*: MessageType # cached in/out message code
closeCode*: MessageType # cached in/out close code closeCode*: MessageType # cached in/out close code
resetCode*: MessageType # cached in/out reset code resetCode*: MessageType # cached in/out reset code
@ -103,6 +105,7 @@ proc reset*(s: LPChannel) {.async, gcsafe.} =
s.isClosed = true s.isClosed = true
s.closedLocal = true s.closedLocal = true
s.localReset = not s.remoteReset
trace "Resetting channel", s, len = s.len trace "Resetting channel", s, len = s.len
@ -168,6 +171,14 @@ method readOnce*(s: LPChannel,
## channels are blocked - in particular, this means that reading from one ## channels are blocked - in particular, this means that reading from one
## channel must not be done from within a callback / read handler of another ## channel must not be done from within a callback / read handler of another
## or the reads will lock each other. ## or the reads will lock each other.
if s.remoteReset:
raise newLPStreamResetError()
if s.localReset:
raise newLPStreamClosedError()
if s.atEof():
raise newLPStreamRemoteClosedError()
if s.conn.closed:
raise newLPStreamConnDownError()
try: try:
let bytes = await procCall BufferStream(s).readOnce(pbytes, nbytes) let bytes = await procCall BufferStream(s).readOnce(pbytes, nbytes)
when defined(libp2p_network_protocols_metrics): when defined(libp2p_network_protocols_metrics):
@ -184,13 +195,17 @@ method readOnce*(s: LPChannel,
# data has been lost in s.readBuf and there's no way to gracefully recover / # data has been lost in s.readBuf and there's no way to gracefully recover /
# use the channel any more # use the channel any more
await s.reset() await s.reset()
raise exc raise newLPStreamConnDownError(exc)
proc prepareWrite(s: LPChannel, msg: seq[byte]): Future[void] {.async.} = proc prepareWrite(s: LPChannel, msg: seq[byte]): Future[void] {.async.} =
# prepareWrite is the slow path of writing a message - see conditions in # prepareWrite is the slow path of writing a message - see conditions in
# write # write
if s.closedLocal or s.conn.closed: if s.remoteReset:
raise newLPStreamResetError()
if s.closedLocal:
raise newLPStreamClosedError() raise newLPStreamClosedError()
if s.conn.closed:
raise newLPStreamConnDownError()
if msg.len == 0: if msg.len == 0:
return return
@ -235,7 +250,7 @@ proc completeWrite(
trace "exception in lpchannel write handler", s, msg = exc.msg trace "exception in lpchannel write handler", s, msg = exc.msg
await s.reset() await s.reset()
await s.conn.close() await s.conn.close()
raise exc raise newLPStreamConnDownError(exc)
finally: finally:
s.writes -= 1 s.writes -= 1

View File

@ -183,6 +183,7 @@ method handle*(m: Mplex) {.async, gcsafe.} =
of MessageType.CloseIn, MessageType.CloseOut: of MessageType.CloseIn, MessageType.CloseOut:
await channel.pushEof() await channel.pushEof()
of MessageType.ResetIn, MessageType.ResetOut: of MessageType.ResetIn, MessageType.ResetOut:
channel.remoteReset = true
await channel.reset() await channel.reset()
except CancelledError: except CancelledError:
debug "Unexpected cancellation in mplex handler", m debug "Unexpected cancellation in mplex handler", m

View File

@ -153,6 +153,7 @@ type
sendQueue: seq[ToSend] sendQueue: seq[ToSend]
recvQueue: seq[byte] recvQueue: seq[byte]
isReset: bool isReset: bool
remoteReset: bool
closedRemotely: Future[void] closedRemotely: Future[void]
closedLocally: bool closedLocally: bool
receivedData: AsyncEvent receivedData: AsyncEvent
@ -194,9 +195,11 @@ method closeImpl*(channel: YamuxChannel) {.async, gcsafe.} =
await channel.actuallyClose() await channel.actuallyClose()
proc reset(channel: YamuxChannel, isLocal: bool = false) {.async.} = proc reset(channel: YamuxChannel, isLocal: bool = false) {.async.} =
if not channel.isReset: if channel.isReset:
return
trace "Reset channel" trace "Reset channel"
channel.isReset = true channel.isReset = true
channel.remoteReset = not isLocal
for (d, s, fut) in channel.sendQueue: for (d, s, fut) in channel.sendQueue:
fut.fail(newLPStreamEOFError()) fut.fail(newLPStreamEOFError())
channel.sendQueue = @[] channel.sendQueue = @[]
@ -235,7 +238,15 @@ method readOnce*(
nbytes: int): nbytes: int):
Future[int] {.async.} = Future[int] {.async.} =
if channel.returnedEof: raise newLPStreamEOFError() if channel.isReset:
raise if channel.remoteReset:
newLPStreamResetError()
elif channel.closedLocally:
newLPStreamClosedError()
else:
newLPStreamConnDownError()
if channel.returnedEof:
raise newLPStreamRemoteClosedError()
if channel.recvQueue.len == 0: if channel.recvQueue.len == 0:
channel.receivedData.clear() channel.receivedData.clear()
await channel.closedRemotely or channel.receivedData.wait() await channel.closedRemotely or channel.receivedData.wait()
@ -313,8 +324,9 @@ proc trySend(channel: YamuxChannel) {.async.} =
channel.sendWindow.dec(toSend) channel.sendWindow.dec(toSend)
try: await channel.conn.write(sendBuffer) try: await channel.conn.write(sendBuffer)
except CatchableError as exc: except CatchableError as exc:
let connDown = newLPStreamConnDownError(exc)
for fut in futures.items(): for fut in futures.items():
fut.fail(exc) fut.fail(connDown)
await channel.reset() await channel.reset()
break break
for fut in futures.items(): for fut in futures.items():
@ -323,8 +335,11 @@ proc trySend(channel: YamuxChannel) {.async.} =
method write*(channel: YamuxChannel, msg: seq[byte]): Future[void] = method write*(channel: YamuxChannel, msg: seq[byte]): Future[void] =
result = newFuture[void]("Yamux Send") result = newFuture[void]("Yamux Send")
if channel.remoteReset:
result.fail(newLPStreamResetError())
return result
if channel.closedLocally or channel.isReset: if channel.closedLocally or channel.isReset:
result.fail(newLPStreamEOFError()) result.fail(newLPStreamClosedError())
return result return result
if msg.len == 0: if msg.len == 0:
result.complete() result.complete()
@ -396,8 +411,9 @@ method close*(m: Yamux) {.async.} =
m.isClosed = true m.isClosed = true
trace "Closing yamux" trace "Closing yamux"
for channel in m.channels.values: let channels = toSeq(m.channels.values())
await channel.reset() for channel in channels:
await channel.reset(true)
await m.connection.write(YamuxHeader.goAway(NormalTermination)) await m.connection.write(YamuxHeader.goAway(NormalTermination))
await m.connection.close() await m.connection.close()
trace "Closed yamux" trace "Closed yamux"
@ -453,6 +469,7 @@ method handle*(m: Yamux) {.async, gcsafe.} =
m.flushed[header.streamId].dec(int(header.length)) m.flushed[header.streamId].dec(int(header.length))
if m.flushed[header.streamId] < 0: if m.flushed[header.streamId] < 0:
raise newException(YamuxError, "Peer exhausted the recvWindow after reset") raise newException(YamuxError, "Peer exhausted the recvWindow after reset")
if header.length > 0:
var buffer = newSeqUninitialized[byte](header.length) var buffer = newSeqUninitialized[byte](header.length)
await m.connection.readExactly(addr buffer[0], int(header.length)) await m.connection.readExactly(addr buffer[0], int(header.length))
continue continue

View File

@ -79,7 +79,7 @@ method pushData*(s: BufferStream, data: seq[byte]) {.base, async.} =
&"Only one concurrent push allowed for stream {s.shortLog()}") &"Only one concurrent push allowed for stream {s.shortLog()}")
if s.isClosed or s.pushedEof: if s.isClosed or s.pushedEof:
raise newLPStreamEOFError() raise newLPStreamClosedError()
if data.len == 0: if data.len == 0:
return # Don't push 0-length buffers, these signal EOF return # Don't push 0-length buffers, these signal EOF

View File

@ -59,7 +59,18 @@ type
LPStreamWriteError* = object of LPStreamError LPStreamWriteError* = object of LPStreamError
par*: ref CatchableError par*: ref CatchableError
LPStreamEOFError* = object of LPStreamError LPStreamEOFError* = object of LPStreamError
LPStreamClosedError* = object of LPStreamError
# X | Read | Write
# Local close | Works | LPStreamClosedError
# Remote close | LPStreamRemoteClosedError | Works
# Local reset | LPStreamClosedError | LPStreamClosedError
# Remote reset | LPStreamResetError | LPStreamResetError
# Connection down | LPStreamConnDown | LPStreamConnDownError
LPStreamResetError* = object of LPStreamEOFError
LPStreamClosedError* = object of LPStreamEOFError
LPStreamRemoteClosedError* = object of LPStreamEOFError
LPStreamConnDownError* = object of LPStreamEOFError
InvalidVarintError* = object of LPStreamError InvalidVarintError* = object of LPStreamError
MaxSizeError* = object of LPStreamError MaxSizeError* = object of LPStreamError
@ -119,9 +130,22 @@ proc newLPStreamIncorrectDefect*(m: string): ref LPStreamIncorrectDefect =
proc newLPStreamEOFError*(): ref LPStreamEOFError = proc newLPStreamEOFError*(): ref LPStreamEOFError =
result = newException(LPStreamEOFError, "Stream EOF!") result = newException(LPStreamEOFError, "Stream EOF!")
proc newLPStreamResetError*(): ref LPStreamResetError =
result = newException(LPStreamResetError, "Stream Reset!")
proc newLPStreamClosedError*(): ref LPStreamClosedError = proc newLPStreamClosedError*(): ref LPStreamClosedError =
result = newException(LPStreamClosedError, "Stream Closed!") result = newException(LPStreamClosedError, "Stream Closed!")
proc newLPStreamRemoteClosedError*(): ref LPStreamRemoteClosedError =
result = newException(LPStreamRemoteClosedError, "Stream Remotely Closed!")
proc newLPStreamConnDownError*(
parentException: ref Exception = nil): ref LPStreamConnDownError =
result = newException(
LPStreamConnDownError,
"Stream Underlying Connection Closed!",
parentException)
func shortLog*(s: LPStream): auto = func shortLog*(s: LPStream): auto =
if s.isNil: "LPStream(nil)" if s.isNil: "LPStream(nil)"
else: $s.oid else: $s.oid
@ -165,6 +189,8 @@ proc readExactly*(s: LPStream,
## Waits for `nbytes` to be available, then read ## Waits for `nbytes` to be available, then read
## them and return them ## them and return them
if s.atEof: if s.atEof:
var ch: char
discard await s.readOnce(addr ch, 1)
raise newLPStreamEOFError() raise newLPStreamEOFError()
if nbytes == 0: if nbytes == 0:
@ -183,6 +209,10 @@ proc readExactly*(s: LPStream,
if read == 0: if read == 0:
doAssert s.atEof() doAssert s.atEof()
trace "couldn't read all bytes, stream EOF", s, nbytes, read trace "couldn't read all bytes, stream EOF", s, nbytes, read
# Re-readOnce to raise a more specific error than EOF
# Raise EOF if it doesn't raise anything(shouldn't happen)
discard await s.readOnce(addr pbuffer[read], nbytes - read)
warn "Read twice while at EOF"
raise newLPStreamEOFError() raise newLPStreamEOFError()
if read < nbytes: if read < nbytes:
@ -200,8 +230,7 @@ proc readLine*(s: LPStream,
while true: while true:
var ch: char var ch: char
if (await readOnce(s, addr ch, 1)) == 0: await readExactly(s, addr ch, 1)
raise newLPStreamEOFError()
if sep[state] == ch: if sep[state] == ch:
inc(state) inc(state)
@ -224,8 +253,7 @@ proc readVarint*(conn: LPStream): Future[uint64] {.async, gcsafe, public.} =
buffer: array[10, byte] buffer: array[10, byte]
for i in 0..<len(buffer): for i in 0..<len(buffer):
if (await conn.readOnce(addr buffer[i], 1)) == 0: await conn.readExactly(addr buffer[i], 1)
raise newLPStreamEOFError()
var var
varint: uint64 varint: uint64

View File

@ -119,7 +119,7 @@ suite "Mplex":
# should still allow reading until buffer EOF # should still allow reading until buffer EOF
await chann.readExactly(addr data[3], 3) await chann.readExactly(addr data[3], 3)
expect LPStreamEOFError: expect LPStreamRemoteClosedError:
# this should fail now # this should fail now
await chann.readExactly(addr data[0], 3) await chann.readExactly(addr data[0], 3)
@ -143,7 +143,7 @@ suite "Mplex":
let readFut = chann.readExactly(addr data[3], 3) let readFut = chann.readExactly(addr data[3], 3)
await allFutures(closeFut, readFut) await allFutures(closeFut, readFut)
expect LPStreamEOFError: expect LPStreamRemoteClosedError:
await chann.readExactly(addr data[0], 6) # this should fail now await chann.readExactly(addr data[0], 6) # this should fail now
await chann.close() await chann.close()
@ -174,7 +174,7 @@ suite "Mplex":
var buf: array[1, byte] var buf: array[1, byte]
check: (await chann.readOnce(addr buf[0], 1)) == 0 # EOF marker read check: (await chann.readOnce(addr buf[0], 1)) == 0 # EOF marker read
expect LPStreamEOFError: expect LPStreamClosedError:
await chann.pushData(@[byte(1)]) await chann.pushData(@[byte(1)])
await chann.close() await chann.close()
@ -190,7 +190,7 @@ suite "Mplex":
await chann.reset() await chann.reset()
var data = newSeq[byte](1) var data = newSeq[byte](1)
expect LPStreamEOFError: expect LPStreamClosedError:
await chann.readExactly(addr data[0], 1) await chann.readExactly(addr data[0], 1)
await conn.close() await conn.close()
@ -205,7 +205,7 @@ suite "Mplex":
let fut = chann.readExactly(addr data[0], 1) let fut = chann.readExactly(addr data[0], 1)
await chann.reset() await chann.reset()
expect LPStreamEOFError: expect LPStreamClosedError:
await fut await fut
await conn.close() await conn.close()

View File

@ -152,3 +152,36 @@ suite "Yamux":
expect(LPStreamEOFError): await wrFut[i] expect(LPStreamEOFError): await wrFut[i]
writerBlocker.complete() writerBlocker.complete()
await streamA.close() await streamA.close()
suite "Exception testing":
asyncTest "Local & Remote close":
mSetup()
yamuxb.streamHandler = proc(conn: Connection) {.async.} =
check (await conn.readLp(100)) == fromHex("1234")
await conn.close()
expect LPStreamClosedError: await conn.writeLp(fromHex("102030"))
check (await conn.readLp(100)) == fromHex("5678")
let streamA = await yamuxa.newStream()
await streamA.writeLp(fromHex("1234"))
expect LPStreamRemoteClosedError: discard await streamA.readLp(100)
await streamA.writeLp(fromHex("5678"))
await streamA.close()
asyncTest "Local & Remote reset":
mSetup()
let blocker = newFuture[void]()
yamuxb.streamHandler = proc(conn: Connection) {.async.} =
await blocker
expect LPStreamResetError: discard await conn.readLp(100)
expect LPStreamResetError: await conn.writeLp(fromHex("1234"))
await conn.close()
let streamA = await yamuxa.newStream()
await yamuxa.close()
expect LPStreamClosedError: await streamA.writeLp(fromHex("1234"))
expect LPStreamClosedError: discard await streamA.readLp(100)
blocker.complete()
await streamA.close()