123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349 |
- /* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
- /* This work is licensed under a Creative Commons CCZero 1.0 Universal License.
- * See http://creativecommons.org/publicdomain/zero/1.0/ for more information. */
- #include <ua_types.h>
- #include "ua_securitypolicy_none.h"
- #include "ua_types_generated_handling.h"
- #include "testing_policy.h"
- #include "check.h"
- #define SET_CALLED(func) funcsCalled->func = true
- #define SYM_ENCRYPTION_BLOCK_SIZE 2
- #define SYM_SIGNING_KEY_LENGTH 3
- #define SYM_ENCRYPTION_KEY_LENGTH 5
- funcs_called *funcsCalled;
- static UA_StatusCode
- verify_testing(const UA_SecurityPolicy *securityPolicy,
- const void *channelContext,
- const UA_ByteString *message,
- const UA_ByteString *signature) {
- return UA_STATUSCODE_GOOD;
- }
- static UA_StatusCode
- asym_sign_testing(const UA_SecurityPolicy *securityPolicy,
- const void *channelContext,
- const UA_ByteString *message,
- UA_ByteString *signature) {
- SET_CALLED(asym_sign);
- ck_assert(securityPolicy);
- ck_assert(channelContext);
- ck_assert(message);
- ck_assert(signature);
- return UA_STATUSCODE_GOOD;
- }
- static UA_StatusCode
- sym_sign_testing(const UA_SecurityPolicy *securityPolicy,
- const void *channelContext,
- const UA_ByteString *message,
- UA_ByteString *signature) {
- SET_CALLED(sym_sign);
- ck_assert(securityPolicy);
- ck_assert(channelContext);
- ck_assert(message);
- ck_assert(signature);
- return UA_STATUSCODE_GOOD;
- }
- static size_t
- asym_getLocalSignatureSize_testing(const UA_SecurityPolicy *securityPolicy,
- const void *channelContext) {
- return 0;
- }
- static size_t
- asym_getRemoteSignatureSize_testing(const UA_SecurityPolicy *securityPolicy,
- const void *channelContext) {
- return 0;
- }
- static size_t
- asym_getLocalEncryptionKeyLength_testing(const UA_SecurityPolicy *securityPolicy,
- const void *channelContext) {
- return 0;
- }
- static size_t
- asym_getRemoteEncryptionKeyLength_testing(const UA_SecurityPolicy *securityPolicy,
- const void *channelContext) {
- return 0;
- }
- static size_t
- sym_getLocalSignatureSize_testing(const UA_SecurityPolicy *securityPolicy,
- const void *channelContext) {
- return 0;
- }
- static size_t
- sym_getRemoteSignatureSize_testing(const UA_SecurityPolicy *securityPolicy,
- const void *channelContext) {
- return 0;
- }
- static size_t
- sym_getLocalEncryptionKeyLength_testing(const UA_SecurityPolicy *securityPolicy,
- const void *channelContext) {
- ck_assert(securityPolicy);
- ck_assert(channelContext);
- return SYM_ENCRYPTION_KEY_LENGTH;
- }
- static size_t
- sym_getRemoteEncryptionKeyLength_testing(const UA_SecurityPolicy *securityPolicy,
- const void *channelContext) {
- return SYM_ENCRYPTION_KEY_LENGTH;
- }
- static UA_StatusCode
- sym_encrypt_testing(const UA_SecurityPolicy *securityPolicy,
- const void *channelContext,
- UA_ByteString *data) {
- SET_CALLED(sym_enc);
- ck_assert(securityPolicy);
- ck_assert(channelContext);
- ck_assert(data);
- return UA_STATUSCODE_GOOD;
- }
- static UA_StatusCode
- asym_encrypt_testing(const UA_SecurityPolicy *securityPolicy,
- const void *channelContext,
- UA_ByteString *data) {
- SET_CALLED(asym_enc);
- ck_assert(securityPolicy);
- ck_assert(channelContext);
- ck_assert(data);
- return UA_STATUSCODE_GOOD;
- }
- static UA_StatusCode
- decrypt_testing(const UA_SecurityPolicy *securityPolicy,
- const void *channelContext,
- UA_ByteString *data) {
- return UA_STATUSCODE_GOOD;
- }
- static UA_StatusCode
- makeThumbprint_testing(const UA_SecurityPolicy *securityPolicy,
- const UA_ByteString *certificate,
- UA_ByteString *thumbprint) {
- SET_CALLED(makeCertificateThumbprint);
- return UA_STATUSCODE_GOOD;
- }
- static UA_StatusCode
- compareThumbprint_testing(const UA_SecurityPolicy *securityPolicy,
- const UA_ByteString *certificateThumbprint) {
- return UA_STATUSCODE_GOOD;
- }
- static UA_StatusCode
- generateKey_testing(const UA_SecurityPolicy *securityPolicy,
- const UA_ByteString *secret,
- const UA_ByteString *seed,
- UA_ByteString *out) {
- SET_CALLED(generateKey);
- ck_assert(securityPolicy);
- ck_assert(secret);
- ck_assert(seed);
- ck_assert(out);
- return UA_STATUSCODE_GOOD;
- }
- static UA_StatusCode
- generateNonce_testing(const UA_SecurityPolicy *securityPolicy,
- UA_ByteString *out) {
- out->data = UA_Byte_new();
- if(!out->data)
- return UA_STATUSCODE_BADOUTOFMEMORY;
- out->length = 1;
- out->data[0] = 'a';
- return UA_STATUSCODE_GOOD;
- }
- static UA_StatusCode
- newContext_testing(const UA_SecurityPolicy *securityPolicy,
- const UA_ByteString *remoteCertificate,
- void **channelContext) {
- SET_CALLED(newContext);
- ck_assert(securityPolicy);
- ck_assert(remoteCertificate);
- ck_assert(channelContext);
- *channelContext = (void *) funcsCalled;
- return UA_STATUSCODE_GOOD;
- }
- static void
- deleteContext_testing(void *channelContext) {
- SET_CALLED(deleteContext);
- ck_assert(channelContext);
- }
- static UA_StatusCode
- setLocalSymEncryptingKey_testing(void *channelContext,
- const UA_ByteString *val) {
- SET_CALLED(setLocalSymEncryptingKey);
- ck_assert(channelContext);
- ck_assert(val);
- ck_assert(val->data);
- ck_assert_msg(val->length == SYM_ENCRYPTION_KEY_LENGTH,
- "Expected length to be %i but got %i",
- SYM_ENCRYPTION_KEY_LENGTH,
- val->length);
- return UA_STATUSCODE_GOOD;
- }
- static UA_StatusCode
- setLocalSymSigningKey_testing(void *channelContext,
- const UA_ByteString *val) {
- SET_CALLED(setLocalSymSigningKey);
- ck_assert(channelContext);
- ck_assert(val);
- ck_assert(val->data);
- ck_assert_msg(val->length == SYM_SIGNING_KEY_LENGTH,
- "Expected length to be %i but got %i",
- SYM_SIGNING_KEY_LENGTH,
- val->length);
- return UA_STATUSCODE_GOOD;
- }
- static UA_StatusCode
- setLocalSymIv_testing(void *channelContext,
- const UA_ByteString *val) {
- SET_CALLED(setLocalSymIv);
- ck_assert(channelContext);
- ck_assert(val);
- ck_assert(val->data);
- ck_assert_msg(val->length == SYM_ENCRYPTION_BLOCK_SIZE,
- "Expected length to be %i but got %i",
- SYM_ENCRYPTION_BLOCK_SIZE,
- val->length);
- return UA_STATUSCODE_GOOD;
- }
- static UA_StatusCode
- setRemoteSymEncryptingKey_testing(void *channelContext,
- const UA_ByteString *val) {
- SET_CALLED(setRemoteSymEncryptingKey);
- ck_assert(channelContext);
- ck_assert(val);
- ck_assert(val->data);
- ck_assert_msg(val->length == SYM_ENCRYPTION_KEY_LENGTH,
- "Expected length to be %i but got %i",
- SYM_ENCRYPTION_KEY_LENGTH,
- val->length);
- return UA_STATUSCODE_GOOD;
- }
- static UA_StatusCode
- setRemoteSymSigningKey_testing(void *channelContext,
- const UA_ByteString *val) {
- SET_CALLED(setRemoteSymSigningKey);
- ck_assert(channelContext);
- ck_assert(val);
- ck_assert(val->data);
- ck_assert_msg(val->length == SYM_SIGNING_KEY_LENGTH,
- "Expected length to be %i but got %i",
- SYM_SIGNING_KEY_LENGTH,
- val->length);
- return UA_STATUSCODE_GOOD;
- }
- static UA_StatusCode
- setRemoteSymIv_testing(void *channelContext,
- const UA_ByteString *val) {
- SET_CALLED(setRemoteSymIv);
- ck_assert(channelContext);
- ck_assert(val);
- ck_assert(val->data);
- ck_assert_msg(val->length == SYM_ENCRYPTION_BLOCK_SIZE,
- "Expected length to be %i but got %i",
- SYM_ENCRYPTION_BLOCK_SIZE,
- val->length);
- return UA_STATUSCODE_GOOD;
- }
- static size_t
- getRemoteAsymPlainTextBlockSize_testing(const void *channelContext) {
- return 5;
- }
- static size_t
- getRemoteAsymEncryptionBufferLengthOverhead_testing(const void *channelContext,
- size_t maxEncryptionLength) {
- return 0;
- }
- static UA_StatusCode
- compareCertificate_testing(const void *channelContext,
- const UA_ByteString *certificate) {
- return UA_STATUSCODE_GOOD;
- }
- static void
- policy_deletemembers_testing(UA_SecurityPolicy *policy) {
- UA_ByteString_deleteMembers(&policy->localCertificate);
- }
- UA_StatusCode
- TestingPolicy(UA_SecurityPolicy *policy, const UA_ByteString localCertificate,
- funcs_called *fCalled) {
- funcsCalled = fCalled;
- policy->policyContext = (void *) funcsCalled;
- policy->policyUri = UA_STRING("http://opcfoundation.org/UA/SecurityPolicy#Testing");
- policy->logger = NULL;
- UA_ByteString_copy(&localCertificate, &policy->localCertificate);
- policy->asymmetricModule.makeCertificateThumbprint = makeThumbprint_testing;
- policy->asymmetricModule.compareCertificateThumbprint = compareThumbprint_testing;
- policy->asymmetricModule.cryptoModule.signatureAlgorithmUri = UA_STRING_NULL;
- policy->asymmetricModule.cryptoModule.verify = verify_testing;
- policy->asymmetricModule.cryptoModule.sign = asym_sign_testing;
- policy->asymmetricModule.cryptoModule.getLocalSignatureSize = asym_getLocalSignatureSize_testing;
- policy->asymmetricModule.cryptoModule.getRemoteSignatureSize = asym_getRemoteSignatureSize_testing;
- policy->asymmetricModule.cryptoModule.encrypt = asym_encrypt_testing;
- policy->asymmetricModule.cryptoModule.decrypt = decrypt_testing;
- policy->asymmetricModule.cryptoModule.getLocalEncryptionKeyLength = asym_getLocalEncryptionKeyLength_testing;
- policy->asymmetricModule.cryptoModule.getRemoteEncryptionKeyLength = asym_getRemoteEncryptionKeyLength_testing;
- policy->symmetricModule.generateKey = generateKey_testing;
- policy->symmetricModule.generateNonce = generateNonce_testing;
- policy->symmetricModule.cryptoModule.signatureAlgorithmUri = UA_STRING_NULL;
- policy->symmetricModule.cryptoModule.verify = verify_testing;
- policy->symmetricModule.cryptoModule.sign = sym_sign_testing;
- policy->symmetricModule.cryptoModule.getLocalSignatureSize = sym_getLocalSignatureSize_testing;
- policy->symmetricModule.cryptoModule.getRemoteSignatureSize = sym_getRemoteSignatureSize_testing;
- policy->symmetricModule.cryptoModule.encrypt = sym_encrypt_testing;
- policy->symmetricModule.cryptoModule.decrypt = decrypt_testing;
- policy->symmetricModule.cryptoModule.getLocalEncryptionKeyLength = sym_getLocalEncryptionKeyLength_testing;
- policy->symmetricModule.cryptoModule.getRemoteEncryptionKeyLength = sym_getRemoteEncryptionKeyLength_testing;
- policy->symmetricModule.encryptionBlockSize = SYM_ENCRYPTION_BLOCK_SIZE;
- policy->symmetricModule.signingKeyLength = SYM_SIGNING_KEY_LENGTH;
- policy->channelModule.newContext = newContext_testing;
- policy->channelModule.deleteContext = deleteContext_testing;
- policy->channelModule.setLocalSymEncryptingKey = setLocalSymEncryptingKey_testing;
- policy->channelModule.setLocalSymSigningKey = setLocalSymSigningKey_testing;
- policy->channelModule.setLocalSymIv = setLocalSymIv_testing;
- policy->channelModule.setRemoteSymEncryptingKey = setRemoteSymEncryptingKey_testing;
- policy->channelModule.setRemoteSymSigningKey = setRemoteSymSigningKey_testing;
- policy->channelModule.setRemoteSymIv = setRemoteSymIv_testing;
- policy->channelModule.compareCertificate = compareCertificate_testing;
- policy->channelModule.getRemoteAsymPlainTextBlockSize = getRemoteAsymPlainTextBlockSize_testing;
- policy->channelModule.getRemoteAsymEncryptionBufferLengthOverhead =
- getRemoteAsymEncryptionBufferLengthOverhead_testing;
- policy->deleteMembers = policy_deletemembers_testing;
- return UA_STATUSCODE_GOOD;
- }
|