ua_client.c 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711
  1. #include <ua_types_generated.h>
  2. #include "ua_client.h"
  3. #include "ua_nodeids.h"
  4. #include "ua_types.h"
  5. #include "ua_types_encoding_binary.h"
  6. #include "ua_transport_generated.h"
  7. struct UA_Client {
  8. /* Connection */
  9. UA_Connection connection;
  10. UA_String endpointUrl;
  11. UA_UInt32 sequenceNumber;
  12. UA_UInt32 requestId;
  13. /* Secure Channel */
  14. UA_ChannelSecurityToken securityToken;
  15. UA_ByteString clientNonce;
  16. UA_ByteString serverNonce;
  17. /* UA_SequenceHeader sequenceHdr; */
  18. /* UA_NodeId authenticationToken; */
  19. /* IdentityToken */
  20. UA_UserTokenPolicy token;
  21. /* Session */
  22. UA_NodeId sessionId;
  23. UA_NodeId authenticationToken;
  24. /* Config */
  25. UA_Logger logger;
  26. UA_ClientConfig config;
  27. UA_DateTime scExpiresAt;
  28. };
  29. const UA_EXPORT UA_ClientConfig UA_ClientConfig_standard =
  30. { 5 /* ms receive timout */, 30000, 2000,
  31. {.protocolVersion = 0, .sendBufferSize = 65536, .recvBufferSize = 65536,
  32. .maxMessageSize = 65536, .maxChunkCount = 1}};
  33. UA_Client * UA_Client_new(UA_ClientConfig config, UA_Logger logger) {
  34. UA_Client *client = UA_malloc(sizeof(UA_Client));
  35. if(!client)
  36. return UA_NULL;
  37. client->config = config;
  38. client->logger = logger;
  39. UA_String_init(&client->endpointUrl);
  40. UA_Connection_init(&client->connection);
  41. client->sequenceNumber = 0;
  42. client->requestId = 0;
  43. client->scExpiresAt = 0;
  44. /* Secure Channel */
  45. UA_ChannelSecurityToken_deleteMembers(&client->securityToken);
  46. UA_ByteString_init(&client->clientNonce);
  47. UA_ByteString_init(&client->serverNonce);
  48. UA_NodeId_init(&client->authenticationToken);
  49. return client;
  50. }
  51. void UA_Client_delete(UA_Client* client){
  52. UA_Connection_deleteMembers(&client->connection);
  53. UA_Connection_deleteMembers(&client->connection);
  54. UA_String_deleteMembers(&client->endpointUrl);
  55. /* Secure Channel */
  56. UA_ByteString_deleteMembers(&client->clientNonce);
  57. UA_ByteString_deleteMembers(&client->serverNonce);
  58. UA_UserTokenPolicy_deleteMembers(&client->token);
  59. free(client);
  60. }
  61. static UA_StatusCode HelAckHandshake(UA_Client *c) {
  62. UA_TcpMessageHeader messageHeader;
  63. messageHeader.messageTypeAndFinal = UA_MESSAGETYPEANDFINAL_HELF;
  64. UA_TcpHelloMessage hello;
  65. UA_String_copy(&c->endpointUrl, &hello.endpointUrl);
  66. UA_Connection *conn = &c->connection;
  67. hello.maxChunkCount = conn->localConf.maxChunkCount;
  68. hello.maxMessageSize = conn->localConf.maxMessageSize;
  69. hello.protocolVersion = conn->localConf.protocolVersion;
  70. hello.receiveBufferSize = conn->localConf.recvBufferSize;
  71. hello.sendBufferSize = conn->localConf.sendBufferSize;
  72. messageHeader.messageSize = UA_TcpHelloMessage_calcSizeBinary((UA_TcpHelloMessage const*)&hello) +
  73. UA_TcpMessageHeader_calcSizeBinary((UA_TcpMessageHeader const*)&messageHeader);
  74. UA_ByteString message;
  75. UA_StatusCode retval = c->connection.getBuffer(&c->connection, &message, messageHeader.messageSize);
  76. if(retval != UA_STATUSCODE_GOOD)
  77. return retval;
  78. size_t offset = 0;
  79. UA_TcpMessageHeader_encodeBinary(&messageHeader, &message, &offset);
  80. UA_TcpHelloMessage_encodeBinary(&hello, &message, &offset);
  81. UA_TcpHelloMessage_deleteMembers(&hello);
  82. retval = c->connection.write(&c->connection, &message);
  83. c->connection.releaseBuffer(&c->connection, &message);
  84. if(retval)
  85. return retval;
  86. UA_ByteString reply;
  87. UA_ByteString_init(&reply);
  88. do {
  89. retval = c->connection.recv(&c->connection, &reply, c->config.timeout);
  90. if(retval == UA_STATUSCODE_BADCONNECTIONCLOSED)
  91. return retval;
  92. } while(retval != UA_STATUSCODE_GOOD);
  93. offset = 0;
  94. UA_TcpMessageHeader_decodeBinary(&reply, &offset, &messageHeader);
  95. UA_TcpAcknowledgeMessage ackMessage;
  96. retval = UA_TcpAcknowledgeMessage_decodeBinary(&reply, &offset, &ackMessage);
  97. c->connection.releaseBuffer(&c->connection, &reply);
  98. if(retval != UA_STATUSCODE_GOOD)
  99. return retval;
  100. conn->remoteConf.maxChunkCount = ackMessage.maxChunkCount;
  101. conn->remoteConf.maxMessageSize = ackMessage.maxMessageSize;
  102. conn->remoteConf.protocolVersion = ackMessage.protocolVersion;
  103. conn->remoteConf.recvBufferSize = ackMessage.receiveBufferSize;
  104. conn->remoteConf.sendBufferSize = ackMessage.sendBufferSize;
  105. conn->state = UA_CONNECTION_ESTABLISHED;
  106. return UA_STATUSCODE_GOOD;
  107. }
  108. static UA_StatusCode SecureChannelHandshake(UA_Client *client, UA_Boolean renew) {
  109. UA_ByteString_deleteMembers(&client->clientNonce); // if the handshake is repeated
  110. UA_ByteString_newMembers(&client->clientNonce, 1);
  111. client->clientNonce.data[0] = 0;
  112. UA_SecureConversationMessageHeader messageHeader;
  113. messageHeader.messageHeader.messageTypeAndFinal = UA_MESSAGETYPEANDFINAL_OPNF;
  114. messageHeader.secureChannelId = 0;
  115. UA_SequenceHeader seqHeader;
  116. seqHeader.sequenceNumber = ++client->sequenceNumber;
  117. seqHeader.requestId = ++client->requestId;
  118. UA_AsymmetricAlgorithmSecurityHeader asymHeader;
  119. UA_AsymmetricAlgorithmSecurityHeader_init(&asymHeader);
  120. asymHeader.securityPolicyUri = UA_STRING_ALLOC("http://opcfoundation.org/UA/SecurityPolicy#None");
  121. /* id of opensecurechannelrequest */
  122. UA_NodeId requestType = UA_NODEID_NUMERIC(0, UA_NS0ID_OPENSECURECHANNELREQUEST + UA_ENCODINGOFFSET_BINARY);
  123. UA_OpenSecureChannelRequest opnSecRq;
  124. UA_OpenSecureChannelRequest_init(&opnSecRq);
  125. opnSecRq.requestHeader.timestamp = UA_DateTime_now();
  126. opnSecRq.requestHeader.authenticationToken = client->authenticationToken;
  127. opnSecRq.requestedLifetime = client->config.secureChannelLifeTime;
  128. if(renew) {
  129. opnSecRq.requestType = UA_SECURITYTOKENREQUESTTYPE_RENEW;
  130. } else {
  131. opnSecRq.requestType = UA_SECURITYTOKENREQUESTTYPE_ISSUE;
  132. UA_ByteString_copy(&client->clientNonce, &opnSecRq.clientNonce);
  133. opnSecRq.securityMode = UA_MESSAGESECURITYMODE_NONE;
  134. }
  135. messageHeader.messageHeader.messageSize =
  136. UA_SecureConversationMessageHeader_calcSizeBinary(&messageHeader) +
  137. UA_AsymmetricAlgorithmSecurityHeader_calcSizeBinary(&asymHeader) +
  138. UA_SequenceHeader_calcSizeBinary(&seqHeader) +
  139. UA_NodeId_calcSizeBinary(&requestType) +
  140. UA_OpenSecureChannelRequest_calcSizeBinary(&opnSecRq);
  141. UA_ByteString message;
  142. UA_StatusCode retval = client->connection.getBuffer(&client->connection, &message,
  143. messageHeader.messageHeader.messageSize);
  144. if(retval != UA_STATUSCODE_GOOD) {
  145. UA_AsymmetricAlgorithmSecurityHeader_deleteMembers(&asymHeader);
  146. UA_OpenSecureChannelRequest_deleteMembers(&opnSecRq);
  147. return retval;
  148. }
  149. size_t offset = 0;
  150. UA_SecureConversationMessageHeader_encodeBinary(&messageHeader, &message, &offset);
  151. UA_AsymmetricAlgorithmSecurityHeader_encodeBinary(&asymHeader, &message, &offset);
  152. UA_SequenceHeader_encodeBinary(&seqHeader, &message, &offset);
  153. UA_NodeId_encodeBinary(&requestType, &message, &offset);
  154. UA_OpenSecureChannelRequest_encodeBinary(&opnSecRq, &message, &offset);
  155. UA_AsymmetricAlgorithmSecurityHeader_deleteMembers(&asymHeader);
  156. UA_OpenSecureChannelRequest_deleteMembers(&opnSecRq);
  157. retval = client->connection.write(&client->connection, &message);
  158. client->connection.releaseBuffer(&client->connection, &message);
  159. if(retval)
  160. return retval;
  161. // parse the response
  162. UA_ByteString reply;
  163. UA_ByteString_init(&reply);
  164. do {
  165. retval = client->connection.recv(&client->connection, &reply, client->config.timeout);
  166. if(retval == UA_STATUSCODE_BADCONNECTIONCLOSED)
  167. return retval;
  168. } while(retval != UA_STATUSCODE_GOOD);
  169. offset = 0;
  170. UA_SecureConversationMessageHeader_decodeBinary(&reply, &offset, &messageHeader);
  171. UA_AsymmetricAlgorithmSecurityHeader_decodeBinary(&reply, &offset, &asymHeader);
  172. UA_SequenceHeader_decodeBinary(&reply, &offset, &seqHeader);
  173. UA_NodeId_decodeBinary(&reply, &offset, &requestType);
  174. UA_NodeId expectedRequest = UA_NODEID_NUMERIC(0, UA_NS0ID_OPENSECURECHANNELRESPONSE +
  175. UA_ENCODINGOFFSET_BINARY);
  176. if(!UA_NodeId_equal(&requestType, &expectedRequest)) {
  177. client->connection.releaseBuffer(&client->connection, &reply);
  178. UA_AsymmetricAlgorithmSecurityHeader_deleteMembers(&asymHeader);
  179. UA_NodeId_deleteMembers(&requestType);
  180. return UA_STATUSCODE_BADINTERNALERROR;
  181. }
  182. UA_OpenSecureChannelResponse response;
  183. UA_OpenSecureChannelResponse_decodeBinary(&reply, &offset, &response);
  184. client->scExpiresAt = UA_DateTime_now() + response.securityToken.revisedLifetime * 10000;
  185. client->connection.releaseBuffer(&client->connection, &reply);
  186. retval = response.responseHeader.serviceResult;
  187. if(!renew && retval == UA_STATUSCODE_GOOD) {
  188. UA_ChannelSecurityToken_copy(&response.securityToken, &client->securityToken);
  189. UA_ByteString_deleteMembers(&client->serverNonce); // if the handshake is repeated
  190. UA_ByteString_copy(&response.serverNonce, &client->serverNonce);
  191. }
  192. UA_OpenSecureChannelResponse_deleteMembers(&response);
  193. UA_AsymmetricAlgorithmSecurityHeader_deleteMembers(&asymHeader);
  194. return retval;
  195. }
  196. /** If the request fails, then the response is cast to UA_ResponseHeader (at the beginning of every
  197. response) and filled with the appropriate error code */
  198. static void sendReceiveRequest(UA_RequestHeader *request, const UA_DataType *requestType,
  199. void *response, const UA_DataType *responseType, UA_Client *client,
  200. UA_Boolean sendOnly) {
  201. //check if sc needs to be renewed
  202. if(client->scExpiresAt-UA_DateTime_now() <= client->config.timeToRenewSecureChannel * 10000){ //less than 3 seconds left to expire -> renew
  203. UA_Client_renewSecureChannel(client);
  204. }
  205. if(response)
  206. UA_init(response, responseType);
  207. else
  208. return;
  209. UA_NodeId_copy(&client->authenticationToken, &request->authenticationToken);
  210. UA_SecureConversationMessageHeader msgHeader;
  211. if(sendOnly)
  212. msgHeader.messageHeader.messageTypeAndFinal = UA_MESSAGETYPEANDFINAL_CLOF;
  213. else
  214. msgHeader.messageHeader.messageTypeAndFinal = UA_MESSAGETYPEANDFINAL_MSGF;
  215. msgHeader.secureChannelId = client->securityToken.channelId;
  216. UA_SymmetricAlgorithmSecurityHeader symHeader;
  217. symHeader.tokenId = client->securityToken.tokenId;
  218. UA_SequenceHeader seqHeader;
  219. seqHeader.sequenceNumber = ++client->sequenceNumber;
  220. seqHeader.requestId = ++client->requestId;
  221. UA_NodeId requestId = UA_NODEID_NUMERIC(0, requestType->typeId.identifier.numeric +
  222. UA_ENCODINGOFFSET_BINARY);
  223. msgHeader.messageHeader.messageSize =
  224. UA_SecureConversationMessageHeader_calcSizeBinary(&msgHeader) +
  225. UA_SymmetricAlgorithmSecurityHeader_calcSizeBinary(&symHeader) +
  226. UA_SequenceHeader_calcSizeBinary(&seqHeader) +
  227. UA_NodeId_calcSizeBinary(&requestId) +
  228. UA_calcSizeBinary(request, requestType);
  229. UA_ByteString message;
  230. UA_StatusCode retval = client->connection.getBuffer(&client->connection, &message, msgHeader.messageHeader.messageSize);
  231. if(retval != UA_STATUSCODE_GOOD) {
  232. // todo: print error message
  233. return;
  234. }
  235. size_t offset = 0;
  236. retval |= UA_SecureConversationMessageHeader_encodeBinary(&msgHeader, &message, &offset);
  237. retval |= UA_SymmetricAlgorithmSecurityHeader_encodeBinary(&symHeader, &message, &offset);
  238. retval |= UA_SequenceHeader_encodeBinary(&seqHeader, &message, &offset);
  239. retval |= UA_NodeId_encodeBinary(&requestId, &message, &offset);
  240. retval |= UA_encodeBinary(request, requestType, &message, &offset);
  241. retval |= client->connection.write(&client->connection, &message);
  242. UA_ResponseHeader *respHeader = (UA_ResponseHeader*)response;
  243. client->connection.releaseBuffer(&client->connection, &message);
  244. if(retval != UA_STATUSCODE_GOOD) {
  245. //send failed
  246. respHeader->serviceResult = retval;
  247. return;
  248. }
  249. //TODO: rework to get return value
  250. if(sendOnly)
  251. return;
  252. /* Response */
  253. UA_ByteString reply;
  254. UA_ByteString_init(&reply);
  255. do {
  256. retval = client->connection.recv(&client->connection, &reply, client->config.timeout);
  257. if(retval == UA_STATUSCODE_BADCONNECTIONCLOSED) {
  258. respHeader->serviceResult = retval;
  259. return;
  260. }
  261. } while(retval != UA_STATUSCODE_GOOD);
  262. offset = 0;
  263. retval |= UA_SecureConversationMessageHeader_decodeBinary(&reply, &offset, &msgHeader);
  264. retval |= UA_SymmetricAlgorithmSecurityHeader_decodeBinary(&reply, &offset, &symHeader);
  265. retval |= UA_SequenceHeader_decodeBinary(&reply, &offset, &seqHeader);
  266. UA_NodeId responseId;
  267. retval |= UA_NodeId_decodeBinary(&reply, &offset, &responseId);
  268. UA_NodeId expectedNodeId = UA_NODEID_NUMERIC(0, responseType->typeId.identifier.numeric +
  269. UA_ENCODINGOFFSET_BINARY);
  270. if(!UA_NodeId_equal(&responseId, &expectedNodeId)) {
  271. client->connection.releaseBuffer(&client->connection, &reply);
  272. UA_SymmetricAlgorithmSecurityHeader_deleteMembers(&symHeader);
  273. respHeader->serviceResult = retval;
  274. return;
  275. }
  276. retval = UA_decodeBinary(&reply, &offset, response, responseType);
  277. client->connection.releaseBuffer(&client->connection, &reply);
  278. if(retval != UA_STATUSCODE_GOOD)
  279. respHeader->serviceResult = retval;
  280. }
  281. static void synchronousRequest(void *request, const UA_DataType *requestType, void *response,
  282. const UA_DataType *responseType, UA_Client *client) {
  283. sendReceiveRequest(request, requestType, response, responseType, client, UA_FALSE);
  284. }
  285. static UA_StatusCode ActivateSession(UA_Client *client) {
  286. UA_ActivateSessionRequest request;
  287. UA_ActivateSessionRequest_init(&request);
  288. request.requestHeader.requestHandle = 2; //TODO: is it a magic number?
  289. request.requestHeader.authenticationToken = client->authenticationToken;
  290. request.requestHeader.timestamp = UA_DateTime_now();
  291. request.requestHeader.timeoutHint = 10000;
  292. UA_AnonymousIdentityToken identityToken;
  293. UA_AnonymousIdentityToken_init(&identityToken);
  294. UA_String_copy(&client->token.policyId, &identityToken.policyId);
  295. //manual ExtensionObject encoding of the identityToken
  296. request.userIdentityToken.encoding = UA_EXTENSIONOBJECT_ENCODINGMASK_BODYISBYTESTRING;
  297. request.userIdentityToken.typeId = UA_TYPES[UA_TYPES_ANONYMOUSIDENTITYTOKEN].typeId;
  298. request.userIdentityToken.typeId.identifier.numeric+=UA_ENCODINGOFFSET_BINARY;
  299. UA_ByteString_newMembers(&request.userIdentityToken.body, identityToken.policyId.length+4);
  300. size_t offset = 0;
  301. UA_ByteString_encodeBinary(&identityToken.policyId,&request.userIdentityToken.body,&offset);
  302. UA_ActivateSessionResponse response;
  303. synchronousRequest(&request, &UA_TYPES[UA_TYPES_ACTIVATESESSIONREQUEST],
  304. &response, &UA_TYPES[UA_TYPES_ACTIVATESESSIONRESPONSE],
  305. client);
  306. UA_AnonymousIdentityToken_deleteMembers(&identityToken);
  307. UA_ActivateSessionRequest_deleteMembers(&request);
  308. UA_ActivateSessionResponse_deleteMembers(&response);
  309. return response.responseHeader.serviceResult; // not deleted
  310. }
  311. static UA_StatusCode EndpointsHandshake(UA_Client *client) {
  312. UA_GetEndpointsRequest request;
  313. UA_GetEndpointsRequest_init(&request);
  314. // todo: is this needed for all requests?
  315. UA_NodeId_copy(&client->authenticationToken, &request.requestHeader.authenticationToken);
  316. request.requestHeader.timestamp = UA_DateTime_now();
  317. request.requestHeader.timeoutHint = 10000;
  318. UA_String_copy(&client->endpointUrl, &request.endpointUrl);
  319. request.profileUrisSize = 1;
  320. request.profileUris = UA_Array_new(&UA_TYPES[UA_TYPES_STRING], request.profileUrisSize);
  321. request.profileUris[0] = UA_STRING_ALLOC("http://opcfoundation.org/UA-Profile/Transport/uatcp-uasc-uabinary");
  322. UA_GetEndpointsResponse response;
  323. UA_GetEndpointsResponse_init(&response);
  324. synchronousRequest(&request, &UA_TYPES[UA_TYPES_GETENDPOINTSREQUEST],
  325. &response, &UA_TYPES[UA_TYPES_GETENDPOINTSRESPONSE],
  326. client);
  327. UA_Boolean endpointFound = UA_FALSE;
  328. UA_Boolean tokenFound = UA_FALSE;
  329. for(UA_Int32 i=0; i<response.endpointsSize; ++i){
  330. UA_EndpointDescription* endpoint = &response.endpoints[i];
  331. /* look out for an endpoint without security */
  332. if(UA_String_equal(&endpoint->securityPolicyUri, &UA_STRING("http://opcfoundation.org/UA/SecurityPolicy#None"))){
  333. endpointFound = UA_TRUE;
  334. /* endpoint with no security found */
  335. /* look for a user token policy with an anonymous token */
  336. for(UA_Int32 j=0; j<endpoint->userIdentityTokensSize; ++j){
  337. UA_UserTokenPolicy* userToken = &endpoint->userIdentityTokens[j];
  338. if(userToken->tokenType == UA_USERTOKENTYPE_ANONYMOUS){
  339. tokenFound = UA_TRUE;
  340. UA_UserTokenPolicy_copy(userToken, &client->token);
  341. break;
  342. }
  343. }
  344. }
  345. }
  346. UA_GetEndpointsRequest_deleteMembers(&request);
  347. UA_GetEndpointsResponse_deleteMembers(&response);
  348. if(!endpointFound){
  349. printf("No suitable endpoint found\n");
  350. return UA_STATUSCODE_BADINTERNALERROR;
  351. }
  352. if(!tokenFound){
  353. printf("No anonymous token found\n");
  354. return UA_STATUSCODE_BADINTERNALERROR;
  355. }
  356. return response.responseHeader.serviceResult; // not deleted
  357. }
  358. static UA_StatusCode SessionHandshake(UA_Client *client) {
  359. UA_CreateSessionRequest request;
  360. UA_CreateSessionRequest_init(&request);
  361. // todo: is this needed for all requests?
  362. UA_NodeId_copy(&client->authenticationToken, &request.requestHeader.authenticationToken);
  363. request.requestHeader.timestamp = UA_DateTime_now();
  364. request.requestHeader.timeoutHint = 10000;
  365. UA_ByteString_copy(&client->clientNonce, &request.clientNonce);
  366. request.requestedSessionTimeout = 1200000;
  367. request.maxResponseMessageSize = UA_INT32_MAX;
  368. /* UA_String_copy(endpointUrl, &rq.endpointUrl); */
  369. /* UA_String_copycstring("mysession", &rq.sessionName); */
  370. /* UA_String_copycstring("abcd", &rq.clientCertificate); */
  371. UA_CreateSessionResponse response;
  372. UA_CreateSessionResponse_init(&response);
  373. synchronousRequest(&request, &UA_TYPES[UA_TYPES_CREATESESSIONREQUEST],
  374. &response, &UA_TYPES[UA_TYPES_CREATESESSIONRESPONSE],
  375. client);
  376. UA_NodeId_copy(&response.authenticationToken, &client->authenticationToken);
  377. UA_CreateSessionRequest_deleteMembers(&request);
  378. UA_CreateSessionResponse_deleteMembers(&response);
  379. return response.responseHeader.serviceResult; // not deleted
  380. }
  381. static UA_StatusCode CloseSession(UA_Client *client) {
  382. UA_CloseSessionRequest request;
  383. UA_CloseSessionRequest_init(&request);
  384. request.requestHeader.timestamp = UA_DateTime_now();
  385. request.requestHeader.timeoutHint = 10000;
  386. request.deleteSubscriptions = UA_TRUE;
  387. UA_NodeId_copy(&client->authenticationToken, &request.requestHeader.authenticationToken);
  388. UA_CreateSessionResponse response;
  389. synchronousRequest(&request, &UA_TYPES[UA_TYPES_CLOSESESSIONREQUEST],
  390. &response, &UA_TYPES[UA_TYPES_CLOSESESSIONRESPONSE],
  391. client);
  392. UA_CloseSessionRequest_deleteMembers(&request);
  393. UA_CloseSessionResponse_deleteMembers(&response);
  394. return response.responseHeader.serviceResult; // not deleted
  395. }
  396. static UA_StatusCode CloseSecureChannel(UA_Client *client) {
  397. UA_CloseSecureChannelRequest request;
  398. UA_CloseSecureChannelRequest_init(&request);
  399. request.requestHeader.requestHandle = 1; //TODO: magic number?
  400. request.requestHeader.timestamp = UA_DateTime_now();
  401. request.requestHeader.timeoutHint = 10000;
  402. request.requestHeader.authenticationToken = client->authenticationToken;
  403. sendReceiveRequest(&request.requestHeader, &UA_TYPES[UA_TYPES_CLOSESECURECHANNELREQUEST], UA_NULL, UA_NULL,
  404. client, UA_TRUE);
  405. return UA_STATUSCODE_GOOD;
  406. }
  407. /*************************/
  408. /* User-Facing Functions */
  409. /*************************/
  410. UA_StatusCode UA_Client_connect(UA_Client *client, UA_ConnectClientConnection connectFunc, char *endpointUrl) {
  411. client->connection = connectFunc(endpointUrl, &client->logger);
  412. if(client->connection.state != UA_CONNECTION_OPENING)
  413. return UA_STATUSCODE_BADCONNECTIONCLOSED;
  414. client->endpointUrl = UA_STRING_ALLOC(endpointUrl);
  415. if(client->endpointUrl.length < 0)
  416. return UA_STATUSCODE_BADOUTOFMEMORY;
  417. client->connection.localConf = client->config.localConnectionConfig;
  418. UA_StatusCode retval = HelAckHandshake(client);
  419. if(retval == UA_STATUSCODE_GOOD)
  420. retval = SecureChannelHandshake(client, UA_FALSE);
  421. if(retval == UA_STATUSCODE_GOOD)
  422. retval = EndpointsHandshake(client);
  423. if(retval == UA_STATUSCODE_GOOD)
  424. retval = SessionHandshake(client);
  425. if(retval == UA_STATUSCODE_GOOD)
  426. retval = ActivateSession(client);
  427. return retval;
  428. }
  429. UA_StatusCode UA_Client_disconnect(UA_Client *client) {
  430. UA_StatusCode retval;
  431. retval = CloseSession(client);
  432. if(retval == UA_STATUSCODE_GOOD)
  433. retval = CloseSecureChannel(client);
  434. return retval;
  435. }
  436. UA_StatusCode UA_Client_renewSecureChannel(UA_Client *client) {
  437. return SecureChannelHandshake(client, UA_TRUE);
  438. }
  439. UA_ReadResponse UA_Client_read(UA_Client *client, UA_ReadRequest *request) {
  440. UA_ReadResponse response;
  441. synchronousRequest(request, &UA_TYPES[UA_TYPES_READREQUEST], &response,
  442. &UA_TYPES[UA_TYPES_READRESPONSE], client);
  443. return response;
  444. }
  445. UA_WriteResponse UA_Client_write(UA_Client *client, UA_WriteRequest *request) {
  446. UA_WriteResponse response;
  447. synchronousRequest(request, &UA_TYPES[UA_TYPES_WRITEREQUEST], &response,
  448. &UA_TYPES[UA_TYPES_WRITERESPONSE], client);
  449. return response;
  450. }
  451. UA_BrowseResponse UA_Client_browse(UA_Client *client, UA_BrowseRequest *request) {
  452. UA_BrowseResponse response;
  453. synchronousRequest(request, &UA_TYPES[UA_TYPES_BROWSEREQUEST], &response,
  454. &UA_TYPES[UA_TYPES_BROWSERESPONSE], client);
  455. return response;
  456. }
  457. UA_BrowseNextResponse UA_Client_browseNext(UA_Client *client, UA_BrowseNextRequest *request) {
  458. UA_BrowseNextResponse response;
  459. synchronousRequest(request, &UA_TYPES[UA_TYPES_BROWSENEXTREQUEST], &response,
  460. &UA_TYPES[UA_TYPES_BROWSENEXTRESPONSE], client);
  461. return response;
  462. }
  463. UA_TranslateBrowsePathsToNodeIdsResponse
  464. UA_Client_translateTranslateBrowsePathsToNodeIds(UA_Client *client,
  465. UA_TranslateBrowsePathsToNodeIdsRequest *request) {
  466. UA_TranslateBrowsePathsToNodeIdsResponse response;
  467. synchronousRequest(request, &UA_TYPES[UA_TYPES_BROWSEREQUEST], &response,
  468. &UA_TYPES[UA_TYPES_BROWSERESPONSE], client);
  469. return response;
  470. }
  471. UA_AddNodesResponse UA_Client_addNodes(UA_Client *client, UA_AddNodesRequest *request) {
  472. UA_AddNodesResponse response;
  473. synchronousRequest(request, &UA_TYPES[UA_TYPES_ADDNODESREQUEST], &response,
  474. &UA_TYPES[UA_TYPES_ADDNODESRESPONSE], client);
  475. return response;
  476. }
  477. UA_AddReferencesResponse UA_Client_addReferences(UA_Client *client, UA_AddReferencesRequest *request) {
  478. UA_AddReferencesResponse response;
  479. synchronousRequest(request, &UA_TYPES[UA_TYPES_ADDREFERENCESREQUEST], &response,
  480. &UA_TYPES[UA_TYPES_ADDREFERENCESRESPONSE], client);
  481. return response;
  482. }
  483. UA_DeleteNodesResponse UA_Client_deleteNodes(UA_Client *client, UA_DeleteNodesRequest *request) {
  484. UA_DeleteNodesResponse response;
  485. synchronousRequest(request, &UA_TYPES[UA_TYPES_DELETENODESREQUEST], &response,
  486. &UA_TYPES[UA_TYPES_DELETENODESRESPONSE], client);
  487. return response;
  488. }
  489. UA_DeleteReferencesResponse UA_Client_deleteReferences(UA_Client *client, UA_DeleteReferencesRequest *request) {
  490. UA_DeleteReferencesResponse response;
  491. synchronousRequest(request, &UA_TYPES[UA_TYPES_DELETEREFERENCESREQUEST], &response,
  492. &UA_TYPES[UA_TYPES_DELETEREFERENCESRESPONSE], client);
  493. return response;;
  494. }
  495. /**********************************/
  496. /* User-Facing Macros-Function */
  497. /**********************************/
  498. #define ADDNODES_COPYDEFAULTATTRIBUTES(REQUEST,ATTRIBUTES) do { \
  499. ATTRIBUTES.specifiedAttributes = 0; \
  500. if(! UA_LocalizedText_copy(&description, &(ATTRIBUTES.description))) \
  501. ATTRIBUTES.specifiedAttributes |= UA_NODEATTRIBUTESMASK_DESCRIPTION; \
  502. if(! UA_LocalizedText_copy(&displayName, &(ATTRIBUTES.displayName))) \
  503. ATTRIBUTES.specifiedAttributes |= UA_NODEATTRIBUTESMASK_DISPLAYNAME; \
  504. ATTRIBUTES.userWriteMask = userWriteMask; \
  505. ATTRIBUTES.specifiedAttributes |= UA_NODEATTRIBUTESMASK_USERWRITEMASK; \
  506. ATTRIBUTES.writeMask = writeMask; \
  507. ATTRIBUTES.specifiedAttributes |= UA_NODEATTRIBUTESMASK_WRITEMASK; \
  508. UA_QualifiedName_copy(&browseName, &(REQUEST.nodesToAdd[0].browseName)); \
  509. UA_ExpandedNodeId_copy(&parentNodeId, &(REQUEST.nodesToAdd[0].parentNodeId)); \
  510. UA_NodeId_copy(&referenceTypeId, &(REQUEST.nodesToAdd[0].referenceTypeId)); \
  511. UA_ExpandedNodeId_copy(&typeDefinition, &(REQUEST.nodesToAdd[0].typeDefinition)); \
  512. REQUEST.nodesToAddSize = 1; \
  513. REQUEST.nodesToAdd[0].requestedNewNodeId = UA_EXPANDEDNODEID_NUMERIC(1, 0); \
  514. } while(0)
  515. #define ADDNODES_PACK_AND_SEND(PREQUEST,PATTRIBUTES,PNODETYPE) do { \
  516. PREQUEST.nodesToAdd[0].nodeAttributes.encoding = UA_EXTENSIONOBJECT_ENCODINGMASK_BODYISBYTESTRING; \
  517. PREQUEST.nodesToAdd[0].nodeAttributes.typeId = UA_NODEID_NUMERIC(0, UA_NS0ID_##PNODETYPE##ATTRIBUTES + UA_ENCODINGOFFSET_BINARY); \
  518. PREQUEST.nodesToAdd[0].nodeAttributes.body.length = UA_calcSizeBinary(&PATTRIBUTES, &UA_TYPES[UA_TYPES_##PNODETYPE##ATTRIBUTES]); \
  519. PREQUEST.nodesToAdd[0].nodeAttributes.body.data = (void *) malloc(PREQUEST.nodesToAdd[0].nodeAttributes.body.length); \
  520. size_t encOffset = 0; \
  521. UA_encodeBinary(&PATTRIBUTES,&UA_TYPES[UA_TYPES_##PNODETYPE##ATTRIBUTES], &(PREQUEST.nodesToAdd[0].nodeAttributes.body), &encOffset); \
  522. *(adRes) = UA_Client_addNodes(client, &PREQUEST); \
  523. UA_AddNodesRequest_deleteMembers(&PREQUEST); \
  524. } while(0)
  525. /* NodeManagement */
  526. UA_AddNodesResponse *UA_Client_createObjectNode(UA_Client *client, UA_QualifiedName browseName, UA_LocalizedText displayName,
  527. UA_LocalizedText description, UA_ExpandedNodeId parentNodeId, UA_NodeId referenceTypeId,
  528. UA_UInt32 userWriteMask, UA_UInt32 writeMask, UA_ExpandedNodeId typeDefinition ) {
  529. UA_AddNodesRequest adReq;
  530. UA_AddNodesRequest_init(&adReq);
  531. UA_AddNodesResponse *adRes;
  532. adRes = UA_AddNodesResponse_new();
  533. UA_AddNodesResponse_init(adRes);
  534. UA_ObjectAttributes vAtt;
  535. UA_ObjectAttributes_init(&vAtt);
  536. adReq.nodesToAdd = (UA_AddNodesItem *) UA_AddNodesItem_new();
  537. UA_AddNodesItem_init(adReq.nodesToAdd);
  538. // Default node properties and attributes
  539. ADDNODES_COPYDEFAULTATTRIBUTES(adReq, vAtt);
  540. // Specific to objects
  541. adReq.nodesToAdd[0].nodeClass = UA_NODECLASS_OBJECT;
  542. vAtt.eventNotifier = 0;
  543. vAtt.specifiedAttributes |= UA_NODEATTRIBUTESMASK_EVENTNOTIFIER;
  544. ADDNODES_PACK_AND_SEND(adReq,vAtt,OBJECT);
  545. return adRes;
  546. }
  547. UA_AddNodesResponse *UA_Client_createVariableNode(UA_Client *client, UA_QualifiedName browseName, UA_LocalizedText displayName,
  548. UA_LocalizedText description, UA_ExpandedNodeId parentNodeId, UA_NodeId referenceTypeId,
  549. UA_UInt32 userWriteMask, UA_UInt32 writeMask, UA_ExpandedNodeId typeDefinition,
  550. UA_NodeId dataType, UA_Variant *value ) {
  551. UA_AddNodesRequest adReq;
  552. UA_AddNodesRequest_init(&adReq);
  553. UA_AddNodesResponse *adRes;
  554. adRes = UA_AddNodesResponse_new();
  555. UA_AddNodesResponse_init(adRes);
  556. UA_VariableAttributes vAtt;
  557. UA_VariableAttributes_init(&vAtt);
  558. adReq.nodesToAdd = (UA_AddNodesItem *) UA_AddNodesItem_new();
  559. UA_AddNodesItem_init(adReq.nodesToAdd);
  560. // Default node properties and attributes
  561. ADDNODES_COPYDEFAULTATTRIBUTES(adReq, vAtt);
  562. // Specific to objects
  563. adReq.nodesToAdd[0].nodeClass = UA_NODECLASS_VARIABLE;
  564. vAtt.accessLevel = 0;
  565. vAtt.specifiedAttributes |= UA_NODEATTRIBUTESMASK_ACCESSLEVEL;
  566. vAtt.userAccessLevel = 0;
  567. vAtt.specifiedAttributes |= UA_NODEATTRIBUTESMASK_USERACCESSLEVEL;
  568. vAtt.minimumSamplingInterval = 100;
  569. vAtt.specifiedAttributes |= UA_NODEATTRIBUTESMASK_MINIMUMSAMPLINGINTERVAL;
  570. vAtt.historizing = UA_FALSE;
  571. vAtt.specifiedAttributes |= UA_NODEATTRIBUTESMASK_HISTORIZING;
  572. if (value != NULL) {
  573. UA_Variant_copy(value, &(vAtt.value));
  574. vAtt.specifiedAttributes |= UA_NODEATTRIBUTESMASK_VALUE;
  575. vAtt.valueRank = -2;
  576. vAtt.specifiedAttributes |= UA_NODEATTRIBUTESMASK_VALUERANK;
  577. // These are defined by the variant
  578. //vAtt.arrayDimensionsSize = value->arrayDimensionsSize;
  579. //vAtt.arrayDimensions = NULL;
  580. }
  581. UA_NodeId_copy(&dataType, &(vAtt.dataType));
  582. ADDNODES_PACK_AND_SEND(adReq,vAtt,VARIABLE);
  583. return adRes;
  584. }