blob: cbd48e873af26ad60522c28d1f250e2a21ccf917 [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/*
2 * Copyright (C) 2008 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
Anatol Pomazau5ae3f932012-02-28 07:21:08 -080012 * the documentation and/or other materials provided with the
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080013 * 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
Anatol Pomazau5ae3f932012-02-28 07:21:08 -080022 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080023 * 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 */
28
Colin Crossf8387882012-05-24 17:18:41 -070029#define round_down(a, b) \
30 ({ typeof(a) _a = (a); typeof(b) _b = (b); _a - (_a % _b); })
31
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080032#include <stdio.h>
33#include <stdlib.h>
34#include <string.h>
35#include <errno.h>
36
Elliott Hughesfc797672015-04-07 20:12:50 -070037#include <algorithm>
38
Colin Crossf8387882012-05-24 17:18:41 -070039#include <sparse/sparse.h>
40
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080041#include "fastboot.h"
42
43static char ERROR[128];
44
45char *fb_get_error(void)
46{
47 return ERROR;
48}
49
Elliott Hughesfc797672015-04-07 20:12:50 -070050static int check_response(usb_handle* usb, uint32_t size, char* response) {
51 char status[65];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080052
Elliott Hughesfc797672015-04-07 20:12:50 -070053 while (true) {
54 int r = usb_read(usb, status, 64);
55 if (r < 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080056 sprintf(ERROR, "status read failed (%s)", strerror(errno));
57 usb_close(usb);
58 return -1;
59 }
60 status[r] = 0;
61
Elliott Hughesfc797672015-04-07 20:12:50 -070062 if (r < 4) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080063 sprintf(ERROR, "status malformed (%d bytes)", r);
64 usb_close(usb);
65 return -1;
66 }
67
Elliott Hughesfc797672015-04-07 20:12:50 -070068 if (!memcmp(status, "INFO", 4)) {
Brian Swetland63e52052010-06-28 11:14:26 -070069 fprintf(stderr,"(bootloader) %s\n", status + 4);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080070 continue;
71 }
72
Elliott Hughesfc797672015-04-07 20:12:50 -070073 if (!memcmp(status, "OKAY", 4)) {
74 if (response) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080075 strcpy(response, (char*) status + 4);
76 }
77 return 0;
78 }
79
Elliott Hughesfc797672015-04-07 20:12:50 -070080 if (!memcmp(status, "FAIL", 4)) {
81 if (r > 4) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080082 sprintf(ERROR, "remote: %s", status + 4);
83 } else {
84 strcpy(ERROR, "remote failure");
85 }
86 return -1;
87 }
88
Elliott Hughesfc797672015-04-07 20:12:50 -070089 if (!memcmp(status, "DATA", 4) && size > 0){
90 uint32_t dsize = strtol(status + 4, 0, 16);
91 if (dsize > size) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080092 strcpy(ERROR, "data size too large");
93 usb_close(usb);
94 return -1;
95 }
96 return dsize;
97 }
98
99 strcpy(ERROR,"unknown status code");
100 usb_close(usb);
101 break;
102 }
103
104 return -1;
105}
106
Elliott Hughesfc797672015-04-07 20:12:50 -0700107static int _command_start(usb_handle* usb, const char* cmd, uint32_t size, char* response) {
108 size_t cmdsize = strlen(cmd);
109 if (cmdsize > 64) {
110 sprintf(ERROR, "command too large");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800111 return -1;
112 }
113
Elliott Hughesfc797672015-04-07 20:12:50 -0700114 if (response) {
115 response[0] = 0;
116 }
117
118 if (usb_write(usb, cmd, cmdsize) != static_cast<int>(cmdsize)) {
119 sprintf(ERROR, "command write failed (%s)", strerror(errno));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800120 usb_close(usb);
121 return -1;
122 }
123
Colin Crossf8387882012-05-24 17:18:41 -0700124 return check_response(usb, size, response);
125}
126
Elliott Hughesfc797672015-04-07 20:12:50 -0700127static int _command_data(usb_handle* usb, const void* data, uint32_t size) {
128 int r = usb_write(usb, data, size);
129 if (r < 0) {
Colin Crossf8387882012-05-24 17:18:41 -0700130 sprintf(ERROR, "data transfer failure (%s)", strerror(errno));
131 usb_close(usb);
132 return -1;
133 }
Elliott Hughesfc797672015-04-07 20:12:50 -0700134 if (r != ((int) size)) {
Colin Crossf8387882012-05-24 17:18:41 -0700135 sprintf(ERROR, "data transfer failure (short transfer)");
136 usb_close(usb);
137 return -1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800138 }
Colin Crossf8387882012-05-24 17:18:41 -0700139 return r;
140}
141
Elliott Hughesfc797672015-04-07 20:12:50 -0700142static int _command_end(usb_handle* usb) {
143 return check_response(usb, 0, 0) < 0 ? -1 : 0;
Colin Crossf8387882012-05-24 17:18:41 -0700144}
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800145
Elliott Hughesfc797672015-04-07 20:12:50 -0700146static int _command_send(usb_handle* usb, const char* cmd, const void* data, uint32_t size,
147 char* response) {
Colin Crossf8387882012-05-24 17:18:41 -0700148 if (size == 0) {
149 return -1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800150 }
Anatol Pomazau5ae3f932012-02-28 07:21:08 -0800151
Elliott Hughesfc797672015-04-07 20:12:50 -0700152 int r = _command_start(usb, cmd, size, response);
Colin Crossf8387882012-05-24 17:18:41 -0700153 if (r < 0) {
154 return -1;
155 }
156
157 r = _command_data(usb, data, size);
158 if (r < 0) {
159 return -1;
160 }
161
162 r = _command_end(usb);
Elliott Hughesfc797672015-04-07 20:12:50 -0700163 if (r < 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800164 return -1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800165 }
Colin Crossf8387882012-05-24 17:18:41 -0700166
167 return size;
168}
169
Elliott Hughesfc797672015-04-07 20:12:50 -0700170static int _command_send_no_data(usb_handle* usb, const char* cmd, char* response) {
Colin Crossf8387882012-05-24 17:18:41 -0700171 return _command_start(usb, cmd, 0, response);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800172}
173
Elliott Hughesfc797672015-04-07 20:12:50 -0700174int fb_command(usb_handle* usb, const char* cmd) {
Colin Crossf8387882012-05-24 17:18:41 -0700175 return _command_send_no_data(usb, cmd, 0);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800176}
177
Elliott Hughesfc797672015-04-07 20:12:50 -0700178int fb_command_response(usb_handle* usb, const char* cmd, char* response) {
Colin Crossf8387882012-05-24 17:18:41 -0700179 return _command_send_no_data(usb, cmd, response);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800180}
181
Elliott Hughesfc797672015-04-07 20:12:50 -0700182int fb_download_data(usb_handle* usb, const void* data, uint32_t size) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800183 char cmd[64];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800184 sprintf(cmd, "download:%08x", size);
Elliott Hughesfc797672015-04-07 20:12:50 -0700185 return _command_send(usb, cmd, data, size, 0) < 0 ? -1 : 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800186}
187
Channagoud Kadabib2117732014-11-05 16:59:27 -0800188#define USB_BUF_SIZE 1024
Colin Crossf8387882012-05-24 17:18:41 -0700189static char usb_buf[USB_BUF_SIZE];
190static int usb_buf_len;
191
192static int fb_download_data_sparse_write(void *priv, const void *data, int len)
193{
194 int r;
Elliott Hughesb3748de2015-06-23 20:27:58 -0700195 usb_handle* usb = reinterpret_cast<usb_handle*>(priv);
Colin Crossf8387882012-05-24 17:18:41 -0700196 int to_write;
Elliott Hughesb3748de2015-06-23 20:27:58 -0700197 const char* ptr = reinterpret_cast<const char*>(data);
Colin Crossf8387882012-05-24 17:18:41 -0700198
199 if (usb_buf_len) {
Elliott Hughesfc797672015-04-07 20:12:50 -0700200 to_write = std::min(USB_BUF_SIZE - usb_buf_len, len);
Colin Crossf8387882012-05-24 17:18:41 -0700201
202 memcpy(usb_buf + usb_buf_len, ptr, to_write);
203 usb_buf_len += to_write;
204 ptr += to_write;
205 len -= to_write;
206 }
207
208 if (usb_buf_len == USB_BUF_SIZE) {
209 r = _command_data(usb, usb_buf, USB_BUF_SIZE);
210 if (r != USB_BUF_SIZE) {
211 return -1;
212 }
213 usb_buf_len = 0;
214 }
215
216 if (len > USB_BUF_SIZE) {
217 if (usb_buf_len > 0) {
218 sprintf(ERROR, "internal error: usb_buf not empty\n");
219 return -1;
220 }
221 to_write = round_down(len, USB_BUF_SIZE);
222 r = _command_data(usb, ptr, to_write);
223 if (r != to_write) {
224 return -1;
225 }
226 ptr += to_write;
227 len -= to_write;
228 }
229
230 if (len > 0) {
231 if (len > USB_BUF_SIZE) {
232 sprintf(ERROR, "internal error: too much left for usb_buf\n");
233 return -1;
234 }
235 memcpy(usb_buf, ptr, len);
236 usb_buf_len = len;
237 }
238
239 return 0;
240}
241
Elliott Hughesfc797672015-04-07 20:12:50 -0700242static int fb_download_data_sparse_flush(usb_handle* usb) {
Colin Crossf8387882012-05-24 17:18:41 -0700243 if (usb_buf_len > 0) {
Elliott Hughesfc797672015-04-07 20:12:50 -0700244 if (_command_data(usb, usb_buf, usb_buf_len) != usb_buf_len) {
Colin Crossf8387882012-05-24 17:18:41 -0700245 return -1;
246 }
247 usb_buf_len = 0;
248 }
Colin Crossf8387882012-05-24 17:18:41 -0700249 return 0;
250}
251
Elliott Hughesfc797672015-04-07 20:12:50 -0700252int fb_download_data_sparse(usb_handle* usb, struct sparse_file* s) {
Colin Crossf8387882012-05-24 17:18:41 -0700253 int size = sparse_file_len(s, true, false);
254 if (size <= 0) {
255 return -1;
256 }
257
Elliott Hughesfc797672015-04-07 20:12:50 -0700258 char cmd[64];
Colin Crossf8387882012-05-24 17:18:41 -0700259 sprintf(cmd, "download:%08x", size);
Elliott Hughesfc797672015-04-07 20:12:50 -0700260 int r = _command_start(usb, cmd, size, 0);
Colin Crossf8387882012-05-24 17:18:41 -0700261 if (r < 0) {
262 return -1;
263 }
264
265 r = sparse_file_callback(s, true, false, fb_download_data_sparse_write, usb);
266 if (r < 0) {
267 return -1;
268 }
269
Jeremy Compostella9f0d6bd2015-02-22 10:47:16 +0100270 r = fb_download_data_sparse_flush(usb);
271 if (r < 0) {
272 return -1;
273 }
Colin Crossf8387882012-05-24 17:18:41 -0700274
275 return _command_end(usb);
276}