Search in sources :

Example 1 with EraseBinary

use of org.openecard.common.apdu.EraseBinary in project open-ecard by ecsec.

the class TinySAL method dsiDelete.

/**
 * The DSIDelete function deletes a DSI (Data Structure for Interoperability) in the currently selected data set.
 * See BSI-TR-03112-4, version 1.1.2, section 3.4.7.
 *
 * @param request DSIDelete
 * @return DSIDeleteResponse
 */
// TODO: rewiew function and add @Publish annotation
@Override
public DSIDeleteResponse dsiDelete(DSIDelete request) {
    DSIDeleteResponse response = WSHelper.makeResponse(DSIDeleteResponse.class, WSHelper.makeResultOK());
    try {
        ConnectionHandleType connectionHandle = SALUtils.getConnectionHandle(request);
        CardStateEntry cardStateEntry = SALUtils.getCardStateEntry(states, connectionHandle);
        CardInfoWrapper cardInfoWrapper = cardStateEntry.getInfo();
        String dsiName = request.getDSIName();
        Assert.assertIncorrectParameter(dsiName, "The parameter DSIName is empty.");
        if (cardStateEntry.getFCPOfSelectedEF() == null) {
            String msg = "No DataSet selected for deleting the DSI " + request.getDSIName();
            throw new PrerequisitesNotSatisfiedException(msg);
        }
        DataSetInfoType dataSet = cardInfoWrapper.getDataSetByDsiName(request.getDSIName());
        byte[] fidOrPath = dataSet.getDataSetPath().getEfIdOrPath();
        byte[] dataSetFid = new byte[] { fidOrPath[fidOrPath.length - 2], fidOrPath[fidOrPath.length - 1] };
        if (!Arrays.equals(dataSetFid, cardStateEntry.getFCPOfSelectedEF().getFileIdentifiers().get(0))) {
            String msg = "The wrong DataSet for the deletion of DSI " + request.getDSIName() + " is selected.";
            throw new PrerequisitesNotSatisfiedException(msg);
        }
        DataSetInfoType dSet = cardInfoWrapper.getDataSetByFid(cardStateEntry.getFCPOfSelectedEF().getFileIdentifiers().get(0));
        Assert.securityConditionDataSet(cardStateEntry, connectionHandle.getCardApplication(), dSet.getDataSetName(), NamedDataServiceActionName.DSI_DELETE);
        DSIType dsi = cardInfoWrapper.getDSIbyName(dsiName);
        // We have to define some allowed answers because if the file has an write operation counter we wont get an
        // 9000 response.
        ArrayList<byte[]> responses = new ArrayList<byte[]>() {

            {
                add(new byte[] { (byte) 0x90, (byte) 0x00 });
                add(new byte[] { (byte) 0x63, (byte) 0xC1 });
                add(new byte[] { (byte) 0x63, (byte) 0xC2 });
                add(new byte[] { (byte) 0x63, (byte) 0xC3 });
                add(new byte[] { (byte) 0x63, (byte) 0xC4 });
                add(new byte[] { (byte) 0x63, (byte) 0xC5 });
                add(new byte[] { (byte) 0x63, (byte) 0xC6 });
                add(new byte[] { (byte) 0x63, (byte) 0xC7 });
                add(new byte[] { (byte) 0x63, (byte) 0xC8 });
                add(new byte[] { (byte) 0x63, (byte) 0xC9 });
                add(new byte[] { (byte) 0x63, (byte) 0xCA });
                add(new byte[] { (byte) 0x63, (byte) 0xCB });
                add(new byte[] { (byte) 0x63, (byte) 0xCC });
                add(new byte[] { (byte) 0x63, (byte) 0xCD });
                add(new byte[] { (byte) 0x63, (byte) 0xCE });
                add(new byte[] { (byte) 0x63, (byte) 0xCF });
            }
        };
        if (cardStateEntry.getFCPOfSelectedEF().getDataElements().isLinear()) {
            EraseRecord rmRecord = new EraseRecord(dsi.getDSIPath().getIndex()[0], EraseRecord.ERASE_JUST_P1);
            rmRecord.transmit(env.getDispatcher(), connectionHandle.getSlotHandle(), responses);
        } else {
            // NOTE: Erase binary allows to erase only everything after the offset or everything in front of the offset.
            // currently erasing everything after the offset is used.
            EraseBinary rmBinary = new EraseBinary((byte) 0x00, (byte) 0x00, dsi.getDSIPath().getIndex());
            rmBinary.transmit(env.getDispatcher(), connectionHandle.getSlotHandle(), responses);
        }
    } catch (ECardException e) {
        LOG.error(e.getMessage(), e);
        response.setResult(e.getResult());
    } catch (Exception e) {
        LOG.error(e.getMessage(), e);
        throwThreadKillException(e);
        response.setResult(WSHelper.makeResult(e));
    }
    return response;
}
Also used : ConnectionHandleType(iso.std.iso_iec._24727.tech.schema.ConnectionHandleType) CardStateEntry(org.openecard.common.sal.state.CardStateEntry) DSIType(iso.std.iso_iec._24727.tech.schema.DSIType) CardInfoWrapper(org.openecard.common.sal.state.cif.CardInfoWrapper) ArrayList(java.util.ArrayList) PrerequisitesNotSatisfiedException(org.openecard.common.sal.exception.PrerequisitesNotSatisfiedException) NameExistsException(org.openecard.common.sal.exception.NameExistsException) AddonNotFoundException(org.openecard.addon.AddonNotFoundException) ThreadTerminateException(org.openecard.common.ThreadTerminateException) ECardException(org.openecard.common.ECardException) NamedEntityNotFoundException(org.openecard.common.sal.exception.NamedEntityNotFoundException) UnknownProtocolException(org.openecard.common.sal.exception.UnknownProtocolException) IncorrectParameterException(org.openecard.common.sal.exception.IncorrectParameterException) InappropriateProtocolForActionException(org.openecard.common.sal.exception.InappropriateProtocolForActionException) TLVException(org.openecard.common.tlv.TLVException) SecurityConditionNotSatisfiedException(org.openecard.common.sal.exception.SecurityConditionNotSatisfiedException) UnknownConnectionHandleException(org.openecard.common.sal.exception.UnknownConnectionHandleException) ECardException(org.openecard.common.ECardException) PrerequisitesNotSatisfiedException(org.openecard.common.sal.exception.PrerequisitesNotSatisfiedException) DataSetInfoType(iso.std.iso_iec._24727.tech.schema.DataSetInfoType) EraseRecord(org.openecard.common.apdu.EraseRecord) EraseBinary(org.openecard.common.apdu.EraseBinary) DSIDeleteResponse(iso.std.iso_iec._24727.tech.schema.DSIDeleteResponse)

Aggregations

ConnectionHandleType (iso.std.iso_iec._24727.tech.schema.ConnectionHandleType)1 DSIDeleteResponse (iso.std.iso_iec._24727.tech.schema.DSIDeleteResponse)1 DSIType (iso.std.iso_iec._24727.tech.schema.DSIType)1 DataSetInfoType (iso.std.iso_iec._24727.tech.schema.DataSetInfoType)1 ArrayList (java.util.ArrayList)1 AddonNotFoundException (org.openecard.addon.AddonNotFoundException)1 ECardException (org.openecard.common.ECardException)1 ThreadTerminateException (org.openecard.common.ThreadTerminateException)1 EraseBinary (org.openecard.common.apdu.EraseBinary)1 EraseRecord (org.openecard.common.apdu.EraseRecord)1 InappropriateProtocolForActionException (org.openecard.common.sal.exception.InappropriateProtocolForActionException)1 IncorrectParameterException (org.openecard.common.sal.exception.IncorrectParameterException)1 NameExistsException (org.openecard.common.sal.exception.NameExistsException)1 NamedEntityNotFoundException (org.openecard.common.sal.exception.NamedEntityNotFoundException)1 PrerequisitesNotSatisfiedException (org.openecard.common.sal.exception.PrerequisitesNotSatisfiedException)1 SecurityConditionNotSatisfiedException (org.openecard.common.sal.exception.SecurityConditionNotSatisfiedException)1 UnknownConnectionHandleException (org.openecard.common.sal.exception.UnknownConnectionHandleException)1 UnknownProtocolException (org.openecard.common.sal.exception.UnknownProtocolException)1 CardStateEntry (org.openecard.common.sal.state.CardStateEntry)1 CardInfoWrapper (org.openecard.common.sal.state.cif.CardInfoWrapper)1