blob: 5941c93becd44eb6dd226ba616960c4b13856832 [file] [log] [blame]
Alex Deymoaea4c1c2015-08-19 20:24:43 -07001//
2// Copyright (C) 2013 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//
Jay Srinivasan1c0fe792013-03-28 16:45:25 -070016
Alex Deymo39910dc2015-11-09 17:04:30 -080017#include "update_engine/common/constants.h"
Jay Srinivasan1c0fe792013-03-28 16:45:25 -070018
19namespace chromeos_update_engine {
20
Alex Deymodd132f32015-09-14 19:12:07 -070021const char kPowerwashSafePrefsSubDirectory[] = "update_engine/prefs";
Chris Sosaaa18e162013-06-20 13:20:30 -070022
Alex Deymodd132f32015-09-14 19:12:07 -070023const char kPrefsSubDirectory[] = "prefs";
Chris Sosaaa18e162013-06-20 13:20:30 -070024
25const char kStatefulPartition[] = "/mnt/stateful_partition";
Jay Srinivasan1c0fe792013-03-28 16:45:25 -070026
Alex Deymo390efed2016-02-18 11:00:40 -080027const char kPostinstallDefaultScript[] = "postinst";
28
Jay Srinivasand29695d2013-04-08 15:08:05 -070029// Constants defining keys for the persisted state of update engine.
David Zeuthen4e1d1492014-04-25 13:12:27 -070030const char kPrefsAttemptInProgress[] = "attempt-in-progress";
Jay Srinivasand29695d2013-04-08 15:08:05 -070031const char kPrefsBackoffExpiryTime[] = "backoff-expiry-time";
Alex Deymodd132f32015-09-14 19:12:07 -070032const char kPrefsBootId[] = "boot-id";
Jay Srinivasan19409b72013-04-12 19:23:36 -070033const char kPrefsCurrentBytesDownloaded[] = "current-bytes-downloaded";
Jay Srinivasand29695d2013-04-08 15:08:05 -070034const char kPrefsCurrentResponseSignature[] = "current-response-signature";
35const char kPrefsCurrentUrlFailureCount[] = "current-url-failure-count";
36const char kPrefsCurrentUrlIndex[] = "current-url-index";
David Zeuthen985b1122013-10-09 12:13:15 -070037const char kPrefsDailyMetricsLastReportedAt[] =
38 "daily-metrics-last-reported-at";
Jay Srinivasand29695d2013-04-08 15:08:05 -070039const char kPrefsDeltaUpdateFailures[] = "delta-update-failures";
Alex Deymo820cc702013-06-28 15:43:46 -070040const char kPrefsFullPayloadAttemptNumber[] = "full-payload-attempt-number";
David Zeuthen639aa362014-02-03 16:23:44 -080041const char kPrefsInstallDateDays[] = "install-date-days";
Jay Srinivasand29695d2013-04-08 15:08:05 -070042const char kPrefsLastActivePingDay[] = "last-active-ping-day";
43const char kPrefsLastRollCallPingDay[] = "last-roll-call-ping-day";
44const char kPrefsManifestMetadataSize[] = "manifest-metadata-size";
Alex Deymof25eb492016-02-26 00:20:08 -080045const char kPrefsManifestSignatureSize[] = "manifest-signature-size";
David Zeuthen33bae492014-02-25 16:16:18 -080046const char kPrefsMetricsAttemptLastReportingTime[] =
47 "metrics-attempt-last-reporting-time";
48const char kPrefsMetricsCheckLastReportingTime[] =
49 "metrics-check-last-reporting-time";
Chris Sosabe45bef2013-04-09 18:25:12 -070050const char kPrefsNumReboots[] = "num-reboots";
David Zeuthena573d6f2013-06-14 16:13:36 -070051const char kPrefsNumResponsesSeen[] = "num-responses-seen";
Alex Deymo8e18f932015-03-27 16:16:59 -070052const char kPrefsOmahaCohort[] = "omaha-cohort";
53const char kPrefsOmahaCohortHint[] = "omaha-cohort-hint";
54const char kPrefsOmahaCohortName[] = "omaha-cohort-name";
Alex Deymob3fa53b2016-04-18 19:57:58 -070055const char kPrefsOmahaEolStatus[] = "omaha-eol-status";
David Zeuthen27a48bc2013-08-06 12:06:29 -070056const char kPrefsP2PEnabled[] = "p2p-enabled";
David Zeuthen639aa362014-02-03 16:23:44 -080057const char kPrefsP2PFirstAttemptTimestamp[] = "p2p-first-attempt-timestamp";
58const char kPrefsP2PNumAttempts[] = "p2p-num-attempts";
Jay Srinivasand29695d2013-04-08 15:08:05 -070059const char kPrefsPayloadAttemptNumber[] = "payload-attempt-number";
Sen Jiangfe522822017-10-31 15:14:11 -070060const char kPrefsPostInstallSucceeded[] = "post-install-succeeded";
Jay Srinivasand29695d2013-04-08 15:08:05 -070061const char kPrefsPreviousVersion[] = "previous-version";
62const char kPrefsResumedUpdateFailures[] = "resumed-update-failures";
Chris Sosaaa18e162013-06-20 13:20:30 -070063const char kPrefsRollbackVersion[] = "rollback-version";
Alex Deymo85616652015-10-15 18:48:31 -070064const char kPrefsChannelOnSlotPrefix[] = "channel-on-slot-";
David Zeuthene4c58bf2013-06-18 17:26:50 -070065const char kPrefsSystemUpdatedMarker[] = "system-updated-marker";
Alex Deymo42432912013-07-12 20:21:15 -070066const char kPrefsTargetVersionAttempt[] = "target-version-attempt";
67const char kPrefsTargetVersionInstalledFrom[] = "target-version-installed-from";
68const char kPrefsTargetVersionUniqueId[] = "target-version-unique-id";
Jay Srinivasan19409b72013-04-12 19:23:36 -070069const char kPrefsTotalBytesDownloaded[] = "total-bytes-downloaded";
Jay Srinivasand29695d2013-04-08 15:08:05 -070070const char kPrefsUpdateCheckCount[] = "update-check-count";
71const char kPrefsUpdateCheckResponseHash[] = "update-check-response-hash";
Alex Deymo906191f2015-10-12 12:22:44 -070072const char kPrefsUpdateCompletedBootTime[] = "update-completed-boot-time";
73const char kPrefsUpdateCompletedOnBootId[] = "update-completed-on-boot-id";
David Zeuthencc6f9962013-04-18 11:57:24 -070074const char kPrefsUpdateDurationUptime[] = "update-duration-uptime";
Jay Srinivasand29695d2013-04-08 15:08:05 -070075const char kPrefsUpdateFirstSeenAt[] = "update-first-seen-at";
Alex Deymof4867c42013-06-28 14:41:39 -070076const char kPrefsUpdateOverCellularPermission[] =
77 "update-over-cellular-permission";
Jay Srinivasand29695d2013-04-08 15:08:05 -070078const char kPrefsUpdateServerCertificate[] = "update-server-cert";
David Zeuthen41996ad2013-09-24 15:43:24 -070079const char kPrefsUpdateStateNextDataLength[] = "update-state-next-data-length";
David Zeuthen639aa362014-02-03 16:23:44 -080080const char kPrefsUpdateStateNextDataOffset[] = "update-state-next-data-offset";
Jay Srinivasand29695d2013-04-08 15:08:05 -070081const char kPrefsUpdateStateNextOperation[] = "update-state-next-operation";
Sen Jiang0affc2c2017-02-10 15:55:05 -080082const char kPrefsUpdateStatePayloadIndex[] = "update-state-payload-index";
Jay Srinivasand29695d2013-04-08 15:08:05 -070083const char kPrefsUpdateStateSHA256Context[] = "update-state-sha-256-context";
84const char kPrefsUpdateStateSignatureBlob[] = "update-state-signature-blob";
85const char kPrefsUpdateStateSignedSHA256Context[] =
86 "update-state-signed-sha-256-context";
David Zeuthen9a017f22013-04-11 16:10:26 -070087const char kPrefsUpdateTimestampStart[] = "update-timestamp-start";
David Zeuthencc6f9962013-04-18 11:57:24 -070088const char kPrefsUrlSwitchCount[] = "url-switch-count";
89const char kPrefsWallClockWaitPeriod[] = "wall-clock-wait-period";
Jay Srinivasand29695d2013-04-08 15:08:05 -070090
Elliott Hughesb1e3e3c2017-02-28 15:15:38 -080091// These four fields are generated by scripts/brillo_update_payload.
Alex Deymo98e691c2016-02-04 21:05:45 -080092const char kPayloadPropertyFileSize[] = "FILE_SIZE";
93const char kPayloadPropertyFileHash[] = "FILE_HASH";
94const char kPayloadPropertyMetadataSize[] = "METADATA_SIZE";
95const char kPayloadPropertyMetadataHash[] = "METADATA_HASH";
Elliott Hughesb1e3e3c2017-02-28 15:15:38 -080096// The Authorization: HTTP header to be sent when downloading the payload.
Alex Deymofdd6dec2016-03-03 22:35:43 -080097const char kPayloadPropertyAuthorization[] = "AUTHORIZATION";
Elliott Hughesb1e3e3c2017-02-28 15:15:38 -080098// The User-Agent HTTP header to be sent when downloading the payload.
Alex Deymofdd6dec2016-03-03 22:35:43 -080099const char kPayloadPropertyUserAgent[] = "USER_AGENT";
Elliott Hughesb1e3e3c2017-02-28 15:15:38 -0800100// Set "POWERWASH=1" to powerwash (factory data reset) the device after
101// applying the update.
Alex Deymofb905d92016-06-03 19:26:58 -0700102const char kPayloadPropertyPowerwash[] = "POWERWASH";
Elliott Hughesb1e3e3c2017-02-28 15:15:38 -0800103// The network id to pass to android_setprocnetwork before downloading.
104// This can be used to zero-rate OTA traffic by sending it over the correct
105// network.
Alex Deymo87792ea2016-07-25 15:40:36 -0700106const char kPayloadPropertyNetworkId[] = "NETWORK_ID";
Sen Jiangfe522822017-10-31 15:14:11 -0700107// Set "SWITCH_SLOT_ON_REBOOT=0" to skip marking the updated partitions active.
108// The default is 1 (always switch slot if update succeeded).
109const char kPayloadPropertySwitchSlotOnReboot[] = "SWITCH_SLOT_ON_REBOOT";
110// Set "RUN_POST_INSTALL=0" to skip running post install, this will only be
111// honored if we're resuming an update and post install has already succeeded.
112// The default is 1 (always run post install).
113const char kPayloadPropertyRunPostInstall[] = "RUN_POST_INSTALL";
Alex Deymo98e691c2016-02-04 21:05:45 -0800114
Alex Vakulenkod2779df2014-06-16 13:19:00 -0700115} // namespace chromeos_update_engine