rm -f ./CLI_OK ./PLC_OK ./PLC_CONNECTED
export BEREMIZ_APPDATA=`pwd`/AppData
mkdir -p $BEREMIZ_APPDATA
KEYSTORE=$BEREMIZ_APPDATA/keystore
# Set BEREMIZ_LOCAL_HOST to localhost if not already set
: ${BEREMIZ_LOCAL_HOST:=localhost}
URI="WAMPS-CRT://${BEREMIZ_LOCAL_HOST}:8888/ws#Automation#${PLC_wamp_ID}"
client_cns=(${IDE_wamp_ID} ${PLC_wamp_ID})
# Create base directory for the certificates and keys
mkdir -p certs/server certs/clients
openssl req -nodes -new -x509 -keyout certs/server/server.key \
-subj "/C=FR/L=Paris/O=Beremiz/OU=server/CN=${BEREMIZ_LOCAL_HOST}" \
-addext "subjectAltName=DNS:${BEREMIZ_LOCAL_HOST}" \
-out certs/server/server.crt
# Declare an associative array to store client certificate SHA1 fingerprints
declare -A client_fingerprints
# Loop through each client CN and generate keys and certificates
for cn in "${client_cns[@]}"; do
# Generate client cert to be signed
openssl req -nodes -newkey rsa:2048 -keyout certs/clients/${cn}.key \
-subj "/C=FR/L=Paris/O=Beremiz/OU=client/CN=${cn}" \
-addext "subjectAltName=DNS:${cn}" \
-out certs/clients/${cn}.csr
openssl x509 -req -in certs/clients/${cn}.csr \
-CA certs/server/server.crt \
-CAkey certs/server/server.key \
-out certs/clients/${cn}.crt \
# -extfile <(printf "subjectAltName=DNS:${cn}")
# Get the SHA1 fingerprint of the client certificate
fingerprint=$(openssl x509 -in certs/clients/${cn}.crt -noout -fingerprint -sha1 | sed 's/.*=//')
client_fingerprints["${cn}"]="${fingerprint}"
# Create a PEM file containing the client certificate and private key
cat "certs/clients/${cn}.crt" "certs/clients/${cn}.key" > "certs/clients/${cn}.pem"
# Prepare crossbar server configuration
cp certs/server/server.crt ./.crossbar/ca.crt # In our test server is CA
cp certs/server/server.key ./.crossbar/server.key
cp certs/server/server.crt ./.crossbar/server.crt
# Crossbar need a Python Authenticator component to decide if Client Cert is OK
cat > authenticator.py <<PythonEnd
from twisted.internet.defer import inlineCallbacks
from autobahn.twisted.wamp import ApplicationSession
from autobahn.wamp.exception import ApplicationError
class AutomationAuthenticator(ApplicationSession):
# our "database" of accepted client certificate fingerprints
for client in "${!client_fingerprints[@]}"; do
echo " '${client_fingerprints[$client]}':'${client}'," >> authenticator.py
cat >> authenticator.py <<PythonEnd
def onJoin(self, details):
def authenticate(realm, authid, details):
client_cert = details['transport'].get('peer_cert', None)
raise ApplicationError("automation.no_cert", "no client certificate presented")
sha1 = client_cert['sha1']
subject_cn = client_cert['subject']['cn']
if sha1 not in self.ACCEPTED_CERTS:
print("AutomationAuthenticator.authenticate: client denied.")
raise ApplicationError("automation.invalid_cert", "certificate with SHA1 {} denied".format(sha1))
print("AutomationAuthenticator.authenticate: client accepted.")
yield self.register(authenticate, 'automation.authenticate')
print("AutomationAuthenticator: dynamic authenticator registered.")
print("AutomationAuthenticator: could not register dynamic authenticator - {}".format(e))
# Crossbar configuration that uses Python Authenticator component
cat > .crossbar/config.json <<JsonEnd
"id": "automation_router",
"uri": "automation.authenticate",
"certificate": "server.crt",
"authenticator": "automation.authenticate"
"classname": "authenticator.AutomationAuthenticator",
crossbar start &> crossbar_log.txt &
res=110 # default to ETIMEDOUT
if [[ -a .crossbar/node.pid ]]; then
echo wait for crossbar to start.... $c
if [ "$res" != "0" ] ; then
echo timeout starting crossbar.
# give more time to crossbar
# Prepare runtime Wamp config
cat > wampconf.json <<JsonEnd
"authentication": "ClientCertificate",
"url": "wss://${BEREMIZ_LOCAL_HOST}:8888/ws"
# Re-use self-signed server cert for client
cp .crossbar/server.crt wampTrustStore.crt
cp certs/clients/${PLC_wamp_ID}.pem wampClientCert.pem
# Start Beremiz runtime again, with wamp enabled
$BEREMIZPYTHONPATH $BEREMIZPATH/Beremiz_service.py -c wampconf.json -s psk.txt -n test_wamp_ID -x 0 &> >(
# Wait for server to print modified value
if [[ "$line" =~ "WAMP session joined" ]]; then
if [[ "$line" == "PLCobject : PLC started" ]]; then
echo "PLC was programmed"
echo wait for runtime to come up
res=110 # default to ETIMEDOUT
if [[ -a ./PLC_CONNECTED ]]; then
if [ "$res" != "0" ] ; then
echo timeout connecting PLC to crossbar.
cp -a $BEREMIZPATH/tests/projects/wamp .
sed -i "s,TEST_URI,${URI},g" wamp/beremiz.xml
# Re-use self-signed server cert for client in test project
cp .crossbar/server.crt $IDE_CERT/${BEREMIZ_LOCAL_HOST}.crt
IDE_CLIENT_CERT=$KEYSTORE/own/client.crt
cp certs/clients/${IDE_wamp_ID}.pem $IDE_CLIENT_CERT
# Use CLI to build transfer and start PLC
$BEREMIZPYTHONPATH $BEREMIZPATH/Beremiz_cli.py -k \
--project-home wamp build transfer run &> >(
# Wait for PLC runtime to output expected value on stdout
if [[ "$line" == "PLC installed successfully." ]]; then
echo "CLI did transfer PLC program"
echo all subprocess started, start polling results
res=110 # default to ETIMEDOUT
if [[ -a ./CLI_OK && -a ./PLC_OK ]]; then
# Kill PLC and subprocess
echo will kill PLC:$PLC_PID, SERVER:$SERVER_PID and CLI:$CLI_PID