ua_securechannel.c 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. #include <time.h>
  2. #include <stdlib.h>
  3. #include "ua_securechannel.h"
  4. #include "ua_util.h"
  5. #include "ua_statuscodes.h"
  6. void UA_SecureChannel_init(UA_SecureChannel *channel) {
  7. UA_AsymmetricAlgorithmSecurityHeader_init(&channel->clientAsymAlgSettings);
  8. UA_AsymmetricAlgorithmSecurityHeader_init(&channel->serverAsymAlgSettings);
  9. UA_ByteString_init(&channel->clientNonce);
  10. UA_ByteString_init(&channel->serverNonce);
  11. channel->connection = UA_NULL;
  12. channel->session = UA_NULL;
  13. }
  14. void UA_SecureChannel_deleteMembers(UA_SecureChannel *channel) {
  15. UA_AsymmetricAlgorithmSecurityHeader_deleteMembers(&channel->serverAsymAlgSettings);
  16. UA_ByteString_deleteMembers(&channel->serverNonce);
  17. UA_AsymmetricAlgorithmSecurityHeader_deleteMembers(&channel->clientAsymAlgSettings);
  18. UA_ByteString_deleteMembers(&channel->clientNonce);
  19. UA_ChannelSecurityToken_deleteMembers(&channel->securityToken);
  20. }
  21. void UA_SecureChannel_delete(UA_SecureChannel *channel) {
  22. UA_SecureChannel_deleteMembers(channel);
  23. UA_free(channel);
  24. }
  25. UA_Boolean UA_SecureChannel_compare(UA_SecureChannel *sc1, UA_SecureChannel *sc2) {
  26. return (sc1->securityToken.channelId == sc2->securityToken.channelId);
  27. }
  28. //TODO implement real nonce generator - DUMMY function
  29. UA_Int32 UA_SecureChannel_generateNonce(UA_ByteString *nonce) {
  30. if(!(nonce->data = UA_alloc(1)))
  31. return UA_STATUSCODE_BADOUTOFMEMORY;
  32. nonce->length = 1;
  33. nonce->data[0] = 'a';
  34. return UA_SUCCESS;
  35. }
  36. UA_Int32 UA_SecureChannel_updateRequestId(UA_SecureChannel *channel, UA_UInt32 requestId) {
  37. //TODO review checking of request id
  38. if(channel->requestId+1 == requestId) {
  39. channel->requestId++;
  40. return UA_SUCCESS;
  41. }
  42. return UA_ERROR;
  43. }
  44. UA_Int32 UA_SecureChannel_updateSequenceNumber(UA_SecureChannel *channel,
  45. UA_UInt32 sequenceNumber) {
  46. //TODO review checking of sequence
  47. if(channel->sequenceNumber+1 == sequenceNumber) {
  48. channel->sequenceNumber++;
  49. return UA_SUCCESS;
  50. }
  51. return UA_ERROR;
  52. }