Jooyung Han | 97277ee | 2021-04-14 15:34:24 +0900 | [diff] [blame] | 1 | /* |
| 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 | |
| 17 | syntax = "proto3"; |
| 18 | |
| 19 | package android.microdroid; |
| 20 | |
Jooyung Han | 7457348 | 2021-06-08 17:10:21 +0900 | [diff] [blame] | 21 | // Metadata is the body of the "metadata" partition |
| 22 | message Metadata { |
Jooyung Han | 97277ee | 2021-04-14 15:34:24 +0900 | [diff] [blame] | 23 | uint32 version = 1; |
| 24 | |
Jooyung Han | 7457348 | 2021-06-08 17:10:21 +0900 | [diff] [blame] | 25 | repeated ApexPayload apexes = 2; |
Jooyung Han | 57d895e | 2021-05-13 21:58:41 +0900 | [diff] [blame] | 26 | |
Jooyung Han | 7457348 | 2021-06-08 17:10:21 +0900 | [diff] [blame] | 27 | ApkPayload apk = 3; |
Jooyung Han | 347d9f2 | 2021-05-28 00:05:14 +0900 | [diff] [blame] | 28 | |
Alan Stokes | 0d1ef78 | 2022-09-27 13:46:35 +0100 | [diff] [blame] | 29 | oneof payload { |
| 30 | // Path to JSON config file inside the APK. |
| 31 | string config_path = 4; |
| 32 | PayloadConfig config = 5; |
| 33 | } |
Jooyung Han | 97277ee | 2021-04-14 15:34:24 +0900 | [diff] [blame] | 34 | } |
| 35 | |
Jooyung Han | 7457348 | 2021-06-08 17:10:21 +0900 | [diff] [blame] | 36 | message ApexPayload { |
Jooyung Han | 97277ee | 2021-04-14 15:34:24 +0900 | [diff] [blame] | 37 | // Required. |
Jooyung Han | 97277ee | 2021-04-14 15:34:24 +0900 | [diff] [blame] | 38 | string name = 1; |
Jooyung Han | 7457348 | 2021-06-08 17:10:21 +0900 | [diff] [blame] | 39 | string partition_name = 2; |
Jooyung Han | 97277ee | 2021-04-14 15:34:24 +0900 | [diff] [blame] | 40 | |
| 41 | // Optional. |
Jooyung Han | c8deb47 | 2021-09-13 13:48:25 +0900 | [diff] [blame] | 42 | // When specified, apex payload should be verified with the public key and root digest. |
Jooyung Han | 4a9b3bf | 2021-09-10 17:19:00 +0900 | [diff] [blame] | 43 | bytes public_key = 3; |
Jooyung Han | c8deb47 | 2021-09-13 13:48:25 +0900 | [diff] [blame] | 44 | bytes root_digest = 4; |
Andrew Walbran | 40be9d5 | 2022-01-19 14:32:53 +0000 | [diff] [blame] | 45 | |
| 46 | // Required. |
| 47 | // The timestamp in seconds when the APEX was last updated. This should match the value in |
| 48 | // apex-info-list.xml. |
| 49 | uint64 last_update_seconds = 5; |
Jiyong Park | d650235 | 2022-01-27 01:07:30 +0900 | [diff] [blame] | 50 | |
| 51 | // Required. |
| 52 | // Whether the APEX is a factory version or not. |
| 53 | bool is_factory = 6; |
Jooyung Han | 97277ee | 2021-04-14 15:34:24 +0900 | [diff] [blame] | 54 | } |
Jooyung Han | 57d895e | 2021-05-13 21:58:41 +0900 | [diff] [blame] | 55 | |
Jooyung Han | 7457348 | 2021-06-08 17:10:21 +0900 | [diff] [blame] | 56 | message ApkPayload { |
Jooyung Han | 57d895e | 2021-05-13 21:58:41 +0900 | [diff] [blame] | 57 | // Required. |
| 58 | // The name of APK. |
| 59 | string name = 1; |
| 60 | |
| 61 | string payload_partition_name = 2; |
Jooyung Han | 7457348 | 2021-06-08 17:10:21 +0900 | [diff] [blame] | 62 | |
Jooyung Han | 57d895e | 2021-05-13 21:58:41 +0900 | [diff] [blame] | 63 | string idsig_partition_name = 3; |
Jooyung Han | 347d9f2 | 2021-05-28 00:05:14 +0900 | [diff] [blame] | 64 | } |
Alan Stokes | 0d1ef78 | 2022-09-27 13:46:35 +0100 | [diff] [blame] | 65 | |
| 66 | message PayloadConfig { |
| 67 | // Required. |
| 68 | // Path to the payload binary file inside the APK. |
| 69 | string payload_binary_path = 1; |
Alan Stokes | 0d1ef78 | 2022-09-27 13:46:35 +0100 | [diff] [blame] | 70 | } |