/** * Copyright (c) 2012, University of Konstanz, Distributed Systems Group * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the University of Konstanz nor the * names of its contributors may be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ package org.jscsi.initiator.connection.state; import org.jscsi.exception.InternetSCSIException; import org.jscsi.exception.OperationalTextKeyException; import org.jscsi.initiator.connection.Connection; import org.jscsi.parser.ProtocolDataUnit; import org.jscsi.parser.datasegment.IDataSegmentIterator; import org.jscsi.parser.datasegment.OperationalTextKey; import org.jscsi.parser.r2t.Ready2TransferParser; import org.jscsi.parser.scsi.SCSIResponseParser; import org.jscsi.parser.scsi.SCSIStatus; /** * <h1>WriteSecondResponseState</h1> * <p/> * This state handles the response(s) after the second and following data sequences was/were sent. * * @author Volker Wildi */ public final class WriteSecondResponseState extends AbstractState { // -------------------------------------------------------------------------- // -------------------------------------------------------------------------- /** The chunk of the data segment to send as next. */ private final IDataSegmentIterator iterator; /** The sequence number of this data package unit. */ private final int dataSequenceNumber; /** The start offset of the data to send. */ private final int bufferOffset; // -------------------------------------------------------------------------- // -------------------------------------------------------------------------- /** * Constructor to create a <code>WriteSecondResponseState</code> instance, * which handles the response of the iSCSI Target. * * @param initConnection * This is the connection, which is used for the network * transmission. * @param initIterator * The next chunk of data to send as next with the next write * data sequence. * @param initDataSequenceNumber * The Data Sequence Number to use as next. * @param initBufferOffset * The start offset of the data to send. */ public WriteSecondResponseState(final Connection initConnection, final IDataSegmentIterator initIterator, final int initDataSequenceNumber, final int initBufferOffset, final int initInitiatorTaskTag) { // OODRIVE super(initConnection, initInitiatorTaskTag); iterator = initIterator; dataSequenceNumber = initDataSequenceNumber; bufferOffset = initBufferOffset; } // -------------------------------------------------------------------------- // -------------------------------------------------------------------------- /** {@inheritDoc} */ public final void execute() throws InternetSCSIException { // OODRIVE final ProtocolDataUnit protocolDataUnit = connection.receive(initiatorTaskTag); LOGGER.trace("1" + protocolDataUnit); if (protocolDataUnit.getBasicHeaderSegment().getParser() instanceof Ready2TransferParser) { LOGGER.trace("2"); final Ready2TransferParser parser = (Ready2TransferParser)protocolDataUnit.getBasicHeaderSegment().getParser(); final int targetTransferTag = parser.getTargetTransferTag(); if (LOGGER.isDebugEnabled()) { LOGGER.debug("R2T has TTT set to " + targetTransferTag); } final int desiredDataTransferLength = parser.getDesiredDataTransferLength(); if (desiredDataTransferLength > connection.getSettingAsInt(OperationalTextKey.MAX_BURST_LENGTH)) { if (LOGGER.isErrorEnabled()) { LOGGER.error("MaxBurstLength limit is exceed."); } throw new InternetSCSIException("MaxBurstLength limit is exceed."); } // OODRIVE connection.nextState(new WriteSecondBurstState(connection, iterator, targetTransferTag, desiredDataTransferLength, dataSequenceNumber, bufferOffset, initiatorTaskTag), initiatorTaskTag); super.stateFollowing = true; // return true; return; } else if (protocolDataUnit.getBasicHeaderSegment().getParser() instanceof SCSIResponseParser) { final SCSIResponseParser parser = (SCSIResponseParser)protocolDataUnit.getBasicHeaderSegment().getParser(); if (!iterator.hasNext() && parser.getStatus() == SCSIStatus.GOOD) { /* OODRIVE connection.getSession().incrementInitiatorTaskTag(); */ // return false; super.stateFollowing = false; return; } } throw new RuntimeException(protocolDataUnit.getBasicHeaderSegment().getParser().toString()); } // -------------------------------------------------------------------------- // -------------------------------------------------------------------------- /** {@inheritDoc} */ @Override public final Exception isCorrect(final ProtocolDataUnit protocolDataUnit) { // FIXME: Implement try { if (!connection.getSettingAsBoolean(OperationalTextKey.DATA_PDU_IN_ORDER) && !connection.getSettingAsBoolean(OperationalTextKey.DATA_SEQUENCE_IN_ORDER)) { return new UnsupportedOperationException(new StringBuilder( OperationalTextKey.DATA_PDU_IN_ORDER.toString()).append(" is yet not supported.") .toString()); } else { return null; } } catch (OperationalTextKeyException e) { return e; } } // -------------------------------------------------------------------------- // -------------------------------------------------------------------------- // -------------------------------------------------------------------------- // -------------------------------------------------------------------------- }