Please follow these instructions
Please follow these instructions and stop at the beginning of "Build the code" section
To build the ROS2 code with security extensions, call:
colcon build --cmake-args -DSECURITY=ON
If you don't have OpenSSL installed, please see follow these instructions
It will be needed in the tutorial for downloading the sample policies. Run:
choco install -y svn
After opening a new command prompt, you should be able to run:
svn help
To use DDS-Security with Connext you will need to procure an RTI Licence and install the security plugin. See this page for details on installing the security plugins.
We will now create a folder to store all the files necessary for this demo:
md C:\dev\ros2\sros2_demo
cd sros2_demo
ros2 security create_keystore demo_keys
ros2 security create_key demo_keys /talker
ros2 security create_key demo_keys /listener
If unable to write 'random state'
appears then set the environment variable RANDFILE
.
set RANDFILE=C:\dev\ros2\sros2_demo\.rnd
Then re-run the commands above.
Prepare your environment by setting three following environment variables as follows
set ROS_SECURITY_ROOT_DIRECTORY=%cd%/demo_keys
set ROS_SECURITY_ENABLE=true
set ROS_SECURITY_STRATEGY=Enforce
ROS2 allows you to change DDS implementation at runtime. This demo can be run with fastrtps by setting:
set RMW_IMPLEMENTATION=rmw_fastrtps_cpp
And with Connext by setting:
set RMW_IMPLEMENTATION=rmw_connext_cpp
Note that secure communication between vendors is not supported.
Open a new terminal:
call <path_to_ros2_install>/setup.bat
set ROS_SECURITY_ROOT_DIRECTORY=%cd%/demo_keys
set ROS_SECURITY_ENABLE=true
set ROS_SECURITY_STRATEGY=Enforce
ros2 run demo_nodes_py talker
Open another terminal:
call <path_to_ros2_install>/setup.bat
set ROS_SECURITY_ROOT_DIRECTORY=%cd%/demo_keys
set ROS_SECURITY_ENABLE=true
set ROS_SECURITY_STRATEGY=Enforce
ros2 run demo_nodes_py listener
These nodes will be communicating using authentication and encryption! If you look at the packet contents on e.g. Wireshark, the messages will be encrypted.
Note: You can switch between the C++ (demo_nodes_cpp) and Python (demo_nodes_py) packages arbitrarily.
These nodes are able to communicate because we have created the appropriate keys and certificates for them. However, other nodes will not be able to communicate, e.g. the following invocation will fail to start a node with a name that is not associated with valid keys/certificates:
REM This will fail because the node name does not have valid keys/certificates
ros2 run demo_nodes_cpp talker --ros-args -r __node:=not_talker
The previous demo used authentication and encryption, but not access control, which means that any authenticated node would be able to publish and subscribe to any data stream (aka topic).
To increase the level of security in the system, you can define strict limits, known as access control, which restrict what each node is able to do.
For example, one node would be able to publish to a particular topic, and another node might be able to subscribe to that topic.
To do this, we will use the sample policy file provided in examples/sample_policy.xml
.
First, we will copy this sample policy file into our keystore:
svn checkout https://github.com/ros2/sros2/trunk/sros2/test/policies
And now we will use it to generate the XML permission files expected by the middleware:
ros2 security create_permission demo_keys /talker policies/sample_policy.xml
ros2 security create_permission demo_keys /listener policies/sample_policy.xml
These permission files will be stricter than the ones that were used in the previous demo: the nodes will only be allowed to publish or subscribe to the chatter
topic (and some other topics used for parameters).
In one terminal (after preparing the terminal as previously described), run the talker
demo program:
ros2 run demo_nodes_cpp talker
In another terminal (after preparing the terminal as previously described), we will do the same thing with the listener
program:
ros2 run demo_nodes_py listener
At this point, your talker
and listener
nodes should be communicating securely, using explicit access control lists!
Hooray!
The nodes will not be able to publish/subscribe to topics not listed in the policy.
For example, the following attempt for the listener
node to subscribe to a topic other than chatter
will fail:
REM This will fail because the node is not permitted to subscribe to topics other than chatter.
ros2 run demo_nodes_py listener --ros-args -r chatter:=not_chatter