ua_client.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579
  1. #include "ua_client.h"
  2. #include "ua_nodeids.h"
  3. #include "ua_types.h"
  4. #include "ua_types_encoding_binary.h"
  5. #include "ua_transport_generated.h"
  6. struct UA_Client {
  7. /* Connection */
  8. UA_Connection connection;
  9. UA_String endpointUrl;
  10. UA_UInt32 sequenceNumber;
  11. UA_UInt32 requestId;
  12. /* Secure Channel */
  13. UA_ChannelSecurityToken securityToken;
  14. UA_ByteString clientNonce;
  15. UA_ByteString serverNonce;
  16. /* UA_SequenceHeader sequenceHdr; */
  17. /* UA_NodeId authenticationToken; */
  18. /* IdentityToken */
  19. UA_UserTokenPolicy token;
  20. /* Session */
  21. UA_NodeId sessionId;
  22. UA_NodeId authenticationToken;
  23. /* Config */
  24. UA_Logger logger;
  25. UA_ClientConfig config;
  26. };
  27. const UA_ClientConfig UA_ClientConfig_standard =
  28. { 5 /* ms receive timout */, {.protocolVersion = 0, .sendBufferSize = 65536, .recvBufferSize = 65536,
  29. .maxMessageSize = 65536, .maxChunkCount = 1}};
  30. UA_Client * UA_Client_new(UA_ClientConfig config, UA_Logger logger) {
  31. UA_Client *client = UA_malloc(sizeof(UA_Client));
  32. if(!client)
  33. return UA_NULL;
  34. client->config = config;
  35. client->logger = logger;
  36. UA_String_init(&client->endpointUrl);
  37. UA_Connection_init(&client->connection);
  38. client->sequenceNumber = 0;
  39. client->requestId = 0;
  40. /* Secure Channel */
  41. UA_ChannelSecurityToken_deleteMembers(&client->securityToken);
  42. UA_ByteString_init(&client->clientNonce);
  43. UA_ByteString_init(&client->serverNonce);
  44. UA_NodeId_init(&client->authenticationToken);
  45. return client;
  46. }
  47. void UA_Client_delete(UA_Client* client){
  48. UA_Connection_deleteMembers(&client->connection);
  49. UA_Connection_deleteMembers(&client->connection);
  50. UA_String_deleteMembers(&client->endpointUrl);
  51. /* Secure Channel */
  52. UA_ByteString_deleteMembers(&client->clientNonce);
  53. UA_ByteString_deleteMembers(&client->serverNonce);
  54. UA_UserTokenPolicy_deleteMembers(&client->token);
  55. free(client);
  56. }
  57. static UA_StatusCode HelAckHandshake(UA_Client *c) {
  58. UA_TcpMessageHeader messageHeader;
  59. messageHeader.messageTypeAndFinal = UA_MESSAGETYPEANDFINAL_HELF;
  60. UA_TcpHelloMessage hello;
  61. UA_String_copy(&c->endpointUrl, &hello.endpointUrl);
  62. UA_Connection *conn = &c->connection;
  63. hello.maxChunkCount = conn->localConf.maxChunkCount;
  64. hello.maxMessageSize = conn->localConf.maxMessageSize;
  65. hello.protocolVersion = conn->localConf.protocolVersion;
  66. hello.receiveBufferSize = conn->localConf.recvBufferSize;
  67. hello.sendBufferSize = conn->localConf.sendBufferSize;
  68. messageHeader.messageSize = UA_TcpHelloMessage_calcSizeBinary((UA_TcpHelloMessage const*)&hello) +
  69. UA_TcpMessageHeader_calcSizeBinary((UA_TcpMessageHeader const*)&messageHeader);
  70. UA_ByteString message;
  71. UA_StatusCode retval = c->connection.getBuffer(&c->connection, &message, messageHeader.messageSize);
  72. if(retval != UA_STATUSCODE_GOOD)
  73. return retval;
  74. size_t offset = 0;
  75. UA_TcpMessageHeader_encodeBinary(&messageHeader, &message, &offset);
  76. UA_TcpHelloMessage_encodeBinary(&hello, &message, &offset);
  77. UA_TcpHelloMessage_deleteMembers(&hello);
  78. retval = c->connection.write(&c->connection, &message);
  79. c->connection.releaseBuffer(&c->connection, &message);
  80. if(retval)
  81. return retval;
  82. UA_ByteString reply;
  83. UA_ByteString_init(&reply);
  84. do {
  85. retval = c->connection.recv(&c->connection, &reply, c->config.timeout);
  86. if(retval == UA_STATUSCODE_BADCONNECTIONCLOSED)
  87. return retval;
  88. } while(retval != UA_STATUSCODE_GOOD);
  89. offset = 0;
  90. UA_TcpMessageHeader_decodeBinary(&reply, &offset, &messageHeader);
  91. UA_TcpAcknowledgeMessage ackMessage;
  92. retval = UA_TcpAcknowledgeMessage_decodeBinary(&reply, &offset, &ackMessage);
  93. c->connection.releaseBuffer(&c->connection, &reply);
  94. if(retval != UA_STATUSCODE_GOOD)
  95. return retval;
  96. conn->remoteConf.maxChunkCount = ackMessage.maxChunkCount;
  97. conn->remoteConf.maxMessageSize = ackMessage.maxMessageSize;
  98. conn->remoteConf.protocolVersion = ackMessage.protocolVersion;
  99. conn->remoteConf.recvBufferSize = ackMessage.receiveBufferSize;
  100. conn->remoteConf.sendBufferSize = ackMessage.sendBufferSize;
  101. conn->state = UA_CONNECTION_ESTABLISHED;
  102. return UA_STATUSCODE_GOOD;
  103. }
  104. static UA_StatusCode SecureChannelHandshake(UA_Client *client) {
  105. UA_ByteString_deleteMembers(&client->clientNonce); // if the handshake is repeated
  106. UA_ByteString_newMembers(&client->clientNonce, 1);
  107. client->clientNonce.data[0] = 0;
  108. UA_SecureConversationMessageHeader messageHeader;
  109. messageHeader.messageHeader.messageTypeAndFinal = UA_MESSAGETYPEANDFINAL_OPNF;
  110. messageHeader.secureChannelId = 0;
  111. UA_SequenceHeader seqHeader;
  112. seqHeader.sequenceNumber = ++client->sequenceNumber;
  113. seqHeader.requestId = ++client->requestId;
  114. UA_AsymmetricAlgorithmSecurityHeader asymHeader;
  115. UA_AsymmetricAlgorithmSecurityHeader_init(&asymHeader);
  116. asymHeader.securityPolicyUri = UA_STRING_ALLOC("http://opcfoundation.org/UA/SecurityPolicy#None");
  117. /* id of opensecurechannelrequest */
  118. UA_NodeId requestType = UA_NODEID_NUMERIC(0, UA_NS0ID_OPENSECURECHANNELREQUEST + UA_ENCODINGOFFSET_BINARY);
  119. UA_OpenSecureChannelRequest opnSecRq;
  120. UA_OpenSecureChannelRequest_init(&opnSecRq);
  121. opnSecRq.requestHeader.timestamp = UA_DateTime_now();
  122. UA_ByteString_copy(&client->clientNonce, &opnSecRq.clientNonce);
  123. opnSecRq.requestedLifetime = 30000;
  124. opnSecRq.securityMode = UA_MESSAGESECURITYMODE_NONE;
  125. opnSecRq.requestType = UA_SECURITYTOKENREQUESTTYPE_ISSUE;
  126. opnSecRq.requestHeader.authenticationToken.identifier.numeric = 10;
  127. opnSecRq.requestHeader.authenticationToken.identifierType = UA_NODEIDTYPE_NUMERIC;
  128. opnSecRq.requestHeader.authenticationToken.namespaceIndex = 10;
  129. messageHeader.messageHeader.messageSize =
  130. UA_SecureConversationMessageHeader_calcSizeBinary(&messageHeader) +
  131. UA_AsymmetricAlgorithmSecurityHeader_calcSizeBinary(&asymHeader) +
  132. UA_SequenceHeader_calcSizeBinary(&seqHeader) +
  133. UA_NodeId_calcSizeBinary(&requestType) +
  134. UA_OpenSecureChannelRequest_calcSizeBinary(&opnSecRq);
  135. UA_ByteString message;
  136. UA_StatusCode retval = client->connection.getBuffer(&client->connection, &message,
  137. messageHeader.messageHeader.messageSize);
  138. if(retval != UA_STATUSCODE_GOOD) {
  139. UA_AsymmetricAlgorithmSecurityHeader_deleteMembers(&asymHeader);
  140. UA_OpenSecureChannelRequest_deleteMembers(&opnSecRq);
  141. return retval;
  142. }
  143. size_t offset = 0;
  144. UA_SecureConversationMessageHeader_encodeBinary(&messageHeader, &message, &offset);
  145. UA_AsymmetricAlgorithmSecurityHeader_encodeBinary(&asymHeader, &message, &offset);
  146. UA_SequenceHeader_encodeBinary(&seqHeader, &message, &offset);
  147. UA_NodeId_encodeBinary(&requestType, &message, &offset);
  148. UA_OpenSecureChannelRequest_encodeBinary(&opnSecRq, &message, &offset);
  149. UA_AsymmetricAlgorithmSecurityHeader_deleteMembers(&asymHeader);
  150. UA_OpenSecureChannelRequest_deleteMembers(&opnSecRq);
  151. retval = client->connection.write(&client->connection, &message);
  152. client->connection.releaseBuffer(&client->connection, &message);
  153. if(retval)
  154. return retval;
  155. // parse the response
  156. UA_ByteString reply;
  157. UA_ByteString_init(&reply);
  158. do {
  159. retval = client->connection.recv(&client->connection, &reply, client->config.timeout);
  160. if(retval == UA_STATUSCODE_BADCONNECTIONCLOSED)
  161. return retval;
  162. } while(retval != UA_STATUSCODE_GOOD);
  163. offset = 0;
  164. UA_SecureConversationMessageHeader_decodeBinary(&reply, &offset, &messageHeader);
  165. UA_AsymmetricAlgorithmSecurityHeader_decodeBinary(&reply, &offset, &asymHeader);
  166. UA_SequenceHeader_decodeBinary(&reply, &offset, &seqHeader);
  167. UA_NodeId_decodeBinary(&reply, &offset, &requestType);
  168. if(!UA_NodeId_equal(&requestType, &UA_NODEID_NUMERIC(0, UA_NS0ID_OPENSECURECHANNELRESPONSE +
  169. UA_ENCODINGOFFSET_BINARY))) {
  170. client->connection.releaseBuffer(&client->connection, &reply);
  171. UA_AsymmetricAlgorithmSecurityHeader_deleteMembers(&asymHeader);
  172. UA_NodeId_deleteMembers(&requestType);
  173. return UA_STATUSCODE_BADINTERNALERROR;
  174. }
  175. UA_OpenSecureChannelResponse response;
  176. UA_OpenSecureChannelResponse_decodeBinary(&reply, &offset, &response);
  177. client->connection.releaseBuffer(&client->connection, &reply);
  178. retval = response.responseHeader.serviceResult;
  179. if(retval == UA_STATUSCODE_GOOD) {
  180. UA_ChannelSecurityToken_copy(&response.securityToken, &client->securityToken);
  181. UA_ByteString_deleteMembers(&client->serverNonce); // if the handshake is repeated
  182. UA_ByteString_copy(&response.serverNonce, &client->serverNonce);
  183. }
  184. UA_OpenSecureChannelResponse_deleteMembers(&response);
  185. UA_AsymmetricAlgorithmSecurityHeader_deleteMembers(&asymHeader);
  186. return retval;
  187. }
  188. /** If the request fails, then the response is cast to UA_ResponseHeader (at the beginning of every
  189. response) and filled with the appropriate error code */
  190. static void sendReceiveRequest(UA_RequestHeader *request, const UA_DataType *requestType,
  191. void *response, const UA_DataType *responseType, UA_Client *client,
  192. UA_Boolean sendOnly) {
  193. if(response)
  194. UA_init(response, responseType);
  195. UA_NodeId_copy(&client->authenticationToken, &request->authenticationToken);
  196. UA_SecureConversationMessageHeader msgHeader;
  197. if(sendOnly)
  198. msgHeader.messageHeader.messageTypeAndFinal = UA_MESSAGETYPEANDFINAL_CLOF;
  199. else
  200. msgHeader.messageHeader.messageTypeAndFinal = UA_MESSAGETYPEANDFINAL_MSGF;
  201. msgHeader.secureChannelId = client->securityToken.channelId;
  202. UA_SymmetricAlgorithmSecurityHeader symHeader;
  203. symHeader.tokenId = client->securityToken.tokenId;
  204. UA_SequenceHeader seqHeader;
  205. seqHeader.sequenceNumber = ++client->sequenceNumber;
  206. seqHeader.requestId = ++client->requestId;
  207. UA_NodeId requestId = UA_NODEID_NUMERIC(0, requestType->typeId.identifier.numeric +
  208. UA_ENCODINGOFFSET_BINARY);
  209. msgHeader.messageHeader.messageSize =
  210. UA_SecureConversationMessageHeader_calcSizeBinary(&msgHeader) +
  211. UA_SymmetricAlgorithmSecurityHeader_calcSizeBinary(&symHeader) +
  212. UA_SequenceHeader_calcSizeBinary(&seqHeader) +
  213. UA_NodeId_calcSizeBinary(&requestId) +
  214. UA_calcSizeBinary(request, requestType);
  215. UA_ByteString message;
  216. UA_StatusCode retval = client->connection.getBuffer(&client->connection, &message, msgHeader.messageHeader.messageSize);
  217. if(retval != UA_STATUSCODE_GOOD) {
  218. // todo
  219. }
  220. size_t offset = 0;
  221. retval |= UA_SecureConversationMessageHeader_encodeBinary(&msgHeader, &message, &offset);
  222. retval |= UA_SymmetricAlgorithmSecurityHeader_encodeBinary(&symHeader, &message, &offset);
  223. retval |= UA_SequenceHeader_encodeBinary(&seqHeader, &message, &offset);
  224. retval |= UA_NodeId_encodeBinary(&requestId, &message, &offset);
  225. retval |= UA_encodeBinary(request, requestType, &message, &offset);
  226. retval = client->connection.write(&client->connection, &message);
  227. client->connection.releaseBuffer(&client->connection, &message);
  228. //TODO: rework to get return value
  229. if(sendOnly)
  230. return;
  231. UA_ResponseHeader *respHeader = (UA_ResponseHeader*)response;
  232. if(retval != UA_STATUSCODE_GOOD) {
  233. respHeader->serviceResult = retval;
  234. return;
  235. }
  236. /* Response */
  237. UA_ByteString reply;
  238. UA_ByteString_init(&reply);
  239. do {
  240. retval = client->connection.recv(&client->connection, &reply, client->config.timeout);
  241. if(retval == UA_STATUSCODE_BADCONNECTIONCLOSED) {
  242. respHeader->serviceResult = retval;
  243. return;
  244. }
  245. } while(retval != UA_STATUSCODE_GOOD);
  246. offset = 0;
  247. retval |= UA_SecureConversationMessageHeader_decodeBinary(&reply, &offset, &msgHeader);
  248. retval |= UA_SymmetricAlgorithmSecurityHeader_decodeBinary(&reply, &offset, &symHeader);
  249. retval |= UA_SequenceHeader_decodeBinary(&reply, &offset, &seqHeader);
  250. UA_NodeId responseId;
  251. retval |= UA_NodeId_decodeBinary(&reply, &offset, &responseId);
  252. if(!UA_NodeId_equal(&responseId, &UA_NODEID_NUMERIC(0, responseType->typeId.identifier.numeric +
  253. UA_ENCODINGOFFSET_BINARY))) {
  254. client->connection.releaseBuffer(&client->connection, &reply);
  255. UA_SymmetricAlgorithmSecurityHeader_deleteMembers(&symHeader);
  256. respHeader->serviceResult = retval;
  257. return;
  258. }
  259. retval = UA_decodeBinary(&reply, &offset, response, responseType);
  260. client->connection.releaseBuffer(&client->connection, &reply);
  261. if(retval != UA_STATUSCODE_GOOD)
  262. respHeader->serviceResult = retval;
  263. }
  264. static void synchronousRequest(void *request, const UA_DataType *requestType, void *response,
  265. const UA_DataType *responseType, UA_Client *client) {
  266. sendReceiveRequest(request, requestType, response, responseType, client, UA_FALSE);
  267. }
  268. static UA_StatusCode ActivateSession(UA_Client *client) {
  269. UA_ActivateSessionRequest request;
  270. UA_ActivateSessionRequest_init(&request);
  271. request.requestHeader.requestHandle = 2; //TODO: is it a magic number?
  272. request.requestHeader.authenticationToken = client->authenticationToken;
  273. request.requestHeader.timestamp = UA_DateTime_now();
  274. request.requestHeader.timeoutHint = 10000;
  275. UA_AnonymousIdentityToken identityToken;
  276. UA_AnonymousIdentityToken_init(&identityToken);
  277. UA_String_copy(&client->token.policyId, &identityToken.policyId);
  278. //manual ExtensionObject encoding of the identityToken
  279. request.userIdentityToken.encoding = UA_EXTENSIONOBJECT_ENCODINGMASK_BODYISBYTESTRING;
  280. request.userIdentityToken.typeId = UA_TYPES[UA_TYPES_ANONYMOUSIDENTITYTOKEN].typeId;
  281. request.userIdentityToken.typeId.identifier.numeric+=UA_ENCODINGOFFSET_BINARY;
  282. UA_ByteString_newMembers(&request.userIdentityToken.body, identityToken.policyId.length+4);
  283. size_t offset = 0;
  284. UA_ByteString_encodeBinary(&identityToken.policyId,&request.userIdentityToken.body,&offset);
  285. UA_ActivateSessionResponse response;
  286. synchronousRequest(&request, &UA_TYPES[UA_TYPES_ACTIVATESESSIONREQUEST],
  287. &response, &UA_TYPES[UA_TYPES_ACTIVATESESSIONRESPONSE],
  288. client);
  289. UA_AnonymousIdentityToken_deleteMembers(&identityToken);
  290. UA_ActivateSessionRequest_deleteMembers(&request);
  291. UA_ActivateSessionResponse_deleteMembers(&response);
  292. return response.responseHeader.serviceResult; // not deleted
  293. }
  294. static UA_StatusCode EndpointsHandshake(UA_Client *client) {
  295. UA_GetEndpointsRequest request;
  296. UA_GetEndpointsRequest_init(&request);
  297. // todo: is this needed for all requests?
  298. UA_NodeId_copy(&client->authenticationToken, &request.requestHeader.authenticationToken);
  299. request.requestHeader.timestamp = UA_DateTime_now();
  300. request.requestHeader.timeoutHint = 10000;
  301. UA_String_copy(&client->endpointUrl, &request.endpointUrl);
  302. request.profileUrisSize = 1;
  303. request.profileUris = UA_Array_new(&UA_TYPES[UA_TYPES_STRING], request.profileUrisSize);
  304. request.profileUris[0] = UA_STRING_ALLOC("http://opcfoundation.org/UA-Profile/Transport/uatcp-uasc-uabinary");
  305. UA_GetEndpointsResponse response;
  306. UA_GetEndpointsResponse_init(&response);
  307. synchronousRequest(&request, &UA_TYPES[UA_TYPES_GETENDPOINTSREQUEST],
  308. &response, &UA_TYPES[UA_TYPES_GETENDPOINTSRESPONSE],
  309. client);
  310. UA_Boolean endpointFound = UA_FALSE;
  311. UA_Boolean tokenFound = UA_FALSE;
  312. for(UA_Int32 i=0; i<response.endpointsSize; ++i){
  313. UA_EndpointDescription* endpoint = &response.endpoints[i];
  314. /* look out for an endpoint without security */
  315. if(UA_String_equal(&endpoint->securityPolicyUri, &UA_STRING("http://opcfoundation.org/UA/SecurityPolicy#None"))){
  316. endpointFound = UA_TRUE;
  317. /* endpoint with no security found */
  318. /* look for a user token policy with an anonymous token */
  319. for(UA_Int32 j=0; j<endpoint->userIdentityTokensSize; ++j){
  320. UA_UserTokenPolicy* userToken = &endpoint->userIdentityTokens[j];
  321. if(userToken->tokenType == UA_USERTOKENTYPE_ANONYMOUS){
  322. tokenFound = UA_TRUE;
  323. UA_UserTokenPolicy_copy(userToken, &client->token);
  324. break;
  325. }
  326. }
  327. }
  328. }
  329. UA_GetEndpointsRequest_deleteMembers(&request);
  330. UA_GetEndpointsResponse_deleteMembers(&response);
  331. if(!endpointFound){
  332. printf("No suitable endpoint found\n");
  333. return UA_STATUSCODE_BADINTERNALERROR;
  334. }
  335. if(!tokenFound){
  336. printf("No anonymous token found\n");
  337. return UA_STATUSCODE_BADINTERNALERROR;
  338. }
  339. return response.responseHeader.serviceResult; // not deleted
  340. }
  341. static UA_StatusCode SessionHandshake(UA_Client *client) {
  342. UA_CreateSessionRequest request;
  343. UA_CreateSessionRequest_init(&request);
  344. // todo: is this needed for all requests?
  345. UA_NodeId_copy(&client->authenticationToken, &request.requestHeader.authenticationToken);
  346. request.requestHeader.timestamp = UA_DateTime_now();
  347. request.requestHeader.timeoutHint = 10000;
  348. UA_ByteString_copy(&client->clientNonce, &request.clientNonce);
  349. request.requestedSessionTimeout = 1200000;
  350. request.maxResponseMessageSize = UA_INT32_MAX;
  351. /* UA_String_copy(endpointUrl, &rq.endpointUrl); */
  352. /* UA_String_copycstring("mysession", &rq.sessionName); */
  353. /* UA_String_copycstring("abcd", &rq.clientCertificate); */
  354. UA_CreateSessionResponse response;
  355. UA_CreateSessionResponse_init(&response);
  356. synchronousRequest(&request, &UA_TYPES[UA_TYPES_CREATESESSIONREQUEST],
  357. &response, &UA_TYPES[UA_TYPES_CREATESESSIONRESPONSE],
  358. client);
  359. UA_NodeId_copy(&response.authenticationToken, &client->authenticationToken);
  360. UA_CreateSessionRequest_deleteMembers(&request);
  361. UA_CreateSessionResponse_deleteMembers(&response);
  362. return response.responseHeader.serviceResult; // not deleted
  363. }
  364. static UA_StatusCode CloseSession(UA_Client *client) {
  365. UA_CloseSessionRequest request;
  366. UA_CloseSessionRequest_init(&request);
  367. request.requestHeader.timestamp = UA_DateTime_now();
  368. request.requestHeader.timeoutHint = 10000;
  369. request.deleteSubscriptions = UA_TRUE;
  370. UA_NodeId_copy(&client->authenticationToken, &request.requestHeader.authenticationToken);
  371. UA_CreateSessionResponse response;
  372. synchronousRequest(&request, &UA_TYPES[UA_TYPES_CLOSESESSIONREQUEST],
  373. &response, &UA_TYPES[UA_TYPES_CLOSESESSIONRESPONSE],
  374. client);
  375. UA_CloseSessionRequest_deleteMembers(&request);
  376. UA_CloseSessionResponse_deleteMembers(&response);
  377. return response.responseHeader.serviceResult; // not deleted
  378. }
  379. static UA_StatusCode CloseSecureChannel(UA_Client *client) {
  380. UA_CloseSecureChannelRequest request;
  381. UA_CloseSecureChannelRequest_init(&request);
  382. request.requestHeader.requestHandle = 1; //TODO: magic number?
  383. request.requestHeader.timestamp = UA_DateTime_now();
  384. request.requestHeader.timeoutHint = 10000;
  385. request.requestHeader.authenticationToken = client->authenticationToken;
  386. sendReceiveRequest(&request.requestHeader, &UA_TYPES[UA_TYPES_CLOSESECURECHANNELREQUEST], UA_NULL, UA_NULL,
  387. client, UA_TRUE);
  388. return UA_STATUSCODE_GOOD;
  389. }
  390. /*************************/
  391. /* User-Facing Functions */
  392. /*************************/
  393. UA_StatusCode UA_Client_connect(UA_Client *client, UA_ConnectClientConnection connectFunc, char *endpointUrl) {
  394. client->connection = connectFunc(endpointUrl, &client->logger);
  395. if(client->connection.state != UA_CONNECTION_OPENING)
  396. return UA_STATUSCODE_BADCONNECTIONCLOSED;
  397. client->endpointUrl = UA_STRING_ALLOC(endpointUrl);
  398. if(client->endpointUrl.length < 0)
  399. return UA_STATUSCODE_BADOUTOFMEMORY;
  400. client->connection.localConf = client->config.localConnectionConfig;
  401. UA_StatusCode retval = HelAckHandshake(client);
  402. if(retval == UA_STATUSCODE_GOOD)
  403. retval = SecureChannelHandshake(client);
  404. if(retval == UA_STATUSCODE_GOOD)
  405. retval = EndpointsHandshake(client);
  406. if(retval == UA_STATUSCODE_GOOD)
  407. retval = SessionHandshake(client);
  408. if(retval == UA_STATUSCODE_GOOD)
  409. retval = ActivateSession(client);
  410. return retval;
  411. }
  412. UA_StatusCode UA_Client_disconnect(UA_Client *client) {
  413. UA_StatusCode retval;
  414. retval = CloseSession(client);
  415. if(retval == UA_STATUSCODE_GOOD)
  416. retval = CloseSecureChannel(client);
  417. return retval;
  418. }
  419. UA_ReadResponse UA_Client_read(UA_Client *client, UA_ReadRequest *request) {
  420. UA_ReadResponse response;
  421. synchronousRequest(request, &UA_TYPES[UA_TYPES_READREQUEST], &response,
  422. &UA_TYPES[UA_TYPES_READRESPONSE], client);
  423. return response;
  424. }
  425. UA_WriteResponse UA_Client_write(UA_Client *client, UA_WriteRequest *request) {
  426. UA_WriteResponse response;
  427. synchronousRequest(request, &UA_TYPES[UA_TYPES_WRITEREQUEST], &response,
  428. &UA_TYPES[UA_TYPES_WRITERESPONSE], client);
  429. return response;
  430. }
  431. UA_BrowseResponse UA_Client_browse(UA_Client *client, UA_BrowseRequest *request) {
  432. UA_BrowseResponse response;
  433. synchronousRequest(request, &UA_TYPES[UA_TYPES_BROWSEREQUEST], &response,
  434. &UA_TYPES[UA_TYPES_BROWSERESPONSE], client);
  435. return response;
  436. }
  437. UA_BrowseNextResponse UA_Client_browseNext(UA_Client *client, UA_BrowseNextRequest *request) {
  438. UA_BrowseNextResponse response;
  439. synchronousRequest(request, &UA_TYPES[UA_TYPES_BROWSENEXTREQUEST], &response,
  440. &UA_TYPES[UA_TYPES_BROWSENEXTRESPONSE], client);
  441. return response;
  442. }
  443. UA_TranslateBrowsePathsToNodeIdsResponse
  444. UA_Client_translateTranslateBrowsePathsToNodeIds(UA_Client *client,
  445. UA_TranslateBrowsePathsToNodeIdsRequest *request) {
  446. UA_TranslateBrowsePathsToNodeIdsResponse response;
  447. synchronousRequest(request, &UA_TYPES[UA_TYPES_BROWSEREQUEST], &response,
  448. &UA_TYPES[UA_TYPES_BROWSERESPONSE], client);
  449. return response;
  450. }
  451. UA_AddNodesResponse UA_Client_addNodes(UA_Client *client, UA_AddNodesRequest *request) {
  452. UA_AddNodesResponse response;
  453. synchronousRequest(request, &UA_TYPES[UA_TYPES_BROWSEREQUEST], &response,
  454. &UA_TYPES[UA_TYPES_BROWSERESPONSE], client);
  455. return response;
  456. }
  457. UA_AddReferencesResponse UA_Client_addReferences(UA_Client *client, UA_AddReferencesRequest *request) {
  458. UA_AddReferencesResponse response;
  459. synchronousRequest(request, &UA_TYPES[UA_TYPES_BROWSEREQUEST], &response,
  460. &UA_TYPES[UA_TYPES_BROWSERESPONSE], client);
  461. return response;
  462. }
  463. UA_DeleteNodesResponse UA_Client_deleteNodes(UA_Client *client, UA_DeleteNodesRequest *request) {
  464. UA_DeleteNodesResponse response;
  465. synchronousRequest(request, &UA_TYPES[UA_TYPES_BROWSEREQUEST], &response,
  466. &UA_TYPES[UA_TYPES_BROWSERESPONSE], client);
  467. return response;
  468. }
  469. UA_DeleteReferencesResponse UA_Client_deleteReferences(UA_Client *client, UA_DeleteReferencesRequest *request) {
  470. UA_DeleteReferencesResponse response;
  471. synchronousRequest(request, &UA_TYPES[UA_TYPES_BROWSEREQUEST], &response,
  472. &UA_TYPES[UA_TYPES_BROWSERESPONSE], client);
  473. return response;;
  474. }