123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711 |
- #include <ua_types_generated.h>
- #include "ua_client.h"
- #include "ua_nodeids.h"
- #include "ua_types.h"
- #include "ua_types_encoding_binary.h"
- #include "ua_transport_generated.h"
- struct UA_Client {
- /* Connection */
- UA_Connection connection;
- UA_String endpointUrl;
- UA_UInt32 sequenceNumber;
- UA_UInt32 requestId;
- /* Secure Channel */
- UA_ChannelSecurityToken securityToken;
- UA_ByteString clientNonce;
- UA_ByteString serverNonce;
- /* UA_SequenceHeader sequenceHdr; */
- /* UA_NodeId authenticationToken; */
- /* IdentityToken */
- UA_UserTokenPolicy token;
- /* Session */
- UA_NodeId sessionId;
- UA_NodeId authenticationToken;
- /* Config */
- UA_Logger logger;
- UA_ClientConfig config;
- UA_DateTime scExpiresAt;
- };
- const UA_EXPORT UA_ClientConfig UA_ClientConfig_standard =
- { 5 /* ms receive timout */, 30000, 2000,
- {.protocolVersion = 0, .sendBufferSize = 65536, .recvBufferSize = 65536,
- .maxMessageSize = 65536, .maxChunkCount = 1}};
- UA_Client * UA_Client_new(UA_ClientConfig config, UA_Logger logger) {
- UA_Client *client = UA_malloc(sizeof(UA_Client));
- if(!client)
- return UA_NULL;
- client->config = config;
- client->logger = logger;
- UA_String_init(&client->endpointUrl);
- UA_Connection_init(&client->connection);
- client->sequenceNumber = 0;
- client->requestId = 0;
- client->scExpiresAt = 0;
- /* Secure Channel */
- UA_ChannelSecurityToken_deleteMembers(&client->securityToken);
- UA_ByteString_init(&client->clientNonce);
- UA_ByteString_init(&client->serverNonce);
-
- UA_NodeId_init(&client->authenticationToken);
- return client;
- }
- void UA_Client_delete(UA_Client* client){
- UA_Connection_deleteMembers(&client->connection);
- UA_Connection_deleteMembers(&client->connection);
- UA_String_deleteMembers(&client->endpointUrl);
- /* Secure Channel */
- UA_ByteString_deleteMembers(&client->clientNonce);
- UA_ByteString_deleteMembers(&client->serverNonce);
- UA_UserTokenPolicy_deleteMembers(&client->token);
- free(client);
- }
- static UA_StatusCode HelAckHandshake(UA_Client *c) {
- UA_TcpMessageHeader messageHeader;
- messageHeader.messageTypeAndFinal = UA_MESSAGETYPEANDFINAL_HELF;
- UA_TcpHelloMessage hello;
- UA_String_copy(&c->endpointUrl, &hello.endpointUrl);
- UA_Connection *conn = &c->connection;
- hello.maxChunkCount = conn->localConf.maxChunkCount;
- hello.maxMessageSize = conn->localConf.maxMessageSize;
- hello.protocolVersion = conn->localConf.protocolVersion;
- hello.receiveBufferSize = conn->localConf.recvBufferSize;
- hello.sendBufferSize = conn->localConf.sendBufferSize;
- messageHeader.messageSize = UA_TcpHelloMessage_calcSizeBinary((UA_TcpHelloMessage const*)&hello) +
- UA_TcpMessageHeader_calcSizeBinary((UA_TcpMessageHeader const*)&messageHeader);
- UA_ByteString message;
- UA_StatusCode retval = c->connection.getBuffer(&c->connection, &message, messageHeader.messageSize);
- if(retval != UA_STATUSCODE_GOOD)
- return retval;
- size_t offset = 0;
- UA_TcpMessageHeader_encodeBinary(&messageHeader, &message, &offset);
- UA_TcpHelloMessage_encodeBinary(&hello, &message, &offset);
- UA_TcpHelloMessage_deleteMembers(&hello);
- retval = c->connection.write(&c->connection, &message);
- c->connection.releaseBuffer(&c->connection, &message);
- if(retval)
- return retval;
- UA_ByteString reply;
- UA_ByteString_init(&reply);
- do {
- retval = c->connection.recv(&c->connection, &reply, c->config.timeout);
- if(retval == UA_STATUSCODE_BADCONNECTIONCLOSED)
- return retval;
- } while(retval != UA_STATUSCODE_GOOD);
- offset = 0;
- UA_TcpMessageHeader_decodeBinary(&reply, &offset, &messageHeader);
- UA_TcpAcknowledgeMessage ackMessage;
- retval = UA_TcpAcknowledgeMessage_decodeBinary(&reply, &offset, &ackMessage);
- c->connection.releaseBuffer(&c->connection, &reply);
- if(retval != UA_STATUSCODE_GOOD)
- return retval;
- conn->remoteConf.maxChunkCount = ackMessage.maxChunkCount;
- conn->remoteConf.maxMessageSize = ackMessage.maxMessageSize;
- conn->remoteConf.protocolVersion = ackMessage.protocolVersion;
- conn->remoteConf.recvBufferSize = ackMessage.receiveBufferSize;
- conn->remoteConf.sendBufferSize = ackMessage.sendBufferSize;
- conn->state = UA_CONNECTION_ESTABLISHED;
- return UA_STATUSCODE_GOOD;
- }
- static UA_StatusCode SecureChannelHandshake(UA_Client *client, UA_Boolean renew) {
- UA_ByteString_deleteMembers(&client->clientNonce); // if the handshake is repeated
- UA_ByteString_newMembers(&client->clientNonce, 1);
- client->clientNonce.data[0] = 0;
- UA_SecureConversationMessageHeader messageHeader;
- messageHeader.messageHeader.messageTypeAndFinal = UA_MESSAGETYPEANDFINAL_OPNF;
- messageHeader.secureChannelId = 0;
- UA_SequenceHeader seqHeader;
- seqHeader.sequenceNumber = ++client->sequenceNumber;
- seqHeader.requestId = ++client->requestId;
- UA_AsymmetricAlgorithmSecurityHeader asymHeader;
- UA_AsymmetricAlgorithmSecurityHeader_init(&asymHeader);
- asymHeader.securityPolicyUri = UA_STRING_ALLOC("http://opcfoundation.org/UA/SecurityPolicy#None");
- /* id of opensecurechannelrequest */
- UA_NodeId requestType = UA_NODEID_NUMERIC(0, UA_NS0ID_OPENSECURECHANNELREQUEST + UA_ENCODINGOFFSET_BINARY);
- UA_OpenSecureChannelRequest opnSecRq;
- UA_OpenSecureChannelRequest_init(&opnSecRq);
- opnSecRq.requestHeader.timestamp = UA_DateTime_now();
- opnSecRq.requestHeader.authenticationToken = client->authenticationToken;
- opnSecRq.requestedLifetime = client->config.secureChannelLifeTime;
- if(renew) {
- opnSecRq.requestType = UA_SECURITYTOKENREQUESTTYPE_RENEW;
- } else {
- opnSecRq.requestType = UA_SECURITYTOKENREQUESTTYPE_ISSUE;
- UA_ByteString_copy(&client->clientNonce, &opnSecRq.clientNonce);
- opnSecRq.securityMode = UA_MESSAGESECURITYMODE_NONE;
- }
- messageHeader.messageHeader.messageSize =
- UA_SecureConversationMessageHeader_calcSizeBinary(&messageHeader) +
- UA_AsymmetricAlgorithmSecurityHeader_calcSizeBinary(&asymHeader) +
- UA_SequenceHeader_calcSizeBinary(&seqHeader) +
- UA_NodeId_calcSizeBinary(&requestType) +
- UA_OpenSecureChannelRequest_calcSizeBinary(&opnSecRq);
- UA_ByteString message;
- UA_StatusCode retval = client->connection.getBuffer(&client->connection, &message,
- messageHeader.messageHeader.messageSize);
- if(retval != UA_STATUSCODE_GOOD) {
- UA_AsymmetricAlgorithmSecurityHeader_deleteMembers(&asymHeader);
- UA_OpenSecureChannelRequest_deleteMembers(&opnSecRq);
- return retval;
- }
- size_t offset = 0;
- UA_SecureConversationMessageHeader_encodeBinary(&messageHeader, &message, &offset);
- UA_AsymmetricAlgorithmSecurityHeader_encodeBinary(&asymHeader, &message, &offset);
- UA_SequenceHeader_encodeBinary(&seqHeader, &message, &offset);
- UA_NodeId_encodeBinary(&requestType, &message, &offset);
- UA_OpenSecureChannelRequest_encodeBinary(&opnSecRq, &message, &offset);
- UA_AsymmetricAlgorithmSecurityHeader_deleteMembers(&asymHeader);
- UA_OpenSecureChannelRequest_deleteMembers(&opnSecRq);
- retval = client->connection.write(&client->connection, &message);
- client->connection.releaseBuffer(&client->connection, &message);
- if(retval)
- return retval;
- // parse the response
- UA_ByteString reply;
- UA_ByteString_init(&reply);
- do {
- retval = client->connection.recv(&client->connection, &reply, client->config.timeout);
- if(retval == UA_STATUSCODE_BADCONNECTIONCLOSED)
- return retval;
- } while(retval != UA_STATUSCODE_GOOD);
- offset = 0;
- UA_SecureConversationMessageHeader_decodeBinary(&reply, &offset, &messageHeader);
- UA_AsymmetricAlgorithmSecurityHeader_decodeBinary(&reply, &offset, &asymHeader);
- UA_SequenceHeader_decodeBinary(&reply, &offset, &seqHeader);
- UA_NodeId_decodeBinary(&reply, &offset, &requestType);
- UA_NodeId expectedRequest = UA_NODEID_NUMERIC(0, UA_NS0ID_OPENSECURECHANNELRESPONSE +
- UA_ENCODINGOFFSET_BINARY);
- if(!UA_NodeId_equal(&requestType, &expectedRequest)) {
- client->connection.releaseBuffer(&client->connection, &reply);
- UA_AsymmetricAlgorithmSecurityHeader_deleteMembers(&asymHeader);
- UA_NodeId_deleteMembers(&requestType);
- return UA_STATUSCODE_BADINTERNALERROR;
- }
- UA_OpenSecureChannelResponse response;
- UA_OpenSecureChannelResponse_decodeBinary(&reply, &offset, &response);
- client->scExpiresAt = UA_DateTime_now() + response.securityToken.revisedLifetime * 10000;
- client->connection.releaseBuffer(&client->connection, &reply);
- retval = response.responseHeader.serviceResult;
- if(!renew && retval == UA_STATUSCODE_GOOD) {
- UA_ChannelSecurityToken_copy(&response.securityToken, &client->securityToken);
- UA_ByteString_deleteMembers(&client->serverNonce); // if the handshake is repeated
- UA_ByteString_copy(&response.serverNonce, &client->serverNonce);
- }
- UA_OpenSecureChannelResponse_deleteMembers(&response);
- UA_AsymmetricAlgorithmSecurityHeader_deleteMembers(&asymHeader);
- return retval;
- }
- /** If the request fails, then the response is cast to UA_ResponseHeader (at the beginning of every
- response) and filled with the appropriate error code */
- static void sendReceiveRequest(UA_RequestHeader *request, const UA_DataType *requestType,
- void *response, const UA_DataType *responseType, UA_Client *client,
- UA_Boolean sendOnly) {
- //check if sc needs to be renewed
- if(client->scExpiresAt-UA_DateTime_now() <= client->config.timeToRenewSecureChannel * 10000){ //less than 3 seconds left to expire -> renew
- UA_Client_renewSecureChannel(client);
- }
- if(response)
- UA_init(response, responseType);
- else
- return;
- UA_NodeId_copy(&client->authenticationToken, &request->authenticationToken);
- UA_SecureConversationMessageHeader msgHeader;
- if(sendOnly)
- msgHeader.messageHeader.messageTypeAndFinal = UA_MESSAGETYPEANDFINAL_CLOF;
- else
- msgHeader.messageHeader.messageTypeAndFinal = UA_MESSAGETYPEANDFINAL_MSGF;
- msgHeader.secureChannelId = client->securityToken.channelId;
- UA_SymmetricAlgorithmSecurityHeader symHeader;
- symHeader.tokenId = client->securityToken.tokenId;
-
- UA_SequenceHeader seqHeader;
- seqHeader.sequenceNumber = ++client->sequenceNumber;
- seqHeader.requestId = ++client->requestId;
- UA_NodeId requestId = UA_NODEID_NUMERIC(0, requestType->typeId.identifier.numeric +
- UA_ENCODINGOFFSET_BINARY);
- msgHeader.messageHeader.messageSize =
- UA_SecureConversationMessageHeader_calcSizeBinary(&msgHeader) +
- UA_SymmetricAlgorithmSecurityHeader_calcSizeBinary(&symHeader) +
- UA_SequenceHeader_calcSizeBinary(&seqHeader) +
- UA_NodeId_calcSizeBinary(&requestId) +
- UA_calcSizeBinary(request, requestType);
- UA_ByteString message;
- UA_StatusCode retval = client->connection.getBuffer(&client->connection, &message, msgHeader.messageHeader.messageSize);
- if(retval != UA_STATUSCODE_GOOD) {
- // todo: print error message
- return;
- }
- size_t offset = 0;
- retval |= UA_SecureConversationMessageHeader_encodeBinary(&msgHeader, &message, &offset);
- retval |= UA_SymmetricAlgorithmSecurityHeader_encodeBinary(&symHeader, &message, &offset);
- retval |= UA_SequenceHeader_encodeBinary(&seqHeader, &message, &offset);
- retval |= UA_NodeId_encodeBinary(&requestId, &message, &offset);
- retval |= UA_encodeBinary(request, requestType, &message, &offset);
- retval |= client->connection.write(&client->connection, &message);
- UA_ResponseHeader *respHeader = (UA_ResponseHeader*)response;
- client->connection.releaseBuffer(&client->connection, &message);
- if(retval != UA_STATUSCODE_GOOD) {
- //send failed
- respHeader->serviceResult = retval;
- return;
- }
- //TODO: rework to get return value
- if(sendOnly)
- return;
- /* Response */
- UA_ByteString reply;
- UA_ByteString_init(&reply);
- do {
- retval = client->connection.recv(&client->connection, &reply, client->config.timeout);
- if(retval == UA_STATUSCODE_BADCONNECTIONCLOSED) {
- respHeader->serviceResult = retval;
- return;
- }
- } while(retval != UA_STATUSCODE_GOOD);
- offset = 0;
- retval |= UA_SecureConversationMessageHeader_decodeBinary(&reply, &offset, &msgHeader);
- retval |= UA_SymmetricAlgorithmSecurityHeader_decodeBinary(&reply, &offset, &symHeader);
- retval |= UA_SequenceHeader_decodeBinary(&reply, &offset, &seqHeader);
- UA_NodeId responseId;
- retval |= UA_NodeId_decodeBinary(&reply, &offset, &responseId);
- UA_NodeId expectedNodeId = UA_NODEID_NUMERIC(0, responseType->typeId.identifier.numeric +
- UA_ENCODINGOFFSET_BINARY);
- if(!UA_NodeId_equal(&responseId, &expectedNodeId)) {
- client->connection.releaseBuffer(&client->connection, &reply);
- UA_SymmetricAlgorithmSecurityHeader_deleteMembers(&symHeader);
- respHeader->serviceResult = retval;
- return;
- }
- retval = UA_decodeBinary(&reply, &offset, response, responseType);
- client->connection.releaseBuffer(&client->connection, &reply);
- if(retval != UA_STATUSCODE_GOOD)
- respHeader->serviceResult = retval;
- }
- static void synchronousRequest(void *request, const UA_DataType *requestType, void *response,
- const UA_DataType *responseType, UA_Client *client) {
- sendReceiveRequest(request, requestType, response, responseType, client, UA_FALSE);
- }
- static UA_StatusCode ActivateSession(UA_Client *client) {
- UA_ActivateSessionRequest request;
- UA_ActivateSessionRequest_init(&request);
- request.requestHeader.requestHandle = 2; //TODO: is it a magic number?
- request.requestHeader.authenticationToken = client->authenticationToken;
- request.requestHeader.timestamp = UA_DateTime_now();
- request.requestHeader.timeoutHint = 10000;
- UA_AnonymousIdentityToken identityToken;
- UA_AnonymousIdentityToken_init(&identityToken);
- UA_String_copy(&client->token.policyId, &identityToken.policyId);
- //manual ExtensionObject encoding of the identityToken
- request.userIdentityToken.encoding = UA_EXTENSIONOBJECT_ENCODINGMASK_BODYISBYTESTRING;
- request.userIdentityToken.typeId = UA_TYPES[UA_TYPES_ANONYMOUSIDENTITYTOKEN].typeId;
- request.userIdentityToken.typeId.identifier.numeric+=UA_ENCODINGOFFSET_BINARY;
- UA_ByteString_newMembers(&request.userIdentityToken.body, identityToken.policyId.length+4);
- size_t offset = 0;
- UA_ByteString_encodeBinary(&identityToken.policyId,&request.userIdentityToken.body,&offset);
- UA_ActivateSessionResponse response;
- synchronousRequest(&request, &UA_TYPES[UA_TYPES_ACTIVATESESSIONREQUEST],
- &response, &UA_TYPES[UA_TYPES_ACTIVATESESSIONRESPONSE],
- client);
- UA_AnonymousIdentityToken_deleteMembers(&identityToken);
- UA_ActivateSessionRequest_deleteMembers(&request);
- UA_ActivateSessionResponse_deleteMembers(&response);
- return response.responseHeader.serviceResult; // not deleted
- }
- static UA_StatusCode EndpointsHandshake(UA_Client *client) {
- UA_GetEndpointsRequest request;
- UA_GetEndpointsRequest_init(&request);
- // todo: is this needed for all requests?
- UA_NodeId_copy(&client->authenticationToken, &request.requestHeader.authenticationToken);
- request.requestHeader.timestamp = UA_DateTime_now();
- request.requestHeader.timeoutHint = 10000;
- UA_String_copy(&client->endpointUrl, &request.endpointUrl);
- request.profileUrisSize = 1;
- request.profileUris = UA_Array_new(&UA_TYPES[UA_TYPES_STRING], request.profileUrisSize);
- request.profileUris[0] = UA_STRING_ALLOC("http://opcfoundation.org/UA-Profile/Transport/uatcp-uasc-uabinary");
- UA_GetEndpointsResponse response;
- UA_GetEndpointsResponse_init(&response);
- synchronousRequest(&request, &UA_TYPES[UA_TYPES_GETENDPOINTSREQUEST],
- &response, &UA_TYPES[UA_TYPES_GETENDPOINTSRESPONSE],
- client);
- UA_Boolean endpointFound = UA_FALSE;
- UA_Boolean tokenFound = UA_FALSE;
- for(UA_Int32 i=0; i<response.endpointsSize; ++i){
- UA_EndpointDescription* endpoint = &response.endpoints[i];
- /* look out for an endpoint without security */
- if(UA_String_equal(&endpoint->securityPolicyUri, &UA_STRING("http://opcfoundation.org/UA/SecurityPolicy#None"))){
- endpointFound = UA_TRUE;
- /* endpoint with no security found */
- /* look for a user token policy with an anonymous token */
- for(UA_Int32 j=0; j<endpoint->userIdentityTokensSize; ++j){
- UA_UserTokenPolicy* userToken = &endpoint->userIdentityTokens[j];
- if(userToken->tokenType == UA_USERTOKENTYPE_ANONYMOUS){
- tokenFound = UA_TRUE;
- UA_UserTokenPolicy_copy(userToken, &client->token);
- break;
- }
- }
- }
- }
- UA_GetEndpointsRequest_deleteMembers(&request);
- UA_GetEndpointsResponse_deleteMembers(&response);
- if(!endpointFound){
- printf("No suitable endpoint found\n");
- return UA_STATUSCODE_BADINTERNALERROR;
- }
- if(!tokenFound){
- printf("No anonymous token found\n");
- return UA_STATUSCODE_BADINTERNALERROR;
- }
- return response.responseHeader.serviceResult; // not deleted
- }
- static UA_StatusCode SessionHandshake(UA_Client *client) {
- UA_CreateSessionRequest request;
- UA_CreateSessionRequest_init(&request);
- // todo: is this needed for all requests?
- UA_NodeId_copy(&client->authenticationToken, &request.requestHeader.authenticationToken);
- request.requestHeader.timestamp = UA_DateTime_now();
- request.requestHeader.timeoutHint = 10000;
- UA_ByteString_copy(&client->clientNonce, &request.clientNonce);
- request.requestedSessionTimeout = 1200000;
- request.maxResponseMessageSize = UA_INT32_MAX;
- /* UA_String_copy(endpointUrl, &rq.endpointUrl); */
- /* UA_String_copycstring("mysession", &rq.sessionName); */
- /* UA_String_copycstring("abcd", &rq.clientCertificate); */
- UA_CreateSessionResponse response;
- UA_CreateSessionResponse_init(&response);
- synchronousRequest(&request, &UA_TYPES[UA_TYPES_CREATESESSIONREQUEST],
- &response, &UA_TYPES[UA_TYPES_CREATESESSIONRESPONSE],
- client);
- UA_NodeId_copy(&response.authenticationToken, &client->authenticationToken);
- UA_CreateSessionRequest_deleteMembers(&request);
- UA_CreateSessionResponse_deleteMembers(&response);
- return response.responseHeader.serviceResult; // not deleted
- }
- static UA_StatusCode CloseSession(UA_Client *client) {
- UA_CloseSessionRequest request;
- UA_CloseSessionRequest_init(&request);
- request.requestHeader.timestamp = UA_DateTime_now();
- request.requestHeader.timeoutHint = 10000;
- request.deleteSubscriptions = UA_TRUE;
- UA_NodeId_copy(&client->authenticationToken, &request.requestHeader.authenticationToken);
- UA_CreateSessionResponse response;
- synchronousRequest(&request, &UA_TYPES[UA_TYPES_CLOSESESSIONREQUEST],
- &response, &UA_TYPES[UA_TYPES_CLOSESESSIONRESPONSE],
- client);
- UA_CloseSessionRequest_deleteMembers(&request);
- UA_CloseSessionResponse_deleteMembers(&response);
- return response.responseHeader.serviceResult; // not deleted
- }
- static UA_StatusCode CloseSecureChannel(UA_Client *client) {
- UA_CloseSecureChannelRequest request;
- UA_CloseSecureChannelRequest_init(&request);
- request.requestHeader.requestHandle = 1; //TODO: magic number?
- request.requestHeader.timestamp = UA_DateTime_now();
- request.requestHeader.timeoutHint = 10000;
- request.requestHeader.authenticationToken = client->authenticationToken;
- sendReceiveRequest(&request.requestHeader, &UA_TYPES[UA_TYPES_CLOSESECURECHANNELREQUEST], UA_NULL, UA_NULL,
- client, UA_TRUE);
- return UA_STATUSCODE_GOOD;
- }
- /*************************/
- /* User-Facing Functions */
- /*************************/
- UA_StatusCode UA_Client_connect(UA_Client *client, UA_ConnectClientConnection connectFunc, char *endpointUrl) {
- client->connection = connectFunc(endpointUrl, &client->logger);
- if(client->connection.state != UA_CONNECTION_OPENING)
- return UA_STATUSCODE_BADCONNECTIONCLOSED;
- client->endpointUrl = UA_STRING_ALLOC(endpointUrl);
- if(client->endpointUrl.length < 0)
- return UA_STATUSCODE_BADOUTOFMEMORY;
- client->connection.localConf = client->config.localConnectionConfig;
- UA_StatusCode retval = HelAckHandshake(client);
- if(retval == UA_STATUSCODE_GOOD)
- retval = SecureChannelHandshake(client, UA_FALSE);
- if(retval == UA_STATUSCODE_GOOD)
- retval = EndpointsHandshake(client);
- if(retval == UA_STATUSCODE_GOOD)
- retval = SessionHandshake(client);
- if(retval == UA_STATUSCODE_GOOD)
- retval = ActivateSession(client);
- return retval;
- }
- UA_StatusCode UA_Client_disconnect(UA_Client *client) {
- UA_StatusCode retval;
- retval = CloseSession(client);
- if(retval == UA_STATUSCODE_GOOD)
- retval = CloseSecureChannel(client);
- return retval;
- }
- UA_StatusCode UA_Client_renewSecureChannel(UA_Client *client) {
- return SecureChannelHandshake(client, UA_TRUE);
- }
- UA_ReadResponse UA_Client_read(UA_Client *client, UA_ReadRequest *request) {
- UA_ReadResponse response;
- synchronousRequest(request, &UA_TYPES[UA_TYPES_READREQUEST], &response,
- &UA_TYPES[UA_TYPES_READRESPONSE], client);
- return response;
- }
- UA_WriteResponse UA_Client_write(UA_Client *client, UA_WriteRequest *request) {
- UA_WriteResponse response;
- synchronousRequest(request, &UA_TYPES[UA_TYPES_WRITEREQUEST], &response,
- &UA_TYPES[UA_TYPES_WRITERESPONSE], client);
- return response;
- }
- UA_BrowseResponse UA_Client_browse(UA_Client *client, UA_BrowseRequest *request) {
- UA_BrowseResponse response;
- synchronousRequest(request, &UA_TYPES[UA_TYPES_BROWSEREQUEST], &response,
- &UA_TYPES[UA_TYPES_BROWSERESPONSE], client);
- return response;
- }
- UA_BrowseNextResponse UA_Client_browseNext(UA_Client *client, UA_BrowseNextRequest *request) {
- UA_BrowseNextResponse response;
- synchronousRequest(request, &UA_TYPES[UA_TYPES_BROWSENEXTREQUEST], &response,
- &UA_TYPES[UA_TYPES_BROWSENEXTRESPONSE], client);
- return response;
- }
- UA_TranslateBrowsePathsToNodeIdsResponse
- UA_Client_translateTranslateBrowsePathsToNodeIds(UA_Client *client,
- UA_TranslateBrowsePathsToNodeIdsRequest *request) {
- UA_TranslateBrowsePathsToNodeIdsResponse response;
- synchronousRequest(request, &UA_TYPES[UA_TYPES_BROWSEREQUEST], &response,
- &UA_TYPES[UA_TYPES_BROWSERESPONSE], client);
- return response;
- }
- UA_AddNodesResponse UA_Client_addNodes(UA_Client *client, UA_AddNodesRequest *request) {
- UA_AddNodesResponse response;
- synchronousRequest(request, &UA_TYPES[UA_TYPES_ADDNODESREQUEST], &response,
- &UA_TYPES[UA_TYPES_ADDNODESRESPONSE], client);
- return response;
- }
- UA_AddReferencesResponse UA_Client_addReferences(UA_Client *client, UA_AddReferencesRequest *request) {
- UA_AddReferencesResponse response;
- synchronousRequest(request, &UA_TYPES[UA_TYPES_ADDREFERENCESREQUEST], &response,
- &UA_TYPES[UA_TYPES_ADDREFERENCESRESPONSE], client);
- return response;
- }
- UA_DeleteNodesResponse UA_Client_deleteNodes(UA_Client *client, UA_DeleteNodesRequest *request) {
- UA_DeleteNodesResponse response;
- synchronousRequest(request, &UA_TYPES[UA_TYPES_DELETENODESREQUEST], &response,
- &UA_TYPES[UA_TYPES_DELETENODESRESPONSE], client);
- return response;
- }
- UA_DeleteReferencesResponse UA_Client_deleteReferences(UA_Client *client, UA_DeleteReferencesRequest *request) {
- UA_DeleteReferencesResponse response;
- synchronousRequest(request, &UA_TYPES[UA_TYPES_DELETEREFERENCESREQUEST], &response,
- &UA_TYPES[UA_TYPES_DELETEREFERENCESRESPONSE], client);
- return response;;
- }
- /**********************************/
- /* User-Facing Macros-Function */
- /**********************************/
- #define ADDNODES_COPYDEFAULTATTRIBUTES(REQUEST,ATTRIBUTES) do { \
- ATTRIBUTES.specifiedAttributes = 0; \
- if(! UA_LocalizedText_copy(&description, &(ATTRIBUTES.description))) \
- ATTRIBUTES.specifiedAttributes |= UA_NODEATTRIBUTESMASK_DESCRIPTION; \
- if(! UA_LocalizedText_copy(&displayName, &(ATTRIBUTES.displayName))) \
- ATTRIBUTES.specifiedAttributes |= UA_NODEATTRIBUTESMASK_DISPLAYNAME; \
- ATTRIBUTES.userWriteMask = userWriteMask; \
- ATTRIBUTES.specifiedAttributes |= UA_NODEATTRIBUTESMASK_USERWRITEMASK; \
- ATTRIBUTES.writeMask = writeMask; \
- ATTRIBUTES.specifiedAttributes |= UA_NODEATTRIBUTESMASK_WRITEMASK; \
- UA_QualifiedName_copy(&browseName, &(REQUEST.nodesToAdd[0].browseName)); \
- UA_ExpandedNodeId_copy(&parentNodeId, &(REQUEST.nodesToAdd[0].parentNodeId)); \
- UA_NodeId_copy(&referenceTypeId, &(REQUEST.nodesToAdd[0].referenceTypeId)); \
- UA_ExpandedNodeId_copy(&typeDefinition, &(REQUEST.nodesToAdd[0].typeDefinition)); \
- REQUEST.nodesToAddSize = 1; \
- REQUEST.nodesToAdd[0].requestedNewNodeId = UA_EXPANDEDNODEID_NUMERIC(1, 0); \
- } while(0)
- #define ADDNODES_PACK_AND_SEND(PREQUEST,PATTRIBUTES,PNODETYPE) do { \
- PREQUEST.nodesToAdd[0].nodeAttributes.encoding = UA_EXTENSIONOBJECT_ENCODINGMASK_BODYISBYTESTRING; \
- PREQUEST.nodesToAdd[0].nodeAttributes.typeId = UA_NODEID_NUMERIC(0, UA_NS0ID_##PNODETYPE##ATTRIBUTES + UA_ENCODINGOFFSET_BINARY); \
- PREQUEST.nodesToAdd[0].nodeAttributes.body.length = UA_calcSizeBinary(&PATTRIBUTES, &UA_TYPES[UA_TYPES_##PNODETYPE##ATTRIBUTES]); \
- PREQUEST.nodesToAdd[0].nodeAttributes.body.data = (void *) malloc(PREQUEST.nodesToAdd[0].nodeAttributes.body.length); \
- size_t encOffset = 0; \
- UA_encodeBinary(&PATTRIBUTES,&UA_TYPES[UA_TYPES_##PNODETYPE##ATTRIBUTES], &(PREQUEST.nodesToAdd[0].nodeAttributes.body), &encOffset); \
- *(adRes) = UA_Client_addNodes(client, &PREQUEST); \
- UA_AddNodesRequest_deleteMembers(&PREQUEST); \
- } while(0)
- /* NodeManagement */
- UA_AddNodesResponse *UA_Client_createObjectNode(UA_Client *client, UA_QualifiedName browseName, UA_LocalizedText displayName,
- UA_LocalizedText description, UA_ExpandedNodeId parentNodeId, UA_NodeId referenceTypeId,
- UA_UInt32 userWriteMask, UA_UInt32 writeMask, UA_ExpandedNodeId typeDefinition ) {
- UA_AddNodesRequest adReq;
- UA_AddNodesRequest_init(&adReq);
-
- UA_AddNodesResponse *adRes;
- adRes = UA_AddNodesResponse_new();
- UA_AddNodesResponse_init(adRes);
-
- UA_ObjectAttributes vAtt;
- UA_ObjectAttributes_init(&vAtt);
- adReq.nodesToAdd = (UA_AddNodesItem *) UA_AddNodesItem_new();
- UA_AddNodesItem_init(adReq.nodesToAdd);
-
- // Default node properties and attributes
- ADDNODES_COPYDEFAULTATTRIBUTES(adReq, vAtt);
-
- // Specific to objects
- adReq.nodesToAdd[0].nodeClass = UA_NODECLASS_OBJECT;
- vAtt.eventNotifier = 0;
- vAtt.specifiedAttributes |= UA_NODEATTRIBUTESMASK_EVENTNOTIFIER;
-
- ADDNODES_PACK_AND_SEND(adReq,vAtt,OBJECT);
-
- return adRes;
- }
- UA_AddNodesResponse *UA_Client_createVariableNode(UA_Client *client, UA_QualifiedName browseName, UA_LocalizedText displayName,
- UA_LocalizedText description, UA_ExpandedNodeId parentNodeId, UA_NodeId referenceTypeId,
- UA_UInt32 userWriteMask, UA_UInt32 writeMask, UA_ExpandedNodeId typeDefinition,
- UA_NodeId dataType, UA_Variant *value ) {
- UA_AddNodesRequest adReq;
- UA_AddNodesRequest_init(&adReq);
-
- UA_AddNodesResponse *adRes;
- adRes = UA_AddNodesResponse_new();
- UA_AddNodesResponse_init(adRes);
-
- UA_VariableAttributes vAtt;
- UA_VariableAttributes_init(&vAtt);
- adReq.nodesToAdd = (UA_AddNodesItem *) UA_AddNodesItem_new();
- UA_AddNodesItem_init(adReq.nodesToAdd);
-
- // Default node properties and attributes
- ADDNODES_COPYDEFAULTATTRIBUTES(adReq, vAtt);
-
- // Specific to objects
- adReq.nodesToAdd[0].nodeClass = UA_NODECLASS_VARIABLE;
- vAtt.accessLevel = 0;
- vAtt.specifiedAttributes |= UA_NODEATTRIBUTESMASK_ACCESSLEVEL;
- vAtt.userAccessLevel = 0;
- vAtt.specifiedAttributes |= UA_NODEATTRIBUTESMASK_USERACCESSLEVEL;
- vAtt.minimumSamplingInterval = 100;
- vAtt.specifiedAttributes |= UA_NODEATTRIBUTESMASK_MINIMUMSAMPLINGINTERVAL;
- vAtt.historizing = UA_FALSE;
- vAtt.specifiedAttributes |= UA_NODEATTRIBUTESMASK_HISTORIZING;
-
- if (value != NULL) {
- UA_Variant_copy(value, &(vAtt.value));
- vAtt.specifiedAttributes |= UA_NODEATTRIBUTESMASK_VALUE;
- vAtt.valueRank = -2;
- vAtt.specifiedAttributes |= UA_NODEATTRIBUTESMASK_VALUERANK;
- // These are defined by the variant
- //vAtt.arrayDimensionsSize = value->arrayDimensionsSize;
- //vAtt.arrayDimensions = NULL;
- }
- UA_NodeId_copy(&dataType, &(vAtt.dataType));
-
- ADDNODES_PACK_AND_SEND(adReq,vAtt,VARIABLE);
-
- return adRes;
- }
|