ua_client.c 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756
  1. #include "ua_util.h"
  2. #include "ua_client.h"
  3. #include "ua_client_highlevel.h"
  4. #include "ua_client_internal.h"
  5. #include "ua_connection_internal.h"
  6. #include "ua_types_generated.h"
  7. #include "ua_nodeids.h"
  8. #include "ua_types_encoding_binary.h"
  9. #include "ua_transport_generated.h"
  10. #include "ua_types_generated_encoding_binary.h"
  11. #include "ua_transport_generated_encoding_binary.h"
  12. /*********************/
  13. /* Create and Delete */
  14. /*********************/
  15. static void UA_Client_init(UA_Client* client, UA_ClientConfig config) {
  16. client->state = UA_CLIENTSTATE_READY;
  17. UA_Connection_init(&client->connection);
  18. UA_SecureChannel_init(&client->channel);
  19. client->channel.connection = &client->connection;
  20. UA_String_init(&client->endpointUrl);
  21. client->requestId = 0;
  22. client->authenticationMethod = UA_CLIENTAUTHENTICATION_NONE;
  23. UA_String_init(&client->username);
  24. UA_String_init(&client->password);
  25. UA_NodeId_init(&client->authenticationToken);
  26. client->requestHandle = 0;
  27. client->config = config;
  28. client->scRenewAt = 0;
  29. #ifdef UA_ENABLE_SUBSCRIPTIONS
  30. client->monitoredItemHandles = 0;
  31. LIST_INIT(&client->pendingNotificationsAcks);
  32. LIST_INIT(&client->subscriptions);
  33. #endif
  34. }
  35. UA_Client * UA_Client_new(UA_ClientConfig config) {
  36. UA_Client *client = UA_calloc(1, sizeof(UA_Client));
  37. if(!client)
  38. return NULL;
  39. UA_Client_init(client, config);
  40. return client;
  41. }
  42. static void UA_Client_deleteMembers(UA_Client* client) {
  43. UA_Client_disconnect(client);
  44. UA_Connection_deleteMembers(&client->connection);
  45. UA_SecureChannel_deleteMembersCleanup(&client->channel);
  46. if(client->endpointUrl.data)
  47. UA_String_deleteMembers(&client->endpointUrl);
  48. UA_UserTokenPolicy_deleteMembers(&client->token);
  49. if(client->username.data)
  50. UA_String_deleteMembers(&client->username);
  51. if(client->password.data)
  52. UA_String_deleteMembers(&client->password);
  53. #ifdef UA_ENABLE_SUBSCRIPTIONS
  54. UA_Client_NotificationsAckNumber *n, *tmp;
  55. LIST_FOREACH_SAFE(n, &client->pendingNotificationsAcks, listEntry, tmp) {
  56. LIST_REMOVE(n, listEntry);
  57. free(n);
  58. }
  59. UA_Client_Subscription *sub, *tmps;
  60. LIST_FOREACH_SAFE(sub, &client->subscriptions, listEntry, tmps) {
  61. LIST_REMOVE(sub, listEntry);
  62. UA_Client_MonitoredItem *mon, *tmpmon;
  63. LIST_FOREACH_SAFE(mon, &sub->MonitoredItems, listEntry, tmpmon) {
  64. UA_Client_Subscriptions_removeMonitoredItem(client, sub->SubscriptionID,
  65. mon->MonitoredItemId);
  66. }
  67. free(sub);
  68. }
  69. #endif
  70. }
  71. void UA_Client_reset(UA_Client* client){
  72. UA_Client_deleteMembers(client);
  73. UA_Client_init(client, client->config);
  74. }
  75. void UA_Client_delete(UA_Client* client){
  76. if(client->state != UA_CLIENTSTATE_READY)
  77. UA_Client_deleteMembers(client);
  78. UA_free(client);
  79. }
  80. UA_ClientState UA_EXPORT UA_Client_getState(UA_Client *client) {
  81. if (client == NULL)
  82. return UA_CLIENTSTATE_ERRORED;
  83. return client->state;
  84. }
  85. /*************************/
  86. /* Manage the Connection */
  87. /*************************/
  88. static UA_StatusCode HelAckHandshake(UA_Client *client) {
  89. UA_TcpMessageHeader messageHeader;
  90. messageHeader.messageTypeAndChunkType = UA_CHUNKTYPE_FINAL + UA_MESSAGETYPE_HEL;
  91. UA_TcpHelloMessage hello;
  92. UA_String_copy(&client->endpointUrl, &hello.endpointUrl); /* must be less than 4096 bytes */
  93. UA_Connection *conn = &client->connection;
  94. hello.maxChunkCount = conn->localConf.maxChunkCount;
  95. hello.maxMessageSize = conn->localConf.maxMessageSize;
  96. hello.protocolVersion = conn->localConf.protocolVersion;
  97. hello.receiveBufferSize = conn->localConf.recvBufferSize;
  98. hello.sendBufferSize = conn->localConf.sendBufferSize;
  99. UA_ByteString message;
  100. UA_StatusCode retval;
  101. retval = client->connection.getSendBuffer(&client->connection, client->connection.remoteConf.recvBufferSize, &message);
  102. if(retval != UA_STATUSCODE_GOOD)
  103. return retval;
  104. size_t offset = 8;
  105. retval |= UA_TcpHelloMessage_encodeBinary(&hello, &message, &offset);
  106. messageHeader.messageSize = (UA_UInt32)offset;
  107. offset = 0;
  108. retval |= UA_TcpMessageHeader_encodeBinary(&messageHeader, &message, &offset);
  109. UA_TcpHelloMessage_deleteMembers(&hello);
  110. if(retval != UA_STATUSCODE_GOOD) {
  111. client->connection.releaseSendBuffer(&client->connection, &message);
  112. return retval;
  113. }
  114. message.length = messageHeader.messageSize;
  115. retval = client->connection.send(&client->connection, &message);
  116. if(retval != UA_STATUSCODE_GOOD) {
  117. UA_LOG_INFO(client->config.logger, UA_LOGCATEGORY_NETWORK, "Sending HEL failed");
  118. return retval;
  119. }
  120. UA_LOG_DEBUG(client->config.logger, UA_LOGCATEGORY_NETWORK, "Sent HEL message");
  121. UA_ByteString reply;
  122. UA_ByteString_init(&reply);
  123. UA_Boolean realloced = false;
  124. do {
  125. retval = client->connection.recv(&client->connection, &reply, client->config.timeout);
  126. retval |= UA_Connection_completeMessages(&client->connection, &reply, &realloced);
  127. if(retval != UA_STATUSCODE_GOOD) {
  128. UA_LOG_INFO(client->config.logger, UA_LOGCATEGORY_NETWORK, "Receiving ACK message failed");
  129. return retval;
  130. }
  131. } while(reply.length == 0);
  132. offset = 0;
  133. UA_TcpMessageHeader_decodeBinary(&reply, &offset, &messageHeader);
  134. UA_TcpAcknowledgeMessage ackMessage;
  135. retval = UA_TcpAcknowledgeMessage_decodeBinary(&reply, &offset, &ackMessage);
  136. if(!realloced)
  137. client->connection.releaseRecvBuffer(&client->connection, &reply);
  138. else
  139. UA_ByteString_deleteMembers(&reply);
  140. if(retval != UA_STATUSCODE_GOOD) {
  141. UA_LOG_INFO(client->config.logger, UA_LOGCATEGORY_NETWORK, "Decoding ACK message failed");
  142. return retval;
  143. }
  144. UA_LOG_DEBUG(client->config.logger, UA_LOGCATEGORY_NETWORK, "Received ACK message");
  145. conn->remoteConf.maxChunkCount = ackMessage.maxChunkCount;
  146. conn->remoteConf.maxMessageSize = ackMessage.maxMessageSize;
  147. conn->remoteConf.protocolVersion = ackMessage.protocolVersion;
  148. conn->remoteConf.recvBufferSize = ackMessage.receiveBufferSize;
  149. conn->remoteConf.sendBufferSize = ackMessage.sendBufferSize;
  150. conn->state = UA_CONNECTION_ESTABLISHED;
  151. if (conn->remoteConf.recvBufferSize < conn->localConf.sendBufferSize)
  152. conn->localConf.sendBufferSize = conn->remoteConf.recvBufferSize;
  153. return UA_STATUSCODE_GOOD;
  154. }
  155. static UA_StatusCode SecureChannelHandshake(UA_Client *client, UA_Boolean renew) {
  156. /* Check if sc is still valid */
  157. if(renew && client->scRenewAt - UA_DateTime_now() > 0)
  158. return UA_STATUSCODE_GOOD;
  159. UA_Connection *c = &client->connection;
  160. if(c->state != UA_CONNECTION_ESTABLISHED)
  161. return UA_STATUSCODE_BADSERVERNOTCONNECTED;
  162. UA_SecureConversationMessageHeader messageHeader;
  163. messageHeader.messageHeader.messageTypeAndChunkType = UA_MESSAGETYPE_OPN + UA_CHUNKTYPE_FINAL;
  164. if(renew)
  165. messageHeader.secureChannelId = client->channel.securityToken.channelId;
  166. else
  167. messageHeader.secureChannelId = 0;
  168. UA_SequenceHeader seqHeader;
  169. seqHeader.sequenceNumber = ++client->channel.sequenceNumber;
  170. seqHeader.requestId = ++client->requestId;
  171. UA_AsymmetricAlgorithmSecurityHeader asymHeader;
  172. UA_AsymmetricAlgorithmSecurityHeader_init(&asymHeader);
  173. asymHeader.securityPolicyUri = UA_STRING_ALLOC("http://opcfoundation.org/UA/SecurityPolicy#None");
  174. /* id of opensecurechannelrequest */
  175. UA_NodeId requestType = UA_NODEID_NUMERIC(0, UA_NS0ID_OPENSECURECHANNELREQUEST + UA_ENCODINGOFFSET_BINARY);
  176. UA_OpenSecureChannelRequest opnSecRq;
  177. UA_OpenSecureChannelRequest_init(&opnSecRq);
  178. opnSecRq.requestHeader.timestamp = UA_DateTime_now();
  179. opnSecRq.requestHeader.authenticationToken = client->authenticationToken;
  180. opnSecRq.requestedLifetime = client->config.secureChannelLifeTime;
  181. if(renew) {
  182. opnSecRq.requestType = UA_SECURITYTOKENREQUESTTYPE_RENEW;
  183. UA_LOG_DEBUG(client->config.logger, UA_LOGCATEGORY_SECURECHANNEL, "Requesting to renew the SecureChannel");
  184. } else {
  185. opnSecRq.requestType = UA_SECURITYTOKENREQUESTTYPE_ISSUE;
  186. UA_LOG_DEBUG(client->config.logger, UA_LOGCATEGORY_SECURECHANNEL, "Requesting to open a SecureChannel");
  187. }
  188. UA_ByteString_copy(&client->channel.clientNonce, &opnSecRq.clientNonce);
  189. opnSecRq.securityMode = UA_MESSAGESECURITYMODE_NONE;
  190. UA_ByteString message;
  191. UA_StatusCode retval = c->getSendBuffer(c, c->remoteConf.recvBufferSize, &message);
  192. if(retval != UA_STATUSCODE_GOOD) {
  193. UA_AsymmetricAlgorithmSecurityHeader_deleteMembers(&asymHeader);
  194. UA_OpenSecureChannelRequest_deleteMembers(&opnSecRq);
  195. return retval;
  196. }
  197. size_t offset = 12;
  198. retval = UA_AsymmetricAlgorithmSecurityHeader_encodeBinary(&asymHeader, &message, &offset);
  199. retval |= UA_SequenceHeader_encodeBinary(&seqHeader, &message, &offset);
  200. retval |= UA_NodeId_encodeBinary(&requestType, &message, &offset);
  201. retval |= UA_OpenSecureChannelRequest_encodeBinary(&opnSecRq, &message, &offset);
  202. messageHeader.messageHeader.messageSize = (UA_UInt32)offset;
  203. offset = 0;
  204. retval |= UA_SecureConversationMessageHeader_encodeBinary(&messageHeader, &message, &offset);
  205. UA_AsymmetricAlgorithmSecurityHeader_deleteMembers(&asymHeader);
  206. UA_OpenSecureChannelRequest_deleteMembers(&opnSecRq);
  207. if(retval != UA_STATUSCODE_GOOD) {
  208. client->connection.releaseSendBuffer(&client->connection, &message);
  209. return retval;
  210. }
  211. message.length = messageHeader.messageHeader.messageSize;
  212. retval = client->connection.send(&client->connection, &message);
  213. if(retval != UA_STATUSCODE_GOOD)
  214. return retval;
  215. UA_ByteString reply;
  216. UA_ByteString_init(&reply);
  217. UA_Boolean realloced = false;
  218. do {
  219. retval = c->recv(c, &reply, client->config.timeout);
  220. retval |= UA_Connection_completeMessages(c, &reply, &realloced);
  221. if(retval != UA_STATUSCODE_GOOD) {
  222. UA_LOG_DEBUG(client->config.logger, UA_LOGCATEGORY_SECURECHANNEL,
  223. "Receiving OpenSecureChannelResponse failed");
  224. return retval;
  225. }
  226. } while(reply.length == 0);
  227. offset = 0;
  228. UA_SecureConversationMessageHeader_decodeBinary(&reply, &offset, &messageHeader);
  229. UA_AsymmetricAlgorithmSecurityHeader_decodeBinary(&reply, &offset, &asymHeader);
  230. UA_SequenceHeader_decodeBinary(&reply, &offset, &seqHeader);
  231. UA_NodeId_decodeBinary(&reply, &offset, &requestType);
  232. UA_NodeId expectedRequest = UA_NODEID_NUMERIC(0, UA_NS0ID_OPENSECURECHANNELRESPONSE +
  233. UA_ENCODINGOFFSET_BINARY);
  234. if(!UA_NodeId_equal(&requestType, &expectedRequest)) {
  235. UA_ByteString_deleteMembers(&reply);
  236. UA_AsymmetricAlgorithmSecurityHeader_deleteMembers(&asymHeader);
  237. UA_NodeId_deleteMembers(&requestType);
  238. UA_LOG_DEBUG(client->config.logger, UA_LOGCATEGORY_CLIENT,
  239. "Reply answers the wrong request. Expected OpenSecureChannelResponse.");
  240. return UA_STATUSCODE_BADINTERNALERROR;
  241. }
  242. UA_OpenSecureChannelResponse response;
  243. UA_OpenSecureChannelResponse_init(&response);
  244. retval = UA_OpenSecureChannelResponse_decodeBinary(&reply, &offset, &response);
  245. if(!realloced)
  246. c->releaseRecvBuffer(c, &reply);
  247. else
  248. UA_ByteString_deleteMembers(&reply);
  249. if(retval != UA_STATUSCODE_GOOD) {
  250. UA_LOG_DEBUG(client->config.logger, UA_LOGCATEGORY_SECURECHANNEL,
  251. "Decoding OpenSecureChannelResponse failed");
  252. UA_AsymmetricAlgorithmSecurityHeader_deleteMembers(&asymHeader);
  253. UA_OpenSecureChannelResponse_init(&response);
  254. response.responseHeader.serviceResult = retval;
  255. return retval;
  256. }
  257. retval = response.responseHeader.serviceResult;
  258. if(retval == UA_STATUSCODE_GOOD) {
  259. /* Response.securityToken.revisedLifetime is UInt32 we need to cast it
  260. to DateTime=Int64 we take 75% of lifetime to start renewing as
  261. described in standard */
  262. client->scRenewAt = UA_DateTime_now() +
  263. (UA_DateTime)(response.securityToken.revisedLifetime * (UA_Double)UA_MSEC_TO_DATETIME * 0.75);
  264. /* Replace the old nonce */
  265. UA_ChannelSecurityToken_deleteMembers(&client->channel.securityToken);
  266. UA_ChannelSecurityToken_copy(&response.securityToken, &client->channel.securityToken);
  267. UA_ByteString_deleteMembers(&client->channel.serverNonce);
  268. UA_ByteString_copy(&response.serverNonce, &client->channel.serverNonce);
  269. if(renew)
  270. UA_LOG_DEBUG(client->config.logger, UA_LOGCATEGORY_SECURECHANNEL, "SecureChannel renewed");
  271. else
  272. UA_LOG_DEBUG(client->config.logger, UA_LOGCATEGORY_SECURECHANNEL, "SecureChannel opened");
  273. } else {
  274. UA_LOG_DEBUG(client->config.logger, UA_LOGCATEGORY_SECURECHANNEL, "SecureChannel could "
  275. "not be opened / renewed with statuscode %i", retval);
  276. }
  277. UA_OpenSecureChannelResponse_deleteMembers(&response);
  278. UA_AsymmetricAlgorithmSecurityHeader_deleteMembers(&asymHeader);
  279. return retval;
  280. }
  281. static UA_StatusCode ActivateSession(UA_Client *client) {
  282. UA_ActivateSessionRequest request;
  283. UA_ActivateSessionRequest_init(&request);
  284. request.requestHeader.requestHandle = ++client->requestHandle;
  285. request.requestHeader.authenticationToken = client->authenticationToken;
  286. request.requestHeader.timestamp = UA_DateTime_now();
  287. request.requestHeader.timeoutHint = 600000;
  288. //manual ExtensionObject encoding of the identityToken
  289. if(client->authenticationMethod == UA_CLIENTAUTHENTICATION_NONE){
  290. UA_AnonymousIdentityToken* identityToken = UA_malloc(sizeof(UA_AnonymousIdentityToken));
  291. UA_AnonymousIdentityToken_init(identityToken);
  292. UA_String_copy(&client->token.policyId, &identityToken->policyId);
  293. request.userIdentityToken.encoding = UA_EXTENSIONOBJECT_DECODED;
  294. request.userIdentityToken.content.decoded.type = &UA_TYPES[UA_TYPES_ANONYMOUSIDENTITYTOKEN];
  295. request.userIdentityToken.content.decoded.data = identityToken;
  296. }else{
  297. UA_UserNameIdentityToken* identityToken = UA_malloc(sizeof(UA_UserNameIdentityToken));
  298. UA_UserNameIdentityToken_init(identityToken);
  299. UA_String_copy(&client->token.policyId, &identityToken->policyId);
  300. UA_String_copy(&client->username, &identityToken->userName);
  301. UA_String_copy(&client->password, &identityToken->password);
  302. request.userIdentityToken.encoding = UA_EXTENSIONOBJECT_DECODED;
  303. request.userIdentityToken.content.decoded.type = &UA_TYPES[UA_TYPES_USERNAMEIDENTITYTOKEN];
  304. request.userIdentityToken.content.decoded.data = identityToken;
  305. }
  306. UA_ActivateSessionResponse response;
  307. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_ACTIVATESESSIONREQUEST],
  308. &response, &UA_TYPES[UA_TYPES_ACTIVATESESSIONRESPONSE]);
  309. if(response.responseHeader.serviceResult) {
  310. UA_LOG_ERROR(client->config.logger, UA_LOGCATEGORY_CLIENT,
  311. "ActivateSession failed with statuscode %i", response.responseHeader.serviceResult);
  312. }
  313. UA_ActivateSessionRequest_deleteMembers(&request);
  314. UA_ActivateSessionResponse_deleteMembers(&response);
  315. return response.responseHeader.serviceResult; // not deleted
  316. }
  317. /**
  318. * Gets a list of endpoints
  319. * Memory is allocated for endpointDescription array
  320. */
  321. static UA_StatusCode
  322. GetEndpoints(UA_Client *client, size_t* endpointDescriptionsSize, UA_EndpointDescription** endpointDescriptions) {
  323. UA_GetEndpointsRequest request;
  324. UA_GetEndpointsRequest_init(&request);
  325. request.requestHeader.authenticationToken = client->authenticationToken;
  326. request.requestHeader.timestamp = UA_DateTime_now();
  327. request.requestHeader.timeoutHint = 10000;
  328. request.endpointUrl = client->endpointUrl; // assume the endpointurl outlives the service call
  329. UA_GetEndpointsResponse response;
  330. UA_GetEndpointsResponse_init(&response);
  331. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_GETENDPOINTSREQUEST],
  332. &response, &UA_TYPES[UA_TYPES_GETENDPOINTSRESPONSE]);
  333. if(response.responseHeader.serviceResult != UA_STATUSCODE_GOOD) {
  334. UA_LOG_ERROR(client->config.logger, UA_LOGCATEGORY_CLIENT,
  335. "GetEndpointRequest failed with statuscode %i", response.responseHeader.serviceResult);
  336. UA_GetEndpointsResponse_deleteMembers(&response);
  337. return response.responseHeader.serviceResult;
  338. }
  339. *endpointDescriptionsSize = response.endpointsSize;
  340. *endpointDescriptions = UA_Array_new(response.endpointsSize, &UA_TYPES[UA_TYPES_ENDPOINTDESCRIPTION]);
  341. for(size_t i=0;i<response.endpointsSize;i++)
  342. UA_EndpointDescription_copy(&response.endpoints[i], &(*endpointDescriptions)[i]);
  343. UA_GetEndpointsResponse_deleteMembers(&response);
  344. return UA_STATUSCODE_GOOD;
  345. }
  346. static UA_StatusCode EndpointsHandshake(UA_Client *client) {
  347. UA_EndpointDescription* endpointArray = NULL;
  348. size_t endpointArraySize = 0;
  349. UA_StatusCode retval = GetEndpoints(client, &endpointArraySize, &endpointArray);
  350. if(retval != UA_STATUSCODE_GOOD)
  351. return retval;
  352. UA_Boolean endpointFound = false;
  353. UA_Boolean tokenFound = false;
  354. UA_String securityNone = UA_STRING("http://opcfoundation.org/UA/SecurityPolicy#None");
  355. UA_String binaryTransport = UA_STRING("http://opcfoundation.org/UA-Profile/Transport/uatcp-uasc-uabinary");
  356. //TODO: compare endpoint information with client->endpointUri
  357. for(size_t i = 0; i < endpointArraySize; i++) {
  358. UA_EndpointDescription* endpoint = &endpointArray[i];
  359. /* look out for binary transport endpoints */
  360. //NODE: Siemens returns empty ProfileUrl, we will accept it as binary
  361. if(endpoint->transportProfileUri.length!=0 && !UA_String_equal(&endpoint->transportProfileUri, &binaryTransport))
  362. continue;
  363. /* look out for an endpoint without security */
  364. if(!UA_String_equal(&endpoint->securityPolicyUri, &securityNone))
  365. continue;
  366. endpointFound = true;
  367. /* endpoint with no security found */
  368. /* look for a user token policy with an anonymous token */
  369. for(size_t j = 0; j < endpoint->userIdentityTokensSize; ++j) {
  370. UA_UserTokenPolicy* userToken = &endpoint->userIdentityTokens[j];
  371. //anonymous authentication
  372. if(client->authenticationMethod == UA_CLIENTAUTHENTICATION_NONE){
  373. if(userToken->tokenType != UA_USERTOKENTYPE_ANONYMOUS)
  374. continue;
  375. }else{
  376. //username authentication
  377. if(userToken->tokenType != UA_USERTOKENTYPE_USERNAME)
  378. continue;
  379. }
  380. tokenFound = true;
  381. UA_UserTokenPolicy_copy(userToken, &client->token);
  382. break;
  383. }
  384. }
  385. UA_Array_delete(endpointArray, endpointArraySize, &UA_TYPES[UA_TYPES_ENDPOINTDESCRIPTION]);
  386. if(!endpointFound) {
  387. UA_LOG_ERROR(client->config.logger, UA_LOGCATEGORY_CLIENT, "No suitable endpoint found");
  388. return UA_STATUSCODE_BADINTERNALERROR;
  389. }
  390. if(!tokenFound) {
  391. UA_LOG_ERROR(client->config.logger, UA_LOGCATEGORY_CLIENT, "No anonymous token found");
  392. return UA_STATUSCODE_BADINTERNALERROR;
  393. }
  394. return retval;
  395. }
  396. static UA_StatusCode SessionHandshake(UA_Client *client) {
  397. UA_CreateSessionRequest request;
  398. UA_CreateSessionRequest_init(&request);
  399. // todo: is this needed for all requests?
  400. UA_NodeId_copy(&client->authenticationToken, &request.requestHeader.authenticationToken);
  401. request.requestHeader.timestamp = UA_DateTime_now();
  402. request.requestHeader.timeoutHint = 10000;
  403. UA_ByteString_copy(&client->channel.clientNonce, &request.clientNonce);
  404. request.requestedSessionTimeout = 1200000;
  405. request.maxResponseMessageSize = UA_INT32_MAX;
  406. UA_CreateSessionResponse response;
  407. UA_CreateSessionResponse_init(&response);
  408. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_CREATESESSIONREQUEST],
  409. &response, &UA_TYPES[UA_TYPES_CREATESESSIONRESPONSE]);
  410. UA_NodeId_copy(&response.authenticationToken, &client->authenticationToken);
  411. UA_CreateSessionRequest_deleteMembers(&request);
  412. UA_CreateSessionResponse_deleteMembers(&response);
  413. return response.responseHeader.serviceResult; // not deleted
  414. }
  415. static UA_StatusCode CloseSession(UA_Client *client) {
  416. UA_CloseSessionRequest request;
  417. UA_CloseSessionRequest_init(&request);
  418. request.requestHeader.timestamp = UA_DateTime_now();
  419. request.requestHeader.timeoutHint = 10000;
  420. request.deleteSubscriptions = true;
  421. UA_NodeId_copy(&client->authenticationToken, &request.requestHeader.authenticationToken);
  422. UA_CloseSessionResponse response;
  423. __UA_Client_Service(client, &request, &UA_TYPES[UA_TYPES_CLOSESESSIONREQUEST],
  424. &response, &UA_TYPES[UA_TYPES_CLOSESESSIONRESPONSE]);
  425. UA_CloseSessionRequest_deleteMembers(&request);
  426. UA_CloseSessionResponse_deleteMembers(&response);
  427. return response.responseHeader.serviceResult; // not deleted
  428. }
  429. static UA_StatusCode CloseSecureChannel(UA_Client *client) {
  430. UA_SecureChannel *channel = &client->channel;
  431. UA_CloseSecureChannelRequest request;
  432. UA_CloseSecureChannelRequest_init(&request);
  433. request.requestHeader.requestHandle = ++client->requestHandle;
  434. request.requestHeader.timestamp = UA_DateTime_now();
  435. request.requestHeader.timeoutHint = 10000;
  436. request.requestHeader.authenticationToken = client->authenticationToken;
  437. UA_SecureConversationMessageHeader msgHeader;
  438. msgHeader.messageHeader.messageTypeAndChunkType = UA_MESSAGETYPE_CLO + UA_CHUNKTYPE_FINAL;
  439. msgHeader.secureChannelId = client->channel.securityToken.channelId;
  440. UA_SymmetricAlgorithmSecurityHeader symHeader;
  441. symHeader.tokenId = channel->securityToken.tokenId;
  442. UA_SequenceHeader seqHeader;
  443. seqHeader.sequenceNumber = ++channel->sequenceNumber;
  444. seqHeader.requestId = ++client->requestId;
  445. UA_NodeId typeId = UA_NODEID_NUMERIC(0, UA_NS0ID_CLOSESECURECHANNELREQUEST + UA_ENCODINGOFFSET_BINARY);
  446. UA_ByteString message;
  447. UA_Connection *c = &client->connection;
  448. UA_StatusCode retval = c->getSendBuffer(c, c->remoteConf.recvBufferSize, &message);
  449. if(retval != UA_STATUSCODE_GOOD)
  450. return retval;
  451. size_t offset = 12;
  452. retval |= UA_SymmetricAlgorithmSecurityHeader_encodeBinary(&symHeader, &message, &offset);
  453. retval |= UA_SequenceHeader_encodeBinary(&seqHeader, &message, &offset);
  454. retval |= UA_NodeId_encodeBinary(&typeId, &message, &offset);
  455. retval |= UA_encodeBinary(&request, &UA_TYPES[UA_TYPES_CLOSESECURECHANNELREQUEST],NULL,NULL, &message, &offset);
  456. msgHeader.messageHeader.messageSize = (UA_UInt32)offset;
  457. offset = 0;
  458. retval |= UA_SecureConversationMessageHeader_encodeBinary(&msgHeader, &message, &offset);
  459. if(retval != UA_STATUSCODE_GOOD) {
  460. client->connection.releaseSendBuffer(&client->connection, &message);
  461. return retval;
  462. }
  463. message.length = msgHeader.messageHeader.messageSize;
  464. retval = client->connection.send(&client->connection, &message);
  465. return retval;
  466. }
  467. UA_StatusCode
  468. UA_Client_getEndpoints(UA_Client *client, const char *serverUrl,
  469. size_t* endpointDescriptionsSize,
  470. UA_EndpointDescription** endpointDescriptions) {
  471. if(client->state == UA_CLIENTSTATE_CONNECTED)
  472. return UA_STATUSCODE_GOOD;
  473. if(client->state == UA_CLIENTSTATE_ERRORED)
  474. UA_Client_reset(client);
  475. UA_StatusCode retval = UA_STATUSCODE_GOOD;
  476. client->connection = client->config.connectionFunc(UA_ConnectionConfig_standard, serverUrl, client->config.logger);
  477. if(client->connection.state != UA_CONNECTION_OPENING) {
  478. retval = UA_STATUSCODE_BADCONNECTIONCLOSED;
  479. goto cleanup;
  480. }
  481. client->endpointUrl = UA_STRING_ALLOC(serverUrl);
  482. if(!client->endpointUrl.data) {
  483. retval = UA_STATUSCODE_BADOUTOFMEMORY;
  484. goto cleanup;
  485. }
  486. client->connection.localConf = client->config.localConnectionConfig;
  487. retval = HelAckHandshake(client);
  488. if(retval == UA_STATUSCODE_GOOD)
  489. retval = SecureChannelHandshake(client, false);
  490. if(retval == UA_STATUSCODE_GOOD)
  491. retval = GetEndpoints(client, endpointDescriptionsSize, endpointDescriptions);
  492. /* always cleanup */
  493. cleanup:
  494. UA_Client_reset(client);
  495. return retval;
  496. }
  497. UA_StatusCode
  498. UA_Client_connect_username(UA_Client *client, const char *endpointUrl,
  499. const char *username, const char *password){
  500. client->authenticationMethod=UA_CLIENTAUTHENTICATION_USERNAME;
  501. client->username = UA_STRING_ALLOC(username);
  502. client->password = UA_STRING_ALLOC(password);
  503. return UA_Client_connect(client, endpointUrl);
  504. }
  505. UA_StatusCode
  506. UA_Client_connect(UA_Client *client, const char *endpointUrl) {
  507. if(client->state == UA_CLIENTSTATE_CONNECTED)
  508. return UA_STATUSCODE_GOOD;
  509. if(client->state == UA_CLIENTSTATE_ERRORED) {
  510. UA_Client_reset(client);
  511. }
  512. UA_StatusCode retval = UA_STATUSCODE_GOOD;
  513. client->connection = client->config.connectionFunc(UA_ConnectionConfig_standard, endpointUrl, client->config.logger);
  514. if(client->connection.state != UA_CONNECTION_OPENING) {
  515. retval = UA_STATUSCODE_BADCONNECTIONCLOSED;
  516. goto cleanup;
  517. }
  518. client->endpointUrl = UA_STRING_ALLOC(endpointUrl);
  519. if(!client->endpointUrl.data) {
  520. retval = UA_STATUSCODE_BADOUTOFMEMORY;
  521. goto cleanup;
  522. }
  523. client->connection.localConf = client->config.localConnectionConfig;
  524. retval = HelAckHandshake(client);
  525. if(retval == UA_STATUSCODE_GOOD)
  526. retval = SecureChannelHandshake(client, false);
  527. if(retval == UA_STATUSCODE_GOOD)
  528. retval = EndpointsHandshake(client);
  529. if(retval == UA_STATUSCODE_GOOD)
  530. retval = SessionHandshake(client);
  531. if(retval == UA_STATUSCODE_GOOD)
  532. retval = ActivateSession(client);
  533. if(retval == UA_STATUSCODE_GOOD) {
  534. client->connection.state = UA_CONNECTION_ESTABLISHED;
  535. client->state = UA_CLIENTSTATE_CONNECTED;
  536. } else {
  537. goto cleanup;
  538. }
  539. return retval;
  540. cleanup:
  541. UA_Client_reset(client);
  542. return retval;
  543. }
  544. UA_StatusCode UA_Client_disconnect(UA_Client *client) {
  545. UA_StatusCode retval = UA_STATUSCODE_GOOD;
  546. //is a session established?
  547. if(client->state == UA_CLIENTSTATE_CONNECTED && client->channel.connection->state == UA_CONNECTION_ESTABLISHED)
  548. retval = CloseSession(client);
  549. //is a secure channel established?
  550. if(retval == UA_STATUSCODE_GOOD && client->channel.connection->state == UA_CONNECTION_ESTABLISHED)
  551. retval = CloseSecureChannel(client);
  552. return retval;
  553. }
  554. UA_StatusCode UA_Client_manuallyRenewSecureChannel(UA_Client *client) {
  555. UA_StatusCode retval = SecureChannelHandshake(client, true);
  556. if(retval == UA_STATUSCODE_GOOD)
  557. client->state = UA_CLIENTSTATE_CONNECTED;
  558. return retval;
  559. }
  560. /****************/
  561. /* Raw Services */
  562. /****************/
  563. void __UA_Client_Service(UA_Client *client, const void *r, const UA_DataType *requestType,
  564. void *response, const UA_DataType *responseType) {
  565. /* Requests always begin witih a RequestHeader, therefore we can cast. */
  566. UA_RequestHeader *request = (void*)(uintptr_t)r;
  567. UA_StatusCode retval = UA_STATUSCODE_GOOD;
  568. UA_init(response, responseType);
  569. UA_ResponseHeader *respHeader = (UA_ResponseHeader*)response;
  570. /* make sure we have a valid session */
  571. retval = UA_Client_manuallyRenewSecureChannel(client);
  572. if(retval != UA_STATUSCODE_GOOD) {
  573. respHeader->serviceResult = retval;
  574. client->state = UA_CLIENTSTATE_ERRORED;
  575. return;
  576. }
  577. /* handling request parameters */
  578. UA_NodeId_copy(&client->authenticationToken, &request->authenticationToken);
  579. request->timestamp = UA_DateTime_now();
  580. request->requestHandle = ++client->requestHandle;
  581. /* Send the request */
  582. UA_UInt32 requestId = ++client->requestId;
  583. UA_LOG_DEBUG(client->config.logger, UA_LOGCATEGORY_CLIENT,
  584. "Sending a request of type %i", requestType->typeId.identifier.numeric);
  585. retval = UA_SecureChannel_sendBinaryMessage(&client->channel, requestId, request, requestType);
  586. if(retval != UA_STATUSCODE_GOOD) {
  587. if(retval == UA_STATUSCODE_BADENCODINGLIMITSEXCEEDED)
  588. respHeader->serviceResult = UA_STATUSCODE_BADREQUESTTOOLARGE;
  589. else
  590. respHeader->serviceResult = retval;
  591. client->state = UA_CLIENTSTATE_ERRORED;
  592. return;
  593. }
  594. /* Retrieve the response */
  595. // Todo: push this into the generic securechannel implementation for client and server
  596. UA_ByteString reply;
  597. UA_ByteString_init(&reply);
  598. UA_Boolean realloced = false;
  599. do {
  600. retval = client->connection.recv(&client->connection, &reply, client->config.timeout);
  601. retval |= UA_Connection_completeMessages(&client->connection, &reply, &realloced);
  602. if(retval != UA_STATUSCODE_GOOD) {
  603. respHeader->serviceResult = retval;
  604. client->state = UA_CLIENTSTATE_ERRORED;
  605. return;
  606. }
  607. } while(!reply.data);
  608. size_t offset = 0;
  609. UA_SecureConversationMessageHeader msgHeader;
  610. retval |= UA_SecureConversationMessageHeader_decodeBinary(&reply, &offset, &msgHeader);
  611. UA_SymmetricAlgorithmSecurityHeader symHeader;
  612. retval |= UA_SymmetricAlgorithmSecurityHeader_decodeBinary(&reply, &offset, &symHeader);
  613. UA_SequenceHeader seqHeader;
  614. retval |= UA_SequenceHeader_decodeBinary(&reply, &offset, &seqHeader);
  615. UA_NodeId responseId;
  616. retval |= UA_NodeId_decodeBinary(&reply, &offset, &responseId);
  617. UA_NodeId expectedNodeId = UA_NODEID_NUMERIC(0, responseType->typeId.identifier.numeric +
  618. UA_ENCODINGOFFSET_BINARY);
  619. if(retval != UA_STATUSCODE_GOOD)
  620. goto finish;
  621. /* Todo: we need to demux responses since a publish responses may come at any time */
  622. if(!UA_NodeId_equal(&responseId, &expectedNodeId) || seqHeader.requestId != requestId) {
  623. if(responseId.identifier.numeric != UA_NS0ID_SERVICEFAULT + UA_ENCODINGOFFSET_BINARY) {
  624. UA_LOG_ERROR(client->config.logger, UA_LOGCATEGORY_CLIENT,
  625. "Reply answers the wrong request. Expected ns=%i,i=%i. But retrieved ns=%i,i=%i",
  626. expectedNodeId.namespaceIndex, expectedNodeId.identifier.numeric,
  627. responseId.namespaceIndex, responseId.identifier.numeric);
  628. respHeader->serviceResult = UA_STATUSCODE_BADINTERNALERROR;
  629. } else
  630. retval = UA_decodeBinary(&reply, &offset, respHeader, &UA_TYPES[UA_TYPES_SERVICEFAULT]);
  631. goto finish;
  632. }
  633. retval = UA_decodeBinary(&reply, &offset, response, responseType);
  634. if(retval == UA_STATUSCODE_BADENCODINGLIMITSEXCEEDED)
  635. retval = UA_STATUSCODE_BADRESPONSETOOLARGE;
  636. finish:
  637. UA_SymmetricAlgorithmSecurityHeader_deleteMembers(&symHeader);
  638. if(!realloced)
  639. client->connection.releaseRecvBuffer(&client->connection, &reply);
  640. else
  641. UA_ByteString_deleteMembers(&reply);
  642. if(retval != UA_STATUSCODE_GOOD){
  643. UA_LOG_INFO(client->config.logger, UA_LOGCATEGORY_CLIENT, "Error receiving the response");
  644. client->state = UA_CLIENTSTATE_FAULTED;
  645. respHeader->serviceResult = retval;
  646. } else {
  647. client->state = UA_CLIENTSTATE_CONNECTED;
  648. }
  649. UA_LOG_DEBUG(client->config.logger, UA_LOGCATEGORY_CLIENT,
  650. "Received a response of type %i", responseId.identifier.numeric);
  651. }