blob: 47a7d6043812307695e40416f3414c65effaa560 [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);
Janis Danisevskis4f705a72018-04-13 14:52:38 -070082
83 /*
84 * More KM4 methods.
85 */
86 rpc GetHmacSharingParameters (GetHmacSharingParametersRequest) returns (GetHmacSharingParametersResponse);
87 rpc ComputeSharedHmac (ComputeSharedHmacRequest) returns (ComputeSharedHmacResponse);
Janis Danisevskise0a319a2018-04-11 16:51:44 -070088
89 /*
90 * DTup input session methods.
91 */
92 rpc HandshakeDTup (DTupHandshakeRequest) returns (DTupHandshakeResponse);
93 rpc FetchDTupInputEvent (DTupFetchInputEventRequest) returns (DTupFetchInputEventResponse);
Allen Webb4424c2c2018-05-25 08:31:56 -070094
95 /*
96 * More vendor specific methods.
97 */
98 // Only callable once per boot.
99 rpc SetSystemVersionInfo (SetSystemVersionInfoRequest) returns (SetSystemVersionInfoResponse);
Allen Webbf2e6dcf2018-05-30 14:31:28 -0700100 rpc GetBootInfo (GetBootInfoRequest) returns (GetBootInfoResponse);
Allen Webb4424c2c2018-05-25 08:31:56 -0700101
Janis Danisevskis64a6d542018-05-29 21:56:21 -0700102 /*
103 * Called during provisioning by the CitadelProvision tool.
104 */
105 rpc ProvisionPresharedSecret (ProvisionPresharedSecretRequest) returns (ProvisionPresharedSecretResponse);
Allen Webb4424c2c2018-05-25 08:31:56 -0700106 // These are implemented with a enum, so new RPCs must be appended, and
107 // deprecated RPCs need placeholders.
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700108}
109
110/*
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700111 * KM3 messages.
112 */
113
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700114// AddEntropy
115message AddRngEntropyRequest {
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100116 bytes data = 1;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700117}
nagendra modadugu36966942017-09-26 15:56:24 -0700118message AddRngEntropyResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800119 ErrorCode error_code = 1;
nagendra modadugu36966942017-09-26 15:56:24 -0700120}
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700121
122// GenerateKey
123message GenerateKeyRequest {
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100124 KeyParameters params = 1;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700125}
126message GenerateKeyResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800127 ErrorCode error_code = 1;
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100128 KeyBlob blob = 2;
129 KeyCharacteristics characteristics = 3;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700130}
131
132// GetKeyCharacteristics
133message GetKeyCharacteristicsRequest {
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100134 KeyBlob blob = 1;
135 bytes client_id = 2;
136 bytes app_data = 3;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700137}
138message GetKeyCharacteristicsResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800139 ErrorCode error_code = 1;
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100140 KeyCharacteristics characteristics = 2;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700141}
142
143// ImportKey
144message ImportKeyRequest {
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100145 KeyParameters params = 1;
146 RSAKey rsa = 2;
147 ECKey ec = 3;
148 SymmetricKey symmetric_key = 4;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700149};
150message ImportKeyResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800151 ErrorCode error_code = 1;
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100152 KeyBlob blob = 2;
153 KeyCharacteristics characteristics = 3;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700154};
155
156// ExportKey
157message ExportKeyRequest {
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100158 KeyFormat format = 1;
159 KeyBlob blob = 2;
160 bytes client_id = 3;
161 bytes app_data = 4;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700162};
163message ExportKeyResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800164 ErrorCode error_code = 1;
nagendra modadugu95ac9bb2018-01-24 16:33:03 -0800165 Algorithm algorithm = 2;
166 RSAKey rsa = 3;
167 ECKey ec = 4;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700168};
169
170// AttestKey
171message AttestKeyRequest {
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100172 KeyBlob blob = 1;
173 KeyParameters params = 2;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700174}
175message AttestKeyResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800176 ErrorCode error_code = 1;
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100177 CertificateChain chain = 2;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700178}
179
180// UpgradeKey
181message UpgradeKeyRequest {
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100182 KeyBlob blob = 1;
183 KeyParameters params = 2;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700184}
185message UpgradeKeyResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800186 ErrorCode error_code = 1;
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100187 KeyBlob blob = 2;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700188}
189
190// DeleteKey
191message DeleteKeyRequest {
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100192 KeyBlob blob = 1;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700193}
nagendra modadugu36966942017-09-26 15:56:24 -0700194message DeleteKeyResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800195 ErrorCode error_code = 1;
nagendra modadugu36966942017-09-26 15:56:24 -0700196}
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700197
198// DeleteAllKeys
199message DeleteAllKeysRequest {}
nagendra modadugu36966942017-09-26 15:56:24 -0700200message DeleteAllKeysResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800201 ErrorCode error_code = 1;
nagendra modadugu36966942017-09-26 15:56:24 -0700202}
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700203
204// DestroyAttestationIds
205message DestroyAttestationIdsRequest {}
nagendra modadugu36966942017-09-26 15:56:24 -0700206message DestroyAttestationIdsResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800207 ErrorCode error_code = 1;
nagendra modadugu36966942017-09-26 15:56:24 -0700208}
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700209
210// BeginOperation
211message BeginOperationRequest {
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100212 KeyPurpose purpose = 1;
213 KeyBlob blob = 2;
214 KeyParameters params = 3;
nagendra modadugu251238b2018-05-07 16:24:49 -0700215 HardwareAuthToken auth_token = 4;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700216}
217message BeginOperationResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800218 ErrorCode error_code = 1;
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100219 KeyParameters params = 2;
220 OperationHandle handle = 3;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700221}
222
223// UpdateOperation
224message UpdateOperationRequest {
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100225 OperationHandle handle = 1;
226 KeyParameters params = 2;
227 bytes input = 3;
nagendra modadugu251238b2018-05-07 16:24:49 -0700228 HardwareAuthToken auth_token = 4;
229 VerificationToken verification_token = 5;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700230}
231message UpdateOperationResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800232 ErrorCode error_code = 1;
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100233 uint32 consumed = 2;
234 KeyParameters params = 3;
235 bytes output = 4;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700236}
237
238// FinishOperation
239message FinishOperationRequest {
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100240 OperationHandle handle = 1;
241 KeyParameters params = 2;
242 bytes input = 3;
243 bytes signature = 4;
nagendra modadugu251238b2018-05-07 16:24:49 -0700244 HardwareAuthToken auth_token = 5;
245 VerificationToken verification_token = 6;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700246};
247message FinishOperationResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800248 ErrorCode error_code = 1;
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100249 KeyParameters params = 2;
250 bytes output = 3;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700251};
252
253// AbortOperation
254message AbortOperationRequest {
Andrew Scull36ebf2d2017-10-10 11:25:21 +0100255 OperationHandle handle = 1;
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700256};
nagendra modadugu36966942017-09-26 15:56:24 -0700257message AbortOperationResponse {
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800258 ErrorCode error_code = 1;
nagendra modadugu36966942017-09-26 15:56:24 -0700259};
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700260
261/*
262 * KM4 messages.
263 */
nagendra modadugu6023a7d2017-11-08 14:40:49 -0800264
265// ImportWrappedKey
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700266message ImportWrappedKeyRequest {
nagendra modadugubdf53cd2017-12-04 21:28:02 -0800267 uint32 key_format = 1;
268 KeyParameters params = 2;
269 bytes rsa_envelope = 3;
270 bytes initialization_vector = 4; // Fixed sized array.
271 bytes encrypted_import_key = 5;
272 bytes aad = 6;
273 bytes gcm_tag = 7; // Fixed sized array.
274 KeyBlob wrapping_key_blob = 8;
275 bytes masking_key = 9; // Fixed sized array.
nagendra modadugubdcfaa82017-09-17 17:11:36 -0700276}
nagendra modadugubdf53cd2017-12-04 21:28:02 -0800277// ImportWrappedKey returns a ImportKeyResponse.
nagendra modadugu6023a7d2017-11-08 14:40:49 -0800278
nagendra modadugu251238b2018-05-07 16:24:49 -0700279// GetHmacSharingParametersRequest
280message GetHmacSharingParametersRequest {
281}
282message GetHmacSharingParametersResponse {
283 ErrorCode error_code = 1;
284 HmacSharingParameters hmac_sharing_params = 2;
285}
286
287// ComputeSharedHmacRequest
288message ComputeSharedHmacRequest {
289 repeated HmacSharingParameters hmac_sharing_params = 1;
290}
291message ComputeSharedHmacResponse {
292 ErrorCode error_code = 1;
293 bytes sharing_check = 2;
294}
295
nagendra modadugu6023a7d2017-11-08 14:40:49 -0800296/*
297 * Vendor HAL.
298 */
299
300// SetRootOfTrustRequest
301// Only callable by the Bootloader.
302message SetRootOfTrustRequest {
nagendra modadugu5f490a72018-05-16 13:02:23 -0700303 bytes digest = 1; // This is a SHA256 digest.
nagendra modadugu6023a7d2017-11-08 14:40:49 -0800304}
305message SetRootOfTrustResponse {
306 // Specified in keymaster_defs.proto:ErrorCode
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800307 ErrorCode error_code = 1;
nagendra modadugu6023a7d2017-11-08 14:40:49 -0800308}
309
310// SetBootStateRequest
311// Only callable by the Bootloader.
312message SetBootStateRequest {
313 bool is_unlocked = 1;
nagendra modadugu5f490a72018-05-16 13:02:23 -0700314 bytes public_key = 2; // This is a SHA256 digest.
nagendra modadugu53158e92018-05-29 12:40:54 -0700315 BootColor color = 3;
nagendra modadugu6023a7d2017-11-08 14:40:49 -0800316 uint32 system_version = 4;
317 uint32 system_security_level = 5;
Allen Webbadfb8a02018-05-25 15:26:13 -0700318 bytes boot_hash = 6; // This is a SHA256 digest.
nagendra modadugu6023a7d2017-11-08 14:40:49 -0800319}
320message SetBootStateResponse {
321 // Specified in keymaster_defs.proto:ErrorCode
nagendra modadugu4405b6b2017-12-28 11:17:18 -0800322 ErrorCode error_code = 1;
nagendra modadugu0121ffb2018-03-08 22:37:33 -0800323}
324
325// ProvisionDeviceIds
326// Only callable at the Device Factory
327message ProvisionDeviceIdsRequest {
328 bytes product_brand = 1;
329 bytes product_device = 2;
330 bytes product_name = 3;
331 bytes serialno = 4;
332 bytes product_manufacturer = 5;
333 bytes product_model = 6;
334 bytes imei = 7;
335 bytes meid = 8;
336}
337message ProvisionDeviceIdsResponse {
338 // Specified in keymaster_defs.proto:ErrorCode
339 ErrorCode error_code = 1;
340}
341
342// ReadTeeBatchCertificate
343// Only callable at the Device Factory
344message ReadTeeBatchCertificateRequest {
345 Algorithm algorithm = 1;
346}
347message ReadTeeBatchCertificateResponse {
348 ErrorCode error_code = 1;
349 RSAKey rsa = 2; // rsa or ec set based on request algorithm selector.
350 ECKey ec = 3;
351 bytes batch_cert = 4;
352}
Janis Danisevskis4f705a72018-04-13 14:52:38 -0700353
Janis Danisevskise0a319a2018-04-11 16:51:44 -0700354message DTupHandshakeRequest {
355 bytes nonce_client = 1;
356}
357
358message DTupHandshakeResponse {
359 DTupError error_code = 1;
360 bytes nonce_citadel = 2;
361 bytes signature = 3;
362}
363
364message DTupFetchInputEventRequest {}
365
366message DTupFetchInputEventResponse {
367 DTupError error_code = 1;
368 DTupKeyEvent event = 2;
369 bytes signature = 3;
370}
Allen Webb4424c2c2018-05-25 08:31:56 -0700371
372message SetSystemVersionInfoRequest {
373 uint32 system_version = 1; // getprop "ro.build.version.release"
374 uint32 system_security_level = 2; // getprop "ro.build.version.security_patch"
375 uint32 vendor_security_level = 3; // getprop "ro.vendor.build.security_patch"
376}
377
378message SetSystemVersionInfoResponse {
379 // Specified in keymaster_defs.proto:ErrorCode
380 ErrorCode error_code = 1;
381}
Allen Webbf2e6dcf2018-05-30 14:31:28 -0700382
383message GetBootInfoRequest {}
384
385message GetBootInfoResponse {
386 ErrorCode error_code = 1;
387 bool is_unlocked = 2;
388 BootColor boot_color = 3;
389 bytes boot_key = 4; // This is a SHA256 digest.
390 bytes boot_hash = 5; // This is a SHA256 digest.
391}
Janis Danisevskis64a6d542018-05-29 21:56:21 -0700392
393message ProvisionPresharedSecretRequest {
394 bytes preshared_secret = 1;
395 bool get_status = 2;
396}
397message ProvisionPresharedSecretResponse {
398 ErrorCode error_code = 1;
399 PresharedSecretStatus status = 2;
400}