open62541 1.4.15
Open source implementation of OPC UA
Loading...
Searching...
No Matches
open62541

open62541 Logo
https://open62541.org | https://www.o6-automation.com


open62541 (http://open62541.org) is an open source implementation of OPC UA (OPC Unified Architecture / IEC 62541) written in the C language. The library is usable with all major compilers and provides the necessary tools to implement dedicated OPC UA clients and servers, or to integrate OPC UA-based communication into existing applications. See the features overview for full details. The open62541 library is platform independent: All platform-specific functionality is implemented via exchangeable plugins for easy porting to different (embedded) targets.

open62541 is licensed under the Mozilla Public License v2.0 (MPLv2). This allows the open62541 library to be combined and distributed with any proprietary software. Only changes to the open62541 library itself need to be licensed under the MPLv2 when copied and distributed. Some plugins and examples are in the public domain (CC0 license) and some are licensed under MPLv2. The CC0 licensed ones can be reused under any license and changes do not have to be published.

The library is available in standard source and binary form. In addition, the single-file source distribution merges the entire library into a single .c and .h file that can be easily added to existing projects. Example server and client implementations can be found in the /examples directory or further down on this page.

Open Hub Project Status Build Status Code Scanning Fuzzing Status codecov

Documentation and Support

A general introduction to OPC UA and the open62541 documentation can be found at http://open62541.org. Past releases of the library can be downloaded at https://github.com/open62541/open62541/releases.

The overall open62541 community handles public support requests on Github and the mailing list. For individual discussion and support, use the following channels:

o6 Automation GmbH employs the core contributors to open62541 and provides commercial support. The project is however open to outside contributions and contributors retain their individual copyright. This prevents future relicensing under different license conditions.

We want to foster an open and welcoming community. Please take our code of conduct into regard.

Commercial Use

open62541 is licensed under the MPLv2. That is, changes to files under MPLv2 fall under the same open-source license. But the library can be combined with private development from separate files, also if a static binary is produced, without the license affecting the private files. See the full [license document](LICENSE) for details.

Official Certification

An example server built with open62541 v1.4 was certified for the 'Standard Server 2017 Profile' by the OPC Foundation. See https://open62541.org/certification for more details.

Development

As an open source project, new contributors are encouraged to help improve open62541. The file CONTRIBUTING.md aggregates good practices that we expect for code contributions. The following are good starting points for new contributors:

  • Report bugs
  • Improve the documentation
  • Work on issues marked as "[good first issue](https://github.com/open62541/open62541/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22)"

For custom development that shall eventually become part of the open62541 library, please keep one of the core maintainers in the loop.

Dependencies

On most systems, open62541 requires the C standard library only. For dependencies during the build process, see the following list and the build documentation for details.

  • Core Library: The core library has no dependencies besides the C99 standard headers.
  • Default Plugins: The default plugins use the POSIX interfaces for networking and accessing the system clock. Ports to different (embedded) architectures are achieved by customizing the plugins.
  • Building and Code Generation: The build environment is generated via CMake. Some code is auto-generated from XML definitions that are part of the OPC UA standard. The code generation scripts run with both Python 2 and 3.

Note: Some (optional) features are dependent on third-party libraries. These are all listed under the deps/ folder. Depending on the selected feature set, some of these libraries will be included in the resulting library. More information on the third-party libraries can be found in the corresponding deps/README.md

Code Quality

We emphasize code quality. The following quality metrics are continuously checked and are ensured to hold before an official release is made:

  • Zero errors indicated by the Compliance Testing Tool (CTT) of the OPC Foundation for the supported features
  • Zero compiler warnings from GCC/Clang/MSVC with very strict compilation flags
  • Zero issues indicated by unit tests (more than 80% coverage)
  • Zero issues indicated by clang-analyzer, clang-tidy, cpp-check and the Codacy static code analysis tools
  • Zero unresolved issues from fuzzing the library in Google's oss-fuzz infrastructure
  • Zero issues indicated by Valgrind (Linux), DrMemory (Windows) and Clang AddressSanitizer / MemorySanitizer for the CTT tests, unit tests and fuzzing

Installation and Examples

On Debian/Ubuntu systems, a simple apt install libopen62541-1.4-dev installs the library and the development header files. Using the GCC compiler, just run gcc -std=c99 <server.c> -lopen62541 -o server.

A more detailed explanation on how to install the open62541 SDK is given in our documentation. In essence, clone the repository and initialize all the submodules using git submodule update --init --recursive. Then use CMake to configure your build.

A complete list of examples can be found in the examples directory.

Example Server Implementation

int main(int argc, char** argv)
{
/* Create a server listening on port 4840 (default) */
UA_Server *server = UA_Server_new();
/* Add a variable node to the server */
/* 1) Define the variable attributes */
attr.displayName = UA_LOCALIZEDTEXT("en-US", "the answer");
UA_Int32 myInteger = 42;
/* 2) Define where the node shall be added with which browsename */
UA_NodeId newNodeId = UA_NODEID_STRING(1, "the.answer");
UA_NodeId parentNodeId = UA_NODEID_NUMERIC(0, UA_NS0ID_OBJECTSFOLDER);
UA_NodeId parentReferenceNodeId = UA_NODEID_NUMERIC(0, UA_NS0ID_ORGANIZES);
UA_NodeId variableType = UA_NODEID_NULL; /* take the default variable type */
UA_QualifiedName browseName = UA_QUALIFIEDNAME(1, "the answer");
/* 3) Add the node */
UA_Server_addVariableNode(server, newNodeId, parentNodeId,
parentReferenceNodeId, browseName,
variableType, attr, NULL, NULL);
/* Run the server (until ctrl-c interrupt) */
/* Clean up */
return status == UA_STATUSCODE_GOOD ? EXIT_SUCCESS : EXIT_FAILURE;
}
struct UA_Server UA_Server
Definition common.h:198
#define UA_NS0ID_ORGANIZES
Definition nodeids.h:42
#define UA_NS0ID_OBJECTSFOLDER
Definition nodeids.h:75
UA_EXPORT UA_StatusCode UA_Server_runUntilInterrupt(UA_Server *server)
Runs the server until interrupted.
UA_EXPORT UA_StatusCode UA_Server_delete(UA_Server *server)
Delete the server.
UA_EXPORT UA_Server * UA_Server_new(void)
Create a new server with a default configuration that adds plugins for networking,...
#define UA_STATUSCODE_GOOD
The operation succeeded.
Definition statuscodes.h:8
VariableAttributes.
UA_LocalizedText displayName
int32_t UA_Int32
Definition types.h:52
const UA_DataType void UA_Variant_setScalar(UA_Variant *v, void *p, const UA_DataType *type)
Set the variant to a scalar value that already resides in memory.
UA_EXPORT const UA_NodeId UA_NODEID_NULL
uint32_t UA_StatusCode
Definition types.h:82
#define UA_TYPES_INT32
Int32.
UA_DataType UA_TYPES[388]
UA_EXPORT const UA_VariableAttributes UA_VariableAttributes_default
The default for variables is "BaseDataType" for the datatype, -2 for the valuerank and a read-accessl...

Example Client Implementation

#include <stdio.h>
int main(int argc, char *argv[])
{
/* Create a client and connect */
UA_Client *client = UA_Client_new();
UA_StatusCode status = UA_Client_connect(client, "opc.tcp://localhost:4840");
if(status != UA_STATUSCODE_GOOD) {
return status;
}
/* Read the value attribute of the node. UA_Client_readValueAttribute is a
* wrapper for the raw read service available as UA_Client_Service_read. */
UA_Variant value; /* Variants can hold scalar values and arrays of any type */
UA_Variant_init(&value);
status = UA_Client_readValueAttribute(client, UA_NODEID_STRING(1, "the.answer"), &value);
if(status == UA_STATUSCODE_GOOD &&
UA_Variant_hasScalarType(&value, &UA_TYPES[UA_TYPES_INT32])) {
printf("the value is: %i\n", *(UA_Int32*)value.data);
}
/* Clean up */
UA_Variant_clear(&value);
UA_Client_delete(client); /* Disconnects the client internally */
return status == UA_STATUSCODE_GOOD ? EXIT_SUCCESS : EXIT_FAILURE;
}
UA_EXPORT UA_ClientConfig * UA_Client_getConfig(UA_Client *client)
Get the client configuration.
UA_EXPORT UA_Client * UA_Client_new(void)
Create a new client with a default configuration that adds plugins for networking,...
void UA_Client_delete(UA_Client *client)
(Disconnect and) delete the client
_UA_BEGIN_DECLS UA_StatusCode UA_ClientConfig_setDefault(UA_ClientConfig *config)
This work is licensed under a Creative Commons CCZero 1.0 Universal License.
struct UA_Client UA_Client
Definition common.h:206
void * data
Definition types.h:583