blob: ebefe5170036748519c333bf4e80815637bcdc30 [file] [log] [blame]
/*
* Copyright 2017 Richard Hughes <richard@hughsie.com>
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#define G_LOG_DOMAIN "FuMain"
#include "config.h"
#include <curl/curl.h>
#include <glib/gi18n.h>
#include <unistd.h>
#include <xmlb.h>
#include "fu-console.h"
#include "fu-util-common.h"
static gchar *
fu_util_remote_to_string(FwupdRemote *remote, guint idt);
static gchar *
fu_util_release_to_string(FwupdRelease *rel, guint idt);
static gchar *
fu_util_convert_description(const gchar *xml, GError **error);
gchar *
fu_console_color_format(const gchar *text, FuConsoleColor fg_color) /* nocheck:name */
{
if (g_getenv("NO_COLOR") != NULL)
return g_strdup(text);
return g_strdup_printf("\033[%um\033[1m%s\033[0m", fg_color, text);
}
typedef struct {
FwupdClient *client;
FuConsole *console;
} FuUtilPrintTreeHelper;
static gboolean
fu_util_traverse_tree(FuUtilNode *n, gpointer data)
{
FuUtilPrintTreeHelper *helper = (FuUtilPrintTreeHelper *)data;
guint idx = g_node_depth(n) - 1;
g_autofree gchar *tmp = NULL;
g_auto(GStrv) split = NULL;
/* get split lines */
if (FWUPD_IS_DEVICE(n->data)) {
FwupdDevice *dev = FWUPD_DEVICE(n->data);
tmp = fu_util_device_to_string(helper->client, dev, idx);
} else if (FWUPD_IS_REMOTE(n->data)) {
FwupdRemote *remote = FWUPD_REMOTE(n->data);
tmp = fu_util_remote_to_string(remote, idx);
} else if (FWUPD_IS_RELEASE(n->data)) {
FwupdRelease *release = FWUPD_RELEASE(n->data);
tmp = fu_util_release_to_string(release, idx);
g_info("%s", tmp);
}
/* root node */
if (n->parent == NULL && g_getenv("FWUPD_VERBOSE") == NULL) {
g_autofree gchar *str =
g_strdup_printf("%s %s",
fwupd_client_get_host_vendor(helper->client),
fwupd_client_get_host_product(helper->client));
fu_console_print_literal(helper->console, str);
fu_console_print_literal(helper->console, "│");
return FALSE;
}
if (n->parent == NULL)
return FALSE;
if (tmp == NULL)
return FALSE;
split = g_strsplit(tmp, "\n", -1);
for (guint i = 0; split[i] != NULL; i++) {
g_autoptr(GString) str = g_string_new(NULL);
/* header */
if (i == 0) {
if (g_node_next_sibling(n) == NULL)
g_string_prepend(str, "└─");
else
g_string_prepend(str, "├─");
/* properties */
} else {
g_string_prepend(str, n->children == NULL ? " " : " │");
g_string_prepend(str, g_node_next_sibling(n) == NULL ? " " : "│");
g_string_append(str, " ");
}
/* ancestors */
for (GNode *c = n->parent; c != NULL && c->parent != NULL; c = c->parent) {
if (g_node_next_sibling(c) != NULL || idx == 0) {
g_string_prepend(str, "│ ");
continue;
}
g_string_prepend(str, " ");
}
/* empty line */
if (split[i][0] == '\0') {
fu_console_print_literal(helper->console, str->str);
continue;
}
/* dump to the console */
g_string_append(str, split[i] + (idx * 2));
fu_console_print_literal(helper->console, str->str);
}
return FALSE;
}
static gboolean
fu_util_free_tree_cb(FuUtilNode *n, gpointer data)
{
if (n->data != NULL)
g_object_unref(n->data);
return FALSE;
}
void
fu_util_free_node(FuUtilNode *n)
{
g_node_traverse(n, G_POST_ORDER, G_TRAVERSE_ALL, -1, fu_util_free_tree_cb, NULL);
g_node_destroy(n);
}
void
fu_util_print_node(FuConsole *console, FwupdClient *client, FuUtilNode *n)
{
FuUtilPrintTreeHelper helper = {.client = client, .console = console};
g_node_traverse(n, G_PRE_ORDER, G_TRAVERSE_ALL, -1, fu_util_traverse_tree, &helper);
}
static gboolean
fu_util_is_interesting_child(GPtrArray *devs, FwupdDevice *dev)
{
for (guint i = 0; i < devs->len; i++) {
FwupdDevice *child = g_ptr_array_index(devs, i);
if (fwupd_device_get_parent(child) != dev)
continue;
if (fu_util_is_interesting_device(devs, child))
return TRUE;
}
return FALSE;
}
gboolean
fu_util_is_interesting_device(GPtrArray *devs, FwupdDevice *dev)
{
if (fwupd_device_has_flag(dev, FWUPD_DEVICE_FLAG_UPDATABLE))
return TRUE;
if (fwupd_device_get_update_error(dev) != NULL)
return TRUE;
if (fwupd_device_get_version(dev) != NULL)
return TRUE;
/* device not plugged in, get-details */
if (fwupd_device_get_flags(dev) == 0)
return TRUE;
if (fu_util_is_interesting_child(devs, dev))
return TRUE;
return FALSE;
}
gchar *
fu_util_get_user_cache_path(const gchar *fn)
{
const gchar *root = g_get_user_cache_dir();
g_autofree gchar *basename = g_path_get_basename(fn);
g_autofree gchar *cachedir_legacy = NULL;
/* if run from a systemd unit, use the cache directory set there */
if (g_getenv("CACHE_DIRECTORY") != NULL)
root = g_getenv("CACHE_DIRECTORY");
/* return the legacy path if it exists rather than renaming it to
* prevent problems when using old and new versions of fwupd */
cachedir_legacy = g_build_filename(root, "fwupdmgr", NULL);
if (g_file_test(cachedir_legacy, G_FILE_TEST_IS_DIR))
return g_build_filename(cachedir_legacy, basename, NULL);
return g_build_filename(root, "fwupd", basename, NULL);
}
static gboolean
fu_util_update_shutdown(GError **error)
{
g_autoptr(GDBusConnection) connection = NULL;
g_autoptr(GVariant) val = NULL;
connection = g_bus_get_sync(G_BUS_TYPE_SYSTEM, NULL, error);
if (connection == NULL)
return FALSE;
#ifdef HAVE_LOGIND
/* shutdown using logind */
val = g_dbus_connection_call_sync(connection,
"org.freedesktop.login1",
"/org/freedesktop/login1",
"org.freedesktop.login1.Manager",
"PowerOff",
g_variant_new("(b)", TRUE),
NULL,
G_DBUS_CALL_FLAGS_NONE,
-1,
NULL,
error);
#else
g_set_error_literal(error,
FWUPD_ERROR,
FWUPD_ERROR_NOT_SUPPORTED,
"No way to perform the operation");
#endif
return val != NULL;
}
static gboolean
fu_util_update_reboot(GError **error)
{
g_autoptr(GDBusConnection) connection = NULL;
g_autoptr(GVariant) val = NULL;
connection = g_bus_get_sync(G_BUS_TYPE_SYSTEM, NULL, error);
if (connection == NULL)
return FALSE;
#ifdef HAVE_LOGIND
/* reboot using logind */
val = g_dbus_connection_call_sync(connection,
"org.freedesktop.login1",
"/org/freedesktop/login1",
"org.freedesktop.login1.Manager",
"Reboot",
g_variant_new("(b)", TRUE),
NULL,
G_DBUS_CALL_FLAGS_NONE,
-1,
NULL,
error);
#else
g_set_error_literal(error,
FWUPD_ERROR,
FWUPD_ERROR_NOT_SUPPORTED,
"No way to perform the operation");
#endif
return val != NULL;
}
static gchar *
fu_util_get_release_description_with_fallback(FwupdRelease *rel)
{
g_autoptr(GString) str = g_string_new(NULL);
/* add what we've got from the vendor */
if (fwupd_release_get_description(rel) != NULL)
g_string_append(str, fwupd_release_get_description(rel));
/* add this client side to get the translations */
if (fwupd_release_has_flag(rel, FWUPD_RELEASE_FLAG_IS_COMMUNITY)) {
g_string_append_printf(
str,
"<p>%s</p>",
/* TRANSLATORS: the vendor did not upload this */
_("This firmware is provided by LVFS community members and is not "
"provided (or supported) by the original hardware vendor."));
g_string_append_printf(
str,
"<p>%s</p>",
/* TRANSLATORS: if it breaks, you get to keep both pieces */
_("Installing this update may also void any device warranty."));
}
/* this can't be from the LVFS, but the user could be installing a local file */
if (str->len == 0) {
g_string_append_printf(str,
"<p>%s</p>",
/* TRANSLATORS: naughty vendor */
_("The vendor did not supply any release notes."));
}
return g_string_free(g_steal_pointer(&str), FALSE);
}
gboolean
fu_util_prompt_warning(FuConsole *console,
FwupdDevice *device,
FwupdRelease *release,
const gchar *machine,
GError **error)
{
FwupdDeviceFlags flags;
gint vercmp;
g_autofree gchar *desc_fb = NULL;
g_autoptr(GString) title = g_string_new(NULL);
g_autoptr(GString) str = g_string_new(NULL);
/* up, down, or re-install */
vercmp = fu_version_compare(fwupd_release_get_version(release),
fu_device_get_version(device),
fwupd_device_get_version_format(device));
if (vercmp < 0) {
g_string_append_printf(
title,
/* TRANSLATORS: message letting the user know an downgrade is available
* %1 is the device name and %2 and %3 are version strings */
_("Downgrade %s from %s to %s?"),
fwupd_device_get_name(device),
fwupd_device_get_version(device),
fwupd_release_get_version(release));
} else if (vercmp > 0) {
g_string_append_printf(
title,
/* TRANSLATORS: message letting the user know an upgrade is available
* %1 is the device name and %2 and %3 are version strings */
_("Upgrade %s from %s to %s?"),
fwupd_device_get_name(device),
fwupd_device_get_version(device),
fwupd_release_get_version(release));
} else {
g_string_append_printf(
title,
/* TRANSLATORS: message letting the user know an upgrade is available
* %1 is the device name and %2 is a version string */
_("Reinstall %s to %s?"),
fwupd_device_get_name(device),
fwupd_release_get_version(release));
}
/* description is optional */
desc_fb = fu_util_get_release_description_with_fallback(release);
if (desc_fb != NULL) {
g_autofree gchar *desc = fu_util_convert_description(desc_fb, NULL);
if (desc != NULL)
g_string_append_printf(str, "\n%s", desc);
}
/* device is not already in bootloader mode so show warning */
flags = fwupd_device_get_flags(device);
if ((flags & FWUPD_DEVICE_FLAG_IS_BOOTLOADER) == 0) {
/* device may reboot */
if ((flags & FWUPD_DEVICE_FLAG_USABLE_DURING_UPDATE) == 0) {
g_string_append(str, "\n\n");
g_string_append_printf(
str,
/* TRANSLATORS: warn the user before updating, %1 is a device name */
_("%s and all connected devices may not be usable while updating."),
fwupd_device_get_name(device));
/* device can get bricked */
} else if ((flags & FWUPD_DEVICE_FLAG_SELF_RECOVERY) == 0) {
g_string_append(str, "\n\n");
/* external device */
if ((flags & FWUPD_DEVICE_FLAG_INTERNAL) == 0) {
g_string_append_printf(str,
/* TRANSLATORS: warn the user before
* updating, %1 is a device name
*/
_("%s must remain connected for the "
"duration of the update to avoid damage."),
fwupd_device_get_name(device));
} else if (flags & FWUPD_DEVICE_FLAG_REQUIRE_AC) {
g_string_append_printf(
str,
/* TRANSLATORS: warn the user before updating, %1 is a machine
* name
*/
_("%s must remain plugged into a power source for the duration "
"of the update to avoid damage."),
machine);
}
}
}
fu_console_box(console, title->str, str->str, 80);
/* TRANSLATORS: prompt to apply the update */
if (!fu_console_input_bool(console, TRUE, "%s", _("Perform operation?"))) {
g_set_error_literal(error,
FWUPD_ERROR,
FWUPD_ERROR_NOTHING_TO_DO,
"Request canceled");
return FALSE;
}
/* success */
return TRUE;
}
gboolean
fu_util_prompt_complete(FuConsole *console, FwupdDeviceFlags flags, gboolean prompt, GError **error)
{
if (flags & FWUPD_DEVICE_FLAG_NEEDS_SHUTDOWN) {
if (prompt) {
if (!fu_console_input_bool(console,
FALSE,
"%s %s",
/* TRANSLATORS: explain why */
_("An update requires the system to shutdown "
"to complete."),
/* TRANSLATORS: shutdown to apply the update */
_("Shutdown now?")))
return TRUE;
}
return fu_util_update_shutdown(error);
}
if (flags & FWUPD_DEVICE_FLAG_NEEDS_REBOOT) {
if (prompt) {
if (!fu_console_input_bool(console,
FALSE,
"%s %s",
/* TRANSLATORS: explain why we want to reboot */
_("An update requires a reboot to complete."),
/* TRANSLATORS: reboot to apply the update */
_("Restart now?")))
return TRUE;
}
return fu_util_update_reboot(error);
}
return TRUE;
}
static void
fu_util_cmd_free(FuUtilCmd *item)
{
g_free(item->name);
g_free(item->arguments);
g_free(item->description);
g_free(item);
}
GPtrArray *
fu_util_cmd_array_new(void)
{
return g_ptr_array_new_with_free_func((GDestroyNotify)fu_util_cmd_free);
}
static gint
fu_util_cmd_sort_cb(FuUtilCmd **item1, FuUtilCmd **item2)
{
return g_strcmp0((*item1)->name, (*item2)->name);
}
void
fu_util_cmd_array_sort(GPtrArray *array)
{
g_ptr_array_sort(array, (GCompareFunc)fu_util_cmd_sort_cb);
}
void
fu_util_cmd_array_add(GPtrArray *array,
const gchar *name,
const gchar *arguments,
const gchar *description,
FuUtilCmdFunc callback)
{
g_auto(GStrv) names = NULL;
g_return_if_fail(name != NULL);
g_return_if_fail(description != NULL);
g_return_if_fail(callback != NULL);
/* add each one */
names = g_strsplit(name, ",", -1);
for (guint i = 0; names[i] != NULL; i++) {
FuUtilCmd *item = g_new0(FuUtilCmd, 1);
item->name = g_strdup(names[i]);
if (i == 0) {
item->description = g_strdup(description);
} else {
/* TRANSLATORS: this is a command alias, e.g. 'get-devices' */
item->description = g_strdup_printf(_("Alias to %s"), names[0]);
item->flags |= FU_UTIL_CMD_FLAG_IS_ALIAS;
}
item->arguments = g_strdup(arguments);
item->callback = callback;
g_ptr_array_add(array, item);
}
}
gboolean
fu_util_cmd_array_run(GPtrArray *array,
FuUtil *self,
const gchar *command,
gchar **values,
GError **error)
{
g_auto(GStrv) values_copy = g_new0(gchar *, g_strv_length(values) + 1);
/* clear out bash completion sentinel */
for (guint i = 0; values[i] != NULL; i++) {
if (g_strcmp0(values[i], "{") == 0) /* nocheck:depth */
break;
values_copy[i] = g_strdup(values[i]);
}
/* return all possible actions */
if (g_strcmp0(command, "get-actions") == 0) {
for (guint i = 0; i < array->len; i++) {
FuUtilCmd *item = g_ptr_array_index(array, i);
if (item->flags & FU_UTIL_CMD_FLAG_IS_ALIAS)
continue;
g_print("%s\n", item->name); /* nocheck:print */
}
return TRUE;
}
/* find command */
for (guint i = 0; i < array->len; i++) {
FuUtilCmd *item = g_ptr_array_index(array, i);
if (g_strcmp0(item->name, command) == 0)
return item->callback(self, values_copy, error);
}
/* not found */
g_set_error_literal(error,
FWUPD_ERROR,
FWUPD_ERROR_INVALID_ARGS,
/* TRANSLATORS: error message */
_("Command not found"));
return FALSE;
}
gchar *
fu_util_cmd_array_to_string(GPtrArray *array)
{
gsize len;
const gsize max_len = 35;
GString *string;
/* print each command */
string = g_string_new("");
for (guint i = 0; i < array->len; i++) {
FuUtilCmd *item = g_ptr_array_index(array, i);
g_string_append(string, " ");
g_string_append(string, item->name);
len = fu_strwidth(item->name) + 2;
if (item->arguments != NULL) {
g_string_append(string, " ");
g_string_append(string, item->arguments);
len += fu_strwidth(item->arguments) + 1;
}
if (len < max_len) {
for (gsize j = len; j < max_len + 1; j++)
g_string_append_c(string, ' ');
g_string_append(string, item->description);
g_string_append_c(string, '\n');
} else {
g_string_append_c(string, '\n');
for (gsize j = 0; j < max_len + 1; j++)
g_string_append_c(string, ' ');
g_string_append(string, item->description);
g_string_append_c(string, '\n');
}
}
/* remove trailing newline */
if (string->len > 0)
g_string_set_size(string, string->len - 1);
return g_string_free(string, FALSE);
}
const gchar *
fu_util_branch_for_display(const gchar *branch)
{
if (branch == NULL) {
/* TRANSLATORS: this is the default branch name when unset */
return _("default");
}
return branch;
}
static gchar *
fu_util_release_get_name(FwupdRelease *release)
{
const gchar *name = fwupd_release_get_name(release);
GPtrArray *cats = fwupd_release_get_categories(release);
for (guint i = 0; i < cats->len; i++) {
const gchar *cat = g_ptr_array_index(cats, i);
if (g_strcmp0(cat, "X-Device") == 0) {
/* TRANSLATORS: a specific part of hardware,
* the first %s is the device name, e.g. 'Unifying Receiver` */
return g_strdup_printf(_("%s Device Update"), name);
}
if (g_strcmp0(cat, "X-Configuration") == 0) {
/* TRANSLATORS: a specific part of hardware,
* the first %s is the device name, e.g. 'Secure Boot` */
return g_strdup_printf(_("%s Configuration Update"), name);
}
if (g_strcmp0(cat, "X-System") == 0) {
/* TRANSLATORS: the entire system, e.g. all internal devices,
* the first %s is the device name, e.g. 'ThinkPad P50` */
return g_strdup_printf(_("%s System Update"), name);
}
if (g_strcmp0(cat, "X-EmbeddedController") == 0) {
/* TRANSLATORS: the EC is typically the keyboard controller chip,
* the first %s is the device name, e.g. 'ThinkPad P50` */
return g_strdup_printf(_("%s Embedded Controller Update"), name);
}
if (g_strcmp0(cat, "X-ManagementEngine") == 0) {
/* TRANSLATORS: ME stands for Management Engine, the Intel AMT thing,
* the first %s is the device name, e.g. 'ThinkPad P50` */
return g_strdup_printf(_("%s ME Update"), name);
}
if (g_strcmp0(cat, "X-CorporateManagementEngine") == 0) {
/* TRANSLATORS: ME stands for Management Engine (with Intel AMT),
* where the first %s is the device name, e.g. 'ThinkPad P50` */
return g_strdup_printf(_("%s Corporate ME Update"), name);
}
if (g_strcmp0(cat, "X-ConsumerManagementEngine") == 0) {
/* TRANSLATORS: ME stands for Management Engine, where
* the first %s is the device name, e.g. 'ThinkPad P50` */
return g_strdup_printf(_("%s Consumer ME Update"), name);
}
if (g_strcmp0(cat, "X-Controller") == 0) {
/* TRANSLATORS: the controller is a device that has other devices
* plugged into it, for example ThunderBolt, FireWire or USB,
* the first %s is the device name, e.g. 'Intel ThunderBolt` */
return g_strdup_printf(_("%s Controller Update"), name);
}
if (g_strcmp0(cat, "X-ThunderboltController") == 0) {
/* TRANSLATORS: the Thunderbolt controller is a device that
* has other high speed Thunderbolt devices plugged into it;
* the first %s is the system name, e.g. 'ThinkPad P50` */
return g_strdup_printf(_("%s Thunderbolt Controller Update"), name);
}
if (g_strcmp0(cat, "X-CpuMicrocode") == 0) {
/* TRANSLATORS: the CPU microcode is firmware loaded onto the CPU
* at system boot-up */
return g_strdup_printf(_("%s CPU Microcode Update"), name);
}
if (g_strcmp0(cat, "X-Battery") == 0) {
/* TRANSLATORS: battery refers to the system power source */
return g_strdup_printf(_("%s Battery Update"), name);
}
if (g_strcmp0(cat, "X-Camera") == 0) {
/* TRANSLATORS: camera can refer to the laptop internal
* camera in the bezel or external USB webcam */
return g_strdup_printf(_("%s Camera Update"), name);
}
if (g_strcmp0(cat, "X-TPM") == 0) {
/* TRANSLATORS: TPM refers to a Trusted Platform Module */
return g_strdup_printf(_("%s TPM Update"), name);
}
if (g_strcmp0(cat, "X-Touchpad") == 0) {
/* TRANSLATORS: TouchPad refers to a flat input device */
return g_strdup_printf(_("%s Touchpad Update"), name);
}
if (g_strcmp0(cat, "X-Mouse") == 0) {
/* TRANSLATORS: Mouse refers to a handheld input device */
return g_strdup_printf(_("%s Mouse Update"), name);
}
if (g_strcmp0(cat, "X-Keyboard") == 0) {
/* TRANSLATORS: Keyboard refers to an input device for typing */
return g_strdup_printf(_("%s Keyboard Update"), name);
}
if (g_strcmp0(cat, "X-StorageController") == 0) {
/* TRANSLATORS: Storage Controller is typically a RAID or SAS adapter */
return g_strdup_printf(_("%s Storage Controller Update"), name);
}
if (g_strcmp0(cat, "X-NetworkInterface") == 0) {
/* TRANSLATORS: Network Interface refers to the physical
* PCI card, not the logical wired connection */
return g_strdup_printf(_("%s Network Interface Update"), name);
}
if (g_strcmp0(cat, "X-VideoDisplay") == 0) {
/* TRANSLATORS: Video Display refers to the laptop internal display or
* external monitor */
return g_strdup_printf(_("%s Display Update"), name);
}
if (g_strcmp0(cat, "X-BaseboardManagementController") == 0) {
/* TRANSLATORS: BMC refers to baseboard management controller which
* is the device that updates all the other firmware on the system */
return g_strdup_printf(_("%s BMC Update"), name);
}
if (g_strcmp0(cat, "X-UsbReceiver") == 0) {
/* TRANSLATORS: Receiver refers to a radio device, e.g. a tiny Bluetooth
* device that stays in the USB port so the wireless peripheral works */
return g_strdup_printf(_("%s USB Receiver Update"), name);
}
if (g_strcmp0(cat, "X-Drive") == 0) {
/* TRANSLATORS: drive refers to a storage device, e.g. SATA disk */
return g_strdup_printf(_("%s Drive Update"), name);
}
if (g_strcmp0(cat, "X-FlashDrive") == 0) {
/* TRANSLATORS: flash refers to solid state storage, e.g. UFS or eMMC */
return g_strdup_printf(_("%s Flash Drive Update"), name);
}
if (g_strcmp0(cat, "X-SolidStateDrive") == 0) {
/* TRANSLATORS: SSD refers to a Solid State Drive, e.g. non-rotating
* SATA or NVMe disk */
return g_strdup_printf(_("%s SSD Update"), name);
}
if (g_strcmp0(cat, "X-Gpu") == 0) {
/* TRANSLATORS: GPU refers to a Graphics Processing Unit, e.g.
* the "video card" */
return g_strdup_printf(_("%s GPU Update"), name);
}
if (g_strcmp0(cat, "X-Dock") == 0) {
/* TRANSLATORS: Dock refers to the port replicator hardware laptops are
* cradled in, or lowered onto */
return g_strdup_printf(_("%s Dock Update"), name);
}
if (g_strcmp0(cat, "X-UsbDock") == 0) {
/* TRANSLATORS: Dock refers to the port replicator device connected
* by plugging in a USB cable -- which may or may not also provide power */
return g_strdup_printf(_("%s USB Dock Update"), name);
}
if (g_strcmp0(cat, "X-FingerprintReader") == 0) {
/* TRANSLATORS: a device that can read your fingerprint pattern */
return g_strdup_printf(_("%s Fingerprint Reader Update"), name);
}
if (g_strcmp0(cat, "X-GraphicsTablet") == 0) {
/* TRANSLATORS: a large pressure-sensitive drawing area typically used
* by artists and digital artists */
return g_strdup_printf(_("%s Graphics Tablet Update"), name);
}
if (g_strcmp0(cat, "X-InputController") == 0) {
/* TRANSLATORS: an input device used by gamers, e.g. a joystick */
return g_strdup_printf(_("%s Input Controller Update"), name);
}
if (g_strcmp0(cat, "X-Headphones") == 0) {
/* TRANSLATORS: two miniature speakers attached to your ears */
return g_strdup_printf(_("%s Headphones Update"), name);
}
if (g_strcmp0(cat, "X-Headset") == 0) {
/* TRANSLATORS: headphones with an integrated microphone */
return g_strdup_printf(_("%s Headset Update"), name);
}
}
/* TRANSLATORS: this is the fallback where we don't know if the release
* is updating the system, the device, or a device class, or something else --
* the first %s is the device name, e.g. 'ThinkPad P50` */
return g_strdup_printf(_("%s Update"), name);
}
gboolean
fu_util_parse_filter_device_flags(const gchar *filter,
FwupdDeviceFlags *include,
FwupdDeviceFlags *exclude,
GError **error)
{
FwupdDeviceFlags tmp;
g_auto(GStrv) strv = g_strsplit(filter, ",", -1);
g_return_val_if_fail(include != NULL, FALSE);
g_return_val_if_fail(exclude != NULL, FALSE);
for (guint i = 0; strv[i] != NULL; i++) {
if (g_str_has_prefix(strv[i], "~")) {
tmp = fwupd_device_flag_from_string(strv[i] + 1);
if (tmp == FWUPD_DEVICE_FLAG_UNKNOWN) {
g_set_error(error,
FWUPD_ERROR,
FWUPD_ERROR_NOT_SUPPORTED,
"Unknown device flag %s",
strv[i] + 1);
return FALSE;
}
if ((tmp & *include) > 0) {
g_set_error(error,
FWUPD_ERROR,
FWUPD_ERROR_NOT_SUPPORTED,
"Filter %s already included",
fwupd_device_flag_to_string(tmp));
return FALSE;
}
if ((tmp & *exclude) > 0) {
g_set_error(error,
FWUPD_ERROR,
FWUPD_ERROR_NOT_SUPPORTED,
"Filter %s already excluded",
fwupd_device_flag_to_string(tmp));
return FALSE;
}
*exclude |= tmp;
} else {
tmp = fwupd_device_flag_from_string(strv[i]);
if (tmp == FWUPD_DEVICE_FLAG_UNKNOWN) {
g_set_error(error,
FWUPD_ERROR,
FWUPD_ERROR_NOT_SUPPORTED,
"Unknown device flag %s",
strv[i]);
return FALSE;
}
if ((tmp & *exclude) > 0) {
g_set_error(error,
FWUPD_ERROR,
FWUPD_ERROR_NOT_SUPPORTED,
"Filter %s already excluded",
fwupd_device_flag_to_string(tmp));
return FALSE;
}
if ((tmp & *include) > 0) {
g_set_error(error,
FWUPD_ERROR,
FWUPD_ERROR_NOT_SUPPORTED,
"Filter %s already included",
fwupd_device_flag_to_string(tmp));
return FALSE;
}
*include |= tmp;
}
}
return TRUE;
}
gboolean
fu_util_parse_filter_release_flags(const gchar *filter,
FwupdReleaseFlags *include,
FwupdReleaseFlags *exclude,
GError **error)
{
FwupdReleaseFlags tmp;
g_auto(GStrv) strv = g_strsplit(filter, ",", -1);
g_return_val_if_fail(include != NULL, FALSE);
g_return_val_if_fail(exclude != NULL, FALSE);
for (guint i = 0; strv[i] != NULL; i++) {
if (g_str_has_prefix(strv[i], "~")) {
tmp = fwupd_release_flag_from_string(strv[i] + 1);
if (tmp == FWUPD_RELEASE_FLAG_UNKNOWN) {
g_set_error(error,
FWUPD_ERROR,
FWUPD_ERROR_NOT_SUPPORTED,
"Unknown release flag %s",
strv[i] + 1);
return FALSE;
}
if ((tmp & *include) > 0) {
g_set_error(error,
FWUPD_ERROR,
FWUPD_ERROR_NOT_SUPPORTED,
"Filter %s already included",
fwupd_release_flag_to_string(tmp));
return FALSE;
}
if ((tmp & *exclude) > 0) {
g_set_error(error,
FWUPD_ERROR,
FWUPD_ERROR_NOT_SUPPORTED,
"Filter %s already excluded",
fwupd_release_flag_to_string(tmp));
return FALSE;
}
*exclude |= tmp;
} else {
tmp = fwupd_release_flag_from_string(strv[i]);
if (tmp == FWUPD_RELEASE_FLAG_UNKNOWN) {
g_set_error(error,
FWUPD_ERROR,
FWUPD_ERROR_NOT_SUPPORTED,
"Unknown release flag %s",
strv[i]);
return FALSE;
}
if ((tmp & *exclude) > 0) {
g_set_error(error,
FWUPD_ERROR,
FWUPD_ERROR_NOT_SUPPORTED,
"Filter %s already excluded",
fwupd_release_flag_to_string(tmp));
return FALSE;
}
if ((tmp & *include) > 0) {
g_set_error(error,
FWUPD_ERROR,
FWUPD_ERROR_NOT_SUPPORTED,
"Filter %s already included",
fwupd_release_flag_to_string(tmp));
return FALSE;
}
*include |= tmp;
}
}
return TRUE;
}
typedef struct {
guint cnt;
GString *str;
} FuUtilConvertHelper;
static gboolean
fu_util_convert_description_head_cb(XbNode *n, gpointer user_data)
{
FuUtilConvertHelper *helper = (FuUtilConvertHelper *)user_data;
helper->cnt++;
/* start */
if (g_strcmp0(xb_node_get_element(n), "em") == 0) {
g_string_append(helper->str, "\033[3m");
} else if (g_strcmp0(xb_node_get_element(n), "strong") == 0) {
g_string_append(helper->str, "\033[1m");
} else if (g_strcmp0(xb_node_get_element(n), "code") == 0) {
g_string_append(helper->str, "`");
} else if (g_strcmp0(xb_node_get_element(n), "li") == 0) {
g_string_append(helper->str, "• ");
} else if (g_strcmp0(xb_node_get_element(n), "p") == 0 ||
g_strcmp0(xb_node_get_element(n), "ul") == 0 ||
g_strcmp0(xb_node_get_element(n), "ol") == 0) {
g_string_append(helper->str, "\n");
}
/* text */
if (xb_node_get_text(n) != NULL)
g_string_append(helper->str, xb_node_get_text(n));
return FALSE;
}
static gboolean
fu_util_convert_description_tail_cb(XbNode *n, gpointer user_data)
{
FuUtilConvertHelper *helper = (FuUtilConvertHelper *)user_data;
helper->cnt++;
/* end */
if (g_strcmp0(xb_node_get_element(n), "em") == 0 ||
g_strcmp0(xb_node_get_element(n), "strong") == 0) {
g_string_append(helper->str, "\033[0m");
} else if (g_strcmp0(xb_node_get_element(n), "code") == 0) {
g_string_append(helper->str, "`");
} else if (g_strcmp0(xb_node_get_element(n), "li") == 0) {
g_string_append(helper->str, "\n");
} else if (g_strcmp0(xb_node_get_element(n), "p") == 0) {
g_string_append(helper->str, "\n");
}
/* tail */
if (xb_node_get_tail(n) != NULL)
g_string_append(helper->str, xb_node_get_tail(n));
return FALSE;
}
static gchar *
fu_util_convert_description(const gchar *xml, GError **error)
{
g_autoptr(GString) str = g_string_new(NULL);
g_autoptr(XbNode) n = NULL;
g_autoptr(XbSilo) silo = NULL;
FuUtilConvertHelper helper = {
.cnt = 0,
.str = str,
};
/* parse XML */
silo = xb_silo_new_from_xml(xml, error);
if (silo == NULL)
return NULL;
/* convert to something we can show on the console */
n = xb_silo_get_root(silo);
xb_node_transmogrify(n,
fu_util_convert_description_head_cb,
fu_util_convert_description_tail_cb,
&helper);
/* success */
return fu_strstrip(str->str);
}
/**
* fu_util_time_to_str:
* @tmp: the time in seconds
*
* Converts a timestamp to a 'pretty' translated string
*
* Returns: (transfer full): A string
**/
static gchar *
fu_util_time_to_str(guint64 tmp)
{
g_return_val_if_fail(tmp != 0, NULL);
/* seconds */
if (tmp < 60) {
/* TRANSLATORS: duration in seconds */
return g_strdup_printf(ngettext("%u second", "%u seconds", (gint)tmp), (guint)tmp);
}
/* minutes */
tmp /= 60;
if (tmp < 60) {
/* TRANSLATORS: duration in minutes */
return g_strdup_printf(ngettext("%u minute", "%u minutes", (gint)tmp), (guint)tmp);
}
/* hours */
tmp /= 60;
if (tmp < 60) {
/* TRANSLATORS: duration in minutes */
return g_strdup_printf(ngettext("%u hour", "%u hours", (gint)tmp), (guint)tmp);
}
/* days */
tmp /= 24;
/* TRANSLATORS: duration in days! */
return g_strdup_printf(ngettext("%u day", "%u days", (gint)tmp), (guint)tmp);
}
static gchar *
fu_util_device_flag_to_string(guint64 device_flag)
{
if (device_flag == FWUPD_DEVICE_FLAG_NONE)
return NULL;
if (device_flag == FWUPD_DEVICE_FLAG_INTERNAL) {
/* TRANSLATORS: Device cannot be removed easily*/
return _("Internal device");
}
if (device_flag == FWUPD_DEVICE_FLAG_UPDATABLE ||
device_flag == FWUPD_DEVICE_FLAG_UPDATABLE_HIDDEN) {
/* TRANSLATORS: Device is updatable in this or any other mode */
return _("Updatable");
}
if (device_flag == FWUPD_DEVICE_FLAG_REQUIRE_AC) {
/* TRANSLATORS: Must be plugged into an outlet */
return _("System requires external power source");
}
if (device_flag == FWUPD_DEVICE_FLAG_LOCKED) {
/* TRANSLATORS: Is locked and can be unlocked */
return _("Device is locked");
}
if (device_flag == FWUPD_DEVICE_FLAG_SUPPORTED) {
/* TRANSLATORS: Is found in current metadata */
return _("Supported on remote server");
}
if (device_flag == FWUPD_DEVICE_FLAG_NEEDS_BOOTLOADER) {
/* TRANSLATORS: Requires a bootloader mode to be manually enabled by the user */
return _("Requires a bootloader");
}
if (device_flag == FWUPD_DEVICE_FLAG_NEEDS_REBOOT) {
/* TRANSLATORS: Requires a reboot to apply firmware or to reload hardware */
return _("Needs a reboot after installation");
}
if (device_flag == FWUPD_DEVICE_FLAG_NEEDS_SHUTDOWN) {
/* TRANSLATORS: Requires system shutdown to apply firmware */
return _("Needs shutdown after installation");
}
if (device_flag == FWUPD_DEVICE_FLAG_REPORTED) {
/* TRANSLATORS: Has been reported to a metadata server */
return _("Reported to remote server");
}
if (device_flag == FWUPD_DEVICE_FLAG_NOTIFIED) {
/* TRANSLATORS: User has been notified */
return _("User has been notified");
}
if (device_flag == FWUPD_DEVICE_FLAG_IS_BOOTLOADER) {
/* TRANSLATORS: Is currently in bootloader mode */
return _("Is in bootloader mode");
}
if (device_flag == FWUPD_DEVICE_FLAG_WAIT_FOR_REPLUG) {
/* TRANSLATORS: the hardware is waiting to be replugged */
return _("Hardware is waiting to be replugged");
}
if (device_flag == FWUPD_DEVICE_FLAG_ANOTHER_WRITE_REQUIRED) {
/* skip */
return NULL;
}
if (device_flag == FWUPD_DEVICE_FLAG_NEEDS_ACTIVATION) {
/* TRANSLATORS: Device update needs to be separately activated */
return _("Device update needs activation");
}
if (device_flag == FWUPD_DEVICE_FLAG_HISTORICAL) {
/* skip */
return NULL;
}
if (device_flag == FWUPD_DEVICE_FLAG_WILL_DISAPPEAR) {
/* TRANSLATORS: Device will not return after update completes */
return _("Device will not re-appear after update completes");
}
if (device_flag == FWUPD_DEVICE_FLAG_CAN_VERIFY) {
/* TRANSLATORS: Device supports some form of checksum verification */
return _("Cryptographic hash verification is available");
}
if (device_flag == FWUPD_DEVICE_FLAG_CAN_VERIFY_IMAGE) {
/* skip */
return NULL;
}
if (device_flag == FWUPD_DEVICE_FLAG_DUAL_IMAGE) {
/* TRANSLATORS: Device supports a safety mechanism for flashing */
return _("Device stages updates");
}
if (device_flag == FWUPD_DEVICE_FLAG_SELF_RECOVERY) {
/* TRANSLATORS: Device supports a safety mechanism for flashing */
return _("Device can recover flash failures");
}
if (device_flag == FWUPD_DEVICE_FLAG_USABLE_DURING_UPDATE) {
/* TRANSLATORS: Device remains usable during update */
return _("Device is usable for the duration of the update");
}
if (device_flag == FWUPD_DEVICE_FLAG_VERSION_CHECK_REQUIRED) {
/* TRANSLATORS: a version check is required for all firmware */
return _("Device firmware is required to have a version check");
}
if (device_flag == FWUPD_DEVICE_FLAG_INSTALL_ALL_RELEASES) {
/* TRANSLATORS: the device cannot update from A->C and has to go A->B->C */
return _("Device is required to install all provided releases");
}
if (device_flag == FWUPD_DEVICE_FLAG_HAS_MULTIPLE_BRANCHES) {
/* TRANSLATORS: there is more than one supplier of the firmware */
return _("Device supports switching to a different branch of firmware");
}
if (device_flag == FWUPD_DEVICE_FLAG_BACKUP_BEFORE_INSTALL) {
/* TRANSLATORS: save the old firmware to disk before installing the new one */
return _("Device will backup firmware before installing");
}
if (device_flag == FWUPD_DEVICE_FLAG_WILDCARD_INSTALL) {
/* TRANSLATORS: on some systems certain devices have to have matching versions,
* e.g. the EFI driver for a given network card cannot be different */
return _("All devices of the same type will be updated at the same time");
}
if (device_flag == FWUPD_DEVICE_FLAG_ONLY_VERSION_UPGRADE) {
/* TRANSLATORS: some devices can only be updated to a new semver and cannot
* be downgraded or reinstalled with the existing version */
return _("Only version upgrades are allowed");
}
if (device_flag == FWUPD_DEVICE_FLAG_UNREACHABLE) {
/* TRANSLATORS: currently unreachable, perhaps because it is in a lower power state
* or is out of wireless range */
return _("Device is unreachable");
}
if (device_flag == FWUPD_DEVICE_FLAG_AFFECTS_FDE) {
/* TRANSLATORS: we might ask the user the recovery key when next booting Windows */
return _("Full disk encryption secrets may be invalidated when updating");
}
if (device_flag == FWUPD_DEVICE_FLAG_END_OF_LIFE) {
/* TRANSLATORS: the vendor is no longer supporting the device */
return _("End of life");
}
if (device_flag == FWUPD_DEVICE_FLAG_SIGNED_PAYLOAD) {
/* TRANSLATORS: firmware is verified on-device the payload using strong crypto */
return _("Signed Payload");
}
if (device_flag == FWUPD_DEVICE_FLAG_UNSIGNED_PAYLOAD) {
/* TRANSLATORS: firmware payload is unsigned and it is possible to modify it */
return _("Unsigned Payload");
}
if (device_flag == FWUPD_DEVICE_FLAG_EMULATED) {
/* TRANSLATORS: this device is not actually real */
return _("Emulated");
}
if (device_flag == FWUPD_DEVICE_FLAG_EMULATION_TAG) {
/* TRANSLATORS: we're saving all USB events for emulation */
return _("Tagged for emulation");
}
if (device_flag == FWUPD_DEVICE_FLAG_ONLY_EXPLICIT_UPDATES) {
/* TRANSLATORS: stay on one firmware version unless the new version is explicitly
* specified */
return _("Installing a specific release is explicitly required");
}
if (device_flag == FWUPD_DEVICE_FLAG_CAN_EMULATION_TAG) {
/* TRANSLATORS: we can save all device enumeration events for emulation */
return _("Can tag for emulation");
}
if (device_flag == FWUPD_DEVICE_FLAG_UNKNOWN)
return NULL;
return NULL;
}
static gchar *
fu_util_request_flag_to_string(guint64 request_flag)
{
if (request_flag == FWUPD_REQUEST_FLAG_NONE)
return NULL;
if (request_flag == FWUPD_REQUEST_FLAG_ALLOW_GENERIC_MESSAGE) {
/* TRANSLATORS: ask the user to do a simple task which should be translated */
return _("Message");
}
if (request_flag == FWUPD_REQUEST_FLAG_ALLOW_GENERIC_IMAGE) {
/* TRANSLATORS: show the user a generic image that can be themed */
return _("Image");
}
if (request_flag == FWUPD_REQUEST_FLAG_NON_GENERIC_MESSAGE) {
/* TRANSLATORS: ask the user a question, and it will not be translated */
return _("Message (custom)");
}
if (request_flag == FWUPD_REQUEST_FLAG_NON_GENERIC_IMAGE) {
/* TRANSLATORS: show the user a random image from the internet */
return _("Image (custom)");
}
return NULL;
}
static const gchar *
fu_util_update_state_to_string(FwupdUpdateState update_state)
{
if (update_state == FWUPD_UPDATE_STATE_PENDING) {
/* TRANSLATORS: the update state of the specific device */
return _("Pending");
}
if (update_state == FWUPD_UPDATE_STATE_SUCCESS) {
/* TRANSLATORS: the update state of the specific device */
return _("Success");
}
if (update_state == FWUPD_UPDATE_STATE_FAILED) {
/* TRANSLATORS: the update state of the specific device */
return _("Failed");
}
if (update_state == FWUPD_UPDATE_STATE_FAILED_TRANSIENT) {
/* TRANSLATORS: the update state of the specific device */
return _("Transient failure");
}
if (update_state == FWUPD_UPDATE_STATE_NEEDS_REBOOT) {
/* TRANSLATORS: the update state of the specific device */
return _("Needs reboot");
}
return NULL;
}
gchar *
fu_util_device_problem_to_string(FwupdClient *client, FwupdDevice *dev, FwupdDeviceProblem problem)
{
if (problem == FWUPD_DEVICE_PROBLEM_NONE)
return NULL;
if (problem == FWUPD_DEVICE_PROBLEM_UNKNOWN)
return NULL;
if (problem == FWUPD_DEVICE_PROBLEM_SYSTEM_POWER_TOO_LOW) {
if (fwupd_client_get_battery_level(client) == FWUPD_BATTERY_LEVEL_INVALID ||
fwupd_client_get_battery_threshold(client) == FWUPD_BATTERY_LEVEL_INVALID) {
/* TRANSLATORS: as in laptop battery power */
return g_strdup(_("System power is too low"));
}
return g_strdup_printf(
/* TRANSLATORS: as in laptop battery power */
_("System power is too low (%u%%, requires %u%%)"),
fwupd_client_get_battery_level(client),
fwupd_client_get_battery_threshold(client));
}
if (problem == FWUPD_DEVICE_PROBLEM_UNREACHABLE) {
/* TRANSLATORS: for example, a Bluetooth mouse that is in powersave mode */
return g_strdup(_("Device is unreachable, or out of wireless range"));
}
if (problem == FWUPD_DEVICE_PROBLEM_POWER_TOO_LOW) {
if (fwupd_device_get_battery_level(dev) == FWUPD_BATTERY_LEVEL_INVALID ||
fwupd_device_get_battery_threshold(dev) == FWUPD_BATTERY_LEVEL_INVALID) {
/* TRANSLATORS: for example the batteries *inside* the Bluetooth mouse */
return g_strdup(_("Device battery power is too low"));
}
/* TRANSLATORS: for example the batteries *inside* the Bluetooth mouse */
return g_strdup_printf(_("Device battery power is too low (%u%%, requires %u%%)"),
fwupd_device_get_battery_level(dev),
fwupd_device_get_battery_threshold(dev));
}
if (problem == FWUPD_DEVICE_PROBLEM_UPDATE_PENDING) {
/* TRANSLATORS: usually this is when we're waiting for a reboot */
return g_strdup(_("Device is waiting for the update to be applied"));
}
if (problem == FWUPD_DEVICE_PROBLEM_REQUIRE_AC_POWER) {
/* TRANSLATORS: as in, wired mains power for a laptop */
return g_strdup(_("Device requires AC power to be connected"));
}
if (problem == FWUPD_DEVICE_PROBLEM_LID_IS_CLOSED) {
/* TRANSLATORS: lid means "laptop top cover" */
return g_strdup(_("Device cannot be updated while the lid is closed"));
}
if (problem == FWUPD_DEVICE_PROBLEM_IS_EMULATED) {
/* TRANSLATORS: emulated means we are pretending to be a different model */
return g_strdup(_("Device is emulated"));
}
if (problem == FWUPD_DEVICE_PROBLEM_MISSING_LICENSE) {
/* TRANSLATORS: The device cannot be updated due to missing vendor's license. */
return g_strdup(_("Device requires a software license to update"));
}
if (problem == FWUPD_DEVICE_PROBLEM_SYSTEM_INHIBIT) {
/* TRANSLATORS: an application is preventing system updates */
return g_strdup(_("All devices are prevented from update by system inhibit"));
}
if (problem == FWUPD_DEVICE_PROBLEM_UPDATE_IN_PROGRESS) {
/* TRANSLATORS: another application is updating the device already */
return g_strdup(_("An update is in progress"));
}
if (problem == FWUPD_DEVICE_PROBLEM_IN_USE) {
/* TRANSLATORS: device cannot be interrupted, for instance taking a phone call */
return g_strdup(_("Device is in use"));
}
if (problem == FWUPD_DEVICE_PROBLEM_DISPLAY_REQUIRED) {
/* TRANSLATORS: device does not have a display connected */
return g_strdup(_("Device requires a display to be plugged in"));
}
if (problem == FWUPD_DEVICE_PROBLEM_LOWER_PRIORITY) {
/* TRANSLATORS: we have two ways of communicating with the device, so we hide one */
return g_strdup(_("Device is lower priority than an equivalent device"));
}
if (problem == FWUPD_DEVICE_PROBLEM_INSECURE_PLATFORM) {
/* TRANSLATORS: firmware is signed with insecure key */
return g_strdup(_("System has been signed with an insecure key"));
}
return NULL;
}
gchar *
fu_util_device_to_string(FwupdClient *client, FwupdDevice *dev, guint idt)
{
FwupdUpdateState state;
GPtrArray *guids = fwupd_device_get_guids(dev);
GPtrArray *issues = fwupd_device_get_issues(dev);
GPtrArray *vendor_ids = fwupd_device_get_vendor_ids(dev);
GPtrArray *instance_ids = fwupd_device_get_instance_ids(dev);
const gchar *tmp;
const gchar *tmp2;
guint64 flags = fwupd_device_get_flags(dev);
guint64 modified = fwupd_device_get_modified(dev);
guint64 request_flags = fwupd_device_get_request_flags(dev);
g_autoptr(GHashTable) ids = NULL;
g_autoptr(GString) str = g_string_new(NULL);
/* some fields are intentionally not included and are only shown in --verbose */
if (g_getenv("FWUPD_VERBOSE") != NULL) {
g_autofree gchar *debug_str = fwupd_codec_to_string(FWUPD_CODEC(dev));
g_info("%s", debug_str);
return NULL;
}
tmp = fwupd_device_get_name(dev);
if (tmp == NULL) {
/* TRANSLATORS: Name of hardware */
tmp = _("Unknown Device");
}
fwupd_codec_string_append(str, idt, tmp, "");
/* TRANSLATORS: ID for hardware, typically a SHA1 sum */
fwupd_codec_string_append(str, idt + 1, _("Device ID"), fwupd_device_get_id(dev));
/* TRANSLATORS: one line summary of device */
fwupd_codec_string_append(str, idt + 1, _("Summary"), fwupd_device_get_summary(dev));
/* versions */
tmp = fwupd_device_get_version(dev);
if (tmp != NULL) {
g_autoptr(GString) verstr = g_string_new(tmp);
if (fwupd_device_get_version_build_date(dev) != 0) {
guint64 value = fwupd_device_get_version_build_date(dev);
g_autoptr(GDateTime) date = g_date_time_new_from_unix_utc((gint64)value);
g_autofree gchar *datestr = g_date_time_format(date, "%F");
g_string_append_printf(verstr, " [%s]", datestr);
}
if (flags & FWUPD_DEVICE_FLAG_HISTORICAL) {
fwupd_codec_string_append(
str,
idt + 1,
/* TRANSLATORS: version number of previous firmware */
_("Previous version"),
verstr->str);
} else {
/* TRANSLATORS: version number of current firmware */
fwupd_codec_string_append(str, idt + 1, _("Current version"), verstr->str);
}
}
fwupd_codec_string_append(str,
idt + 1,
/* TRANSLATORS: smallest version number installable on device */
_("Minimum Version"),
fwupd_device_get_version_lowest(dev));
fwupd_codec_string_append(str,
idt + 1,
/* TRANSLATORS: firmware version of bootloader */
_("Bootloader Version"),
fwupd_device_get_version_bootloader(dev));
/* vendor */
tmp = fwupd_device_get_vendor(dev);
if (tmp != NULL && vendor_ids->len > 0) {
g_autofree gchar *strv = fu_strjoin(", ", vendor_ids);
g_autofree gchar *both = g_strdup_printf("%s (%s)", tmp, strv);
/* TRANSLATORS: manufacturer of hardware */
fwupd_codec_string_append(str, idt + 1, _("Vendor"), both);
} else if (tmp != NULL) {
/* TRANSLATORS: manufacturer of hardware */
fwupd_codec_string_append(str, idt + 1, _("Vendor"), tmp);
} else if (vendor_ids->len > 0) {
g_autofree gchar *strv = fu_strjoin("|", vendor_ids);
/* TRANSLATORS: manufacturer of hardware */
fwupd_codec_string_append(str, idt + 1, _("Vendor"), strv);
}
/* branch */
fwupd_codec_string_append(str,
idt + 1,
/* TRANSLATORS: the stream of firmware, e.g. nonfree */
_("Release Branch"),
fwupd_device_get_branch(dev));
/* install duration */
if (fwupd_device_get_install_duration(dev) > 0) {
g_autofree gchar *time =
fu_util_time_to_str(fwupd_device_get_install_duration(dev));
/* TRANSLATORS: length of time the update takes to apply */
fwupd_codec_string_append(str, idt + 1, _("Install Duration"), time);
}
/* TRANSLATORS: serial number of hardware */
fwupd_codec_string_append(str, idt + 1, _("Serial Number"), fwupd_device_get_serial(dev));
/* update state */
state = fwupd_device_get_update_state(dev);
if (state != FWUPD_UPDATE_STATE_UNKNOWN) {
fwupd_codec_string_append(str,
idt + 1,
/* TRANSLATORS: hardware state, e.g. "pending" */
_("Update State"),
fu_util_update_state_to_string(state));
}
/* battery, but only if we're not about to show the same info as an inhibit */
if (!fwupd_device_has_problem(dev, FWUPD_DEVICE_PROBLEM_POWER_TOO_LOW)) {
if (fwupd_device_get_battery_level(dev) != FWUPD_BATTERY_LEVEL_INVALID &&
fwupd_device_get_battery_threshold(dev) != FWUPD_BATTERY_LEVEL_INVALID) {
g_autofree gchar *val = NULL;
/* TRANSLATORS: first percentage is current value, 2nd percentage is the
* lowest limit the firmware update is allowed for the update to happen */
val = g_strdup_printf(_("%u%% (threshold %u%%)"),
fwupd_device_get_battery_level(dev),
fwupd_device_get_battery_threshold(dev));
/* TRANSLATORS: refers to the battery inside the peripheral device */
fwupd_codec_string_append(str, idt + 1, _("Battery"), val);
} else if (fwupd_device_get_battery_level(dev) != FWUPD_BATTERY_LEVEL_INVALID) {
g_autofree gchar *val = NULL;
val = g_strdup_printf("%u%%", fwupd_device_get_battery_level(dev));
/* TRANSLATORS: refers to the battery inside the peripheral device */
fwupd_codec_string_append(str, idt + 1, _("Battery"), val);
}
}
/* either show enumerated [translated] problems or the synthesized update error */
if (fwupd_device_get_problems(dev) == FWUPD_DEVICE_PROBLEM_NONE) {
tmp = fwupd_device_get_update_error(dev);
if (tmp != NULL) {
g_autofree gchar *color =
fu_console_color_format(tmp, FU_CONSOLE_COLOR_RED);
/* TRANSLATORS: error message from last update attempt */
fwupd_codec_string_append(str, idt + 1, _("Update Error"), color);
}
} else {
/* TRANSLATORS: reasons the device is not updatable */
tmp = _("Problems");
for (guint i = 0; i < 64; i++) {
FwupdDeviceProblem problem = (guint64)1 << i;
g_autofree gchar *bullet = NULL;
g_autofree gchar *desc = NULL;
g_autofree gchar *color = NULL;
if (!fwupd_device_has_problem(dev, problem))
continue;
desc = fu_util_device_problem_to_string(client, dev, problem);
if (desc == NULL)
continue;
bullet = g_strdup_printf("• %s", desc);
color = fu_console_color_format(bullet, FU_CONSOLE_COLOR_RED);
fwupd_codec_string_append(str, idt + 1, tmp, color);
tmp = "";
}
}
/* TRANSLATORS: the original time/date the device was modified */
fwupd_codec_string_append_time(str, idt + 1, _("Last modified"), modified);
/* all GUIDs for this hardware, with IDs if available */
ids = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, g_free);
for (guint i = 0; i < instance_ids->len; i++) {
const gchar *instance_id = g_ptr_array_index(instance_ids, i);
g_hash_table_insert(ids,
fwupd_guid_hash_string(instance_id),
g_strdup(instance_id));
}
for (guint i = 0; i < guids->len; i++) {
const gchar *guid = g_ptr_array_index(guids, i);
const gchar *instance_id = g_hash_table_lookup(ids, guid);
g_autofree gchar *guid_src = NULL;
/* instance IDs are only available as root */
if (instance_id == NULL) {
guid_src = g_strdup(guid);
} else {
guid_src = g_strdup_printf("%s ← %s", guid, instance_id);
}
if (i == 0) {
fwupd_codec_string_append(
str,
idt + 1,
/* TRANSLATORS: global ID common to all similar hardware */
ngettext("GUID", "GUIDs", guids->len),
guid_src);
} else {
fwupd_codec_string_append(str, idt + 1, "", guid_src);
}
}
/* TRANSLATORS: description of device ability */
tmp = _("Device Flags");
for (guint i = 0; i < 64; i++) {
if ((flags & ((guint64)1 << i)) == 0)
continue;
tmp2 = fu_util_device_flag_to_string((guint64)1 << i);
if (tmp2 == NULL)
continue;
/* header */
if (tmp != NULL) {
g_autofree gchar *bullet = NULL;
bullet = g_strdup_printf("• %s", tmp2);
fwupd_codec_string_append(str, idt + 1, tmp, bullet);
tmp = NULL;
} else {
g_autofree gchar *bullet = NULL;
bullet = g_strdup_printf("• %s", tmp2);
fwupd_codec_string_append(str, idt + 1, "", bullet);
}
}
/* TRANSLATORS: description of the device requests */
tmp = _("Device Requests");
for (guint i = 0; i < 64; i++) {
if ((request_flags & ((guint64)1 << i)) == 0)
continue;
tmp2 = fu_util_request_flag_to_string((guint64)1 << i);
if (tmp2 == NULL)
continue;
/* header */
if (tmp != NULL) {
g_autofree gchar *bullet = NULL;
bullet = g_strdup_printf("• %s", tmp2);
fwupd_codec_string_append(str, idt + 1, tmp, bullet);
tmp = NULL;
} else {
g_autofree gchar *bullet = NULL;
bullet = g_strdup_printf("• %s", tmp2);
fwupd_codec_string_append(str, idt + 1, "", bullet);
}
}
for (guint i = 0; i < issues->len; i++) {
const gchar *issue = g_ptr_array_index(issues, i);
fwupd_codec_string_append(str,
idt + 1,
/* TRANSLATORS: issue fixed with the release, e.g. CVE */
i == 0 ? ngettext("Issue", "Issues", issues->len) : "",
issue);
}
return g_string_free(g_steal_pointer(&str), FALSE);
}
gint
fu_util_plugin_name_sort_cb(FwupdPlugin **item1, FwupdPlugin **item2)
{
return g_strcmp0(fwupd_plugin_get_name(*item1), fwupd_plugin_get_name(*item2));
}
gchar *
fu_util_plugin_flag_to_string(FwupdPluginFlags plugin_flag)
{
if (plugin_flag == FWUPD_PLUGIN_FLAG_UNKNOWN)
return NULL;
if (plugin_flag == FWUPD_PLUGIN_FLAG_CLEAR_UPDATABLE)
return NULL;
if (plugin_flag == FWUPD_PLUGIN_FLAG_USER_WARNING)
return NULL;
if (plugin_flag == FWUPD_PLUGIN_FLAG_NONE)
return NULL;
if (plugin_flag == FWUPD_PLUGIN_FLAG_REQUIRE_HWID) {
/* TRANSLATORS: Plugin is active only if hardware is found */
return g_strdup(_("Enabled if hardware matches"));
}
if (plugin_flag == FWUPD_PLUGIN_FLAG_READY) {
/* TRANSLATORS: Plugin is active and in use */
return g_strdup(_("Ready"));
}
if (plugin_flag == FWUPD_PLUGIN_FLAG_DISABLED) {
/* TRANSLATORS: Plugin is inactive and not used */
return g_strdup(_("Disabled"));
}
if (plugin_flag == FWUPD_PLUGIN_FLAG_NO_HARDWARE) {
/* TRANSLATORS: not required for this system */
return g_strdup(_("Required hardware was not found"));
}
if (plugin_flag == FWUPD_PLUGIN_FLAG_LEGACY_BIOS) {
/* TRANSLATORS: system is not booted in UEFI mode */
return g_strdup(_("UEFI firmware can not be updated in legacy BIOS mode"));
}
if (plugin_flag == FWUPD_PLUGIN_FLAG_CAPSULES_UNSUPPORTED) {
return g_strdup(
/* TRANSLATORS: capsule updates are an optional BIOS feature */
_("UEFI capsule updates not available or enabled in firmware setup"));
}
if (plugin_flag == FWUPD_PLUGIN_FLAG_UNLOCK_REQUIRED) {
/* TRANSLATORS: user needs to run a command, %1 is 'fwupdmgr unlock' */
return g_strdup_printf(_("Firmware updates disabled; run '%s' to enable"),
"fwupdmgr unlock");
}
if (plugin_flag == FWUPD_PLUGIN_FLAG_AUTH_REQUIRED) {
/* TRANSLATORS: user needs to run a command */
return g_strdup(_("Authentication details are required"));
}
if (plugin_flag == FWUPD_PLUGIN_FLAG_SECURE_CONFIG) {
/* TRANSLATORS: no peeking */
return g_strdup(_("Configuration is only readable by the system administrator"));
}
if (plugin_flag == FWUPD_PLUGIN_FLAG_MODULAR) {
/* TRANSLATORS: the plugin was created from a .so object, and was not built-in */
return g_strdup(_("Loaded from an external module"));
}
if (plugin_flag == FWUPD_PLUGIN_FLAG_MEASURE_SYSTEM_INTEGRITY) {
/* TRANSLATORS: check various UEFI and ACPI tables are unchanged after the update */
return g_strdup(_("Will measure elements of system integrity around an update"));
}
if (plugin_flag == FWUPD_PLUGIN_FLAG_EFIVAR_NOT_MOUNTED) {
/* TRANSLATORS: the user is using Gentoo/Arch and has screwed something up */
return g_strdup(_("Required efivarfs filesystem was not found"));
}
if (plugin_flag == FWUPD_PLUGIN_FLAG_ESP_NOT_FOUND) {
/* TRANSLATORS: partition refers to something on disk, again, hey Arch users */
return g_strdup(_("UEFI ESP partition not detected or configured"));
}
if (plugin_flag == FWUPD_PLUGIN_FLAG_ESP_NOT_VALID) {
/* TRANSLATORS: partition refers to something on disk, again, hey Arch users */
return g_strdup(_("UEFI ESP partition may not be set up correctly"));
}
if (plugin_flag == FWUPD_PLUGIN_FLAG_FAILED_OPEN) {
/* TRANSLATORS: Failed to open plugin, hey Arch users */
return g_strdup(_("Plugin dependencies missing"));
}
if (plugin_flag == FWUPD_PLUGIN_FLAG_KERNEL_TOO_OLD) {
/* TRANSLATORS: The kernel does not support this plugin */
return g_strdup(_("Running kernel is too old"));
}
if (plugin_flag == FWUPD_PLUGIN_FLAG_TEST_ONLY) {
/* TRANSLATORS: The plugin is only for testing */
return g_strdup(_("Plugin is only for testing"));
}
if (plugin_flag == FWUPD_PLUGIN_FLAG_MUTABLE_ENUMERATION) {
/* TRANSLATORS: The plugin enumeration might change the device current mode */
return g_strdup(_("Plugin enumeration may change device state"));
}
/* fall back for unknown types */
return g_strdup(fwupd_plugin_flag_to_string(plugin_flag));
}
static gchar *
fu_util_plugin_flag_to_cli_text(FwupdPluginFlags plugin_flag)
{
g_autofree gchar *plugin_flag_str = fu_util_plugin_flag_to_string(plugin_flag);
switch (plugin_flag) {
case FWUPD_PLUGIN_FLAG_UNKNOWN:
case FWUPD_PLUGIN_FLAG_CLEAR_UPDATABLE:
case FWUPD_PLUGIN_FLAG_USER_WARNING:
case FWUPD_PLUGIN_FLAG_NONE:
return NULL;
case FWUPD_PLUGIN_FLAG_READY:
case FWUPD_PLUGIN_FLAG_REQUIRE_HWID:
case FWUPD_PLUGIN_FLAG_MODULAR:
case FWUPD_PLUGIN_FLAG_MEASURE_SYSTEM_INTEGRITY:
case FWUPD_PLUGIN_FLAG_SECURE_CONFIG:
return fu_console_color_format(plugin_flag_str, FU_CONSOLE_COLOR_GREEN);
case FWUPD_PLUGIN_FLAG_DISABLED:
case FWUPD_PLUGIN_FLAG_NO_HARDWARE:
case FWUPD_PLUGIN_FLAG_TEST_ONLY:
case FWUPD_PLUGIN_FLAG_MUTABLE_ENUMERATION:
return fu_console_color_format(plugin_flag_str, FU_CONSOLE_COLOR_YELLOW);
case FWUPD_PLUGIN_FLAG_LEGACY_BIOS:
case FWUPD_PLUGIN_FLAG_CAPSULES_UNSUPPORTED:
case FWUPD_PLUGIN_FLAG_UNLOCK_REQUIRED:
case FWUPD_PLUGIN_FLAG_AUTH_REQUIRED:
case FWUPD_PLUGIN_FLAG_EFIVAR_NOT_MOUNTED:
case FWUPD_PLUGIN_FLAG_ESP_NOT_FOUND:
case FWUPD_PLUGIN_FLAG_ESP_NOT_VALID:
case FWUPD_PLUGIN_FLAG_KERNEL_TOO_OLD:
return fu_console_color_format(plugin_flag_str, FU_CONSOLE_COLOR_RED);
default:
break;
}
/* fall back for unknown types */
return g_steal_pointer(&plugin_flag_str);
}
gchar *
fu_util_plugin_to_string(FwupdPlugin *plugin, guint idt)
{
GString *str = g_string_new(NULL);
const gchar *hdr;
guint64 flags = fwupd_plugin_get_flags(plugin);
fwupd_codec_string_append(str, idt, fwupd_plugin_get_name(plugin), "");
/* TRANSLATORS: description of plugin state, e.g. disabled */
hdr = _("Flags");
if (flags == 0x0) {
g_autofree gchar *tmp = fu_util_plugin_flag_to_cli_text(flags);
g_autofree gchar *li = g_strdup_printf("• %s", tmp);
fwupd_codec_string_append(str, idt + 1, hdr, li);
} else {
for (guint i = 0; i < 64; i++) {
g_autofree gchar *li = NULL;
g_autofree gchar *tmp = NULL;
if ((flags & ((guint64)1 << i)) == 0)
continue;
tmp = fu_util_plugin_flag_to_cli_text((guint64)1 << i);
if (tmp == NULL)
continue;
li = g_strdup_printf("• %s", tmp);
fwupd_codec_string_append(str, idt + 1, hdr, li);
/* clear header */
hdr = "";
}
}
return g_string_free(str, FALSE);
}
static gchar *
fu_util_license_to_string(const gchar *spdx_license)
{
g_autofree const gchar **new = NULL;
g_auto(GStrv) old = NULL;
/* sanity check */
if (spdx_license == NULL) {
/* TRANSLATORS: we don't know the license of the update */
return g_strdup(_("Unknown"));
}
/* replace any LicenseRef-proprietary with it's translated form */
old = g_strsplit(spdx_license, " AND ", -1);
new = g_new0(const gchar *, g_strv_length(old) + 1);
for (guint i = 0; old[i] != NULL; i++) {
const gchar *license = old[i];
if (g_strcmp0(license, "LicenseRef-proprietary") == 0 ||
g_strcmp0(license, "proprietary") == 0) {
/* TRANSLATORS: a non-free software license */
license = _("Proprietary");
}
new[i] = license;
}
/* this is no longer SPDX */
return g_strjoinv(", ", (gchar **)new);
}
static const gchar *
fu_util_release_urgency_to_string(FwupdReleaseUrgency release_urgency)
{
if (release_urgency == FWUPD_RELEASE_URGENCY_LOW) {
/* TRANSLATORS: the release urgency */
return _("Low");
}
if (release_urgency == FWUPD_RELEASE_URGENCY_MEDIUM) {
/* TRANSLATORS: the release urgency */
return _("Medium");
}
if (release_urgency == FWUPD_RELEASE_URGENCY_HIGH) {
/* TRANSLATORS: the release urgency */
return _("High");
}
if (release_urgency == FWUPD_RELEASE_URGENCY_CRITICAL) {
/* TRANSLATORS: the release urgency */
return _("Critical");
}
/* TRANSLATORS: unknown release urgency */
return _("Unknown");
}
static const gchar *
fu_util_release_flag_to_string(FwupdReleaseFlags release_flag)
{
if (release_flag == FWUPD_RELEASE_FLAG_NONE)
return NULL;
if (release_flag == FWUPD_RELEASE_FLAG_TRUSTED_PAYLOAD) {
/* TRANSLATORS: We verified the payload against the server */
return _("Trusted payload");
}
if (release_flag == FWUPD_RELEASE_FLAG_TRUSTED_METADATA) {
/* TRANSLATORS: We verified the metadata against the server */
return _("Trusted metadata");
}
if (release_flag == FWUPD_RELEASE_FLAG_IS_UPGRADE) {
/* TRANSLATORS: version is newer */
return _("Is upgrade");
}
if (release_flag == FWUPD_RELEASE_FLAG_IS_DOWNGRADE) {
/* TRANSLATORS: version is older */
return _("Is downgrade");
}
if (release_flag == FWUPD_RELEASE_FLAG_BLOCKED_VERSION) {
/* TRANSLATORS: version cannot be installed due to policy */
return _("Blocked version");
}
if (release_flag == FWUPD_RELEASE_FLAG_BLOCKED_APPROVAL) {
/* TRANSLATORS: version cannot be installed due to policy */
return _("Not approved");
}
if (release_flag == FWUPD_RELEASE_FLAG_IS_ALTERNATE_BRANCH) {
/* TRANSLATORS: is not the main firmware stream */
return _("Alternate branch");
}
if (release_flag == FWUPD_RELEASE_FLAG_IS_COMMUNITY) {
/* TRANSLATORS: is not supported by the vendor */
return _("Community supported");
}
if (release_flag == FWUPD_RELEASE_FLAG_TRUSTED_REPORT) {
/* TRANSLATORS: someone we trust has tested this */
return _("Tested by trusted vendor");
}
/* fall back for unknown types */
return fwupd_release_flag_to_string(release_flag);
}
static void
fu_util_report_add_string(FwupdReport *report, guint idt, GString *str)
{
g_autofree gchar *title = NULL;
/* TRANSLATORS: the %s is a vendor name, e.g. Lenovo */
title = g_strdup_printf(_("Tested by %s"), fwupd_report_get_vendor(report));
fwupd_codec_string_append(str, idt, title, NULL);
/* TRANSLATORS: when the release was tested */
fwupd_codec_string_append_time(str, idt + 1, _("Tested"), fwupd_report_get_created(report));
if (fwupd_report_get_distro_id(report) != NULL) {
g_autoptr(GString) str2 = g_string_new(fwupd_report_get_distro_id(report));
if (fwupd_report_get_distro_version(report) != NULL)
g_string_append_printf(str2,
" %s",
fwupd_report_get_distro_version(report));
if (fwupd_report_get_distro_variant(report) != NULL)
g_string_append_printf(str2,
" (%s)",
fwupd_report_get_distro_variant(report));
/* TRANSLATORS: the OS the release was tested on */
fwupd_codec_string_append(str, idt + 1, _("Distribution"), str2->str);
}
fwupd_codec_string_append(str,
idt + 1,
/* TRANSLATORS: the firmware old version */
_("Old version"),
fwupd_report_get_version_old(report));
fwupd_codec_string_append(
str,
idt + 1,
/* TRANSLATORS: the fwupd version the release was tested on */
_("Version[fwupd]"),
fwupd_report_get_metadata_item(report, "RuntimeVersion(org.freedesktop.fwupd)"));
}
static gchar *
fu_util_release_to_string(FwupdRelease *rel, guint idt)
{
const gchar *title;
const gchar *tmp2;
GPtrArray *checksums = fwupd_release_get_checksums(rel);
GPtrArray *issues = fwupd_release_get_issues(rel);
GPtrArray *tags = fwupd_release_get_tags(rel);
GPtrArray *reports = fwupd_release_get_reports(rel);
guint64 flags = fwupd_release_get_flags(rel);
g_autofree gchar *desc_fb = NULL;
g_autofree gchar *name = fu_util_release_get_name(rel);
g_autoptr(GString) str = g_string_new(NULL);
g_return_val_if_fail(FWUPD_IS_RELEASE(rel), NULL);
fwupd_codec_string_append(str, idt, name, "");
/* TRANSLATORS: version number of new firmware */
fwupd_codec_string_append(str, idt + 1, _("New version"), fwupd_release_get_version(rel));
fwupd_codec_string_append(str,
idt + 1,
/* TRANSLATORS: the server the file is coming from */
_("Remote ID"),
fwupd_release_get_remote_id(rel));
fwupd_codec_string_append(str,
idt + 1,
/* TRANSLATORS: the exact component on the server */
_("Release ID"),
fwupd_release_get_id(rel));
fwupd_codec_string_append(str,
idt + 1,
/* TRANSLATORS: the stream of firmware, e.g. nonfree */
_("Branch"),
fwupd_release_get_branch(rel));
fwupd_codec_string_append(str,
idt + 1,
/* TRANSLATORS: one line summary of device */
_("Summary"),
fwupd_release_get_summary(rel));
fwupd_codec_string_append(str,
idt + 1,
/* TRANSLATORS: one line variant of release (e.g. 'China') */
_("Variant"),
fwupd_release_get_name_variant_suffix(rel));
if (fwupd_release_get_license(rel) != NULL) {
g_autofree gchar *license =
fu_util_license_to_string(fwupd_release_get_license(rel));
/* TRANSLATORS: e.g. GPLv2+, Proprietary etc */
fwupd_codec_string_append(str, idt + 1, _("License"), license);
}
/* TRANSLATORS: file size of the download */
fwupd_codec_string_append_size(str, idt + 1, _("Size"), fwupd_release_get_size(rel));
/* TRANSLATORS: when the update was built */
fwupd_codec_string_append_time(str, idt + 1, _("Created"), fwupd_release_get_created(rel));
if (fwupd_release_get_urgency(rel) != FWUPD_RELEASE_URGENCY_UNKNOWN) {
FwupdReleaseUrgency tmp = fwupd_release_get_urgency(rel);
fwupd_codec_string_append(str,
idt + 1,
/* TRANSLATORS: how important the release is */
_("Urgency"),
fu_util_release_urgency_to_string(tmp));
}
for (guint i = 0; i < reports->len; i++) {
FwupdReport *report = g_ptr_array_index(reports, i);
fu_util_report_add_string(report, idt + 1, str);
}
fwupd_codec_string_append(str,
idt + 1,
/* TRANSLATORS: more details about the update link */
_("Details"),
fwupd_release_get_details_url(rel));
fwupd_codec_string_append(str,
idt + 1,
/* TRANSLATORS: source (as in code) link */
_("Source"),
fwupd_release_get_source_url(rel));
fwupd_codec_string_append(str,
idt + 1,
/* TRANSLATORS: Software Bill of Materials link */
_("SBOM"),
fwupd_release_get_sbom_url(rel));
fwupd_codec_string_append(str,
idt + 1,
/* TRANSLATORS: manufacturer of hardware */
_("Vendor"),
fwupd_release_get_vendor(rel));
if (fwupd_release_get_install_duration(rel) != 0) {
g_autofree gchar *tmp =
fu_util_time_to_str(fwupd_release_get_install_duration(rel));
/* TRANSLATORS: length of time the update takes to apply */
fwupd_codec_string_append(str, idt + 1, _("Duration"), tmp);
}
fwupd_codec_string_append(str,
idt + 1,
/* TRANSLATORS: helpful messages for the update */
_("Update Message"),
fwupd_release_get_update_message(rel));
fwupd_codec_string_append(str,
idt + 1,
/* TRANSLATORS: helpful image for the update */
_("Update Image"),
fwupd_release_get_update_image(rel));
/* TRANSLATORS: release attributes */
title = _("Release Flags");
for (guint i = 0; i < 64; i++) {
g_autofree gchar *bullet = NULL;
if ((flags & ((guint64)1 << i)) == 0)
continue;
tmp2 = fu_util_release_flag_to_string((guint64)1 << i);
if (tmp2 == NULL)
continue;
bullet = g_strdup_printf("• %s", tmp2);
fwupd_codec_string_append(str, idt + 1, title, bullet);
title = "";
}
desc_fb = fu_util_get_release_description_with_fallback(rel);
if (desc_fb != NULL) {
g_autofree gchar *desc = NULL;
desc = fu_util_convert_description(desc_fb, NULL);
if (desc == NULL)
desc = g_strdup(fwupd_release_get_description(rel));
/* TRANSLATORS: multiline description of device */
fwupd_codec_string_append(str, idt + 1, _("Description"), desc);
}
for (guint i = 0; i < issues->len; i++) {
const gchar *issue = g_ptr_array_index(issues, i);
if (i == 0) {
fwupd_codec_string_append(
str,
idt + 1,
/* TRANSLATORS: issue fixed with the release, e.g. CVE */
ngettext("Issue", "Issues", issues->len),
issue);
} else {
fwupd_codec_string_append(str, idt + 1, "", issue);
}
}
if (tags->len > 0) {
g_autofree gchar *tag_strs = fu_strjoin(", ", tags);
fwupd_codec_string_append(
str,
idt + 1,
/* TRANSLATORS: release tag set for release, e.g. lenovo-2021q3 */
ngettext("Tag", "Tags", tags->len),
tag_strs);
}
for (guint i = 0; i < checksums->len; i++) {
const gchar *checksum = g_ptr_array_index(checksums, i);
GChecksumType checksum_type = fwupd_checksum_guess_kind(checksum);
/* avoid showing brokwn checksums */
if (checksum_type == G_CHECKSUM_SHA1)
continue;
/* TRANSLATORS: hash to that exact firmware archive */
fwupd_codec_string_append(str, idt + 1, _("Checksum"), checksum);
}
return g_string_free(g_steal_pointer(&str), FALSE);
}
static gchar *
fu_util_remote_to_string(FwupdRemote *remote, guint idt)
{
FwupdRemoteKind kind = fwupd_remote_get_kind(remote);
const gchar *tmp;
gint priority;
g_autoptr(GString) str = g_string_new(NULL);
g_return_val_if_fail(FWUPD_IS_REMOTE(remote), NULL);
fwupd_codec_string_append(str, idt, fwupd_remote_get_title(remote), NULL);
/* TRANSLATORS: remote identifier, e.g. lvfs-testing */
fwupd_codec_string_append(str, idt + 1, _("Remote ID"), fwupd_remote_get_id(remote));
/* TRANSLATORS: remote type, e.g. remote or local */
fwupd_codec_string_append(str, idt + 1, _("Type"), fwupd_remote_kind_to_string(kind));
fwupd_codec_string_append(
str,
idt + 1,
/* TRANSLATORS: if the remote is enabled */
_("Enabled"),
fwupd_remote_has_flag(remote, FWUPD_REMOTE_FLAG_ENABLED) ? "true" : "false");
if (fwupd_remote_get_kind(remote) == FWUPD_REMOTE_KIND_DOWNLOAD) {
fwupd_codec_string_append(
str,
idt + 1,
/* TRANSLATORS: if we can get metadata from peer-to-peer clients */
_("P2P Metadata"),
fwupd_remote_has_flag(remote, FWUPD_REMOTE_FLAG_ALLOW_P2P_METADATA) ? "true"
: "false");
fwupd_codec_string_append(
str,
idt + 1,
/* TRANSLATORS: if we can get metadata from peer-to-peer clients */
_("P2P Firmware"),
fwupd_remote_has_flag(remote, FWUPD_REMOTE_FLAG_ALLOW_P2P_FIRMWARE) ? "true"
: "false");
}
/* TRANSLATORS: remote checksum */
fwupd_codec_string_append(str, idt + 1, _("Checksum"), fwupd_remote_get_checksum(remote));
/* optional parameters */
if (kind == FWUPD_REMOTE_KIND_DOWNLOAD && fwupd_remote_get_age(remote) != G_MAXUINT64) {
g_autofree gchar *age_str = fu_util_time_to_str(fwupd_remote_get_age(remote));
/* TRANSLATORS: the age of the metadata */
fwupd_codec_string_append(str, idt + 1, _("Age"), age_str);
}
if (kind == FWUPD_REMOTE_KIND_DOWNLOAD && fwupd_remote_get_refresh_interval(remote) > 0) {
g_autofree gchar *age_str =
fu_util_time_to_str(fwupd_remote_get_refresh_interval(remote));
/* TRANSLATORS: how often we should refresh the metadata */
fwupd_codec_string_append(str, idt + 1, _("Refresh Interval"), age_str);
}
priority = fwupd_remote_get_priority(remote);
if (priority != 0) {
g_autofree gchar *priority_str = NULL;
priority_str = g_strdup_printf("%i", priority);
/* TRANSLATORS: the numeric priority */
fwupd_codec_string_append(str, idt + 1, _("Priority"), priority_str);
}
/* TRANSLATORS: remote filename base */
fwupd_codec_string_append(str, idt + 1, _("Username"), fwupd_remote_get_username(remote));
tmp = fwupd_remote_get_password(remote);
if (tmp != NULL) {
g_autofree gchar *hidden = g_strnfill(fu_strwidth(tmp), '*');
/* TRANSLATORS: remote filename base */
fwupd_codec_string_append(str, idt + 1, _("Password"), hidden);
}
fwupd_codec_string_append(str,
idt + 1,
/* TRANSLATORS: filename of the local file */
_("Filename"),
fwupd_remote_get_filename_cache(remote));
fwupd_codec_string_append(str,
idt + 1,
/* TRANSLATORS: filename of the local file */
_("Filename Signature"),
fwupd_remote_get_filename_cache_sig(remote));
fwupd_codec_string_append(str,
idt + 1,
/* TRANSLATORS: full path of the remote.conf file */
_("Filename Source"),
fwupd_remote_get_filename_source(remote));
fwupd_codec_string_append(str,
idt + 1,
/* TRANSLATORS: remote URI */
_("Metadata URI"),
fwupd_remote_get_metadata_uri(remote));
fwupd_codec_string_append(str,
idt + 1,
/* TRANSLATORS: remote URI */
_("Metadata Signature"),
fwupd_remote_get_metadata_uri_sig(remote));
fwupd_codec_string_append(str,
idt + 1,
/* TRANSLATORS: remote URI */
_("Firmware Base URI"),
fwupd_remote_get_firmware_base_uri(remote));
tmp = fwupd_remote_get_report_uri(remote);
if (tmp != NULL) {
/* TRANSLATORS: URI to send success/failure reports */
fwupd_codec_string_append(str, idt + 1, _("Report URI"), tmp);
fwupd_codec_string_append(
str,
idt + 1,
/* TRANSLATORS: Boolean value to automatically send reports */
_("Automatic Reporting"),
fwupd_remote_has_flag(remote, FWUPD_REMOTE_FLAG_AUTOMATIC_REPORTS) ? "true"
: "false");
}
return g_string_free(g_steal_pointer(&str), FALSE);
}
const gchar *
fu_util_request_get_message(FwupdRequest *req)
{
if (fwupd_request_has_flag(req, FWUPD_REQUEST_FLAG_ALLOW_GENERIC_MESSAGE)) {
if (g_strcmp0(fwupd_request_get_id(req), FWUPD_REQUEST_ID_REMOVE_REPLUG) == 0) {
/* TRANSLATORS: warning message shown after update has been scheduled */
return _("The update will continue when the device USB cable has been "
"unplugged and then re-inserted.");
}
if (g_strcmp0(fwupd_request_get_id(req), FWUPD_REQUEST_ID_REMOVE_USB_CABLE) == 0) {
/* TRANSLATORS: warning message shown after update has been scheduled */
return _("The update will continue when the device USB cable has been "
"unplugged.");
}
if (g_strcmp0(fwupd_request_get_id(req), FWUPD_REQUEST_ID_INSERT_USB_CABLE) == 0) {
/* TRANSLATORS: warning message shown after update has been scheduled */
return _("The update will continue when the device USB cable has been "
"re-inserted.");
}
if (g_strcmp0(fwupd_request_get_id(req), FWUPD_REQUEST_ID_PRESS_UNLOCK) == 0) {
/* TRANSLATORS: warning message */
return _("Press unlock on the device to continue the update process.");
}
if (g_strcmp0(fwupd_request_get_id(req), FWUPD_REQUEST_ID_DO_NOT_POWER_OFF) == 0) {
/* TRANSLATORS: warning message shown after update has been scheduled */
return _("Do not turn off your computer or remove the AC adaptor "
"while the update is in progress.");
}
if (g_strcmp0(fwupd_request_get_id(req), FWUPD_REQUEST_ID_REPLUG_INSTALL) == 0) {
/* TRANSLATORS: message shown after device has been marked for emulation */
return _("Unplug and replug the device to continue the update process.");
}
if (g_strcmp0(fwupd_request_get_id(req), FWUPD_REQUEST_ID_REPLUG_POWER) == 0) {
/* TRANSLATORS: warning message */
return _("The update will continue when the device power cable has been "
"removed and re-inserted.");
}
}
return fwupd_request_get_message(req);
}
static const gchar *
fu_util_security_attr_result_to_string(FwupdSecurityAttrResult result)
{
if (result == FWUPD_SECURITY_ATTR_RESULT_VALID) {
/* TRANSLATORS: Suffix: the HSI result */
return _("Valid");
}
if (result == FWUPD_SECURITY_ATTR_RESULT_NOT_VALID) {
/* TRANSLATORS: Suffix: the HSI result */
return _("Invalid");
}
if (result == FWUPD_SECURITY_ATTR_RESULT_ENABLED) {
/* TRANSLATORS: Suffix: the HSI result */
return _("Enabled");
}
if (result == FWUPD_SECURITY_ATTR_RESULT_NOT_ENABLED) {
/* TRANSLATORS: Suffix: the HSI result */
return _("Disabled");
}
if (result == FWUPD_SECURITY_ATTR_RESULT_LOCKED) {
/* TRANSLATORS: Suffix: the HSI result */
return _("Locked");
}
if (result == FWUPD_SECURITY_ATTR_RESULT_NOT_LOCKED) {
/* TRANSLATORS: Suffix: the HSI result */
return _("Unlocked");
}
if (result == FWUPD_SECURITY_ATTR_RESULT_ENCRYPTED) {
/* TRANSLATORS: Suffix: the HSI result */
return _("Encrypted");
}
if (result == FWUPD_SECURITY_ATTR_RESULT_NOT_ENCRYPTED) {
/* TRANSLATORS: Suffix: the HSI result */
return _("Unencrypted");
}
if (result == FWUPD_SECURITY_ATTR_RESULT_TAINTED) {
/* TRANSLATORS: Suffix: the HSI result */
return _("Tainted");
}
if (result == FWUPD_SECURITY_ATTR_RESULT_NOT_TAINTED) {
/* TRANSLATORS: Suffix: the HSI result */
return _("Untainted");
}
if (result == FWUPD_SECURITY_ATTR_RESULT_FOUND) {
/* TRANSLATORS: Suffix: the HSI result */
return _("Found");
}
if (result == FWUPD_SECURITY_ATTR_RESULT_NOT_FOUND) {
/* TRANSLATORS: Suffix: the HSI result */
return _("Not found");
}
if (result == FWUPD_SECURITY_ATTR_RESULT_SUPPORTED) {
/* TRANSLATORS: Suffix: the HSI result */
return _("Supported");
}
if (result == FWUPD_SECURITY_ATTR_RESULT_NOT_SUPPORTED) {
/* TRANSLATORS: Suffix: the HSI result */
return _("Not supported");
}
return NULL;
}
static const gchar *
fu_util_security_attr_get_result(FwupdSecurityAttr *attr)
{
const gchar *tmp;
/* common case */
tmp = fu_util_security_attr_result_to_string(fwupd_security_attr_get_result(attr));
if (tmp != NULL)
return tmp;
/* fallback */
if (fwupd_security_attr_has_flag(attr, FWUPD_SECURITY_ATTR_FLAG_SUCCESS)) {
/* TRANSLATORS: Suffix: the HSI result */
return _("OK");
}
/* TRANSLATORS: Suffix: the fallback HSI result */
return _("Unknown");
}
static void
fu_util_security_attr_append_str(FwupdSecurityAttr *attr,
GString *str,
FuSecurityAttrToStringFlags flags)
{
const gchar *name;
/* hide obsoletes by default */
if (fwupd_security_attr_has_flag(attr, FWUPD_SECURITY_ATTR_FLAG_OBSOLETED) &&
(flags & FU_SECURITY_ATTR_TO_STRING_FLAG_SHOW_OBSOLETES) == 0)
return;
name = dgettext(GETTEXT_PACKAGE, fwupd_security_attr_get_name(attr));
if (name == NULL)
name = fwupd_security_attr_get_appstream_id(attr);
if (fwupd_security_attr_has_flag(attr, FWUPD_SECURITY_ATTR_FLAG_OBSOLETED)) {
g_string_append(str, "✦ ");
} else if (fwupd_security_attr_has_flag(attr, FWUPD_SECURITY_ATTR_FLAG_SUCCESS)) {
g_string_append(str, "✔ ");
} else {
g_string_append(str, "✘ ");
}
g_string_append_printf(str, "%s:", name);
for (guint i = fu_strwidth(name); i < 30; i++)
g_string_append(str, " ");
if (fwupd_security_attr_has_flag(attr, FWUPD_SECURITY_ATTR_FLAG_OBSOLETED)) {
g_autofree gchar *fmt =
fu_console_color_format(fu_util_security_attr_get_result(attr),
FU_CONSOLE_COLOR_YELLOW);
g_string_append(str, fmt);
} else if (fwupd_security_attr_has_flag(attr, FWUPD_SECURITY_ATTR_FLAG_SUCCESS)) {
g_autofree gchar *fmt =
fu_console_color_format(fu_util_security_attr_get_result(attr),
FU_CONSOLE_COLOR_GREEN);
g_string_append(str, fmt);
} else {
g_autofree gchar *fmt =
fu_console_color_format(fu_util_security_attr_get_result(attr),
FU_CONSOLE_COLOR_RED);
g_string_append(str, fmt);
}
if ((flags & FU_SECURITY_ATTR_TO_STRING_FLAG_SHOW_URLS) > 0 &&
fwupd_security_attr_get_url(attr) != NULL) {
g_string_append_printf(str, ": %s", fwupd_security_attr_get_url(attr));
}
if (fwupd_security_attr_has_flag(attr, FWUPD_SECURITY_ATTR_FLAG_OBSOLETED)) {
/* TRANSLATORS: this is shown as a suffix for obsoleted tests */
g_string_append_printf(str, " %s", _("(obsoleted)"));
}
g_string_append_printf(str, "\n");
}
static gchar *
fu_util_security_event_to_string(FwupdSecurityAttr *attr)
{
const gchar *name;
struct {
const gchar *appstream_id;
FwupdSecurityAttrResult result_old;
FwupdSecurityAttrResult result_new;
const gchar *text;
} items[] = {{FWUPD_SECURITY_ATTR_ID_IOMMU,
FWUPD_SECURITY_ATTR_RESULT_NOT_FOUND,
FWUPD_SECURITY_ATTR_RESULT_ENABLED,
/* TRANSLATORS: HSI event title */
_("IOMMU device protection enabled")},
{FWUPD_SECURITY_ATTR_ID_IOMMU,
FWUPD_SECURITY_ATTR_RESULT_ENABLED,
FWUPD_SECURITY_ATTR_RESULT_NOT_FOUND,
/* TRANSLATORS: HSI event title */
_("IOMMU device protection disabled")},
/* ------------------------------------------*/
{FWUPD_SECURITY_ATTR_ID_FWUPD_PLUGINS,
FWUPD_SECURITY_ATTR_RESULT_TAINTED,
FWUPD_SECURITY_ATTR_RESULT_NOT_TAINTED,
NULL},
{FWUPD_SECURITY_ATTR_ID_FWUPD_PLUGINS,
FWUPD_SECURITY_ATTR_RESULT_NOT_TAINTED,
FWUPD_SECURITY_ATTR_RESULT_TAINTED,
NULL},
{FWUPD_SECURITY_ATTR_ID_FWUPD_PLUGINS,
FWUPD_SECURITY_ATTR_RESULT_UNKNOWN,
FWUPD_SECURITY_ATTR_RESULT_NOT_ENABLED,
NULL},
/* ------------------------------------------*/
{FWUPD_SECURITY_ATTR_ID_KERNEL_TAINTED,
FWUPD_SECURITY_ATTR_RESULT_TAINTED,
FWUPD_SECURITY_ATTR_RESULT_NOT_TAINTED,
/* TRANSLATORS: HSI event title */
_("Kernel is no longer tainted")},
{FWUPD_SECURITY_ATTR_ID_KERNEL_TAINTED,
FWUPD_SECURITY_ATTR_RESULT_NOT_TAINTED,
FWUPD_SECURITY_ATTR_RESULT_TAINTED,
/* TRANSLATORS: HSI event title */
_("Kernel is tainted")},
/* ------------------------------------------*/
{FWUPD_SECURITY_ATTR_ID_KERNEL_LOCKDOWN,
FWUPD_SECURITY_ATTR_RESULT_ENABLED,
FWUPD_SECURITY_ATTR_RESULT_NOT_ENABLED,
/* TRANSLATORS: HSI event title */
_("Kernel lockdown disabled")},
{FWUPD_SECURITY_ATTR_ID_KERNEL_LOCKDOWN,
FWUPD_SECURITY_ATTR_RESULT_NOT_ENABLED,
FWUPD_SECURITY_ATTR_RESULT_ENABLED,
/* TRANSLATORS: HSI event title */
_("Kernel lockdown enabled")},
/* ------------------------------------------*/
{FWUPD_SECURITY_ATTR_ID_PREBOOT_DMA_PROTECTION,
FWUPD_SECURITY_ATTR_RESULT_ENABLED,
FWUPD_SECURITY_ATTR_RESULT_NOT_ENABLED,
/* TRANSLATORS: HSI event title */
_("Pre-boot DMA protection is disabled")},
{FWUPD_SECURITY_ATTR_ID_PREBOOT_DMA_PROTECTION,
FWUPD_SECURITY_ATTR_RESULT_NOT_ENABLED,
FWUPD_SECURITY_ATTR_RESULT_ENABLED,
/* TRANSLATORS: HSI event title */
_("Pre-boot DMA protection is enabled")},
/* ------------------------------------------*/
{FWUPD_SECURITY_ATTR_ID_UEFI_SECUREBOOT,
FWUPD_SECURITY_ATTR_RESULT_ENABLED,
FWUPD_SECURITY_ATTR_RESULT_NOT_ENABLED,
/* TRANSLATORS: HSI event title */
_("Secure Boot disabled")},
{FWUPD_SECURITY_ATTR_ID_UEFI_SECUREBOOT,
FWUPD_SECURITY_ATTR_RESULT_NOT_ENABLED,
FWUPD_SECURITY_ATTR_RESULT_ENABLED,
/* TRANSLATORS: HSI event title */
_("Secure Boot enabled")},
/* ------------------------------------------*/
{FWUPD_SECURITY_ATTR_ID_TPM_EMPTY_PCR,
FWUPD_SECURITY_ATTR_RESULT_UNKNOWN,
FWUPD_SECURITY_ATTR_RESULT_VALID,
/* TRANSLATORS: HSI event title */
_("All TPM PCRs are valid")},
{FWUPD_SECURITY_ATTR_ID_TPM_EMPTY_PCR,
FWUPD_SECURITY_ATTR_RESULT_VALID,
FWUPD_SECURITY_ATTR_RESULT_NOT_VALID,
/* TRANSLATORS: HSI event title */
_("A TPM PCR is now an invalid value")},
{FWUPD_SECURITY_ATTR_ID_TPM_EMPTY_PCR,
FWUPD_SECURITY_ATTR_RESULT_NOT_VALID,
FWUPD_SECURITY_ATTR_RESULT_VALID,
/* TRANSLATORS: HSI event title */
_("All TPM PCRs are now valid")},
/* ------------------------------------------*/
{FWUPD_SECURITY_ATTR_ID_TPM_RECONSTRUCTION_PCR0,
FWUPD_SECURITY_ATTR_RESULT_NOT_FOUND,
FWUPD_SECURITY_ATTR_RESULT_NOT_VALID,
/* TRANSLATORS: HSI event title */
_("TPM PCR0 reconstruction is invalid")},
{FWUPD_SECURITY_ATTR_ID_TPM_RECONSTRUCTION_PCR0,
FWUPD_SECURITY_ATTR_RESULT_NOT_VALID,
FWUPD_SECURITY_ATTR_RESULT_VALID,
/* TRANSLATORS: HSI event title */
_("TPM PCR0 reconstruction is now valid")},
/* ------------------------------------------*/
{FWUPD_SECURITY_ATTR_ID_UEFI_MEMORY_PROTECTION,
FWUPD_SECURITY_ATTR_RESULT_NOT_ENABLED,
FWUPD_SECURITY_ATTR_RESULT_NOT_LOCKED,
/* TRANSLATORS: HSI event title */
_("UEFI memory protection enabled but not locked")},
{FWUPD_SECURITY_ATTR_ID_UEFI_MEMORY_PROTECTION,
FWUPD_SECURITY_ATTR_RESULT_NOT_ENABLED,
FWUPD_SECURITY_ATTR_RESULT_LOCKED,
/* TRANSLATORS: HSI event title */
_("UEFI memory protection enabled and locked")},
{FWUPD_SECURITY_ATTR_ID_UEFI_MEMORY_PROTECTION,
FWUPD_SECURITY_ATTR_RESULT_NOT_LOCKED,
FWUPD_SECURITY_ATTR_RESULT_LOCKED,
/* TRANSLATORS: HSI event title */
_("UEFI memory protection is now locked")},
{FWUPD_SECURITY_ATTR_ID_UEFI_MEMORY_PROTECTION,
FWUPD_SECURITY_ATTR_RESULT_LOCKED,
FWUPD_SECURITY_ATTR_RESULT_NOT_LOCKED,
/* TRANSLATORS: HSI event title */
_("UEFI memory protection is now unlocked")},
{FWUPD_SECURITY_ATTR_ID_UEFI_DB,
FWUPD_SECURITY_ATTR_RESULT_NOT_VALID,
FWUPD_SECURITY_ATTR_RESULT_VALID,
/* TRANSLATORS: HSI event title */
_("The UEFI certificate store is now up to date")},
{NULL, 0, 0, NULL}};
/* sanity check */
if (fwupd_security_attr_get_appstream_id(attr) == NULL)
return NULL;
if (fwupd_security_attr_get_result(attr) == FWUPD_SECURITY_ATTR_RESULT_UNKNOWN &&
fwupd_security_attr_get_result_fallback(attr) == FWUPD_SECURITY_ATTR_RESULT_UNKNOWN)
return NULL;
/* look for prepared text */
for (guint i = 0; items[i].appstream_id != NULL; i++) {
if (g_strcmp0(fwupd_security_attr_get_appstream_id(attr), items[i].appstream_id) ==
0 &&
fwupd_security_attr_get_result(attr) == items[i].result_new &&
fwupd_security_attr_get_result_fallback(attr) == items[i].result_old)
return g_strdup(items[i].text);
}
/* disappeared */
if (fwupd_security_attr_get_result(attr) == FWUPD_SECURITY_ATTR_RESULT_UNKNOWN) {
name = dgettext(GETTEXT_PACKAGE, fwupd_security_attr_get_name(attr));
return g_strdup_printf(
/* TRANSLATORS: %1 refers to some kind of security test, e.g. "SPI BIOS region".
%2 refers to a result value, e.g. "Invalid" */
_("%s disappeared: %s"),
name,
fu_util_security_attr_result_to_string(
fwupd_security_attr_get_result_fallback(attr)));
}
/* appeared */
if (fwupd_security_attr_get_result_fallback(attr) == FWUPD_SECURITY_ATTR_RESULT_UNKNOWN) {
name = dgettext(GETTEXT_PACKAGE, fwupd_security_attr_get_name(attr));
return g_strdup_printf(
/* TRANSLATORS: %1 refers to some kind of security test, e.g. "Encrypted RAM".
%2 refers to a result value, e.g. "Invalid" */
_("%s appeared: %s"),
name,
fu_util_security_attr_result_to_string(fwupd_security_attr_get_result(attr)));
}
/* fall back to something sensible */
name = dgettext(GETTEXT_PACKAGE, fwupd_security_attr_get_name(attr));
return g_strdup_printf(
/* TRANSLATORS: %1 refers to some kind of security test, e.g. "UEFI platform key".
* %2 and %3 refer to results value, e.g. "Valid" and "Invalid" */
_("%s changed: %s → %s"),
name,
fu_util_security_attr_result_to_string(fwupd_security_attr_get_result_fallback(attr)),
fu_util_security_attr_result_to_string(fwupd_security_attr_get_result(attr)));
}
gchar *
fu_util_security_events_to_string(GPtrArray *events, FuSecurityAttrToStringFlags strflags)
{
g_autoptr(GString) str = g_string_new(NULL);
/* debugging */
if (g_getenv("FWUPD_VERBOSE") != NULL) {
for (guint i = 0; i < events->len; i++) {
FwupdSecurityAttr *attr = g_ptr_array_index(events, i);
g_autofree gchar *tmp = fwupd_codec_to_string(FWUPD_CODEC(attr));
g_info("%s", tmp);
}
}
for (guint i = 0; i < events->len; i++) {
FwupdSecurityAttr *attr = g_ptr_array_index(events, i);
g_autoptr(GDateTime) date = NULL;
g_autofree gchar *dtstr = NULL;
g_autofree gchar *check = NULL;
g_autofree gchar *eventstr = NULL;
/* skip events that have either been added or removed with no prior value */
if (fwupd_security_attr_get_result(attr) == FWUPD_SECURITY_ATTR_RESULT_UNKNOWN ||
fwupd_security_attr_get_result_fallback(attr) ==
FWUPD_SECURITY_ATTR_RESULT_UNKNOWN)
continue;
date = g_date_time_new_from_unix_utc((gint64)fwupd_security_attr_get_created(attr));
dtstr = g_date_time_format(date, "%F %T");
eventstr = fu_util_security_event_to_string(attr);
if (eventstr == NULL)
continue;
if (fwupd_security_attr_has_flag(attr, FWUPD_SECURITY_ATTR_FLAG_SUCCESS)) {
check = fu_console_color_format("✔", FU_CONSOLE_COLOR_GREEN);
} else {
check = fu_console_color_format("✘", FU_CONSOLE_COLOR_RED);
}
if (str->len == 0) {
/* TRANSLATORS: title for host security events */
g_string_append_printf(str, "%s\n", _("Host Security Events"));
}
g_string_append_printf(str, " %s: %s %s\n", dtstr, check, eventstr);
}
/* no output required */
if (str->len == 0)
return NULL;
/* success */
return g_string_free(g_steal_pointer(&str), FALSE);
}
gchar *
fu_util_security_issues_to_string(GPtrArray *devices)
{
g_autoptr(GString) str = g_string_new(NULL);
for (guint i = 0; i < devices->len; i++) {
FwupdDevice *device = g_ptr_array_index(devices, i);
GPtrArray *issues = fwupd_device_get_issues(device);
if (issues->len == 0)
continue;
if (str->len == 0) {
g_string_append_printf(
str,
"%s\n",
/* TRANSLATORS: now list devices with unfixed high-priority issues */
_("There are devices with issues:"));
}
g_string_append_printf(str,
"\n %s — %s:\n",
fwupd_device_get_vendor(device),
fwupd_device_get_name(device));
for (guint j = 0; j < issues->len; j++) {
const gchar *issue = g_ptr_array_index(issues, j);
g_string_append_printf(str, " • %s\n", issue);
}
}
/* no output required */
if (str->len == 0)
return NULL;
/* success */
return g_string_free(g_steal_pointer(&str), FALSE);
}
gchar *
fu_util_security_attrs_to_string(GPtrArray *attrs, FuSecurityAttrToStringFlags strflags)
{
FwupdSecurityAttrFlags flags = FWUPD_SECURITY_ATTR_FLAG_NONE;
const FwupdSecurityAttrFlags hpi_suffixes[] = {
FWUPD_SECURITY_ATTR_FLAG_RUNTIME_ISSUE,
FWUPD_SECURITY_ATTR_FLAG_NONE,
};
GString *str = g_string_new(NULL);
gboolean low_help = FALSE;
gboolean runtime_help = FALSE;
gboolean pcr0_help = FALSE;
for (guint j = 1; j <= FWUPD_SECURITY_ATTR_LEVEL_LAST; j++) {
gboolean has_header = FALSE;
for (guint i = 0; i < attrs->len; i++) {
FwupdSecurityAttr *attr = g_ptr_array_index(attrs, i);
if (fwupd_security_attr_get_level(attr) != j)
continue;
if (!has_header) {
g_string_append_printf(str, "\n\033[1mHSI-%u\033[0m\n", j);
has_header = TRUE;
}
fu_util_security_attr_append_str(attr, str, strflags);
/* make sure they have at least HSI-1 */
if (j < FWUPD_SECURITY_ATTR_LEVEL_IMPORTANT &&
!fwupd_security_attr_has_flag(attr,
FWUPD_SECURITY_ATTR_FLAG_OBSOLETED) &&
!fwupd_security_attr_has_flag(attr, FWUPD_SECURITY_ATTR_FLAG_SUCCESS))
low_help = TRUE;
/* check for PCR0 not matching */
if (g_strcmp0(fwupd_security_attr_get_appstream_id(attr),
FWUPD_SECURITY_ATTR_ID_TPM_RECONSTRUCTION_PCR0) == 0 &&
fwupd_security_attr_get_result(attr) ==
FWUPD_SECURITY_ATTR_RESULT_NOT_VALID)
pcr0_help = TRUE;
}
}
for (guint i = 0; i < attrs->len; i++) {
FwupdSecurityAttr *attr = g_ptr_array_index(attrs, i);
flags |= fwupd_security_attr_get_flags(attr);
}
for (guint j = 0; hpi_suffixes[j] != FWUPD_SECURITY_ATTR_FLAG_NONE; j++) {
if (flags & hpi_suffixes[j]) {
g_string_append_printf(str,
"\n\033[1m%s -%s\033[0m\n",
/* TRANSLATORS: this is the HSI suffix */
_("Runtime Suffix"),
fwupd_security_attr_flag_to_suffix(hpi_suffixes[j]));
for (guint i = 0; i < attrs->len; i++) {
FwupdSecurityAttr *attr = g_ptr_array_index(attrs, i);
if (!fwupd_security_attr_has_flag(attr, hpi_suffixes[j]))
continue;
if (fwupd_security_attr_has_flag(
attr,
FWUPD_SECURITY_ATTR_FLAG_RUNTIME_ISSUE) &&
!fwupd_security_attr_has_flag(attr,
FWUPD_SECURITY_ATTR_FLAG_SUCCESS))
runtime_help = TRUE;
fu_util_security_attr_append_str(attr, str, strflags);
}
}
}
if (low_help) {
g_string_append_printf(
str,
"\n%s\n » %s\n",
/* TRANSLATORS: this is instructions on how to improve the HSI security level */
_("This system has a low HSI security level."),
"https://fwupd.github.io/hsi.html#low-security-level");
}
if (runtime_help) {
g_string_append_printf(
str,
"\n%s\n » %s\n",
/* TRANSLATORS: this is instructions on how to improve the HSI suffix */
_("This system has HSI runtime issues."),
"https://fwupd.github.io/hsi.html#hsi-runtime-suffix");
}
if (pcr0_help) {
g_string_append_printf(
str,
"\n%s\n » %s\n",
/* TRANSLATORS: this is more background on a security measurement problem */
_("The TPM PCR0 differs from reconstruction."),
"https://fwupd.github.io/hsi.html#pcr0-tpm-event-log-reconstruction");
}
return g_string_free(str, FALSE);
}
gint
fu_util_sort_devices_by_flags_cb(gconstpointer a, gconstpointer b)
{
FuDevice *dev_a = *((FuDevice **)a);
FuDevice *dev_b = *((FuDevice **)b);
if ((!fu_device_has_flag(dev_a, FWUPD_DEVICE_FLAG_UPDATABLE) &&
fu_device_has_flag(dev_b, FWUPD_DEVICE_FLAG_UPDATABLE)) ||
(!fu_device_has_flag(dev_a, FWUPD_DEVICE_FLAG_SUPPORTED) &&
fu_device_has_flag(dev_b, FWUPD_DEVICE_FLAG_SUPPORTED)))
return -1;
if ((fu_device_has_flag(dev_a, FWUPD_DEVICE_FLAG_UPDATABLE) &&
!fu_device_has_flag(dev_b, FWUPD_DEVICE_FLAG_UPDATABLE)) ||
(fu_device_has_flag(dev_a, FWUPD_DEVICE_FLAG_SUPPORTED) &&
!fu_device_has_flag(dev_b, FWUPD_DEVICE_FLAG_SUPPORTED)))
return 1;
return 0;
}
gboolean
fu_util_switch_branch_warning(FuConsole *console,
FwupdDevice *dev,
FwupdRelease *rel,
gboolean assume_yes,
GError **error)
{
const gchar *desc_markup = NULL;
g_autofree gchar *desc_plain = NULL;
g_autofree gchar *title = NULL;
g_autoptr(GString) desc_full = g_string_new(NULL);
/* warn the user if the vendor is different */
if (g_strcmp0(fwupd_device_get_vendor(dev), fwupd_release_get_vendor(rel)) != 0) {
g_string_append_printf(
desc_full,
/* TRANSLATORS: %1 is the firmware vendor, %2 is the device vendor name */
_("The firmware from %s is not "
"supplied by %s, the hardware vendor."),
fwupd_release_get_vendor(rel),
fwupd_device_get_vendor(dev));
g_string_append(desc_full, "\n\n");
g_string_append_printf(desc_full,
/* TRANSLATORS: %1 is the device vendor name */
_("Your hardware may be damaged using this firmware, "
"and installing this release may void any warranty "
"with %s."),
fwupd_device_get_vendor(dev));
g_string_append(desc_full, "\n\n");
}
/* from the <description> in the AppStream data */
desc_markup = fwupd_release_get_description(rel);
if (desc_markup == NULL)
return TRUE;
desc_plain = fu_util_convert_description(desc_markup, error);
if (desc_plain == NULL)
return FALSE;
g_string_append(desc_full, desc_plain);
/* TRANSLATORS: show and ask user to confirm --
* %1 is the old branch name, %2 is the new branch name */
title = g_strdup_printf(_("Switch branch from %s to %s?"),
fu_util_branch_for_display(fwupd_device_get_branch(dev)),
fu_util_branch_for_display(fwupd_release_get_branch(rel)));
fu_console_box(console, title, desc_full->str, 80);
if (!assume_yes) {
if (!fu_console_input_bool(console,
FALSE,
"%s",
/* TRANSLATORS: should the branch be changed */
_("Do you understand the consequences "
"of changing the firmware branch?"))) {
g_set_error_literal(error,
FWUPD_ERROR,
FWUPD_ERROR_NOTHING_TO_DO,
"Declined branch switch");
return FALSE;
}
}
return TRUE;
}
gboolean
fu_util_prompt_warning_fde(FuConsole *console, FwupdDevice *dev, GError **error)
{
const gchar *url = "https://github.com/fwupd/fwupd/wiki/Full-Disk-Encryption-Detected";
g_autoptr(GString) str = g_string_new(NULL);
if (!fwupd_device_has_flag(dev, FWUPD_DEVICE_FLAG_AFFECTS_FDE))
return TRUE;
g_string_append(
str,
/* TRANSLATORS: the platform secret is stored in the PCRx registers on the TPM */
_("Some of the platform secrets may be invalidated when updating this firmware."));
g_string_append(str, " ");
g_string_append(str,
/* TRANSLATORS: 'recovery key' here refers to a code, rather than a physical
metal thing */
_("Please ensure you have the volume recovery key before continuing."));
g_string_append(str, "\n\n");
g_string_append_printf(str,
/* TRANSLATORS: the %1 is a URL to a wiki page */
_("See %s for more details."),
url);
/* TRANSLATORS: title text, shown as a warning */
fu_console_box(console, _("Full Disk Encryption Detected"), str->str, 80);
/* TRANSLATORS: prompt to apply the update */
if (!fu_console_input_bool(console, TRUE, "%s", _("Perform operation?"))) {
g_set_error_literal(error,
FWUPD_ERROR,
FWUPD_ERROR_NOTHING_TO_DO,
"Request canceled");
return FALSE;
}
return TRUE;
}
void
fu_util_show_unsupported_warning(FuConsole *console)
{
#ifndef SUPPORTED_BUILD
if (g_getenv("FWUPD_SUPPORTED") != NULL)
return;
/* TRANSLATORS: this is a prefix on the console */
fu_console_print_full(console,
FU_CONSOLE_PRINT_FLAG_WARNING | FU_CONSOLE_PRINT_FLAG_STDERR,
"%s\n",
/* TRANSLATORS: unsupported build of the package */
_("This package has not been validated, it may not work properly."));
#endif
}
gboolean
fu_util_modify_remote_warning(FuConsole *console,
FwupdRemote *remote,
gboolean assume_yes,
GError **error)
{
const gchar *warning_markup = NULL;
g_autofree gchar *warning_plain = NULL;
/* get formatted text */
warning_markup = fwupd_remote_get_agreement(remote);
if (warning_markup == NULL)
return TRUE;
warning_plain = fu_util_convert_description(warning_markup, error);
if (warning_plain == NULL)
return FALSE;
/* TRANSLATORS: a remote here is like a 'repo' or software source */
fu_console_box(console, _("Enable new remote?"), warning_plain, 80);
if (!assume_yes) {
if (!fu_console_input_bool(console,
TRUE,
"%s",
/* TRANSLATORS: should the remote still be enabled */
_("Agree and enable the remote?"))) {
g_set_error_literal(error,
FWUPD_ERROR,
FWUPD_ERROR_NOTHING_TO_DO,
"Declined agreement");
return FALSE;
}
}
return TRUE;
}
G_DEFINE_AUTOPTR_CLEANUP_FUNC(CURLU, curl_url_cleanup)
gboolean
fu_util_is_url(const gchar *perhaps_url)
{
g_autoptr(CURLU) h = curl_url();
return curl_url_set(h, CURLUPART_URL, perhaps_url, 0) == CURLUE_OK;
}
gboolean
fu_util_print_builder(FuConsole *console, JsonBuilder *builder, GError **error)
{
g_autofree gchar *data = NULL;
g_autoptr(JsonGenerator) json_generator = NULL;
g_autoptr(JsonNode) json_root = NULL;
/* export as a string */
json_root = json_builder_get_root(builder);
json_generator = json_generator_new();
json_generator_set_pretty(json_generator, TRUE);
json_generator_set_root(json_generator, json_root);
data = json_generator_to_data(json_generator, NULL);
if (data == NULL) {
g_set_error_literal(error,
FWUPD_ERROR,
FWUPD_ERROR_INTERNAL,
"Failed to convert to JSON string");
return FALSE;
}
/* just print */
fu_console_print_literal(console, data);
return TRUE;
}
void
fu_util_print_error_as_json(FuConsole *console, const GError *error)
{
g_autoptr(JsonBuilder) builder = json_builder_new();
json_builder_begin_object(builder);
json_builder_set_member_name(builder, "Error");
json_builder_begin_object(builder);
json_builder_set_member_name(builder, "Domain");
json_builder_add_string_value(builder, g_quark_to_string(error->domain));
json_builder_set_member_name(builder, "Code");
json_builder_add_int_value(builder, error->code);
json_builder_set_member_name(builder, "Message");
json_builder_add_string_value(builder, error->message);
json_builder_end_object(builder);
json_builder_end_object(builder);
fu_util_print_builder(console, builder, NULL);
}
typedef enum {
FU_UTIL_DEPENDENCY_KIND_UNKNOWN,
FU_UTIL_DEPENDENCY_KIND_RUNTIME,
FU_UTIL_DEPENDENCY_KIND_COMPILE,
} FuUtilDependencyKind;
static const gchar *
fu_util_dependency_kind_to_string(FuUtilDependencyKind dependency_kind)
{
if (dependency_kind == FU_UTIL_DEPENDENCY_KIND_RUNTIME)
return "runtime";
if (dependency_kind == FU_UTIL_DEPENDENCY_KIND_COMPILE)
return "compile";
return NULL;
}
static gchar *
fu_util_parse_project_dependency(const gchar *str, FuUtilDependencyKind *dependency_kind)
{
g_return_val_if_fail(str != NULL, NULL);
if (g_str_has_prefix(str, "RuntimeVersion(")) {
gsize strsz = strlen(str);
if (dependency_kind != NULL)
*dependency_kind = FU_UTIL_DEPENDENCY_KIND_RUNTIME;
return g_strndup(str + 15, strsz - 16);
}
if (g_str_has_prefix(str, "CompileVersion(")) {
gsize strsz = strlen(str);
if (dependency_kind != NULL)
*dependency_kind = FU_UTIL_DEPENDENCY_KIND_COMPILE;
return g_strndup(str + 15, strsz - 16);
}
return g_strdup(str);
}
static gboolean
fu_util_print_version_key_valid(const gchar *key)
{
g_return_val_if_fail(key != NULL, FALSE);
if (g_str_has_prefix(key, "RuntimeVersion"))
return TRUE;
if (g_str_has_prefix(key, "CompileVersion"))
return TRUE;
return FALSE;
}
gboolean
fu_util_project_versions_as_json(FuConsole *console, GHashTable *metadata, GError **error)
{
GHashTableIter iter;
const gchar *key;
const gchar *value;
g_autoptr(JsonBuilder) builder = json_builder_new();
json_builder_begin_object(builder);
json_builder_set_member_name(builder, "Versions");
json_builder_begin_array(builder);
g_hash_table_iter_init(&iter, metadata);
while (g_hash_table_iter_next(&iter, (gpointer *)&key, (gpointer *)&value)) {
FuUtilDependencyKind dependency_kind = FU_UTIL_DEPENDENCY_KIND_UNKNOWN;
g_autofree gchar *project = NULL;
/* add version keys */
if (!fu_util_print_version_key_valid(key))
continue;
project = fu_util_parse_project_dependency(key, &dependency_kind);
json_builder_begin_object(builder);
if (dependency_kind != FU_UTIL_DEPENDENCY_KIND_UNKNOWN) {
json_builder_set_member_name(builder, "Type");
json_builder_add_string_value(
builder,
fu_util_dependency_kind_to_string(dependency_kind));
}
json_builder_set_member_name(builder, "AppstreamId");
json_builder_add_string_value(builder, project);
json_builder_set_member_name(builder, "Version");
json_builder_add_string_value(builder, value);
json_builder_end_object(builder);
}
json_builder_end_array(builder);
json_builder_end_object(builder);
return fu_util_print_builder(console, builder, error);
}
gchar *
fu_util_project_versions_to_string(GHashTable *metadata)
{
GHashTableIter iter;
const gchar *key;
const gchar *value;
g_autoptr(GString) str = g_string_new(NULL);
g_hash_table_iter_init(&iter, metadata);
while (g_hash_table_iter_next(&iter, (gpointer *)&key, (gpointer *)&value)) {
FuUtilDependencyKind dependency_kind = FU_UTIL_DEPENDENCY_KIND_UNKNOWN;
g_autofree gchar *project = NULL;
/* print version keys */
if (!fu_util_print_version_key_valid(key))
continue;
project = fu_util_parse_project_dependency(key, &dependency_kind);
g_string_append_printf(str,
"%-10s%-30s%s\n",
fu_util_dependency_kind_to_string(dependency_kind),
project,
value);
}
return g_string_free(g_steal_pointer(&str), FALSE);
}
const gchar *
fu_util_get_prgname(const gchar *argv0)
{
const gchar *prgname = (const gchar *)g_strrstr(argv0, " ");
if (prgname != NULL)
return prgname + 1;
return argv0;
}