Reference Value Provider Service, RVPS for short is a componant to receive software supply chain provenances/metadata, verify them and extract the reference values. All the reference values will be stored inside RVPS. When AS queries specific software claims, RVPS will response with related reference values.
RVPS contains the following components:
-
Pre-Processor : Pre-Processor contains a set of Wares (like Middleware). The Wares can process the input Message and then deliver it to the Extractors.
-
Extractors : Extractors has sub-modules to process different type of provenance. Each sub-module will consume the input Message, and then generate an output Reference Value.
-
Store : Store is a trait object, which can provide key-value like API. All verified reference values will be stored in the Store. When requested by Attestation Service, related reference value will be provided.
The message flow of RVPS is like the following figure
A protocol helps to distribute provenance of binaries. It will be received and processed by RVPS, then RVPS will generate Reference Value if working correctly.
{
"version": <VERSION-NUMBER-STRING>,
"type": <TYPE-OF-THE-PROVENANCE-STRING>,
"provenance": #provenance,
}
The "version"
field is the version of this message, making extensibility possible.
The "type"
field specifies the concrete type of the provenance the message carries.
The "provenance"
field is the main content passed to RVPS. This field contains the payload to be decrypted by RVPS.
The meaning of the provenance depends on the type and concrete Extractor which process this.
It is the reference values really requested and used by Attestation Service to compare with the gathered evidence generated from HW TEE. They are usually digests. To avoid ambiguity, they are named trust digests
rather than reference values
.
Install the protocol buffer compiler package protobuf-compiler
.
In this way, the RVPS can run as a single service. The gRPC protos are defined.
We can run using the following command
git clone https://github.com/confidential-containers/trustee
cd trustee/rvps
make build && sudo make install
Run RVPS
rvps
By default listen to localhost:50003
to wait for requests
We can build RVPS docker image
cd .. && docker build -t rvps -f rvps/docker/Dockerfile .
Run
docker run -d -p 50003:50003 rvps
RVPS can be launched with a specified configuration file by -c
flag. A configuration file looks lile
{
"address": "0.0.0.0:50003",
"store_type": "LocalFs",
"store_config": {
"file_path": "/opt/confidential-containers/attestation-service/reference_values"
}
}
address
: socket listening to requests.store_type
: backend storage type to store reference values. CurrentlyLocalFs
andLocalJson
are supported.store_config
: optional extra parameters for different kinds ofstore_type
. This is also a JSON map object. The concrete content is different due to differentstore_type
.
In this way RVPS will work as a crate inside AS binary. If AS is built without feature rvps-grpc
and with feature rvps-builtin
, the RVPS will be built-in AS.
In this way AS will connect to a remote RVPS. If AS is built with feature rvps-grpc
, the remote RVPS
will be connected to.
cd ../attestation-service && cargo run --bin as-grpc -- --config-file config.json
A client tool helps to perform as a client to rvps. It can
- Register reference values into the RVPS
- Query reference values from the RVPS
Run RVPS in docker or the following commands
RVPS_ADDR=127.0.0.1:50003
rvps --socket $RVPS_ADDR
Edit an test message in sample format
cat << EOF > sample
{
"test-binary-1": [
"reference-value-1",
"reference-value-2"
],
"test-binary-2": [
"reference-value-3",
"reference-value-4"
]
}
EOF
provenance=$(cat sample | base64 --wrap=0)
cat << EOF > message
{
"version" : "0.1.0",
"type": "sample",
"payload": "$provenance"
}
EOF
Register the provenance into RVPS
rvps-tool register --path ./message --addr http://$RVPS_ADDR
Then it will say something like
[2023-03-09T04:44:11Z INFO rvps_client] Register provenance succeeded.
Let's then query the reference value
rvps-tool query --name test-binary-1 --addr http://$RVPS_ADDR
Then the reference values will be output
[2023-03-09T05:13:50Z INFO rvps_client] Get reference values succeeded:
["reference-value-1","reference-value-2"]