连接被远程主机强行关闭

问题描述 投票:5回答:2

我的jSCSI声明中有一个java.nio.channels.SocketChannel,当我尝试打开大小大于4GB的驱动程序时,它正在断开连接。 iscsi RFC表示BasicHeaderSegment.BHS_FIXED_SIZE可能是48,因此在此位置,我可以读取通道上的字节。 Java文档说出5种错误,但我的应用抛出了最后一个未说明具体信息的错误。

  1. NotYetConnectedException
  2. ClosedChannelException
  3. AsynchronousCloseException
  4. ClosedByInterruptException
  5. IOException

代码:

public final int read(final SocketChannel sChannel) throws InternetSCSIException, IOException, DigestException {
// read Basic Header Segment first to determine the total length of this
// Protocol Data Unit.
clear();

final ByteBuffer bhs = ByteBuffer.allocate(BasicHeaderSegment.BHS_FIXED_SIZE);
int len = 0;
while (len < BasicHeaderSegment.BHS_FIXED_SIZE) {
    int lens = sChannel.read(bhs);
    if (lens == -1) {
        // The Channel was closed at the Target (e.g. the Target does
        // not support Multiple Connections)
        // throw new ClosedChannelException();
        return lens;
    }
    len += lens;
    LOGGER.trace("Receiving through SocketChannel: " + len + " of maximal " + BasicHeaderSegment.BHS_FIXED_SIZE);

}
bhs.flip();

错误:

java.io.IOException: An existing connection was forcibly closed by the remote host
    at sun.nio.ch.SocketDispatcher.read0(Native Method)
    at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
    at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
    at sun.nio.ch.IOUtil.read(IOUtil.java:197)
    at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:379)
    at org.jscsi.parser.ProtocolDataUnit.read(ProtocolDataUnit.java:417)
    at org.jscsi.target.connection.TargetSenderWorker.receiveFromWire(TargetSenderWorker.java:145)
    at org.jscsi.target.connection.Connection$TargetConnection.receivePdu(Connection.java:217)
    at org.jscsi.target.connection.phase.TargetFullFeaturePhase.execute(TargetFullFeaturePhase.java:96)
    at org.jscsi.target.connection.Connection$TargetConnection.call(Connection.java:264)
    at org.jscsi.target.connection.Connection$TargetConnection.call(Connection.java:79)
    at java.util.concurrent.FutureTask.run(FutureTask.java:262)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
    at java.lang.Thread.run(Thread.java:744)
[pool-9-thread-1] INFO org.jscsi.target.connection

谢谢,费利佩

java sockets ioexception socketchannel
2个回答
4
投票

您的问题描述不正确。 SocketChannel未关闭:连接已关闭;尝试打开连接时不会发生这种情况:从连接中读取时会发生这种情况。

这通常是由于在对等方已经关闭连接后发送一些消息,这通常意味着您先前已经向它发送了一些无法理解的消息。


0
投票

似乎由于某种问题,另一端断开了您的连接。假设您正在开发启动器,则应检查目标(服务器)系统日志。

您能解释一下4GB评论吗?我的意思是“打开大于4GB的驱动程序”到底是什么意思?

© www.soinside.com 2019 - 2024. All rights reserved.