blob: ec8fb3f2d8270e6548815ee3e8b973b41a9b8f3c [file] [log] [blame]
/*
* Copyright (C) 2017 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <memory>
#include <vector>
#include <getopt.h>
#include <inttypes.h>
#include <openssl/sha.h>
#include <stdarg.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/stat.h>
/* From Nugget OS */
#include <application.h>
#include <app_nugget.h>
#include <citadel_events.h>
#include <flash_layout.h>
#include <signed_header.h>
#include <nos/AppClient.h>
#include <nos/NuggetClient.h>
#ifdef ANDROID
#include <nos/CitadeldProxyClient.h>
#endif
namespace {
using nos::AppClient;
using nos::NuggetClient;
using nos::NuggetClientInterface;
#ifdef ANDROID
using nos::CitadeldProxyClient;
#endif
enum hdr_section {
SEC_BOGUS = 0,
SEC_RO_A,
SEC_RO_B,
SEC_RW_A,
SEC_RW_B,
};
/* Global options */
struct options_s {
/* actions to take */
int version;
int long_version;
enum hdr_section section;
int file_version;
enum hdr_section file_section;
int id;
int repo_snapshot;
int stats;
int statsd;
int ro;
int rw;
int reboot;
int force_reset;
int enable_ro;
int enable_rw;
int change_pw;
uint32_t erase_code;
int ap_uart;
int selftest;
char **selftest_args;
/* generic connection options */
const char *device;
int suzyq;
int board_id;
int event;
char **board_id_args;
int console;
} options;
enum no_short_opts_for_these {
OPT_DEVICE = 1000,
OPT_ID,
OPT_REPO_SNAPSHOT,
OPT_STATS,
OPT_STATSD,
OPT_RO,
OPT_RW,
OPT_REBOOT,
OPT_FORCE_RESET,
OPT_ENABLE_RO,
OPT_ENABLE_RW,
OPT_CHANGE_PW,
OPT_ERASE,
OPT_AP_UART,
OPT_SELFTEST,
OPT_SUZYQ,
OPT_BOARD_ID,
OPT_EVENT,
};
const char *short_opts = ":hvlV:fF:c";
const struct option long_opts[] = {
/* name hasarg *flag val */
{"version", 0, NULL, 'v'},
{"long_version", 0, NULL, 'l'},
{"long-version", 0, NULL, 'l'},
{"id", 0, NULL, OPT_ID},
{"repo_snapshot", 0, NULL, OPT_REPO_SNAPSHOT},
{"repo-snapshot", 0, NULL, OPT_REPO_SNAPSHOT},
{"stats", 0, NULL, OPT_STATS},
{"statsd", 0, NULL, OPT_STATSD},
{"ro", 0, NULL, OPT_RO},
{"rw", 0, NULL, OPT_RW},
{"reboot", 0, NULL, OPT_REBOOT},
{"force_reset", 0, NULL, OPT_FORCE_RESET},
{"force-reset", 0, NULL, OPT_FORCE_RESET},
{"enable_ro", 0, NULL, OPT_ENABLE_RO},
{"enable-ro", 0, NULL, OPT_ENABLE_RO},
{"enable_rw", 0, NULL, OPT_ENABLE_RW},
{"enable-rw", 0, NULL, OPT_ENABLE_RW},
{"change_pw", 0, NULL, OPT_CHANGE_PW},
{"change-pw", 0, NULL, OPT_CHANGE_PW},
{"erase", 1, NULL, OPT_ERASE},
{"ap_uart", 0, NULL, OPT_AP_UART},
{"ap-uart", 0, NULL, OPT_AP_UART},
{"selftest", 0, NULL, OPT_SELFTEST},
{"suzyq", 0, NULL, OPT_SUZYQ},
{"board_id", 0, NULL, OPT_BOARD_ID},
{"event", 0, NULL, OPT_EVENT},
#ifndef ANDROID
{"device", 1, NULL, OPT_DEVICE},
#endif
{"help", 0, NULL, 'h'},
{NULL, 0, NULL, 0},
};
void usage(const char *progname)
{
fprintf(stderr, "\n");
fprintf(stderr,
"Usage: %s [actions] [image.bin]\n"
"\n"
"Citadel firmware boots in two stages. The first stage\n"
"bootloader (aka \"RO\") is provided by the SOC hardware team\n"
"and seldom changes. The application image (\"RW\") is invoked\n"
"by the RO image. There are two copies (A/B) of each stage,\n"
"so that the active copy can be protected while the unused\n"
"copy may be updated. At boot, the newer (valid) copy of each\n"
"stage is selected.\n"
"\n"
"The Citadel image file is the same size of the internal\n"
"flash, and contains all four firmware components (RO_A,\n"
"RW_A, RO_B, RW_B) located at the correct offsets. Only the\n"
"inactive copy (A/B) of each stage (RO/RW) can be modified.\n"
"The tool will update the correct copies automatically.\n"
"\n"
"You must specify the actions to perform. With no actions,\n"
"this help message is displayed.\n"
"\n"
"Actions:\n"
"\n"
" -v, --version Display the running version\n"
" -l, --long_version Display the full version info\n"
" --id Display the Citadel device ID\n"
" --stats Display Low Power stats\n"
" --statsd Display Low Power stats cached by citadeld\n"
"\n"
" -V SECTION Show Citadel headers for RO_A | RO_B | RW_A | RW_B\n"
" -f Show image file version info\n"
" -F SECTION Show file headers for RO_A | RO_B | RW_A | RW_B\n"
" --repo_snapshot Show the repo sha1sums for the running image\n"
"\n"
" --rw Update RW firmware from the image file\n"
" --ro Update RO firmware from the image file\n"
" --enable_ro Mark new RO image as good (requires password)\n"
" --enable_rw Mark new RW image as good (requires password)\n"
" --reboot Tell Citadel to reboot\n"
" --force_reset Pulse Citadel's reset line\n"
"\n"
" --change_pw Change the update password\n"
"\n"
" --ap_uart Query the AP UART passthru setting\n"
" (It can only be set in the BIOS)\n"
"\n"
" --erase=CODE Erase all user secrets and reboot.\n"
" This skips all other actions.\n"
"\n"
" --selftest [ARGS] Run one or more selftests. With no ARGS, it runs\n"
" a default suite. This command will consume all\n"
" following args, so run it alone for best results.\n"
"\n"
" --suzyq [0|1] Set the SuzyQable detection setting\n"
"\n"
" --board_id [TYPE FLAG] Get/Set board ID values\n"
"\n"
" --event [NUM] Get NUM pending event records (default 1)\n"
"\n"
#ifndef ANDROID
"\n"
"Options:\n"
"\n"
" --device=SN Connect to the FDTI device with the given\n"
" serial number (try \"lsusb -v\"). A default\n"
" can be specified with the CITADEL_DEVICE\n"
" environment variable.\n"
#endif
"\n",
progname);
}
/****************************************************************************/
/* Handy stuff */
#ifndef MIN
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#endif
int errorcnt;
void Error(const char *format, ...)
{
va_list ap;
va_start(ap, format);
fprintf(stderr, "ERROR: ");
vfprintf(stderr, format, ap);
fprintf(stderr, "\n");
va_end(ap);
errorcnt++;
}
/* Return true on APP_SUCESS, display error message if it's not */
int is_app_success(uint32_t retval)
{
if (retval == APP_SUCCESS)
return 1;
errorcnt++;
fprintf(stderr, "Error code 0x%x: ", retval);
switch (retval) {
case APP_ERROR_BOGUS_ARGS:
fprintf(stderr, "bogus args");
break;
case APP_ERROR_INTERNAL:
fprintf(stderr, "app is being stupid");
break;
case APP_ERROR_TOO_MUCH:
fprintf(stderr, "caller sent too much data");
break;
case APP_ERROR_IO:
fprintf(stderr, "problem sending or receiving data");
break;
case APP_ERROR_RPC:
fprintf(stderr, "problem during RPC communication");
break;
case APP_ERROR_CHECKSUM:
fprintf(stderr, "checksum failed");
break;
case APP_ERROR_BUSY:
fprintf(stderr, "the app is already working on a commnad");
break;
case APP_ERROR_TIMEOUT:
fprintf(stderr, "the app took too long to respond");
break;
default:
if (retval >= APP_SPECIFIC_ERROR &&
retval < APP_LINE_NUMBER_BASE) {
fprintf(stderr, "app-specific error #%d",
retval - APP_SPECIFIC_ERROR);
} else if (retval >= APP_LINE_NUMBER_BASE) {
fprintf(stderr, "error at line %d",
retval - APP_LINE_NUMBER_BASE);
} else {
fprintf(stderr, "unknown");
}
}
fprintf(stderr, "\n");
return 0;
}
/****************************************************************************/
std::vector<uint8_t> read_image_from_file(const char *name)
{
FILE *fp;
struct stat st;
fp = fopen(name, "rb");
if (!fp) {
perror("fopen");
Error("Can't open file %s", name);
return {};
}
if (fstat(fileno(fp), &st)) {
perror("fstat");
Error("Can't fstat file %s", name);
fclose(fp);
return {};
}
if (st.st_size != CHIP_FLASH_SIZE) {
Error("The firmware image must be exactly %d bytes",
CHIP_FLASH_SIZE);
fclose(fp);
return {};
}
std::vector<uint8_t> buf(st.st_size);
if (1 != fread(buf.data(), st.st_size, 1, fp)) {
perror("fread");
Error("Can't read %zd bytes", st.st_size);
fclose(fp);
return {};
}
fclose(fp);
buf.resize(st.st_size);
return buf;
}
uint32_t compute_digest(void *ptr, size_t len)
{
SHA_CTX ctx;
uint8_t digest[SHA_DIGEST_LENGTH];
uint32_t retval;
SHA1_Init(&ctx);
SHA1_Update(&ctx, ptr, len);
SHA1_Final(digest, &ctx);
memcpy(&retval, digest, sizeof(retval));
return retval;
}
uint32_t compute_fb_digest(struct nugget_app_flash_block *blk)
{
uint8_t *start_here = ((uint8_t *)blk) +
offsetof(struct nugget_app_flash_block, offset);
size_t size_to_hash = sizeof(*blk) -
offsetof(struct nugget_app_flash_block, offset);
return compute_digest(start_here, size_to_hash);
}
uint32_t try_update(AppClient &app, const std::vector<uint8_t> &image,
uint32_t offset, uint32_t imagesize)
{
uint32_t stop = offset + imagesize;
uint32_t rv;
printf("Updating image from 0x%05x to 0x%05x, size 0x%05x\n",
CHIP_FLASH_BASE + offset, CHIP_FLASH_BASE + stop, imagesize);
for (; offset < stop; offset += CHIP_FLASH_BANK_SIZE) {
int retries = 3;
std::vector<uint8_t> data(sizeof(struct nugget_app_flash_block));
struct nugget_app_flash_block *fb =
(struct nugget_app_flash_block*)data.data();
fb->offset = offset;
memcpy(fb->payload, image.data() + offset, CHIP_FLASH_BANK_SIZE);
fb->block_digest = compute_fb_digest(fb);
printf("writing 0x%05x / 0x%05x",
CHIP_FLASH_BASE + offset, CHIP_FLASH_BASE + stop);
do {
rv = app.Call(NUGGET_PARAM_FLASH_BLOCK, data, nullptr);
if (rv == NUGGET_ERROR_RETRY)
printf(" retrying");
} while (rv == NUGGET_ERROR_RETRY && retries--);
if (rv) {
if (rv == NUGGET_ERROR_LOCKED)
printf(" locked\n");
else
printf(" fail %d\n", rv);
break;
}
printf(" ok\n");
}
return rv;
}
uint32_t do_update(AppClient &app, const std::vector<uint8_t> &image,
uint32_t offset_A, uint32_t offset_B)
{
struct SignedHeader *hdr;
uint32_t rv_A, rv_B;
/* Try image A first */
hdr = (struct SignedHeader *)(image.data() + offset_A);
rv_A = try_update(app, image, offset_A, hdr->image_size);
/* If that worked, we're done */
if (rv_A == APP_SUCCESS) {
return rv_A;
}
/* Else try image B */
hdr = (struct SignedHeader *)(image.data() + offset_B);
rv_B = try_update(app, image, offset_B, hdr->image_size);
return rv_B;
}
uint32_t do_version(AppClient &app)
{
uint32_t retval;
std::vector<uint8_t> buffer;
buffer.reserve(512);
retval = app.Call(NUGGET_PARAM_VERSION, buffer, &buffer);
if (is_app_success(retval)) {
printf("%.*s\n", (int) buffer.size(), buffer.data());
}
return retval;
}
uint32_t do_id(AppClient &app)
{
uint32_t retval;
std::vector<uint8_t> buffer;
buffer.reserve(32);
retval = app.Call(NUGGET_PARAM_DEVICE_ID, buffer, &buffer);
if (is_app_success(retval)) {
printf("%.*s\n", (int) buffer.size(), buffer.data());
}
return retval;
}
uint32_t do_long_version(AppClient &app)
{
uint32_t retval;
std::vector<uint8_t> buffer;
buffer.reserve(1024);
retval = app.Call(NUGGET_PARAM_LONG_VERSION, buffer, &buffer);
if (is_app_success(retval)) {
printf("%.*s\n", (int)buffer.size(), buffer.data());
}
return retval;
}
static enum hdr_section parse_section(const char *str)
{
bool is_ro, is_a;
// matching this: /r?[ow]_?[ab]/i
if (tolower(*str) == 'r') {
str++;
}
if (tolower(*str) == 'o') {
is_ro = true;
} else if (tolower(*str) == 'w') {
is_ro = false;
} else {
Error("Invalid section \"%s\"", str);
return SEC_BOGUS;
}
str++;
if (*str == '_') {
str++;
}
if (tolower(*str) == 'a') {
is_a = true;
} else if (tolower(*str) == 'b') {
is_a = false;
} else {
Error("Invalid section \"%s\"", str);
return SEC_BOGUS;
}
if (is_ro) {
return is_a ? SEC_RO_A : SEC_RO_B;
}
return is_a ? SEC_RW_A : SEC_RW_B;
}
static void show_header(const uint8_t *ptr)
{
const struct SignedHeader *hdr;
hdr = reinterpret_cast<const struct SignedHeader*>(ptr);
hdr->print();
}
#define CROS_EC_VERSION_COOKIE1 0xce112233
#define CROS_EC_VERSION_COOKIE2 0xce445566
// The start of the RW sections looks like this
struct compiled_version_struct {
// The header comes first
const struct SignedHeader hdr;
// The the vector table. Citadel has 239 entries
uint32_t vectors[239];
// A magic number to be sure we're looking at the right thing
uint32_t cookie1;
// Then the short version string
char version[32];
// And another magic number
uint32_t cookie2;
};
static void show_ro_string(const char *name, const uint8_t *ptr)
{
const struct SignedHeader *hdr;
hdr = reinterpret_cast<const struct SignedHeader*>(ptr);
printf("%s: %d.%d.%d/%08x %s\n", name,
hdr->epoch_, hdr->major_, hdr->minor_, be32toh(hdr->img_chk_),
hdr->magic == SIGNED_HEADER_MAGIC_CITADEL ? "ok" : "--");
}
static void show_rw_string(const char *name, const uint8_t *ptr)
{
const struct compiled_version_struct *v;
v = reinterpret_cast<const struct compiled_version_struct*>(ptr);
if (v->cookie1 == CROS_EC_VERSION_COOKIE1 &&
v->cookie2 == CROS_EC_VERSION_COOKIE2 &&
(v->hdr.magic == SIGNED_HEADER_MAGIC_HAVEN ||
v->hdr.magic == SIGNED_HEADER_MAGIC_CITADEL)) {
printf("%s: %d.%d.%d/%s %s\n", name,
v->hdr.epoch_, v->hdr.major_, v->hdr.minor_, v->version,
v->hdr.magic == SIGNED_HEADER_MAGIC_CITADEL ? "ok" : "--");
} else {
printf("<invalid>\n");
}
}
uint32_t do_section(AppClient &app __attribute__((unused)))
{
uint16_t param;
switch (options.section) {
case SEC_RO_A:
param = NUGGET_PARAM_HEADER_RO_A;
break;
case SEC_RO_B:
param = NUGGET_PARAM_HEADER_RO_B;
break;
case SEC_RW_A:
param = NUGGET_PARAM_HEADER_RW_A;
break;
case SEC_RW_B:
param = NUGGET_PARAM_HEADER_RW_B;
break;
default:
return 1;
}
uint32_t retval;
std::vector<uint8_t> buffer;
buffer.reserve(sizeof(SignedHeader));
retval = app.Call(param, buffer, &buffer);
if (is_app_success(retval)) {
show_header(buffer.data());
}
return retval;
}
uint32_t do_file_version(const std::vector<uint8_t> &image)
{
show_ro_string("RO_A", image.data() + CHIP_RO_A_MEM_OFF);
show_ro_string("RO_B", image.data() + CHIP_RO_B_MEM_OFF);
show_rw_string("RW_A", image.data() + CHIP_RW_A_MEM_OFF);
show_rw_string("RW_B", image.data() + CHIP_RW_B_MEM_OFF);
return 0;
}
uint32_t do_file_section(const std::vector<uint8_t> &image)
{
switch (options.file_section) {
case SEC_RO_A:
show_header(image.data() + CHIP_RO_A_MEM_OFF);
break;
case SEC_RO_B:
show_header(image.data() + CHIP_RO_B_MEM_OFF);
break;
case SEC_RW_A:
show_header(image.data() + CHIP_RW_A_MEM_OFF);
break;
case SEC_RW_B:
show_header(image.data() + CHIP_RW_B_MEM_OFF);
break;
default:
return 1;
}
return 0;
}
uint32_t do_repo_snapshot(AppClient &app)
{
uint32_t retval;
std::vector<uint8_t> buffer;
buffer.reserve(2048);
retval = app.Call(NUGGET_PARAM_REPO_SNAPSHOT, buffer, &buffer);
if (is_app_success(retval)) {
printf("%.*s\n", (int)buffer.size(), buffer.data());
}
return retval;
}
uint32_t do_console(AppClient &app, int argc, char *argv[])
{
std::vector<uint8_t> buffer;
uint32_t rv;
size_t got;
if (options.console < argc) {
char *s = argv[options.console];
char c;
do {
c = *s++;
buffer.push_back(c);
} while (c);
}
do {
buffer.reserve(4096);
rv = app.Call(NUGGET_PARAM_CONSOLE, buffer, &buffer);
got = buffer.size();
if (is_app_success(rv)){
buffer.push_back('\0');
printf("%s", buffer.data());
}
buffer.resize(0);
} while (rv == APP_SUCCESS && got > 0);
return rv;
}
static void print_stats(const struct nugget_app_low_power_stats *s)
{
printf("hard_reset_count %" PRIu64 "\n", s->hard_reset_count);
printf("time_since_hard_reset %" PRIu64 "\n",
s->time_since_hard_reset);
printf("wake_count %" PRIu64 "\n", s->wake_count);
printf("time_at_last_wake %" PRIu64 "\n", s->time_at_last_wake);
printf("time_spent_awake %" PRIu64 "\n", s->time_spent_awake);
printf("deep_sleep_count %" PRIu64 "\n", s->deep_sleep_count);
printf("time_at_last_deep_sleep %" PRIu64 "\n",
s->time_at_last_deep_sleep);
printf("time_spent_in_deep_sleep %" PRIu64 "\n",
s->time_spent_in_deep_sleep);
if (s->time_at_ap_reset == UINT64_MAX)
printf("time_at_ap_reset 0x%" PRIx64 "\n", s->time_at_ap_reset);
else
printf("time_at_ap_reset %" PRIu64 "\n", s->time_at_ap_reset);
if (s->time_at_ap_bootloader_done == UINT64_MAX)
printf("time_at_ap_bootloader_done 0x%" PRIx64 "\n",
s->time_at_ap_bootloader_done);
else
printf("time_at_ap_bootloader_done %" PRIu64 "\n",
s->time_at_ap_bootloader_done);
}
uint32_t do_stats(AppClient &app)
{
struct nugget_app_low_power_stats stats;
std::vector<uint8_t> buffer;
uint32_t retval;
buffer.reserve(sizeof(stats));
retval = app.Call(NUGGET_PARAM_GET_LOW_POWER_STATS, buffer, &buffer);
if (is_app_success(retval)) {
if (buffer.size() < sizeof(stats)) { // old firmware?
fprintf(stderr, "# only got %zd / %zd bytes back\n",
buffer.size(), sizeof(stats));
memset(&stats, 0, sizeof(stats));
}
memcpy(&stats, buffer.data(), std::min(sizeof(stats), buffer.size()));
print_stats(&stats);
}
return retval;
}
#ifdef ANDROID
uint32_t do_statsd(CitadeldProxyClient &client)
{
struct nugget_app_low_power_stats stats;
std::vector<uint8_t> buffer;
buffer.reserve(sizeof(stats));
::android::binder::Status s = client.Citadeld().getCachedStats(&buffer);
if (s.isOk()) {
if (buffer.size() < sizeof(stats)) { // old citadeld?
fprintf(stderr, "# only got %zd / %zd bytes back\n",
buffer.size(), sizeof(stats));
memset(&stats, 0, sizeof(stats));
}
memcpy(&stats, buffer.data(), std::min(sizeof(stats), buffer.size()));
print_stats(&stats);
} else {
printf("ERROR: binder exception %d\n", s.exceptionCode());
return APP_ERROR_IO;
}
return 0;
}
#else
uint32_t do_statsd(NuggetClient &client)
{
Error("citadeld isn't attached to this interface");
return APP_ERROR_BOGUS_ARGS;
}
#endif
uint32_t do_reboot(AppClient &app)
{
uint32_t retval;
std::vector<uint8_t> ignored = {1}; // older images need this
retval = app.Call(NUGGET_PARAM_REBOOT, ignored, nullptr);
if (is_app_success(retval)) {
printf("Citadel reboot requested\n");
}
return retval;
}
static uint32_t do_change_pw(AppClient &app,
const char *old_pw, const char *new_pw)
{
std::vector<uint8_t> data(sizeof(struct nugget_app_change_update_password));
struct nugget_app_change_update_password *s =
(struct nugget_app_change_update_password*)data.data();
memset(s, 0xff, sizeof(*s));
if (old_pw && *old_pw) {
int len = strlen(old_pw);
memcpy(&s->old_password.password, old_pw, len);
s->old_password.digest =
compute_digest(&s->old_password.password,
sizeof(s->old_password.password));
}
if (new_pw && *new_pw) {
int len = strlen(new_pw);
memcpy(&s->new_password.password, new_pw, len);
s->new_password.digest =
compute_digest(&s->new_password.password,
sizeof(s->new_password.password));
}
uint32_t rv = app.Call(NUGGET_PARAM_CHANGE_UPDATE_PASSWORD, data, nullptr);
if (is_app_success(rv))
printf("Password changed\n");
return rv;
}
static uint32_t do_enable(AppClient &app, const char *pw)
{
std::vector<uint8_t> data(sizeof(struct nugget_app_enable_update));
struct nugget_app_enable_update *s =
(struct nugget_app_enable_update*)data.data();
std::vector<uint8_t> reply;
memset(&s->password, 0xff, sizeof(s->password));
if (pw && *pw) {
int len = strlen(pw);
memcpy(&s->password.password, pw, len);
s->password.digest =
compute_digest(&s->password.password,
sizeof(s->password.password));
}
s->which_headers = options.enable_ro ? NUGGET_ENABLE_HEADER_RO : 0;
s->which_headers |= options.enable_rw ? NUGGET_ENABLE_HEADER_RW : 0;
reply.reserve(1);
uint32_t rv = app.Call(NUGGET_PARAM_ENABLE_UPDATE, data, &reply);
if (is_app_success(rv))
/* Reply byte is true only if header was CHANGED to valid */
printf("Update %s enabled\n", reply[0] ? "changed to" : "is already");
return rv;
}
static uint32_t do_ap_uart(AppClient &app)
{
std::vector<uint8_t> buffer;
buffer.reserve(1);
static const char * const cfgstr[] = {
"disabled", "USB", "enabled", "SSC", "Citadel",
};
static_assert(sizeof(cfgstr)/sizeof(cfgstr[0]) == NUGGET_AP_UART_NUM_CFGS,
"Bad size of constant array");
uint32_t rv = app.Call(NUGGET_PARAM_AP_UART_PASSTHRU, buffer, &buffer);
if (is_app_success(rv))
printf("Current AP UART setting is %s\n", cfgstr[buffer[0]]);
return rv;
}
static uint32_t do_suzyq(AppClient &app, int argc, char *argv[])
{
int i, j;
std::vector<uint8_t> buffer;
for (i = options.suzyq; i < argc; i++) {
for (j = 0; argv[i][j]; j++) {
buffer.push_back(strtol(argv[i], NULL, 10));
}
}
buffer.reserve(1);
uint32_t rv = app.Call(NUGGET_PARAM_RDD_CFG, buffer, &buffer);
if (is_app_success(rv))
printf("Current SuzyQable detection setting is %d\n", buffer[0]);
return rv;
}
static void parse_hex_value(uint32_t *val, const char *str)
{
char *e = 0;
uint32_t tmp = strtoul(str, &e, 16);
if (e && *e)
Error("Invalid arg: \"%s\"", str);
else
*val = tmp;
}
static void show_board_id(const struct nugget_app_board_id *id)
{
printf("0x%08x 0x%08x 0x%08x # ", id->type, id->flag, id->inv);
if (id->type == 0xffffffff && id->flag == 0xffffffff &&
id->inv == 0xffffffff) {
printf("unset\n");
return;
}
if (id->type ^ ~id->inv) {
printf("corrupted\n");
return;
}
printf("%s, ", id->flag & 0x80 ? "MP" : "Pre-MP");
switch (id->flag & 0x7f) {
case 0x7f:
printf("DEVBOARD\n");
break;
case 0x7e:
printf("Proto1\n");
break;
case 0x7c:
printf("Proto2+\n");
break;
case 0x78:
printf("EVT1\n");
break;
case 0x70:
printf("EVT2+\n");
break;
case 0x60:
printf("DVT1\n");
break;
case 0x40:
printf("DVT2+\n");
break;
case 0x00:
printf("PVT/MP\n");
break;
default:
printf("(unknown)\n");
break;
}
}
static uint32_t do_board_id(AppClient &app, int argc, char *argv[])
{
uint32_t rv;
std::vector<uint8_t> request;
std::vector<uint8_t> response(sizeof(struct nugget_app_board_id));
struct nugget_app_board_id board_id;
char answer = 0;
// User must input both board_type and board_flag to make a set request
if (argc - options.board_id >= 2) {
uint32_t tmp = 0;
parse_hex_value(&tmp, argv[options.board_id]);
board_id.type = tmp;
parse_hex_value(&tmp, argv[options.board_id + 1]);
board_id.flag = tmp;
// optional third arg must equal ~type to avoid confirmation
if (argc - options.board_id > 2) {
parse_hex_value(&tmp, argv[options.board_id + 2]);
board_id.inv = tmp;
} else {
board_id.inv = ~board_id.type;
}
// Any problems parsing args?
if (errorcnt)
return errorcnt;
// Confirm unless correct type_inv arg is given
if (argc - options.board_id == 2 || board_id.type ^ ~board_id.inv) {
printf("\nWriting Board ID: ");
show_board_id(&board_id);
printf("\nWARNING: Setting board-id is irreversible!\n");
printf("Are you sure? (y/n) ");
fflush(stdout);
scanf(" %c", &answer);
if (answer != 'y'){
Error("Operation cancelled");
return errorcnt;
}
board_id.inv = ~board_id.type;
printf("\n");
}
request.resize(sizeof(board_id));
memcpy(request.data(), &board_id, sizeof(board_id));
}
rv = app.Call(NUGGET_PARAM_BOARD_ID, request, &response);
if (is_app_success(rv)) {
memcpy(&board_id, response.data(), sizeof(board_id));
show_board_id(&board_id);
}
return rv;
}
static uint32_t do_event(AppClient &app, int argc, char *argv[])
{
uint32_t rv;
int i, num = 1;
if (options.event < argc) {
num = atoi(argv[options.event]);
}
for (i = 0; i < num; i++) {
struct event_record evt;
std::vector<uint8_t> buffer;
buffer.reserve(sizeof(evt));
rv = app.Call(NUGGET_PARAM_GET_EVENT_RECORD, buffer, &buffer);
if (!is_app_success(rv)) {
// That check also displays any errors
break;
}
if (buffer.size() == 0) {
printf("-- no event_records --\n");
continue;
}
if (buffer.size() != sizeof(evt)) {
fprintf(stderr, "Error: expected %zd bytes, got %zd instead\n",
sizeof(evt), buffer.size());
rv = 1;
break;
}
/* We got an event, let's show it */
memcpy(&evt, buffer.data(), sizeof(evt));
uint64_t secs = evt.uptime_usecs / 1000000UL;
uint64_t usecs = evt.uptime_usecs - (secs * 1000000UL);
printf("event record %" PRIu64 "/%" PRIu64 ".%06" PRIu64 ": ",
evt.reset_count, secs, usecs);
printf("%d 0x%08x 0x%08x 0x%08x\n", evt.id,
evt.u.raw.w[0], evt.u.raw.w[1], evt.u.raw.w[2]);
}
return rv;
}
static uint32_t do_erase(AppClient &app)
{
std::vector<uint8_t> data(sizeof(uint32_t));
memcpy(data.data(), &options.erase_code, data.size());
uint32_t rv = app.Call(NUGGET_PARAM_NUKE_FROM_ORBIT, data, nullptr);
if (is_app_success(rv))
printf("Citadel erase and reboot requested\n");
return rv;
}
#define MAX_SELFTEST_REPLY_LEN 4096
static uint32_t do_selftest(AppClient &app, int argc, char *argv[])
{
int i, j;
uint32_t rv;
std::vector<uint8_t> data;
/* Copy all the args to send, including their terminating '\0' */
for (i = options.selftest; i < argc; i++) {
for (j = 0; argv[i][j]; j++) {
data.push_back(argv[i][j]);
}
data.push_back('\0');
}
/* Send args, get reply */
data.reserve(MAX_SELFTEST_REPLY_LEN);
rv = app.Call(NUGGET_PARAM_SELFTEST, data, &data);
if (is_app_success(rv)) {
/* Make SURE it's null-terminated */
size_t len = data.size();
if (len) {
data[len - 1] = '\0';
printf("%s\n", data.data());
}
}
return rv;
}
// This is currently device-specific, but could be abstracted further
#ifdef ANDROID
static uint32_t do_force_reset(CitadeldProxyClient &client)
{
bool b = false;
return !client.Citadeld().reset(&b).isOk();
}
#else
static uint32_t do_force_reset(NuggetClient &client)
{
struct nos_device *d = client.Device();
return d->ops.reset(d->ctx);
}
#endif
int execute_commands(const std::vector<uint8_t> &image,
const char *old_passwd, const char *passwd,
int argc, char *argv[])
{
#ifdef ANDROID
CitadeldProxyClient client;
#else
NuggetClient client(options.device ? options.device : "");
#endif
client.Open();
if (!client.IsOpen()) {
Error("Unable to connect");
return 1;
}
AppClient app(client, APP_ID_NUGGET);
/* Try all requested actions in reasonable order, bail out on error */
if (options.ap_uart &&
do_ap_uart(app) != APP_SUCCESS) {
return 1;
}
if (options.erase_code) { /* zero doesn't count */
/* whether we succeed or not, only do this */
return do_erase(app);
}
if (options.version &&
do_version(app) != APP_SUCCESS) {
return 2;
}
if (options.long_version &&
do_long_version(app) != APP_SUCCESS) {
return 2;
}
if (options.section &&
do_section(app) != APP_SUCCESS) {
return 2;
}
if (options.file_version &&
do_file_version(image) != APP_SUCCESS) {
return 2;
}
if (options.file_section &&
do_file_section(image) != APP_SUCCESS) {
return 2;
}
if (options.id &&
do_id(app) != APP_SUCCESS) {
return 2;
}
if (options.stats &&
do_stats(app) != APP_SUCCESS) {
return 2;
}
if (options.statsd &&
do_statsd(client) != APP_SUCCESS) {
return 2;
}
if (options.repo_snapshot &&
do_repo_snapshot(app) != APP_SUCCESS) {
return 2;
}
if (options.rw &&
do_update(app, image,
CHIP_RW_A_MEM_OFF, CHIP_RW_B_MEM_OFF) != APP_SUCCESS) {
return 3;
}
if (options.ro &&
do_update(app, image,
CHIP_RO_A_MEM_OFF, CHIP_RO_B_MEM_OFF) != APP_SUCCESS) {
return 4;
}
if (options.change_pw &&
do_change_pw(app, old_passwd, passwd) != APP_SUCCESS)
return 5;
if ((options.enable_ro || options.enable_rw) &&
do_enable(app, passwd) != APP_SUCCESS)
return 6;
if (options.reboot &&
do_reboot(app) != APP_SUCCESS) {
return 7;
}
if (options.selftest &&
do_selftest(app, argc, argv) != APP_SUCCESS) {
return 1;
}
if (options.force_reset &&
do_force_reset(client) != APP_SUCCESS) {
return 1;
}
if (options.suzyq &&
do_suzyq(app, argc, argv) != APP_SUCCESS) {
return 1;
}
if (options.board_id &&
do_board_id(app, argc, argv) != APP_SUCCESS) {
return 1;
}
if (options.console &&
do_console(app, argc, argv) != APP_SUCCESS) {
return 1;
}
if (options.event &&
do_event(app, argc, argv) != APP_SUCCESS) {
return 1;
}
return 0;
}
} // namespace
int main(int argc, char *argv[])
{
int i;
int idx = 0;
char *this_prog;
char *old_passwd = 0;
char *passwd = 0;
std::vector<uint8_t> image;
int got_action = 0;
char *e = 0;
int need_file = 0;
this_prog= strrchr(argv[0], '/');
if (this_prog) {
this_prog++;
} else {
this_prog = argv[0];
}
#ifndef ANDROID
options.device = secure_getenv("CITADEL_DEVICE");
if (options.device)
fprintf(stderr, "-- $CITADEL_DEVICE=%s --\n", options.device);
#endif
opterr = 0; /* quiet, you */
while ((i = getopt_long(argc, argv,
short_opts, long_opts, &idx)) != -1) {
switch (i) {
/* program-specific options */
case 'v':
options.version = 1;
got_action = 1;
break;
case 'l':
options.long_version = 1;
got_action = 1;
break;
case 'V':
options.section = parse_section(optarg);
got_action = 1;
break;
case 'c':
options.console = optind;
got_action = 1;
break;
case 'f':
options.file_version = 1;
need_file = 1;
got_action = 1;
break;
case 'F':
options.file_section = parse_section(optarg);
need_file = 1;
got_action = 1;
break;
case OPT_ID:
options.id = 1;
got_action = 1;
break;
case OPT_REPO_SNAPSHOT:
options.repo_snapshot = 1;
got_action = 1;
break;
case OPT_STATS:
options.stats = 1;
got_action = 1;
break;
case OPT_STATSD:
options.statsd = 1;
got_action = 1;
break;
case OPT_RO:
options.ro = 1;
need_file = 1;
got_action = 1;
break;
case OPT_RW:
options.rw = 1;
need_file = 1;
got_action = 1;
break;
case OPT_REBOOT:
options.reboot = 1;
got_action = 1;
break;
case OPT_FORCE_RESET:
options.force_reset = 1;
got_action = 1;
break;
case OPT_ENABLE_RO:
options.enable_ro = 1;
got_action = 1;
break;
case OPT_ENABLE_RW:
options.enable_rw = 1;
got_action = 1;
break;
case OPT_CHANGE_PW:
options.change_pw = 1;
got_action = 1;
break;
case OPT_ERASE:
options.erase_code = (uint32_t)strtoul(optarg, &e, 0);
if (!*optarg || (e && *e)) {
Error("Invalid argument: \"%s\"\n", optarg);
}
got_action = 1;
break;
case OPT_AP_UART:
options.ap_uart = 1;
got_action = 1;
break;
case OPT_SUZYQ:
options.suzyq = optind;
got_action = 1;
break;
case OPT_BOARD_ID:
options.board_id = optind;
options.board_id_args = argv;
got_action = 1;
break;
case OPT_EVENT:
options.event = optind;
got_action = 1;
break;
case OPT_SELFTEST:
options.selftest = optind;
options.selftest_args = argv;
got_action = 1;
break;
/* generic options below */
case OPT_DEVICE:
options.device = optarg;
break;
case 'h':
usage(this_prog);
return 0;
case 0:
break;
case '?':
if (optopt)
Error("Unrecognized options: -%c", optopt);
else
Error("Unrecognized options: %s",
argv[optind - 1]);
usage(this_prog);
break;
case ':':
Error("Missing argument to %s", argv[optind - 1]);
break;
default:
Error("Internal error at %s:%d", __FILE__, __LINE__);
exit(1);
}
}
if (errorcnt) {
goto out;
}
if (!got_action) {
usage(this_prog);
goto out;
}
if (need_file) {
if (optind < argc) {
/* Sets errorcnt on failure */
image = read_image_from_file(argv[optind++]);
if (errorcnt)
goto out;
} else {
Error("Missing required image file");
goto out;
}
}
if (options.change_pw) {
/* one arg provided, maybe the old password isn't set */
if (optind < argc) {
passwd = argv[optind++];
} else {
Error("Need a new password at least. Use '' to clear it.");
goto out;
}
/* two args provided, use both old & new passwords */
if (optind < argc) {
old_passwd = passwd;
passwd = argv[optind++];
}
}
if ((options.enable_ro || options.enable_rw) && !passwd) {
if (optind < argc)
passwd = argv[optind++];
else {
Error("Need a password to enable images. Use '' if none.");
goto out;
}
}
/* Okay, let's do it! */
(void) execute_commands(image, old_passwd, passwd, argc, argv);
/* This is the last action, so fall through either way */
out:
return !!errorcnt;
}