ua_session.c 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #include "ua_util.h"
  2. #include "ua_session.h"
  3. #include "ua_statuscodes.h"
  4. UA_Session anonymousSession = {
  5. .clientDescription = {.applicationUri = {-1, UA_NULL}, .productUri = {-1, UA_NULL},
  6. .applicationName = {.locale = {-1, UA_NULL}, .text = {-1, UA_NULL}},
  7. .applicationType = UA_APPLICATIONTYPE_CLIENT,
  8. .gatewayServerUri = {-1, UA_NULL}, .discoveryProfileUri = {-1, UA_NULL},
  9. .discoveryUrlsSize = -1, .discoveryUrls = UA_NULL},
  10. .sessionName = {sizeof("Anonymous Session")-1, (UA_Byte*)"Anonymous Session"},
  11. .authenticationToken = {.namespaceIndex = 0, .identifierType = UA_NODEIDTYPE_NUMERIC,
  12. .identifier.numeric = 0},
  13. .sessionId = {.namespaceIndex = 0, .identifierType = UA_NODEIDTYPE_NUMERIC, .identifier.numeric = 0},
  14. .maxRequestMessageSize = UA_UINT32_MAX, .maxResponseMessageSize = UA_UINT32_MAX,
  15. .timeout = UA_INT64_MAX, .validTill = UA_INT64_MAX, .channel = UA_NULL,
  16. .continuationPoints = {UA_NULL}};
  17. UA_Session adminSession = {
  18. .clientDescription = {.applicationUri = {-1, UA_NULL}, .productUri = {-1, UA_NULL},
  19. .applicationName = {.locale = {-1, UA_NULL}, .text = {-1, UA_NULL}},
  20. .applicationType = UA_APPLICATIONTYPE_CLIENT,
  21. .gatewayServerUri = {-1, UA_NULL}, .discoveryProfileUri = {-1, UA_NULL},
  22. .discoveryUrlsSize = -1, .discoveryUrls = UA_NULL},
  23. .sessionName = {sizeof("Administrator Session")-1, (UA_Byte*)"Administrator Session"},
  24. .authenticationToken = {.namespaceIndex = 0, .identifierType = UA_NODEIDTYPE_NUMERIC,
  25. .identifier.numeric = 1},
  26. .sessionId = {.namespaceIndex = 0, .identifierType = UA_NODEIDTYPE_NUMERIC, .identifier.numeric = 1},
  27. .maxRequestMessageSize = UA_UINT32_MAX, .maxResponseMessageSize = UA_UINT32_MAX,
  28. .timeout = UA_INT64_MAX, .validTill = UA_INT64_MAX, .channel = UA_NULL,
  29. .continuationPoints = {UA_NULL}};
  30. void UA_Session_init(UA_Session *session) {
  31. UA_ApplicationDescription_init(&session->clientDescription);
  32. session->activated = UA_FALSE;
  33. UA_NodeId_init(&session->authenticationToken);
  34. UA_NodeId_init(&session->sessionId);
  35. UA_String_init(&session->sessionName);
  36. session->maxRequestMessageSize = 0;
  37. session->maxResponseMessageSize = 0;
  38. session->timeout = 0;
  39. UA_DateTime_init(&session->validTill);
  40. session->channel = UA_NULL;
  41. session->availableContinuationPoints = MAXCONTINUATIONPOINTS;
  42. LIST_INIT(&session->continuationPoints);
  43. }
  44. void UA_Session_deleteMembersCleanup(UA_Session *session) {
  45. UA_ApplicationDescription_deleteMembers(&session->clientDescription);
  46. UA_NodeId_deleteMembers(&session->authenticationToken);
  47. UA_NodeId_deleteMembers(&session->sessionId);
  48. UA_String_deleteMembers(&session->sessionName);
  49. struct ContinuationPointEntry *cp;
  50. while((cp = LIST_FIRST(&session->continuationPoints))) {
  51. UA_ByteString_deleteMembers(&cp->identifier);
  52. UA_BrowseDescription_deleteMembers(&cp->browseDescription);
  53. LIST_REMOVE(cp, pointers);
  54. UA_free(cp);
  55. }
  56. if(session->channel)
  57. UA_SecureChannel_detachSession(session->channel, session);
  58. }
  59. void UA_Session_updateLifetime(UA_Session *session) {
  60. session->validTill = UA_DateTime_now() + session->timeout * 10000; //timeout in ms
  61. }