123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310 |
- /* 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/. */
- #ifndef UA_PLUGIN_SECURITYPOLICY_H_
- #define UA_PLUGIN_SECURITYPOLICY_H_
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include "ua_types.h"
- #include "ua_types_generated.h"
- #include "ua_plugin_log.h"
- extern const UA_ByteString UA_SECURITY_POLICY_NONE_URI;
- struct UA_SecurityPolicy;
- typedef struct UA_SecurityPolicy UA_SecurityPolicy;
- typedef struct {
- UA_String signatureAlgorithmUri;
- /* Verifies the signature of the message using the provided keys in the context.
- *
- * @param securityPolicy the securityPolicy the function is invoked on.
- * @param channelContext the channelContext that contains the key to verify
- * the supplied message with.
- * @param message the message to which the signature is supposed to belong.
- * @param signature the signature of the message, that should be verified. */
- UA_StatusCode (*verify)(const UA_SecurityPolicy *securityPolicy,
- void *channelContext, const UA_ByteString *message,
- const UA_ByteString *signature) UA_FUNC_ATTR_WARN_UNUSED_RESULT;
- /* Signs the given message using this policys signing algorithm and the
- * provided keys in the context.
- *
- * @param securityPolicy the securityPolicy the function is invoked on.
- * @param channelContext the channelContext that contains the key to sign
- * the supplied message with.
- * @param message the message to sign.
- * @param signature an output buffer to which the signature is written. The
- * buffer needs to be allocated by the caller. The
- * necessary size can be acquired with the signatureSize
- * attribute of this module. */
- UA_StatusCode (*sign)(const UA_SecurityPolicy *securityPolicy,
- void *channelContext, const UA_ByteString *message,
- UA_ByteString *signature) UA_FUNC_ATTR_WARN_UNUSED_RESULT;
- /* Gets the signature size that depends on the local (private) key.
- *
- * @param securityPolicy the securityPolicy the function is invoked on.
- * @param channelContext the channelContext that contains the
- * certificate/key.
- * @return the size of the local signature. Returns 0 if no local
- * certificate was set. */
- size_t (*getLocalSignatureSize)(const UA_SecurityPolicy *securityPolicy,
- const void *channelContext);
- /* Gets the signature size that depends on the remote (public) key.
- *
- * @param securityPolicy the securityPolicy the function is invoked on.
- * @param channelContext the context to retrieve data from.
- * @return the size of the remote signature. Returns 0 if no
- * remote certificate was set previousely. */
- size_t (*getRemoteSignatureSize)(const UA_SecurityPolicy *securityPolicy,
- const void *channelContext);
- UA_String encryptionAlgorithmUri;
- /* Encrypt the given data in place using an asymmetric algorithm and keys.
- *
- * @param securityPolicy the securityPolicy the function is invoked on.
- * @param channelContext the channelContext which contains information about
- * the keys to encrypt data.
- * @param data the data that is encrypted. The encrypted data will overwrite
- * the data that was supplied. */
- UA_StatusCode(*encrypt)(const UA_SecurityPolicy *securityPolicy,
- void *channelContext,
- UA_ByteString *data) UA_FUNC_ATTR_WARN_UNUSED_RESULT;
- /* Decrypts the given ciphertext in place using an asymmetric algorithm and
- * key.
- *
- * @param securityPolicy the securityPolicy the function is invoked on.
- * @param channelContext the channelContext which contains information about
- * the keys needed to decrypt the message.
- * @param data the data to decrypt. The decryption is done in place. */
- UA_StatusCode(*decrypt)(const UA_SecurityPolicy *securityPolicy,
- void *channelContext,
- UA_ByteString *data) UA_FUNC_ATTR_WARN_UNUSED_RESULT;
- /* Returns the length of the key used locally to encrypt messages in bits
- *
- * @param securityPolicy the securityPolicy the function is invoked on.
- * @param channelContext the context to retrieve data from.
- * @return the length of the local key. Returns 0 if no
- * key length is known. */
- size_t (*getLocalEncryptionKeyLength)(const UA_SecurityPolicy *securityPolicy,
- const void *channelContext);
- /* Returns the length of the key used remotely to encrypt messages in bits
- *
- * @param securityPolicy the securityPolicy the function is invoked on.
- * @param channelContext the context to retrieve data from.
- * @return the length of the remote key. Returns 0 if no
- * key length is known. */
- size_t (*getRemoteEncryptionKeyLength)(const UA_SecurityPolicy *securityPolicy,
- const void *channelContext);
- } UA_SecurityPolicyCryptoModule;
- typedef struct {
- /* Generates a thumbprint for the specified certificate.
- *
- * @param securityPolicy the securityPolicy the function is invoked on.
- * @param certificate the certificate to make a thumbprint of.
- * @param thumbprint an output buffer for the resulting thumbprint. Always
- * has the length specified in the thumbprintLength in the
- * asymmetricModule. */
- UA_StatusCode (*makeCertificateThumbprint)(const UA_SecurityPolicy *securityPolicy,
- const UA_ByteString *certificate,
- UA_ByteString *thumbprint)
- UA_FUNC_ATTR_WARN_UNUSED_RESULT;
- /* Compares the supplied certificate with the certificate in the endpoit context.
- *
- * @param securityPolicy the policy data that contains the certificate
- * to compare to.
- * @param certificateThumbprint the certificate thumbprint to compare to the
- * one stored in the context.
- * @return if the thumbprints match UA_STATUSCODE_GOOD is returned. If they
- * don't match or an error occurred an error code is returned. */
- UA_StatusCode (*compareCertificateThumbprint)(const UA_SecurityPolicy *securityPolicy,
- const UA_ByteString *certificateThumbprint)
- UA_FUNC_ATTR_WARN_UNUSED_RESULT;
- UA_SecurityPolicyCryptoModule cryptoModule;
- } UA_SecurityPolicyAsymmetricModule;
- typedef struct {
- /* Pseudo random function that is used to generate the symmetric keys.
- *
- * For information on what parameters this function receives in what situation,
- * refer to the OPC UA specification 1.03 Part6 Table 33
- *
- * @param securityPolicy the securityPolicy the function is invoked on.
- * @param secret
- * @param seed
- * @param out an output to write the data to. The length defines the maximum
- * number of output bytes that are produced. */
- UA_StatusCode (*generateKey)(const UA_SecurityPolicy *securityPolicy,
- const UA_ByteString *secret,
- const UA_ByteString *seed, UA_ByteString *out)
- UA_FUNC_ATTR_WARN_UNUSED_RESULT;
- /* Random generator for generating nonces.
- *
- * @param securityPolicy the securityPolicy this function is invoked on.
- * Example: myPolicy->generateNonce(myPolicy,
- * &outBuff);
- * @param out pointer to a buffer to store the nonce in. Needs to be
- * allocated by the caller. The buffer is filled with random
- * data. */
- UA_StatusCode (*generateNonce)(const UA_SecurityPolicy *securityPolicy,
- UA_ByteString *out)
- UA_FUNC_ATTR_WARN_UNUSED_RESULT;
- UA_SecurityPolicyCryptoModule cryptoModule;
- size_t encryptionBlockSize;
- size_t signingKeyLength;
- } UA_SecurityPolicySymmetricModule;
- typedef struct {
- /* This method creates a new context data object.
- *
- * The caller needs to call delete on the received object to free allocated
- * memory. Memory is only allocated if the function succeeds so there is no
- * need to manually free the memory pointed to by *channelContext or to
- * call delete in case of failure.
- *
- * @param securityPolicy the policy context of the endpoint that is connected
- * to. It will be stored in the channelContext for
- * further access by the policy.
- * @param remoteCertificate the remote certificate contains the remote
- * asymmetric key. The certificate will be verified
- * and then stored in the context so that its
- * details may be accessed.
- * @param channelContext the initialized channelContext that is passed to
- * functions that work on a context. */
- UA_StatusCode (*newContext)(const UA_SecurityPolicy *securityPolicy,
- const UA_ByteString *remoteCertificate,
- void **channelContext)
- UA_FUNC_ATTR_WARN_UNUSED_RESULT;
- /* Deletes the the security context. */
- void (*deleteContext)(void *channelContext);
- /* Sets the local encrypting key in the supplied context.
- *
- * @param channelContext the context to work on.
- * @param key the local encrypting key to store in the context. */
- UA_StatusCode (*setLocalSymEncryptingKey)(void *channelContext,
- const UA_ByteString *key)
- UA_FUNC_ATTR_WARN_UNUSED_RESULT;
- /* Sets the local signing key in the supplied context.
- *
- * @param channelContext the context to work on.
- * @param key the local signing key to store in the context. */
- UA_StatusCode (*setLocalSymSigningKey)(void *channelContext,
- const UA_ByteString *key)
- UA_FUNC_ATTR_WARN_UNUSED_RESULT;
- /* Sets the local initialization vector in the supplied context.
- *
- * @param channelContext the context to work on.
- * @param iv the local initialization vector to store in the context. */
- UA_StatusCode (*setLocalSymIv)(void *channelContext,
- const UA_ByteString *iv)
- UA_FUNC_ATTR_WARN_UNUSED_RESULT;
- /* Sets the remote encrypting key in the supplied context.
- *
- * @param channelContext the context to work on.
- * @param key the remote encrypting key to store in the context. */
- UA_StatusCode (*setRemoteSymEncryptingKey)(void *channelContext,
- const UA_ByteString *key)
- UA_FUNC_ATTR_WARN_UNUSED_RESULT;
- /* Sets the remote signing key in the supplied context.
- *
- * @param channelContext the context to work on.
- * @param key the remote signing key to store in the context. */
- UA_StatusCode (*setRemoteSymSigningKey)(void *channelContext,
- const UA_ByteString *key)
- UA_FUNC_ATTR_WARN_UNUSED_RESULT;
- /* Sets the remote initialization vector in the supplied context.
- *
- * @param channelContext the context to work on.
- * @param iv the remote initialization vector to store in the context. */
- UA_StatusCode (*setRemoteSymIv)(void *channelContext,
- const UA_ByteString *iv)
- UA_FUNC_ATTR_WARN_UNUSED_RESULT;
- /* Compares the supplied certificate with the certificate in the channel
- * context.
- *
- * @param channelContext the channel context data that contains the
- * certificate to compare to.
- * @param certificate the certificate to compare to the one stored in the context.
- * @return if the certificates match UA_STATUSCODE_GOOD is returned. If they
- * don't match or an errror occurred an error code is returned. */
- UA_StatusCode (*compareCertificate)(const void *channelContext,
- const UA_ByteString *certificate)
- UA_FUNC_ATTR_WARN_UNUSED_RESULT;
- /* Gets the plaintext block size that depends on the remote public key.
- *
- * @param channelContext the context to retrieve data from.
- * @return the size of the plain text block size when encrypting with the
- * remote public key. Returns 0 as long as no remote certificate was
- * set previousely. */
- size_t (*getRemoteAsymPlainTextBlockSize)(const void *channelContext);
- /* Gets the number of bytes that are needed by the encryption function in
- * addition to the length of the plaintext message. This is needed, since
- * most RSA encryption methods have their own padding mechanism included.
- * This makes the encrypted message larger than the plainText, so we need to
- * have enough room in the buffer for the overhead.
- *
- * @param channelContext the retrieve data from.
- * @param maxEncryptionLength the maximum number of bytes that the data to
- * encrypt can be. */
- size_t (*getRemoteAsymEncryptionBufferLengthOverhead)(const void *channelContext,
- size_t maxEncryptionLength);
- } UA_SecurityPolicyChannelModule;
- struct UA_SecurityPolicy {
- /* Additional data */
- void *policyContext;
- /* The policy uri that identifies the implemented algorithms */
- UA_ByteString policyUri;
- /* The local certificate is specific for each SecurityPolicy since it
- * depends on the used key length. */
- UA_ByteString localCertificate;
- /* Function pointers grouped into modules */
- UA_SecurityPolicyAsymmetricModule asymmetricModule;
- UA_SecurityPolicySymmetricModule symmetricModule;
- UA_SecurityPolicyChannelModule channelModule;
- UA_Logger logger;
- /* Deletes the dynamic content of the policy */
- void (*deleteMembers)(UA_SecurityPolicy *policy);
- };
- typedef struct {
- UA_SecurityPolicy securityPolicy;
- UA_EndpointDescription endpointDescription;
- } UA_Endpoint;
- #ifdef __cplusplus
- }
- #endif
- #endif /* UA_PLUGIN_SECURITYPOLICY_H_ */
|