Merge "Add android.hardware.security.dice HAL interface."
This commit is contained in:
commit
b05a7c1376
18 changed files with 773 additions and 0 deletions
|
@ -332,6 +332,14 @@
|
|||
<instance>strongbox</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<hal format="aidl" optional="true">
|
||||
<name>android.hardware.security.dice</name>
|
||||
<version>1</version>
|
||||
<interface>
|
||||
<name>IDiceDevice</name>
|
||||
<instance>default</instance>
|
||||
</interface>
|
||||
</hal>
|
||||
<hal format="aidl" optional="true">
|
||||
<name>android.hardware.security.keymint</name>
|
||||
<version>1-2</version>
|
||||
|
|
47
security/dice/aidl/Android.bp
Normal file
47
security/dice/aidl/Android.bp
Normal file
|
@ -0,0 +1,47 @@
|
|||
// Copyright 2021, The Android Open Source Project
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||
// you may not use this file except in compliance with the License.
|
||||
// You may obtain a copy of the License at
|
||||
//
|
||||
// http://www.apache.org/licenses/LICENSE-2.0
|
||||
//
|
||||
// Unless required by applicable law or agreed to in writing, software
|
||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
package {
|
||||
// See: http://go/android-license-faq
|
||||
// A large-scale-change added 'default_applicable_licenses' to import
|
||||
// all of the 'license_kinds' from "hardware_interfaces_license"
|
||||
// to get the below license kinds:
|
||||
// SPDX-license-identifier-Apache-2.0
|
||||
default_applicable_licenses: ["hardware_interfaces_license"],
|
||||
}
|
||||
|
||||
aidl_interface {
|
||||
name: "android.hardware.security.dice",
|
||||
vendor_available: true,
|
||||
srcs: [
|
||||
"android/hardware/security/dice/*.aidl",
|
||||
],
|
||||
stability: "vintf",
|
||||
backend: {
|
||||
java: {
|
||||
enabled: false,
|
||||
platform_apis: false,
|
||||
},
|
||||
ndk: {
|
||||
vndk: {
|
||||
enabled: true,
|
||||
},
|
||||
apps_enabled: false,
|
||||
},
|
||||
rust: {
|
||||
enabled: true,
|
||||
},
|
||||
},
|
||||
// versions: ["1"],
|
||||
}
|
|
@ -0,0 +1,39 @@
|
|||
/*
|
||||
* Copyright 2021, The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// This file is a snapshot of an AIDL file. Do not edit it manually. There are
|
||||
// two cases:
|
||||
// 1). this is a frozen version file - do not edit this in any case.
|
||||
// 2). this is a 'current' file. If you make a backwards compatible change to
|
||||
// the interface (from the latest frozen version), the build system will
|
||||
// prompt you to update this file with `m <name>-update-api`.
|
||||
//
|
||||
// You must not make a backward incompatible change to any AIDL file built
|
||||
// with the aidl_interface module type with versions property set. The module
|
||||
// type is used to build AIDL files in a way that they can be used across
|
||||
// independently updatable components of the system. If a device is shipped
|
||||
// with such a backward incompatible change, it has a high risk of breaking
|
||||
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||
|
||||
package android.hardware.security.dice;
|
||||
/* @hide */
|
||||
@RustDerive(Clone=true, Eq=true, Hash=true, Ord=true, PartialEq=true, PartialOrd=true) @VintfStability
|
||||
parcelable Bcc {
|
||||
byte[] data;
|
||||
}
|
|
@ -0,0 +1,41 @@
|
|||
/*
|
||||
* Copyright 2021, The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// This file is a snapshot of an AIDL file. Do not edit it manually. There are
|
||||
// two cases:
|
||||
// 1). this is a frozen version file - do not edit this in any case.
|
||||
// 2). this is a 'current' file. If you make a backwards compatible change to
|
||||
// the interface (from the latest frozen version), the build system will
|
||||
// prompt you to update this file with `m <name>-update-api`.
|
||||
//
|
||||
// You must not make a backward incompatible change to any AIDL file built
|
||||
// with the aidl_interface module type with versions property set. The module
|
||||
// type is used to build AIDL files in a way that they can be used across
|
||||
// independently updatable components of the system. If a device is shipped
|
||||
// with such a backward incompatible change, it has a high risk of breaking
|
||||
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||
|
||||
package android.hardware.security.dice;
|
||||
/* @hide */
|
||||
@RustDerive(Clone=true, Eq=true, Hash=true, Ord=true, PartialEq=true, PartialOrd=true) @VintfStability
|
||||
parcelable BccHandover {
|
||||
byte[] cdiAttest;
|
||||
byte[] cdiSeal;
|
||||
android.hardware.security.dice.Bcc bcc;
|
||||
}
|
|
@ -0,0 +1,39 @@
|
|||
/*
|
||||
* Copyright 2021, The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// This file is a snapshot of an AIDL file. Do not edit it manually. There are
|
||||
// two cases:
|
||||
// 1). this is a frozen version file - do not edit this in any case.
|
||||
// 2). this is a 'current' file. If you make a backwards compatible change to
|
||||
// the interface (from the latest frozen version), the build system will
|
||||
// prompt you to update this file with `m <name>-update-api`.
|
||||
//
|
||||
// You must not make a backward incompatible change to any AIDL file built
|
||||
// with the aidl_interface module type with versions property set. The module
|
||||
// type is used to build AIDL files in a way that they can be used across
|
||||
// independently updatable components of the system. If a device is shipped
|
||||
// with such a backward incompatible change, it has a high risk of breaking
|
||||
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||
|
||||
package android.hardware.security.dice;
|
||||
/* @hide */
|
||||
@RustDerive(Clone=true, Eq=true, Hash=true, Ord=true, PartialEq=true, PartialOrd=true) @VintfStability
|
||||
parcelable Config {
|
||||
byte[] desc;
|
||||
}
|
|
@ -0,0 +1,42 @@
|
|||
/*
|
||||
* Copyright (C) 2021 The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// This file is a snapshot of an AIDL file. Do not edit it manually. There are
|
||||
// two cases:
|
||||
// 1). this is a frozen version file - do not edit this in any case.
|
||||
// 2). this is a 'current' file. If you make a backwards compatible change to
|
||||
// the interface (from the latest frozen version), the build system will
|
||||
// prompt you to update this file with `m <name>-update-api`.
|
||||
//
|
||||
// You must not make a backward incompatible change to any AIDL file built
|
||||
// with the aidl_interface module type with versions property set. The module
|
||||
// type is used to build AIDL files in a way that they can be used across
|
||||
// independently updatable components of the system. If a device is shipped
|
||||
// with such a backward incompatible change, it has a high risk of breaking
|
||||
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||
|
||||
package android.hardware.security.dice;
|
||||
/* @hide */
|
||||
@SensitiveData @VintfStability
|
||||
interface IDiceDevice {
|
||||
android.hardware.security.dice.Signature sign(in android.hardware.security.dice.InputValues[] id, in byte[] payload);
|
||||
android.hardware.security.dice.Bcc getAttestationChain(in android.hardware.security.dice.InputValues[] inputValues);
|
||||
android.hardware.security.dice.BccHandover derive(in android.hardware.security.dice.InputValues[] inputValues);
|
||||
void demote(in android.hardware.security.dice.InputValues[] inputValues);
|
||||
}
|
|
@ -0,0 +1,44 @@
|
|||
/*
|
||||
* Copyright 2021, The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// This file is a snapshot of an AIDL file. Do not edit it manually. There are
|
||||
// two cases:
|
||||
// 1). this is a frozen version file - do not edit this in any case.
|
||||
// 2). this is a 'current' file. If you make a backwards compatible change to
|
||||
// the interface (from the latest frozen version), the build system will
|
||||
// prompt you to update this file with `m <name>-update-api`.
|
||||
//
|
||||
// You must not make a backward incompatible change to any AIDL file built
|
||||
// with the aidl_interface module type with versions property set. The module
|
||||
// type is used to build AIDL files in a way that they can be used across
|
||||
// independently updatable components of the system. If a device is shipped
|
||||
// with such a backward incompatible change, it has a high risk of breaking
|
||||
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||
|
||||
package android.hardware.security.dice;
|
||||
/* @hide */
|
||||
@RustDerive(Clone=true, Eq=true, Hash=true, Ord=true, PartialEq=true, PartialOrd=true) @VintfStability
|
||||
parcelable InputValues {
|
||||
byte[] codeHash;
|
||||
android.hardware.security.dice.Config config;
|
||||
byte[] authorityHash;
|
||||
@nullable byte[] authorityDescriptor;
|
||||
android.hardware.security.dice.Mode mode = android.hardware.security.dice.Mode.NOT_INITIALIZED;
|
||||
byte[] hidden;
|
||||
}
|
|
@ -0,0 +1,42 @@
|
|||
/*
|
||||
* Copyright 2021, The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// This file is a snapshot of an AIDL file. Do not edit it manually. There are
|
||||
// two cases:
|
||||
// 1). this is a frozen version file - do not edit this in any case.
|
||||
// 2). this is a 'current' file. If you make a backwards compatible change to
|
||||
// the interface (from the latest frozen version), the build system will
|
||||
// prompt you to update this file with `m <name>-update-api`.
|
||||
//
|
||||
// You must not make a backward incompatible change to any AIDL file built
|
||||
// with the aidl_interface module type with versions property set. The module
|
||||
// type is used to build AIDL files in a way that they can be used across
|
||||
// independently updatable components of the system. If a device is shipped
|
||||
// with such a backward incompatible change, it has a high risk of breaking
|
||||
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||
|
||||
package android.hardware.security.dice;
|
||||
/* @hide */
|
||||
@Backing(type="int") @VintfStability
|
||||
enum Mode {
|
||||
NOT_INITIALIZED = 0,
|
||||
NORMAL = 1,
|
||||
DEBUG = 2,
|
||||
RECOVERY = 3,
|
||||
}
|
|
@ -0,0 +1,41 @@
|
|||
/*
|
||||
* Copyright 2020, The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// This file is a snapshot of an AIDL file. Do not edit it manually. There are
|
||||
// two cases:
|
||||
// 1). this is a frozen version file - do not edit this in any case.
|
||||
// 2). this is a 'current' file. If you make a backwards compatible change to
|
||||
// the interface (from the latest frozen version), the build system will
|
||||
// prompt you to update this file with `m <name>-update-api`.
|
||||
//
|
||||
// You must not make a backward incompatible change to any AIDL file built
|
||||
// with the aidl_interface module type with versions property set. The module
|
||||
// type is used to build AIDL files in a way that they can be used across
|
||||
// independently updatable components of the system. If a device is shipped
|
||||
// with such a backward incompatible change, it has a high risk of breaking
|
||||
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||
|
||||
package android.hardware.security.dice;
|
||||
@Backing(type="int") @VintfStability
|
||||
enum ResponseCode {
|
||||
PERMISSION_DENIED = 1,
|
||||
SYSTEM_ERROR = 2,
|
||||
NOT_IMPLEMENTED = 3,
|
||||
DEMOTION_FAILED = 4,
|
||||
}
|
|
@ -0,0 +1,39 @@
|
|||
/*
|
||||
* Copyright 2021, The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// THIS FILE IS IMMUTABLE. DO NOT EDIT IN ANY CASE. //
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// This file is a snapshot of an AIDL file. Do not edit it manually. There are
|
||||
// two cases:
|
||||
// 1). this is a frozen version file - do not edit this in any case.
|
||||
// 2). this is a 'current' file. If you make a backwards compatible change to
|
||||
// the interface (from the latest frozen version), the build system will
|
||||
// prompt you to update this file with `m <name>-update-api`.
|
||||
//
|
||||
// You must not make a backward incompatible change to any AIDL file built
|
||||
// with the aidl_interface module type with versions property set. The module
|
||||
// type is used to build AIDL files in a way that they can be used across
|
||||
// independently updatable components of the system. If a device is shipped
|
||||
// with such a backward incompatible change, it has a high risk of breaking
|
||||
// later when a module using the interface is updated, e.g., Mainline modules.
|
||||
|
||||
package android.hardware.security.dice;
|
||||
/* @hide */
|
||||
@RustDerive(Clone=true, Eq=true, Hash=true, Ord=true, PartialEq=true, PartialOrd=true) @VintfStability
|
||||
parcelable Signature {
|
||||
byte[] data;
|
||||
}
|
36
security/dice/aidl/android/hardware/security/dice/Bcc.aidl
Normal file
36
security/dice/aidl/android/hardware/security/dice/Bcc.aidl
Normal file
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* Copyright 2021, The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package android.hardware.security.dice;
|
||||
|
||||
/**
|
||||
* A DICE certificate chain following the Boot Certificate Chain (BCC) specification.
|
||||
* @hide
|
||||
*/
|
||||
@VintfStability
|
||||
@RustDerive(Clone=true, Eq=true, PartialEq=true, Ord=true, PartialOrd=true, Hash=true)
|
||||
parcelable Bcc {
|
||||
/**
|
||||
* The DICE certificate chain CBOR encoded following the BCC specification. The CDDL
|
||||
* specification for BCC can be found here [1].
|
||||
*
|
||||
* @see <a
|
||||
* href="https://cs.android.com/android/platform/superproject/+/master:hardware/interfaces/security/keymint/aidl/android/hardware/security/keymint/ProtectedData.aidl">
|
||||
* BCC CDDL specification
|
||||
* </a>
|
||||
*/
|
||||
byte[] data;
|
||||
}
|
|
@ -0,0 +1,46 @@
|
|||
/*
|
||||
* Copyright 2021, The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package android.hardware.security.dice;
|
||||
|
||||
import android.hardware.security.dice.Bcc;
|
||||
|
||||
/**
|
||||
* Represents one set of DICE artifacts.
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
@VintfStability
|
||||
@RustDerive(Clone=true, Eq=true, PartialEq=true, Ord=true, PartialOrd=true, Hash=true)
|
||||
parcelable BccHandover {
|
||||
/**
|
||||
* CDI_attest. Must a exactly 32 bytes of data.
|
||||
*/
|
||||
byte[] cdiAttest;
|
||||
/**
|
||||
* CDI_seal. Must a exactly 32 bytes of data.
|
||||
*/
|
||||
byte[] cdiSeal;
|
||||
/**
|
||||
* CBOR encoded BCC.
|
||||
*
|
||||
* @see <a
|
||||
* href="https://cs.android.com/android/platform/superproject/+/master:hardware/interfaces/security/keymint/aidl/android/hardware/security/keymint/ProtectedData.aidl">
|
||||
* BCC CDDL specification
|
||||
* </a>
|
||||
*/
|
||||
Bcc bcc;
|
||||
}
|
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
* Copyright 2021, The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package android.hardware.security.dice;
|
||||
|
||||
/**
|
||||
* DICE config descriptor as described in at
|
||||
* <a
|
||||
* href="https://pigweed.googlesource.com/open-dice/+/refs/heads/main/docs/specification.md#input-values">
|
||||
* input-values
|
||||
* </a>
|
||||
* @hide
|
||||
*/
|
||||
@VintfStability
|
||||
@RustDerive(Clone=true, Eq=true, PartialEq=true, Ord=true, PartialOrd=true, Hash=true)
|
||||
parcelable Config {
|
||||
/**
|
||||
* A free form descriptor. This should follow the BCC Configuration Descriptor.
|
||||
* @see <a
|
||||
* href="https://cs.android.com/android/platform/superproject/+/master:hardware/interfaces/security/keymint/aidl/android/hardware/security/keymint/ProtectedData.aidl">
|
||||
* BccPayload field -4670548
|
||||
* </a>
|
||||
*/
|
||||
byte[] desc;
|
||||
}
|
|
@ -0,0 +1,100 @@
|
|||
/*
|
||||
* Copyright (C) 2021 The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package android.hardware.security.dice;
|
||||
|
||||
import android.hardware.security.dice.Bcc;
|
||||
import android.hardware.security.dice.BccHandover;
|
||||
import android.hardware.security.dice.InputValues;
|
||||
import android.hardware.security.dice.Signature;
|
||||
|
||||
/**
|
||||
* IDiceDevice specifies an interface that allows access to the Android instance's DICE artifacts.
|
||||
*
|
||||
* <h2>Features</h2>
|
||||
*
|
||||
* The dice device provides access to the component's CDI_SEAL and CDI_ATTEST secrets as well
|
||||
* as to its attestation certificate chain. The "component" is the Android instance running this
|
||||
* HAL service and the secrets and attestation chain must include all boot stage components,
|
||||
* the kernel, and the verified boot information (VBA).
|
||||
*
|
||||
* Implementations provide the following operations:
|
||||
* <li> sign - Signing a payload with a key derived from CDI_ATTEST.
|
||||
* <li> getAttestationChain - Retrieve the component's attestation certificate chain.
|
||||
* <li> derive - Retrieve the component's DICE artifacts.
|
||||
*
|
||||
* @see <a
|
||||
* href="https://pigweed.googlesource.com/open-dice/+/refs/heads/main/docs/specification.md">
|
||||
* Open-dice Specification
|
||||
* </a>
|
||||
* @see <a
|
||||
* href="https://cs.android.com/android/platform/superproject/+/master:hardware/interfaces/security/keymint/aidl/android/hardware/security/keymint/IRemotelyProvisionedComponent.aidl">
|
||||
* Boot Certificate Chain (BCC) CDDL specification
|
||||
* </a>
|
||||
* @hide
|
||||
*/
|
||||
@SensitiveData
|
||||
@VintfStability
|
||||
interface IDiceDevice {
|
||||
/**
|
||||
* Uses the a key derived from the component's, or a child's given by <code>inputValues</code>,
|
||||
* attestation secret to sign the payload using RFC 8032 Pure Ed25519 and returns the
|
||||
* signature. The payload is limited to 1024 bytes.
|
||||
*
|
||||
* @see <a href="https://datatracker.ietf.org/doc/html/rfc8032">RFC 8032</a>
|
||||
*/
|
||||
Signature sign(in InputValues[] id, in byte[] payload);
|
||||
|
||||
/**
|
||||
* Returns the attestation chain of the component if <code>inputValues</code> is empty or the
|
||||
* chain to the given child of the component identified by the <code>inputValues</code> vector.
|
||||
*
|
||||
* ## Error as service specific exception:
|
||||
* ResponseCode::PERMISSION_DENIED if the caller is not sufficiently privileged.
|
||||
*/
|
||||
Bcc getAttestationChain(in InputValues[] inputValues);
|
||||
|
||||
/**
|
||||
* This function allows a client to become a resident node. A resident node is a node that
|
||||
* manages its own dice secrets as opposed to using them by proxy, i.e., by calling sign
|
||||
* and getAttestationChain. Called with empty <code>inputValues</code> vectors, an
|
||||
* implementation returns the component's DICE secrets. If the <code>inputValues</code> vector
|
||||
* is given the appropriate derivations are performed starting from the component's level.
|
||||
*
|
||||
* ## Error as service specific exception:
|
||||
* ResponseCode::PERMISSION_DENIED if the implementation does not allow resident nodes
|
||||
* at the client's level.
|
||||
*/
|
||||
BccHandover derive(in InputValues[] inputValues);
|
||||
|
||||
/**
|
||||
* This demotes the implementation of this interface.
|
||||
* When called, the implementation performs appropriate derivation steps using
|
||||
* <code>inputValues</code>, traversing the vector in ascending order. Then it replaces its
|
||||
* stored DICE artifacts with the newly derived ones.
|
||||
*
|
||||
* IMPORTANT: When the function returns, all remnants of the previous DICE artifacts must
|
||||
* have been purged from memory.
|
||||
*
|
||||
* This operation is not reversible until the next reboot. Further demotion is always
|
||||
* possible.
|
||||
*
|
||||
* ## Error as service specific exception:
|
||||
* ResponseCode::DEMOTION_FAILED if the implementation failed to demote itself
|
||||
* or was unable to purge previous DICE artifacts from memory.
|
||||
*/
|
||||
void demote(in InputValues[] inputValues);
|
||||
}
|
|
@ -0,0 +1,58 @@
|
|||
/*
|
||||
* Copyright 2021, The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package android.hardware.security.dice;
|
||||
|
||||
import android.hardware.security.dice.Config;
|
||||
import android.hardware.security.dice.Mode;
|
||||
|
||||
/**
|
||||
* DICE input values for certificate and CDI generation.
|
||||
*
|
||||
* @see <a
|
||||
* href="https://pigweed.googlesource.com/open-dice/+/refs/heads/main/docs/specification.md#input-values">
|
||||
* Open-dice input-values
|
||||
* </a>
|
||||
* @hide
|
||||
*/
|
||||
@RustDerive(Clone=true, Eq=true, PartialEq=true, Ord=true, PartialOrd=true, Hash=true)
|
||||
@VintfStability
|
||||
parcelable InputValues {
|
||||
/**
|
||||
* The target code hash. Must be exactly 64 bytes.
|
||||
*/
|
||||
byte[] codeHash;
|
||||
/**
|
||||
* The configuration data.
|
||||
*/
|
||||
Config config;
|
||||
/**
|
||||
* The authority hash. Must be exactly 64 bytes. Must be all zero if unused.
|
||||
*/
|
||||
byte[] authorityHash;
|
||||
/**
|
||||
* Optional free form authorityDescriptor.
|
||||
*/
|
||||
@nullable byte[] authorityDescriptor;
|
||||
/**
|
||||
* The mode of operation. Normal, Debug, Maintenance, or not initialized.
|
||||
*/
|
||||
Mode mode = Mode.NOT_INITIALIZED;
|
||||
/**
|
||||
* Optional hidden values. Must be exactly 64 bytes. Must be all zero if unused.
|
||||
*/
|
||||
byte[] hidden;
|
||||
}
|
38
security/dice/aidl/android/hardware/security/dice/Mode.aidl
Normal file
38
security/dice/aidl/android/hardware/security/dice/Mode.aidl
Normal file
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
* Copyright 2021, The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package android.hardware.security.dice;
|
||||
|
||||
/**
|
||||
* DICE mode values as defined at
|
||||
*
|
||||
* @see <a
|
||||
* href="https://pigweed.googlesource.com/open-dice/+/refs/heads/main/docs/specification.md#mode-value-details">
|
||||
* open-dice mode-value-details
|
||||
* </a>
|
||||
* @hide
|
||||
*/
|
||||
@Backing(type="int")
|
||||
@VintfStability
|
||||
enum Mode {
|
||||
NOT_INITIALIZED = 0,
|
||||
NORMAL = 1,
|
||||
DEBUG = 2,
|
||||
/**
|
||||
* The recovery mode is also referred to as "maintenance" mode.
|
||||
*/
|
||||
RECOVERY = 3,
|
||||
}
|
|
@ -0,0 +1,43 @@
|
|||
/*
|
||||
* Copyright 2020, The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package android.hardware.security.dice;
|
||||
|
||||
@Backing(type="int")
|
||||
/**
|
||||
* These response codes are used as service specific exception codes by
|
||||
* IDiceDevice.
|
||||
* @hide
|
||||
*/
|
||||
@VintfStability
|
||||
enum ResponseCode {
|
||||
/**
|
||||
* The caller has insufficient privilege to access the DICE API.
|
||||
*/
|
||||
PERMISSION_DENIED = 1,
|
||||
/**
|
||||
* An unexpected error occurred, likely with IO or IPC.
|
||||
*/
|
||||
SYSTEM_ERROR = 2,
|
||||
/**
|
||||
* Returned if the called function is not implemented.
|
||||
*/
|
||||
NOT_IMPLEMENTED = 3,
|
||||
/**
|
||||
* An attempt to demote the implementation failed.
|
||||
*/
|
||||
DEMOTION_FAILED = 4,
|
||||
}
|
|
@ -0,0 +1,32 @@
|
|||
/*
|
||||
* Copyright 2021, The Android Open Source Project
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package android.hardware.security.dice;
|
||||
|
||||
/**
|
||||
* This parcelable represents a Signature. It is used as return value of IDiceNode::sign.
|
||||
*
|
||||
* @hide
|
||||
*/
|
||||
@RustDerive(Clone=true, Eq=true, PartialEq=true, Ord=true, PartialOrd=true, Hash=true)
|
||||
@VintfStability
|
||||
parcelable Signature {
|
||||
/**
|
||||
* The RFC 8032 PureEd25519 signature.
|
||||
* @see <a href="https://datatracker.ietf.org/doc/html/rfc8032">RFC 8032</a>
|
||||
*/
|
||||
byte[] data;
|
||||
}
|
Loading…
Reference in a new issue