ua_securechannel.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. #ifndef UA_SECURECHANNEL_H_
  2. #define UA_SECURECHANNEL_H_
  3. #include "queue.h"
  4. #include "ua_types.h"
  5. #include "ua_transport_generated.h"
  6. #include "ua_connection.h"
  7. /**
  8. * @ingroup communication
  9. *
  10. * @{
  11. */
  12. struct UA_Session;
  13. typedef struct UA_Session UA_Session;
  14. struct SessionEntry {
  15. LIST_ENTRY(SessionEntry) pointers;
  16. UA_Session *session; // Just a pointer. The session is held in the session manager or the client
  17. };
  18. struct ChunkEntry {
  19. LIST_ENTRY(ChunkEntry) pointers;
  20. UA_UInt32 requestId;
  21. UA_Boolean invalid_message;
  22. UA_ByteString bytes;
  23. };
  24. struct UA_SecureChannel {
  25. UA_MessageSecurityMode securityMode;
  26. UA_ChannelSecurityToken securityToken; // the channelId is contained in the securityToken
  27. UA_ChannelSecurityToken nextSecurityToken; // the channelId is contained in the securityToken
  28. UA_AsymmetricAlgorithmSecurityHeader clientAsymAlgSettings;
  29. UA_AsymmetricAlgorithmSecurityHeader serverAsymAlgSettings;
  30. UA_ByteString clientNonce;
  31. UA_ByteString serverNonce;
  32. UA_UInt32 sequenceNumber;
  33. UA_Connection *connection;
  34. LIST_HEAD(session_pointerlist, SessionEntry) sessions;
  35. LIST_HEAD(chunk_pointerlist, ChunkEntry) chunks;
  36. };
  37. void UA_SecureChannel_init(UA_SecureChannel *channel);
  38. void UA_SecureChannel_deleteMembersCleanup(UA_SecureChannel *channel);
  39. UA_StatusCode UA_SecureChannel_generateNonce(UA_ByteString *nonce);
  40. void UA_SecureChannel_attachSession(UA_SecureChannel *channel, UA_Session *session);
  41. void UA_SecureChannel_detachSession(UA_SecureChannel *channel, UA_Session *session);
  42. UA_Session * UA_SecureChannel_getSession(UA_SecureChannel *channel, UA_NodeId *token);
  43. UA_StatusCode UA_SecureChannel_sendBinaryMessage(UA_SecureChannel *channel, UA_UInt32 requestId,
  44. const void *content, const UA_DataType *contentType);
  45. void UA_SecureChannel_revolveTokens(UA_SecureChannel *channel);
  46. /** @} */
  47. #endif /* UA_SECURECHANNEL_H_ */