summaryrefslogtreecommitdiff
path: root/extra/usb_updater/gsctool.c
blob: 54d27504cbcbaeb6ec32a219bf8fbf296cf7adf0 (plain)
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
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
/*
 * Copyright 2015 The ChromiumOS Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include <asm/byteorder.h>
#include <ctype.h>
#include <endian.h>
#include <errno.h>
#include <fcntl.h>
#include <getopt.h>
#include <libusb.h>
#include <openssl/sha.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <termios.h>
#include <unistd.h>

#include "config.h"

#include "ap_ro_integrity_check.h"
#include "ccd_config.h"
#include "compile_time_macros.h"
#include "dauntless_event.h"
#include "flash_log.h"
#include "generated_version.h"
#include "gsctool.h"
#include "misc_util.h"
#include "signed_header.h"
#include "tpm_registers.h"
#include "tpm_vendor_cmds.h"
#include "upgrade_fw.h"
#include "u2f.h"
#include "usb_descriptor.h"
#include "verify_ro.h"


/*
 * This enum must match CcdCap enum in applications/sys_mgr/src/ccd.rs in the
 * Ti50 common git tree.
 */
enum Ti50CcdCapabilities {
	TI50_CCD_CAP_UART_GSC_RX_AP_TX = 0,
	TI50_CCD_CAP_UART_GSC_TX_AP_RX,
	TI50_CCD_CAP_UART_GSC_RX_EC_TX,
	TI50_CCD_CAP_UART_GSC_TX_EC_RX,
	TI50_CCD_CAP_UART_GSC_RX_FPMCU_TX,
	TI50_CCD_CAP_UART_GSC_TX_FPMCU_RX,
	TI50_CCD_CAP_FLASH_AP,
	TI50_CCD_CAP_FLASH_EC,
	TI50_CCD_CAP_OVERRIDE_WP,
	TI50_CCD_CAP_REBOOT_ECAP,
	TI50_CCD_CAP_GSC_FULL_CONSOLE,
	TI50_CCD_CAP_UNLOCK_NO_REBOOT,
	TI50_CCD_CAP_UNLOCK_NO_SHORT_PP,
	TI50_CCD_CAP_OPEN_NO_TPM_WIPE,
	TI50_CCD_CAP_OPEN_NO_LONG_PP,
	TI50_CCD_CAP_REMOVE_BATTERY_BYPASS_PP,
	TI50_CCD_CAP_I2_C,
	TI50_CCD_CAP_FLASH_READ,
	TI50_CCD_CAP_OPEN_NO_DEV_MODE,
	TI50_CCD_CAP_OPEN_FROM_USB,
	TI50_CCD_CAP_OVERRIDE_BATT,
	TI50_CCD_CAP_BOOT_UNVERIFIED_RO,
	TI50_CCD_CAP_COUNT,
};

static const struct ccd_capability_info ti50_cap_info[] = {
	{"UartGscRxAPTx", CCD_CAP_STATE_ALWAYS},
	{"UartGscTxAPRx", CCD_CAP_STATE_ALWAYS},
	{"UartGscRxECTx", CCD_CAP_STATE_ALWAYS},
	{"UartGscTxECRx", CCD_CAP_STATE_IF_OPENED},
	{"UartGscRxFpmcuTx", CCD_CAP_STATE_ALWAYS},
	{"UartGscTxFpmcuRx", CCD_CAP_STATE_IF_OPENED},
	{"FlashAP", CCD_CAP_STATE_IF_OPENED},
	{"FlashEC", CCD_CAP_STATE_IF_OPENED},
	{"OverrideWP", CCD_CAP_STATE_IF_OPENED},
	{"RebootECAP", CCD_CAP_STATE_IF_OPENED},
	{"GscFullConsole", CCD_CAP_STATE_IF_OPENED},
	{"UnlockNoReboot", CCD_CAP_STATE_ALWAYS},
	{"UnlockNoShortPP", CCD_CAP_STATE_ALWAYS},
	{"OpenNoTPMWipe", CCD_CAP_STATE_IF_OPENED},
	{"OpenNoLongPP", CCD_CAP_STATE_IF_OPENED},
	{"RemoveBatteryBypassPP", CCD_CAP_STATE_ALWAYS},
	{"I2C", CCD_CAP_STATE_IF_OPENED},
	{"FlashRead", CCD_CAP_STATE_ALWAYS},
	/*
	 * The below two settings do not match ccd.rs value, which is
	 * controlled at compile time.
	 */
	{"OpenNoDevMode", CCD_CAP_STATE_IF_OPENED},
	{"OpenFromUSB", CCD_CAP_STATE_IF_OPENED},
	{"OverrideBatt", CCD_CAP_STATE_IF_OPENED},
	/* The below capability is presently set to 'never' in ccd.rs. */
	{"AllowUnverifiedRo", CCD_CAP_STATE_IF_OPENED},
};

#define CR50_CCD_CAP_COUNT CCD_CAP_COUNT

/*
 * One of the basic assumptions of the code handling multiple ccd_info layouts
 * is that the number of words in the capabilities array is the same for all
 * layouts. Let's verify this at compile time.
 */
BUILD_ASSERT((CR50_CCD_CAP_COUNT/32) == (TI50_CCD_CAP_COUNT/32));

/*
 * Version 0 CCD info packet does not include the header, the actual packet
 * size is used to conclude that the received payload is of version 0.
 *
 * Let's hardcode this size to make sure that it is fixed even if the
 * underlying structure (struct ccd_info_response) size changes in the future.
 */
#define CCD_INFO_V0_SIZE 23

/*
 * This file contains the source code of a Linux application used to update
 * CR50 device firmware.
 *
 * The CR50 firmware image consists of multiple sections, of interest to this
 * app are the RO and RW code sections, two of each. When firmware update
 * session is established, the CR50 device reports locations of backup RW and RO
 * sections (those not used by the device at the time of transfer).
 *
 * Based on this information this app carves out the appropriate sections form
 * the full CR50 firmware binary image and sends them to the device for
 * programming into flash. Once the new sections are programmed and the device
 * is restarted, the new RO and RW are used if they pass verification and are
 * logically newer than the existing sections.
 *
 * There are two ways to communicate with the CR50 device: USB and /dev/tpm0
 * (when this app is running on a chromebook with the CR50 device). Originally
 * different protocols were used to communicate over different channels,
 * starting with version 3 the same protocol is used.
 *
 * This app provides backwards compatibility to ensure that earlier CR50
 * devices still can be updated.
 *
 *
 * The host (either a local AP or a workstation) is controlling the firmware
 * update protocol, it sends data to the cr50 device, which proceeses it and
 * responds.
 *
 * The encapsultation format is different between the /dev/tpm0 and USB cases:
 *
 *   4 bytes      4 bytes         4 bytes               variable size
 * +-----------+--------------+---------------+----------~~--------------+
 * + total size| block digest |  dest address |           data           |
 * +-----------+--------------+---------------+----------~~--------------+
 *  \           \                                                       /
 *   \           \                                                     /
 *    \           +----- FW update PDU sent over /dev/tpm0 -----------+
 *     \                                                             /
 *      +--------- USB frame, requires total size field ------------+
 *
 * The update protocol data unints (PDUs) are passed over /dev/tpm0, the
 * encapsulation includes integritiy verification and destination address of
 * the data (more of this later). /dev/tpm0 transactions pretty much do not
 * have size limits, whereas the USB data is sent in chunks of the size
 * determined when the USB connestion is set up. This is why USB requires an
 * additional encapsulation into frames to communicate the PDU size to the
 * client side so that the PDU can be reassembled before passing to the
 * programming function.
 *
 * In general, the protocol consists of two phases: connection establishment
 * and actual image transfer.
 *
 * The very first PDU of the transfer session is used to establish the
 * connection. The first PDU does not have any data, and the dest. address
 * field is set to zero. Receiving such a PDU signals the programming function
 * that the host intends to transfer a new image.
 *
 * The response to the first PDU varies depending on the protocol version.
 *
 * Note that protocol versions before 5 are described here for completeness,
 * but are not supported any more by this utility.
 *
 * Version 1 is used over /dev/tpm0. The response is either 4 or 1 bytes in
 * size. The 4 byte response is the *base address* of the backup RW section,
 * no support for RO updates. The one byte response is an error indication,
 * possibly reporting flash erase failure, command format error, etc.
 *
 * Version 2 is used over USB. The response is 8 bytes in size. The first four
 * bytes are either the *base address* of the backup RW section (still no RO
 * updates), or an error code, the same as in Version 1. The second 4 bytes
 * are the protocol version number (set to 2).
 *
 * All versions above 2 behave the same over /dev/tpm0 and USB.
 *
 * Version 3 response is 16 bytes in size. The first 4 bytes are the error code
 * the second 4 bytes are the protocol version (set to 3) and then 4 byte
 * *offset* of the RO section followed by the 4 byte *offset* of the RW section.
 *
 * Version 4 response in addition to version 3 provides header revision fields
 * for active RO and RW images running on the target.
 *
 * Once the connection is established, the image to be programmed into flash
 * is transferred to the CR50 in 1K PDUs. In versions 1 and 2 the address in
 * the header is the absolute address to place the block to, in version 3 and
 * later it is the offset into the flash.
 *
 * Protocol version 5 includes RO and RW key ID information into the first PDU
 * response. The key ID could be used to tell between prod and dev signing
 * modes, among other things.
 *
 * Protocol version 6 does not change the format of the first PDU response,
 * but it indicates the target's ablitiy to channel TPM vendor commands
 * through USB connection.
 *
 * When channeling TPM vendor commands the USB frame looks as follows:
 *
 *   4 bytes      4 bytes         4 bytes       2 bytes      variable size
 * +-----------+--------------+---------------+-----------+------~~~-------+
 * + total size| block digest |    EXT_CMD    | Vend. sub.|      data      |
 * +-----------+--------------+---------------+-----------+------~~~-------+
 *
 * Where 'Vend. sub' is the vendor subcommand, and data field is subcommand
 * dependent. The target tells between update PDUs and encapsulated vendor
 * subcommands by looking at the EXT_CMD value - it is set to 0xbaccd00a and
 * as such is guaranteed not to be a valid update PDU destination address.
 *
 * The vendor command response size is not fixed, it is subcommand dependent.
 *
 * The CR50 device responds to each update PDU with a confirmation which is 4
 * bytes in size in protocol version 2, and 1 byte in size in all other
 * versions. Zero value means success, non zero value is the error code
 * reported by CR50.
 *
 * Again, vendor command responses are subcommand specific.
 */

/* Look for Cr50 FW update interface */
#define H1_PID 0x5014
#define D2_PID 0x504A
#define SUBCLASS USB_SUBCLASS_GOOGLE_CR50
#define PROTOCOL USB_PROTOCOL_GOOGLE_CR50_NON_HC_FW_UPDATE

/*
 * CCD Info from GSC is communicated using different structure layouts.
 * Version 0 does not have a header and includes just the payload information.
 * Version 2 is prepended by a header which has a distinct value in the first
 * word, and the version number and the total size in the two halfwords after
 * that.
 *
 * Once the payload is received, the absence of the distinct value in the
 * first word and the match of the payload size to the expected size of the
 * version 0 payload indicates that this is indeed a version 0 packet. The
 * distinct first header value and the match of the size field indicates that
 * this is a later version packet.
 */
#define CCD_INFO_MAGIC 0x49444343  /* This is 'CCDI' in little endian. */
#define CCD_VERSION             1  /* Ti50 CCD INFO layout. */

struct ccd_info_response_header {
	uint32_t ccd_magic;
	uint16_t ccd_version;
	uint16_t ccd_size;
} __packed;

struct ccd_info_response_packet {
	struct ccd_info_response_header cir_header;
	struct ccd_info_response cir_body;
};

/*
 * Need to create an entire TPM PDU when upgrading over /dev/tpm0 and need to
 * have space to prepare the entire PDU.
 */
struct upgrade_pkt {
	__be16	tag;
	__be32	length;
	__be32	ordinal;
	__be16	subcmd;
	union {
		/*
		 * Upgrade PDUs as opposed to all other vendor and extension
		 * commands include two additional fields in the header.
		 */
		struct {
			__be32	digest;
			__be32	address;
			char data[0];
		} upgrade;
		struct {
			char data[0];
		} command;
	};
} __packed;

/*
 * Structure used to simplify mapping command line options into Boolean
 * variables. If an option is present, the corresponding integer value is set
 * to 1.
 */
struct options_map {
	char opt;
	int *flag;
};

/*
 * Structure used to combine option description used by getopt_long() and help
 * text for the option.
 */
struct option_container {
	struct option opt;
	const char *help_text;
};

/* SHA context used with our local sha_* abstraction functions */
union sha_ctx {
	SHA_CTX sha1;
	SHA256_CTX sha256;
};

static void sha_init(union sha_ctx *ctx);
static void sha_update(union sha_ctx *ctx, const void *data, size_t len);
static void sha_final_into_block_digest(union sha_ctx *ctx, void *block_digest,
					size_t size);

/*
 * Current AP RO verification config setting version
 */
#define ARV_CONFIG_SETTING_CURRENT_VERSION 0x01

/*
 * AP RO verification config setting command choices
 */
enum arv_config_setting_command_e {
	arv_config_setting_command_spi_addressing_mode = 0,
	arv_config_setting_command_write_protect_descriptors = 1,
};

/*
 * AP RO verification config setting state
 */
enum arv_config_setting_state_e {
	arv_config_setting_state_present = 0,
	arv_config_setting_state_not_present = 1,
	arv_config_setting_state_corrupted = 2,
	arv_config_setting_state_invalid = 3,
};

/*
 * AP RO verification SPI read/write addressing mode configuration choices
 */
enum arv_config_spi_addr_mode_choice_e {
	arv_config_spi_addr_mode_choice_none = 0,
	arv_config_spi_addr_mode_choice_get = 1,
	arv_config_spi_addr_mode_choice_set_3byte = 2,
	arv_config_spi_addr_mode_choice_set_4byte = 3,
};

/*
 * AP RO verification write protect descriptor configuration choices
 */
enum arv_config_wpsr_choice_e {
	arv_config_wpsr_choice_none = 0,
	arv_config_wpsr_choice_get = 1,
	arv_config_wpsr_choice_set = 2,
};

/*
 * AP RO verification write protect descriptor information
 */
struct __attribute__((__packed__)) arv_config_wpd {
	/* See `arv_config_setting_state_e` */
	uint8_t state;
	uint8_t expected_value;
	uint8_t mask;
};

/*
 * AP RO verification write protect descriptors. This is a helper type to
 * represent the three write protect descriptors.
 */
struct __attribute__((__packed__)) arv_config_wpds {
	struct arv_config_wpd data[3];
};

/*
 * This matches the largest vendor command response size we ever expect.
 */
#define MAX_RX_BUF_SIZE	2048

/*
 * Maximum update payload block size plus packet header size.
 */
#define MAX_TX_BUF_SIZE	(SIGNED_TRANSFER_SIZE + sizeof(struct upgrade_pkt))

/*
 * Max. length of the board ID string representation.
 *
 * Board ID is either a 4-character ASCII alphanumeric string or an 8-digit
 * hex.
 */
#define MAX_BOARD_ID_LENGTH 9

/*
 * Length, in bytes, of the SN Bits serial number bits.
 */
#define SN_BITS_SIZE  (96 >> 3)

/*
 * Max. length of FW version in the format of <epoch>.<major>.<minor>
 * (3 uint32_t string representation + 2 separators + NULL terminator).
 */
#define MAX_FW_VER_LENGTH 33

static int verbose_mode;
static uint32_t protocol_version;
static char *progname;

/*
 * List of command line options, ***sorted by the short form***.
 *
 * The help_text field does not include the short and long option strings,
 * they are retrieved from the opt structure. In case the help text needs to
 * have something printed immediately after the option strings (for example,
 * an optional parameter), it should be included in the beginning of help_text
 * string separated by the % character.
 *
 * usage() function which prints out the help message will concatenate the
 * short and long options and the optional parameter, if present, and then
 * print the rest of the text message at a fixed indentation.
 */
static const struct option_container cmd_line_options[] = {
	/* name   has_arg    *flag  val */
	{{"get_apro_hash", no_argument, NULL, 'A'},
	 "get the stored ap ro hash"},
	{{"any", no_argument, NULL, 'a'},
	 "Try any interfaces to find Cr50"
	 " (-d, -s, -t are all ignored)"},
	{{"apro_boot", optional_argument, NULL, 'B'},
	 "[start] get the stored ap ro boot state or start ap ro verify"},
	{{"binvers", no_argument, NULL, 'b'},
	 "Report versions of Cr50 image's "
	 "RW and RO headers, do not update"},
	{{"apro_config_spi_mode", optional_argument, NULL, 'C'},
	 "Get/set the ap ro verify spi mode either to `3byte` or `4byte`"},
	{{"apro_config_write_protect", optional_argument, NULL,
	 'E'},
	 "Get/set the ap ro verify write protect descriptors with hex "
	 "bytes (ex: 0x01, 0x1, 01 or 1) in the following format: "
	 "[sr1 mask1 [sr2 mask2] [sr3 mask3]]"},
	{{"corrupt", no_argument, NULL, 'c'},
	 "Corrupt the inactive rw"},
	{{"dauntless", no_argument, NULL, 'D'},
	 "Communicate with Dauntless chip. This may be implied or overridden by"
	 " --image flag values"},
	{{"device", required_argument, NULL, 'd'},
	 "VID:PID%USB device (default 18d1:5014 or 18d1:504a based on image)"},
	{{"endorsement_seed", optional_argument, NULL, 'e'},
	 "[state]%get/set the endorsement key seed"},
	{{"factory", required_argument, NULL, 'F'},
	 "[enable|disable]%Control factory mode"},
	{{"fwver", no_argument, NULL, 'f'},
	 "Report running Cr50 firmware versions"},
	{{"getbootmode", no_argument, NULL, 'g'},
	 "Get the system boot mode"},
	{{"help", no_argument, NULL, 'h'},
	 "Show this message"},
	{{"erase_ap_ro_hash", no_argument, NULL, 'H'},
	 "Erase AP RO hash (possible only if Board ID is not set)"},
	{{"ccd_info", optional_argument, NULL, 'I'},
	 "[capability:value]%Get information about CCD state or set capability"
	 " value if allowed"},
	{{"board_id", optional_argument, NULL, 'i'},
	 "[ID[:FLAGS]]%Get or set Info1 board ID fields. ID could be 32 bit "
	 "hex or 4 character string."},
	{{"ccd_lock", no_argument, NULL, 'k'},
	 "Lock CCD"},
	{{"flog", optional_argument, NULL, 'L'},
	 "[prev entry]%Retrieve contents of the flash log"
	 " (newer than <prev entry> if specified)"},
	{{"console", no_argument, NULL, 'l'},
	 "Get console logs. This may need to be run multiple times to collect "
	 "all available logs."},
	{{"machine", no_argument, NULL, 'M'},
	 "Output in a machine-friendly way. "
	 "Effective with -b, -f, -i, and -O."},
	{{"tpm_mode", optional_argument, NULL, 'm'},
	 "[enable|disable]%Change or query tpm_mode"},
	{{"serial", required_argument, NULL, 'n'},
	 "Cr50 CCD serial number"},
	{{"openbox_rma", required_argument, NULL, 'O'},
	 "<desc_file>%Verify other device's RO integrity using information "
	 "provided in <desc file>"},
	{{"ccd_open", no_argument, NULL, 'o'},
	 "Start CCD open sequence"},
	{{"password", no_argument, NULL, 'P'},
	 "Set or clear CCD password. Use 'clear:<cur password>' to clear it"},
	{{"post_reset", no_argument, NULL, 'p'},
	 "Request post reset after transfer"},
	{{"force_ro", no_argument, NULL, 'q'},
	 "Force inactive RO update"},
	{{"sn_rma_inc", required_argument, NULL, 'R'},
	 "RMA_INC%Increment SN RMA count by RMA_INC. RMA_INC should be 0-7."},
	{{"rma_auth", optional_argument, NULL, 'r'},
	 "[auth_code]%Request RMA challenge, process "
	 "RMA authentication code"},
	{{"sn_bits", required_argument, NULL, 'S'},
	 "SN_BITS%Set Info1 SN bits fields. SN_BITS should be 96 bit hex."},
	{{"systemdev", no_argument, NULL, 's'},
	 "Use /dev/tpm0 (-d is ignored)"},
	{{"tstamp", optional_argument, NULL, 'T'},
	 "[<tstamp>]%Get or set flash log timestamp base"},
	{{"trunks_send", no_argument, NULL, 't'},
	 "Use `trunks_send --raw' (-d is ignored)"},
	{{"ccd_unlock", no_argument, NULL, 'U'},
	 "Start CCD unlock sequence"},
	{{"upstart", no_argument, NULL, 'u'},
	 "Upstart mode (strict header checks)"},
	{{"verbose", no_argument, NULL, 'V'},
	 "Enable debug messages"},
	{{"version", no_argument, NULL, 'v'},
	 "Report this utility version"},
	{{"wp", optional_argument, NULL, 'w'},
	 "[enable] Get the current WP setting or enable WP"},
	{{"clog", no_argument, NULL, 'x'},
	 "Retrieve contents of the most recent crash log."},
	{{"factory_config", optional_argument, NULL, 'y'},
	 "[value]%Sets the factory config bits in INFO. value should be 64 "
	 "bit hex."},
	{{"reboot", optional_argument, NULL, 'z'},
	 "Tell the GSC to reboot with an optional reset timeout parameter "
	 "in milliseconds"},
};

/* Helper to print debug messages when verbose flag is specified. */
static void debug(const char *fmt, ...)
{
	va_list args;

	if (verbose_mode) {
		va_start(args, fmt);
		vprintf(fmt, args);
		va_end(args);
	}
}

/* Helpers to convert between binary and hex ascii and back. */
static char to_hexascii(uint8_t c)
{
	if (c <= 9)
		return '0' + c;
	return 'a' + c - 10;
}

static int from_hexascii(char c)
{
	/* convert to lower case. */
	c = tolower(c);

	if (c < '0' || c > 'f' || ((c > '9') && (c < 'a')))
		return -1; /* Not an ascii character. */

	if (c <= '9')
		return c - '0';

	return c - 'a' + 10;
}

/* Functions to communicate with the TPM over the trunks_send --raw channel. */

/* File handle to share between write and read sides. */
static FILE *tpm_output;
static int ts_write(const void *out, size_t len)
{
	const char *cmd_head = "PATH=\"${PATH}:/usr/sbin\" trunks_send --raw ";
	size_t head_size = strlen(cmd_head);
	char full_command[head_size + 2 * len + 1];
	size_t i;

	strcpy(full_command, cmd_head);
	/*
	 * Need to convert binary input into hex ascii output to pass to the
	 * trunks_send command.
	 */
	for (i = 0; i < len; i++) {
		uint8_t c = ((const uint8_t *)out)[i];

		full_command[head_size + 2 * i] = to_hexascii(c >> 4);
		full_command[head_size + 2 * i + 1] = to_hexascii(c & 0xf);
	}

	/* Make it a proper zero terminated string. */
	full_command[sizeof(full_command) - 1] = 0;
	debug("cmd: %s\n", full_command);
	tpm_output = popen(full_command, "r");
	if (tpm_output)
		return len;

	fprintf(stderr, "Error: failed to launch trunks_send --raw\n");
	return -1;
}

static int ts_read(void *buf, size_t max_rx_size)
{
	int i;
	int pclose_rv;
	int rv;
	/* +1 to account for '\n' added by trunks_send. */
	char response[max_rx_size * 2 + 1];

	if (!tpm_output) {
		fprintf(stderr, "Error: attempt to read empty output\n");
		return -1;
	}

	rv = fread(response, 1, sizeof(response), tpm_output);
	if (rv > 0)
		rv -= 1; /* Discard the \n character added by trunks_send. */

	debug("response of size %d, max rx size %zd: %s\n",
	      rv, max_rx_size, response);

	pclose_rv = pclose(tpm_output);
	if (pclose_rv < 0) {
		fprintf(stderr,
			"Error: pclose failed: error %d (%s)\n",
			errno, strerror(errno));
		return -1;
	}

	tpm_output = NULL;

	if (rv & 1) {
		fprintf(stderr,
			"Error: trunks_send returned odd number of bytes: %s\n",
		response);
		return -1;
	}

	for (i = 0; i < rv/2; i++) {
		uint8_t byte;
		char c;
		int nibble;

		c = response[2 * i];
		nibble = from_hexascii(c);
		if (nibble < 0) {
			fprintf(stderr,	"Error: "
				"trunks_send returned non hex character %c\n",
				c);
			return -1;
		}
		byte = nibble << 4;

		c = response[2 * i + 1];
		nibble = from_hexascii(c);
		if (nibble < 0) {
			fprintf(stderr,	"Error: "
				"trunks_send returned non hex character %c\n",
				c);
			return -1;
		}
		byte |= nibble;

		((uint8_t *)buf)[i] = byte;
	}

	return rv/2;
}

/*
 * Prepare and transfer a block to either to /dev/tpm0 or through trunks_send
 * --raw, get a reply.
 */
static int tpm_send_pkt(struct transfer_descriptor *td, unsigned int digest,
			unsigned int addr, const void *data, int size,
			void *response, size_t *response_size,
			uint16_t subcmd)
{
	/* Used by transfer to /dev/tpm0 */
	static uint8_t outbuf[MAX_TX_BUF_SIZE];
	static uint8_t raw_response[MAX_RX_BUF_SIZE +
		sizeof(struct upgrade_pkt)];
	struct upgrade_pkt *out = (struct upgrade_pkt *)outbuf;
	int len, done;
	int response_offset = offsetof(struct upgrade_pkt, command.data);
	void *payload;
	size_t header_size;
	uint32_t rv;
	const size_t rx_size = sizeof(raw_response);

	debug("%s: sending to %#x %d bytes\n", __func__, addr, size);

	out->tag = htobe16(0x8001);
	out->subcmd = htobe16(subcmd);

	if (subcmd <= LAST_EXTENSION_COMMAND)
		out->ordinal = htobe32(CONFIG_EXTENSION_COMMAND);
	else
		out->ordinal = htobe32(TPM_CC_VENDOR_BIT_MASK);

	if (subcmd == EXTENSION_FW_UPGRADE) {
		/* FW Upgrade PDU header includes a couple of extra fields. */
		out->upgrade.digest = digest;
		out->upgrade.address = htobe32(addr);
		header_size = offsetof(struct upgrade_pkt, upgrade.data);
	} else {
		header_size = offsetof(struct upgrade_pkt, command.data);
	}

	payload = outbuf + header_size;
	len = size + header_size;

	out->length = htobe32(len);
	memcpy(payload, data, size);

	if (verbose_mode) {
		int i;

		debug("Writing %d bytes to TPM at %x\n", len, addr);
		for (i = 0; i < MIN(len, 20); i++)
			debug("%2.2x ", outbuf[i]);
		debug("\n");
	}

	switch (td->ep_type) {
	case dev_xfer:
		done = write(td->tpm_fd, out, len);
		break;
	case ts_xfer:
		done = ts_write(out, len);
		break;
	default:
		fprintf(stderr, "Error: %s:%d: unknown transfer type %d\n",
			__func__, __LINE__, td->ep_type);
		return -1;
	}

	if (done < 0) {
		perror("Could not write to TPM");
		return -1;
	} else if (done != len) {
		fprintf(stderr, "Error: Wrote %d bytes, expected to write %d\n",
			done, len);
		return -1;
	}

	switch (td->ep_type) {
	case dev_xfer: {
		int read_count;

		len = 0;
		do {
			uint8_t *rx_buf = raw_response + len;
			size_t rx_to_go = rx_size - len;

			read_count = read(td->tpm_fd, rx_buf, rx_to_go);

			len += read_count;
		} while (read_count);
		break;
	}
	case ts_xfer:
		len = ts_read(raw_response, rx_size);
		break;
	default:
		/*
		 * This sure will never happen, type is verifed in the
		 * previous switch statement.
		 */
		len = -1;
		break;
	}

	debug("Read %d bytes from TPM\n", len);
	if (len > 0) {
		int i;

		for (i = 0; i < len; i++)
			debug("%2.2x ", raw_response[i]);
		debug("\n");
	}
	len = len - response_offset;
	if (len < 0) {
		fprintf(stderr, "Problems reading from TPM, got %d bytes\n",
			len + response_offset);
		return -1;
	}

	if (response && response_size) {
		len = MIN(len, *response_size);
		memcpy(response, raw_response + response_offset, len);
		*response_size = len;
	}

	/* Return the actual return code from the TPM response header. */
	memcpy(&rv, &((struct upgrade_pkt *)raw_response)->ordinal, sizeof(rv));
	rv = be32toh(rv);

	/* Clear out vendor command return value offset.*/
	if ((rv & VENDOR_RC_ERR) == VENDOR_RC_ERR)
		rv &= ~VENDOR_RC_ERR;

	return rv;
}

/* Release USB device and return error to the OS. */
static void shut_down(struct usb_endpoint *uep)
{
	usb_shut_down(uep);
	exit(update_error);
}

static void usage(int errs)
{
	size_t i;
	const int indent = 27; /* This is the size used by gsctool all along. */

	printf("\nUsage: %s [options] [<binary image>]\n"
	       "\n"
	       "This utility allows to update Cr50 RW firmware, configure\n"
	       "various aspects of Cr50 operation, analyze Cr50 binary\n"
	       "images, etc.\n\n"
	       "<binary image> is the file name of a full RO+RW binary image.\n"
	       "\n"
	       "Options:\n\n",
	       progname);

	for (i = 0; i < ARRAY_SIZE(cmd_line_options); i++) {
		const char *help_text = cmd_line_options[i].help_text;
		int printed_length;
		const char *separator;

		/*
		 * First print the short and long forms of the command line
		 * option.
		 */
		printed_length = printf(" -%c,--%s",
					cmd_line_options[i].opt.val,
					cmd_line_options[i].opt.name);

		/*
		 * If there is something to print immediately after the
		 * options, print it.
		 */
		separator = strchr(help_text, '%');
		if (separator) {
			char buffer[80];
			size_t extra_size;

			extra_size = separator - help_text;
			if (extra_size >= sizeof(buffer)) {
				fprintf(stderr, "misformatted help text: %s\n",
					help_text);
				exit(-1);
			}
			memcpy(buffer, help_text, extra_size);
			buffer[extra_size] = '\0';
			printed_length += printf(" %s", buffer);
			help_text = separator + 1;
		}

		/*
		 * If printed length exceeds or is too close to indent, print
		 * help text on the next line.
		 */
		if (printed_length >= (indent - 1)) {
			printf("\n");
			printed_length = 0;
		}

		while (printed_length++ < indent)
			printf(" ");
		printf("%s\n", help_text);
	}
	printf("\n");
	exit(errs ? update_error : noop);
}

/* Read file into buffer */
static uint8_t *get_file_or_die(const char *filename, size_t *len_ptr)
{
	FILE *fp;
	struct stat st;
	uint8_t *data;
	size_t len;

	fp = fopen(filename, "rb");
	if (!fp) {
		perror(filename);
		exit(update_error);
	}
	if (fstat(fileno(fp), &st)) {
		perror("stat");
		exit(update_error);
	}

	len = st.st_size;

	data = malloc(len);
	if (!data) {
		perror("malloc");
		exit(update_error);
	}

	if (1 != fread(data, st.st_size, 1, fp)) {
		perror("fread");
		exit(update_error);
	}

	fclose(fp);

	*len_ptr = len;
	return data;
}

/* Returns true if parsed. */
static int parse_vidpid(const char *input, uint16_t *vid_ptr, uint16_t *pid_ptr)
{
	char *copy, *s, *e = 0;

	copy = strdup(input);

	s = strchr(copy, ':');
	if (!s)
		return 0;
	*s++ = '\0';

	*vid_ptr = (uint16_t) strtoul(copy, &e, 16);
	if (!*optarg || (e && *e))
		return 0;

	*pid_ptr = (uint16_t) strtoul(s, &e, 16);
	if (!*optarg || (e && *e))
		return 0;

	return 1;
}

struct update_pdu {
	uint32_t block_size; /* Total block size, include this field's size. */
	struct upgrade_command cmd;
	/* The actual payload goes here. */
};

static void do_xfer(struct usb_endpoint *uep, void *outbuf, int outlen,
		    void *inbuf, int inlen, int allow_less, size_t *rxed_count)
{
	if (usb_trx(uep, outbuf, outlen, inbuf, inlen, allow_less, rxed_count))
		shut_down(uep);
}

static int transfer_block(struct usb_endpoint *uep, struct update_pdu *updu,
			  uint8_t *transfer_data_ptr, size_t payload_size)
{
	size_t transfer_size;
	uint32_t reply;
	int actual;
	int r;

	/* First send the header. */
	do_xfer(uep, updu, sizeof(*updu), NULL, 0, 0, NULL);

	/* Now send the block, chunk by chunk. */
	for (transfer_size = 0; transfer_size < payload_size;) {
		int chunk_size;

		chunk_size = MIN(uep->chunk_len, payload_size - transfer_size);
		do_xfer(uep, transfer_data_ptr, chunk_size, NULL, 0, 0, NULL);
		transfer_data_ptr += chunk_size;
		transfer_size += chunk_size;
	}

	/* Now get the reply. */
	r = libusb_bulk_transfer(uep->devh, uep->ep_num | 0x80,
				 (void *) &reply, sizeof(reply),
				 &actual, 1000);
	if (r) {
		if (r == -7) {
			fprintf(stderr, "Timeout!\n");
			return r;
		}
		USB_ERROR("libusb_bulk_transfer", r);
		shut_down(uep);
	}

	reply = *((uint8_t *)&reply);
	if (reply) {
		fprintf(stderr, "Error: status %#x\n", reply);
		exit(update_error);
	}

	return 0;
}

/**
 * Transfer an image section (typically RW or RO).
 *
 * td           - transfer descriptor to use to communicate with the target
 * data_ptr     - pointer at the section base in the image
 * section_addr - address of the section in the target memory space
 * data_len     - section size
 */
static void transfer_section(struct transfer_descriptor *td,
			     uint8_t *data_ptr,
			     uint32_t section_addr,
			     size_t data_len)
{
	/*
	 * Actually, we can skip trailing chunks of 0xff, as the entire
	 * section space must be erased before the update is attempted.
	 */
	while (data_len && (data_ptr[data_len - 1] == 0xff))
		data_len--;

	/*
	 * Make sure total size is 4 bytes aligned, this is required for
	 * successful flashing.
	 */
	data_len = (data_len + 3) &  ~3;

	printf("sending 0x%zx bytes to %#x\n", data_len, section_addr);
	while (data_len) {
		size_t payload_size;
		union sha_ctx ctx;
		int max_retries;
		struct update_pdu updu;

		/* prepare the header to prepend to the block. */
		payload_size = MIN(data_len, SIGNED_TRANSFER_SIZE);
		updu.block_size = htobe32(payload_size +
					  sizeof(struct update_pdu));

		updu.cmd.block_base = htobe32(section_addr);

		/* Calculate the digest. */
		sha_init(&ctx);
		sha_update(&ctx, &updu.cmd.block_base,
			   sizeof(updu.cmd.block_base));
		sha_update(&ctx, data_ptr, payload_size);
		sha_final_into_block_digest(&ctx, &updu.cmd.block_digest,
					    sizeof(updu.cmd.block_digest));

		if (td->ep_type == usb_xfer) {
			for (max_retries = 10; max_retries; max_retries--)
				if (!transfer_block(&td->uep, &updu,
						    data_ptr, payload_size))
					break;

			if (!max_retries) {
				fprintf(stderr,
					"Failed to transfer block, %zd to go\n",
					data_len);
				exit(update_error);
			}
		} else {
			uint8_t error_code[4];
			size_t rxed_size = sizeof(error_code);
			uint32_t block_addr;

			block_addr = section_addr;

			/*
			 * A single byte response is expected, but let's give
			 * the driver a few extra bytes to catch cases when a
			 * different amount of data is transferred (which
			 * would indicate a synchronization problem).
			 */
			if (tpm_send_pkt(td,
					 updu.cmd.block_digest,
					 block_addr,
					 data_ptr,
					 payload_size, error_code,
					 &rxed_size,
					 EXTENSION_FW_UPGRADE) < 0) {
				fprintf(stderr,
					"Failed to trasfer block, %zd to go\n",
					data_len);
				exit(update_error);
			}
			if (rxed_size != 1) {
				fprintf(stderr, "Unexpected return size %zd\n",
					rxed_size);
				exit(update_error);
			}

			if (error_code[0]) {
				fprintf(stderr, "Error %d\n", error_code[0]);
				exit(update_error);
			}
		}
		data_len -= payload_size;
		data_ptr += payload_size;
		section_addr += payload_size;
	}
}

/* Information about the target */
static struct first_response_pdu targ;

/*
 * Each RO or RW section of the new image can be in one of the following
 * states.
 */
enum upgrade_status {
	not_needed = 0,  /* Version below or equal that on the target. */
	not_possible,    /*
			  * RO is newer, but can't be transferred due to
			  * target RW shortcomings.
			  */
	needed            /*
			   * This section needs to be transferred to the
			   * target.
			   */
};

/* Index to refer to a section within sections array */
enum section {
	RO_A,
	RW_A,
	RO_B,
	RW_B,
};

/*
 * This array describes all four sections of the new image. Defaults are for
 * H1 images. D2 images are scanned for SignedHeaders in the image
 */
static struct {
	const char *name;
	uint32_t    offset;
	uint32_t    size;
	enum upgrade_status  ustatus;
	struct signed_header_version shv;
	uint32_t keyid;
} sections[] = {
	[RO_A] = {"RO_A", CONFIG_RO_MEM_OFF, CONFIG_RO_SIZE},
	[RW_A] = {"RW_A", CONFIG_RW_MEM_OFF, CONFIG_RW_SIZE},
	[RO_B] = {"RO_B", CHIP_RO_B_MEM_OFF, CONFIG_RO_SIZE},
	[RW_B] = {"RW_B", CONFIG_RW_B_MEM_OFF, CONFIG_RW_SIZE}
};

/*
 * This is set during locate_headers and can be used to fork logic between H1
 * and D2 if needed.
 */
static uint32_t image_magic;

/*
 * Remove these definitions so a developer doesn't accidentally use them in
 * the future. All lookups should go through the sections array.
 */
#undef CONFIG_RO_MEM_OFF
#undef CONFIG_RW_MEM_OFF
#undef CHIP_RO_B_MEM_OFF
#undef CONFIG_RW_B_MEM_OFF
#undef CONFIG_RO_SIZE
#undef CONFIG_RW_SIZE
#undef CONFIG_FLASH_SIZE

/* Returns true if the specified header is valid */
static bool valid_header(const struct SignedHeader *const h, const size_t size)
{
	if (size < sizeof(struct SignedHeader))
		return false;

	if (h->image_size > size)
		return false;

	if (h->image_size < CONFIG_FLASH_BANK_SIZE)
		return false;

	/* Only H1 and D2 are currently supported. */
	if (h->magic != MAGIC_HAVEN && h->magic != MAGIC_DAUNTLESS)
		return false;

	/*
	 * Both Rx base and Ro base are the memory mapped address, but they
	 * should have the same offset. The rx section starts after the header.
	 */
	if (h->rx_base != h->ro_base + sizeof(struct SignedHeader))
		return false;

	/* Ensure each section falls within full size */
	if (h->ro_max - h->ro_base > size)
		return false;

	if (h->rx_max - h->rx_base > size)
		return false;

	return true;
}

/* Rounds and address up to the next 2KB boundary if not one already */
static inline uint32_t round_up_2kb(const uint32_t addr)
{
	const uint32_t mask = (2 * 1024) - 1;

	return (addr + mask) & ~mask;
}

static const struct SignedHeader *as_header(const void *image, uint32_t offset)
{
	return (void *)((uintptr_t)image + offset);
}

/* Returns the RW header or -1 if one cannot be found */
static int32_t find_rw_header(const void *image, uint32_t offset,
			      const uint32_t end)
{
	offset = round_up_2kb(offset);

	while (offset < end) {
		if (valid_header(as_header(image, offset), end - offset))
			return offset;
		offset = round_up_2kb(offset + 1);
	}

	return -1;
}

/* Return true if we located headers and set sections correctly */
static bool locate_headers(const void *image, const uint32_t size)
{
	const uint32_t slot_a_end = size / 2;
	const struct SignedHeader *h;
	int32_t rw_offset;

	/*
	 * We assume that all 512KB images are "valid" H1 images. The DBG images
	 * from the signer do not set the magic to -1 and no not set valid
	 * section offsets. We do not want to break this case as it is used in
	 * testing. The H1 offsets are also static, so we don't need to scan
	 * for RW headers.
	 */
	if (size == (512 * 1024)) {
		image_magic = MAGIC_HAVEN;
		/* Leave defaults in sections array untouched */
		return true;
	}

	/*
	 * We know that all other image types supported (i.e. Dauntless) are
	 * 1MB in size.
	 */
	if (size != (1024 * 1024)) {
		fprintf(stderr, "\nERROR: Image size (%d KB) is invalid\n",
			size / 1024);
		return false;
	}

	/* Validate the RO_A header */
	h = as_header(image, 0);
	if (!valid_header(h, slot_a_end)) {
		fprintf(stderr, "\nERROR: RO_A header is invalid\n");
		return false;
	}
	/* Store magic so other logic can fork if needed based on H1/D2 */
	image_magic = h->magic;
	sections[RO_A].offset = 0;
	sections[RO_A].size = h->image_size;

	/* Find RW_A */
	rw_offset = find_rw_header(
		image, sections[RO_A].offset + sections[RO_A].size, slot_a_end);
	if (rw_offset == -1) {
		fprintf(stderr, "\nERROR: RW_A header cannot be found\n");
		return false;
	}
	sections[RW_A].offset = rw_offset;
	sections[RW_A].size = as_header(image, rw_offset)->image_size;

	/* Validate the RO_B header */
	h = as_header(image, slot_a_end);
	if (!valid_header(h, size - slot_a_end)) {
		fprintf(stderr, "\nERROR: RO_B header is invalid\n");
		return false;
	}
	sections[RO_B].offset = slot_a_end;
	sections[RO_B].size = h->image_size;

	/* Find RW_B */
	rw_offset = find_rw_header(
		image, sections[RO_B].offset + sections[RO_B].size, size);
	if (rw_offset == -1) {
		fprintf(stderr, "\nERROR: RW_B header cannot be found\n");
		return false;
	}
	sections[RW_B].offset = rw_offset;
	sections[RW_B].size = as_header(image, rw_offset)->image_size;

	/* We found all of the headers and updated offset/size in sections */
	return true;
}

/*
 * Scan the new image and retrieve versions of all four sections, two RO and
 * two RW, verifying that image size is not too short along the way.
 */
static bool fetch_header_versions(const void *image)
{
	size_t i;

	for (i = 0; i < ARRAY_SIZE(sections); i++) {
		const struct SignedHeader *h;

		h = (const struct SignedHeader *)((uintptr_t)image +
						  sections[i].offset);

		if (h->image_size < CONFIG_FLASH_BANK_SIZE) {
			/*
			 * Return an error for incorrectly signed images. If
			 * it's a RO image with 0 as its size, ignore the error.
			 *
			 * TODO(b/273510573): revisit after dbg versioning is
			 * figured out.
			 */
			if (h->image_size || sections[i].offset) {
				fprintf(stderr,
					"Image at offset %#5x too short "
					"(%d bytes)\n",
					sections[i].offset,
					h->image_size);
				return false;
			}

			printf("warning: invalid RO_A (size 0)\n");
		}
		sections[i].shv.epoch = h->epoch_;
		sections[i].shv.major = h->major_;
		sections[i].shv.minor = h->minor_;
		sections[i].keyid = h->keyid;
	}
	return true;
}


/* Compare to signer headers and determine which one is newer. */
static int a_newer_than_b(const struct signed_header_version *a,
			  const struct signed_header_version *b)
{
	uint32_t fields[][3] = {
		{a->epoch, a->major, a->minor},
		{b->epoch, b->major, b->minor},
	};
	size_t i;

	for (i = 0; i < ARRAY_SIZE(fields[0]); i++) {
		uint32_t a_value;
		uint32_t b_value;

		a_value = fields[0][i];
		b_value = fields[1][i];

		/*
		 * Let's filter out images where the section is not
		 * initialized and the version field value is set to all ones.
		 */
		if (a_value == 0xffffffff)
			a_value = 0;

		if (b_value == 0xffffffff)
			b_value = 0;

		if (a_value != b_value)
			return a_value > b_value;
	}

	return 0;	/* All else being equal A is no newer than B. */
}

/*
 * Determine if the current RW version can be upgrade to the potential RW
 * version. If not, will exit the program.
 */
static void check_rw_upgrade(const struct signed_header_version *current_rw,
			     const struct signed_header_version *to_rw)
{
	/*
	 * Disallow upgrade to 0.0.16+ without going through 0.0.15
	 * first. This check won't be needed after 2023-01-01
	 */
	const struct signed_header_version ver15 = { .epoch = 0,
						     .major = 0,
						     .minor = 15 };
	const int current_less_than_15 = a_newer_than_b(&ver15, current_rw);
	const int to_greater_than_15 = a_newer_than_b(to_rw, &ver15);

	if (image_magic == MAGIC_DAUNTLESS && current_less_than_15 &&
	    to_greater_than_15) {
		printf("Must upgrade to RW 0.0.15 first!\n");
		/*  Do not continue with any upgrades RW or RO */
		exit(update_error);
	}
}

/*
 * Pick sections to transfer based on information retrieved from the target,
 * the new image, and the protocol version the target is running.
 */
static void pick_sections(struct transfer_descriptor *td)
{
	size_t i;

	for (i = 0; i < ARRAY_SIZE(sections); i++) {
		uint32_t offset = sections[i].offset;

		if ((i == RW_A) || (i == RW_B)) {
			/* Skip currently active RW section. */
			bool active_rw_slot_b = td->rw_offset <
						sections[RO_B].offset;
			if ((i == RW_B) == active_rw_slot_b)
				continue;
			/*
			 * Ok, this would be the RW section to transfer to the
			 * device. Is it newer in the new image than the
			 * running RW section on the device?
			 *
			 * If not in 'upstart' mode - transfer even if
			 * versions are the same, timestamps could be
			 * different.
			 */

			if (a_newer_than_b(&sections[i].shv, &targ.shv[1]) ||
			    !td->upstart_mode) {
				/* Check will exit if disallowed */
				check_rw_upgrade(&targ.shv[1],
						 &sections[i].shv);
				sections[i].ustatus = needed;
			}
			/* Rest of loop is RO */
			continue;
		}

		/* Skip currently active RO section. */
		if (offset != td->ro_offset)
			continue;
		/*
		 * Ok, this would be the RO section to transfer to the device.
		 * Is it newer in the new image than the running RO section on
		 * the device?
		 */
		if (a_newer_than_b(&sections[i].shv, &targ.shv[0]) ||
		    td->force_ro)
			sections[i].ustatus = needed;
	}
}

static void setup_connection(struct transfer_descriptor *td)
{
	size_t rxed_size;
	size_t i;
	uint32_t error_code;

	/*
	 * Need to be backwards compatible, communicate with targets running
	 * different protocol versions.
	 */
	union {
		struct first_response_pdu rpdu;
		uint32_t legacy_resp;
	} start_resp;

	/* Send start request. */
	printf("start\n");

	if (td->ep_type == usb_xfer) {
		struct update_pdu updu;

		memset(&updu, 0, sizeof(updu));
		updu.block_size = htobe32(sizeof(updu));
		do_xfer(&td->uep, &updu, sizeof(updu), &start_resp,
			sizeof(start_resp), 1, &rxed_size);
	} else {
		rxed_size = sizeof(start_resp);
		if (tpm_send_pkt(td, 0, 0, NULL, 0,
				 &start_resp, &rxed_size,
				 EXTENSION_FW_UPGRADE) < 0) {
			fprintf(stderr, "Failed to start transfer\n");
			exit(update_error);
		}
	}

	/* We got something. Check for errors in response */
	if (rxed_size < 8) {
		fprintf(stderr, "Unexpected response size %zd: ", rxed_size);
		for (i = 0; i < rxed_size; i++)
			fprintf(stderr, " %02x", ((uint8_t *)&start_resp)[i]);
		fprintf(stderr, "\n");
		exit(update_error);
	}

	protocol_version = be32toh(start_resp.rpdu.protocol_version);
	if (protocol_version < 5) {
		fprintf(stderr, "Unsupported protocol version %d\n",
			protocol_version);
		exit(update_error);
	}

	printf("target running protocol version %d\n", protocol_version);

	error_code = be32toh(start_resp.rpdu.return_value);

	if (error_code) {
		fprintf(stderr, "Target reporting error %d\n", error_code);
		if (td->ep_type == usb_xfer)
			shut_down(&td->uep);
		exit(update_error);
	}

	td->rw_offset = be32toh(start_resp.rpdu.backup_rw_offset);
	td->ro_offset = be32toh(start_resp.rpdu.backup_ro_offset);

	/* Running header versions. */
	for (i = 0; i < ARRAY_SIZE(targ.shv); i++) {
		targ.shv[i].minor = be32toh(start_resp.rpdu.shv[i].minor);
		targ.shv[i].major = be32toh(start_resp.rpdu.shv[i].major);
		targ.shv[i].epoch = be32toh(start_resp.rpdu.shv[i].epoch);
	}

	for (i = 0; i < ARRAY_SIZE(targ.keyid); i++)
		targ.keyid[i] = be32toh(start_resp.rpdu.keyid[i]);

	printf("keyids: RO 0x%08x, RW 0x%08x\n", targ.keyid[0], targ.keyid[1]);
	printf("offsets: backup RO at %#x, backup RW at %#x\n",
	       td->ro_offset, td->rw_offset);

	pick_sections(td);
}

/*
 * Channel TPM extension/vendor command over USB. The payload of the USB frame
 * in this case consists of the 2 byte subcommand code concatenated with the
 * command body. The caller needs to indicate if a response is expected, and
 * if it is - of what maximum size.
 */
static int ext_cmd_over_usb(struct usb_endpoint *uep, uint16_t subcommand,
			    const void *cmd_body, size_t body_size,
			    void *resp, size_t *resp_size)
{
	struct update_frame_header *ufh;
	uint16_t *frame_ptr;
	size_t usb_msg_size;
	union sha_ctx ctx;

	usb_msg_size = sizeof(struct update_frame_header) +
		sizeof(subcommand) + body_size;

	ufh = malloc(usb_msg_size);
	if (!ufh) {
		fprintf(stderr, "%s: failed to allocate %zd bytes\n",
			__func__, usb_msg_size);
		return -1;
	}

	ufh->block_size = htobe32(usb_msg_size);
	ufh->cmd.block_base = htobe32(CONFIG_EXTENSION_COMMAND);
	frame_ptr = (uint16_t *)(ufh + 1);
	*frame_ptr = htobe16(subcommand);

	if (body_size)
		memcpy(frame_ptr + 1, cmd_body, body_size);

	/* Calculate the digest. */
	sha_init(&ctx);
	sha_update(&ctx, &ufh->cmd.block_base,
		   usb_msg_size -
		   offsetof(struct update_frame_header, cmd.block_base));
	sha_final_into_block_digest(&ctx, &ufh->cmd.block_digest,
				    sizeof(ufh->cmd.block_digest));

	do_xfer(uep, ufh, usb_msg_size, resp,
		resp_size ? *resp_size : 0, 1, resp_size);

	free(ufh);
	return 0;
}

/*
 * Indicate to the target that update image transfer has been completed. Upon
 * receiveing of this message the target state machine transitions into the
 * 'rx_idle' state. The host may send an extension command to reset the target
 * after this.
 */
static void send_done(struct usb_endpoint *uep)
{
	uint32_t out;

	/* Send stop request, ignoring reply. */
	out = htobe32(UPGRADE_DONE);
	do_xfer(uep, &out, sizeof(out), &out, 1, 0, NULL);
}

/*
 * Old cr50 images fail the update if sections are sent out of order. They
 * require each block to have an offset greater than the block that was sent
 * before. RO has a lower offset than RW, so old cr50 images reject RO if it's
 * sent right after RW.
 * This offset restriction expires after 60 seconds. Delay the RO update long
 * enough for cr50 to not care that it has a lower offset than RW.
 *
 * Make the delay 65 seconds instead of 60 to cover differences in the speed of
 * H1's clock and the host clock.
 */
#define NEXT_SECTION_DELAY 65

/*
 * H1 support for flashing RO immediately after RW added in 0.3.20/0.4.20.
 * D2 support exists in all versions.
 */
static int supports_reordered_section_updates(struct signed_header_version *rw)
{
	switch (image_magic) {
	case MAGIC_HAVEN:
		return (rw->epoch || rw->major > 4 ||
			(rw->major >= 3 && rw->minor >= 20));
	case MAGIC_DAUNTLESS:
		return true;
	default:
		return false;
	}
}

/* Returns number of successfully transmitted image sections. */
static int transfer_image(struct transfer_descriptor *td,
			       uint8_t *data, size_t data_len)
{
	size_t i;
	int num_txed_sections = 0;
	int needs_delay = !supports_reordered_section_updates(&targ.shv[1]);

	/*
	 * In case both RO and RW updates are required, make sure the RW
	 * section is updated before the RO. The array below keeps sections
	 * offsets in the required order.
	 */
	const enum section update_order[] = { RW_A, RW_B, RO_A, RO_B };

	for (i = 0; i < ARRAY_SIZE(update_order); i++) {
		const enum section sect = update_order[i];

		if (sections[sect].ustatus != needed)
			continue;
		if (num_txed_sections && needs_delay) {
			/*
			 * Delays more than 5 seconds cause the update
			 * to timeout. End the update before the delay
			 * and set it up after to recover from the
			 * timeout.
			 */
			if (td->ep_type == usb_xfer)
				send_done(&td->uep);
			printf("Waiting %ds for %s update.\n",
			       NEXT_SECTION_DELAY, sections[sect].name);
			sleep(NEXT_SECTION_DELAY);
			setup_connection(td);
		}

		transfer_section(td, data + sections[sect].offset,
				 sections[sect].offset, sections[sect].size);
		num_txed_sections++;
	}

	if (!num_txed_sections)
		printf("nothing to do\n");
	else
		printf("-------\nupdate complete\n");
	return num_txed_sections;
}

uint32_t send_vendor_command(struct transfer_descriptor *td,
			     uint16_t subcommand,
			     const void *command_body,
			     size_t command_body_size,
			     void *response,
			     size_t *response_size)
{
	int32_t rv;

	if (td->ep_type == usb_xfer) {
		/*
		 * When communicating over USB the response is always supposed
		 * to have the result code in the first byte of the response,
		 * to be stripped from the actual response body by this
		 * function.
		 */
		uint8_t temp_response[MAX_RX_BUF_SIZE];
		size_t max_response_size;

		if (!response_size) {
			max_response_size = 1;
		} else if (*response_size < (sizeof(temp_response))) {
			max_response_size = *response_size + 1;
		} else {
			fprintf(stderr,
				"Error: Expected response too large (%zd)\n",
				*response_size);
			/* Should happen only when debugging. */
			exit(update_error);
		}

		ext_cmd_over_usb(&td->uep, subcommand,
				 command_body, command_body_size,
				 temp_response, &max_response_size);
		if (!max_response_size) {
			/*
			 * we must be talking to an older Cr50 firmware, which
			 * does not return the result code in the first byte
			 * on success, nothing to do.
			 */
			if (response_size)
				*response_size = 0;
			rv = 0;
		} else {
			rv = temp_response[0];
			if (response_size) {
				*response_size = max_response_size - 1;
				memcpy(response,
				       temp_response + 1, *response_size);
			}
		}
	} else {

		rv = tpm_send_pkt(td, 0, 0,
				  command_body, command_body_size,
				  response, response_size, subcommand);

		if (rv == -1) {
			fprintf(stderr,
				"Error: Failed to send vendor command %d\n",
				subcommand);
			exit(update_error);
		}
	}

	return rv; /* This will be converted into uint32_t */
}

/*
 * Corrupt the header of the inactive rw image to make sure the system can't
 * rollback
 */
static void invalidate_inactive_rw(struct transfer_descriptor *td)
{
	/* Corrupt the rw image that is not running. */
	uint32_t rv;

	rv = send_vendor_command(td, VENDOR_CC_INVALIDATE_INACTIVE_RW,
				 NULL, 0, NULL, NULL);
	if (!rv) {
		printf("Inactive header invalidated\n");
		return;
	}

	fprintf(stderr, "*%s: Error %#x\n", __func__, rv);
	exit(update_error);
}

/*
 * Try setting CCD capability.
 *
 * The 'parameter' string includes capability and desired new state separated
 * by a ':', both parts could be abbreviated and checked for the match as case
 * insensitive.
 *
 * The result of the attempt depends on the policies installed on
 * Ti50. The result could be on of the following:
 *
 * - success (capability is successfully changed, or is already at the
 *   requested level),
 * - various errors if setting the capability is not allowed or something
 *   goes wrong on Ti50
 * - request for physical presence confirmation
 */
static enum exit_values process_set_capabililty(struct transfer_descriptor *td,
						const char *parameter)
{
	const char *colon;
	size_t len;
	size_t cap_index;
	size_t i;
	uint8_t rc;
	const char *error_text;
	const char *cr50_err =
		"Note: setting capabilities not available on Cr50\n";
	/*
	 * The payload is three bytes, command version, capability, and
	 * desired state, all expressed as u8.
	 */
	struct __attribute__((__packed__)) {
		uint8_t version;
		uint8_t cap;
		uint8_t value;
	} command;
	/*
	 * Translation table of possible desired capabilities, Cr50 values
	 * and duplicated in common/syscalls/src/ccd.rs::CcdCapState.
	 */
	struct {
		const char *state_name;
		enum ccd_capability_state desired_state;
	} states[] = {
		{"default", CCD_CAP_STATE_DEFAULT},
		{"always", CCD_CAP_STATE_ALWAYS},
		{"if_opened", CCD_CAP_STATE_IF_OPENED},
	};

	/*
	 * Possible responses from Ti50 when trying to modify AlloUnverifiedRo
	 * capability. The values come from
	 * common/libs/tpm2/extension/src/lib.rs::TpmvReturnCode.
	 */
	enum set_allow_unverified_ro_responses {
		AUR_SUCCESS = 0,
		AUR_BOGUS_ARGS = 1,
		AUR_INTERNAL_ERROR = 6,
		AUR_NOT_ALLOWED = 7,
		AUR_IN_PROGRESS = 9,
	};

	/*
	 * Validate the parameter, for starters make sure that the colon
	 * symbol is present and is neither the first nor the last character
	 * in the string.
	 */
	colon = strchr(parameter, ':');
	if (!colon || (colon == parameter) || (colon[1] == '\0')) {
		fprintf(stderr, "Misformatted capability parameter: %s\n",
			parameter);
		exit(update_error);
	}

	/*
	 * Find the capability index in the table, reject ambiguous
	 * abbreviations.
	 */
	len = colon - parameter;
	for (i = 0, cap_index = ARRAY_SIZE(ti50_cap_info);
	     i < ARRAY_SIZE(ti50_cap_info); i++) {
		if (!strncasecmp(ti50_cap_info[i].name, parameter, len)) {
			if (cap_index != ARRAY_SIZE(ti50_cap_info)) {
				fprintf(stderr, "Ambiguous capability name\n");
				exit(update_error);
			}
			cap_index = i;
		}
	}
	if (cap_index == ARRAY_SIZE(ti50_cap_info)) {
		fprintf(stderr, "Unknown capability name\n%s", cr50_err);
		exit(update_error);
	}

	/* Calculate length of the desired value. */
	len = strlen(parameter) - len - 1;

	/* Find the value index in the table. */
	for (i = 0; i < ARRAY_SIZE(states); i++) {
		if (!strncasecmp(states[i].state_name, colon + 1, len))
			break;
	}
	if (i == ARRAY_SIZE(states)) {
		fprintf(stderr, "Unsupported capability value\n");
		return update_error;
	}

	/* Prepare and send vendor command to request setting capability. */
	command.version = CCD_VERSION;
	command.cap = (uint8_t)cap_index;
	command.value = (uint8_t)states[i].desired_state;

	i = 0;
	len = 1;
	send_vendor_command(td, VENDOR_CC_SET_CAPABILITY,
			    &command, sizeof(command), &rc, &len);

	if (len != 1) {
		fprintf(stderr, "Unexpected return message size %zd\n", len);
		if (len == 0)
			fprintf(stderr, "%s", cr50_err);
		return update_error;
	}

	switch (rc) {
	case AUR_IN_PROGRESS:
		/*
		 * Physical presence poll is required, note fall through to
		 * the next case.
		 */
		poll_for_pp(td, VENDOR_CC_CCD, CCDV_PP_POLL_SET_CAPABILITY);
	case AUR_SUCCESS:
		return noop; /* All is well, no need to do anything. */
	case AUR_BOGUS_ARGS:
		error_text =  "BogusArgs";
		break;
	case AUR_INTERNAL_ERROR:
		error_text = "InternalError";
		break;
	case AUR_NOT_ALLOWED:
		error_text =  "NotAllowed";
		break;
	default:
		error_text = "Unknown";
		break;
	}
	fprintf(stderr, "Got error %d(%s)\n", rc, error_text);
	return update_error;
}

static void process_erase_ap_ro_hash(struct transfer_descriptor *td)
{
	/* Try erasing AP RO hash, could fail if board ID is programmed. */
	uint32_t rv;
	uint8_t response;
	size_t response_size;
	char error_details[64];

	response_size = sizeof(response);
	rv = send_vendor_command(td, VENDOR_CC_SEED_AP_RO_CHECK,
				 NULL, 0, &response, &response_size);
	if (!rv) {
		printf("AP RO hash erased\n");
		exit(0);
	}

	if (response_size == sizeof(response)) {
		switch (response) {
		case ARCVE_FLASH_ERASE_FAILED:
			snprintf(error_details, sizeof(error_details),
				 "erase failure");
			break;
		case ARCVE_BID_PROGRAMMED:
			snprintf(error_details, sizeof(error_details),
				 "BID already programmed");
			break;
		default:
			snprintf(error_details, sizeof(error_details),
				 "Unexpected error rc %d, response %d",
				 rv, response);
			break;
		}
	} else {
		snprintf(error_details, sizeof(error_details),
			 "misconfigured response, rc=%d, size %zd",
			 rv, response_size);
	}

	fprintf(stderr, "Error: %s\n", error_details);

	exit(update_error);
}

static void generate_reset_request(struct transfer_descriptor *td)
{
	size_t response_size;
	uint8_t response;
	uint16_t subcommand;
	uint8_t command_body[2]; /* Max command body size. */
	size_t command_body_size;
	const char *reset_type;
	int rv;

	if (protocol_version < 6) {
		if (td->ep_type == usb_xfer) {
			/*
			 * Send a second stop request, which should reboot
			 * without replying.
			 */
			send_done(&td->uep);
		}
		/* Nothing we can do over /dev/tpm0 running versions below 6. */
		return;
	}

	/*
	 * If this is an upstart request, don't post a request now. The target
	 * should handle it on the next reboot.
	 */
	if (td->upstart_mode)
		return;

	/*
	 * If the user explicitly wants it, request post reset instead of
	 * immediate reset. In this case next time the target reboots, the GSC
	 * will reboot as well, and will consider running the uploaded code.
	 *
	 * Otherwise, to reset the target the host is supposed to send the
	 * command to enable the uploaded image disabled by default.
	 */
	response_size = 1;
	if (td->post_reset) {
		subcommand = EXTENSION_POST_RESET;
		command_body_size = 0;
		reset_type = "posted";
	} else {
		subcommand = VENDOR_CC_TURN_UPDATE_ON;
		command_body_size = sizeof(command_body);
		command_body[0] = 0;
		command_body[1] = 100;  /* Reset in 100 ms. */
		reset_type = "requested";
	}

	rv = send_vendor_command(td, subcommand, command_body,
				 command_body_size, &response, &response_size);

	if (rv) {
		fprintf(stderr, "*%s: Error %#x\n", __func__, rv);
		exit(update_error);
	}
	printf("reboot %s\n", reset_type);
}

/* Forward to correct SHA implementation based on image type */
static void sha_init(union sha_ctx *ctx)
{
	if (image_magic == MAGIC_HAVEN)
		SHA1_Init(&ctx->sha1);
	else if (image_magic == MAGIC_DAUNTLESS)
		SHA256_Init(&ctx->sha256);
}

/* Forward to correct SHA implementation based on image type */
static void sha_update(union sha_ctx *ctx, const void *data, size_t len)
{
	if (image_magic == MAGIC_HAVEN)
		SHA1_Update(&ctx->sha1, data, len);
	else if (image_magic == MAGIC_DAUNTLESS)
		SHA256_Update(&ctx->sha256, data, len);
}

/* Forward to correct SHA implementation based on image type */
static void sha_final_into_block_digest(union sha_ctx *ctx, void *block_digest,
					size_t size)
{
	/* Big enough for either hash algo */
	uint8_t full_digest[SHA256_DIGEST_LENGTH];

	if (image_magic == MAGIC_HAVEN)
		SHA1_Final(full_digest, &ctx->sha1);
	else if (image_magic == MAGIC_DAUNTLESS)
		SHA256_Final(full_digest, &ctx->sha256);

	/* Don't try to copy out more than the smallest (SHA1) digest */
	memcpy(block_digest, full_digest, MIN(size, SHA_DIGEST_LENGTH));
}

/*
 * Machine output is formatted as "key=value", one key-value pair per line, and
 * parsed by other programs (e.g., debugd). The value part should be specified
 * in the printf-like way. For example:
 *
 *           print_machine_output("date", "%d/%d/%d", 2018, 1, 1),
 *
 * which outputs this line in console:
 *
 *           date=2018/1/1
 *
 * The key part should not contain '=' or newline. The value part may contain
 * special characters like spaces, quotes, brackets, but not newlines. The
 * newline character means end of value.
 *
 * Any output format change in this function may require similar changes on the
 * programs that are using this gsctool.
 */
__attribute__((__format__(__printf__, 2, 3)))
static void print_machine_output(const char *key, const char *format, ...)
{
	va_list args;

	if (strchr(key, '=') != NULL || strchr(key, '\n') != NULL) {
		fprintf(stderr,
			"Error: key %s contains '=' or a newline character.\n",
			key);
		return;
	}

	if (strchr(format, '\n') != NULL) {
		fprintf(stderr,
			"Error: value format %s contains a newline character. "
			"\n",
			format);
		return;
	}

	va_start(args, format);

	printf("%s=", key);
	vprintf(format, args);
	printf("\n");

	va_end(args);
}

/*
 * Prints out the header, including FW versions and board IDs, of the given
 * image. Output in a machine-friendly format if show_machine_output is true.
 */
static int show_headers_versions(const void *image, bool show_machine_output)
{
	/*
	 * There are 2 FW slots in an image, and each slot has 2 sections, RO
	 * and RW. The 2 slots should have identical FW versions and board
	 * IDs.
	 */
	const size_t kNumSlots = 2;
	const size_t kNumSectionsPerSlot = 2;

	/*
	 * String representation of FW version (<epoch>:<major>:<minor>), one
	 * string for each FW section.
	 */
	char ro_fw_ver[kNumSlots][MAX_FW_VER_LENGTH];
	char rw_fw_ver[kNumSlots][MAX_FW_VER_LENGTH];

	uint32_t dev_id0_[kNumSlots];
	uint32_t dev_id1_[kNumSlots];
	uint32_t print_devid = 0;

	struct board_id {
		uint32_t id;
		uint32_t mask;
		uint32_t flags;
	} bid[kNumSlots];

	char bid_string[kNumSlots][MAX_BOARD_ID_LENGTH];

	size_t i;

	for (i = 0; i < ARRAY_SIZE(sections); i++) {
		const struct SignedHeader *h =
			(const struct SignedHeader *)
				((uintptr_t)image + sections[i].offset);
		const size_t slot_idx = i / kNumSectionsPerSlot;

		uint32_t cur_bid;
		size_t j;

		if (sections[i].name[1] == 'O') {
			/* RO. */
			snprintf(ro_fw_ver[slot_idx], MAX_FW_VER_LENGTH,
				 "%d.%d.%d", h->epoch_, h->major_, h->minor_);
			/* No need to read board ID in an RO section. */
			continue;
		} else {
			/* RW. */
			snprintf(rw_fw_ver[slot_idx], MAX_FW_VER_LENGTH,
				 "%d.%d.%d", h->epoch_, h->major_, h->minor_);
		}

		/*
		 * For RW sections, retrieves the board ID fields' contents,
		 * which are stored XORed with a padding value.
		 */
		bid[slot_idx].id = h->board_id_type ^ SIGNED_HEADER_PADDING;
		bid[slot_idx].mask =
			h->board_id_type_mask ^ SIGNED_HEADER_PADDING;
		bid[slot_idx].flags = h->board_id_flags ^ SIGNED_HEADER_PADDING;

		dev_id0_[slot_idx] = h->dev_id0_;
		dev_id1_[slot_idx] = h->dev_id1_;
		/* Print the devid if any slot has a non-zero devid. */
		print_devid |= h->dev_id0_ | h->dev_id1_;

		/*
		 * If board ID is a 4-uppercase-letter string (as it ought to
		 * be), print it as 4 letters, otherwise print it as an 8-digit
		 * hex.
		 */
		cur_bid = bid[slot_idx].id;
		for (j = 0; j < sizeof(cur_bid); ++j)
			if (!isupper(((const char *)&cur_bid)[j]))
				break;

		if (j == sizeof(cur_bid)) {
			cur_bid = be32toh(cur_bid);
			snprintf(bid_string[slot_idx], MAX_BOARD_ID_LENGTH,
				 "%.4s", (const char *)&cur_bid);
		} else {
			snprintf(bid_string[slot_idx], MAX_BOARD_ID_LENGTH,
				 "%08x", cur_bid);
		}
	}

	if (show_machine_output) {
		print_machine_output("IMAGE_RO_FW_VER", "%s", ro_fw_ver[0]);
		print_machine_output("IMAGE_RW_FW_VER", "%s", rw_fw_ver[0]);
		print_machine_output("IMAGE_BID_STRING", "%s", bid_string[0]);
		print_machine_output("IMAGE_BID_MASK", "%08x", bid[0].mask);
		print_machine_output("IMAGE_BID_FLAGS", "%08x", bid[0].flags);
	} else {
		printf("RO_A:%s RW_A:%s[%s:%08x:%08x] ",
		       ro_fw_ver[0], rw_fw_ver[0],
		       bid_string[0], bid[0].mask, bid[0].flags);
		printf("RO_B:%s RW_B:%s[%s:%08x:%08x]\n",
		       ro_fw_ver[1], rw_fw_ver[1],
		       bid_string[1], bid[1].mask, bid[1].flags);

		if (print_devid) {
			printf("DEVID: 0x%08x 0x%08x", dev_id0_[0],
			       dev_id1_[0]);
			/*
			 * Only print the second devid if it's different.
			 * Separate the devids with tabs, so it's easier to
			 * read.
			 */
			if (dev_id0_[0] != dev_id0_[1] ||
			    dev_id1_[0] != dev_id1_[1])
				printf("\t\t\t\tDEVID_B: 0x%08x 0x%08x",
				       dev_id0_[1], dev_id1_[1]);
			printf("\n");
		}
	}

	return 0;
}

/*
 * The default flag value will allow to run images built for any hardware
 * generation of a particular board ID.
 */
#define DEFAULT_BOARD_ID_FLAG 0xff00
static int parse_bid(const char *opt,
		     struct board_id *bid,
		     enum board_id_action *bid_action)
{
	char *e;
	const char *param2;
	size_t param1_length;

	if (!opt) {
		*bid_action = bid_get;
		return 1;
	}

	/* Set it here to make bailing out easier later. */
	bid->flags = DEFAULT_BOARD_ID_FLAG;

	*bid_action = bid_set;  /* Ignored by caller on errors. */

	/*
	 * Pointer to the optional second component of the command line
	 * parameter, when present - separated by a colon.
	 */
	param2 = strchr(opt, ':');
	if (param2) {
		param1_length = param2 - opt;
		param2++;
		if (!*param2)
			return 0; /* Empty second parameter. */
	} else {
		param1_length = strlen(opt);
	}

	if (!param1_length)
		return 0; /* Colon is the first character of the string? */

	if (param1_length <= 4) {
		unsigned i;

		/* Input must be a symbolic board name. */
		bid->type = 0;
		for (i = 0; i < param1_length; i++)
			bid->type = (bid->type << 8) | opt[i];
	} else {
		bid->type = (uint32_t)strtoul(opt, &e, 0);
		if ((param2 && (*e != ':')) || (!param2 && *e))
			return 0;
	}

	if (param2) {
		bid->flags = (uint32_t)strtoul(param2, &e, 0);
		if (*e)
			return 0;
	}

	return 1;
}

/*
 * Reads a two-character hexadecimal byte from a string. If the string is
 * ill-formed, returns 0. Otherwise, |byte| contains the byte value and the
 * return value is non-zero.
 */
static int read_hex_byte(const char* s, uint8_t* byte) {
	uint8_t b = 0;
	for (const char* end = s + 2; s < end; ++s) {
		if (*s >= '0' && *s <= '9')
			b = b * 16 + *s - '0';
		else if (*s >= 'A' && *s <= 'F')
			b = b * 16 + 10 + *s - 'A';
		else if (*s >= 'a' && *s <= 'f')
			b = b * 16 + 10 + *s - 'a';
		else
			return 0;
	}
	*byte = b;
	return 1;
}

static int parse_sn_bits(const char *opt, uint8_t *sn_bits)
{
	size_t len = strlen(opt);

	if (!strncmp(opt, "0x", 2)) {
		opt += 2;
		len -= 2;
	}
	if (len != SN_BITS_SIZE * 2) return 0;

	for (int i = 0; i < SN_BITS_SIZE; ++i, opt +=2)
		if (!read_hex_byte(opt, sn_bits++)) return 0;

	return 1;
}

static int parse_sn_inc_rma(const char *opt, uint8_t *arg)
{
	uint32_t inc;
	char *e;

	inc = (uint32_t)strtoul(opt, &e, 0);

	if (opt == e || *e != '\0' || inc > 7)
		return 0;

	*arg = inc;
	return 1;
}

static uint32_t common_process_password(struct transfer_descriptor *td,
					enum ccd_vendor_subcommands subcmd)
{
	size_t response_size;
	uint8_t response;
	uint32_t rv;
	char *password = NULL;
	char *password_copy = NULL;
	ssize_t copy_len;
	ssize_t len;
	size_t zero = 0;
	struct termios oldattr, newattr;

	/* Suppress command line echo while password is being entered. */
	tcgetattr(STDIN_FILENO, &oldattr);
	newattr = oldattr;
	newattr.c_lflag &= ~ECHO;
	newattr.c_lflag |= (ICANON | ECHONL);
	tcsetattr(STDIN_FILENO, TCSANOW, &newattr);

	/* With command line echo suppressed request password entry twice. */
	printf("Enter password:");
	len = getline(&password, &zero, stdin);
	printf("Re-enter password:");
	zero = 0;
	copy_len = getline(&password_copy, &zero, stdin);

	/* Restore command line echo. */
	tcsetattr(STDIN_FILENO, TCSANOW, &oldattr);

	/* Empty password will still have the newline. */
	if ((len <= 1) || !password_copy || (copy_len != len)) {
		fprintf(stderr, "Error reading password\n");
		if (password)
			free(password);
		if (password_copy)
			free(password_copy);
		if ((copy_len >= 0) && (len >= 0) && (copy_len != len))
			fprintf(stderr, "Password length mismatch\n");
		exit(update_error);
	}

	/* Compare the two inputs. */
	if (strcmp(password, password_copy)) {
		fprintf(stderr, "Entered passwords don't match\n");
		free(password);
		free(password_copy);
		exit(update_error);
	}

	/*
	 * Ok, we have a password, let's move it in the buffer to overwrite
	 * the newline and free a byte to prepend the subcommand code.
	 */
	memmove(password + 1, password, len  - 1);
	password[0] = subcmd;
	response_size = sizeof(response);
	rv = send_vendor_command(td, VENDOR_CC_CCD,
				 password, len,
				 &response, &response_size);
	free(password);
	free(password_copy);

	if ((rv != VENDOR_RC_SUCCESS) && (rv != VENDOR_RC_IN_PROGRESS))
		fprintf(stderr, "Error sending password: rv %d, response %d\n",
			rv, response_size ? response : 0);

	return rv;
}

static void process_password(struct transfer_descriptor *td)
{
	if (common_process_password(td, CCDV_PASSWORD) == VENDOR_RC_SUCCESS)
		return;

	exit(update_error);
}

void poll_for_pp(struct transfer_descriptor *td,
		 uint16_t command,
		 uint8_t poll_type)
{
	uint8_t response;
	uint8_t prev_response;
	size_t response_size;
	int rv;

	prev_response = ~0; /* Guaranteed invalid value. */

	while (1) {
		response_size = sizeof(response);
		rv = send_vendor_command(td, command,
					 &poll_type, sizeof(poll_type),
					 &response, &response_size);

		if (((rv != VENDOR_RC_SUCCESS) && (rv != VENDOR_RC_IN_PROGRESS))
		    || (response_size != 1)) {
			fprintf(stderr, "Error: rv %d, response %d\n",
				rv, response_size ? response : 0);
			exit(update_error);
		}

		if (response == CCD_PP_DONE) {
			printf("PP Done!\n");
			return;
		}

		if (response == CCD_PP_CLOSED) {
			fprintf(stderr,
				"Error: Physical presence check timeout!\n");
			exit(update_error);
		}


		if (response == CCD_PP_AWAITING_PRESS) {
			printf("Press PP button now!\n");
		} else if (response == CCD_PP_BETWEEN_PRESSES) {
			if (prev_response != response)
				printf("Another press will be required!\n");
		} else {
			fprintf(stderr, "Error: unknown poll result %d\n",
				response);
			exit(update_error);
		}
		prev_response = response;

		usleep(500 * 1000); /* Poll every half a second. */
	}

}

/* Determine the longest capability name found in the passed in table. */
static size_t longest_cap_name_len(const struct ccd_capability_info *table,
				   size_t count)
{
	size_t i;
	size_t result = 0;

	for (i = 0; i < count; i++) {
		size_t this_size;

		this_size = strlen(table[i].name);
		if (this_size > result)
			result = this_size;
	}
	return result;
}

/*
 * Print the passed in capability name padded to the longest length determined
 * earlier.
 */
static void print_aligned(const char *name, size_t field_size)
{
	size_t name_len;

	name_len = strlen(name);

	printf("%s", name);
	while (name_len < field_size) {
		printf(" ");
		name_len++;
	}
}

static void print_ccd_info(void *response, size_t response_size)
{
	struct ccd_info_response_header ccd_info_header;
	struct ccd_info_response ccd_info;
	size_t i;
	const struct ccd_capability_info cr50_cap_info[] = CAP_INFO_DATA;
	const char *state_names[] = CCD_STATE_NAMES;
	const char *cap_state_names[] = CCD_CAP_STATE_NAMES;
	uint32_t caps_bitmap = 0;
	uint32_t ccd_info_version;

	/*
	 * CCD info structure is different for different GSCs. Two layouts are
	 * defined at this time, version 0 (Cr50) and version 1 (Ti50). The
	 * array below indexed by version number provides access to version
	 * specific information about the layout.
	 */
	const struct {
		size_t cap_count;
		const struct ccd_capability_info *info_table;
	} version_to_ccd[] = {
		{CR50_CCD_CAP_COUNT, cr50_cap_info},
		{TI50_CCD_CAP_COUNT, ti50_cap_info},
	};

	/* Run time determined properties of the CCD info table. */
	size_t gsc_cap_count;
	const struct ccd_capability_info *gsc_capability_info;
	size_t name_column_width;

	if (response_size < sizeof(ccd_info_header)) {
		fprintf(stderr, "CCD info response too short %zd\n",
			response_size);
		exit(update_error);
	}

	/* Let's check if this is a newer version response. */
	memcpy(&ccd_info_header, response, sizeof(ccd_info_header));
	if ((ccd_info_header.ccd_magic == CCD_INFO_MAGIC) &&
	    (ccd_info_header.ccd_size == response_size) &&
	    /* Verify that payload size matches ccd_info size. */
	    ((response_size - sizeof(ccd_info_header)) == sizeof(ccd_info))) {
		ccd_info_version = ccd_info_header.ccd_version;
		memcpy(&ccd_info,
		       (uint8_t *)response +
		       sizeof(struct ccd_info_response_header),
		       sizeof(ccd_info));
		/*
		 * V1 CCD info structure has the capabilities bitmaps
		 * represented as a single little endian u64, whereas this
		 * utility expects it to be two big endian u32s. This function
		 * fixes the V1 representation.
		 */
		for (i = 0; i < ARRAY_SIZE(ccd_info.ccd_caps_current); i++) {
			ccd_info.ccd_caps_current[i] =
				htobe32(ccd_info.ccd_caps_current[i]);
			ccd_info.ccd_caps_defaults[i] =
				htobe32(ccd_info.ccd_caps_defaults[i]);
		}
	} else if (response_size == CCD_INFO_V0_SIZE) {
		ccd_info_version = 0; /* Default, Cr50 case. */
		memcpy(&ccd_info, response, sizeof(ccd_info));
	} else {
		fprintf(stderr, "Unexpected CCD info response size %zd\n",
			response_size);
		exit(update_error);
	}

	if (ccd_info_version >= ARRAY_SIZE(version_to_ccd)) {
		fprintf(stderr, "Unsupported CCD info version number %d\n",
			ccd_info_version);
		exit(update_error);
	}

	/* Convert it back to host endian format. */
	ccd_info.ccd_flags = be32toh(ccd_info.ccd_flags);
	for (i = 0; i < ARRAY_SIZE(ccd_info.ccd_caps_current); i++) {
		ccd_info.ccd_caps_current[i] =
			be32toh(ccd_info.ccd_caps_current[i]);
		ccd_info.ccd_caps_defaults[i] =
			be32toh(ccd_info.ccd_caps_defaults[i]);
	}

	/* Now report CCD state on the console. */
	printf("State: %s\n", ccd_info.ccd_state > ARRAY_SIZE(state_names) ?
	       "Error" : state_names[ccd_info.ccd_state]);
	printf("Password: %s\n", (ccd_info.ccd_indicator_bitmap &
		      CCD_INDICATOR_BIT_HAS_PASSWORD) ? "Set" : "None");
	printf("Flags: %#06x\n", ccd_info.ccd_flags);
	printf("Capabilities, current and default:\n");

	gsc_cap_count = version_to_ccd[ccd_info_version].cap_count;
	gsc_capability_info = version_to_ccd[ccd_info_version].info_table;
	name_column_width = longest_cap_name_len(gsc_capability_info,
						 gsc_cap_count) + 1;
	for (i = 0; i < gsc_cap_count; i++) {
		int is_enabled;
		int index;
		int shift;
		int cap_current;
		int cap_default;

		index = i / (32 / CCD_CAP_BITS);
		shift = (i % (32 / CCD_CAP_BITS)) * CCD_CAP_BITS;

		cap_current = (ccd_info.ccd_caps_current[index] >> shift)
							 & CCD_CAP_BITMASK;
		cap_default = (ccd_info.ccd_caps_defaults[index] >> shift)
							 & CCD_CAP_BITMASK;

		if (ccd_info.ccd_force_disabled) {
			is_enabled = 0;
		} else {
			switch (cap_current) {
			case CCD_CAP_STATE_ALWAYS:
				is_enabled = 1;
				break;
			case CCD_CAP_STATE_UNLESS_LOCKED:
				is_enabled = (ccd_info.ccd_state !=
					      CCD_STATE_LOCKED);
				break;
			default:
				is_enabled = (ccd_info.ccd_state ==
					      CCD_STATE_OPENED);
				break;
			}
		}

		printf("  ");
		print_aligned(gsc_capability_info[i].name, name_column_width);
		printf("%c %s",
		       is_enabled ? 'Y' : '-',
		       cap_state_names[cap_current]);

		if (cap_current != cap_default)
			printf("  (%s)", cap_state_names[cap_default]);

		printf("\n");

		if (is_enabled)
			caps_bitmap |= (1 << i);
	}
	printf("CCD caps bitmap: %#x\n", caps_bitmap);
	printf("Capabilities are %s.\n", (ccd_info.ccd_indicator_bitmap &
		 CCD_INDICATOR_BIT_ALL_CAPS_DEFAULT) ? "default" : "modified");
}

static void process_ccd_state(struct transfer_descriptor *td, int ccd_unlock,
			      int ccd_open, int ccd_lock, int ccd_info)
{
	uint8_t payload;
	 /* Max possible response size is when ccd_info is requested. */
	uint8_t response[sizeof(struct ccd_info_response_packet)];
	size_t response_size;
	int rv;

	if (ccd_unlock)
		payload = CCDV_UNLOCK;
	else if (ccd_open)
		payload = CCDV_OPEN;
	else if (ccd_lock)
		payload = CCDV_LOCK;
	else
		payload = CCDV_GET_INFO;

	response_size = sizeof(response);
	rv = send_vendor_command(td, VENDOR_CC_CCD,
				 &payload, sizeof(payload),
				 &response, &response_size);

	/*
	 * If password is required - try sending the same subcommand
	 * accompanied by user password.
	 */
	if (rv == VENDOR_RC_PASSWORD_REQUIRED)
		rv = common_process_password(td, payload);

	if (rv == VENDOR_RC_SUCCESS) {
		if (ccd_info)
			print_ccd_info(response, response_size);
		return;
	}

	if (rv != VENDOR_RC_IN_PROGRESS) {
		fprintf(stderr, "Error: rv %d, response %d\n",
			rv, response_size ? response[0] : 0);
		exit(update_error);
	}

	/*
	 * Physical presence process started, poll for the state the user
	 * asked for. Only two subcommands would return 'IN_PROGRESS'.
	 */
	if (ccd_unlock)
		poll_for_pp(td, VENDOR_CC_CCD, CCDV_PP_POLL_UNLOCK);
	else
		poll_for_pp(td, VENDOR_CC_CCD, CCDV_PP_POLL_OPEN);
}

static void process_wp(struct transfer_descriptor *td, enum wp_options wp)
{
	size_t response_size;
	uint8_t response;
	int rv = 0;

	response_size = sizeof(response);

	printf("Getting WP\n");

	if (wp == WP_ENABLE) {
		uint8_t command = WP_ENABLE;

		rv = send_vendor_command(td, VENDOR_CC_WP, &command,
					 sizeof(command),
					 &response, &response_size);
	} else {
		rv = send_vendor_command(td, VENDOR_CC_WP, NULL, 0,
					 &response, &response_size);
	}

	if (rv != VENDOR_RC_SUCCESS) {
		fprintf(stderr, "Error %d %sting write protect\n",
			rv, (wp == WP_ENABLE) ? "set" : "get");
		if (wp == WP_ENABLE) {
			fprintf(stderr,
				"Early Cr50 versions do not support setting WP"
				"\n");
		}
		exit(update_error);
	}
	if (response_size != sizeof(response)) {
		fprintf(stderr, "Unexpected response size %zd while getting "
			"write protect\n",
			response_size);
		exit(update_error);
	}

	printf("WP: %08x\n", response);
	printf("Flash WP: %s%s\n",
		response & WPV_FORCE ? "forced " : "",
		response & WPV_ENABLE ? "enabled" : "disabled");
	printf(" at boot: %s\n",
		!(response & WPV_ATBOOT_SET) ? "follow_batt_pres" :
		response & WPV_ATBOOT_ENABLE ? "forced enabled" :
		"forced disabled");
}

static int process_get_apro_hash(struct transfer_descriptor *td)
{
	size_t response_size;
	uint8_t response[SHA256_DIGEST_SIZE];
	const char * const desc = "getting apro hash";
	int rv = 0;
	int i;

	response_size = sizeof(response);

	rv = send_vendor_command(td, VENDOR_CC_GET_AP_RO_HASH, NULL, 0,
				 &response, &response_size);

	if (response_size == 1) {
		printf("get hash rc: %d ", response[0]);
		switch (response[0]) {
		case ARCVE_NOT_PROGRAMMED:
			printf("AP RO hash unprogrammed\n");
			return 0;
		case ARCVE_FLASH_READ_FAILED:
			printf("flash read failed\n");
			return 0;
		case ARCVE_BOARD_ID_BLOCKED:
			printf("board id blocked\n");
			return 0;
		default:
			fprintf(stderr, "unexpected error\n");
			return update_error;
		}
	} else if (rv != VENDOR_RC_SUCCESS) {
		fprintf(stderr, "Error %d %s\n", rv, desc);
		return update_error;
	} else if (response_size != SHA256_DIGEST_SIZE) {
		fprintf(stderr, "Error in the size of response, %zu.\n",
			response_size);
		return update_error;
	}
	printf("digest: ");
	for (i = 0; i < SHA256_DIGEST_SIZE; i++)
		printf("%x", response[i]);
	printf("\n");
	return 0;
}

static int process_start_apro_verify(struct transfer_descriptor *td)
{
	int rv = 0;

	rv = send_vendor_command(td, VENDOR_CC_AP_RO_VALIDATE, NULL, 0, NULL,
				 NULL);
	if (rv != VENDOR_RC_SUCCESS) {
		fprintf(stderr, "Error %d starting RO verify\n", rv);
		return update_error;
	}
	return 0;
}

static int process_get_apro_boot_status(struct transfer_descriptor *td)
{
	size_t response_size;
	uint8_t response;
	const char * const desc = "getting apro status";
	int rv = 0;

	response_size = sizeof(response);

	rv = send_vendor_command(td, VENDOR_CC_GET_AP_RO_STATUS, NULL, 0,
				 &response, &response_size);
	if (rv != VENDOR_RC_SUCCESS) {
		fprintf(stderr, "Error %d %s\n", rv, desc);
		return update_error;
	}
	if (response_size != 1) {
		fprintf(stderr, "Unexpected response size %zd while %s\n",
			response_size, desc);
		return update_error;
	}

	/* Print the response and meaning, as in 'enum ap_ro_status'. */
	printf("apro result (%d) : ", response);
	switch (response) {
	case AP_RO_NOT_RUN:
		printf("not run\n");
		break;
	case AP_RO_PASS:
	case AP_RO_V2_SUCCESS:
		printf("pass\n");
		break;
	case AP_RO_PASS_UNVERIFIED_GBB:
		printf("pass - unverified gbb!\n");
		break;
	case AP_RO_V2_NON_ZERO_GBB_FLAGS:
		printf("pass - except non-zero gbb flags!\n");
		break;
	case AP_RO_FAIL:
	case AP_RO_V2_FAILED_VERIFICATION:
		printf("FAIL\n");
		break;
	case AP_RO_UNSUPPORTED_TRIGGERED:
		printf("not supported\ntriggered: yes\n");
		break;
	case AP_RO_UNSUPPORTED_UNKNOWN:
		printf("not supported\ntriggered: unknown\n");
		break;
	case AP_RO_UNSUPPORTED_NOT_TRIGGERED:
		printf("not supported\ntriggered: no\n");
		break;
	case AP_RO_IN_PROGRESS:
		printf("in progress.");
		break;
	case AP_RO_V2_INCONSISTENT_GSCVD:
		printf("inconsistent gscvd\n");
		break;
	case AP_RO_V2_INCONSISTENT_KEYBLOCK:
		printf("inconsistent keyblock\n");
		break;
	case AP_RO_V2_INCONSISTENT_KEY:
		printf("inconsistent key\n");
		break;
	case AP_RO_V2_SPI_READ:
		printf("spi read failure\n");
		break;
	case AP_RO_V2_UNSUPPORTED_CRYPTO_ALGORITHM:
		printf("unsupported crypto algo\n");
		break;
	case AP_RO_V2_VERSION_MISMATCH:
		printf("header version mismatch\n");
		break;
	case AP_RO_V2_OUT_OF_MEMORY:
		printf("out of memory\n");
		break;
	case AP_RO_V2_INTERNAL:
		printf("internal\n");
		break;
	case AP_RO_V2_TOO_BIG:
		printf("too many areas\n");
		break;
	case AP_RO_V2_MISSING_GSCVD:
		printf("missing gscvd\n");
		break;
	case AP_RO_V2_BOARD_ID_MISMATCH:
		printf("board id mismatch\n");
		break;
	case AP_RO_V2_SETTING_NOT_PROVISIONED:
		printf("setting not provisioned\n");
		break;
	case AP_RO_V2_WRONG_ROOT_KEY:
		printf("key is recognized but disallowed (e.g. preMP key)\n");
		break;
	default:
		printf("unknown\n");
		fprintf(stderr, "unknown status\n");
		return update_error;
	}

	return 0;
}

static int process_arv_config_spi_addr_mode(struct transfer_descriptor *td,
					int arv_config_spi_addr_mode)
{
	enum ap_ro_config_spi_mode_e {
		ap_ro_spi_config_3byte = 0,
		ap_ro_spi_config_4byte = 1,
	};

	struct __attribute__((__packed__)) ap_ro_config_spi_mode_msg {
		uint8_t version;
		uint8_t command;
		uint8_t state;
		uint8_t mode;
	};

	struct ap_ro_config_spi_mode_msg msg = {
		.version = ARV_CONFIG_SETTING_CURRENT_VERSION,
		.command = arv_config_setting_command_spi_addressing_mode,
		.state = arv_config_setting_state_present,
		.mode = ap_ro_spi_config_4byte
	};
	size_t response_size = sizeof(msg);
	int rv = 0;

	switch (arv_config_spi_addr_mode) {
	case arv_config_spi_addr_mode_choice_get:
		rv = send_vendor_command(td, VENDOR_CC_GET_AP_RO_VERIFY_SETTING,
			&msg, sizeof(msg), &msg, &response_size);
		if (rv != VENDOR_RC_SUCCESS) {
			fprintf(stderr,
				"Error %d getting ap ro spi addr mode\n",
				rv);
			return update_error;
		}

		if (response_size != sizeof(msg)) {
			fprintf(stderr,
				"Error getting ap ro spi addr mode response\n");
			return update_error;
		}

		if (msg.state != arv_config_setting_state_present) {
			switch (msg.state) {
			case arv_config_setting_state_not_present:
				fprintf(stderr, "not provisioned\n");
				break;
			case arv_config_setting_state_corrupted:
				fprintf(stderr, "corrupted\n");
				break;
			case arv_config_setting_state_invalid:
				fprintf(stderr, "invalid\n");
				break;
			default:
				fprintf(stderr,
					"unexpected message response state\n");
				return update_error;
			}
			return 0;
		}

		switch (msg.mode) {
		case ap_ro_spi_config_3byte:
			fprintf(stderr, "3byte\n");
			break;
		case ap_ro_spi_config_4byte:
			fprintf(stderr, "4byte\n");
			break;
		default:
			fprintf(stderr, "unknown spi mode\n");
			return update_error;
		}

		break;
	case arv_config_spi_addr_mode_choice_set_3byte:
		msg.mode = ap_ro_spi_config_3byte;
		/* Fallthrough */
	case arv_config_spi_addr_mode_choice_set_4byte:
		/* The default is 4byte addressing */
		rv = send_vendor_command(td, VENDOR_CC_SET_AP_RO_VERIFY_SETTING,
			&msg, sizeof(msg), &msg, &response_size);
		if (rv != VENDOR_RC_SUCCESS) {
			fprintf(stderr,
				"Error %d setting ap ro spi addr mode\n", rv);
			return update_error;
		}
		break;
	default:
		return update_error;
	}

	return 0;
}

/*
 * Reads an ascii hex byte in the following forms:
 *  - 0x01
 *  - 0x1
 *  - 01
 *  - 0
 *
 * 1 is returned on success, 0 on failure.
 */
static int read_hex_byte_string(char *s, uint8_t *byte)
{
	uint8_t b = 0;

	if (!strncmp(s, "0x", 2))
		s += 2;

	if (strlen(s) == 0)
		return 0;

	for (const char *end = s + 2; s < end; ++s) {
		if (*s >= '0' && *s <= '9')
			b = b * 16 + *s - '0';
		else if (*s >= 'A' && *s <= 'F')
			b = b * 16 + 10 + *s - 'A';
		else if (*s >= 'a' && *s <= 'f')
			b = b * 16 + 10 + *s - 'a';
		else if (*s == '\0')
			/* Single nibble, do nothing instead of `break`
			 * to keep checkpatch happy
			 */
			;
		else
			/* Invalid nibble */
			return 0;
	}
	*byte = b;
	return 1;
}

static int parse_wpsrs(const char *opt, struct arv_config_wpds *wpds)
{
	size_t len = strlen(opt);
	char *ptr, *p, *delim = " ";
	uint8_t b;
	int rv = 0;
	struct arv_config_wpd *wpd;

	ptr = malloc(len + 1);
	strcpy(ptr, opt);
	p = strtok(ptr, delim);

	while (p != NULL) {
		if (read_hex_byte_string(p, &b)) {
			wpd = &wpds->data[rv / 2];
			if (rv % 2 == 0) {
				wpd->expected_value = b;
			} else {
				wpd->mask = b;
				wpd->state =
					arv_config_setting_state_present;
			}
			rv++;
		} else {
			break;
		}
		p = strtok(NULL, delim);
	}
	free(ptr);

	return rv;
}

static void print_wpd(size_t i, struct arv_config_wpd *wpd)
{
	if (wpd->state ==
			arv_config_setting_state_not_present) {
		printf("not provisioned");
		return;
	} else if (wpd->state ==
			arv_config_setting_state_corrupted) {
		printf("corrupted");
		return;
	} else if (wpd->state ==
			arv_config_setting_state_invalid) {
		printf("invalid");
		return;
	}

	printf("%zu: %02x & %02x",
		i,
		wpd->expected_value,
		wpd->mask);
}

static int process_arv_config_wpds(struct transfer_descriptor *td,
					enum arv_config_wpsr_choice_e choice,
					struct arv_config_wpds *wpds)
{
	struct __attribute__((__packed__)) arv_config_wpds_message {
		uint8_t version;
		/* See `arv_config_setting_command_e` */
		uint8_t command;
		struct arv_config_wpds wpds;
	};
	int rv = 0;

	struct arv_config_wpds_message msg = {
		.version = ARV_CONFIG_SETTING_CURRENT_VERSION,
		.command = arv_config_setting_command_write_protect_descriptors,
	};
	size_t response_size = sizeof(msg);

	if (choice == arv_config_wpsr_choice_get) {
		rv = send_vendor_command(td, VENDOR_CC_GET_AP_RO_VERIFY_SETTING,
			&msg, sizeof(msg), &msg, &response_size);
		if (rv != VENDOR_RC_SUCCESS) {
			fprintf(stderr,
				"Error %d getting ap ro write protect descriptors\n",
				rv);
			return update_error;
		}

		if (response_size != sizeof(msg)) {
			fprintf(stderr,
				"Error getting ap ro write protect descriptors response\n");
			return update_error;
		}

		if (msg.wpds.data[0].state ==
			arv_config_setting_state_present) {
			printf("expected values: ");
		}
		print_wpd(1, &msg.wpds.data[0]);
		if (msg.wpds.data[1].state !=
			arv_config_setting_state_not_present) {
			printf(", ");
			print_wpd(2, &msg.wpds.data[1]);
		}
		if (msg.wpds.data[2].state !=
			arv_config_setting_state_not_present) {
			printf(", ");
			print_wpd(3, &msg.wpds.data[2]);
		}

		printf("\n");
	} else if (choice == arv_config_wpsr_choice_set) {
		msg.wpds = *wpds;

		rv = send_vendor_command(td, VENDOR_CC_SET_AP_RO_VERIFY_SETTING,
			&msg, sizeof(msg), &msg, &response_size);
		if (rv != VENDOR_RC_SUCCESS) {
			fprintf(stderr,
				"Error %d setting ap ro write protect descriptors\n",
				rv);
			return update_error;
		}
	}

	return 0;
}

static int process_get_boot_mode(struct transfer_descriptor *td)
{
	size_t response_size;
	uint8_t response;
	const char * const desc = "Getting boot mode";
	int rv = 0;

	response_size = sizeof(response);

	rv = send_vendor_command(td, VENDOR_CC_GET_BOOT_MODE, NULL, 0,
				 &response, &response_size);
	if (rv != VENDOR_RC_SUCCESS) {
		fprintf(stderr, "Error %d in %s\n", rv, desc);
		return update_error;
	}
	if (response_size != 1) {
		fprintf(stderr, "Unexpected response size %zd while %s\n",
			response_size, desc);
		return update_error;
	}

	/* Print the response and meaning, as in 'enum boot_mode'. */
	printf("Boot mode = 0x%02x: ", response);
	switch (response) {
	case 0x00:
		printf("NORMAL\n");
		break;
	case 0x01:
		printf("NO_BOOT\n");
		break;
	default:
		fprintf(stderr, "unknown boot mode\n");
		return update_error;
	}

	return 0;
}

void process_bid(struct transfer_descriptor *td,
		 enum board_id_action bid_action,
		 struct board_id *bid,
		 bool show_machine_output)
{
	size_t response_size;

	if (bid_action == bid_get) {

		response_size = sizeof(*bid);
		send_vendor_command(td, VENDOR_CC_GET_BOARD_ID,
				    bid, sizeof(*bid),
				    bid, &response_size);

		if (response_size != sizeof(*bid)) {
			fprintf(stderr,
				"Error reading board ID: response size %zd, "
				"first byte %#02x\n",
				response_size,
				response_size ? *(uint8_t *)&bid : -1);
			exit(update_error);
		}

		if (show_machine_output) {
			print_machine_output(
				"BID_TYPE", "%08x", be32toh(bid->type));
			print_machine_output(
				"BID_TYPE_INV", "%08x", be32toh(bid->type_inv));
			print_machine_output(
				"BID_FLAGS", "%08x", be32toh(bid->flags));

			for (int i = 0; i < 4; i++) {
				if (!isupper(((const char *)bid)[i])) {
					print_machine_output(
						"BID_RLZ", "%s", "????");
					return;
				}
			}

			print_machine_output(
				"BID_RLZ", "%c%c%c%c",
				((const char *)bid)[0],
				((const char *)bid)[1],
				((const char *)bid)[2],
				((const char *)bid)[3]);
		} else {
			printf("Board ID space: %08x:%08x:%08x\n",
			       be32toh(bid->type),
			       be32toh(bid->type_inv),
			       be32toh(bid->flags));

		}

		return;
	}

	if (bid_action == bid_set) {
		/* Sending just two fields: type and flags. */
		uint32_t command_body[2];
		uint8_t response;

		command_body[0] = htobe32(bid->type);
		command_body[1] = htobe32(bid->flags);

		response_size = sizeof(command_body);
		send_vendor_command(td, VENDOR_CC_SET_BOARD_ID,
				    command_body, sizeof(command_body),
				    command_body, &response_size);

		/*
		 * Speculative assignment: the response is expected to be one
		 * byte in size and be placed in the first byte of the buffer.
		 */
		response = *((uint8_t *)command_body);

		if (response_size == 1) {
			if (!response)
				return; /* Success! */

			fprintf(stderr, "Error %d while setting board id\n",
				response);
		} else {
			fprintf(stderr, "Unexpected response size %zd"
				" while setting board id\n",
				response_size);
		}
		exit(update_error);
	}
}

static void process_sn_bits(struct transfer_descriptor *td,
			    uint8_t *sn_bits)
{
	int rv;
	uint8_t response_code;
	size_t response_size = sizeof(response_code);

	rv = send_vendor_command(td, VENDOR_CC_SN_SET_HASH,
				 sn_bits, SN_BITS_SIZE,
				 &response_code, &response_size);

	if (rv) {
		fprintf(stderr, "Error %d while sending vendor command\n", rv);
		exit(update_error);
	}

	if (response_size != 1) {
		fprintf(stderr,
			"Unexpected response size while setting sn bits\n");
		exit(update_error);
	}

	if (response_code != 0) {
		fprintf(stderr, "Error %d while setting sn bits\n",
			response_code);
		exit(update_error);
	}
}

static void process_sn_inc_rma(struct transfer_descriptor *td,
			       uint8_t arg)
{
	int rv;
	uint8_t response_code;
	size_t response_size = sizeof(response_code);

	rv = send_vendor_command(td, VENDOR_CC_SN_INC_RMA,
				 &arg, sizeof(arg),
				 &response_code, &response_size);
	if (rv) {
		fprintf(stderr, "Error %d while sending vendor command\n", rv);
		exit(update_error);
	}

	if (response_size != 1) {
		fprintf(stderr,
			"Unexpected response size while "
			"incrementing sn rma count\n");
		exit(update_error);
	}

	if (response_code != 0) {
		fprintf(stderr, "Error %d while incrementing rma count\n",
			response_code);
		exit(update_error);
	}
}

/* Get/Set the primary seed of the info1 manufacture state. */
static int process_endorsement_seed(struct transfer_descriptor *td,
				    const char *endorsement_seed_str)
{
	uint8_t endorsement_seed[32];
	uint8_t response_seed[32];
	size_t seed_size = sizeof(endorsement_seed);
	size_t response_size = sizeof(response_seed);
	size_t i;
	int rv;

	if (!endorsement_seed_str) {
		rv = send_vendor_command(td, VENDOR_CC_ENDORSEMENT_SEED, NULL,
					 0, response_seed, &response_size);
		if (rv) {
			fprintf(stderr, "Error sending vendor command %d\n",
				rv);
			return update_error;
		}
		printf("Endorsement key seed: ");
		for (i = 0; i < response_size; i++)
			printf("%02x", response_seed[i]);
		printf("\n");
		return 0;
	}
	if (seed_size * 2 != strlen(endorsement_seed_str)) {
		printf("Invalid seed %s\n", endorsement_seed_str);
		return update_error;
	}

	for (i = 0; i < seed_size; i++) {
		int nibble;
		char c;

		c = endorsement_seed_str[2 * i];
		nibble = from_hexascii(c);
		if (nibble < 0) {
			fprintf(stderr,	"Error: Non hex character in seed %c\n",
				c);
			return update_error;
		}
		endorsement_seed[i] = nibble << 4;

		c = endorsement_seed_str[2 * i + 1];
		nibble = from_hexascii(c);
		if (nibble < 0) {
			fprintf(stderr,	"Error: Non hex character in seed %c\n",
				c);
			return update_error;
		}
		endorsement_seed[i] |= nibble;
	}

	printf("Setting seed: %s\n", endorsement_seed_str);
	rv = send_vendor_command(td, VENDOR_CC_ENDORSEMENT_SEED,
				 endorsement_seed, seed_size,
				 response_seed, &response_size);
	if (rv == VENDOR_RC_NOT_ALLOWED) {
		fprintf(stderr, "Seed already set\n");
		return update_error;
	}
	if (rv) {
		fprintf(stderr, "Error sending vendor command %d\n", rv);
		return update_error;
	}
	printf("Updated endorsement key seed.\n");
	return 0;
}

/*
 * Retrieve the RMA authentication challenge from the Cr50, print out the
 * challenge on the console, then prompt the user for the authentication code,
 * and send the code back to Cr50. The Cr50 would report if the code matched
 * its expectations or not.
 */
static void process_rma(struct transfer_descriptor *td, const char *authcode)
{
	char rma_response[81];
	size_t response_size = sizeof(rma_response);
	size_t i;
	size_t auth_size = 0;

	if (!authcode) {
		send_vendor_command(td, VENDOR_CC_RMA_CHALLENGE_RESPONSE,
				    NULL, 0, rma_response, &response_size);

		if (response_size == 1) {
			fprintf(stderr, "error %d\n", rma_response[0]);
			if (td->ep_type == usb_xfer)
				shut_down(&td->uep);
			exit(update_error);
		}

		printf("Challenge:");
		for (i = 0; i < response_size; i++) {
			if (!(i % 5)) {
				if (!(i % 40))
					printf("\n");
				printf(" ");
			}
			printf("%c", rma_response[i]);
		}
		printf("\n");
		return;
	}

	if (!*authcode) {
		printf("Empty response.\n");
		exit(update_error);
		return;
	}

	if (!strcmp(authcode, "disable")) {
		printf("Invalid arg. Try using 'gsctool -F disable'\n");
		exit(update_error);
		return;
	}

	printf("Processing response...\n");
	auth_size = strlen(authcode);
	response_size = sizeof(rma_response);

	send_vendor_command(td, VENDOR_CC_RMA_CHALLENGE_RESPONSE,
			    authcode, auth_size,
			    rma_response, &response_size);

	if (response_size == 1) {
		fprintf(stderr, "\nrma unlock failed, code %d ",
			*rma_response);
		switch (*rma_response) {
		case VENDOR_RC_BOGUS_ARGS:
			fprintf(stderr, "(wrong authcode size)\n");
			break;
		case VENDOR_RC_INTERNAL_ERROR:
			fprintf(stderr, "(authcode mismatch)\n");
			break;
		default:
			fprintf(stderr, "(unknown error)\n");
			break;
		}
		if (td->ep_type == usb_xfer)
			shut_down(&td->uep);
		exit(update_error);
	}
	printf("RMA unlock succeeded.\n");
}

/*
 * Enable or disable factory mode. Factory mode will only be enabled if HW
 * write protect is removed.
 */
static void process_factory_mode(struct transfer_descriptor *td,
				 const char *arg)
{
	uint8_t rma_response;
	size_t response_size = sizeof(rma_response);
	char *cmd_str;
	int rv;
	uint16_t subcommand;

	if (!strcasecmp(arg, "disable")) {
		subcommand = VENDOR_CC_DISABLE_FACTORY;
		cmd_str = "dis";
	} else if (!strcasecmp(arg, "enable")) {
		subcommand = VENDOR_CC_RESET_FACTORY;
		cmd_str = "en";

	} else {
		fprintf(stderr, "Invalid factory mode arg %s", arg);
		exit(update_error);
	}

	printf("%sabling factory mode\n", cmd_str);
	rv = send_vendor_command(td, subcommand, NULL, 0, &rma_response,
		&response_size);
	if (rv) {
		fprintf(stderr, "Failed %sabling factory mode\nvc error "
			"%d\n", cmd_str, rv);
		if (response_size == 1)
			fprintf(stderr, "ec error %d\n", rma_response);
		exit(update_error);
	}
	printf("Factory %sable succeeded.\n", cmd_str);
}

static void report_version(void)
{
	/* Get version from the generated file, ignore the underscore prefix. */
	const char *v = strchr(VERSION, '_');

	printf("Version: %s, built on %s by %s\n", v ? v + 1 : "?",
	       DATE, BUILDER);
	exit(0);
}

/*
 * Either change or query TPM mode value.
 */
static int process_tpm_mode(struct transfer_descriptor *td,
				const char *arg)
{
	int rv;
	size_t command_size;
	size_t response_size;
	uint8_t response;
	uint8_t command_body;

	response_size = sizeof(response);
	if (!arg) {
		command_size = 0;
	} else if (!strcasecmp(arg, "disable")) {
		command_size = sizeof(command_body);
		command_body = (uint8_t) TPM_MODE_DISABLED;
	} else if (!strcasecmp(arg, "enable")) {
		command_size = sizeof(command_body);
		command_body = (uint8_t) TPM_MODE_ENABLED;
	} else {
		fprintf(stderr, "Invalid tpm mode arg: %s.\n", arg);
		return update_error;
	}

	rv = send_vendor_command(td, VENDOR_CC_TPM_MODE,
				&command_body, command_size,
				&response, &response_size);
	if (rv) {
		fprintf(stderr, "Error %d in setting TPM mode.\n", rv);
		return update_error;
	}
	if (response_size != sizeof(response)) {
		fprintf(stderr, "Error in the size of response,"
						" %zu.\n", response_size);
		return update_error;
	}
	if (response >= TPM_MODE_MAX) {
		fprintf(stderr, "Error in the value of response,"
						" %d.\n", response);
		return update_error;
	}

	printf("TPM Mode: %s (%d)\n", (response == TPM_MODE_DISABLED) ?
				"disabled" : "enabled", response);

	return rv;
}

#define MAX_PAYLOAD_SIZE 256
struct parsed_flog_entry {
	bool end_of_list;
	char payload[MAX_PAYLOAD_SIZE];
	size_t payload_size;
	uint64_t raw_timestamp;
	time_t timestamp;
	uint32_t event_type;
	bool timestamp_reliable;
};

static int pop_flog_dt(struct transfer_descriptor *td,
		       struct parsed_flog_entry *parsed_entry)
{
	union dt_entry_u entry;
	size_t resp_size = sizeof(entry);
	int rv = send_vendor_command(td, VENDOR_CC_POP_LOG_ENTRY_MS,
				     &parsed_entry->raw_timestamp,
				     sizeof(parsed_entry->raw_timestamp),
				     &entry, &resp_size);
	if (rv)
		return rv;
	if (resp_size == 0) {
		parsed_entry->end_of_list = true;
		return 0;
	}
	parsed_entry->event_type = entry.evt.event_type;
	parsed_entry->payload_size = MIN(entry.evt.size -
						sizeof(entry.evt.event_type),
					 MAX_PAYLOAD_SIZE);
	memcpy(parsed_entry->payload, entry.evt.payload,
	       parsed_entry->payload_size);
	parsed_entry->raw_timestamp = entry.evt.time;
	parsed_entry->timestamp =
	    (parsed_entry->raw_timestamp & ~(1ULL << 63)) / 1000;
	parsed_entry->timestamp_reliable =
	    (parsed_entry->raw_timestamp >> 63) == 0;
	return rv;

}

static int pop_flog(struct transfer_descriptor *td,
		    struct parsed_flog_entry *parsed_entry)
{
	union entry_u entry;
	size_t resp_size = sizeof(entry);
	uint32_t ts = (uint32_t) parsed_entry->raw_timestamp;
	int rv = send_vendor_command(td, VENDOR_CC_POP_LOG_ENTRY,
				     &ts, sizeof(ts),
				     &entry, &resp_size);
	if (rv)
		return rv;
	if (resp_size == 0) {
		parsed_entry->end_of_list = true;
		return 0;
	}
	parsed_entry->event_type = entry.r.type;
	parsed_entry->payload_size = MIN(FLASH_LOG_PAYLOAD_SIZE(entry.r.size),
					 MAX_PAYLOAD_SIZE);
	memcpy(parsed_entry->payload, entry.r.payload,
	       parsed_entry->payload_size);
	parsed_entry->raw_timestamp = entry.r.timestamp;
	parsed_entry->timestamp = entry.r.timestamp;
	parsed_entry->timestamp_reliable = true;
	return rv;

}

/*
 * Retrieve from H1 flash log entries which are newer than the passed in
 * timestamp.
 *
 * On error retry a few times just in case flash log is locked by a concurrent
 * access.
 */
static int process_get_flog(struct transfer_descriptor *td, uint64_t prev_stamp,
			    bool show_machine_output, bool is_dauntless)
{
	int rv;
	const int max_retries = 3;
	int retries = max_retries;
	bool time_zone_reported = false;

	while (retries--) {
		struct parsed_flog_entry entry = {0};
		entry.raw_timestamp = prev_stamp;
		size_t i;
		struct tm loc_time;
		char date_str[25];
		if (is_dauntless) {
			rv = pop_flog_dt(td, &entry);
		} else {
			rv = pop_flog(td, &entry);
		}

		if (rv) {
			/*
			 * Flash log could be momentarily locked by a
			 * concurrent access, let it settle and try again, 10
			 * ms should be enough.
			 */
			usleep(10 * 1000);
			continue;
		}

		if (entry.end_of_list)
			return 0;

		prev_stamp = entry.raw_timestamp;
		if  (show_machine_output) {
			printf("%10"PRIu64":%02x", prev_stamp, entry.event_type);
		} else {
			localtime_r(&entry.timestamp, &loc_time);

			if (!time_zone_reported) {
				strftime(date_str, sizeof(date_str), "%Z",
					 &loc_time);
				printf("Log time zone is %s\n", date_str);
				time_zone_reported = true;
			}

			/* Date format is MMM DD YY HH:mm:ss */
			strftime(date_str, sizeof(date_str), "%b %d %y %T",
				 &loc_time);
			printf("%s : %02x", date_str, entry.event_type);
		}
		for (i = 0; i < entry.payload_size; i++)
			printf(" %02x", entry.payload[i]);
		if (entry.timestamp_reliable == false)
			printf(" -- TIMESTAMP UNRELIABLE!");
		printf("\n");
		retries = max_retries;
	}

	fprintf(stderr, "%s: error %d\n", __func__, rv);

	return rv;
}

static int process_tstamp(struct transfer_descriptor *td,
			  const char *tstamp_ascii)
{
	char *e;
	size_t expected_response_size;
	size_t message_size;
	size_t response_size;
	uint32_t rv;
	uint32_t tstamp = 0;
	uint8_t max_response[sizeof(uint32_t)];

	if (tstamp_ascii) {
		tstamp = strtoul(tstamp_ascii, &e, 10);
		if (*e) {
			fprintf(stderr, "invalid base timestamp value \"%s\"\n",
				tstamp_ascii);
			return -1;
		}
		tstamp = htobe32(tstamp);
		expected_response_size = 0;
		message_size = sizeof(tstamp);
	} else {
		expected_response_size = 4;
		message_size = 0;
	}

	response_size = sizeof(max_response);
	rv = send_vendor_command(td, VENDOR_CC_FLOG_TIMESTAMP, &tstamp,
				 message_size, max_response, &response_size);

	if (rv) {
		fprintf(stderr, "error: return value %d\n", rv);
		return rv;
	}
	if (response_size != expected_response_size) {
		fprintf(stderr, "error: got %zd bytes, expected %zd\n",
			response_size, expected_response_size);
		return -1; /* Should never happen. */
	}

	if (response_size) {
		memcpy(&tstamp, max_response, sizeof(tstamp));
		printf("Current H1 time is %d\n", be32toh(tstamp));
	}
	return 0;
}

static int process_reboot_gsc(struct transfer_descriptor *td,
			size_t timeout_ms)
{
	/* Reboot timeout in milliseconds.
	 * Maximum value is 1000ms on Ti50.
	 */
	uint16_t msg = htobe16((uint16_t) timeout_ms);
	int rv = 0;

	rv = send_vendor_command(td, VENDOR_CC_IMMEDIATE_RESET, &msg,
				sizeof(msg), NULL, 0);
	if (rv != VENDOR_RC_SUCCESS) {
		fprintf(stderr,
			"Error %d sending immediate reset command\n",
			rv);
		return update_error;
	}

	return 0;
}

/*
 * Search the passed in zero terminated array of options_map structures for
 * option 'option'.
 *
 * If found - set the corresponding integer to 1 and return 1. If not found -
 * return 0.
 */
static int check_boolean(const struct options_map *omap, char option)
{
	do {
		if (omap->opt != option)
			continue;

		*omap->flag = 1;
		return 1;
	} while ((++omap)->opt);

	return 0;
}

/*
 * Set the long_opts table and short_opts string.
 *
 * This function allows to avoid maintaining two command line option
 * descriptions, for short and long forms.
 *
 * The long_opts table is built based on the cmd_line_options table contents,
 * and the short form is built based on the long_opts table contents.
 *
 * The 'required_argument' short options are followed by ':'.
 *
 * The passed in long_opts array and short_opts string are guaranteed to
 * accommodate all necessary objects/characters.
 */
static void set_opt_descriptors(struct option *long_opts, char *short_opts)
{
	size_t i;
	int j;

	for (i = j = 0; i < ARRAY_SIZE(cmd_line_options); i++) {
		long_opts[i] = cmd_line_options[i].opt;
		short_opts[j++] = long_opts[i].val;
		if (long_opts[i].has_arg == required_argument)
			short_opts[j++] = ':';
	}
}

/*
 * Find the long_opts table index where .val field is set to the passed in
 * short option value.
 */
static int get_longindex(int short_opt, const struct option *long_opts)
{
	int i;

	for (i = 0; long_opts[i].name; i++)
		if (long_opts[i].val == short_opt)
			return i;

	/*
	 * We could never come here as the short options list is compiled
	 * based on long options table.
	 */
	fprintf(stderr, "Command line error, parameter argument missing\n");
	exit(1);

	return -1; /* Not reached. */
}

/*
 * Combine searching for command line parameters and optional arguments.
 *
 * The canonical short options description string does not allow to specify
 * that a command line argument expects an optional parameter. but gsctool
 * users expect to be able to use the following styles for optional
 * parameters:
 *
 * a)   -x <param value>
 * b)  --x_long <param_value>
 * c)  --x_long=<param_value>
 *
 * Styles a) and b) are not supported standard getopt_long(), this function
 * adds ability to handle cases a) and b).
 */
static int getopt_all(int argc, char *argv[])
{
	int longindex = -1;
	static char short_opts[2 * ARRAY_SIZE(cmd_line_options)] = {};
	static struct option long_opts[ARRAY_SIZE(cmd_line_options) + 1] = {};
	int i;

	if (!short_opts[0])
		set_opt_descriptors(long_opts, short_opts);

	i = getopt_long(argc, argv, short_opts, long_opts, &longindex);
	if (i != -1) {

		if (longindex < 0) {
			/*
			 * longindex is not set, this must have been the short
			 * option case, Find the long_opts table index based
			 * on the short option value.
			 */
			longindex = get_longindex(i, long_opts);
		}

		if (long_opts[longindex].has_arg == optional_argument) {
			/*
			 * This command line option may include an argument,
			 * let's check if it is there as the next token in the
			 * command line.
			 */
			if (!optarg && argv[optind] && argv[optind][0] != '-')
				/* Yes, it is. */
				optarg = argv[optind++];
		}
	}

	return i;
}

static int get_crashlog(struct transfer_descriptor *td)
{
	uint32_t rv;
	uint8_t response[2048] = {0};
	size_t response_size = sizeof(response);

	rv = send_vendor_command(td, VENDOR_CC_GET_CRASHLOG, NULL, 0, response,
				 &response_size);
	if (rv != VENDOR_RC_SUCCESS) {
		printf("Get crash log failed. (%X)\n", rv);
		return 1;
	}

	for (size_t i = 0; i < response_size; i++) {
		if (i % 64 == 0 && i > 0)
			printf("\n");
		printf("%02x", response[i]);
	}
	printf("\n");
	return 0;
}

static int get_console_logs(struct transfer_descriptor *td)
{
	uint32_t rv;
	uint8_t response[2048] = {0};
	size_t response_size = sizeof(response);

	rv = send_vendor_command(td, VENDOR_CC_GET_CONSOLE_LOGS, NULL,
				 0, response, &response_size);
	if (rv != VENDOR_RC_SUCCESS) {
		printf("Get console logs failed. (%X)\n", rv);
		return 1;
	}

	printf("%s", response);
	printf("\n");
	return 0;
}

static int process_get_factory_config(struct transfer_descriptor *td)
{
	uint32_t rv;
	uint64_t response = 0;
	size_t response_size = sizeof(response);

	rv = send_vendor_command(td, VENDOR_CC_GET_FACTORY_CONFIG, NULL,
				 0, (uint8_t *) &response, &response_size);
	if (rv != VENDOR_RC_SUCCESS) {
		printf("Get factory config failed. (%X)\n", rv);
		return 1;
	}

	if (response_size < sizeof(uint64_t)) {
		printf("Unexpected response size. (%zu)", response_size);
		return 2;
	}

	uint64_t out = be64toh(response);

	printf("%"PRIX64"\n", out);
	return 0;
}

static int process_set_factory_config(struct transfer_descriptor *td,
				      uint64_t val)
{
	uint64_t val_be = htobe64(val);
	uint32_t rv;

	rv = send_vendor_command(td, VENDOR_CC_SET_FACTORY_CONFIG, &val_be,
				 sizeof(val_be), NULL, NULL);
	if (rv != VENDOR_RC_SUCCESS) {
		printf("Factory config failed. (%X)\n", rv);
		return 1;
	}

	return 0;
}


int main(int argc, char *argv[])
{
	struct transfer_descriptor td;
	int rv = 0;
	int errorcnt;
	uint8_t *data = 0;
	size_t data_len = 0;
	uint16_t vid = 0;
	uint16_t pid = 0;
	int i;
	size_t j;
	int transferred_sections = 0;
	int binary_vers = 0;
	int show_fw_ver = 0;
	int rma = 0;
	const char *rma_auth_code = "";
	int get_endorsement_seed = 0;
	const char *endorsement_seed_str = "";
	int corrupt_inactive_rw = 0;
	struct board_id bid;
	enum board_id_action bid_action;
	int password = 0;
	int ccd_open = 0;
	int ccd_unlock = 0;
	int ccd_lock = 0;
	int ccd_info = 0;
	int get_flog = 0;
	uint32_t prev_log_entry = 0;
	enum wp_options wp = WP_NONE;
	int get_boot_mode = 0;
	int try_all_transfer = 0;
	int tpm_mode = 0;
	int get_apro_hash = 0;
	int get_apro_boot_status = 0;
	int start_apro_verify = 0;
	bool show_machine_output = false;
	int tstamp = 0;
	const char *tstamp_arg = NULL;
	enum arv_config_spi_addr_mode_choice_e arv_config_spi_addr_mode =
		arv_config_spi_addr_mode_choice_none;
	enum arv_config_wpsr_choice_e arv_config_wpsr_choice =
		arv_config_wpsr_choice_none;
	struct arv_config_wpds arv_config_wpds = { 0 };

	const char *exclusive_opt_error =
		"Options -a, -s and -t are mutually exclusive\n";
	const char *openbox_desc_file = NULL;
	int factory_mode = 0;
	char *factory_mode_arg = "";
	char *tpm_mode_arg = NULL;
	char *serial = NULL;
	int sn_bits = 0;
	uint8_t sn_bits_arg[SN_BITS_SIZE];
	int sn_inc_rma = 0;
	uint8_t sn_inc_rma_arg = 0;
	int erase_ap_ro_hash = 0;
	int is_dauntless = 0;
	int set_capability = 0;
	const char *capability_parameter = "";
	bool reboot_gsc = false;
	size_t reboot_gsc_timeout = 0;
	int get_clog = 0;
	int get_console = 0;
	int factory_config = 0;
	int set_factory_config = 0;
	uint64_t factory_config_arg = 0;

	/*
	 * All options which result in setting a Boolean flag to True, along
	 * with addresses of the flags. Terminated by a zeroed entry.
	 */
	const struct options_map omap[] = {
		{ 'b', &binary_vers },
		{ 'c', &corrupt_inactive_rw },
		{ 'D', &is_dauntless },
		{ 'f', &show_fw_ver },
		{ 'g', &get_boot_mode},
		{ 'H', &erase_ap_ro_hash},
		{ 'k', &ccd_lock },
		{ 'o', &ccd_open },
		{ 'P', &password },
		{ 'p', &td.post_reset },
		{ 'U', &ccd_unlock },
		{ 'u', &td.upstart_mode },
		{ 'V', &verbose_mode },
		{},
	};

	/*
	 * Explicitly sets buffering type to line buffered so that output
	 * lines can be written to pipe instantly. This is needed when the
	 * cr50-verify-ro.sh execution in verify_ro is moved from crosh to
	 * debugd.
	 */
	setlinebuf(stdout);

	progname = strrchr(argv[0], '/');
	if (progname)
		progname++;
	else
		progname = argv[0];

	/* Usb transfer - default mode. */
	memset(&td, 0, sizeof(td));
	td.ep_type = usb_xfer;

	bid_action = bid_none;
	errorcnt = 0;
	opterr = 0;				/* quiet, you */

	while ((i = getopt_all(argc, argv)) != -1) {
		if (check_boolean(omap, i))
			continue;
		switch (i) {
		case 'A':
			get_apro_hash = 1;
			break;
		case 'a':
			if (td.ep_type) {
				errorcnt++;
				fprintf(stderr, "%s", exclusive_opt_error);
				break;
			}
			try_all_transfer = 1;
			/* Try dev_xfer first. */
			td.ep_type = dev_xfer;
			break;
		case 'B':
			if (optarg && !strcmp(optarg, "start"))
				start_apro_verify = 1;
			else
				get_apro_boot_status = 1;
			break;
		case 'C':
			if (optarg && !strncmp(optarg, "3byte", strlen(optarg)))
				arv_config_spi_addr_mode =
				arv_config_spi_addr_mode_choice_set_3byte;
			else if (optarg && !strncmp(optarg, "4byte",
					strlen(optarg)))
				arv_config_spi_addr_mode =
				arv_config_spi_addr_mode_choice_set_4byte;
			else
				arv_config_spi_addr_mode =
				arv_config_spi_addr_mode_choice_get;
			break;
		case 'd':
			if (!parse_vidpid(optarg, &vid, &pid)) {
				fprintf(stderr,
					"Invalid device argument: \"%s\"\n",
					optarg);
				errorcnt++;
			}
			break;
		case 'e':
			get_endorsement_seed = 1;
			endorsement_seed_str = optarg;
			break;
		case 'E':
			if (!optarg) {
				arv_config_wpsr_choice =
					arv_config_wpsr_choice_get;
			} else if (optarg && strlen(optarg) > 0) {
				arv_config_wpds.data[0].state =
					arv_config_setting_state_not_present;
				arv_config_wpds.data[1].state =
					arv_config_setting_state_not_present;
				arv_config_wpds.data[2].state =
					arv_config_setting_state_not_present;

				rv = parse_wpsrs(optarg, &arv_config_wpds);
				if (rv == 2 || rv == 4 || rv == 6) {
					arv_config_wpsr_choice =
					arv_config_wpsr_choice_set;
				} else {
					fprintf(stderr,
						"Invalid write protect descriptors "
						"hex string: \"%s\"\n",
						optarg);
					exit(update_error);
				}
			} else {
				fprintf(stderr,
					"Invalid the write protect descriptors "
					"hex string length\n");
				exit(update_error);
			}

			break;
		case 'F':
			factory_mode = 1;
			factory_mode_arg = optarg;
			break;
		case 'h':
			usage(errorcnt);
			break;
		case 'I':
			if (optarg) {
				set_capability = 1;
				capability_parameter = optarg;
				/* Supported on Dauntless only. */
				is_dauntless = 1;
			} else {
				ccd_info = 1;
			}
			break;
		case 'i':
			if (!parse_bid(optarg, &bid, &bid_action)) {
				fprintf(stderr,
					"Invalid board id argument: \"%s\"\n",
					optarg);
				errorcnt++;
			}
			break;
		case 'L':
			get_flog = 1;
			if (optarg)
				prev_log_entry = strtoul(optarg, NULL, 0);
			break;
		case 'l':
			get_console = 1;
			break;
		case 'M':
			show_machine_output = true;
			break;
		case 'm':
			tpm_mode = 1;
			tpm_mode_arg = optarg;
			break;
		case 'n':
			serial = optarg;
			break;
		case 'O':
			openbox_desc_file = optarg;
			break;
		case 'q':
			td.force_ro = 1;
			break;
		case 'r':
			rma = 1;
			rma_auth_code = optarg;
			break;
		case 'R':
			sn_inc_rma = 1;
			if (!parse_sn_inc_rma(optarg, &sn_inc_rma_arg)) {
				fprintf(stderr,
					"Invalid sn_rma_inc argument: \"%s\"\n",
					optarg);
				errorcnt++;
			}

			break;
		case 's':
			if (td.ep_type || try_all_transfer) {
				errorcnt++;
				fprintf(stderr, "%s", exclusive_opt_error);
				break;
			}
			td.ep_type = dev_xfer;
			break;
		case 'S':
			sn_bits = 1;
			if (!parse_sn_bits(optarg, sn_bits_arg)) {
				fprintf(stderr,
					"Invalid sn_bits argument: \"%s\"\n",
					optarg);
				errorcnt++;
			}

			break;
		case 't':
			if (td.ep_type || try_all_transfer) {
				errorcnt++;
				fprintf(stderr, "%s", exclusive_opt_error);
				break;
			}
			td.ep_type = ts_xfer;
			break;
		case 'T':
			tstamp = 1;
			tstamp_arg = optarg;
			break;
		case 'v':
			report_version();  /* This will call exit(). */
			break;
		case 'w':
			if (!optarg) {
				wp = WP_CHECK;
				break;
			}
			if (!strcasecmp(optarg, "enable")) {
				wp = WP_ENABLE;
				break;
			}
			fprintf(stderr, "Illegal wp option \"%s\"\n", optarg);
			errorcnt++;
			break;
		case 'x':
			get_clog = 1;
			break;
		case 'y':
			factory_config = 1;
			if (optarg) {
				set_factory_config = 1;
				factory_config_arg = strtoull(optarg, NULL, 16);
			}
			break;
		case 'z':
			reboot_gsc = true;
			/* Set a 1ms default reboot time to avoid libusb errors
			 * when the GSC resets too quickly.
			 */
			reboot_gsc_timeout = 1;
			if (optarg)
				reboot_gsc_timeout = strtoul(optarg, NULL, 0);
			break;
		case 0:				/* auto-handled option */
			break;
		case '?':
			if (optopt)
				fprintf(stderr, "Unrecognized option: -%c\n",
					optopt);
			else
				fprintf(stderr, "Unrecognized option: %s\n",
					argv[optind - 1]);
			errorcnt++;
			break;
		case ':':
			fprintf(stderr, "Missing argument to %s\n",
				argv[optind - 1]);
			errorcnt++;
			break;
		default:
			fprintf(stderr, "Internal error at %s:%d\n",
				__FILE__, __LINE__);
			exit(update_error);
		}
	}

	if (errorcnt)
		usage(errorcnt);

	/*
	 * If dauntless was explicitly asked for, then use it; otherwise default
	 * to haven. Note this may get overridden if the --image flag specifies
	 * a dauntless or haven image.
	 */
	image_magic = is_dauntless ? MAGIC_DAUNTLESS : MAGIC_HAVEN;

	if ((bid_action == bid_none) &&
		(arv_config_spi_addr_mode ==
			arv_config_spi_addr_mode_choice_none) &&
		(arv_config_wpsr_choice ==
			arv_config_wpsr_choice_none) &&
	    !ccd_info &&
	    !ccd_lock &&
	    !ccd_open &&
	    !ccd_unlock &&
	    !corrupt_inactive_rw &&
	    !get_apro_hash &&
	    !get_apro_boot_status &&
	    !get_boot_mode &&
	    !get_clog &&
	    !get_console &&
	    !get_flog &&
	    !get_endorsement_seed &&
	    !factory_config &&
	    !factory_mode &&
	    !erase_ap_ro_hash &&
	    !password &&
	    !reboot_gsc &&
	    !rma &&
	    !set_capability &&
	    !show_fw_ver &&
	    !sn_bits &&
	    !sn_inc_rma &&
	    !start_apro_verify &&
	    !openbox_desc_file &&
	    !tstamp &&
	    !tpm_mode &&
	    (wp == WP_NONE)) {
		if (optind >= argc) {
			fprintf(stderr,
				"\nERROR: Missing required <binary image>\n\n");
			usage(1);
		}

		data = get_file_or_die(argv[optind], &data_len);
		printf("read %zd(%#zx) bytes from %s\n",
		       data_len, data_len, argv[optind]);

		/* Validate image size and locate headers within image */
		if (!locate_headers(data, data_len))
			exit(update_error);

		if (!fetch_header_versions(data))
			exit(update_error);

		if (binary_vers)
			exit(show_headers_versions(data, show_machine_output));
	} else {
		if (optind < argc)
			printf("Ignoring binary image %s\n", argv[optind]);
	}

	/*
	 * If no usb device information was given, default to the using haven
	 * or dauntless vendor and product id to find the usb device.
	 */
	if (!serial && !vid && !pid) {
		vid = USB_VID_GOOGLE;
		/* Set default product id based on image type */
		pid = (image_magic == MAGIC_DAUNTLESS) ? D2_PID : H1_PID;
	}

	if (((bid_action != bid_none) + !!rma + !!password + !!ccd_open +
	     !!ccd_unlock + !!ccd_lock + !!ccd_info + !!get_flog +
	     !!get_boot_mode + !!openbox_desc_file + !!factory_mode +
	     (wp != WP_NONE) + !!get_endorsement_seed +
	     !!erase_ap_ro_hash + !!set_capability + !!get_clog +
	     !!get_console) > 1) {
		fprintf(stderr,
			"ERROR: options "
			"-e, -F, -g, -H, -I, -i, -k, -L, -l, -O, -o, -P, -r,"
			"-U, -x and -w are mutually exclusive\n");
		exit(update_error);
	}

	if (td.ep_type == usb_xfer) {
		if (usb_findit(serial, vid, pid, USB_SUBCLASS_GOOGLE_CR50,
			       USB_PROTOCOL_GOOGLE_CR50_NON_HC_FW_UPDATE,
			       &td.uep))
			exit(update_error);
	} else if (td.ep_type == dev_xfer) {
		td.tpm_fd = open("/dev/tpm0", O_RDWR);
		if (td.tpm_fd < 0) {
			if (!try_all_transfer) {
				perror("Could not open TPM");
				exit(update_error);
			}
			td.ep_type = ts_xfer;
		}
	}

	if (openbox_desc_file)
		return verify_ro(&td, openbox_desc_file, show_machine_output);

	if (ccd_unlock || ccd_open || ccd_lock || ccd_info)
		process_ccd_state(&td, ccd_unlock, ccd_open,
				  ccd_lock, ccd_info);

	if (set_capability)
		exit(process_set_capabililty(&td, capability_parameter));

	if (password)
		process_password(&td);

	if (bid_action != bid_none)
		process_bid(&td, bid_action, &bid, show_machine_output);

	if (get_endorsement_seed)
		exit(process_endorsement_seed(&td, endorsement_seed_str));

	if (rma)
		process_rma(&td, rma_auth_code);

	if (factory_mode)
		process_factory_mode(&td, factory_mode_arg);
	if (wp != WP_NONE)
		process_wp(&td, wp);

	if (corrupt_inactive_rw)
		invalidate_inactive_rw(&td);

	if (tpm_mode) {
		int rv = process_tpm_mode(&td, tpm_mode_arg);

		exit(rv);
	}

	if (tstamp)
		return process_tstamp(&td, tstamp_arg);

	if (sn_bits)
		process_sn_bits(&td, sn_bits_arg);

	if (sn_inc_rma)
		process_sn_inc_rma(&td, sn_inc_rma_arg);

	if (get_apro_hash)
		exit(process_get_apro_hash(&td));

	if (get_apro_boot_status)
		exit(process_get_apro_boot_status(&td));

	if (start_apro_verify)
		exit(process_start_apro_verify(&td));

	if (get_boot_mode)
		exit(process_get_boot_mode(&td));

	if (get_flog)
		process_get_flog(&td, prev_log_entry,
				 show_machine_output, is_dauntless);

	if (erase_ap_ro_hash)
		process_erase_ap_ro_hash(&td);

	if (arv_config_spi_addr_mode)
		exit(process_arv_config_spi_addr_mode(&td,
			arv_config_spi_addr_mode));

	if (arv_config_wpsr_choice)
		exit(process_arv_config_wpds(&td,
			arv_config_wpsr_choice,
			&arv_config_wpds));

	if (reboot_gsc)
		exit(process_reboot_gsc(&td, reboot_gsc_timeout));

	if (get_clog)
		exit(get_crashlog(&td));

	if (get_console)
		exit(get_console_logs(&td));

	if (factory_config) {
		if (set_factory_config)
			exit(process_set_factory_config(&td,
							factory_config_arg));
		else
			exit(process_get_factory_config(&td));
	}

	if (data || show_fw_ver) {

		setup_connection(&td);

		if (data) {
			transferred_sections = transfer_image(&td,
							      data, data_len);
			free(data);
		}

		/*
		 * Move USB updater sate machine to idle state so that vendor
		 * commands can be processed later, if any.
		 */
		if (td.ep_type == usb_xfer)
			send_done(&td.uep);

		if (transferred_sections)
			generate_reset_request(&td);

		if (show_fw_ver) {
			if (show_machine_output) {
				print_machine_output("RO_FW_VER", "%d.%d.%d",
						     targ.shv[0].epoch,
						     targ.shv[0].major,
						     targ.shv[0].minor);
				print_machine_output("RW_FW_VER", "%d.%d.%d",
						     targ.shv[1].epoch,
						     targ.shv[1].major,
						     targ.shv[1].minor);
			} else {
				printf("Current versions:\n");
				printf("RO %d.%d.%d\n", targ.shv[0].epoch,
				       targ.shv[0].major, targ.shv[0].minor);
				printf("RW %d.%d.%d\n", targ.shv[1].epoch,
				       targ.shv[1].major, targ.shv[1].minor);
			}
		}
	}

	if (td.ep_type == usb_xfer) {
		libusb_close(td.uep.devh);
		libusb_exit(NULL);
	}

	if (!transferred_sections)
		return noop;
	/*
	 * We should indicate if RO update was not done because of the
	 * insufficient RW version.
	 */
	for (j = 0; j < ARRAY_SIZE(sections); j++)
		if (sections[j].ustatus == not_possible) {
			/* This will allow scripting repeat attempts. */
			printf("Failed to update RO, run the command again\n");
			return rw_updated;
		}

	printf("image updated\n");
	return all_updated;
}