blob: 2e92f5585ec366d28f0e0fc36bed465dcbae670b [file] [log] [blame]
Jooyung Han97277ee2021-04-14 15:34:24 +09001/*
2 * Copyright (C) 2021 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 android.microdroid;
20
Jooyung Han74573482021-06-08 17:10:21 +090021// Metadata is the body of the "metadata" partition
22message Metadata {
Jooyung Han97277ee2021-04-14 15:34:24 +090023 uint32 version = 1;
24
Jooyung Han74573482021-06-08 17:10:21 +090025 repeated ApexPayload apexes = 2;
Jooyung Han57d895e2021-05-13 21:58:41 +090026
Jooyung Han74573482021-06-08 17:10:21 +090027 ApkPayload apk = 3;
Jooyung Han347d9f22021-05-28 00:05:14 +090028
29 string payload_config_path = 4;
Jooyung Han97277ee2021-04-14 15:34:24 +090030}
31
Jooyung Han74573482021-06-08 17:10:21 +090032message ApexPayload {
Jooyung Han97277ee2021-04-14 15:34:24 +090033 // Required.
Jooyung Han97277ee2021-04-14 15:34:24 +090034 string name = 1;
Jooyung Han74573482021-06-08 17:10:21 +090035 string partition_name = 2;
Jooyung Han97277ee2021-04-14 15:34:24 +090036
37 // Optional.
Jooyung Hanc8deb472021-09-13 13:48:25 +090038 // When specified, apex payload should be verified with the public key and root digest.
Jooyung Han4a9b3bf2021-09-10 17:19:00 +090039 bytes public_key = 3;
Jooyung Hanc8deb472021-09-13 13:48:25 +090040 bytes root_digest = 4;
Andrew Walbran40be9d52022-01-19 14:32:53 +000041
42 // Required.
43 // The timestamp in seconds when the APEX was last updated. This should match the value in
44 // apex-info-list.xml.
45 uint64 last_update_seconds = 5;
Jiyong Parkd6502352022-01-27 01:07:30 +090046
47 // Required.
48 // Whether the APEX is a factory version or not.
49 bool is_factory = 6;
Jooyung Han97277ee2021-04-14 15:34:24 +090050}
Jooyung Han57d895e2021-05-13 21:58:41 +090051
Jooyung Han74573482021-06-08 17:10:21 +090052message ApkPayload {
Jooyung Han57d895e2021-05-13 21:58:41 +090053 // Required.
54 // The name of APK.
55 string name = 1;
56
57 string payload_partition_name = 2;
Jooyung Han74573482021-06-08 17:10:21 +090058
Jooyung Han57d895e2021-05-13 21:58:41 +090059 string idsig_partition_name = 3;
Jooyung Han347d9f22021-05-28 00:05:14 +090060}