/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2008 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#include <pthread.h>
#include <security/cryptoki.h>
#include "softGlobal.h"
#include "softOps.h"
#include "softSession.h"
{
if (!softtoken_initialized)
return (CKR_CRYPTOKI_NOT_INITIALIZED);
/*
* Obtain the session pointer. Also, increment the session
* reference count.
*/
return (rv);
if (pMechanism == NULL) {
goto clean_exit;
}
/* Acquire the session lock */
/* Check to see if digest operation is already active */
/*
* Free the memory to avoid memory leak.
* digest.context is only a flat structure.
*/
}
/*
* This active flag will remain ON until application calls either
* C_Digest or C_DigestFinal to actually obtain the value of
* the message digest.
*/
/*
* Decrement the session reference count.
* We hold the session lock, and SES_REFRELE()
* will release the session lock for us.
*/
return (rv);
}
/*
* Decrement the session reference count.
* We do not hold the session lock.
*/
return (rv);
}
{
if (!softtoken_initialized)
return (CKR_CRYPTOKI_NOT_INITIALIZED);
/*
* Obtain the session pointer. Also, increment the session
* reference count.
*/
return (rv);
goto clean_exit;
}
/* Acquire the session lock */
/* Application must call C_DigestInit before calling C_Digest */
/*
* Decrement the session reference count.
* We hold the session lock, and SES_REFRELE()
* will release the session lock for us.
*/
return (CKR_OPERATION_NOT_INITIALIZED);
}
/*
* C_Digest must be called without intervening C_DigestUpdate
* calls.
*/
/*
* C_Digest can not be used to terminate a multi-part
* operation, so we'll leave the active digest operation
* flag on and let the application continue with the
* digest update operation.
*
* Decrement the session reference count.
* We hold the session lock, and SES_REFRELE()
* will release the session lock for us.
*/
return (CKR_FUNCTION_FAILED);
}
if ((rv == CKR_BUFFER_TOO_SMALL) ||
/*
* We will not terminate the active digest operation flag,
* when the application-supplied buffer is too small, or
* the application asks for the length of buffer to hold
* the message digest.
*
* Decrement the session reference count.
* We do not hold the session lock.
*/
return (rv);
}
/*
* Terminates the active digest operation.
* Application needs to call C_DigestInit again for next
* digest operation.
*/
/*
* Decrement the session reference count.
* We hold the session lock, and SES_REFRELE()
* will release the session lock for us.
*/
return (rv);
}
{
if (!softtoken_initialized)
return (CKR_CRYPTOKI_NOT_INITIALIZED);
/*
* Obtain the session pointer. Also, increment the session
* reference count.
*/
return (rv);
goto clean_exit;
}
/* Acquire the session lock */
/*
* Application must call C_DigestInit before calling
* C_DigestUpdate.
*/
/*
* Decrement the session reference count.
* We hold the session lock, and SES_REFRELE()
* will release the session lock for us.
*/
return (CKR_OPERATION_NOT_INITIALIZED);
}
/* Set update flag to protect C_Digest */
/*
* Decrement the session reference count.
* We do not hold the session lock.
*/
return (CKR_OK);
}
/*
* After an error occurred, terminate the current digest
* operation by resetting the active and update flags.
*/
/*
* Decrement the session reference count.
* We hold the session lock, and SES_REFRELE()
* will release the session lock for us.
*/
return (rv);
}
{
if (!softtoken_initialized)
return (CKR_CRYPTOKI_NOT_INITIALIZED);
/*
* Obtain the session pointer. Also, increment the session
* reference count.
*/
return (rv);
/* Obtain the object pointer. */
goto clean_exit;
/*
* Application must call C_DigestInit before calling
* C_DigestKey.
*/
/*
* Decrement the session reference count.
* We hold the session lock, and SES_REFRELE()
* will release the session lock for us.
*/
return (CKR_OPERATION_NOT_INITIALIZED);
}
/*
* Remember the fact that a key was thrown into the mix, so that
* C_DigestFinal bzero()'s the digest context before freeing it.
*/
/*
* Decrement the session reference count.
* We do not hold the session lock.
*/
return (CKR_OK);
}
/*
* After an error occurred, terminate the current digest
* operation by resetting the active and update flags.
*/
/*
* Decrement the session reference count.
* We hold the session lock, and SES_REFRELE()
* will release the session lock for us.
*/
return (rv);
}
{
if (!softtoken_initialized)
return (CKR_CRYPTOKI_NOT_INITIALIZED);
/*
* Obtain the session pointer. Also, increment the session
* reference count.
*/
return (rv);
if (pulDigestLen == NULL) {
goto clean_exit;
}
/* Acquire the session lock */
/*
* Application must call C_DigestInit before calling
* C_DigestFinal.
*/
/*
* Decrement the session reference count.
* We hold the session lock, and SES_REFRELE()
* will release the session lock for us.
*/
return (CKR_OPERATION_NOT_INITIALIZED);
}
if ((rv == CKR_BUFFER_TOO_SMALL) ||
/*
* We will not terminate the active digest operation flag,
* when the application-supplied buffer is too small, or
* the application asks for the length of buffer to hold
* the message digest.
*
* Decrement the session reference count.
* We do not hold the session lock.
*/
return (rv);
}
/* Terminates the active digest operation */
/*
* Decrement the session reference count.
* We hold the session lock, and SES_REFRELE()
* will release the session lock for us.
*/
return (rv);
}