blob: 603e041feec330bacc52f279b07eae5870a238f4 [file] [log] [blame]
nagendra modadugubdcfaa82017-09-17 17:11:36 -07001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17syntax = "proto3";
18
19package nugget.app.keymaster;
20
Andrew Scullb5f24a52017-10-13 19:46:40 +010021import "nugget/app/keymaster/keymaster_defs.proto";
22import "nugget/app/keymaster/keymaster_types.proto";
nagendra modadugubdcfaa82017-09-17 17:11:36 -070023import "nugget/protobuf/options.proto";
nagendra modadugubdcfaa82017-09-17 17:11:36 -070024
25/*
26 * Keymaster service methods.
27 *
28 * TODO: some methods may be implemented in the host side HAL implementation.
29 */
30service Keymaster {
Andrew Scull36ebf2d2017-10-10 11:25:21 +010031 option (nugget.protobuf.app_id) = "KEYMASTER";
32 option (nugget.protobuf.app_name) = "Keymaster";
33 option (nugget.protobuf.app_version) = 1;
nagendra modadugu89e50ed2017-10-30 22:13:01 -070034 /*
35 * Both request and response buffers are sized such
36 * that a key-blob may be fully contained.
37 *
38 * TODO: revisit this choice in the event that memory
39 * is running out. Supporting smaller buffers will
40 * require that the keymaster app switch from the
41 * transport API to the datagram API.
42 */
nagendra modadugu4f532bc2018-01-23 16:39:04 -080043 option (nugget.protobuf.request_buffer_size) = 3072;
nagendra modadugu89e50ed2017-10-30 22:13:01 -070044 option (nugget.protobuf.response_buffer_size) = 2048;
nagendra modadugubdcfaa82017-09-17 17:11:36 -070045
Andrew Scull36ebf2d2017-10-10 11:25:21 +010046 /*
47 * KM3 methods, from:
48 * ::android::hardware::keymaster::V3_0::IKeymasterDevice
49 */
50 rpc AddRngEntropy (AddRngEntropyRequest) returns (AddRngEntropyResponse);
51 rpc GenerateKey (GenerateKeyRequest) returns (GenerateKeyResponse);
52 rpc GetKeyCharacteristics (GetKeyCharacteristicsRequest) returns (GetKeyCharacteristicsResponse);
53 rpc ImportKey (ImportKeyRequest) returns (ImportKeyResponse);
54 rpc ExportKey (ExportKeyRequest) returns (ExportKeyResponse);
55 rpc AttestKey (AttestKeyRequest) returns (AttestKeyResponse);
56 rpc UpgradeKey (UpgradeKeyRequest) returns (UpgradeKeyResponse);
57 rpc DeleteKey (DeleteKeyRequest) returns (DeleteKeyResponse);
58 rpc DeleteAllKeys (DeleteAllKeysRequest) returns (DeleteAllKeysResponse);
59 rpc DestroyAttestationIds (DestroyAttestationIdsRequest) returns (DestroyAttestationIdsResponse);
60 rpc BeginOperation (BeginOperationRequest) returns (BeginOperationResponse);
61 rpc UpdateOperation (UpdateOperationRequest) returns (UpdateOperationResponse);
62 rpc FinishOperation (FinishOperationRequest) returns (FinishOperationResponse);
63 rpc AbortOperation (AbortOperationRequest) returns (AbortOperationResponse);
nagendra modadugubdcfaa82017-09-17 17:11:36 -070064
Andrew Scull36ebf2d2017-10-10 11:25:21 +010065 /*
66 * KM4 methods.
67 */
nagendra modadugubdf53cd2017-12-04 21:28:02 -080068 rpc ImportWrappedKey (ImportWrappedKeyRequest) returns (ImportKeyResponse);
nagendra modadugubdcfaa82017-09-17 17:11:36 -070069
Andrew Scull36ebf2d2017-10-10 11:25:21 +010070 /*
nagendra modadugu6023a7d2017-11-08 14:40:49 -080071 * Vendor specific methods (bootloader, manufacturing, status,
72 * factory reset, upgrade).
Andrew Scull36ebf2d2017-10-10 11:25:21 +010073 */
nagendra modadugu6023a7d2017-11-08 14:40:49 -080074 // Only callable by the Bootloader.
75 rpc SetRootOfTrust (SetRootOfTrustRequest) returns (SetRootOfTrustResponse);
76 // Only callable by the Bootloader.
77 rpc SetBootState (SetBootStateRequest) returns (SetBootStateResponse);
nagendra modadugu0121ffb2018-03-08 22:37:33 -080078 // Only callable at the Device Factory.
79 rpc ProvisionDeviceIds (ProvisionDeviceIdsRequest) returns (ProvisionDeviceIdsResponse);
80 // Only callable at the Device Factory.
81 rpc ReadTeeBatchCertificate (ReadTeeBatchCertificateRequest) returns (ReadTeeBatchCertificateResponse);
nagendra modadugubdcfaa82017-09-17 17:11:36 -070082}
83
84/*
nagendra modadugubdcfaa82017-09-17 17:11:36 -070085 * KM3 messages.
86 */
87
nagendra modadugubdcfaa82017-09-17 17:11:36 -070088// AddEntropy
89message AddRngEntropyRequest {
Andrew Scull36ebf2d2017-10-10 11:25:21 +010090 bytes data = 1;
nagendra modadugubdcfaa82017-09-17 17:11:36 -070091}
nagendra modadugu36966942017-09-26 15:56:24 -070092message AddRngEntropyResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -080093 ErrorCode error_code = 1;
nagendra modadugu36966942017-09-26 15:56:24 -070094}
nagendra modadugubdcfaa82017-09-17 17:11:36 -070095
96// GenerateKey
97message GenerateKeyRequest {
Andrew Scull36ebf2d2017-10-10 11:25:21 +010098 KeyParameters params = 1;
nagendra modadugubdcfaa82017-09-17 17:11:36 -070099}
100message GenerateKeyResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800101 ErrorCode error_code = 1;
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100102 KeyBlob blob = 2;
103 KeyCharacteristics characteristics = 3;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700104}
105
106// GetKeyCharacteristics
107message GetKeyCharacteristicsRequest {
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100108 KeyBlob blob = 1;
109 bytes client_id = 2;
110 bytes app_data = 3;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700111}
112message GetKeyCharacteristicsResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800113 ErrorCode error_code = 1;
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100114 KeyCharacteristics characteristics = 2;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700115}
116
117// ImportKey
118message ImportKeyRequest {
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100119 KeyParameters params = 1;
120 RSAKey rsa = 2;
121 ECKey ec = 3;
122 SymmetricKey symmetric_key = 4;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700123};
124message ImportKeyResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800125 ErrorCode error_code = 1;
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100126 KeyBlob blob = 2;
127 KeyCharacteristics characteristics = 3;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700128};
129
130// ExportKey
131message ExportKeyRequest {
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100132 KeyFormat format = 1;
133 KeyBlob blob = 2;
134 bytes client_id = 3;
135 bytes app_data = 4;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700136};
137message ExportKeyResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800138 ErrorCode error_code = 1;
nagendra modadugu95ac9bb2018-01-24 16:33:03 -0800139 Algorithm algorithm = 2;
140 RSAKey rsa = 3;
141 ECKey ec = 4;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700142};
143
144// AttestKey
145message AttestKeyRequest {
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100146 KeyBlob blob = 1;
147 KeyParameters params = 2;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700148}
149message AttestKeyResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800150 ErrorCode error_code = 1;
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100151 CertificateChain chain = 2;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700152}
153
154// UpgradeKey
155message UpgradeKeyRequest {
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100156 KeyBlob blob = 1;
157 KeyParameters params = 2;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700158}
159message UpgradeKeyResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800160 ErrorCode error_code = 1;
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100161 KeyBlob blob = 2;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700162}
163
164// DeleteKey
165message DeleteKeyRequest {
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100166 KeyBlob blob = 1;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700167}
nagendra modadugu36966942017-09-26 15:56:24 -0700168message DeleteKeyResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800169 ErrorCode error_code = 1;
nagendra modadugu36966942017-09-26 15:56:24 -0700170}
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700171
172// DeleteAllKeys
173message DeleteAllKeysRequest {}
nagendra modadugu36966942017-09-26 15:56:24 -0700174message DeleteAllKeysResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800175 ErrorCode error_code = 1;
nagendra modadugu36966942017-09-26 15:56:24 -0700176}
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700177
178// DestroyAttestationIds
179message DestroyAttestationIdsRequest {}
nagendra modadugu36966942017-09-26 15:56:24 -0700180message DestroyAttestationIdsResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800181 ErrorCode error_code = 1;
nagendra modadugu36966942017-09-26 15:56:24 -0700182}
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700183
184// BeginOperation
185message BeginOperationRequest {
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100186 KeyPurpose purpose = 1;
187 KeyBlob blob = 2;
188 KeyParameters params = 3;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700189}
190message BeginOperationResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800191 ErrorCode error_code = 1;
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100192 KeyParameters params = 2;
193 OperationHandle handle = 3;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700194}
195
196// UpdateOperation
197message UpdateOperationRequest {
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100198 OperationHandle handle = 1;
199 KeyParameters params = 2;
200 bytes input = 3;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700201}
202message UpdateOperationResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800203 ErrorCode error_code = 1;
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100204 uint32 consumed = 2;
205 KeyParameters params = 3;
206 bytes output = 4;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700207}
208
209// FinishOperation
210message FinishOperationRequest {
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100211 OperationHandle handle = 1;
212 KeyParameters params = 2;
213 bytes input = 3;
214 bytes signature = 4;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700215};
216message FinishOperationResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800217 ErrorCode error_code = 1;
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100218 KeyParameters params = 2;
219 bytes output = 3;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700220};
221
222// AbortOperation
223message AbortOperationRequest {
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100224 OperationHandle handle = 1;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700225};
nagendra modadugu36966942017-09-26 15:56:24 -0700226message AbortOperationResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800227 ErrorCode error_code = 1;
nagendra modadugu36966942017-09-26 15:56:24 -0700228};
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700229
230/*
231 * KM4 messages.
232 */
nagendra modadugu6023a7d2017-11-08 14:40:49 -0800233
234// ImportWrappedKey
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700235message ImportWrappedKeyRequest {
nagendra modadugubdf53cd2017-12-04 21:28:02 -0800236 uint32 key_format = 1;
237 KeyParameters params = 2;
238 bytes rsa_envelope = 3;
239 bytes initialization_vector = 4; // Fixed sized array.
240 bytes encrypted_import_key = 5;
241 bytes aad = 6;
242 bytes gcm_tag = 7; // Fixed sized array.
243 KeyBlob wrapping_key_blob = 8;
244 bytes masking_key = 9; // Fixed sized array.
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700245}
nagendra modadugubdf53cd2017-12-04 21:28:02 -0800246// ImportWrappedKey returns a ImportKeyResponse.
nagendra modadugu6023a7d2017-11-08 14:40:49 -0800247
248/*
249 * Vendor HAL.
250 */
251
252// SetRootOfTrustRequest
253// Only callable by the Bootloader.
254message SetRootOfTrustRequest {
255 bytes digest = 1;
256}
257message SetRootOfTrustResponse {
258 // Specified in keymaster_defs.proto:ErrorCode
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800259 ErrorCode error_code = 1;
nagendra modadugu6023a7d2017-11-08 14:40:49 -0800260}
261
262// SetBootStateRequest
263// Only callable by the Bootloader.
264message SetBootStateRequest {
265 bool is_unlocked = 1;
266 bytes public_key = 2;
267 uint32 color = 3;
268 uint32 system_version = 4;
269 uint32 system_security_level = 5;
270}
271message SetBootStateResponse {
272 // Specified in keymaster_defs.proto:ErrorCode
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800273 ErrorCode error_code = 1;
nagendra modadugu0121ffb2018-03-08 22:37:33 -0800274}
275
276// ProvisionDeviceIds
277// Only callable at the Device Factory
278message ProvisionDeviceIdsRequest {
279 bytes product_brand = 1;
280 bytes product_device = 2;
281 bytes product_name = 3;
282 bytes serialno = 4;
283 bytes product_manufacturer = 5;
284 bytes product_model = 6;
285 bytes imei = 7;
286 bytes meid = 8;
287}
288message ProvisionDeviceIdsResponse {
289 // Specified in keymaster_defs.proto:ErrorCode
290 ErrorCode error_code = 1;
291}
292
293// ReadTeeBatchCertificate
294// Only callable at the Device Factory
295message ReadTeeBatchCertificateRequest {
296 Algorithm algorithm = 1;
297}
298message ReadTeeBatchCertificateResponse {
299 ErrorCode error_code = 1;
300 RSAKey rsa = 2; // rsa or ec set based on request algorithm selector.
301 ECKey ec = 3;
302 bytes batch_cert = 4;
303}