blob: a6a79a5a00602f0b70abd2be7f28abed81c34d20 [file] [log] [blame]
David Andersonee84d742019-01-07 18:10:29 -08001//
2// Copyright (C) 2019 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#include <getopt.h>
18#include <stdio.h>
19#include <sysexits.h>
Howard Chen3f6d5a62019-08-22 15:26:33 +080020#include <unistd.h>
David Andersonee84d742019-01-07 18:10:29 -080021
David Andersonc053b3b2019-01-08 18:22:07 -080022#include <chrono>
David Anderson6a5b8a72019-01-16 16:24:48 -080023#include <condition_variable>
David Andersonee84d742019-01-07 18:10:29 -080024#include <functional>
25#include <iostream>
26#include <map>
David Anderson6a5b8a72019-01-16 16:24:48 -080027#include <mutex>
David Andersonee84d742019-01-07 18:10:29 -080028#include <string>
David Anderson6a5b8a72019-01-16 16:24:48 -080029#include <thread>
David Andersonee84d742019-01-07 18:10:29 -080030
David Anderson83fdeca2019-09-09 17:56:22 -070031#include <android-base/logging.h>
David Andersonee84d742019-01-07 18:10:29 -080032#include <android-base/parseint.h>
David Andersonc053b3b2019-01-08 18:22:07 -080033#include <android-base/properties.h>
Yo Chiang53bed1c2020-01-01 16:25:19 +080034#include <android-base/stringprintf.h>
Howard Chen4663de62019-11-05 20:46:20 +080035#include <android-base/strings.h>
David Andersonee84d742019-01-07 18:10:29 -080036#include <android-base/unique_fd.h>
David Andersonc053b3b2019-01-08 18:22:07 -080037#include <android/gsi/IGsiService.h>
David Andersonb33f2b12019-01-22 14:14:10 -080038#include <cutils/android_reboot.h>
David Andersonc053b3b2019-01-08 18:22:07 -080039#include <libgsi/libgsi.h>
David Anderson83fdeca2019-09-09 17:56:22 -070040#include <libgsi/libgsid.h>
David Andersonc053b3b2019-01-08 18:22:07 -080041
42using namespace android::gsi;
43using namespace std::chrono_literals;
David Andersonee84d742019-01-07 18:10:29 -080044
45using android::sp;
Howard Chen4663de62019-11-05 20:46:20 +080046using android::base::Split;
Yo Chiang53bed1c2020-01-01 16:25:19 +080047using android::base::StringPrintf;
David Andersonc053b3b2019-01-08 18:22:07 -080048using CommandCallback = std::function<int(sp<IGsiService>, int, char**)>;
David Andersonee84d742019-01-07 18:10:29 -080049
David Andersona141ba82019-01-14 19:09:27 -080050static int Disable(sp<IGsiService> gsid, int argc, char** argv);
51static int Enable(sp<IGsiService> gsid, int argc, char** argv);
David Andersonc053b3b2019-01-08 18:22:07 -080052static int Install(sp<IGsiService> gsid, int argc, char** argv);
Yo Chiangc443f4f2020-10-21 21:49:20 +080053static int CreatePartition(sp<IGsiService> gsid, int argc, char** argv);
David Andersonc053b3b2019-01-08 18:22:07 -080054static int Wipe(sp<IGsiService> gsid, int argc, char** argv);
David Anderson8bdf6252019-06-11 16:43:24 -070055static int WipeData(sp<IGsiService> gsid, int argc, char** argv);
Howard Chenf08428e2019-01-23 14:54:51 +080056static int Status(sp<IGsiService> gsid, int argc, char** argv);
Howard Chenecbc0192019-02-25 18:51:26 +080057static int Cancel(sp<IGsiService> gsid, int argc, char** argv);
David Andersonee84d742019-01-07 18:10:29 -080058
59static const std::map<std::string, CommandCallback> kCommandMap = {
David Anderson5cc440c2019-04-16 14:34:27 -070060 // clang-format off
David Andersona141ba82019-01-14 19:09:27 -080061 {"disable", Disable},
62 {"enable", Enable},
David Andersonee84d742019-01-07 18:10:29 -080063 {"install", Install},
Yo Chiangc443f4f2020-10-21 21:49:20 +080064 {"create-partition", CreatePartition},
David Andersonee84d742019-01-07 18:10:29 -080065 {"wipe", Wipe},
David Anderson8bdf6252019-06-11 16:43:24 -070066 {"wipe-data", WipeData},
Howard Chenf08428e2019-01-23 14:54:51 +080067 {"status", Status},
Howard Chenecbc0192019-02-25 18:51:26 +080068 {"cancel", Cancel},
David Anderson5cc440c2019-04-16 14:34:27 -070069 // clang-format on
David Andersonee84d742019-01-07 18:10:29 -080070};
71
David Anderson5cc440c2019-04-16 14:34:27 -070072static std::string ErrorMessage(const android::binder::Status& status,
73 int error_code = IGsiService::INSTALL_ERROR_GENERIC) {
David Anderson646b4b22019-02-27 18:26:54 -080074 if (!status.isOk()) {
75 return status.exceptionMessage().string();
76 }
77 return "error code " + std::to_string(error_code);
78}
79
David Anderson6a5b8a72019-01-16 16:24:48 -080080class ProgressBar {
81 public:
82 explicit ProgressBar(sp<IGsiService> gsid) : gsid_(gsid) {}
83
84 ~ProgressBar() { Stop(); }
85
86 void Display() {
David Andersonb0f3c822019-01-31 19:19:02 -080087 Finish();
David Anderson6a5b8a72019-01-16 16:24:48 -080088 done_ = false;
89 last_update_ = {};
90 worker_ = std::make_unique<std::thread>([this]() { Worker(); });
91 }
92
93 void Stop() {
94 if (!worker_) {
95 return;
96 }
97 SignalDone();
98 worker_->join();
99 worker_ = nullptr;
100 }
101
102 void Finish() {
David Andersonb0f3c822019-01-31 19:19:02 -0800103 if (!worker_) {
104 return;
105 }
David Anderson6a5b8a72019-01-16 16:24:48 -0800106 Stop();
107 FinishLastBar();
108 }
109
110 private:
111 void Worker() {
112 std::unique_lock<std::mutex> lock(mutex_);
113 while (!done_) {
114 if (!UpdateProgress()) {
115 return;
116 }
117 cv_.wait_for(lock, 500ms, [this] { return done_; });
118 }
119 }
120
121 bool UpdateProgress() {
122 GsiProgress latest;
123 auto status = gsid_->getInstallProgress(&latest);
124 if (!status.isOk()) {
125 std::cout << std::endl;
126 return false;
127 }
128 if (latest.status == IGsiService::STATUS_NO_OPERATION) {
129 return true;
130 }
131 if (last_update_.step != latest.step) {
132 FinishLastBar();
133 }
134 Display(latest);
135 return true;
136 }
137
138 void FinishLastBar() {
David Andersonb0f3c822019-01-31 19:19:02 -0800139 // If no bar was in progress, don't do anything.
140 if (last_update_.total_bytes == 0) {
141 return;
142 }
David Anderson6a5b8a72019-01-16 16:24:48 -0800143 // Ensure we finish the display at 100%.
144 last_update_.bytes_processed = last_update_.total_bytes;
145 Display(last_update_);
146 std::cout << std::endl;
147 }
148
149 void Display(const GsiProgress& progress) {
150 if (progress.total_bytes == 0) {
151 return;
152 }
153
154 static constexpr int kColumns = 80;
155 static constexpr char kRedColor[] = "\x1b[31m";
156 static constexpr char kGreenColor[] = "\x1b[32m";
157 static constexpr char kResetColor[] = "\x1b[0m";
158
159 int percentage = (progress.bytes_processed * 100) / progress.total_bytes;
160 int64_t bytes_per_col = progress.total_bytes / kColumns;
161 uint32_t fill_count = progress.bytes_processed / bytes_per_col;
162 uint32_t dash_count = kColumns - fill_count;
163 std::string fills = std::string(fill_count, '=');
164 std::string dashes = std::string(dash_count, '-');
165
166 // Give the end of the bar some flare.
167 if (!fills.empty() && !dashes.empty()) {
168 fills[fills.size() - 1] = '>';
169 }
170
171 fprintf(stdout, "\r%-15s%6d%% ", progress.step.c_str(), percentage);
172 fprintf(stdout, "%s[%s%s%s", kGreenColor, fills.c_str(), kRedColor, dashes.c_str());
173 fprintf(stdout, "%s]%s", kGreenColor, kResetColor);
174 fflush(stdout);
175
176 last_update_ = progress;
177 }
178
179 void SignalDone() {
180 std::lock_guard<std::mutex> guard(mutex_);
181 done_ = true;
182 cv_.notify_all();
183 }
184
185 private:
186 sp<IGsiService> gsid_;
187 std::unique_ptr<std::thread> worker_;
188 std::condition_variable cv_;
189 std::mutex mutex_;
190 GsiProgress last_update_;
191 bool done_ = false;
192};
193
David Andersonc053b3b2019-01-08 18:22:07 -0800194static int Install(sp<IGsiService> gsid, int argc, char** argv) {
Howard Chen18109b12019-08-13 17:00:44 +0800195 constexpr const char* kDefaultPartition = "system";
David Andersonee84d742019-01-07 18:10:29 -0800196 struct option options[] = {
David Andersoneb30ac22019-03-12 15:24:53 -0700197 {"install-dir", required_argument, nullptr, 'i'},
David Andersonee84d742019-01-07 18:10:29 -0800198 {"gsi-size", required_argument, nullptr, 's'},
David Andersonb33f2b12019-01-22 14:14:10 -0800199 {"no-reboot", no_argument, nullptr, 'n'},
David Andersonee84d742019-01-07 18:10:29 -0800200 {"userdata-size", required_argument, nullptr, 'u'},
Howard Chen18109b12019-08-13 17:00:44 +0800201 {"partition-name", required_argument, nullptr, 'p'},
David Andersona141ba82019-01-14 19:09:27 -0800202 {"wipe", no_argument, nullptr, 'w'},
David Andersonee84d742019-01-07 18:10:29 -0800203 {nullptr, 0, nullptr, 0},
204 };
205
Paul Trautrim3c23df22019-12-11 16:18:22 +0900206 int64_t gsiSize = 0;
207 int64_t userdataSize = 0;
Howard Chen18109b12019-08-13 17:00:44 +0800208 bool wipeUserdata = false;
David Andersonb33f2b12019-01-22 14:14:10 -0800209 bool reboot = true;
Howard Chen18109b12019-08-13 17:00:44 +0800210 std::string installDir = "";
211 std::string partition = kDefaultPartition;
David Andersonb5f44b32019-02-20 18:04:37 -0800212 if (getuid() != 0) {
213 std::cerr << "must be root to install a GSI" << std::endl;
214 return EX_NOPERM;
215 }
216
David Andersonee84d742019-01-07 18:10:29 -0800217 int rv, index;
218 while ((rv = getopt_long_only(argc, argv, "", options, &index)) != -1) {
219 switch (rv) {
Howard Chen18109b12019-08-13 17:00:44 +0800220 case 'p':
221 partition = optarg;
222 break;
David Andersonee84d742019-01-07 18:10:29 -0800223 case 's':
Howard Chen18109b12019-08-13 17:00:44 +0800224 if (!android::base::ParseInt(optarg, &gsiSize) || gsiSize <= 0) {
David Anderson550253b2019-02-08 17:55:27 -0800225 std::cerr << "Could not parse image size: " << optarg << std::endl;
David Andersonee84d742019-01-07 18:10:29 -0800226 return EX_USAGE;
227 }
228 break;
229 case 'u':
Howard Chen18109b12019-08-13 17:00:44 +0800230 if (!android::base::ParseInt(optarg, &userdataSize) || userdataSize < 0) {
David Anderson550253b2019-02-08 17:55:27 -0800231 std::cerr << "Could not parse image size: " << optarg << std::endl;
David Andersonee84d742019-01-07 18:10:29 -0800232 return EX_USAGE;
233 }
234 break;
David Andersoneb30ac22019-03-12 15:24:53 -0700235 case 'i':
Howard Chen18109b12019-08-13 17:00:44 +0800236 installDir = optarg;
David Andersoneb30ac22019-03-12 15:24:53 -0700237 break;
David Andersona141ba82019-01-14 19:09:27 -0800238 case 'w':
Howard Chen18109b12019-08-13 17:00:44 +0800239 wipeUserdata = true;
David Andersona141ba82019-01-14 19:09:27 -0800240 break;
David Andersonb33f2b12019-01-22 14:14:10 -0800241 case 'n':
242 reboot = false;
243 break;
David Andersonee84d742019-01-07 18:10:29 -0800244 }
245 }
246
Howard Chen18109b12019-08-13 17:00:44 +0800247 if (gsiSize <= 0) {
David Anderson550253b2019-02-08 17:55:27 -0800248 std::cerr << "Must specify --gsi-size." << std::endl;
David Andersonee84d742019-01-07 18:10:29 -0800249 return EX_USAGE;
250 }
251
David Andersona78f8112019-01-17 11:50:50 -0800252 bool running_gsi = false;
253 gsid->isGsiRunning(&running_gsi);
254 if (running_gsi) {
David Anderson550253b2019-02-08 17:55:27 -0800255 std::cerr << "Cannot install a GSI within a live GSI." << std::endl;
256 std::cerr << "Use gsi_tool disable or wipe and reboot first." << std::endl;
David Andersona78f8112019-01-17 11:50:50 -0800257 return EX_SOFTWARE;
258 }
259
Yo Chiang1b466d22020-08-28 22:00:42 +0800260 android::base::unique_fd input(dup(STDIN_FILENO));
David Andersonee84d742019-01-07 18:10:29 -0800261 if (input < 0) {
David Anderson550253b2019-02-08 17:55:27 -0800262 std::cerr << "Error duplicating descriptor: " << strerror(errno) << std::endl;
David Andersonee84d742019-01-07 18:10:29 -0800263 return EX_SOFTWARE;
264 }
David Anderson6a5b8a72019-01-16 16:24:48 -0800265 // Note: the progress bar needs to be re-started in between each call.
266 ProgressBar progress(gsid);
David Anderson6a5b8a72019-01-16 16:24:48 -0800267 progress.Display();
David Anderson868dea52019-01-17 13:34:38 -0800268 int error;
Howard Chen4663de62019-11-05 20:46:20 +0800269 auto status = gsid->openInstall(installDir, &error);
270 if (!status.isOk() || error != IGsiService::INSTALL_OK) {
Yo Chiang99b12d02019-12-02 15:47:57 +0800271 std::cerr << "Could not open DSU installation: " << ErrorMessage(status, error) << "\n";
Howard Chen4663de62019-11-05 20:46:20 +0800272 return EX_SOFTWARE;
273 }
Howard Chen18109b12019-08-13 17:00:44 +0800274 if (partition == kDefaultPartition) {
Howard Chen4663de62019-11-05 20:46:20 +0800275 auto status = gsid->createPartition("userdata", userdataSize, false, &error);
Howard Chen18109b12019-08-13 17:00:44 +0800276 if (!status.isOk() || error != IGsiService::INSTALL_OK) {
277 std::cerr << "Could not start live image install: " << ErrorMessage(status, error)
278 << "\n";
279 return EX_SOFTWARE;
280 }
Yo Chiangf9f5dbb2020-12-28 20:14:34 +0800281 status = gsid->closePartition(&error);
282 if (!status.isOk() || error != IGsiService::INSTALL_OK) {
283 std::cerr << "Could not closePartition(userdata): " << ErrorMessage(status, error)
284 << std::endl;
285 return EX_SOFTWARE;
286 }
Howard Chen18109b12019-08-13 17:00:44 +0800287 }
Howard Chen18109b12019-08-13 17:00:44 +0800288
Howard Chen4663de62019-11-05 20:46:20 +0800289 status = gsid->createPartition(partition, gsiSize, true, &error);
David Anderson868dea52019-01-17 13:34:38 -0800290 if (!status.isOk() || error != IGsiService::INSTALL_OK) {
David Anderson646b4b22019-02-27 18:26:54 -0800291 std::cerr << "Could not start live image install: " << ErrorMessage(status, error) << "\n";
David Andersonee84d742019-01-07 18:10:29 -0800292 return EX_SOFTWARE;
293 }
David Anderson1d94d262019-01-11 20:39:51 -0800294 android::os::ParcelFileDescriptor stream(std::move(input));
295
David Anderson868dea52019-01-17 13:34:38 -0800296 bool ok = false;
David Anderson6a5b8a72019-01-16 16:24:48 -0800297 progress.Display();
Howard Chen4663de62019-11-05 20:46:20 +0800298 status = gsid->commitGsiChunkFromStream(stream, gsiSize, &ok);
David Anderson6a5b8a72019-01-16 16:24:48 -0800299 if (!ok) {
David Anderson646b4b22019-02-27 18:26:54 -0800300 std::cerr << "Could not commit live image data: " << ErrorMessage(status) << "\n";
David Andersonee84d742019-01-07 18:10:29 -0800301 return EX_SOFTWARE;
302 }
303
Yo Chiangf9f5dbb2020-12-28 20:14:34 +0800304 status = gsid->closePartition(&error);
305 if (!status.isOk() || error != IGsiService::INSTALL_OK) {
306 std::cerr << "Could not closePartition(" << partition
307 << "): " << ErrorMessage(status, error) << std::endl;
308 return EX_SOFTWARE;
309 }
310
Howard Chen4663de62019-11-05 20:46:20 +0800311 status = gsid->closeInstall(&error);
312 if (!status.isOk() || error != IGsiService::INSTALL_OK) {
313 std::cerr << "Could not close DSU installation: " << ErrorMessage(status, error) << "\n";
314 return EX_SOFTWARE;
315 }
David Anderson6a5b8a72019-01-16 16:24:48 -0800316 progress.Finish();
Howard Chenee5c2b12019-11-08 11:57:47 +0800317 std::string dsuSlot;
318 status = gsid->getActiveDsuSlot(&dsuSlot);
319 if (!status.isOk()) {
320 std::cerr << "Could not get the active DSU slot: " << ErrorMessage(status) << "\n";
321 return EX_SOFTWARE;
322 }
323 status = gsid->enableGsi(true, dsuSlot, &error);
David Anderson868dea52019-01-17 13:34:38 -0800324 if (!status.isOk() || error != IGsiService::INSTALL_OK) {
David Anderson646b4b22019-02-27 18:26:54 -0800325 std::cerr << "Could not make live image bootable: " << ErrorMessage(status, error) << "\n";
David Andersonee84d742019-01-07 18:10:29 -0800326 return EX_SOFTWARE;
327 }
David Andersonb33f2b12019-01-22 14:14:10 -0800328
329 if (reboot) {
330 if (!android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,adb")) {
David Anderson550253b2019-02-08 17:55:27 -0800331 std::cerr << "Failed to reboot automatically" << std::endl;
David Andersonb33f2b12019-01-22 14:14:10 -0800332 return EX_SOFTWARE;
333 }
334 } else {
335 std::cout << "Please reboot to use the GSI." << std::endl;
336 }
David Andersonee84d742019-01-07 18:10:29 -0800337 return 0;
338}
339
Yo Chiangc443f4f2020-10-21 21:49:20 +0800340// Experimental API
341static int CreatePartition(sp<IGsiService> gsid, int argc, char** argv) {
342 std::string installDir;
343 std::string partitionName;
344 bool readOnly = true;
345 int64_t partitionSize = 0;
346
347 struct option options[] = {
348 {"install-dir", required_argument, nullptr, 'i'},
349 {"partition-name", required_argument, nullptr, 'p'},
350 {"readwrite", no_argument, nullptr, 'r'},
351 {"size", required_argument, nullptr, 's'},
352 {nullptr, 0, nullptr, 0},
353 };
354
355 int rv = 0;
356 while ((rv = getopt_long_only(argc, argv, "", options, nullptr)) != -1) {
357 switch (rv) {
358 case 'i':
359 installDir = optarg;
360 break;
361 case 'p':
362 partitionName = optarg;
363 break;
364 case 'r':
365 readOnly = false;
366 break;
367 case 's':
368 if (!android::base::ParseInt(optarg, &partitionSize)) {
369 std::cerr << "Could not parse partition size: " << optarg << std::endl;
370 return EX_USAGE;
371 }
372 break;
373 default:
374 return EX_USAGE;
375 }
376 }
377
378 if (getuid() != 0) {
379 std::cerr << "must be root to install a DSU" << std::endl;
380 return EX_NOPERM;
381 }
382
383 bool gsiRunning = false;
384 auto status = gsid->isGsiRunning(&gsiRunning);
385 if (!status.isOk()) {
386 std::cerr << "Could not get DSU running status: " << ErrorMessage(status) << std::endl;
387 return EX_SOFTWARE;
388 }
389 if (gsiRunning) {
390 std::cerr << "Could not install DSU within an active DSU." << std::endl;
391 return EX_SOFTWARE;
392 }
393
394 if (partitionSize <= 0) {
395 std::cerr << "Partition size must be greater than zero: " << partitionSize << std::endl;
396 return EX_USAGE;
397 }
398
399 // Note: the progress bar needs to be re-started in between each call.
400 ProgressBar progress(gsid);
401 progress.Display();
402
403 int error;
404 status = gsid->openInstall(installDir, &error);
405 if (!status.isOk() || error != IGsiService::INSTALL_OK) {
406 std::cerr << "Could not open DSU installation: " << ErrorMessage(status, error)
407 << std::endl;
408 return EX_SOFTWARE;
409 }
410
411 status = gsid->createPartition(partitionName, partitionSize, readOnly, &error);
412 if (!status.isOk() || error != IGsiService::INSTALL_OK) {
413 std::cerr << "Could not create DSU partition: " << ErrorMessage(status, error) << std::endl;
414 return EX_SOFTWARE;
415 }
416
417 if (readOnly) {
418 android::base::unique_fd input(dup(STDIN_FILENO));
419 if (input < 0) {
420 std::cerr << "Error duplicating descriptor: " << strerror(errno) << std::endl;
421 return EX_SOFTWARE;
422 }
423 android::os::ParcelFileDescriptor stream(std::move(input));
424
425 bool ok = false;
426 status = gsid->commitGsiChunkFromStream(stream, partitionSize, &ok);
427 if (!ok) {
428 std::cerr << "Could not commit data from stdin: " << ErrorMessage(status) << std::endl;
429 return EX_SOFTWARE;
430 }
431 }
432
Yo Chiangf9f5dbb2020-12-28 20:14:34 +0800433 status = gsid->closePartition(&error);
434 if (!status.isOk() || error != IGsiService::INSTALL_OK) {
435 std::cerr << "Could not close DSU partition:" << ErrorMessage(status, error) << std::endl;
436 return EX_SOFTWARE;
437 }
438
Yo Chiangc443f4f2020-10-21 21:49:20 +0800439 status = gsid->closeInstall(&error);
440 if (!status.isOk() || error != IGsiService::INSTALL_OK) {
441 std::cerr << "Could not close DSU installation: " << ErrorMessage(status, error)
442 << std::endl;
443 return EX_SOFTWARE;
444 }
445
446 progress.Finish();
447
448 std::string dsuSlot;
449 status = gsid->getActiveDsuSlot(&dsuSlot);
450 if (!status.isOk()) {
451 std::cerr << "Could not get the active DSU slot: " << ErrorMessage(status) << std::endl;
452 return EX_SOFTWARE;
453 }
454
455 // Immediately enable DSU after a partition is installed to ensure the installation status file
456 // is created.
457 status = gsid->enableGsi(/* one_shot = */ true, dsuSlot, &error);
458 if (!status.isOk() || error != IGsiService::INSTALL_OK) {
459 std::cerr << "Could not make DSU bootable: " << ErrorMessage(status, error) << std::endl;
460 return EX_SOFTWARE;
461 }
462
463 std::cout << "Enabled DSU slot: " << dsuSlot << std::endl;
464 std::cout << "Please reboot to use the DSU." << std::endl;
465 return 0;
466}
467
David Andersonc053b3b2019-01-08 18:22:07 -0800468static int Wipe(sp<IGsiService> gsid, int argc, char** /* argv */) {
David Andersonee84d742019-01-07 18:10:29 -0800469 if (argc > 1) {
David Anderson550253b2019-02-08 17:55:27 -0800470 std::cerr << "Unrecognized arguments to wipe." << std::endl;
David Andersonee84d742019-01-07 18:10:29 -0800471 return EX_USAGE;
472 }
David Andersonc053b3b2019-01-08 18:22:07 -0800473 bool ok;
Howard Chen25b18cc2019-08-02 11:21:58 +0800474 auto status = gsid->removeGsi(&ok);
David Andersonc053b3b2019-01-08 18:22:07 -0800475 if (!status.isOk() || !ok) {
David Anderson646b4b22019-02-27 18:26:54 -0800476 std::cerr << "Could not remove GSI install: " << ErrorMessage(status) << "\n";
David Andersonee84d742019-01-07 18:10:29 -0800477 return EX_SOFTWARE;
478 }
David Anderson5f805912019-03-07 12:41:15 -0800479
480 bool running = false;
481 if (gsid->isGsiRunning(&running).isOk() && running) {
482 std::cout << "Live image install will be removed next reboot." << std::endl;
483 } else {
484 std::cout << "Live image install successfully removed." << std::endl;
485 }
David Andersonee84d742019-01-07 18:10:29 -0800486 return 0;
487}
488
David Anderson8bdf6252019-06-11 16:43:24 -0700489static int WipeData(sp<IGsiService> gsid, int argc, char** /* argv */) {
490 if (argc > 1) {
491 std::cerr << "Unrecognized arguments to wipe-data.\n";
492 return EX_USAGE;
493 }
494
495 bool running;
496 auto status = gsid->isGsiRunning(&running);
497 if (!status.isOk()) {
498 std::cerr << "error: " << status.exceptionMessage().string() << std::endl;
499 return EX_SOFTWARE;
500 }
501 if (running) {
502 std::cerr << "Cannot wipe GSI userdata while running a GSI.\n";
503 return EX_USAGE;
504 }
505
506 bool installed;
507 status = gsid->isGsiInstalled(&installed);
508 if (!status.isOk()) {
509 std::cerr << "error: " << status.exceptionMessage().string() << std::endl;
510 return EX_SOFTWARE;
511 }
512 if (!installed) {
513 std::cerr << "No GSI is installed.\n";
514 return EX_USAGE;
515 }
516
517 int error;
Howard Chen46cc7522020-03-03 13:28:37 +0800518 status = gsid->zeroPartition("userdata" + std::string(kDsuPostfix), &error);
David Anderson8bdf6252019-06-11 16:43:24 -0700519 if (!status.isOk() || error) {
520 std::cerr << "Could not wipe GSI userdata: " << ErrorMessage(status, error) << "\n";
521 return EX_SOFTWARE;
522 }
523 return 0;
524}
525
Howard Chenf08428e2019-01-23 14:54:51 +0800526static int Status(sp<IGsiService> gsid, int argc, char** /* argv */) {
527 if (argc > 1) {
David Anderson550253b2019-02-08 17:55:27 -0800528 std::cerr << "Unrecognized arguments to status." << std::endl;
Howard Chenf08428e2019-01-23 14:54:51 +0800529 return EX_USAGE;
530 }
531 bool running;
532 auto status = gsid->isGsiRunning(&running);
533 if (!status.isOk()) {
David Anderson646b4b22019-02-27 18:26:54 -0800534 std::cerr << "error: " << status.exceptionMessage().string() << std::endl;
Howard Chenf08428e2019-01-23 14:54:51 +0800535 return EX_SOFTWARE;
536 } else if (running) {
537 std::cout << "running" << std::endl;
Howard Chenf08428e2019-01-23 14:54:51 +0800538 }
539 bool installed;
540 status = gsid->isGsiInstalled(&installed);
541 if (!status.isOk()) {
David Anderson646b4b22019-02-27 18:26:54 -0800542 std::cerr << "error: " << status.exceptionMessage().string() << std::endl;
Howard Chenf08428e2019-01-23 14:54:51 +0800543 return EX_SOFTWARE;
544 } else if (installed) {
545 std::cout << "installed" << std::endl;
Howard Chenf08428e2019-01-23 14:54:51 +0800546 }
Howard Chen670b3062019-02-26 18:14:47 +0800547 bool enabled;
548 status = gsid->isGsiEnabled(&enabled);
549 if (!status.isOk()) {
550 std::cerr << status.exceptionMessage().string() << std::endl;
551 return EX_SOFTWARE;
552 } else if (running || installed) {
553 std::cout << (enabled ? "enabled" : "disabled") << std::endl;
554 } else {
555 std::cout << "normal" << std::endl;
556 }
Howard Chen96c31fd2019-08-23 17:38:51 +0800557 if (getuid() != 0) {
558 return 0;
559 }
Howard Chen96c31fd2019-08-23 17:38:51 +0800560
Howard Chenee5c2b12019-11-08 11:57:47 +0800561 std::vector<std::string> dsu_slots;
562 status = gsid->getInstalledDsuSlots(&dsu_slots);
563 if (!status.isOk()) {
564 std::cerr << status.exceptionMessage().string() << std::endl;
565 return EX_SOFTWARE;
566 }
567 int n = 0;
568 for (auto&& dsu_slot : dsu_slots) {
569 std::cout << "[" << n++ << "] " << dsu_slot << std::endl;
570 sp<IImageService> image_service = nullptr;
571 status = gsid->openImageService("dsu/" + dsu_slot + "/", &image_service);
572 if (!status.isOk()) {
573 std::cerr << "error: " << status.exceptionMessage().string() << std::endl;
574 return EX_SOFTWARE;
575 }
576 std::vector<std::string> images;
577 status = image_service->getAllBackingImages(&images);
578 if (!status.isOk()) {
579 std::cerr << "error: " << status.exceptionMessage().string() << std::endl;
580 return EX_SOFTWARE;
581 }
582 for (auto&& image : images) {
583 std::cout << "installed: " << image << std::endl;
Yo Chiang53bed1c2020-01-01 16:25:19 +0800584 AvbPublicKey public_key;
585 int err = 0;
586 status = image_service->getAvbPublicKey(image, &public_key, &err);
587 std::cout << "AVB public key (sha1): ";
588 if (!public_key.bytes.empty()) {
589 for (auto b : public_key.sha1) {
590 std::cout << StringPrintf("%02x", b & 255);
591 }
592 std::cout << std::endl;
593 } else {
594 std::cout << "[NONE]" << std::endl;
595 }
Howard Chenee5c2b12019-11-08 11:57:47 +0800596 }
Howard Chen96c31fd2019-08-23 17:38:51 +0800597 }
Howard Chenf08428e2019-01-23 14:54:51 +0800598 return 0;
599}
600
Howard Chenecbc0192019-02-25 18:51:26 +0800601static int Cancel(sp<IGsiService> gsid, int /* argc */, char** /* argv */) {
602 bool cancelled = false;
603 auto status = gsid->cancelGsiInstall(&cancelled);
604 if (!status.isOk()) {
605 std::cerr << status.exceptionMessage().string() << std::endl;
606 return EX_SOFTWARE;
607 }
608 if (!cancelled) {
609 std::cout << "Fail to cancel the installation." << std::endl;
610 return EX_SOFTWARE;
611 }
612 return 0;
613}
614
David Anderson564a04c2019-02-27 13:33:44 -0800615static int Enable(sp<IGsiService> gsid, int argc, char** argv) {
616 bool one_shot = false;
Howard Chenee5c2b12019-11-08 11:57:47 +0800617 std::string dsuSlot = {};
David Anderson564a04c2019-02-27 13:33:44 -0800618 struct option options[] = {
619 {"single-boot", no_argument, nullptr, 's'},
Howard Chenee5c2b12019-11-08 11:57:47 +0800620 {"dsuslot", required_argument, nullptr, 'd'},
David Anderson564a04c2019-02-27 13:33:44 -0800621 {nullptr, 0, nullptr, 0},
622 };
623 int rv, index;
624 while ((rv = getopt_long_only(argc, argv, "", options, &index)) != -1) {
625 switch (rv) {
626 case 's':
627 one_shot = true;
628 break;
Howard Chenee5c2b12019-11-08 11:57:47 +0800629 case 'd':
630 dsuSlot = optarg;
631 break;
David Anderson564a04c2019-02-27 13:33:44 -0800632 default:
633 std::cerr << "Unrecognized argument to enable\n";
634 return EX_USAGE;
635 }
David Andersona141ba82019-01-14 19:09:27 -0800636 }
637
638 bool installed = false;
639 gsid->isGsiInstalled(&installed);
640 if (!installed) {
David Anderson550253b2019-02-08 17:55:27 -0800641 std::cerr << "Could not find GSI install to re-enable" << std::endl;
David Andersona141ba82019-01-14 19:09:27 -0800642 return EX_SOFTWARE;
643 }
644
645 bool installing = false;
646 gsid->isGsiInstallInProgress(&installing);
647 if (installing) {
David Anderson550253b2019-02-08 17:55:27 -0800648 std::cerr << "Cannot enable or disable while an installation is in progress." << std::endl;
David Andersona141ba82019-01-14 19:09:27 -0800649 return EX_SOFTWARE;
650 }
Howard Chenee5c2b12019-11-08 11:57:47 +0800651 if (dsuSlot.empty()) {
652 auto status = gsid->getActiveDsuSlot(&dsuSlot);
653 if (!status.isOk()) {
654 std::cerr << "Could not get the active DSU slot: " << ErrorMessage(status) << "\n";
655 return EX_SOFTWARE;
656 }
657 }
David Anderson868dea52019-01-17 13:34:38 -0800658 int error;
Howard Chenee5c2b12019-11-08 11:57:47 +0800659 auto status = gsid->enableGsi(one_shot, dsuSlot, &error);
David Anderson868dea52019-01-17 13:34:38 -0800660 if (!status.isOk() || error != IGsiService::INSTALL_OK) {
David Anderson646b4b22019-02-27 18:26:54 -0800661 std::cerr << "Error re-enabling GSI: " << ErrorMessage(status, error) << "\n";
David Andersona141ba82019-01-14 19:09:27 -0800662 return EX_SOFTWARE;
663 }
664 std::cout << "Live image install successfully enabled." << std::endl;
665 return 0;
666}
667
668static int Disable(sp<IGsiService> gsid, int argc, char** /* argv */) {
669 if (argc > 1) {
David Anderson550253b2019-02-08 17:55:27 -0800670 std::cerr << "Unrecognized arguments to disable." << std::endl;
David Andersona141ba82019-01-14 19:09:27 -0800671 return EX_USAGE;
672 }
673
674 bool installing = false;
675 gsid->isGsiInstallInProgress(&installing);
676 if (installing) {
David Anderson550253b2019-02-08 17:55:27 -0800677 std::cerr << "Cannot enable or disable while an installation is in progress." << std::endl;
David Andersona141ba82019-01-14 19:09:27 -0800678 return EX_SOFTWARE;
679 }
680
681 bool ok = false;
Howard Chen25b18cc2019-08-02 11:21:58 +0800682 gsid->disableGsi(&ok);
David Andersona141ba82019-01-14 19:09:27 -0800683 if (!ok) {
David Anderson550253b2019-02-08 17:55:27 -0800684 std::cerr << "Error disabling GSI" << std::endl;
David Andersona141ba82019-01-14 19:09:27 -0800685 return EX_SOFTWARE;
686 }
687 std::cout << "Live image install successfully disabled." << std::endl;
688 return 0;
689}
690
691static int usage(int /* argc */, char* argv[]) {
692 fprintf(stderr,
693 "%s - command-line tool for installing GSI images.\n"
694 "\n"
695 "Usage:\n"
Howard Chenf08428e2019-01-23 14:54:51 +0800696 " %s <disable|install|wipe|status> [options]\n"
David Andersona141ba82019-01-14 19:09:27 -0800697 "\n"
698 " disable Disable the currently installed GSI.\n"
Howard Chenee5c2b12019-11-08 11:57:47 +0800699 " enable [-s, --single-boot]\n"
700 " [-d, --dsuslot slotname]\n"
David Anderson564a04c2019-02-27 13:33:44 -0800701 " Enable a previously disabled GSI.\n"
David Andersona141ba82019-01-14 19:09:27 -0800702 " install Install a new GSI. Specify the image size with\n"
703 " --gsi-size and the desired userdata size with\n"
704 " --userdata-size (the latter defaults to 8GiB)\n"
705 " --wipe (remove old gsi userdata first)\n"
Howard Chenf08428e2019-01-23 14:54:51 +0800706 " wipe Completely remove a GSI and its associated data\n"
David Anderson8bdf6252019-06-11 16:43:24 -0700707 " wipe-data Ensure the GSI's userdata will be formatted\n"
Howard Chenecbc0192019-02-25 18:51:26 +0800708 " cancel Cancel the installation\n"
709 " status Show status\n",
David Andersona141ba82019-01-14 19:09:27 -0800710 argv[0], argv[0]);
711 return EX_USAGE;
712}
713
David Andersonee84d742019-01-07 18:10:29 -0800714int main(int argc, char** argv) {
Yi-Yo Chiang52ab7ca2021-05-21 21:11:01 +0800715 android::base::InitLogging(argv, android::base::StderrLogger, android::base::DefaultAborter);
David Andersonee84d742019-01-07 18:10:29 -0800716
David Anderson83fdeca2019-09-09 17:56:22 -0700717 android::sp<IGsiService> service = GetGsiService();
718 if (!service) {
David Anderson4c756732019-07-12 14:18:37 -0700719 return EX_SOFTWARE;
720 }
721
David Andersonee84d742019-01-07 18:10:29 -0800722 if (1 >= argc) {
David Anderson550253b2019-02-08 17:55:27 -0800723 std::cerr << "Expected command." << std::endl;
David Andersonee84d742019-01-07 18:10:29 -0800724 return EX_USAGE;
725 }
726
727 std::string command = argv[1];
David Anderson34502be2019-02-01 18:06:20 -0800728
David Andersonee84d742019-01-07 18:10:29 -0800729 auto iter = kCommandMap.find(command);
730 if (iter == kCommandMap.end()) {
David Anderson550253b2019-02-08 17:55:27 -0800731 std::cerr << "Unrecognized command: " << command << std::endl;
David Andersona141ba82019-01-14 19:09:27 -0800732 return usage(argc, argv);
David Andersonee84d742019-01-07 18:10:29 -0800733 }
David Andersonc053b3b2019-01-08 18:22:07 -0800734
David Anderson4c756732019-07-12 14:18:37 -0700735 int rc = iter->second(service, argc - 1, argv + 1);
David Andersonc053b3b2019-01-08 18:22:07 -0800736 return rc;
David Andersonee84d742019-01-07 18:10:29 -0800737}