1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
|
/*
* lthor - Tizen Linux Thor Downloader
* Copyright (c) 2012 Samsung Electronics Co., Ltd.
*
* Licensed under the Apache License, Version 2.0 (the License);
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <sys/types.h>
#include <stdio.h>
#include <getopt.h>
#include <unistd.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <stdint.h>
#include <sys/time.h>
#include "thor.h"
#define KB (1024)
#define MB (1024*KB)
#define GB ((off_t)1024*MB)
#define TERM_YELLOW "\x1b[0;33;1m"
#define TERM_LIGHT_GREEN "\x1b[0;32;1m"
#define TERM_RED "\x1b[0;31;1m"
#define TERM_NORMAL "\x1b[0m"
struct helper {
struct thor_data_src *data;
enum thor_data_type type;
const char *name;
};
struct time_data {
struct timeval start_time;
struct timeval last_time;
int last_sent;
};
static int test_tar_file_list(char **tarfilelist)
{
struct thor_data_src *data;
int ret;
while (*tarfilelist) {
ret = thor_get_data_src(*tarfilelist, THOR_FORMAT_TAR, &data);
if (ret)
goto error;
ret = thor_send_data(NULL, data, THOR_NORMAL_DATA,
NULL, NULL, NULL, NULL);
thor_release_data_src(data);
if (ret)
goto error;
}
return 0;
error:
fprintf(stderr, "Unable to load file %s: %d\n", *tarfilelist, ret);
return ret;
}
/* Check if LHOR protocol is in working state */
static int check_proto(struct thor_device_id *dev_id)
{
thor_device_handle *handle;
int ret;
ret = thor_open(dev_id, 0, &handle);
if (ret)
fprintf(stderr, "Unable to open device: %d\n", ret);
else
thor_close(handle);
return ret;
}
static int count_files(char **list)
{
int i = 0;
while (list && list[i])
++i;
return i;
}
static int init_data_parts(const char *pitfile, char **tarfilelist,
struct helper *data_parts)
{
int i;
int entry = 0;
int ret;
if (pitfile) {
data_parts[0].type = THOR_PIT_DATA;
data_parts[0].name = pitfile;
ret = thor_get_data_src(pitfile, THOR_FORMAT_RAW,
&(data_parts[0].data));
if (ret) {
fprintf(stderr, "Unable to open pit file %s : %d\n",
pitfile, ret);
return -EINVAL;
}
++entry;
}
while (*tarfilelist) {
printf(TERM_YELLOW "%s :" TERM_NORMAL "\n" , *tarfilelist);
data_parts[entry].type = THOR_NORMAL_DATA;
data_parts[0].name = *tarfilelist;
ret = thor_get_data_src(*tarfilelist, THOR_FORMAT_TAR,
&(data_parts[entry].data));
if (ret) {
fprintf(stderr, "Unable to open file %s : %d\n",
*tarfilelist, ret);
goto err_cleanup_parts;
}
++entry;
++tarfilelist;
}
return entry;
err_cleanup_parts:
for (i = 0; i < entry; ++i)
thor_release_data_src(data_parts[i].data);
return ret;
}
static void init_time_data(struct time_data *tdata)
{
gettimeofday(&tdata->start_time, NULL);
memcpy(&tdata->last_time, &tdata->start_time, sizeof(tdata->start_time));
tdata->last_sent = 0;
}
static void report_next_entry(thor_device_handle *th,
struct thor_data_src *data, void *user_data)
{
struct time_data *tdata = user_data;
printf("[" TERM_LIGHT_GREEN "%s" TERM_NORMAL"]\n",
data->get_name(data));
init_time_data(tdata);
}
static double timediff(struct timeval *atv, struct timeval *btv)
{
double diff;
if (btv->tv_usec < atv->tv_usec) {
diff = btv->tv_sec - atv->tv_sec - 1;
diff += (double)(1*1000*1000 - atv->tv_usec +
btv->tv_usec)/(1000*1000);
} else {
diff = btv->tv_sec - atv->tv_sec;
diff += (double)(btv->tv_usec - atv->tv_usec)/(1000*1000);
}
return diff;
}
static void report_progress(thor_device_handle *th, struct thor_data_src *data,
int sent, int left, int chunk_nmb, void *user_data)
{
struct time_data *tdata = user_data;
struct timeval *start_time = &tdata->start_time;
struct timeval *last_time = &tdata->last_time;
struct timeval current_time;
double diff;
int sent_kb = sent/KB;
int total_kb = (sent + left)/KB;
char progress [4] = { '-', '\\', '|', '/' };
char c = progress[(sent_kb/30)%4];
fprintf(stderr, "\x1b[1A\x1b[16C%c sending %6dk/%6dk %3d%% block %-6d",
c, sent_kb, total_kb, ((sent_kb*100)/total_kb), chunk_nmb);
gettimeofday(¤t_time, NULL);
if (left != 0) {
diff = timediff(last_time, ¤t_time);
fprintf(stderr, " [%.2f MB/s]\n",
(double)((sent - tdata->last_sent)/diff)/(MB));
tdata->last_sent = sent;
*last_time = current_time;
} else {
diff = timediff(start_time, ¤t_time);
fprintf(stderr, " [avg %.2f MB/s]\n",
(double)(sent/diff)/(MB));
}
}
static int do_download(thor_device_handle *th, struct helper *data_parts,
int entries, off_t total_size)
{
struct time_data tdata;
int i;
int ret;
ret = thor_start_session(th, total_size);
if (ret) {
fprintf(stderr, "Unable to start download session: %d\n", ret);
goto out;
}
for (i = 0; i < entries; ++i) {
switch (data_parts[i].type) {
case THOR_PIT_DATA:
fprintf(stderr, "\nDownload PIT file : %s\n\n",
data_parts[i].name);
break;
case THOR_NORMAL_DATA:
fprintf(stderr, "\nDownload files from %s\n\n",
data_parts[i].name);
break;
}
ret = thor_send_data(th, data_parts[i].data, data_parts[i].type,
report_progress, &tdata, report_next_entry,
&tdata);
if (ret) {
fprintf(stderr, "\nfailed to download %s: %d\n",
data_parts[i].name, ret);
goto out;
}
}
ret = thor_end_session(th);
if (ret)
fprintf(stderr, TERM_YELLOW "missing RQT_DL_EXIT response "
"from broken bootloader" TERM_NORMAL"\n");
fprintf(stderr, "\nrequest target reboot : ");
ret = thor_reboot(th);
if (ret) {
fprintf(stderr, TERM_RED "failed" TERM_NORMAL"\n");
goto out;
} else {
fprintf(stderr, TERM_LIGHT_GREEN "success" TERM_NORMAL "\n");
}
out:
return ret;
}
static int process_download(struct thor_device_id *dev_id, const char *pitfile,
char **tarfilelist)
{
thor_device_handle *th;
off_t total_size = 0;
struct helper *data_parts;
int nfiles;
int entries = 0;
int i;
int ret;
ret = thor_open(dev_id, 1, &th);
if (ret) {
fprintf(stderr, "Unable to open device: %d\n", ret);
return ret;
}
nfiles = count_files(tarfilelist) + (pitfile ? 1 : 0);
data_parts = calloc(nfiles, sizeof(*data_parts));
if (!data_parts) {
ret = -ENOMEM;
goto close_dev;
}
entries = init_data_parts(pitfile, tarfilelist, data_parts);
if (entries < 0) {
ret = entries;
goto free_data_parts;
}
/* Count the total size of data */
for (i = 0; i < entries; ++i) {
off_t size = data_parts[i].data->get_size(data_parts[i].data);
switch (data_parts[i].type) {
case THOR_PIT_DATA:
printf(TERM_YELLOW "%s :" TERM_NORMAL "%jdk\n",
data_parts[i].name, (intmax_t)(size/KB));
break;
case THOR_NORMAL_DATA:
default:
break;
}
total_size += size;
}
printf("-------------------------\n");
printf("\t" TERM_YELLOW "total" TERM_NORMAL" :\t%.2fMB\n\n",
(double)total_size/MB);
if (total_size > (4*GB - 1*KB)) {
fprintf(stderr,
TERM_RED
"[ERROR] Images over 4GB are not supported by thor protocol.\n"
TERM_NORMAL);
ret = -EOVERFLOW;
goto release_data_srcs;
}
if (total_size > (2*GB - 1*KB)) {
fprintf(stderr,
TERM_RED
"[WARNING] Not all bootloaders support images over 2GB.\n"
" If your download will fail this may be a reason.\n"
TERM_NORMAL);
}
ret = do_download(th, data_parts, entries, total_size);
release_data_srcs:
for (i = 0; i < entries; ++i)
thor_release_data_src(data_parts[i].data);
free_data_parts:
free(data_parts);
close_dev:
thor_close(th);
return ret;
}
static void usage(const char *exename)
{
fprintf(stderr,
"Usage: %s: [options] [-d port] [-p pitfile] [tar] [tar] ..\n"
"Options:\n"
" -t, --test Don't flash, just check if given tar files are correct\n"
" -v, --verbose Be more verbose\n"
" -c, --check Don't flash, just check if given tty port is thor capable\n"
" -p=<pitfile>, --pitfile=<pitfile> Flash new partition table\n"
" -b=<busid>, --busid=<busid> Flash device with given busid\n"
" --vendor-id=<vid> Flash device with given Vendor ID\n"
" --product-id=<pid> Flash device with given Product ID\n"
" --serial=<serialno> Flash device with given Serial Number\n"
" --help Print this help message\n",
exename);
exit(1);
}
static void d_opt_obsolete()
{
fprintf(stderr,
"--port, -p options are obsolete.\n"
"Instead you may use:"
" -b=<busid>, --busid=<busid> Flash device with given busid\n"
" --vendor-id=<vid> Flash device with given Vendor ID\n"
" --product-id=<pid> Flash device with given Product ID\n"
" --serial=<serialno> Flash device with given Serial Number\n");
exit(1);
}
int main(int argc, char **argv)
{
const char *exename = NULL, *pitfile = NULL;
int opt;
int opt_test = 0;
int opt_check = 0;
int opt_verbose = 0; /* unused for now */
int optindex;
int ret;
struct thor_device_id dev_id = {
.busid = NULL,
.vid = -1,
.pid = -1,
.serial = NULL,
};
struct option opts[] = {
{"test", no_argument, 0, 't'},
{"verbose", no_argument, 0, 'v'},
{"check", no_argument, 0, 'c'},
{"port", required_argument, 0, 'd'},
{"pitfile", required_argument, 0, 'p'},
{"busid", required_argument, 0, 'b'},
{"vendor-id", required_argument, 0, 1},
{"product-id", required_argument, 0, 2},
{"serial", required_argument, 0, 3},
{"help", no_argument, 0, 0},
{0, 0, 0, 0}
};
printf("\n");
printf("Linux Thor downloader, version %s \n", PACKAGE_VERSION);
printf("Authors: Jaehoon You <jaehoon.you@samsung.com>\n"
" Krzysztof Opasiak <k.opasiak@samsung.com>\n\n");
exename = argv[0];
ret = thor_init();
if (ret) {
fprintf(stderr, "Unable to init io backend: %d\n", ret);
exit(-1);
}
while (1) {
opt = getopt_long(argc, argv, "tvcd:p:b:", opts, &optindex);
if (opt == -1)
break;
switch (opt) {
case 't':
opt_test = 1;
break;
case 'v':
opt_verbose = 1;
break;
case 'c':
opt_check = 1;
break;
case 'd':
d_opt_obsolete();
break;
case 'p':
pitfile = optarg;
break;
case 'b':
dev_id.busid = optarg;
break;
case 1:
{
unsigned long int val;
char *endptr = NULL;
val = strtoul(optarg, &endptr, 0);
if (*optarg == '\0'
|| (endptr && *endptr != '\0')) {
fprintf(stderr,
"Invalid value type for --vendor-id option.\n"
"Expected a number but got: %s", optarg);
exit(-1);
}
if (val > UINT16_MAX) {
fprintf(stderr,
"Value of --vendor-id out of range\n");
exit(-1);
}
dev_id.vid = (int)val;
break;
}
case 2:
{
unsigned long int val;
char *endptr = NULL;
val = strtoul(optarg, &endptr, 0);
if (*optarg == '\0'
|| (endptr && *endptr != '\0')) {
fprintf(stderr,
"Invalid value type for --product-id option.\n"
"Expected a number but got: %s", optarg);
exit(-1);
}
if (val > UINT16_MAX) {
fprintf(stderr,
"Value of --product-id out of range\n");
exit(-1);
}
dev_id.vid = (int)val;
break;
}
case 3:
dev_id.serial = optarg;
break;
case 0:
default:
usage(exename);
return 0;
}
}
ret = 0;
if (opt_test)
ret = test_tar_file_list(&(argv[optind]));
else if (opt_check)
ret = check_proto(&dev_id);
else if (pitfile || argv[optind])
ret = process_download(&dev_id, pitfile, &(argv[optind]));
else
usage(exename);
thor_cleanup();
return ret;
}
|