blob: 6a5ad206aa4eca5d19e69f055336dcac6c7614ee [file] [log] [blame]
Aaron Wisnerdb511202018-06-26 15:38:35 -05001/*
2 * Copyright (C) 2018 The Android Open Source Project
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
13 * distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
22 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
Tom Cherry9027af02018-09-24 15:48:09 -070028
Aaron Wisnerdb511202018-06-26 15:38:35 -050029#include "fastboot_driver.h"
30
31#include <errno.h>
32#include <fcntl.h>
33#include <stdio.h>
34#include <stdlib.h>
35#include <string.h>
36#include <algorithm>
37#include <chrono>
38#include <fstream>
39#include <memory>
40#include <regex>
41#include <vector>
42
43#include <android-base/file.h>
Elliott Hughese8f4b142018-10-19 16:09:39 -070044#include <android-base/mapped_file.h>
Aaron Wisnerdb511202018-06-26 15:38:35 -050045#include <android-base/stringprintf.h>
46#include <android-base/strings.h>
47#include <android-base/unique_fd.h>
Tom Cherry9027af02018-09-24 15:48:09 -070048
49#include "constants.h"
Aaron Wisnerdb511202018-06-26 15:38:35 -050050#include "transport.h"
51
Tom Cherry9027af02018-09-24 15:48:09 -070052using android::base::StringPrintf;
53
Aaron Wisnerdb511202018-06-26 15:38:35 -050054namespace fastboot {
55
56/*************************** PUBLIC *******************************/
Tom Cherry9027af02018-09-24 15:48:09 -070057FastBootDriver::FastBootDriver(Transport* transport, DriverCallbacks driver_callbacks,
Aaron Wisnerdb511202018-06-26 15:38:35 -050058 bool no_checks)
Tom Cherry9027af02018-09-24 15:48:09 -070059 : transport_(transport),
60 prolog_(std::move(driver_callbacks.prolog)),
61 epilog_(std::move(driver_callbacks.epilog)),
62 info_(std::move(driver_callbacks.info)),
63 disable_checks_(no_checks) {}
Aaron Wisnerdb511202018-06-26 15:38:35 -050064
David Anderson1d887432018-08-27 16:47:32 -070065FastBootDriver::~FastBootDriver() {
David Anderson1d887432018-08-27 16:47:32 -070066}
67
Aaron Wisnerdb511202018-06-26 15:38:35 -050068RetCode FastBootDriver::Boot(std::string* response, std::vector<std::string>* info) {
Tom Cherry9027af02018-09-24 15:48:09 -070069 return RawCommand(FB_CMD_BOOT, "Booting", response, info);
Aaron Wisnerdb511202018-06-26 15:38:35 -050070}
71
72RetCode FastBootDriver::Continue(std::string* response, std::vector<std::string>* info) {
Tom Cherry9027af02018-09-24 15:48:09 -070073 return RawCommand(FB_CMD_CONTINUE, "Resuming boot", response, info);
Aaron Wisnerdb511202018-06-26 15:38:35 -050074}
75
Tom Cherry9027af02018-09-24 15:48:09 -070076RetCode FastBootDriver::CreatePartition(const std::string& partition, const std::string& size) {
77 return RawCommand(FB_CMD_CREATE_PARTITION ":" + partition + ":" + size,
78 "Creating '" + partition + "'");
Aaron Wisnerdb511202018-06-26 15:38:35 -050079}
80
Tom Cherry9027af02018-09-24 15:48:09 -070081RetCode FastBootDriver::DeletePartition(const std::string& partition) {
82 return RawCommand(FB_CMD_DELETE_PARTITION ":" + partition, "Deleting '" + partition + "'");
83}
84
85RetCode FastBootDriver::Erase(const std::string& partition, std::string* response,
Aaron Wisnerdb511202018-06-26 15:38:35 -050086 std::vector<std::string>* info) {
Tom Cherry9027af02018-09-24 15:48:09 -070087 return RawCommand(FB_CMD_ERASE ":" + partition, "Erasing '" + partition + "'", response, info);
88}
89
90RetCode FastBootDriver::Flash(const std::string& partition, std::string* response,
91 std::vector<std::string>* info) {
92 return RawCommand(FB_CMD_FLASH ":" + partition, "Writing '" + partition + "'", response, info);
Aaron Wisnerdb511202018-06-26 15:38:35 -050093}
94
95RetCode FastBootDriver::GetVar(const std::string& key, std::string* val,
96 std::vector<std::string>* info) {
Tom Cherry9027af02018-09-24 15:48:09 -070097 return RawCommand(FB_CMD_GETVAR ":" + key, val, info);
Aaron Wisnerdb511202018-06-26 15:38:35 -050098}
99
100RetCode FastBootDriver::GetVarAll(std::vector<std::string>* response) {
101 std::string tmp;
102 return GetVar("all", &tmp, response);
103}
104
Aaron Wisnerdb511202018-06-26 15:38:35 -0500105RetCode FastBootDriver::Reboot(std::string* response, std::vector<std::string>* info) {
Tom Cherry9027af02018-09-24 15:48:09 -0700106 return RawCommand(FB_CMD_REBOOT, "Rebooting", response, info);
Aaron Wisnerdb511202018-06-26 15:38:35 -0500107}
108
David Anderson1d887432018-08-27 16:47:32 -0700109RetCode FastBootDriver::RebootTo(std::string target, std::string* response,
110 std::vector<std::string>* info) {
Tom Cherry9027af02018-09-24 15:48:09 -0700111 return RawCommand("reboot-" + target, "Rebooting into " + target, response, info);
112}
113
114RetCode FastBootDriver::ResizePartition(const std::string& partition, const std::string& size) {
115 return RawCommand(FB_CMD_RESIZE_PARTITION ":" + partition + ":" + size,
116 "Resizing '" + partition + "'");
David Anderson1d887432018-08-27 16:47:32 -0700117}
118
Tom Cherry11f12092018-08-29 21:36:28 -0700119RetCode FastBootDriver::SetActive(const std::string& slot, std::string* response,
Aaron Wisnerdb511202018-06-26 15:38:35 -0500120 std::vector<std::string>* info) {
Tom Cherry9027af02018-09-24 15:48:09 -0700121 return RawCommand(FB_CMD_SET_ACTIVE ":" + slot, "Setting current slot to '" + slot + "'",
122 response, info);
Aaron Wisnerdb511202018-06-26 15:38:35 -0500123}
124
David Andersonab8f4662019-10-21 16:45:59 -0700125RetCode FastBootDriver::SnapshotUpdateCommand(const std::string& command, std::string* response,
126 std::vector<std::string>* info) {
127 std::string raw = FB_CMD_SNAPSHOT_UPDATE ":" + command;
128 return RawCommand(raw, response, info);
129}
130
Tom Cherry9027af02018-09-24 15:48:09 -0700131RetCode FastBootDriver::FlashPartition(const std::string& partition,
132 const std::vector<char>& data) {
Aaron Wisnerdb511202018-06-26 15:38:35 -0500133 RetCode ret;
Tom Cherry9027af02018-09-24 15:48:09 -0700134 if ((ret = Download(partition, data))) {
Aaron Wisnerdb511202018-06-26 15:38:35 -0500135 return ret;
136 }
Tom Cherry9027af02018-09-24 15:48:09 -0700137 return Flash(partition);
Aaron Wisnerdb511202018-06-26 15:38:35 -0500138}
139
Tom Cherry9027af02018-09-24 15:48:09 -0700140RetCode FastBootDriver::FlashPartition(const std::string& partition, int fd, uint32_t size) {
Aaron Wisnerdb511202018-06-26 15:38:35 -0500141 RetCode ret;
Tom Cherry9027af02018-09-24 15:48:09 -0700142 if ((ret = Download(partition, fd, size))) {
Aaron Wisnerdb511202018-06-26 15:38:35 -0500143 return ret;
144 }
Tom Cherry9027af02018-09-24 15:48:09 -0700145 return Flash(partition);
Aaron Wisnerdb511202018-06-26 15:38:35 -0500146}
147
Tom Cherry9027af02018-09-24 15:48:09 -0700148RetCode FastBootDriver::FlashPartition(const std::string& partition, sparse_file* s, uint32_t size,
149 size_t current, size_t total) {
Aaron Wisnerdb511202018-06-26 15:38:35 -0500150 RetCode ret;
Tom Cherry9027af02018-09-24 15:48:09 -0700151 if ((ret = Download(partition, s, size, current, total, false))) {
Aaron Wisnerdb511202018-06-26 15:38:35 -0500152 return ret;
153 }
Tom Cherry9027af02018-09-24 15:48:09 -0700154 return Flash(partition);
Aaron Wisnerdb511202018-06-26 15:38:35 -0500155}
156
Tom Cherry9027af02018-09-24 15:48:09 -0700157RetCode FastBootDriver::Partitions(std::vector<std::tuple<std::string, uint64_t>>* partitions) {
Aaron Wisnerdb511202018-06-26 15:38:35 -0500158 std::vector<std::string> all;
159 RetCode ret;
160 if ((ret = GetVarAll(&all))) {
161 return ret;
162 }
163
Aaron Wisnerc771ae02018-08-01 12:57:20 -0500164 std::regex reg("partition-size[[:s:]]*:[[:s:]]*([[:w:]]+)[[:s:]]*:[[:s:]]*0x([[:xdigit:]]+)");
Aaron Wisnerdb511202018-06-26 15:38:35 -0500165 std::smatch sm;
166
167 for (auto& s : all) {
168 if (std::regex_match(s, sm, reg)) {
169 std::string m1(sm[1]);
170 std::string m2(sm[2]);
David Anderson6c30f6e2018-09-04 15:57:39 -0700171 uint64_t tmp = strtoll(m2.c_str(), 0, 16);
Tom Cherry9027af02018-09-24 15:48:09 -0700172 partitions->push_back(std::make_tuple(m1, tmp));
Aaron Wisnerdb511202018-06-26 15:38:35 -0500173 }
174 }
175 return SUCCESS;
176}
177
Tom Cherry9027af02018-09-24 15:48:09 -0700178RetCode FastBootDriver::Download(const std::string& name, int fd, size_t size,
179 std::string* response, std::vector<std::string>* info) {
180 prolog_(StringPrintf("Sending '%s' (%zu KB)", name.c_str(), size / 1024));
181 auto result = Download(fd, size, response, info);
182 epilog_(result);
183 return result;
184}
185
Aaron Wisnerdb511202018-06-26 15:38:35 -0500186RetCode FastBootDriver::Download(int fd, size_t size, std::string* response,
187 std::vector<std::string>* info) {
188 RetCode ret;
189
190 if ((size <= 0 || size > MAX_DOWNLOAD_SIZE) && !disable_checks_) {
191 error_ = "File is too large to download";
192 return BAD_ARG;
193 }
194
195 uint32_t u32size = static_cast<uint32_t>(size);
196 if ((ret = DownloadCommand(u32size, response, info))) {
197 return ret;
198 }
199
200 // Write the buffer
201 if ((ret = SendBuffer(fd, size))) {
202 return ret;
203 }
204
205 // Wait for response
206 return HandleResponse(response, info);
207}
208
Tom Cherry9027af02018-09-24 15:48:09 -0700209RetCode FastBootDriver::Download(const std::string& name, const std::vector<char>& buf,
210 std::string* response, std::vector<std::string>* info) {
211 prolog_(StringPrintf("Sending '%s' (%zu KB)", name.c_str(), buf.size() / 1024));
212 auto result = Download(buf, response, info);
213 epilog_(result);
214 return result;
215}
216
Aaron Wisnerdb511202018-06-26 15:38:35 -0500217RetCode FastBootDriver::Download(const std::vector<char>& buf, std::string* response,
218 std::vector<std::string>* info) {
Aaron Wisnerdb511202018-06-26 15:38:35 -0500219 RetCode ret;
220 error_ = "";
Tom Cherrydfd85df2018-09-20 14:45:05 -0700221 if ((buf.size() == 0 || buf.size() > MAX_DOWNLOAD_SIZE) && !disable_checks_) {
Aaron Wisnerdb511202018-06-26 15:38:35 -0500222 error_ = "Buffer is too large or 0 bytes";
223 return BAD_ARG;
224 }
225
Tom Cherrydfd85df2018-09-20 14:45:05 -0700226 if ((ret = DownloadCommand(buf.size(), response, info))) {
Aaron Wisnerdb511202018-06-26 15:38:35 -0500227 return ret;
228 }
229
230 // Write the buffer
Tom Cherrydfd85df2018-09-20 14:45:05 -0700231 if ((ret = SendBuffer(buf))) {
Aaron Wisnerdb511202018-06-26 15:38:35 -0500232 return ret;
233 }
234
235 // Wait for response
236 return HandleResponse(response, info);
237}
238
Tom Cherry9027af02018-09-24 15:48:09 -0700239RetCode FastBootDriver::Download(const std::string& partition, struct sparse_file* s, uint32_t size,
240 size_t current, size_t total, bool use_crc, std::string* response,
241 std::vector<std::string>* info) {
242 prolog_(StringPrintf("Sending sparse '%s' %zu/%zu (%u KB)", partition.c_str(), current, total,
243 size / 1024));
244 auto result = Download(s, use_crc, response, info);
245 epilog_(result);
246 return result;
247}
248
Aaron Wisner9812b582018-08-22 11:01:04 -0500249RetCode FastBootDriver::Download(sparse_file* s, bool use_crc, std::string* response,
Aaron Wisnerdb511202018-06-26 15:38:35 -0500250 std::vector<std::string>* info) {
251 error_ = "";
Aaron Wisner9812b582018-08-22 11:01:04 -0500252 int64_t size = sparse_file_len(s, true, use_crc);
Aaron Wisnerdb511202018-06-26 15:38:35 -0500253 if (size <= 0 || size > MAX_DOWNLOAD_SIZE) {
254 error_ = "Sparse file is too large or invalid";
255 return BAD_ARG;
256 }
257
258 RetCode ret;
259 uint32_t u32size = static_cast<uint32_t>(size);
260 if ((ret = DownloadCommand(u32size, response, info))) {
261 return ret;
262 }
263
264 struct SparseCBPrivate {
265 FastBootDriver* self;
266 std::vector<char> tpbuf;
267 } cb_priv;
268 cb_priv.self = this;
269
270 auto cb = [](void* priv, const void* buf, size_t len) -> int {
271 SparseCBPrivate* data = static_cast<SparseCBPrivate*>(priv);
272 const char* cbuf = static_cast<const char*>(buf);
273 return data->self->SparseWriteCallback(data->tpbuf, cbuf, len);
274 };
275
Aaron Wisner9812b582018-08-22 11:01:04 -0500276 if (sparse_file_callback(s, true, use_crc, cb, &cb_priv) < 0) {
Aaron Wisnerdb511202018-06-26 15:38:35 -0500277 error_ = "Error reading sparse file";
278 return IO_ERROR;
279 }
280
281 // Now flush
282 if (cb_priv.tpbuf.size() && (ret = SendBuffer(cb_priv.tpbuf))) {
283 return ret;
284 }
285
286 return HandleResponse(response, info);
287}
288
289RetCode FastBootDriver::Upload(const std::string& outfile, std::string* response,
290 std::vector<std::string>* info) {
Tom Cherry9027af02018-09-24 15:48:09 -0700291 prolog_("Uploading '" + outfile + "'");
292 auto result = UploadInner(outfile, response, info);
293 epilog_(result);
294 return result;
295}
296
297RetCode FastBootDriver::UploadInner(const std::string& outfile, std::string* response,
298 std::vector<std::string>* info) {
Aaron Wisnerdb511202018-06-26 15:38:35 -0500299 RetCode ret;
qiwu chen325ba6f2019-08-29 14:50:51 +0800300 int dsize = 0;
Tom Cherry9027af02018-09-24 15:48:09 -0700301 if ((ret = RawCommand(FB_CMD_UPLOAD, response, info, &dsize))) {
Aaron Wisnerc771ae02018-08-01 12:57:20 -0500302 error_ = "Upload request failed: " + error_;
Aaron Wisnerdb511202018-06-26 15:38:35 -0500303 return ret;
304 }
305
Aaron Wisnerc771ae02018-08-01 12:57:20 -0500306 if (!dsize) {
307 error_ = "Upload request failed, device reports 0 bytes available";
308 return BAD_DEV_RESP;
309 }
310
Aaron Wisnerdb511202018-06-26 15:38:35 -0500311 std::vector<char> data;
312 data.resize(dsize);
313
314 if ((ret = ReadBuffer(data))) {
315 return ret;
316 }
317
318 std::ofstream ofs;
319 ofs.open(outfile, std::ofstream::out | std::ofstream::binary);
320 if (ofs.fail()) {
321 error_ = android::base::StringPrintf("Failed to open '%s'", outfile.c_str());
322 return IO_ERROR;
323 }
324 ofs.write(data.data(), data.size());
325 if (ofs.fail() || ofs.bad()) {
326 error_ = android::base::StringPrintf("Writing to '%s' failed", outfile.c_str());
327 return IO_ERROR;
328 }
329 ofs.close();
330
331 return HandleResponse(response, info);
332}
333
334// Helpers
Tom Cherry9027af02018-09-24 15:48:09 -0700335void FastBootDriver::SetInfoCallback(std::function<void(const std::string&)> info) {
336 info_ = info;
Aaron Wisnerdb511202018-06-26 15:38:35 -0500337}
338
339const std::string FastBootDriver::RCString(RetCode rc) {
340 switch (rc) {
341 case SUCCESS:
342 return std::string("Success");
343
344 case BAD_ARG:
345 return std::string("Invalid Argument");
346
347 case IO_ERROR:
348 return std::string("I/O Error");
349
350 case BAD_DEV_RESP:
351 return std::string("Invalid Device Response");
352
353 case DEVICE_FAIL:
354 return std::string("Device Error");
355
356 case TIMEOUT:
357 return std::string("Timeout");
358
359 default:
360 return std::string("Unknown Error");
361 }
362}
363
364std::string FastBootDriver::Error() {
365 return error_;
366}
367
368RetCode FastBootDriver::WaitForDisconnect() {
David Anderson1d887432018-08-27 16:47:32 -0700369 return transport_->WaitForDisconnect() ? IO_ERROR : SUCCESS;
Aaron Wisnerdb511202018-06-26 15:38:35 -0500370}
371
372/****************************** PROTECTED *************************************/
Tom Cherry9027af02018-09-24 15:48:09 -0700373RetCode FastBootDriver::RawCommand(const std::string& cmd, const std::string& message,
374 std::string* response, std::vector<std::string>* info,
375 int* dsize) {
376 prolog_(message);
377 auto result = RawCommand(cmd, response, info, dsize);
378 epilog_(result);
379 return result;
380}
381
Aaron Wisnerdb511202018-06-26 15:38:35 -0500382RetCode FastBootDriver::RawCommand(const std::string& cmd, std::string* response,
383 std::vector<std::string>* info, int* dsize) {
384 error_ = ""; // Clear any pending error
385 if (cmd.size() > FB_COMMAND_SZ && !disable_checks_) {
386 error_ = "Command length to RawCommand() is too long";
387 return BAD_ARG;
388 }
389
David Anderson1d887432018-08-27 16:47:32 -0700390 if (transport_->Write(cmd.c_str(), cmd.size()) != static_cast<int>(cmd.size())) {
Aaron Wisnerdb511202018-06-26 15:38:35 -0500391 error_ = ErrnoStr("Write to device failed");
392 return IO_ERROR;
393 }
394
395 // Read the response
396 return HandleResponse(response, info, dsize);
397}
398
399RetCode FastBootDriver::DownloadCommand(uint32_t size, std::string* response,
400 std::vector<std::string>* info) {
Tom Cherry9027af02018-09-24 15:48:09 -0700401 std::string cmd(android::base::StringPrintf("%s:%08" PRIx32, FB_CMD_DOWNLOAD, size));
Aaron Wisnerdb511202018-06-26 15:38:35 -0500402 RetCode ret;
403 if ((ret = RawCommand(cmd, response, info))) {
404 return ret;
405 }
406 return SUCCESS;
407}
408
409RetCode FastBootDriver::HandleResponse(std::string* response, std::vector<std::string>* info,
410 int* dsize) {
411 char status[FB_RESPONSE_SZ + 1];
Dima Zavina5b85a42019-02-28 14:50:25 -0800412 auto start = std::chrono::steady_clock::now();
Aaron Wisnerdb511202018-06-26 15:38:35 -0500413
414 auto set_response = [response](std::string s) {
415 if (response) *response = std::move(s);
416 };
417 auto add_info = [info](std::string s) {
418 if (info) info->push_back(std::move(s));
419 };
420
421 // erase response
422 set_response("");
Dima Zavina5b85a42019-02-28 14:50:25 -0800423 while ((std::chrono::steady_clock::now() - start) < std::chrono::seconds(RESP_TIMEOUT)) {
David Anderson1d887432018-08-27 16:47:32 -0700424 int r = transport_->Read(status, FB_RESPONSE_SZ);
Aaron Wisnerdb511202018-06-26 15:38:35 -0500425 if (r < 0) {
426 error_ = ErrnoStr("Status read failed");
427 return IO_ERROR;
428 }
429
430 status[r] = '\0'; // Need the null terminator
431 std::string input(status);
432 if (android::base::StartsWith(input, "INFO")) {
433 std::string tmp = input.substr(strlen("INFO"));
Tom Cherry9027af02018-09-24 15:48:09 -0700434 info_(tmp);
Aaron Wisnerdb511202018-06-26 15:38:35 -0500435 add_info(std::move(tmp));
Dima Zavin6d46a492019-02-23 21:14:38 -0800436 // We may receive one or more INFO packets during long operations,
437 // e.g. flash/erase if they are back by slow media like NAND/NOR
438 // flash. In that case, reset the timer since it's not a real
439 // timeout.
440 start = std::chrono::steady_clock::now();
Aaron Wisnerdb511202018-06-26 15:38:35 -0500441 } else if (android::base::StartsWith(input, "OKAY")) {
442 set_response(input.substr(strlen("OKAY")));
443 return SUCCESS;
444 } else if (android::base::StartsWith(input, "FAIL")) {
445 error_ = android::base::StringPrintf("remote: '%s'", status + strlen("FAIL"));
446 set_response(input.substr(strlen("FAIL")));
447 return DEVICE_FAIL;
448 } else if (android::base::StartsWith(input, "DATA")) {
449 std::string tmp = input.substr(strlen("DATA"));
450 uint32_t num = strtol(tmp.c_str(), 0, 16);
451 if (num > MAX_DOWNLOAD_SIZE) {
452 error_ = android::base::StringPrintf("Data size too large (%d)", num);
453 return BAD_DEV_RESP;
454 }
455 if (dsize) *dsize = num;
456 set_response(std::move(tmp));
457 return SUCCESS;
458 } else {
459 error_ = android::base::StringPrintf("Device sent unknown status code: %s", status);
460 return BAD_DEV_RESP;
461 }
462
463 } // End of while loop
464
465 return TIMEOUT;
466}
467
468std::string FastBootDriver::ErrnoStr(const std::string& msg) {
469 return android::base::StringPrintf("%s (%s)", msg.c_str(), strerror(errno));
470}
471
Aaron Wisnerdb511202018-06-26 15:38:35 -0500472/******************************* PRIVATE **************************************/
473RetCode FastBootDriver::SendBuffer(int fd, size_t size) {
474 static constexpr uint32_t MAX_MAP_SIZE = 512 * 1024 * 1024;
475 off64_t offset = 0;
476 uint32_t remaining = size;
477 RetCode ret;
478
479 while (remaining) {
480 // Memory map the file
Aaron Wisnerdb511202018-06-26 15:38:35 -0500481 size_t len = std::min(remaining, MAX_MAP_SIZE);
Elliott Hughese8f4b142018-10-19 16:09:39 -0700482 auto mapping{android::base::MappedFile::FromFd(fd, offset, len, PROT_READ)};
483 if (!mapping) {
Aaron Wisnerdb511202018-06-26 15:38:35 -0500484 error_ = "Creating filemap failed";
485 return IO_ERROR;
486 }
487
Elliott Hughese8f4b142018-10-19 16:09:39 -0700488 if ((ret = SendBuffer(mapping->data(), mapping->size()))) {
Aaron Wisnerdb511202018-06-26 15:38:35 -0500489 return ret;
490 }
491
492 remaining -= len;
493 offset += len;
494 }
495
496 return SUCCESS;
497}
498
499RetCode FastBootDriver::SendBuffer(const std::vector<char>& buf) {
500 // Write the buffer
501 return SendBuffer(buf.data(), buf.size());
502}
503
504RetCode FastBootDriver::SendBuffer(const void* buf, size_t size) {
Aaron Wisnerc771ae02018-08-01 12:57:20 -0500505 // ioctl on 0-length buffer causes freezing
David Anderson0c7bde82018-07-30 12:54:53 -0700506 if (!size) {
Aaron Wisnerc771ae02018-08-01 12:57:20 -0500507 return BAD_ARG;
David Anderson0c7bde82018-07-30 12:54:53 -0700508 }
Aaron Wisnerdb511202018-06-26 15:38:35 -0500509 // Write the buffer
David Anderson1d887432018-08-27 16:47:32 -0700510 ssize_t tmp = transport_->Write(buf, size);
Aaron Wisnerdb511202018-06-26 15:38:35 -0500511
512 if (tmp < 0) {
513 error_ = ErrnoStr("Write to device failed in SendBuffer()");
514 return IO_ERROR;
515 } else if (static_cast<size_t>(tmp) != size) {
516 error_ = android::base::StringPrintf("Failed to write all %zu bytes", size);
517
518 return IO_ERROR;
519 }
520
521 return SUCCESS;
522}
523
524RetCode FastBootDriver::ReadBuffer(std::vector<char>& buf) {
525 // Read the buffer
526 return ReadBuffer(buf.data(), buf.size());
527}
528
529RetCode FastBootDriver::ReadBuffer(void* buf, size_t size) {
530 // Read the buffer
David Anderson1d887432018-08-27 16:47:32 -0700531 ssize_t tmp = transport_->Read(buf, size);
Aaron Wisnerdb511202018-06-26 15:38:35 -0500532
533 if (tmp < 0) {
534 error_ = ErrnoStr("Read from device failed in ReadBuffer()");
535 return IO_ERROR;
536 } else if (static_cast<size_t>(tmp) != size) {
537 error_ = android::base::StringPrintf("Failed to read all %zu bytes", size);
538 return IO_ERROR;
539 }
540
541 return SUCCESS;
542}
543
544int FastBootDriver::SparseWriteCallback(std::vector<char>& tpbuf, const char* data, size_t len) {
545 size_t total = 0;
546 size_t to_write = std::min(TRANSPORT_CHUNK_SIZE - tpbuf.size(), len);
547
548 // Handle the residual
549 tpbuf.insert(tpbuf.end(), data, data + to_write);
550 if (tpbuf.size() < TRANSPORT_CHUNK_SIZE) { // Nothing enough to send rn
551 return 0;
552 }
553
554 if (SendBuffer(tpbuf)) {
555 error_ = ErrnoStr("Send failed in SparseWriteCallback()");
556 return -1;
557 }
558 tpbuf.clear();
559 total += to_write;
560
561 // Now we need to send a multiple of chunk size
562 size_t nchunks = (len - total) / TRANSPORT_CHUNK_SIZE;
563 size_t nbytes = TRANSPORT_CHUNK_SIZE * nchunks;
Aaron Wisnerc771ae02018-08-01 12:57:20 -0500564 if (nbytes && SendBuffer(data + total, nbytes)) { // Don't send a ZLP
Aaron Wisnerdb511202018-06-26 15:38:35 -0500565 error_ = ErrnoStr("Send failed in SparseWriteCallback()");
566 return -1;
567 }
568 total += nbytes;
569
570 if (len - total > 0) { // We have residual data to save for next time
571 tpbuf.assign(data + total, data + len);
572 }
573
574 return 0;
575}
576
David Anderson03de6452018-09-04 14:32:54 -0700577Transport* FastBootDriver::set_transport(Transport* transport) {
578 std::swap(transport_, transport);
579 return transport;
David Anderson1d887432018-08-27 16:47:32 -0700580}
581
Aaron Wisnerdb511202018-06-26 15:38:35 -0500582} // End namespace fastboot