#include <sys/md4.h>
#include <sys/types.h>
#include <string.h>
#include <security/cryptoki.h>
#include <security/pkcs11.h>
#include <cryptoutil.h>
#include <smbsrv/libsmb.h>
static void smb_initlmkey(unsigned char *keyin, unsigned char *keyout);
void
randomize(char *data, unsigned len)
{
char *p = data;
if (pkcs11_get_random(data, len) == 0)
return;
while (len--) {
*p++ = (random() >> 24);
}
}
int
smb_auth_md4(unsigned char *result, unsigned char *input, int length)
{
MD4_CTX md4_context;
MD4Init(&md4_context);
MD4Update(&md4_context, input, length);
MD4Final(result, &md4_context);
return (SMBAUTH_SUCCESS);
}
int
smb_auth_hmac_md5(unsigned char *data,
int data_len,
unsigned char *key,
int key_len,
unsigned char *digest)
{
CK_RV rv;
CK_MECHANISM mechanism;
CK_OBJECT_HANDLE hKey;
CK_SESSION_HANDLE hSession;
CK_ULONG diglen = MD_DIGEST_LEN;
mechanism.mechanism = CKM_MD5_HMAC;
mechanism.pParameter = 0;
mechanism.ulParameterLen = 0;
rv = SUNW_C_GetMechSession(mechanism.mechanism, &hSession);
if (rv != CKR_OK) {
return (SMBAUTH_FAILURE);
}
rv = SUNW_C_KeyToObject(hSession, mechanism.mechanism,
key, key_len, &hKey);
if (rv != CKR_OK) {
(void) C_CloseSession(hSession);
return (SMBAUTH_FAILURE);
}
rv = C_SignInit(hSession, &mechanism, hKey);
if (rv != CKR_OK) {
(void) C_DestroyObject(hSession, hKey);
(void) C_CloseSession(hSession);
return (SMBAUTH_FAILURE);
}
rv = C_SignUpdate(hSession, (CK_BYTE_PTR)data, data_len);
if (rv != CKR_OK) {
(void) C_DestroyObject(hSession, hKey);
(void) C_CloseSession(hSession);
return (SMBAUTH_FAILURE);
}
rv = C_SignFinal(hSession, (CK_BYTE_PTR)digest, &diglen);
if (rv != CKR_OK) {
(void) C_DestroyObject(hSession, hKey);
(void) C_CloseSession(hSession);
return (SMBAUTH_FAILURE);
}
(void) C_DestroyObject(hSession, hKey);
(void) C_CloseSession(hSession);
if (diglen != MD_DIGEST_LEN) {
return (SMBAUTH_FAILURE);
}
return (SMBAUTH_SUCCESS);
}
int
smb_auth_DES(unsigned char *Result, int ResultLen,
unsigned char *Key, int KeyLen,
unsigned char *Data, int DataLen)
{
CK_RV rv;
CK_MECHANISM mechanism;
CK_OBJECT_HANDLE hKey;
CK_SESSION_HANDLE hSession;
CK_ULONG ciphertext_len;
uchar_t des_key[8];
int error = 0;
int K, D;
int k, d;
K = KeyLen / 7;
D = DataLen / 8;
if ((KeyLen % 7) || (DataLen % 8))
return (EINVAL);
if (K == 0 || D == 0)
return (EINVAL);
if (ResultLen < (K * 8))
return (EINVAL);
mechanism.mechanism = CKM_DES_ECB;
mechanism.pParameter = NULL;
mechanism.ulParameterLen = 0;
rv = SUNW_C_GetMechSession(mechanism.mechanism, &hSession);
if (rv != CKR_OK) {
return (SMBAUTH_FAILURE);
}
for (d = k = 0; k < K; k++, d++) {
if (d == D)
d = 0;
smb_initlmkey(&Key[k * 7], des_key);
rv = SUNW_C_KeyToObject(hSession, mechanism.mechanism,
des_key, 8, &hKey);
if (rv != CKR_OK) {
error = 1;
goto exit_session;
}
rv = C_EncryptInit(hSession, &mechanism, hKey);
if (rv != CKR_OK) {
error = 1;
goto exit_encrypt;
}
ciphertext_len = 8;
rv = C_EncryptUpdate(hSession,
(CK_BYTE_PTR)Data + (d * 8), 8,
(CK_BYTE_PTR)Result + (k * 8),
&ciphertext_len);
if (rv != CKR_OK) {
error = 1;
goto exit_encrypt;
}
(void) C_DestroyObject(hSession, hKey);
}
goto exit_session;
exit_encrypt:
(void) C_DestroyObject(hSession, hKey);
exit_session:
(void) C_CloseSession(hSession);
if (error)
return (SMBAUTH_FAILURE);
return (SMBAUTH_SUCCESS);
}
static void
smb_initlmkey(unsigned char *keyin, unsigned char *keyout)
{
int i;
keyout[0] = keyin[0] >> 0x01;
keyout[1] = ((keyin[0] & 0x01) << 6) | (keyin[1] >> 2);
keyout[2] = ((keyin[1] & 0x03) << 5) | (keyin[2] >> 3);
keyout[3] = ((keyin[2] & 0x07) << 4) | (keyin[3] >> 4);
keyout[4] = ((keyin[3] & 0x0f) << 3) | (keyin[4] >> 5);
keyout[5] = ((keyin[4] & 0x1f) << 2) | (keyin[5] >> 6);
keyout[6] = ((keyin[5] & 0x3f) << 1) | (keyin[6] >> 7);
keyout[7] = keyin[6] & 0x7f;
for (i = 0; i < 8; i++)
keyout[i] = (keyout[i] << 1) & 0xfe;
}
int
smb_auth_RC4(uchar_t *Result, int ResultLen,
uchar_t *Key, int KeyLen,
uchar_t *Data, int DataLen)
{
CK_RV rv;
CK_MECHANISM mechanism;
CK_OBJECT_HANDLE hKey;
CK_SESSION_HANDLE hSession;
CK_ULONG ciphertext_len;
int error = SMBAUTH_FAILURE;
mechanism.mechanism = CKM_RC4;
mechanism.pParameter = NULL;
mechanism.ulParameterLen = 0;
rv = SUNW_C_GetMechSession(mechanism.mechanism, &hSession);
if (rv != CKR_OK) {
return (SMBAUTH_FAILURE);
}
rv = SUNW_C_KeyToObject(hSession, mechanism.mechanism,
Key, KeyLen, &hKey);
if (rv != CKR_OK)
goto exit_session;
rv = C_EncryptInit(hSession, &mechanism, hKey);
if (rv != CKR_OK)
goto exit_encrypt;
ciphertext_len = ResultLen;
rv = C_EncryptUpdate(hSession,
(CK_BYTE_PTR)Data, DataLen,
(CK_BYTE_PTR)Result, &ciphertext_len);
if (rv == CKR_OK)
error = 0;
exit_encrypt:
(void) C_DestroyObject(hSession, hKey);
exit_session:
(void) C_CloseSession(hSession);
return (error);
}