Open paulhowardarm opened 3 months ago
Thanks @paulhowardarm for reporting.
I can reproduce the behaviour using your token with latest(0d3a0937
) evcli
:
evcli cca verify-as relying-party \
--token cca-token.cbor \
--config ~/.config/evcli/config.yaml \
2>&1 | \
grep -v "^Using" | \
tr -d '"' | \
step crypto jwt inspect --insecure
with $HOME/.config/evcli/config.yaml
containing the following settings:
api_server: http://veraison.test.linaro.org:8080/challenge-response/v1/newSession
insecure: true
and I think you are right, since no realm reference values are provisioned, there is no good reason for the CCA_REALM
appraisal to state a warning(33) in the executables bucket. It should just say "I can't tell", i.e., 0.
What version of the package are you using?
I am using an instance of Veraison running on Linaro infrastructure, and available publicly at the base URL
http://veraison.test.linaro.org:8080
.Commit level at date of reporting should be this one.
Does this issue reproduce with the latest release?
Yes
What OS and CPU architecture are you using (
go env
)?I am not able to report this because I am not running my own instance of the service.
What did you do?
I used the Linaro-provided Veraison verification instance, which has been provisioned with endorsements and RVs for the CCA software models (which use a well-known token).
I submitted this token for verification and visually inspected the attestation result.
If you wish, for convenience, you can automate the repro by building and running this example Rust program, which you can run on the command-line without any arguments. It will submit the correct token to the Linaro-provided verifier and provide a summary of the returned AR.
What did you expect to see?
My initial expectation was for the AR to contain a single submodule for
CCA_SSD_PLATFORM
and a status tier ofAffirming
. This was previous behaviour.What did you see instead?
The AR contained two submodules, one for
CCA_SSD_PLATFORM
with a status ofAffirming
as expected, but there was also another submodule forCCA_REALM
with a status ofWarning
.The presence of the second submodule for
CCA_REALM
is a feature, not a bug. This is due to recent work in the CCA plug-in to support the realm token.However, the status of
Warning
does not appear to be the most appropriate. The Linaro verifier does not have any RVs for the realm token. This evaluation should have been skipped entirely with a consequent AR4SI tier value ofNone
for this submodule.