ua_securechannel.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. #include "ua_securechannel.h"
  2. #include "ua_util.h"
  3. #include "ua_statuscodes.h"
  4. #ifdef UA_MULTITHREADING
  5. #include <urcu/uatomic.h>
  6. #endif
  7. // max message size is 64k
  8. const UA_ConnectionConfig UA_ConnectionConfig_standard =
  9. {.protocolVersion = 0, .sendBufferSize = 65536, .recvBufferSize = 65536,
  10. .maxMessageSize = 65536, .maxChunkCount = 1};
  11. void UA_SecureChannel_init(UA_SecureChannel *channel) {
  12. UA_MessageSecurityMode_init(&channel->securityMode);
  13. UA_ChannelSecurityToken_init(&channel->securityToken);
  14. UA_AsymmetricAlgorithmSecurityHeader_init(&channel->clientAsymAlgSettings);
  15. UA_AsymmetricAlgorithmSecurityHeader_init(&channel->serverAsymAlgSettings);
  16. UA_ByteString_init(&channel->clientNonce);
  17. UA_ByteString_init(&channel->serverNonce);
  18. channel->requestId = 0;
  19. channel->sequenceNumber = 0;
  20. channel->connection = UA_NULL;
  21. channel->session = UA_NULL;
  22. }
  23. void UA_SecureChannel_deleteMembers(UA_SecureChannel *channel) {
  24. UA_AsymmetricAlgorithmSecurityHeader_deleteMembers(&channel->serverAsymAlgSettings);
  25. UA_ByteString_deleteMembers(&channel->serverNonce);
  26. UA_AsymmetricAlgorithmSecurityHeader_deleteMembers(&channel->clientAsymAlgSettings);
  27. UA_ByteString_deleteMembers(&channel->clientNonce);
  28. UA_ChannelSecurityToken_deleteMembers(&channel->securityToken);
  29. }
  30. void UA_SecureChannel_delete(UA_SecureChannel *channel) {
  31. UA_SecureChannel_deleteMembers(channel);
  32. UA_free(channel);
  33. }
  34. UA_Boolean UA_SecureChannel_compare(UA_SecureChannel *sc1, UA_SecureChannel *sc2) {
  35. return (sc1->securityToken.channelId == sc2->securityToken.channelId);
  36. }
  37. //TODO implement real nonce generator - DUMMY function
  38. UA_StatusCode UA_SecureChannel_generateNonce(UA_ByteString *nonce) {
  39. if(!(nonce->data = UA_malloc(1)))
  40. return UA_STATUSCODE_BADOUTOFMEMORY;
  41. nonce->length = 1;
  42. nonce->data[0] = 'a';
  43. return UA_STATUSCODE_GOOD;
  44. }
  45. UA_StatusCode UA_SecureChannel_updateRequestId(UA_SecureChannel *channel, UA_UInt32 requestId) {
  46. //TODO review checking of request id
  47. if(channel->requestId+1 != requestId)
  48. return UA_STATUSCODE_BADINTERNALERROR;
  49. channel->requestId++;
  50. return UA_STATUSCODE_GOOD;
  51. }
  52. UA_Int32 UA_SecureChannel_updateSequenceNumber(UA_SecureChannel *channel, UA_UInt32 sequenceNumber) {
  53. //TODO review checking of sequence
  54. if(channel->sequenceNumber+1 != sequenceNumber)
  55. return UA_STATUSCODE_BADINTERNALERROR;
  56. channel->sequenceNumber++;
  57. return UA_STATUSCODE_GOOD;
  58. }
  59. void UA_Connection_detachSecureChannel(UA_Connection *connection) {
  60. #ifdef UA_MULTITHREADING
  61. UA_SecureChannel *channel = connection->channel;
  62. if(channel)
  63. uatomic_cmpxchg(&channel->connection, connection, UA_NULL);
  64. uatomic_set(&connection->channel, UA_NULL);
  65. #else
  66. if(connection->channel)
  67. connection->channel->connection = UA_NULL;
  68. connection->channel = UA_NULL;
  69. #endif
  70. }
  71. void UA_Connection_attachSecureChannel(UA_Connection *connection, UA_SecureChannel *channel) {
  72. #ifdef UA_MULTITHREADING
  73. if(uatomic_cmpxchg(&channel->connection, UA_NULL, connection) == UA_NULL)
  74. uatomic_set(&connection->channel, channel);
  75. #else
  76. if(channel->connection != UA_NULL)
  77. return;
  78. channel->connection = connection;
  79. connection->channel = channel;
  80. #endif
  81. }