mirror of
https://git.proxmox.com/git/fwupd
synced 2025-05-22 01:51:42 +00:00
3483 lines
112 KiB
C
3483 lines
112 KiB
C
/*
|
|
* Copyright (C) 2015 Richard Hughes <richard@hughsie.com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1+
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <fwupdplugin.h>
|
|
|
|
#include <glib/gstdio.h>
|
|
#include <libgcab.h>
|
|
#include <string.h>
|
|
#include <xmlb.h>
|
|
|
|
#include "fwupd-security-attr-private.h"
|
|
|
|
#include "fu-cabinet.h"
|
|
#include "fu-common-private.h"
|
|
#include "fu-context-private.h"
|
|
#include "fu-device-private.h"
|
|
#include "fu-efi-firmware-file.h"
|
|
#include "fu-efi-firmware-filesystem.h"
|
|
#include "fu-efi-firmware-section.h"
|
|
#include "fu-efi-firmware-volume.h"
|
|
#include "fu-ifd-image.h"
|
|
#include "fu-plugin-private.h"
|
|
#include "fu-security-attrs-private.h"
|
|
#include "fu-smbios-private.h"
|
|
|
|
static GMainLoop *_test_loop = NULL;
|
|
static guint _test_loop_timeout_id = 0;
|
|
|
|
static gboolean
|
|
fu_test_hang_check_cb(gpointer user_data)
|
|
{
|
|
g_main_loop_quit(_test_loop);
|
|
_test_loop_timeout_id = 0;
|
|
return G_SOURCE_REMOVE;
|
|
}
|
|
|
|
static void
|
|
fu_test_loop_run_with_timeout(guint timeout_ms)
|
|
{
|
|
g_assert(_test_loop_timeout_id == 0);
|
|
g_assert(_test_loop == NULL);
|
|
_test_loop = g_main_loop_new(NULL, FALSE);
|
|
_test_loop_timeout_id = g_timeout_add(timeout_ms, fu_test_hang_check_cb, NULL);
|
|
g_main_loop_run(_test_loop);
|
|
}
|
|
|
|
static void
|
|
fu_test_loop_quit(void)
|
|
{
|
|
if (_test_loop_timeout_id > 0) {
|
|
g_source_remove(_test_loop_timeout_id);
|
|
_test_loop_timeout_id = 0;
|
|
}
|
|
if (_test_loop != NULL) {
|
|
g_main_loop_quit(_test_loop);
|
|
g_main_loop_unref(_test_loop);
|
|
_test_loop = NULL;
|
|
}
|
|
}
|
|
|
|
static void
|
|
fu_archive_invalid_func(void)
|
|
{
|
|
g_autofree gchar *filename = NULL;
|
|
g_autoptr(FuArchive) archive = NULL;
|
|
g_autoptr(GBytes) data = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
#ifndef HAVE_LIBARCHIVE
|
|
g_test_skip("no libarchive support");
|
|
return;
|
|
#endif
|
|
|
|
filename = g_build_filename(TESTDATADIR_SRC, "metadata.xml", NULL);
|
|
data = fu_common_get_contents_bytes(filename, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(data);
|
|
|
|
archive = fu_archive_new(data, FU_ARCHIVE_FLAG_NONE, &error);
|
|
g_assert_error(error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED);
|
|
g_assert_null(archive);
|
|
}
|
|
|
|
static void
|
|
fu_archive_cab_func(void)
|
|
{
|
|
g_autofree gchar *checksum1 = NULL;
|
|
g_autofree gchar *checksum2 = NULL;
|
|
g_autofree gchar *filename = NULL;
|
|
g_autoptr(FuArchive) archive = NULL;
|
|
g_autoptr(GBytes) data = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
GBytes *data_tmp;
|
|
|
|
#ifndef HAVE_LIBARCHIVE
|
|
g_test_skip("no libarchive support");
|
|
return;
|
|
#endif
|
|
|
|
filename = g_build_filename(TESTDATADIR_DST, "colorhug", "colorhug-als-3.0.2.cab", NULL);
|
|
data = fu_common_get_contents_bytes(filename, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(data);
|
|
|
|
archive = fu_archive_new(data, FU_ARCHIVE_FLAG_NONE, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(archive);
|
|
|
|
data_tmp = fu_archive_lookup_by_fn(archive, "firmware.metainfo.xml", &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(data_tmp);
|
|
checksum1 = g_compute_checksum_for_bytes(G_CHECKSUM_SHA1, data_tmp);
|
|
g_assert_cmpstr(checksum1, ==, "8611114f51f7151f190de86a5c9259d79ff34216");
|
|
|
|
data_tmp = fu_archive_lookup_by_fn(archive, "firmware.bin", &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(data_tmp);
|
|
checksum2 = g_compute_checksum_for_bytes(G_CHECKSUM_SHA1, data_tmp);
|
|
g_assert_cmpstr(checksum2, ==, "7c0ae84b191822bcadbdcbe2f74a011695d783c7");
|
|
|
|
data_tmp = fu_archive_lookup_by_fn(archive, "NOTGOINGTOEXIST.xml", &error);
|
|
g_assert_error(error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND);
|
|
g_assert_null(data_tmp);
|
|
}
|
|
|
|
static void
|
|
fu_common_gpt_type_func(void)
|
|
{
|
|
g_assert_cmpstr(fu_common_convert_to_gpt_type("0xef"),
|
|
==,
|
|
"c12a7328-f81f-11d2-ba4b-00a0c93ec93b");
|
|
g_assert_cmpstr(fu_common_convert_to_gpt_type("0x0b"),
|
|
==,
|
|
"ebd0a0a2-b9e5-4433-87c0-68b6b72699c7");
|
|
g_assert_cmpstr(fu_common_convert_to_gpt_type("fat32lba"),
|
|
==,
|
|
"ebd0a0a2-b9e5-4433-87c0-68b6b72699c7");
|
|
g_assert_cmpstr(fu_common_convert_to_gpt_type("0x00"), ==, "0x00");
|
|
}
|
|
|
|
static void
|
|
fu_common_align_up_func(void)
|
|
{
|
|
g_assert_cmpint(fu_common_align_up(0, 0), ==, 0);
|
|
g_assert_cmpint(fu_common_align_up(5, 0), ==, 5);
|
|
g_assert_cmpint(fu_common_align_up(5, 3), ==, 8);
|
|
g_assert_cmpint(fu_common_align_up(1023, 10), ==, 1024);
|
|
g_assert_cmpint(fu_common_align_up(1024, 10), ==, 1024);
|
|
g_assert_cmpint(fu_common_align_up(G_MAXSIZE - 1, 10), ==, G_MAXSIZE);
|
|
}
|
|
|
|
static void
|
|
fu_common_byte_array_func(void)
|
|
{
|
|
g_autoptr(GByteArray) array = g_byte_array_new();
|
|
|
|
fu_byte_array_append_uint8(array, (guint8)'h');
|
|
fu_byte_array_append_uint8(array, (guint8)'e');
|
|
fu_byte_array_append_uint8(array, (guint8)'l');
|
|
fu_byte_array_append_uint8(array, (guint8)'l');
|
|
fu_byte_array_append_uint8(array, (guint8)'o');
|
|
g_assert_cmpint(array->len, ==, 5);
|
|
g_assert_cmpint(memcmp(array->data, "hello", array->len), ==, 0);
|
|
|
|
fu_byte_array_set_size(array, 10);
|
|
g_assert_cmpint(array->len, ==, 10);
|
|
g_assert_cmpint(memcmp(array->data, "hello\0\0\0\0\0", array->len), ==, 0);
|
|
}
|
|
|
|
static void
|
|
fu_common_crc_func(void)
|
|
{
|
|
guint8 buf[] = {0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09};
|
|
g_assert_cmpint(fu_common_crc8(buf, sizeof(buf)), ==, 0x7A);
|
|
g_assert_cmpint(fu_common_crc16(buf, sizeof(buf)), ==, 0x4DF1);
|
|
g_assert_cmpint(fu_common_crc32(buf, sizeof(buf)), ==, 0x40EFAB9E);
|
|
}
|
|
|
|
static void
|
|
fu_common_string_append_kv_func(void)
|
|
{
|
|
g_autoptr(GString) str = g_string_new(NULL);
|
|
fu_common_string_append_kv(str, 0, "hdr", NULL);
|
|
fu_common_string_append_kv(str, 0, "key", "value");
|
|
fu_common_string_append_kv(str, 0, "key1", "value1");
|
|
fu_common_string_append_kv(str, 1, "key2", "value2");
|
|
fu_common_string_append_kv(str, 1, "", "value2");
|
|
fu_common_string_append_kv(str, 2, "key3", "value3");
|
|
g_assert_cmpstr(str->str,
|
|
==,
|
|
"hdr:\n"
|
|
"key: value\n"
|
|
"key1: value1\n"
|
|
" key2: value2\n"
|
|
" value2\n"
|
|
" key3: value3\n");
|
|
}
|
|
|
|
static void
|
|
fu_common_version_guess_format_func(void)
|
|
{
|
|
g_assert_cmpint(fu_common_version_guess_format(NULL), ==, FWUPD_VERSION_FORMAT_UNKNOWN);
|
|
g_assert_cmpint(fu_common_version_guess_format(""), ==, FWUPD_VERSION_FORMAT_UNKNOWN);
|
|
g_assert_cmpint(fu_common_version_guess_format("1234ac"), ==, FWUPD_VERSION_FORMAT_PLAIN);
|
|
g_assert_cmpint(fu_common_version_guess_format("1.2"), ==, FWUPD_VERSION_FORMAT_PAIR);
|
|
g_assert_cmpint(fu_common_version_guess_format("1.2.3"), ==, FWUPD_VERSION_FORMAT_TRIPLET);
|
|
g_assert_cmpint(fu_common_version_guess_format("1.2.3.4"), ==, FWUPD_VERSION_FORMAT_QUAD);
|
|
g_assert_cmpint(fu_common_version_guess_format("1.2.3.4.5"),
|
|
==,
|
|
FWUPD_VERSION_FORMAT_UNKNOWN);
|
|
g_assert_cmpint(fu_common_version_guess_format("1a.2b.3"), ==, FWUPD_VERSION_FORMAT_PLAIN);
|
|
g_assert_cmpint(fu_common_version_guess_format("1"), ==, FWUPD_VERSION_FORMAT_NUMBER);
|
|
g_assert_cmpint(fu_common_version_guess_format("0x10201"), ==, FWUPD_VERSION_FORMAT_NUMBER);
|
|
}
|
|
|
|
static void
|
|
fu_device_version_format_func(void)
|
|
{
|
|
g_autoptr(FuDevice) device = fu_device_new();
|
|
fu_device_add_internal_flag(device, FU_DEVICE_INTERNAL_FLAG_ENSURE_SEMVER);
|
|
fu_device_set_version_format(device, FWUPD_VERSION_FORMAT_TRIPLET);
|
|
fu_device_set_version(device, "Ver1.2.3 RELEASE");
|
|
g_assert_cmpstr(fu_device_get_version(device), ==, "1.2.3");
|
|
}
|
|
|
|
static void
|
|
fu_device_open_refcount_func(void)
|
|
{
|
|
gboolean ret;
|
|
g_autoptr(FuDevice) device = fu_device_new();
|
|
g_autoptr(GError) error = NULL;
|
|
fu_device_set_id(device, "test_device");
|
|
ret = fu_device_open(device, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
ret = fu_device_open(device, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
ret = fu_device_close(device, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
ret = fu_device_close(device, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
ret = fu_device_close(device, &error);
|
|
g_assert_error(error, FWUPD_ERROR, FWUPD_ERROR_NOTHING_TO_DO);
|
|
g_assert_false(ret);
|
|
}
|
|
|
|
static void
|
|
fu_device_name_func(void)
|
|
{
|
|
g_autoptr(FuDevice) device1 = fu_device_new();
|
|
g_autoptr(FuDevice) device2 = fu_device_new();
|
|
|
|
/* vendor then name */
|
|
fu_device_set_vendor(device1, "Hughski");
|
|
fu_device_set_name(device1, "Hughski ColorHug(TM)__Pro ");
|
|
g_assert_cmpstr(fu_device_get_vendor(device1), ==, "Hughski");
|
|
g_assert_cmpstr(fu_device_get_name(device1), ==, "ColorHug™ Pro");
|
|
|
|
/* name then vendor */
|
|
fu_device_set_name(device2, "Hughski ColorHug(TM)_Pro");
|
|
fu_device_set_vendor(device2, "Hughski");
|
|
g_assert_cmpstr(fu_device_get_vendor(device2), ==, "Hughski");
|
|
g_assert_cmpstr(fu_device_get_name(device2), ==, "ColorHug™ Pro");
|
|
|
|
/* a real example */
|
|
fu_device_set_name(device2, "Intel(R) Core(TM) i7-10850H CPU @ 2.70GHz");
|
|
fu_device_set_vendor(device2, "Intel");
|
|
g_assert_cmpstr(fu_device_get_name(device2), ==, "Core™ i7-10850H CPU @ 2.70GHz");
|
|
}
|
|
|
|
static void
|
|
fu_device_metadata_func(void)
|
|
{
|
|
g_autoptr(FuDevice) device = fu_device_new();
|
|
|
|
/* string */
|
|
fu_device_set_metadata(device, "foo", "bar");
|
|
g_assert_cmpstr(fu_device_get_metadata(device, "foo"), ==, "bar");
|
|
fu_device_set_metadata(device, "foo", "baz");
|
|
g_assert_cmpstr(fu_device_get_metadata(device, "foo"), ==, "baz");
|
|
g_assert_null(fu_device_get_metadata(device, "unknown"));
|
|
|
|
/* boolean */
|
|
fu_device_set_metadata_boolean(device, "baz", TRUE);
|
|
g_assert_cmpstr(fu_device_get_metadata(device, "baz"), ==, "true");
|
|
g_assert_true(fu_device_get_metadata_boolean(device, "baz"));
|
|
g_assert_false(fu_device_get_metadata_boolean(device, "unknown"));
|
|
|
|
/* integer */
|
|
fu_device_set_metadata_integer(device, "bam", 12345);
|
|
g_assert_cmpstr(fu_device_get_metadata(device, "bam"), ==, "12345");
|
|
g_assert_cmpint(fu_device_get_metadata_integer(device, "bam"), ==, 12345);
|
|
g_assert_cmpint(fu_device_get_metadata_integer(device, "unknown"), ==, G_MAXUINT);
|
|
|
|
/* broken integer */
|
|
fu_device_set_metadata(device, "bam", "123junk");
|
|
g_assert_cmpint(fu_device_get_metadata_integer(device, "bam"), ==, G_MAXUINT);
|
|
fu_device_set_metadata(device, "huge", "4294967296"); /* not 32 bit */
|
|
g_assert_cmpint(fu_device_get_metadata_integer(device, "huge"), ==, G_MAXUINT);
|
|
}
|
|
|
|
static void
|
|
fu_smbios_func(void)
|
|
{
|
|
const gchar *str;
|
|
gboolean ret;
|
|
g_autofree gchar *dump = NULL;
|
|
g_autoptr(FuSmbios) smbios = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
smbios = fu_smbios_new();
|
|
ret = fu_smbios_setup(smbios, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
dump = fu_smbios_to_string(smbios);
|
|
if (g_getenv("VERBOSE") != NULL)
|
|
g_debug("%s", dump);
|
|
|
|
/* test for missing table */
|
|
str = fu_smbios_get_string(smbios, 0xff, 0, &error);
|
|
g_assert_error(error, FWUPD_ERROR, FWUPD_ERROR_INVALID_FILE);
|
|
g_assert_null(str);
|
|
g_clear_error(&error);
|
|
|
|
/* check for invalid offset */
|
|
str = fu_smbios_get_string(smbios, FU_SMBIOS_STRUCTURE_TYPE_BIOS, 0xff, &error);
|
|
g_assert_error(error, FWUPD_ERROR, FWUPD_ERROR_INVALID_FILE);
|
|
g_assert_null(str);
|
|
g_clear_error(&error);
|
|
|
|
/* get vendor */
|
|
str = fu_smbios_get_string(smbios, FU_SMBIOS_STRUCTURE_TYPE_BIOS, 0x04, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_cmpstr(str, ==, "LENOVO");
|
|
}
|
|
|
|
static void
|
|
fu_smbios3_func(void)
|
|
{
|
|
const gchar *str;
|
|
gboolean ret;
|
|
g_autofree gchar *path = NULL;
|
|
g_autoptr(FuSmbios) smbios = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
path = g_build_filename(TESTDATADIR_SRC, "dmi", "tables64", NULL);
|
|
smbios = fu_smbios_new();
|
|
ret = fu_smbios_setup_from_path(smbios, path, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
if (g_getenv("VERBOSE") != NULL) {
|
|
g_autofree gchar *dump = fu_smbios_to_string(smbios);
|
|
g_debug("%s", dump);
|
|
}
|
|
|
|
/* get vendor */
|
|
str = fu_smbios_get_string(smbios, FU_SMBIOS_STRUCTURE_TYPE_BIOS, 0x04, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_cmpstr(str, ==, "Dell Inc.");
|
|
}
|
|
|
|
static void
|
|
fu_smbios_dt_func(void)
|
|
{
|
|
const gchar *str;
|
|
gboolean ret;
|
|
g_autofree gchar *path = NULL;
|
|
g_autoptr(FuSmbios) smbios = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
path = g_build_filename(TESTDATADIR_SRC, "devicetree", "base", NULL);
|
|
smbios = fu_smbios_new();
|
|
ret = fu_smbios_setup_from_path(smbios, path, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
if (g_getenv("VERBOSE") != NULL) {
|
|
g_autofree gchar *dump = fu_smbios_to_string(smbios);
|
|
g_debug("%s", dump);
|
|
}
|
|
|
|
/* get vendor */
|
|
str = fu_smbios_get_string(smbios, FU_SMBIOS_STRUCTURE_TYPE_SYSTEM, 0x04, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_cmpstr(str, ==, "Hughski Limited");
|
|
}
|
|
|
|
static void
|
|
fu_smbios_class_func(void)
|
|
{
|
|
g_autofree gchar *path = g_build_filename(TESTDATADIR_SRC, "dmi", "class", NULL);
|
|
g_autoptr(FuSmbios) smbios = fu_smbios_new();
|
|
g_autoptr(GError) error = NULL;
|
|
gboolean ret;
|
|
const gchar *str;
|
|
guint8 byte;
|
|
|
|
ret = fu_smbios_setup_from_kernel(smbios, path, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
if (g_getenv("VERBOSE") != NULL) {
|
|
g_autofree gchar *dump = fu_smbios_to_string(smbios);
|
|
g_debug("%s", dump);
|
|
}
|
|
|
|
str = fu_smbios_get_string(smbios, FU_SMBIOS_STRUCTURE_TYPE_SYSTEM, 4, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_cmpstr(str, ==, "FwupdTest");
|
|
|
|
byte = fu_smbios_get_integer(smbios, FU_SMBIOS_STRUCTURE_TYPE_CHASSIS, 5, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_cmpuint(byte, ==, 16);
|
|
}
|
|
|
|
static void
|
|
fu_common_strsafe_func(void)
|
|
{
|
|
struct {
|
|
const gchar *in;
|
|
const gchar *op;
|
|
} strs[] = {{"dave123", "dave123"},
|
|
{"dave123XXX", "dave123"},
|
|
{"dave\x03XXX", "dave.XX"},
|
|
{"dave\x03\x04XXX", "dave..X"},
|
|
{"\x03\x03", NULL},
|
|
{NULL, NULL}};
|
|
for (guint i = 0; strs[i].in != NULL; i++) {
|
|
g_autofree gchar *tmp = fu_common_strsafe(strs[i].in, 7);
|
|
g_assert_cmpstr(tmp, ==, strs[i].op);
|
|
}
|
|
}
|
|
|
|
static void
|
|
fu_common_uri_scheme_func(void)
|
|
{
|
|
struct {
|
|
const gchar *in;
|
|
const gchar *op;
|
|
} strs[] = {{"https://foo.bar/baz", "https"},
|
|
{"HTTP://FOO.BAR/BAZ", "http"},
|
|
{"ftp://", "ftp"},
|
|
{"ftp:", "ftp"},
|
|
{"foobarbaz", NULL},
|
|
{"", NULL},
|
|
{NULL, NULL}};
|
|
for (guint i = 0; strs[i].in != NULL; i++) {
|
|
g_autofree gchar *tmp = fu_common_uri_get_scheme(strs[i].in);
|
|
g_assert_cmpstr(tmp, ==, strs[i].op);
|
|
}
|
|
}
|
|
|
|
static void
|
|
fu_hwids_func(void)
|
|
{
|
|
g_autoptr(FuHwids) hwids = NULL;
|
|
g_autoptr(FuSmbios) smbios = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
gboolean ret;
|
|
|
|
struct {
|
|
const gchar *key;
|
|
const gchar *value;
|
|
} guids[] = {{"Manufacturer", "6de5d951-d755-576b-bd09-c5cf66b27234"},
|
|
{"HardwareID-14", "6de5d951-d755-576b-bd09-c5cf66b27234"},
|
|
{"HardwareID-13", "f8e1de5f-b68c-5f52-9d1a-f1ba52f1f773"},
|
|
{"HardwareID-12", "e093d715-70f7-51f4-b6c8-b4a7e31def85"},
|
|
{"HardwareID-11", "db73af4c-4612-50f7-b8a7-787cf4871847"},
|
|
{"HardwareID-10", "f4275c1f-6130-5191-845c-3426247eb6a1"},
|
|
{"HardwareID-9", "0cf8618d-9eff-537c-9f35-46861406eb9c"},
|
|
{"HardwareID-8", "059eb22d-6dc7-59af-abd3-94bbe017f67c"},
|
|
{"HardwareID-7", "da1da9b6-62f5-5f22-8aaa-14db7eeda2a4"},
|
|
{"HardwareID-6", "178cd22d-ad9f-562d-ae0a-34009822cdbe"},
|
|
{"HardwareID-5", "8dc9b7c5-f5d5-5850-9ab3-bd6f0549d814"},
|
|
{"HardwareID-4", "660ccba8-1b78-5a33-80e6-9fb8354ee873"},
|
|
{"HardwareID-3", "3faec92a-3ae3-5744-be88-495e90a7d541"},
|
|
{"HardwareID-2", "f5ff077f-3eeb-5bae-be1c-e98ffe8ce5f8"},
|
|
{"HardwareID-1", "b7cceb67-774c-537e-bf8b-22c6107e9a74"},
|
|
{"HardwareID-0", "147efce9-f201-5fc8-ab0c-c859751c3440"},
|
|
{NULL, NULL}};
|
|
|
|
smbios = fu_smbios_new();
|
|
ret = fu_smbios_setup(smbios, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
|
|
hwids = fu_hwids_new();
|
|
ret = fu_hwids_setup(hwids, smbios, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
|
|
g_assert_cmpstr(fu_hwids_get_value(hwids, FU_HWIDS_KEY_MANUFACTURER), ==, "LENOVO");
|
|
g_assert_cmpstr(fu_hwids_get_value(hwids, FU_HWIDS_KEY_ENCLOSURE_KIND), ==, "a");
|
|
g_assert_cmpstr(fu_hwids_get_value(hwids, FU_HWIDS_KEY_FAMILY), ==, "ThinkPad T440s");
|
|
g_assert_cmpstr(fu_hwids_get_value(hwids, FU_HWIDS_KEY_PRODUCT_NAME), ==, "20ARS19C0C");
|
|
g_assert_cmpstr(fu_hwids_get_value(hwids, FU_HWIDS_KEY_BIOS_VENDOR), ==, "LENOVO");
|
|
g_assert_cmpstr(fu_hwids_get_value(hwids, FU_HWIDS_KEY_BIOS_VERSION),
|
|
==,
|
|
"GJET75WW (2.25 )");
|
|
g_assert_cmpstr(fu_hwids_get_value(hwids, FU_HWIDS_KEY_BIOS_MAJOR_RELEASE), ==, "02");
|
|
g_assert_cmpstr(fu_hwids_get_value(hwids, FU_HWIDS_KEY_BIOS_MINOR_RELEASE), ==, "19");
|
|
g_assert_cmpstr(fu_hwids_get_value(hwids, FU_HWIDS_KEY_PRODUCT_SKU),
|
|
==,
|
|
"LENOVO_MT_20AR_BU_Think_FM_ThinkPad T440s");
|
|
for (guint i = 0; guids[i].key != NULL; i++) {
|
|
g_autofree gchar *guid = fu_hwids_get_guid(hwids, guids[i].key, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_cmpstr(guid, ==, guids[i].value);
|
|
}
|
|
for (guint i = 0; guids[i].key != NULL; i++)
|
|
g_assert(fu_hwids_has_guid(hwids, guids[i].value));
|
|
}
|
|
|
|
static void
|
|
_plugin_device_added_cb(FuPlugin *plugin, FuDevice *device, gpointer user_data)
|
|
{
|
|
FuDevice **dev = (FuDevice **)user_data;
|
|
*dev = g_object_ref(device);
|
|
fu_test_loop_quit();
|
|
}
|
|
|
|
static void
|
|
fu_plugin_devices_func(void)
|
|
{
|
|
g_autoptr(FuDevice) device = fu_device_new();
|
|
g_autoptr(FuDevice) child = fu_device_new();
|
|
g_autoptr(FuPlugin) plugin = fu_plugin_new(NULL);
|
|
GPtrArray *devices;
|
|
|
|
devices = fu_plugin_get_devices(plugin);
|
|
g_assert_nonnull(devices);
|
|
g_assert_cmpint(devices->len, ==, 0);
|
|
|
|
fu_device_set_id(device, "testdev");
|
|
fu_device_set_name(device, "testdev");
|
|
fu_plugin_device_add(plugin, device);
|
|
g_assert_cmpint(devices->len, ==, 1);
|
|
fu_plugin_device_remove(plugin, device);
|
|
g_assert_cmpint(devices->len, ==, 0);
|
|
|
|
/* add a child after adding the parent to the plugin */
|
|
fu_device_set_id(child, "child");
|
|
fu_device_set_name(child, "child");
|
|
fu_device_add_child(device, child);
|
|
g_assert_cmpint(devices->len, ==, 1);
|
|
|
|
/* remove said child */
|
|
fu_device_remove_child(device, child);
|
|
g_assert_cmpint(devices->len, ==, 0);
|
|
}
|
|
|
|
static void
|
|
fu_plugin_device_inhibit_children_func(void)
|
|
{
|
|
g_autoptr(FuDevice) parent = fu_device_new();
|
|
g_autoptr(FuDevice) child1 = fu_device_new();
|
|
g_autoptr(FuDevice) child2 = fu_device_new();
|
|
|
|
fu_device_set_id(parent, "testdev");
|
|
fu_device_set_name(parent, "testdev");
|
|
fu_device_add_flag(parent, FWUPD_DEVICE_FLAG_UPDATABLE);
|
|
fu_device_set_id(child1, "child1");
|
|
fu_device_set_name(child1, "child1");
|
|
fu_device_add_flag(child1, FWUPD_DEVICE_FLAG_UPDATABLE);
|
|
fu_device_add_child(parent, child1);
|
|
|
|
/* inhibit the parent */
|
|
fu_device_inhibit(parent, "test", "because");
|
|
g_assert_false(fu_device_has_flag(parent, FWUPD_DEVICE_FLAG_UPDATABLE));
|
|
g_assert_true(fu_device_has_flag(child1, FWUPD_DEVICE_FLAG_UPDATABLE));
|
|
fu_device_uninhibit(parent, "test");
|
|
|
|
/* make the inhibit propagate to children */
|
|
fu_device_add_internal_flag(parent, FU_DEVICE_INTERNAL_FLAG_INHIBIT_CHILDREN);
|
|
fu_device_inhibit(parent, "test", "because");
|
|
g_assert_false(fu_device_has_flag(parent, FWUPD_DEVICE_FLAG_UPDATABLE));
|
|
g_assert_false(fu_device_has_flag(child1, FWUPD_DEVICE_FLAG_UPDATABLE));
|
|
|
|
/* add a child after the inhibit, which should also be inhibited too */
|
|
fu_device_set_id(child2, "child2");
|
|
fu_device_set_name(child2, "child2");
|
|
fu_device_add_flag(child2, FWUPD_DEVICE_FLAG_UPDATABLE);
|
|
fu_device_add_child(parent, child2);
|
|
g_assert_false(fu_device_has_flag(parent, FWUPD_DEVICE_FLAG_UPDATABLE));
|
|
g_assert_false(fu_device_has_flag(child1, FWUPD_DEVICE_FLAG_UPDATABLE));
|
|
g_assert_false(fu_device_has_flag(child2, FWUPD_DEVICE_FLAG_UPDATABLE));
|
|
}
|
|
|
|
static void
|
|
fu_plugin_delay_func(void)
|
|
{
|
|
FuDevice *device_tmp;
|
|
g_autoptr(FuPlugin) plugin = NULL;
|
|
g_autoptr(FuDevice) device = NULL;
|
|
|
|
plugin = fu_plugin_new(NULL);
|
|
g_signal_connect(plugin, "device-added", G_CALLBACK(_plugin_device_added_cb), &device_tmp);
|
|
g_signal_connect(plugin,
|
|
"device-removed",
|
|
G_CALLBACK(_plugin_device_added_cb),
|
|
&device_tmp);
|
|
|
|
/* add device straight away */
|
|
device = fu_device_new();
|
|
fu_device_set_id(device, "testdev");
|
|
fu_plugin_device_add(plugin, device);
|
|
g_assert(device_tmp != NULL);
|
|
g_assert_cmpstr(fu_device_get_id(device_tmp),
|
|
==,
|
|
"b7eccd0059d6d7dc2ef76c35d6de0048cc8c029d");
|
|
g_clear_object(&device_tmp);
|
|
|
|
/* remove device */
|
|
fu_plugin_device_remove(plugin, device);
|
|
g_assert(device_tmp != NULL);
|
|
g_assert_cmpstr(fu_device_get_id(device_tmp),
|
|
==,
|
|
"b7eccd0059d6d7dc2ef76c35d6de0048cc8c029d");
|
|
g_clear_object(&device_tmp);
|
|
}
|
|
|
|
static void
|
|
fu_plugin_quirks_func(void)
|
|
{
|
|
const gchar *tmp;
|
|
gboolean ret;
|
|
g_autoptr(FuContext) ctx = fu_context_new();
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
ret = fu_context_load_quirks(ctx, FU_QUIRKS_LOAD_FLAG_NO_CACHE, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
|
|
/* exact */
|
|
tmp = fu_context_lookup_quirk_by_id(ctx, "USB\\VID_0A5C&PID_6412", "Flags");
|
|
g_assert_cmpstr(tmp, ==, "ignore-runtime");
|
|
tmp = fu_context_lookup_quirk_by_id(ctx, "ACME Inc.=True", "Name");
|
|
g_assert_cmpstr(tmp, ==, "awesome");
|
|
tmp = fu_context_lookup_quirk_by_id(ctx, "CORP*", "Name");
|
|
g_assert_cmpstr(tmp, ==, "town");
|
|
tmp = fu_context_lookup_quirk_by_id(ctx, "baz", "Unfound");
|
|
g_assert_cmpstr(tmp, ==, NULL);
|
|
tmp = fu_context_lookup_quirk_by_id(ctx, "unfound", "tests");
|
|
g_assert_cmpstr(tmp, ==, NULL);
|
|
tmp = fu_context_lookup_quirk_by_id(ctx, "unfound", "unfound");
|
|
g_assert_cmpstr(tmp, ==, NULL);
|
|
tmp = fu_context_lookup_quirk_by_id(ctx, "bb9ec3e2-77b3-53bc-a1f1-b05916715627", "Flags");
|
|
g_assert_cmpstr(tmp, ==, "clever");
|
|
}
|
|
|
|
static void
|
|
fu_plugin_quirks_performance_func(void)
|
|
{
|
|
gboolean ret;
|
|
g_autoptr(FuQuirks) quirks = fu_quirks_new();
|
|
g_autoptr(GTimer) timer = g_timer_new();
|
|
g_autoptr(GError) error = NULL;
|
|
const gchar *keys[] = {"Name", "Children", "Flags", NULL};
|
|
|
|
ret = fu_quirks_load(quirks, FU_QUIRKS_LOAD_FLAG_NO_CACHE, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
|
|
/* lookup */
|
|
g_timer_reset(timer);
|
|
for (guint j = 0; j < 1000; j++) {
|
|
const gchar *group = "USB\\VID_0BDA&PID_1100";
|
|
for (guint i = 0; keys[i] != NULL; i++) {
|
|
const gchar *tmp = fu_quirks_lookup_by_id(quirks, group, keys[i]);
|
|
g_assert_cmpstr(tmp, !=, NULL);
|
|
}
|
|
}
|
|
g_print("lookup=%.3fms ", g_timer_elapsed(timer, NULL) * 1000.f);
|
|
}
|
|
|
|
static void
|
|
fu_plugin_quirks_device_func(void)
|
|
{
|
|
FuDevice *device_tmp;
|
|
GPtrArray *children;
|
|
gboolean ret;
|
|
g_autoptr(FuDevice) device = fu_device_new();
|
|
g_autoptr(FuContext) ctx = fu_context_new();
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
ret = fu_context_load_quirks(ctx, FU_QUIRKS_LOAD_FLAG_NO_CACHE, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
|
|
/* use quirk file to set device attributes */
|
|
fu_device_set_physical_id(device, "usb:00:05");
|
|
fu_device_set_context(device, ctx);
|
|
fu_device_add_flag(device, FWUPD_DEVICE_FLAG_UPDATABLE);
|
|
fu_device_add_instance_id(device, "USB\\VID_0BDA&PID_1100");
|
|
fu_device_convert_instance_ids(device);
|
|
g_assert_cmpstr(fu_device_get_name(device), ==, "Hub");
|
|
|
|
/* ensure children are created */
|
|
children = fu_device_get_children(device);
|
|
g_assert_cmpint(children->len, ==, 1);
|
|
device_tmp = g_ptr_array_index(children, 0);
|
|
g_assert_cmpstr(fu_device_get_name(device_tmp), ==, "HDMI");
|
|
g_assert(fu_device_has_flag(device_tmp, FWUPD_DEVICE_FLAG_UPDATABLE));
|
|
}
|
|
|
|
static void
|
|
fu_common_kernel_lockdown_func(void)
|
|
{
|
|
gboolean ret;
|
|
g_autofree gchar *locked_dir = NULL;
|
|
g_autofree gchar *none_dir = NULL;
|
|
g_autofree gchar *old_kernel_dir = NULL;
|
|
|
|
#ifndef __linux__
|
|
g_test_skip("only works on Linux");
|
|
return;
|
|
#endif
|
|
|
|
old_kernel_dir = g_build_filename(TESTDATADIR_SRC, "lockdown", NULL);
|
|
g_setenv("FWUPD_SYSFSSECURITYDIR", old_kernel_dir, TRUE);
|
|
ret = fu_common_kernel_locked_down();
|
|
g_assert_false(ret);
|
|
|
|
locked_dir = g_build_filename(TESTDATADIR_SRC, "lockdown", "locked", NULL);
|
|
g_setenv("FWUPD_SYSFSSECURITYDIR", locked_dir, TRUE);
|
|
ret = fu_common_kernel_locked_down();
|
|
g_assert_true(ret);
|
|
|
|
none_dir = g_build_filename(TESTDATADIR_SRC, "lockdown", "none", NULL);
|
|
g_setenv("FWUPD_SYSFSSECURITYDIR", none_dir, TRUE);
|
|
ret = fu_common_kernel_locked_down();
|
|
g_assert_false(ret);
|
|
}
|
|
|
|
static void
|
|
fu_common_firmware_builder_func(void)
|
|
{
|
|
const gchar *data;
|
|
g_autofree gchar *archive_fn = NULL;
|
|
g_autoptr(GBytes) archive_blob = NULL;
|
|
g_autoptr(GBytes) firmware_blob = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
/* get test file */
|
|
archive_fn = g_build_filename(TESTDATADIR_DST, "builder", "firmware.tar", NULL);
|
|
archive_blob = fu_common_get_contents_bytes(archive_fn, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(archive_blob != NULL);
|
|
|
|
/* generate the firmware */
|
|
firmware_blob =
|
|
fu_common_firmware_builder(archive_blob, "startup.sh", "firmware.bin", &error);
|
|
if (firmware_blob == NULL) {
|
|
if (g_error_matches(error, FWUPD_ERROR, FWUPD_ERROR_PERMISSION_DENIED)) {
|
|
g_test_skip("Missing permissions to create namespace in container");
|
|
return;
|
|
}
|
|
if (g_error_matches(error, FWUPD_ERROR, FWUPD_ERROR_NOT_SUPPORTED)) {
|
|
g_test_skip("User namespaces not supported in container");
|
|
return;
|
|
}
|
|
g_assert_no_error(error);
|
|
}
|
|
|
|
/* check it */
|
|
data = g_bytes_get_data(firmware_blob, NULL);
|
|
g_assert_cmpstr(data, ==, "xobdnas eht ni gninnur");
|
|
}
|
|
|
|
static void
|
|
fu_test_stdout_cb(const gchar *line, gpointer user_data)
|
|
{
|
|
guint *lines = (guint *)user_data;
|
|
g_debug("got '%s'", line);
|
|
(*lines)++;
|
|
}
|
|
|
|
static gboolean
|
|
_open_cb(GObject *device, GError **error)
|
|
{
|
|
g_assert_cmpstr(g_object_get_data(device, "state"), ==, "closed");
|
|
g_object_set_data(device, "state", (gpointer) "opened");
|
|
return TRUE;
|
|
}
|
|
|
|
static gboolean
|
|
_close_cb(GObject *device, GError **error)
|
|
{
|
|
g_assert_cmpstr(g_object_get_data(device, "state"), ==, "opened");
|
|
g_object_set_data(device, "state", (gpointer) "closed-on-unref");
|
|
return TRUE;
|
|
}
|
|
|
|
static void
|
|
fu_device_locker_func(void)
|
|
{
|
|
g_autoptr(FuDeviceLocker) locker = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
g_autoptr(GObject) device = g_object_new(G_TYPE_OBJECT, NULL);
|
|
|
|
g_object_set_data(device, "state", (gpointer) "closed");
|
|
locker = fu_device_locker_new_full(device, _open_cb, _close_cb, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(locker);
|
|
g_clear_object(&locker);
|
|
g_assert_cmpstr(g_object_get_data(device, "state"), ==, "closed-on-unref");
|
|
}
|
|
|
|
static gboolean
|
|
_fail_open_cb(FuDevice *device, GError **error)
|
|
{
|
|
fu_device_set_metadata_boolean(device, "Test::Open", TRUE);
|
|
g_set_error_literal(error, G_IO_ERROR, G_IO_ERROR_FAILED, "fail");
|
|
return FALSE;
|
|
}
|
|
|
|
static gboolean
|
|
_fail_close_cb(FuDevice *device, GError **error)
|
|
{
|
|
fu_device_set_metadata_boolean(device, "Test::Close", TRUE);
|
|
g_set_error_literal(error, G_IO_ERROR, G_IO_ERROR_BUSY, "busy");
|
|
return FALSE;
|
|
}
|
|
|
|
static void
|
|
fu_device_locker_fail_func(void)
|
|
{
|
|
g_autoptr(FuDeviceLocker) locker = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
g_autoptr(FuDevice) device = fu_device_new();
|
|
locker = fu_device_locker_new_full(device,
|
|
(FuDeviceLockerFunc)_fail_open_cb,
|
|
(FuDeviceLockerFunc)_fail_close_cb,
|
|
&error);
|
|
g_assert_error(error, G_IO_ERROR, G_IO_ERROR_FAILED);
|
|
g_assert_null(locker);
|
|
g_assert_true(fu_device_get_metadata_boolean(device, "Test::Open"));
|
|
g_assert_true(fu_device_get_metadata_boolean(device, "Test::Close"));
|
|
g_assert_false(fu_device_has_internal_flag(device, FU_DEVICE_INTERNAL_FLAG_IS_OPEN));
|
|
}
|
|
|
|
static void
|
|
fu_common_spawn_func(void)
|
|
{
|
|
gboolean ret;
|
|
guint lines = 0;
|
|
g_autoptr(GError) error = NULL;
|
|
g_autofree gchar *fn = NULL;
|
|
const gchar *argv[3] = {"replace", "test", NULL};
|
|
|
|
#ifdef _WIN32
|
|
g_test_skip("Known failures on Windows right now, skipping spawn func test");
|
|
return;
|
|
#endif
|
|
|
|
fn = g_build_filename(TESTDATADIR_SRC, "spawn.sh", NULL);
|
|
argv[0] = fn;
|
|
ret = fu_common_spawn_sync(argv, fu_test_stdout_cb, &lines, 0, NULL, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
g_assert_cmpint(lines, ==, 6);
|
|
}
|
|
|
|
static void
|
|
fu_common_spawn_timeout_func(void)
|
|
{
|
|
gboolean ret;
|
|
guint lines = 0;
|
|
g_autoptr(GError) error = NULL;
|
|
g_autofree gchar *fn = NULL;
|
|
const gchar *argv[3] = {"replace", "test", NULL};
|
|
|
|
#ifdef _WIN32
|
|
g_test_skip("Known failures on Windows right now, skipping spawn timeout test");
|
|
return;
|
|
#endif
|
|
|
|
fn = g_build_filename(TESTDATADIR_SRC, "spawn.sh", NULL);
|
|
argv[0] = fn;
|
|
ret = fu_common_spawn_sync(argv, fu_test_stdout_cb, &lines, 50, NULL, &error);
|
|
g_assert_error(error, G_IO_ERROR, G_IO_ERROR_CANCELLED);
|
|
g_assert(!ret);
|
|
g_assert_cmpint(lines, ==, 1);
|
|
}
|
|
|
|
static void
|
|
fu_common_endian_func(void)
|
|
{
|
|
guint8 buf[2];
|
|
|
|
fu_common_write_uint16(buf, 0x1234, G_LITTLE_ENDIAN);
|
|
g_assert_cmpint(buf[0], ==, 0x34);
|
|
g_assert_cmpint(buf[1], ==, 0x12);
|
|
g_assert_cmpint(fu_common_read_uint16(buf, G_LITTLE_ENDIAN), ==, 0x1234);
|
|
|
|
fu_common_write_uint16(buf, 0x1234, G_BIG_ENDIAN);
|
|
g_assert_cmpint(buf[0], ==, 0x12);
|
|
g_assert_cmpint(buf[1], ==, 0x34);
|
|
g_assert_cmpint(fu_common_read_uint16(buf, G_BIG_ENDIAN), ==, 0x1234);
|
|
}
|
|
|
|
static GBytes *
|
|
_build_cab(GCabCompression compression, ...)
|
|
{
|
|
gboolean ret;
|
|
va_list args;
|
|
g_autoptr(GCabCabinet) cabinet = NULL;
|
|
g_autoptr(GCabFolder) cabfolder = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
g_autoptr(GOutputStream) op = NULL;
|
|
|
|
/* create a new archive */
|
|
cabinet = gcab_cabinet_new();
|
|
cabfolder = gcab_folder_new(compression);
|
|
ret = gcab_cabinet_add_folder(cabinet, cabfolder, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
|
|
/* add each file */
|
|
va_start(args, compression);
|
|
do {
|
|
const gchar *fn;
|
|
const gchar *text;
|
|
g_autoptr(GCabFile) cabfile = NULL;
|
|
g_autoptr(GBytes) blob = NULL;
|
|
|
|
/* get filename */
|
|
fn = va_arg(args, const gchar *);
|
|
if (fn == NULL)
|
|
break;
|
|
|
|
/* get contents */
|
|
text = va_arg(args, const gchar *);
|
|
if (text == NULL)
|
|
break;
|
|
g_debug("creating %s with %s", fn, text);
|
|
|
|
/* add a GCabFile to the cabinet */
|
|
blob = g_bytes_new_static(text, strlen(text));
|
|
cabfile = gcab_file_new_with_bytes(fn, blob);
|
|
ret = gcab_folder_add_file(cabfolder, cabfile, FALSE, NULL, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
} while (TRUE);
|
|
va_end(args);
|
|
|
|
/* write the archive to a blob */
|
|
op = g_memory_output_stream_new_resizable();
|
|
ret = gcab_cabinet_write_simple(cabinet, op, NULL, NULL, NULL, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
ret = g_output_stream_close(op, NULL, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
return g_memory_output_stream_steal_as_bytes(G_MEMORY_OUTPUT_STREAM(op));
|
|
}
|
|
|
|
static void
|
|
fu_common_cabinet_func(void)
|
|
{
|
|
g_autoptr(FuCabinet) cabinet = fu_cabinet_new();
|
|
g_autoptr(GBytes) blob = NULL;
|
|
g_autoptr(GBytes) jcat_blob1 = g_bytes_new_static("hello", 6);
|
|
g_autoptr(GBytes) jcat_blob2 = g_bytes_new_static("hellX", 6);
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
/* add */
|
|
fu_cabinet_add_file(cabinet, "firmware.jcat", jcat_blob1);
|
|
|
|
/* replace */
|
|
fu_cabinet_add_file(cabinet, "firmware.jcat", jcat_blob2);
|
|
|
|
/* get data */
|
|
blob = fu_cabinet_get_file(cabinet, "firmware.jcat", &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(blob);
|
|
g_assert_cmpstr(g_bytes_get_data(blob, NULL), ==, "hellX");
|
|
|
|
/* get data that does not exist */
|
|
blob = fu_cabinet_get_file(cabinet, "foo.jcat", &error);
|
|
g_assert_error(error, FWUPD_ERROR, FWUPD_ERROR_INVALID_FILE);
|
|
g_assert_null(blob);
|
|
}
|
|
|
|
static void
|
|
fu_common_store_cab_func(void)
|
|
{
|
|
GBytes *blob_tmp;
|
|
g_autoptr(GBytes) blob = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
g_autoptr(XbNode) component = NULL;
|
|
g_autoptr(XbNode) csum = NULL;
|
|
g_autoptr(XbNode) rel = NULL;
|
|
g_autoptr(XbNode) req = NULL;
|
|
g_autoptr(XbSilo) silo = NULL;
|
|
#if LIBXMLB_CHECK_VERSION(0, 2, 0)
|
|
g_autoptr(XbQuery) query = NULL;
|
|
#endif
|
|
|
|
/* create silo */
|
|
blob = _build_cab(
|
|
GCAB_COMPRESSION_NONE,
|
|
"acme.metainfo.xml",
|
|
"<component type=\"firmware\">\n"
|
|
" <id>com.acme.example.firmware</id>\n"
|
|
" <name>ACME Firmware</name>\n"
|
|
" <provides>\n"
|
|
" <firmware type=\"flashed\">ae56e3fb-6528-5bc4-8b03-012f124075d7</firmware>\n"
|
|
" </provides>\n"
|
|
" <releases>\n"
|
|
" <release version=\"1.2.3\" date=\"2017-09-06\">\n"
|
|
" <size type=\"installed\">5</size>\n"
|
|
" <checksum filename=\"firmware.dfu\" target=\"content\" "
|
|
"type=\"sha1\">7c211433f02071597741e6ff5a8ea34789abbf43</checksum>\n"
|
|
" <description><p>We fixed things</p></description>\n"
|
|
" </release>\n"
|
|
" </releases>\n"
|
|
" <requires>\n"
|
|
" <id compare=\"ge\" version=\"1.0.1\">org.freedesktop.fwupd</id>\n"
|
|
" </requires>\n"
|
|
"</component>",
|
|
"firmware.dfu",
|
|
"world",
|
|
"firmware.dfu.asc",
|
|
"signature",
|
|
NULL);
|
|
silo = fu_common_cab_build_silo(blob, 10240, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(silo);
|
|
|
|
/* verify */
|
|
component =
|
|
xb_silo_query_first(silo,
|
|
"components/component/id[text()='com.acme.example.firmware']/..",
|
|
&error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(component);
|
|
#if LIBXMLB_CHECK_VERSION(0, 2, 0)
|
|
query = xb_query_new_full(xb_node_get_silo(component),
|
|
"releases/release",
|
|
XB_QUERY_FLAG_FORCE_NODE_CACHE,
|
|
&error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(query);
|
|
rel = xb_node_query_first_full(component, query, &error);
|
|
#else
|
|
rel = xb_node_query_first(component, "releases/release", &error);
|
|
#endif
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(rel);
|
|
g_assert_cmpstr(xb_node_get_attr(rel, "version"), ==, "1.2.3");
|
|
csum = xb_node_query_first(rel, "checksum[@target='content']", &error);
|
|
g_assert_nonnull(csum);
|
|
g_assert_cmpstr(xb_node_get_text(csum), ==, "7c211433f02071597741e6ff5a8ea34789abbf43");
|
|
blob_tmp = xb_node_get_data(rel, "fwupd::FirmwareBlob");
|
|
g_assert_nonnull(blob_tmp);
|
|
req = xb_node_query_first(component, "requires/id", &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(req);
|
|
}
|
|
|
|
static void
|
|
fu_common_store_cab_artifact_func(void)
|
|
{
|
|
g_autoptr(GBytes) blob = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
g_autoptr(XbSilo) silo = NULL;
|
|
|
|
/* create silo (sha256, using artifacts object) */
|
|
blob = _build_cab(
|
|
GCAB_COMPRESSION_NONE,
|
|
"acme.metainfo.xml",
|
|
"<component type=\"firmware\">\n"
|
|
" <id>com.acme.example.firmware</id>\n"
|
|
" <releases>\n"
|
|
" <release version=\"1.2.3\" date=\"2017-09-06\">\n"
|
|
" <artifacts>\n"
|
|
" <artifact type=\"binary\">\n"
|
|
" <filename>firmware.dfu</filename>\n"
|
|
" <checksum "
|
|
"type=\"sha256\">486EA46224D1BB4FB680F34F7C9AD96A8F24EC88BE73EA8E5A6C65260E9CB8A7</"
|
|
"checksum>\n"
|
|
" </artifact>\n"
|
|
" </artifacts>\n"
|
|
" </release>\n"
|
|
" </releases>\n"
|
|
"</component>",
|
|
"firmware.dfu",
|
|
"world",
|
|
"firmware.dfu.asc",
|
|
"signature",
|
|
NULL);
|
|
silo = fu_common_cab_build_silo(blob, 10240, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(silo);
|
|
g_clear_object(&silo);
|
|
|
|
/* create silo (sha1, using artifacts object; mixed case) */
|
|
blob = _build_cab(GCAB_COMPRESSION_NONE,
|
|
"acme.metainfo.xml",
|
|
"<component type=\"firmware\">\n"
|
|
" <id>com.acme.example.firmware</id>\n"
|
|
" <releases>\n"
|
|
" <release version=\"1.2.3\" date=\"2017-09-06\">\n"
|
|
" <artifacts>\n"
|
|
" <artifact type=\"binary\">\n"
|
|
" <filename>firmware.dfu</filename>\n"
|
|
" <checksum "
|
|
"type=\"sha1\">7c211433f02071597741e6ff5a8ea34789abbF43</"
|
|
"checksum>\n"
|
|
" </artifact>\n"
|
|
" </artifacts>\n"
|
|
" </release>\n"
|
|
" </releases>\n"
|
|
"</component>",
|
|
"firmware.dfu",
|
|
"world",
|
|
"firmware.dfu.asc",
|
|
"signature",
|
|
NULL);
|
|
silo = fu_common_cab_build_silo(blob, 10240, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(silo);
|
|
g_clear_object(&silo);
|
|
|
|
/* create silo (sha512, using artifacts object; lower case) */
|
|
blob = _build_cab(GCAB_COMPRESSION_NONE,
|
|
"acme.metainfo.xml",
|
|
"<component type=\"firmware\">\n"
|
|
" <id>com.acme.example.firmware</id>\n"
|
|
" <releases>\n"
|
|
" <release version=\"1.2.3\" date=\"2017-09-06\">\n"
|
|
" <artifacts>\n"
|
|
" <artifact type=\"binary\">\n"
|
|
" <filename>firmware.dfu</filename>\n"
|
|
" <checksum "
|
|
"type=\"sha512\">"
|
|
"11853df40f4b2b919d3815f64792e58d08663767a494bcbb38c0b2389d9140bbb170281b"
|
|
"4a847be7757bde12c9cd0054ce3652d0ad3a1a0c92babb69798246ee</"
|
|
"checksum>\n"
|
|
" </artifact>\n"
|
|
" </artifacts>\n"
|
|
" </release>\n"
|
|
" </releases>\n"
|
|
"</component>",
|
|
"firmware.dfu",
|
|
"world",
|
|
"firmware.dfu.asc",
|
|
"signature",
|
|
NULL);
|
|
silo = fu_common_cab_build_silo(blob, 10240, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(silo);
|
|
g_clear_object(&silo);
|
|
|
|
/* create silo (legacy release object) */
|
|
blob = _build_cab(GCAB_COMPRESSION_NONE,
|
|
"acme.metainfo.xml",
|
|
"<component type=\"firmware\">\n"
|
|
" <id>com.acme.example.firmware</id>\n"
|
|
" <releases>\n"
|
|
" <release version=\"1.2.3\" date=\"2017-09-06\">\n"
|
|
" <checksum "
|
|
"target=\"content\" "
|
|
"filename=\"firmware.dfu\">"
|
|
"486EA46224D1BB4FB680F34F7C9AD96A8F24EC88BE73EA8E5A6C65260E9CB8A7</"
|
|
"checksum>\n"
|
|
" </release>\n"
|
|
" </releases>\n"
|
|
"</component>",
|
|
"firmware.dfu",
|
|
"world",
|
|
"firmware.dfu.asc",
|
|
"signature",
|
|
NULL);
|
|
silo = fu_common_cab_build_silo(blob, 10240, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(silo);
|
|
}
|
|
|
|
static void
|
|
fu_common_store_cab_unsigned_func(void)
|
|
{
|
|
GBytes *blob_tmp;
|
|
g_autoptr(GBytes) blob = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
g_autoptr(XbNode) component = NULL;
|
|
g_autoptr(XbNode) csum = NULL;
|
|
g_autoptr(XbNode) rel = NULL;
|
|
g_autoptr(XbSilo) silo = NULL;
|
|
#if LIBXMLB_CHECK_VERSION(0, 2, 0)
|
|
g_autoptr(XbQuery) query = NULL;
|
|
#endif
|
|
|
|
/* create silo */
|
|
blob = _build_cab(GCAB_COMPRESSION_NONE,
|
|
"acme.metainfo.xml",
|
|
"<component type=\"firmware\">\n"
|
|
" <id>com.acme.example.firmware</id>\n"
|
|
" <releases>\n"
|
|
" <release version=\"1.2.3\"/>\n"
|
|
" </releases>\n"
|
|
"</component>",
|
|
"firmware.bin",
|
|
"world",
|
|
NULL);
|
|
silo = fu_common_cab_build_silo(blob, 10240, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(silo);
|
|
|
|
/* verify */
|
|
component =
|
|
xb_silo_query_first(silo,
|
|
"components/component/id[text()='com.acme.example.firmware']/..",
|
|
&error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(component);
|
|
#if LIBXMLB_CHECK_VERSION(0, 2, 0)
|
|
query = xb_query_new_full(xb_node_get_silo(component),
|
|
"releases/release",
|
|
XB_QUERY_FLAG_FORCE_NODE_CACHE,
|
|
&error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(query);
|
|
rel = xb_node_query_first_full(component, query, &error);
|
|
#else
|
|
rel = xb_node_query_first(component, "releases/release", &error);
|
|
#endif
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(rel);
|
|
g_assert_cmpstr(xb_node_get_attr(rel, "version"), ==, "1.2.3");
|
|
csum = xb_node_query_first(rel, "checksum[@target='content']", &error);
|
|
g_assert_null(csum);
|
|
blob_tmp = xb_node_get_data(rel, "fwupd::FirmwareBlob");
|
|
g_assert_nonnull(blob_tmp);
|
|
}
|
|
|
|
static void
|
|
fu_common_store_cab_sha256_func(void)
|
|
{
|
|
g_autoptr(GBytes) blob = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
g_autoptr(XbSilo) silo = NULL;
|
|
|
|
/* create silo */
|
|
blob = _build_cab(
|
|
GCAB_COMPRESSION_NONE,
|
|
"acme.metainfo.xml",
|
|
"<component type=\"firmware\">\n"
|
|
" <id>com.acme.example.firmware</id>\n"
|
|
" <releases>\n"
|
|
" <release version=\"1.2.3\" date=\"2017-09-06\">\n"
|
|
" <checksum target=\"content\" "
|
|
"type=\"sha256\">486ea46224d1bb4fb680f34f7c9ad96a8f24ec88be73ea8e5a6c65260e9cb8a7</"
|
|
"checksum>\n"
|
|
" </release>\n"
|
|
" </releases>\n"
|
|
"</component>",
|
|
"firmware.bin",
|
|
"world",
|
|
NULL);
|
|
silo = fu_common_cab_build_silo(blob, 10240, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(silo);
|
|
}
|
|
|
|
static void
|
|
fu_common_store_cab_folder_func(void)
|
|
{
|
|
GBytes *blob_tmp;
|
|
g_autoptr(GBytes) blob = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
g_autoptr(XbNode) component = NULL;
|
|
g_autoptr(XbNode) rel = NULL;
|
|
g_autoptr(XbSilo) silo = NULL;
|
|
#if LIBXMLB_CHECK_VERSION(0, 2, 0)
|
|
g_autoptr(XbQuery) query = NULL;
|
|
#endif
|
|
|
|
/* create silo */
|
|
blob = _build_cab(GCAB_COMPRESSION_NONE,
|
|
"lvfs\\acme.metainfo.xml",
|
|
"<component type=\"firmware\">\n"
|
|
" <id>com.acme.example.firmware</id>\n"
|
|
" <releases>\n"
|
|
" <release version=\"1.2.3\"/>\n"
|
|
" </releases>\n"
|
|
"</component>",
|
|
"lvfs\\firmware.bin",
|
|
"world",
|
|
NULL);
|
|
silo = fu_common_cab_build_silo(blob, 10240, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(silo);
|
|
|
|
/* verify */
|
|
component =
|
|
xb_silo_query_first(silo,
|
|
"components/component/id[text()='com.acme.example.firmware']/..",
|
|
&error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(component);
|
|
#if LIBXMLB_CHECK_VERSION(0, 2, 0)
|
|
query = xb_query_new_full(xb_node_get_silo(component),
|
|
"releases/release",
|
|
XB_QUERY_FLAG_FORCE_NODE_CACHE,
|
|
&error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(query);
|
|
rel = xb_node_query_first_full(component, query, &error);
|
|
#else
|
|
rel = xb_node_query_first(component, "releases/release", &error);
|
|
#endif
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(rel);
|
|
g_assert_cmpstr(xb_node_get_attr(rel, "version"), ==, "1.2.3");
|
|
blob_tmp = xb_node_get_data(rel, "fwupd::FirmwareBlob");
|
|
g_assert_nonnull(blob_tmp);
|
|
}
|
|
|
|
static void
|
|
fu_common_store_cab_error_no_metadata_func(void)
|
|
{
|
|
g_autoptr(XbSilo) silo = NULL;
|
|
g_autoptr(GBytes) blob = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
blob = _build_cab(GCAB_COMPRESSION_NONE, "foo.txt", "hello", "bar.txt", "world", NULL);
|
|
silo = fu_common_cab_build_silo(blob, 10240, &error);
|
|
g_assert_error(error, FWUPD_ERROR, FWUPD_ERROR_INVALID_FILE);
|
|
g_assert_null(silo);
|
|
}
|
|
|
|
static void
|
|
fu_common_store_cab_error_wrong_size_func(void)
|
|
{
|
|
g_autoptr(XbSilo) silo = NULL;
|
|
g_autoptr(GBytes) blob = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
blob = _build_cab(GCAB_COMPRESSION_NONE,
|
|
"acme.metainfo.xml",
|
|
"<component type=\"firmware\">\n"
|
|
" <id>com.acme.example.firmware</id>\n"
|
|
" <releases>\n"
|
|
" <release version=\"1.2.3\">\n"
|
|
" <size type=\"installed\">7004701</size>\n"
|
|
" <checksum filename=\"firmware.bin\" target=\"content\" "
|
|
"type=\"sha1\">deadbeef</checksum>\n"
|
|
" </release>\n"
|
|
" </releases>\n"
|
|
"</component>",
|
|
"firmware.bin",
|
|
"world",
|
|
NULL);
|
|
silo = fu_common_cab_build_silo(blob, 10240, &error);
|
|
g_assert_error(error, FWUPD_ERROR, FWUPD_ERROR_INVALID_FILE);
|
|
g_assert_null(silo);
|
|
}
|
|
|
|
static void
|
|
fu_common_store_cab_error_missing_file_func(void)
|
|
{
|
|
g_autoptr(XbSilo) silo = NULL;
|
|
g_autoptr(GBytes) blob = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
blob = _build_cab(GCAB_COMPRESSION_NONE,
|
|
"acme.metainfo.xml",
|
|
"<component type=\"firmware\">\n"
|
|
" <id>com.acme.example.firmware</id>\n"
|
|
" <releases>\n"
|
|
" <release version=\"1.2.3\">\n"
|
|
" <checksum filename=\"firmware.dfu\" target=\"content\"/>\n"
|
|
" </release>\n"
|
|
" </releases>\n"
|
|
"</component>",
|
|
"firmware.bin",
|
|
"world",
|
|
NULL);
|
|
silo = fu_common_cab_build_silo(blob, 10240, &error);
|
|
g_assert_error(error, FWUPD_ERROR, FWUPD_ERROR_INVALID_FILE);
|
|
g_assert_null(silo);
|
|
}
|
|
|
|
static void
|
|
fu_common_bytes_get_data_func(void)
|
|
{
|
|
const gchar *fn = "/tmp/fwupdzero";
|
|
const guint8 *buf;
|
|
gboolean ret;
|
|
g_autoptr(GBytes) bytes1 = NULL;
|
|
g_autoptr(GBytes) bytes2 = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
g_autoptr(GMappedFile) mmap = NULL;
|
|
|
|
/* create file with zero size */
|
|
ret = g_file_set_contents(fn, NULL, 0, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
|
|
/* check we got zero sized data */
|
|
bytes1 = fu_common_get_contents_bytes(fn, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(bytes1);
|
|
g_assert_cmpint(g_bytes_get_size(bytes1), ==, 0);
|
|
g_assert_nonnull(g_bytes_get_data(bytes1, NULL));
|
|
|
|
/* do the same with an mmap mapping, which returns NULL on empty file */
|
|
mmap = g_mapped_file_new(fn, FALSE, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(mmap);
|
|
bytes2 = g_mapped_file_get_bytes(mmap);
|
|
g_assert_nonnull(bytes2);
|
|
g_assert_cmpint(g_bytes_get_size(bytes2), ==, 0);
|
|
g_assert_null(g_bytes_get_data(bytes2, NULL));
|
|
|
|
/* use the safe function */
|
|
buf = fu_bytes_get_data_safe(bytes2, NULL, &error);
|
|
g_assert_error(error, G_IO_ERROR, G_IO_ERROR_INVALID_DATA);
|
|
g_assert_null(buf);
|
|
}
|
|
|
|
static void
|
|
fu_common_store_cab_error_size_func(void)
|
|
{
|
|
g_autoptr(XbSilo) silo = NULL;
|
|
g_autoptr(GBytes) blob = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
blob = _build_cab(GCAB_COMPRESSION_NONE,
|
|
"acme.metainfo.xml",
|
|
"<component type=\"firmware\">\n"
|
|
" <id>com.acme.example.firmware</id>\n"
|
|
" <releases>\n"
|
|
" <release version=\"1.2.3\"/>\n"
|
|
" </releases>\n"
|
|
"</component>",
|
|
"firmware.bin",
|
|
"world",
|
|
NULL);
|
|
silo = fu_common_cab_build_silo(blob, 123, &error);
|
|
g_assert_error(error, FWUPD_ERROR, FWUPD_ERROR_INVALID_FILE);
|
|
g_assert_null(silo);
|
|
}
|
|
|
|
static void
|
|
fu_common_store_cab_error_wrong_checksum_func(void)
|
|
{
|
|
g_autoptr(XbSilo) silo = NULL;
|
|
g_autoptr(GBytes) blob = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
blob = _build_cab(GCAB_COMPRESSION_NONE,
|
|
"acme.metainfo.xml",
|
|
"<component type=\"firmware\">\n"
|
|
" <id>com.acme.example.firmware</id>\n"
|
|
" <releases>\n"
|
|
" <release version=\"1.2.3\">\n"
|
|
" <checksum filename=\"firmware.bin\" target=\"content\" "
|
|
"type=\"sha1\">deadbeef</checksum>\n"
|
|
" </release>\n"
|
|
" </releases>\n"
|
|
"</component>",
|
|
"firmware.bin",
|
|
"world",
|
|
NULL);
|
|
silo = fu_common_cab_build_silo(blob, 10240, &error);
|
|
g_assert_error(error, FWUPD_ERROR, FWUPD_ERROR_INVALID_FILE);
|
|
g_assert_null(silo);
|
|
}
|
|
|
|
static gboolean
|
|
fu_device_poll_cb(FuDevice *device, GError **error)
|
|
{
|
|
guint64 cnt = fu_device_get_metadata_integer(device, "cnt");
|
|
g_debug("poll cnt=%" G_GUINT64_FORMAT, cnt);
|
|
fu_device_set_metadata_integer(device, "cnt", cnt + 1);
|
|
return TRUE;
|
|
}
|
|
|
|
static void
|
|
fu_device_poll_func(void)
|
|
{
|
|
g_autoptr(FuDevice) device = fu_device_new();
|
|
FuDeviceClass *klass = FU_DEVICE_GET_CLASS(device);
|
|
guint cnt;
|
|
|
|
/* set up a 10ms poll */
|
|
klass->poll = fu_device_poll_cb;
|
|
fu_device_set_metadata_integer(device, "cnt", 0);
|
|
fu_device_set_poll_interval(device, 10);
|
|
fu_test_loop_run_with_timeout(100);
|
|
fu_test_loop_quit();
|
|
cnt = fu_device_get_metadata_integer(device, "cnt");
|
|
g_assert_cmpint(cnt, >=, 8);
|
|
|
|
/* disable the poll */
|
|
fu_device_set_poll_interval(device, 0);
|
|
fu_test_loop_run_with_timeout(100);
|
|
fu_test_loop_quit();
|
|
g_assert_cmpint(fu_device_get_metadata_integer(device, "cnt"), ==, cnt);
|
|
}
|
|
|
|
static void
|
|
fu_device_func(void)
|
|
{
|
|
g_autoptr(FuDevice) device = fu_device_new();
|
|
g_autoptr(GPtrArray) possible_plugins = NULL;
|
|
|
|
/* only add one plugin name of the same type */
|
|
fu_device_add_possible_plugin(device, "test");
|
|
fu_device_add_possible_plugin(device, "test");
|
|
possible_plugins = fu_device_get_possible_plugins(device);
|
|
g_assert_cmpint(possible_plugins->len, ==, 1);
|
|
}
|
|
|
|
static void
|
|
fu_device_instance_ids_func(void)
|
|
{
|
|
gboolean ret;
|
|
g_autoptr(FuContext) ctx = fu_context_new();
|
|
g_autoptr(FuDevice) device = fu_device_new_with_context(ctx);
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
/* do not save silo */
|
|
ret = fu_context_load_quirks(ctx, FU_QUIRKS_LOAD_FLAG_NO_CACHE, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
|
|
/* sanity check */
|
|
g_assert_false(fu_device_has_guid(device, "c0a26214-223b-572a-9477-cde897fe8619"));
|
|
|
|
/* add a deferred instance ID that only gets converted on ->setup */
|
|
fu_device_add_instance_id(device, "foobarbaz");
|
|
g_assert_false(fu_device_has_guid(device, "c0a26214-223b-572a-9477-cde897fe8619"));
|
|
|
|
ret = fu_device_setup(device, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
g_assert_true(fu_device_has_guid(device, "c0a26214-223b-572a-9477-cde897fe8619"));
|
|
|
|
/* this gets added immediately */
|
|
fu_device_add_instance_id(device, "bazbarfoo");
|
|
g_assert_true(fu_device_has_guid(device, "77e49bb0-2cd6-5faf-bcee-5b7fbe6e944d"));
|
|
}
|
|
|
|
static void
|
|
fu_device_composite_id_func(void)
|
|
{
|
|
g_autoptr(FuDevice) dev1 = fu_device_new();
|
|
g_autoptr(FuDevice) dev2 = fu_device_new();
|
|
g_autoptr(FuDevice) dev3 = fu_device_new();
|
|
g_autoptr(FuDevice) dev4 = fu_device_new();
|
|
|
|
/* single device */
|
|
fu_device_set_id(dev1, "dev1");
|
|
g_assert_cmpstr(fu_device_get_composite_id(dev1),
|
|
==,
|
|
"3b42553c4e3241e8f3f8fbc19a69fa2f95708a9d");
|
|
fu_device_set_id(dev2, "dev2");
|
|
|
|
/* one child */
|
|
fu_device_add_child(dev1, dev2);
|
|
g_assert_cmpstr(fu_device_get_composite_id(dev1),
|
|
==,
|
|
"3b42553c4e3241e8f3f8fbc19a69fa2f95708a9d");
|
|
g_assert_cmpstr(fu_device_get_composite_id(dev2),
|
|
==,
|
|
"3b42553c4e3241e8f3f8fbc19a69fa2f95708a9d");
|
|
|
|
/* add a different "family" */
|
|
fu_device_set_id(dev3, "dev3");
|
|
fu_device_set_id(dev4, "dev4");
|
|
fu_device_add_child(dev3, dev4);
|
|
fu_device_add_child(dev2, dev3);
|
|
g_assert_cmpstr(fu_device_get_composite_id(dev1),
|
|
==,
|
|
"3b42553c4e3241e8f3f8fbc19a69fa2f95708a9d");
|
|
g_assert_cmpstr(fu_device_get_composite_id(dev2),
|
|
==,
|
|
"3b42553c4e3241e8f3f8fbc19a69fa2f95708a9d");
|
|
g_assert_cmpstr(fu_device_get_composite_id(dev3),
|
|
==,
|
|
"3b42553c4e3241e8f3f8fbc19a69fa2f95708a9d");
|
|
g_assert_cmpstr(fu_device_get_composite_id(dev4),
|
|
==,
|
|
"3b42553c4e3241e8f3f8fbc19a69fa2f95708a9d");
|
|
}
|
|
|
|
static void
|
|
fu_device_inhibit_func(void)
|
|
{
|
|
g_autoptr(FuDevice) device = fu_device_new();
|
|
|
|
fu_device_add_flag(device, FWUPD_DEVICE_FLAG_UPDATABLE);
|
|
fu_device_set_battery_threshold(device, 25);
|
|
g_assert_true(fu_device_has_flag(device, FWUPD_DEVICE_FLAG_UPDATABLE));
|
|
g_assert_false(fu_device_has_flag(device, FWUPD_DEVICE_FLAG_UPDATABLE_HIDDEN));
|
|
|
|
/* does not exist -> fine */
|
|
fu_device_uninhibit(device, "NOTGOINGTOEXIST");
|
|
|
|
/* first one */
|
|
fu_device_inhibit(device, "needs-activation", "Device is pending activation");
|
|
g_assert_true(fu_device_has_flag(device, FWUPD_DEVICE_FLAG_UPDATABLE_HIDDEN));
|
|
g_assert_false(fu_device_has_flag(device, FWUPD_DEVICE_FLAG_UPDATABLE));
|
|
|
|
/* another */
|
|
fu_device_set_battery_level(device, 5);
|
|
g_assert_true(fu_device_has_flag(device, FWUPD_DEVICE_FLAG_UPDATABLE_HIDDEN));
|
|
g_assert_false(fu_device_has_flag(device, FWUPD_DEVICE_FLAG_UPDATABLE));
|
|
|
|
/* activated, power still too low */
|
|
fu_device_uninhibit(device, "needs-activation");
|
|
g_assert_true(fu_device_has_flag(device, FWUPD_DEVICE_FLAG_UPDATABLE_HIDDEN));
|
|
g_assert_false(fu_device_has_flag(device, FWUPD_DEVICE_FLAG_UPDATABLE));
|
|
|
|
/* we got some more power -> fine */
|
|
fu_device_set_battery_level(device, 95);
|
|
g_assert_true(fu_device_has_flag(device, FWUPD_DEVICE_FLAG_UPDATABLE));
|
|
g_assert_false(fu_device_has_flag(device, FWUPD_DEVICE_FLAG_UPDATABLE_HIDDEN));
|
|
}
|
|
|
|
#define TEST_FLAG_FOO (1 << 0)
|
|
#define TEST_FLAG_BAR (1 << 1)
|
|
#define TEST_FLAG_BAZ (1 << 2)
|
|
|
|
static void
|
|
fu_device_private_flags_func(void)
|
|
{
|
|
g_autofree gchar *tmp = NULL;
|
|
g_autoptr(FuDevice) device = fu_device_new();
|
|
|
|
fu_device_register_private_flag(device, TEST_FLAG_FOO, "foo");
|
|
fu_device_register_private_flag(device, TEST_FLAG_BAR, "bar");
|
|
|
|
fu_device_set_custom_flags(device, "foo");
|
|
g_assert_cmpint(fu_device_get_private_flags(device), ==, TEST_FLAG_FOO);
|
|
fu_device_set_custom_flags(device, "bar");
|
|
g_assert_cmpint(fu_device_get_private_flags(device), ==, TEST_FLAG_FOO | TEST_FLAG_BAR);
|
|
fu_device_set_custom_flags(device, "~bar");
|
|
g_assert_cmpint(fu_device_get_private_flags(device), ==, TEST_FLAG_FOO);
|
|
fu_device_set_custom_flags(device, "baz");
|
|
g_assert_cmpint(fu_device_get_private_flags(device), ==, TEST_FLAG_FOO);
|
|
fu_device_add_private_flag(device, TEST_FLAG_BAZ);
|
|
g_assert_cmpint(fu_device_get_private_flags(device), ==, TEST_FLAG_FOO | TEST_FLAG_BAZ);
|
|
|
|
tmp = fu_device_to_string(device);
|
|
g_assert_cmpstr(tmp,
|
|
==,
|
|
"FuDevice:\n"
|
|
"Unknown Device\n"
|
|
" Flags: none\n"
|
|
" CustomFlags: baz\n" /* compat */
|
|
" PrivateFlags: foo\n");
|
|
}
|
|
|
|
static void
|
|
fu_device_flags_func(void)
|
|
{
|
|
g_autoptr(FuDevice) device = fu_device_new();
|
|
|
|
/* bitfield */
|
|
for (guint64 i = 1; i < FU_DEVICE_INTERNAL_FLAG_UNKNOWN; i *= 2) {
|
|
const gchar *tmp = fu_device_internal_flag_to_string(i);
|
|
if (tmp == NULL)
|
|
break;
|
|
g_assert_cmpint(fu_device_internal_flag_from_string(tmp), ==, i);
|
|
}
|
|
|
|
g_assert_cmpint(fu_device_get_flags(device), ==, FWUPD_DEVICE_FLAG_NONE);
|
|
|
|
/* remove IS_BOOTLOADER if is a BOOTLOADER */
|
|
fu_device_add_flag(device, FWUPD_DEVICE_FLAG_IS_BOOTLOADER);
|
|
fu_device_add_flag(device, FWUPD_DEVICE_FLAG_NEEDS_BOOTLOADER);
|
|
g_assert_cmpint(fu_device_get_flags(device), ==, FWUPD_DEVICE_FLAG_NEEDS_BOOTLOADER);
|
|
fu_device_remove_flag(device, FWUPD_DEVICE_FLAG_NEEDS_BOOTLOADER);
|
|
|
|
/* check implication */
|
|
fu_device_add_flag(device, FWUPD_DEVICE_FLAG_CAN_VERIFY_IMAGE);
|
|
g_assert_cmpint(fu_device_get_flags(device),
|
|
==,
|
|
FWUPD_DEVICE_FLAG_CAN_VERIFY_IMAGE | FWUPD_DEVICE_FLAG_CAN_VERIFY);
|
|
fu_device_remove_flag(device,
|
|
FWUPD_DEVICE_FLAG_CAN_VERIFY | FWUPD_DEVICE_FLAG_CAN_VERIFY_IMAGE);
|
|
|
|
/* negation */
|
|
fu_device_set_custom_flags(device, "is-bootloader,updatable");
|
|
g_assert_cmpint(fu_device_get_flags(device),
|
|
==,
|
|
FWUPD_DEVICE_FLAG_IS_BOOTLOADER | FWUPD_DEVICE_FLAG_UPDATABLE);
|
|
fu_device_set_custom_flags(device, "~is-bootloader");
|
|
g_assert_cmpint(fu_device_get_flags(device), ==, FWUPD_DEVICE_FLAG_UPDATABLE);
|
|
}
|
|
|
|
static void
|
|
fu_device_children_func(void)
|
|
{
|
|
gboolean ret;
|
|
g_autoptr(FuContext) ctx = fu_context_new();
|
|
g_autoptr(FuDevice) child = fu_device_new();
|
|
g_autoptr(FuDevice) parent = fu_device_new_with_context(ctx);
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
/* do not save silo */
|
|
ret = fu_context_load_quirks(ctx, FU_QUIRKS_LOAD_FLAG_NO_CACHE, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
|
|
fu_device_set_physical_id(child, "dummy");
|
|
fu_device_set_physical_id(parent, "dummy");
|
|
|
|
/* set up family */
|
|
fu_device_add_child(parent, child);
|
|
|
|
/* set an instance ID that will be converted to a GUID when the parent
|
|
* calls ->setup */
|
|
fu_device_add_instance_id(child, "foo");
|
|
g_assert_false(fu_device_has_guid(child, "b84ed8ed-a7b1-502f-83f6-90132e68adef"));
|
|
|
|
/* setup parent, which also calls setup on child too (and thus also
|
|
* converts the instance ID to a GUID) */
|
|
ret = fu_device_setup(parent, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
g_assert_true(fu_device_has_guid(child, "b84ed8ed-a7b1-502f-83f6-90132e68adef"));
|
|
}
|
|
|
|
static void
|
|
fu_device_parent_func(void)
|
|
{
|
|
g_autoptr(FuDevice) child = fu_device_new();
|
|
g_autoptr(FuDevice) child_root = NULL;
|
|
g_autoptr(FuDevice) grandparent = fu_device_new();
|
|
g_autoptr(FuDevice) grandparent_root = NULL;
|
|
g_autoptr(FuDevice) parent = fu_device_new();
|
|
g_autoptr(FuDevice) parent_root = NULL;
|
|
|
|
fu_device_set_physical_id(child, "dummy");
|
|
fu_device_set_physical_id(grandparent, "dummy");
|
|
fu_device_set_physical_id(parent, "dummy");
|
|
|
|
/* set up three layer family */
|
|
fu_device_add_child(grandparent, parent);
|
|
fu_device_add_child(parent, child);
|
|
|
|
/* check parents */
|
|
g_assert(fu_device_get_parent(child) == parent);
|
|
g_assert(fu_device_get_parent(parent) == grandparent);
|
|
g_assert(fu_device_get_parent(grandparent) == NULL);
|
|
|
|
/* check root */
|
|
child_root = fu_device_get_root(child);
|
|
g_assert(child_root == grandparent);
|
|
parent_root = fu_device_get_root(parent);
|
|
g_assert(parent_root == grandparent);
|
|
grandparent_root = fu_device_get_root(child);
|
|
g_assert(grandparent_root == grandparent);
|
|
}
|
|
|
|
static void
|
|
fu_device_incorporate_func(void)
|
|
{
|
|
g_autoptr(FuDevice) device = fu_device_new();
|
|
g_autoptr(FuDevice) donor = fu_device_new();
|
|
|
|
/* set up donor device */
|
|
fu_device_set_alternate_id(donor, "alt-id");
|
|
fu_device_set_equivalent_id(donor, "equiv-id");
|
|
fu_device_set_metadata(donor, "test", "me");
|
|
fu_device_set_metadata(donor, "test2", "me");
|
|
|
|
/* base properties */
|
|
fu_device_add_flag(donor, FWUPD_DEVICE_FLAG_REQUIRE_AC);
|
|
fu_device_set_created(donor, 123);
|
|
fu_device_set_modified(donor, 456);
|
|
fu_device_add_icon(donor, "computer");
|
|
|
|
/* existing properties */
|
|
fu_device_set_equivalent_id(device, "DO_NOT_OVERWRITE");
|
|
fu_device_set_metadata(device, "test2", "DO_NOT_OVERWRITE");
|
|
fu_device_set_modified(device, 789);
|
|
|
|
/* incorporate properties from donor to device */
|
|
fu_device_incorporate(device, donor);
|
|
g_assert_cmpstr(fu_device_get_alternate_id(device), ==, "alt-id");
|
|
g_assert_cmpstr(fu_device_get_equivalent_id(device), ==, "DO_NOT_OVERWRITE");
|
|
g_assert_cmpstr(fu_device_get_metadata(device, "test"), ==, "me");
|
|
g_assert_cmpstr(fu_device_get_metadata(device, "test2"), ==, "DO_NOT_OVERWRITE");
|
|
g_assert_true(fu_device_has_flag(device, FWUPD_DEVICE_FLAG_REQUIRE_AC));
|
|
g_assert_cmpint(fu_device_get_created(device), ==, 123);
|
|
g_assert_cmpint(fu_device_get_modified(device), ==, 789);
|
|
g_assert_cmpint(fu_device_get_icons(device)->len, ==, 1);
|
|
}
|
|
|
|
static void
|
|
fu_backend_func(void)
|
|
{
|
|
FuDevice *dev;
|
|
gboolean ret;
|
|
g_autoptr(FuBackend) backend = g_object_new(FU_TYPE_BACKEND, NULL);
|
|
g_autoptr(FuDevice) dev1 = fu_device_new();
|
|
g_autoptr(FuDevice) dev2 = fu_device_new();
|
|
g_autoptr(GError) error = NULL;
|
|
g_autoptr(GPtrArray) devices = NULL;
|
|
|
|
/* defaults */
|
|
g_assert_null(fu_backend_get_name(backend));
|
|
g_assert_true(fu_backend_get_enabled(backend));
|
|
|
|
/* load */
|
|
ret = fu_backend_setup(backend, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
ret = fu_backend_coldplug(backend, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
|
|
/* add two devices, then remove one of them */
|
|
fu_device_set_physical_id(dev1, "dev1");
|
|
fu_backend_device_added(backend, dev1);
|
|
fu_device_set_physical_id(dev2, "dev2");
|
|
fu_backend_device_added(backend, dev2);
|
|
fu_backend_device_changed(backend, dev2);
|
|
fu_backend_device_removed(backend, dev2);
|
|
|
|
dev = fu_backend_lookup_by_id(backend, "dev1");
|
|
g_assert_nonnull(dev);
|
|
g_assert(dev == dev1);
|
|
|
|
/* should have been removed */
|
|
dev = fu_backend_lookup_by_id(backend, "dev2");
|
|
g_assert_null(dev);
|
|
|
|
/* get linear array */
|
|
devices = fu_backend_get_devices(backend);
|
|
g_assert_nonnull(devices);
|
|
g_assert_cmpint(devices->len, ==, 1);
|
|
dev = g_ptr_array_index(devices, 0);
|
|
g_assert_nonnull(dev);
|
|
g_assert(dev == dev1);
|
|
}
|
|
|
|
static void
|
|
fu_chunk_func(void)
|
|
{
|
|
g_autofree gchar *chunked1_str = NULL;
|
|
g_autofree gchar *chunked2_str = NULL;
|
|
g_autofree gchar *chunked3_str = NULL;
|
|
g_autofree gchar *chunked4_str = NULL;
|
|
g_autoptr(GPtrArray) chunked1 = NULL;
|
|
g_autoptr(GPtrArray) chunked2 = NULL;
|
|
g_autoptr(GPtrArray) chunked3 = NULL;
|
|
g_autoptr(GPtrArray) chunked4 = NULL;
|
|
|
|
chunked3 = fu_chunk_array_new((const guint8 *)"123456", 6, 0x0, 3, 3);
|
|
chunked3_str = fu_chunk_array_to_string(chunked3);
|
|
g_assert_cmpstr(chunked3_str,
|
|
==,
|
|
"<chunks>\n"
|
|
" <chunk>\n"
|
|
" <data size=\"0x3\">123</data>\n"
|
|
" </chunk>\n"
|
|
" <chunk>\n"
|
|
" <idx>0x1</idx>\n"
|
|
" <page>0x1</page>\n"
|
|
" <data size=\"0x3\">456</data>\n"
|
|
" </chunk>\n"
|
|
"</chunks>\n");
|
|
|
|
chunked4 = fu_chunk_array_new((const guint8 *)"123456", 6, 0x4, 4, 4);
|
|
chunked4_str = fu_chunk_array_to_string(chunked4);
|
|
g_assert_cmpstr(chunked4_str,
|
|
==,
|
|
"<chunks>\n"
|
|
" <chunk>\n"
|
|
" <page>0x1</page>\n"
|
|
" <data size=\"0x4\">1234</data>\n"
|
|
" </chunk>\n"
|
|
" <chunk>\n"
|
|
" <idx>0x1</idx>\n"
|
|
" <page>0x2</page>\n"
|
|
" <data size=\"0x2\">56</data>\n"
|
|
" </chunk>\n"
|
|
"</chunks>\n");
|
|
|
|
chunked1 = fu_chunk_array_new((const guint8 *)"0123456789abcdef", 16, 0x0, 10, 4);
|
|
chunked1_str = fu_chunk_array_to_string(chunked1);
|
|
g_assert_cmpstr(chunked1_str,
|
|
==,
|
|
"<chunks>\n"
|
|
" <chunk>\n"
|
|
" <data size=\"0x4\">0123</data>\n"
|
|
" </chunk>\n"
|
|
" <chunk>\n"
|
|
" <idx>0x1</idx>\n"
|
|
" <addr>0x4</addr>\n"
|
|
" <data size=\"0x4\">4567</data>\n"
|
|
" </chunk>\n"
|
|
" <chunk>\n"
|
|
" <idx>0x2</idx>\n"
|
|
" <addr>0x8</addr>\n"
|
|
" <data size=\"0x2\">89</data>\n"
|
|
" </chunk>\n"
|
|
" <chunk>\n"
|
|
" <idx>0x3</idx>\n"
|
|
" <page>0x1</page>\n"
|
|
" <data size=\"0x4\">abcd</data>\n"
|
|
" </chunk>\n"
|
|
" <chunk>\n"
|
|
" <idx>0x4</idx>\n"
|
|
" <page>0x1</page>\n"
|
|
" <addr>0x4</addr>\n"
|
|
" <data size=\"0x2\">ef</data>\n"
|
|
" </chunk>\n"
|
|
"</chunks>\n");
|
|
chunked2 = fu_chunk_array_new((const guint8 *)"XXXXXXYYYYYYZZZZZZ", 18, 0x0, 6, 4);
|
|
chunked2_str = fu_chunk_array_to_string(chunked2);
|
|
g_print("\n%s", chunked2_str);
|
|
g_assert_cmpstr(chunked2_str,
|
|
==,
|
|
"<chunks>\n"
|
|
" <chunk>\n"
|
|
" <data size=\"0x4\">XXXX</data>\n"
|
|
" </chunk>\n"
|
|
" <chunk>\n"
|
|
" <idx>0x1</idx>\n"
|
|
" <addr>0x4</addr>\n"
|
|
" <data size=\"0x2\">XX</data>\n"
|
|
" </chunk>\n"
|
|
" <chunk>\n"
|
|
" <idx>0x2</idx>\n"
|
|
" <page>0x1</page>\n"
|
|
" <data size=\"0x4\">YYYY</data>\n"
|
|
" </chunk>\n"
|
|
" <chunk>\n"
|
|
" <idx>0x3</idx>\n"
|
|
" <page>0x1</page>\n"
|
|
" <addr>0x4</addr>\n"
|
|
" <data size=\"0x2\">YY</data>\n"
|
|
" </chunk>\n"
|
|
" <chunk>\n"
|
|
" <idx>0x4</idx>\n"
|
|
" <page>0x2</page>\n"
|
|
" <data size=\"0x4\">ZZZZ</data>\n"
|
|
" </chunk>\n"
|
|
" <chunk>\n"
|
|
" <idx>0x5</idx>\n"
|
|
" <page>0x2</page>\n"
|
|
" <addr>0x4</addr>\n"
|
|
" <data size=\"0x2\">ZZ</data>\n"
|
|
" </chunk>\n"
|
|
"</chunks>\n");
|
|
}
|
|
|
|
static void
|
|
fu_common_strstrip_func(void)
|
|
{
|
|
struct {
|
|
const gchar *old;
|
|
const gchar *new;
|
|
} map[] = {{"same", "same"},
|
|
{" leading", "leading"},
|
|
{"tailing ", "tailing"},
|
|
{" b ", "b"},
|
|
{" ", ""},
|
|
{NULL, NULL}};
|
|
for (guint i = 0; map[i].old != NULL; i++) {
|
|
g_autofree gchar *tmp = fu_common_strstrip(map[i].old);
|
|
g_assert_cmpstr(tmp, ==, map[i].new);
|
|
}
|
|
}
|
|
|
|
static void
|
|
fu_common_version_semver_func(void)
|
|
{
|
|
struct {
|
|
const gchar *old;
|
|
const gchar *new;
|
|
} map[] = {{"1.2.3", "1.2.3"},
|
|
{"1.2-3", "1.2.3"},
|
|
{"1~2-3", "1.2.3"},
|
|
{".1.2", "1.2"},
|
|
{"1.2.", "1.2"},
|
|
{"1..2", "1.2"},
|
|
{"CBET1.2.3", "1.2.3"},
|
|
{"1.2.3alpha", "1.2.3"},
|
|
{"5", "5"},
|
|
{"\t5\n", "5"},
|
|
{"0x123456", "0.18.13398"},
|
|
{"coreboot-unknown", NULL},
|
|
{"", NULL},
|
|
{" ", NULL},
|
|
{NULL, NULL}};
|
|
for (guint i = 0; map[i].old != NULL; i++) {
|
|
g_autofree gchar *tmp = fu_common_version_ensure_semver(map[i].old);
|
|
g_assert_cmpstr(tmp, ==, map[i].new);
|
|
}
|
|
}
|
|
|
|
static void
|
|
fu_common_version_func(void)
|
|
{
|
|
guint i;
|
|
struct {
|
|
guint32 val;
|
|
const gchar *ver;
|
|
FwupdVersionFormat flags;
|
|
} version_from_uint32[] = {
|
|
{0x0, "0.0.0.0", FWUPD_VERSION_FORMAT_QUAD},
|
|
{0xff, "0.0.0.255", FWUPD_VERSION_FORMAT_QUAD},
|
|
{0xff01, "0.0.255.1", FWUPD_VERSION_FORMAT_QUAD},
|
|
{0xff0001, "0.255.0.1", FWUPD_VERSION_FORMAT_QUAD},
|
|
{0xff000100, "255.0.1.0", FWUPD_VERSION_FORMAT_QUAD},
|
|
{0x0, "0.0.0", FWUPD_VERSION_FORMAT_TRIPLET},
|
|
{0xff, "0.0.255", FWUPD_VERSION_FORMAT_TRIPLET},
|
|
{0xff01, "0.0.65281", FWUPD_VERSION_FORMAT_TRIPLET},
|
|
{0xff0001, "0.255.1", FWUPD_VERSION_FORMAT_TRIPLET},
|
|
{0xff000100, "255.0.256", FWUPD_VERSION_FORMAT_TRIPLET},
|
|
{0x0, "0", FWUPD_VERSION_FORMAT_NUMBER},
|
|
{0xff000100, "4278190336", FWUPD_VERSION_FORMAT_NUMBER},
|
|
{0x0, "11.0.0.0", FWUPD_VERSION_FORMAT_INTEL_ME},
|
|
{0xffffffff, "18.31.255.65535", FWUPD_VERSION_FORMAT_INTEL_ME},
|
|
{0x0b32057a, "11.11.50.1402", FWUPD_VERSION_FORMAT_INTEL_ME},
|
|
{0xb8320d84, "11.8.50.3460", FWUPD_VERSION_FORMAT_INTEL_ME2},
|
|
{0x226a4b00, "137.2706.768", FWUPD_VERSION_FORMAT_SURFACE_LEGACY},
|
|
{0x6001988, "6.25.136", FWUPD_VERSION_FORMAT_SURFACE},
|
|
{0x00ff0001, "255.0.1", FWUPD_VERSION_FORMAT_DELL_BIOS},
|
|
{0xc8, "0x000000c8", FWUPD_VERSION_FORMAT_HEX},
|
|
{0, NULL}};
|
|
struct {
|
|
guint64 val;
|
|
const gchar *ver;
|
|
FwupdVersionFormat flags;
|
|
} version_from_uint64[] = {
|
|
{0x0, "0.0.0.0", FWUPD_VERSION_FORMAT_QUAD},
|
|
{0xff, "0.0.0.255", FWUPD_VERSION_FORMAT_QUAD},
|
|
{0xffffffffffffffff, "65535.65535.65535.65535", FWUPD_VERSION_FORMAT_QUAD},
|
|
{0xff, "0.255", FWUPD_VERSION_FORMAT_PAIR},
|
|
{0xffffffffffffffff, "4294967295.4294967295", FWUPD_VERSION_FORMAT_PAIR},
|
|
{0x0, "0", FWUPD_VERSION_FORMAT_NUMBER},
|
|
{0x11000000c8, "0x00000011000000c8", FWUPD_VERSION_FORMAT_HEX},
|
|
{0, NULL}};
|
|
struct {
|
|
guint16 val;
|
|
const gchar *ver;
|
|
FwupdVersionFormat flags;
|
|
} version_from_uint16[] = {{0x0, "0.0", FWUPD_VERSION_FORMAT_PAIR},
|
|
{0xff, "0.255", FWUPD_VERSION_FORMAT_PAIR},
|
|
{0xff01, "255.1", FWUPD_VERSION_FORMAT_PAIR},
|
|
{0x0, "0.0", FWUPD_VERSION_FORMAT_BCD},
|
|
{0x0110, "1.10", FWUPD_VERSION_FORMAT_BCD},
|
|
{0x9999, "99.99", FWUPD_VERSION_FORMAT_BCD},
|
|
{0x0, "0", FWUPD_VERSION_FORMAT_NUMBER},
|
|
{0x1234, "4660", FWUPD_VERSION_FORMAT_NUMBER},
|
|
{0, NULL}};
|
|
struct {
|
|
const gchar *old;
|
|
const gchar *new;
|
|
} version_parse[] = {{"0", "0"},
|
|
{"0x1a", "0.0.26"},
|
|
{"257", "0.0.257"},
|
|
{"1.2.3", "1.2.3"},
|
|
{"0xff0001", "0.255.1"},
|
|
{"16711681", "0.255.1"},
|
|
{"20150915", "20150915"},
|
|
{"dave", "dave"},
|
|
{"0x1x", "0x1x"},
|
|
{NULL, NULL}};
|
|
|
|
/* check version conversion */
|
|
for (i = 0; version_from_uint64[i].ver != NULL; i++) {
|
|
g_autofree gchar *ver = NULL;
|
|
ver = fu_common_version_from_uint64(version_from_uint64[i].val,
|
|
version_from_uint64[i].flags);
|
|
g_assert_cmpstr(ver, ==, version_from_uint64[i].ver);
|
|
}
|
|
for (i = 0; version_from_uint32[i].ver != NULL; i++) {
|
|
g_autofree gchar *ver = NULL;
|
|
ver = fu_common_version_from_uint32(version_from_uint32[i].val,
|
|
version_from_uint32[i].flags);
|
|
g_assert_cmpstr(ver, ==, version_from_uint32[i].ver);
|
|
}
|
|
for (i = 0; version_from_uint16[i].ver != NULL; i++) {
|
|
g_autofree gchar *ver = NULL;
|
|
ver = fu_common_version_from_uint16(version_from_uint16[i].val,
|
|
version_from_uint16[i].flags);
|
|
g_assert_cmpstr(ver, ==, version_from_uint16[i].ver);
|
|
}
|
|
|
|
/* check version parsing */
|
|
for (i = 0; version_parse[i].old != NULL; i++) {
|
|
g_autofree gchar *ver = NULL;
|
|
ver = fu_common_version_parse_from_format(version_parse[i].old,
|
|
FWUPD_VERSION_FORMAT_TRIPLET);
|
|
g_assert_cmpstr(ver, ==, version_parse[i].new);
|
|
}
|
|
}
|
|
|
|
static void
|
|
fu_common_vercmp_func(void)
|
|
{
|
|
/* same */
|
|
g_assert_cmpint(fu_common_vercmp_full("1.2.3", "1.2.3", FWUPD_VERSION_FORMAT_UNKNOWN),
|
|
==,
|
|
0);
|
|
g_assert_cmpint(
|
|
fu_common_vercmp_full("001.002.003", "001.002.003", FWUPD_VERSION_FORMAT_UNKNOWN),
|
|
==,
|
|
0);
|
|
g_assert_cmpint(fu_common_vercmp_full("0x00000002", "0x2", FWUPD_VERSION_FORMAT_HEX),
|
|
==,
|
|
0);
|
|
|
|
/* upgrade and downgrade */
|
|
g_assert_cmpint(fu_common_vercmp_full("1.2.3", "1.2.4", FWUPD_VERSION_FORMAT_UNKNOWN),
|
|
<,
|
|
0);
|
|
g_assert_cmpint(
|
|
fu_common_vercmp_full("001.002.000", "001.002.009", FWUPD_VERSION_FORMAT_UNKNOWN),
|
|
<,
|
|
0);
|
|
g_assert_cmpint(fu_common_vercmp_full("1.2.3", "1.2.2", FWUPD_VERSION_FORMAT_UNKNOWN),
|
|
>,
|
|
0);
|
|
g_assert_cmpint(
|
|
fu_common_vercmp_full("001.002.009", "001.002.000", FWUPD_VERSION_FORMAT_UNKNOWN),
|
|
>,
|
|
0);
|
|
|
|
/* unequal depth */
|
|
g_assert_cmpint(fu_common_vercmp_full("1.2.3", "1.2.3.1", FWUPD_VERSION_FORMAT_UNKNOWN),
|
|
<,
|
|
0);
|
|
g_assert_cmpint(fu_common_vercmp_full("1.2.3.1", "1.2.4", FWUPD_VERSION_FORMAT_UNKNOWN),
|
|
<,
|
|
0);
|
|
|
|
/* mixed-alpha-numeric */
|
|
g_assert_cmpint(fu_common_vercmp_full("1.2.3a", "1.2.3a", FWUPD_VERSION_FORMAT_UNKNOWN),
|
|
==,
|
|
0);
|
|
g_assert_cmpint(fu_common_vercmp_full("1.2.3a", "1.2.3b", FWUPD_VERSION_FORMAT_UNKNOWN),
|
|
<,
|
|
0);
|
|
g_assert_cmpint(fu_common_vercmp_full("1.2.3b", "1.2.3a", FWUPD_VERSION_FORMAT_UNKNOWN),
|
|
>,
|
|
0);
|
|
|
|
/* alpha version append */
|
|
g_assert_cmpint(fu_common_vercmp_full("1.2.3", "1.2.3a", FWUPD_VERSION_FORMAT_UNKNOWN),
|
|
<,
|
|
0);
|
|
g_assert_cmpint(fu_common_vercmp_full("1.2.3a", "1.2.3", FWUPD_VERSION_FORMAT_UNKNOWN),
|
|
>,
|
|
0);
|
|
|
|
/* alpha only */
|
|
g_assert_cmpint(fu_common_vercmp_full("alpha", "alpha", FWUPD_VERSION_FORMAT_UNKNOWN),
|
|
==,
|
|
0);
|
|
g_assert_cmpint(fu_common_vercmp_full("alpha", "beta", FWUPD_VERSION_FORMAT_UNKNOWN), <, 0);
|
|
g_assert_cmpint(fu_common_vercmp_full("beta", "alpha", FWUPD_VERSION_FORMAT_UNKNOWN), >, 0);
|
|
|
|
/* alpha-compare */
|
|
g_assert_cmpint(fu_common_vercmp_full("1.2a.3", "1.2a.3", FWUPD_VERSION_FORMAT_UNKNOWN),
|
|
==,
|
|
0);
|
|
g_assert_cmpint(fu_common_vercmp_full("1.2a.3", "1.2b.3", FWUPD_VERSION_FORMAT_UNKNOWN),
|
|
<,
|
|
0);
|
|
g_assert_cmpint(fu_common_vercmp_full("1.2b.3", "1.2a.3", FWUPD_VERSION_FORMAT_UNKNOWN),
|
|
>,
|
|
0);
|
|
|
|
/* tilde is all-powerful */
|
|
g_assert_cmpint(
|
|
fu_common_vercmp_full("1.2.3~rc1", "1.2.3~rc1", FWUPD_VERSION_FORMAT_UNKNOWN),
|
|
==,
|
|
0);
|
|
g_assert_cmpint(fu_common_vercmp_full("1.2.3~rc1", "1.2.3", FWUPD_VERSION_FORMAT_UNKNOWN),
|
|
<,
|
|
0);
|
|
g_assert_cmpint(fu_common_vercmp_full("1.2.3", "1.2.3~rc1", FWUPD_VERSION_FORMAT_UNKNOWN),
|
|
>,
|
|
0);
|
|
g_assert_cmpint(
|
|
fu_common_vercmp_full("1.2.3~rc2", "1.2.3~rc1", FWUPD_VERSION_FORMAT_UNKNOWN),
|
|
>,
|
|
0);
|
|
|
|
/* invalid */
|
|
g_assert_cmpint(fu_common_vercmp_full("1", NULL, FWUPD_VERSION_FORMAT_UNKNOWN),
|
|
==,
|
|
G_MAXINT);
|
|
g_assert_cmpint(fu_common_vercmp_full(NULL, "1", FWUPD_VERSION_FORMAT_UNKNOWN),
|
|
==,
|
|
G_MAXINT);
|
|
g_assert_cmpint(fu_common_vercmp_full(NULL, NULL, FWUPD_VERSION_FORMAT_UNKNOWN),
|
|
==,
|
|
G_MAXINT);
|
|
}
|
|
|
|
static void
|
|
fu_firmware_ihex_func(void)
|
|
{
|
|
const guint8 *data;
|
|
gboolean ret;
|
|
gsize len;
|
|
g_autofree gchar *filename_hex = NULL;
|
|
g_autofree gchar *filename_ref = NULL;
|
|
g_autofree gchar *str = NULL;
|
|
g_autoptr(FuFirmware) firmware = fu_ihex_firmware_new();
|
|
g_autoptr(GBytes) data_file = NULL;
|
|
g_autoptr(GBytes) data_fw = NULL;
|
|
g_autoptr(GBytes) data_hex = NULL;
|
|
g_autoptr(GBytes) data_ref = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
/* load a Intel hex32 file */
|
|
filename_hex = g_build_filename(TESTDATADIR_SRC, "firmware.hex", NULL);
|
|
data_file = fu_common_get_contents_bytes(filename_hex, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(data_file != NULL);
|
|
ret = fu_firmware_parse(firmware, data_file, FWUPD_INSTALL_FLAG_NONE, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
data_fw = fu_firmware_get_bytes(firmware, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(data_fw);
|
|
g_assert_cmpint(g_bytes_get_size(data_fw), ==, 136);
|
|
|
|
/* did we match the reference file? */
|
|
filename_ref = g_build_filename(TESTDATADIR_SRC, "firmware.bin", NULL);
|
|
data_ref = fu_common_get_contents_bytes(filename_ref, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(data_ref != NULL);
|
|
ret = fu_common_bytes_compare(data_fw, data_ref, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
|
|
/* export a ihex file (which will be slightly different due to
|
|
* non-continous regions being expanded */
|
|
data_hex = fu_firmware_write(firmware, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(data_hex != NULL);
|
|
data = g_bytes_get_data(data_hex, &len);
|
|
str = g_strndup((const gchar *)data, len);
|
|
g_assert_cmpstr(str,
|
|
==,
|
|
":104000003DEF20F000000000FACF01F0FBCF02F0FE\n"
|
|
":10401000E9CF03F0EACF04F0E1CF05F0E2CF06F0FC\n"
|
|
":10402000D9CF07F0DACF08F0F3CF09F0F4CF0AF0D8\n"
|
|
":10403000F6CF0BF0F7CF0CF0F8CF0DF0F5CF0EF078\n"
|
|
":104040000EC0F5FF0DC0F8FF0CC0F7FF0BC0F6FF68\n"
|
|
":104050000AC0F4FF09C0F3FF08C0DAFF07C0D9FFA8\n"
|
|
":1040600006C0E2FF05C0E1FF04C0EAFF03C0E9FFAC\n"
|
|
":1040700002C0FBFF01C0FAFF11003FEF20F000017A\n"
|
|
":0840800042EF20F03DEF20F0BB\n"
|
|
":00000001FF\n");
|
|
}
|
|
|
|
static void
|
|
fu_firmware_ihex_signed_func(void)
|
|
{
|
|
const guint8 *data;
|
|
gboolean ret;
|
|
gsize len;
|
|
g_autofree gchar *filename_shex = NULL;
|
|
g_autoptr(FuFirmware) firmware = fu_ihex_firmware_new();
|
|
g_autoptr(GBytes) data_file = NULL;
|
|
g_autoptr(GBytes) data_fw = NULL;
|
|
g_autoptr(GBytes) data_sig = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
/* load a signed Intel hex32 file */
|
|
filename_shex = g_build_filename(TESTDATADIR_SRC, "firmware.shex", NULL);
|
|
data_file = fu_common_get_contents_bytes(filename_shex, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(data_file != NULL);
|
|
ret = fu_firmware_parse(firmware, data_file, FWUPD_INSTALL_FLAG_NONE, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
data_fw = fu_firmware_get_bytes(firmware, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(data_fw);
|
|
g_assert_cmpint(g_bytes_get_size(data_fw), ==, 136);
|
|
|
|
/* get the signed image */
|
|
data_sig = fu_firmware_get_image_by_id_bytes(firmware, FU_FIRMWARE_ID_SIGNATURE, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(data_sig);
|
|
data = g_bytes_get_data(data_sig, &len);
|
|
g_assert_cmpint(len, ==, 8);
|
|
g_assert(data != NULL);
|
|
g_assert_cmpint(memcmp(data, "deadbeef", 8), ==, 0);
|
|
}
|
|
|
|
static void
|
|
fu_firmware_ihex_offset_func(void)
|
|
{
|
|
const guint8 *data;
|
|
gboolean ret;
|
|
gsize len;
|
|
g_autofree gchar *str = NULL;
|
|
g_autoptr(FuFirmware) firmware = fu_ihex_firmware_new();
|
|
g_autoptr(FuFirmware) firmware_verify = fu_ihex_firmware_new();
|
|
g_autoptr(GBytes) data_bin = NULL;
|
|
g_autoptr(GBytes) data_dummy = NULL;
|
|
g_autoptr(GBytes) data_verify = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
/* add a 4 byte image in high memory */
|
|
data_dummy = g_bytes_new_static("foo", 4);
|
|
fu_firmware_set_addr(firmware, 0x80000000);
|
|
fu_firmware_set_bytes(firmware, data_dummy);
|
|
data_bin = fu_firmware_write(firmware, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(data_bin != NULL);
|
|
data = g_bytes_get_data(data_bin, &len);
|
|
str = g_strndup((const gchar *)data, len);
|
|
g_assert_cmpstr(str,
|
|
==,
|
|
":0200000480007A\n"
|
|
":04000000666F6F00B8\n"
|
|
":00000001FF\n");
|
|
|
|
/* check we can load it too */
|
|
ret = fu_firmware_parse(firmware_verify, data_bin, FWUPD_INSTALL_FLAG_NONE, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
g_assert_cmpint(fu_firmware_get_addr(firmware_verify), ==, 0x80000000);
|
|
data_verify = fu_firmware_get_bytes(firmware_verify, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(data_verify != NULL);
|
|
g_assert_cmpint(g_bytes_get_size(data_verify), ==, 0x4);
|
|
}
|
|
|
|
static void
|
|
fu_firmware_srec_func(void)
|
|
{
|
|
gboolean ret;
|
|
g_autofree gchar *filename_srec = NULL;
|
|
g_autofree gchar *filename_ref = NULL;
|
|
g_autoptr(FuFirmware) firmware = fu_srec_firmware_new();
|
|
g_autoptr(GBytes) data_ref = NULL;
|
|
g_autoptr(GBytes) data_srec = NULL;
|
|
g_autoptr(GBytes) data_bin = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
filename_srec = g_build_filename(TESTDATADIR_SRC, "firmware.srec", NULL);
|
|
data_srec = fu_common_get_contents_bytes(filename_srec, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(data_srec != NULL);
|
|
ret = fu_firmware_parse(firmware, data_srec, FWUPD_INSTALL_FLAG_NONE, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
data_bin = fu_firmware_get_bytes(firmware, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(data_bin);
|
|
g_assert_cmpint(g_bytes_get_size(data_bin), ==, 136);
|
|
|
|
/* did we match the reference file? */
|
|
filename_ref = g_build_filename(TESTDATADIR_SRC, "firmware.bin", NULL);
|
|
data_ref = fu_common_get_contents_bytes(filename_ref, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(data_ref != NULL);
|
|
ret = fu_common_bytes_compare(data_bin, data_ref, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
}
|
|
|
|
static void
|
|
fu_firmware_srec_tokenization_func(void)
|
|
{
|
|
FuSrecFirmwareRecord *rcd;
|
|
GPtrArray *records;
|
|
gboolean ret;
|
|
g_autoptr(FuFirmware) firmware = fu_srec_firmware_new();
|
|
g_autoptr(GBytes) data_srec = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
const gchar *buf = "S3060000001400E5\r\n"
|
|
"S31000000002281102000000007F0304002C\r\n"
|
|
"S306000000145095\r\n"
|
|
"S70500000000FA\r\n";
|
|
data_srec = g_bytes_new_static(buf, strlen(buf));
|
|
g_assert_no_error(error);
|
|
g_assert(data_srec != NULL);
|
|
ret = fu_firmware_tokenize(firmware, data_srec, FWUPD_INSTALL_FLAG_NONE, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
|
|
records = fu_srec_firmware_get_records(FU_SREC_FIRMWARE(firmware));
|
|
g_assert_nonnull(records);
|
|
g_assert_cmpint(records->len, ==, 4);
|
|
rcd = g_ptr_array_index(records, 2);
|
|
g_assert_nonnull(rcd);
|
|
g_assert_cmpint(rcd->ln, ==, 0x3);
|
|
g_assert_cmpint(rcd->kind, ==, 3);
|
|
g_assert_cmpint(rcd->addr, ==, 0x14);
|
|
g_assert_cmpint(rcd->buf->len, ==, 0x1);
|
|
g_assert_cmpint(rcd->buf->data[0], ==, 0x50);
|
|
}
|
|
|
|
static void
|
|
fu_firmware_build_func(void)
|
|
{
|
|
gboolean ret;
|
|
g_autofree gchar *str = NULL;
|
|
g_autoptr(FuFirmware) firmware = fu_firmware_new();
|
|
g_autoptr(FuFirmware) img = NULL;
|
|
g_autoptr(GBytes) blob = NULL;
|
|
g_autoptr(GBytes) blob2 = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
g_autoptr(XbBuilder) builder = xb_builder_new();
|
|
g_autoptr(XbBuilderSource) source = xb_builder_source_new();
|
|
g_autoptr(XbNode) n = NULL;
|
|
g_autoptr(XbSilo) silo = NULL;
|
|
const gchar *buf = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
|
|
"<firmware>\n"
|
|
" <version>1.2.3</version>\n"
|
|
" <firmware>\n"
|
|
" <version>4.5.6</version>\n"
|
|
" <id>header</id>\n"
|
|
" <idx>456</idx>\n"
|
|
" <addr>0x456</addr>\n"
|
|
" <data>aGVsbG8=</data>\n"
|
|
" </firmware>\n"
|
|
" <firmware>\n"
|
|
" <version>7.8.9</version>\n"
|
|
" <id>header</id>\n"
|
|
" <idx>789</idx>\n"
|
|
" <addr>0x789</addr>\n"
|
|
" </firmware>\n"
|
|
"</firmware>\n";
|
|
blob = g_bytes_new_static(buf, strlen(buf));
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(blob);
|
|
|
|
/* parse XML */
|
|
ret = xb_builder_source_load_bytes(source, blob, XB_BUILDER_SOURCE_FLAG_NONE, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
xb_builder_import_source(builder, source);
|
|
silo = xb_builder_compile(builder, XB_BUILDER_COMPILE_FLAG_NONE, NULL, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(silo);
|
|
n = xb_silo_query_first(silo, "firmware", &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(n);
|
|
|
|
/* build object */
|
|
ret = fu_firmware_build(firmware, n, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
g_assert_cmpstr(fu_firmware_get_version(firmware), ==, "1.2.3");
|
|
|
|
/* verify image */
|
|
img = fu_firmware_get_image_by_id(firmware, "header", &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(img);
|
|
g_assert_cmpstr(fu_firmware_get_version(img), ==, "4.5.6");
|
|
g_assert_cmpint(fu_firmware_get_idx(img), ==, 456);
|
|
g_assert_cmpint(fu_firmware_get_addr(img), ==, 0x456);
|
|
blob2 = fu_firmware_write(img, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(blob2);
|
|
g_assert_cmpint(g_bytes_get_size(blob2), ==, 5);
|
|
str = g_strndup(g_bytes_get_data(blob2, NULL), g_bytes_get_size(blob2));
|
|
g_assert_cmpstr(str, ==, "hello");
|
|
}
|
|
|
|
static gsize
|
|
fu_firmware_dfuse_image_get_size(FuFirmware *self)
|
|
{
|
|
g_autoptr(GPtrArray) chunks = fu_firmware_get_chunks(self, NULL);
|
|
gsize length = 0;
|
|
for (guint i = 0; i < chunks->len; i++) {
|
|
FuChunk *chk = g_ptr_array_index(chunks, i);
|
|
length += fu_chunk_get_data_sz(chk);
|
|
}
|
|
return length;
|
|
}
|
|
|
|
static gsize
|
|
fu_firmware_dfuse_get_size(FuFirmware *firmware)
|
|
{
|
|
gsize length = 0;
|
|
g_autoptr(GPtrArray) images = fu_firmware_get_images(firmware);
|
|
for (guint i = 0; i < images->len; i++) {
|
|
FuFirmware *image = g_ptr_array_index(images, i);
|
|
length += fu_firmware_dfuse_image_get_size(image);
|
|
}
|
|
return length;
|
|
}
|
|
|
|
static void
|
|
fu_firmware_dfuse_func(void)
|
|
{
|
|
gboolean ret;
|
|
g_autofree gchar *filename = NULL;
|
|
g_autoptr(FuFirmware) firmware = fu_dfuse_firmware_new();
|
|
g_autoptr(GBytes) roundtrip_orig = NULL;
|
|
g_autoptr(GBytes) roundtrip = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
/* load a DfuSe firmware */
|
|
filename = g_build_filename(TESTDATADIR_SRC, "firmware.dfuse", NULL);
|
|
g_assert(filename != NULL);
|
|
roundtrip_orig = fu_common_get_contents_bytes(filename, &error);
|
|
ret = fu_firmware_parse(firmware, roundtrip_orig, FWUPD_INSTALL_FLAG_NONE, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
g_assert_cmpint(fu_dfu_firmware_get_vid(FU_DFU_FIRMWARE(firmware)), ==, 0x1234);
|
|
g_assert_cmpint(fu_dfu_firmware_get_pid(FU_DFU_FIRMWARE(firmware)), ==, 0x5678);
|
|
g_assert_cmpint(fu_dfu_firmware_get_release(FU_DFU_FIRMWARE(firmware)), ==, 0x8642);
|
|
g_assert_cmpint(fu_firmware_dfuse_get_size(firmware), ==, 0x21);
|
|
|
|
/* can we roundtrip without losing data */
|
|
roundtrip = fu_firmware_write(firmware, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(roundtrip != NULL);
|
|
ret = fu_common_bytes_compare(roundtrip, roundtrip_orig, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
}
|
|
|
|
static void
|
|
fu_firmware_fmap_func(void)
|
|
{
|
|
gboolean ret;
|
|
g_autofree gchar *filename = NULL;
|
|
g_autofree gchar *img_str = NULL;
|
|
g_autoptr(FuFirmware) firmware = fu_fmap_firmware_new();
|
|
g_autoptr(FuFirmware) img = NULL;
|
|
g_autoptr(GBytes) img_blob = NULL;
|
|
g_autoptr(GBytes) roundtrip = NULL;
|
|
g_autoptr(GBytes) roundtrip_orig = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
g_autoptr(GPtrArray) images = NULL;
|
|
|
|
#ifndef HAVE_MEMMEM
|
|
g_test_skip("no memmem()");
|
|
return;
|
|
#endif
|
|
|
|
/* load firmware */
|
|
filename = g_build_filename(TESTDATADIR_SRC, "firmware.fmap", NULL);
|
|
g_assert(filename != NULL);
|
|
roundtrip_orig = fu_common_get_contents_bytes(filename, &error);
|
|
ret = fu_firmware_parse(firmware, roundtrip_orig, FWUPD_INSTALL_FLAG_NONE, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
|
|
/* check image count */
|
|
images = fu_firmware_get_images(firmware);
|
|
g_assert_cmpint(images->len, ==, 2);
|
|
|
|
/* get a specific image */
|
|
img = fu_firmware_get_image_by_id(firmware, "FMAP", &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(img);
|
|
img_blob = fu_firmware_get_bytes(img, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(img_blob);
|
|
g_assert_cmpint(g_bytes_get_size(img_blob), ==, 0xb);
|
|
img_str = g_strndup(g_bytes_get_data(img_blob, NULL), g_bytes_get_size(img_blob));
|
|
g_assert_cmpstr(img_str, ==, "hello world");
|
|
|
|
/* can we roundtrip without losing data */
|
|
roundtrip = fu_firmware_write(firmware, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(roundtrip != NULL);
|
|
ret = fu_common_bytes_compare(roundtrip, roundtrip_orig, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
}
|
|
|
|
static void
|
|
fu_firmware_new_from_gtypes_func(void)
|
|
{
|
|
g_autofree gchar *fn = NULL;
|
|
g_autoptr(FuFirmware) firmware1 = NULL;
|
|
g_autoptr(FuFirmware) firmware2 = NULL;
|
|
g_autoptr(FuFirmware) firmware3 = NULL;
|
|
g_autoptr(GBytes) blob = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
fn = g_build_filename(TESTDATADIR_SRC, "firmware.dfu", NULL);
|
|
blob = fu_common_get_contents_bytes(fn, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(blob != NULL);
|
|
|
|
/* dfu -> FuDfuFirmware */
|
|
firmware1 = fu_firmware_new_from_gtypes(blob,
|
|
FWUPD_INSTALL_FLAG_NONE,
|
|
&error,
|
|
FU_TYPE_SREC_FIRMWARE,
|
|
FU_TYPE_DFUSE_FIRMWARE,
|
|
FU_TYPE_DFU_FIRMWARE,
|
|
G_TYPE_INVALID);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(firmware1);
|
|
g_assert_cmpstr(G_OBJECT_TYPE_NAME(firmware1), ==, "FuDfuFirmware");
|
|
|
|
/* dfu -> FuFirmware */
|
|
firmware2 = fu_firmware_new_from_gtypes(blob,
|
|
FWUPD_INSTALL_FLAG_NONE,
|
|
&error,
|
|
FU_TYPE_SREC_FIRMWARE,
|
|
FU_TYPE_FIRMWARE,
|
|
G_TYPE_INVALID);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(firmware2);
|
|
g_assert_cmpstr(G_OBJECT_TYPE_NAME(firmware2), ==, "FuFirmware");
|
|
|
|
/* dfu -> error */
|
|
firmware3 = fu_firmware_new_from_gtypes(blob,
|
|
FWUPD_INSTALL_FLAG_NONE,
|
|
&error,
|
|
FU_TYPE_SREC_FIRMWARE,
|
|
G_TYPE_INVALID);
|
|
g_assert_error(error, FWUPD_ERROR, FWUPD_ERROR_INVALID_FILE);
|
|
g_assert_null(firmware3);
|
|
}
|
|
|
|
static void
|
|
fu_firmware_dfu_func(void)
|
|
{
|
|
gboolean ret;
|
|
g_autofree gchar *filename_dfu = NULL;
|
|
g_autofree gchar *filename_ref = NULL;
|
|
g_autoptr(FuFirmware) firmware = fu_dfu_firmware_new();
|
|
g_autoptr(GBytes) data_ref = NULL;
|
|
g_autoptr(GBytes) data_dfu = NULL;
|
|
g_autoptr(GBytes) data_bin = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
filename_dfu = g_build_filename(TESTDATADIR_SRC, "firmware.dfu", NULL);
|
|
data_dfu = fu_common_get_contents_bytes(filename_dfu, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(data_dfu != NULL);
|
|
ret = fu_firmware_parse(firmware, data_dfu, FWUPD_INSTALL_FLAG_NONE, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(ret);
|
|
g_assert_cmpint(fu_dfu_firmware_get_vid(FU_DFU_FIRMWARE(firmware)), ==, 0x1234);
|
|
g_assert_cmpint(fu_dfu_firmware_get_pid(FU_DFU_FIRMWARE(firmware)), ==, 0x4321);
|
|
g_assert_cmpint(fu_dfu_firmware_get_release(FU_DFU_FIRMWARE(firmware)), ==, 0xdead);
|
|
data_bin = fu_firmware_get_bytes(firmware, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(data_bin);
|
|
g_assert_cmpint(g_bytes_get_size(data_bin), ==, 136);
|
|
|
|
/* did we match the reference file? */
|
|
filename_ref = g_build_filename(TESTDATADIR_SRC, "firmware.bin", NULL);
|
|
data_ref = fu_common_get_contents_bytes(filename_ref, &error);
|
|
g_assert_no_error(error);
|
|
g_assert(data_ref != NULL);
|
|
ret = fu_common_bytes_compare(data_bin, data_ref, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
}
|
|
|
|
static void
|
|
fu_firmware_func(void)
|
|
{
|
|
gboolean ret;
|
|
g_autoptr(FuFirmware) firmware = fu_firmware_new();
|
|
g_autoptr(FuFirmware) img1 = fu_firmware_new();
|
|
g_autoptr(FuFirmware) img2 = fu_firmware_new();
|
|
g_autoptr(FuFirmware) img_id = NULL;
|
|
g_autoptr(FuFirmware) img_idx = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
g_autoptr(GPtrArray) images = NULL;
|
|
g_autofree gchar *str = NULL;
|
|
|
|
fu_firmware_set_addr(img1, 0x200);
|
|
fu_firmware_set_idx(img1, 13);
|
|
fu_firmware_set_id(img1, "primary");
|
|
fu_firmware_set_filename(img1, "BIOS.bin");
|
|
fu_firmware_add_image(firmware, img1);
|
|
fu_firmware_set_addr(img2, 0x400);
|
|
fu_firmware_set_idx(img2, 23);
|
|
fu_firmware_set_id(img2, "secondary");
|
|
fu_firmware_add_image(firmware, img2);
|
|
|
|
img_id = fu_firmware_get_image_by_id(firmware, "NotGoingToExist", &error);
|
|
g_assert_error(error, FWUPD_ERROR, FWUPD_ERROR_NOT_FOUND);
|
|
g_assert_null(img_id);
|
|
g_clear_error(&error);
|
|
img_id = fu_firmware_get_image_by_id(firmware, "primary", &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(img_id);
|
|
g_assert_cmpint(fu_firmware_get_addr(img_id), ==, 0x200);
|
|
g_assert_cmpint(fu_firmware_get_idx(img_id), ==, 13);
|
|
g_assert_cmpstr(fu_firmware_get_id(img_id), ==, "primary");
|
|
|
|
img_idx = fu_firmware_get_image_by_idx(firmware, 123456, &error);
|
|
g_assert_error(error, FWUPD_ERROR, FWUPD_ERROR_NOT_FOUND);
|
|
g_assert_null(img_idx);
|
|
g_clear_error(&error);
|
|
img_idx = fu_firmware_get_image_by_idx(firmware, 23, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(img_idx);
|
|
g_assert_cmpint(fu_firmware_get_addr(img_idx), ==, 0x400);
|
|
g_assert_cmpint(fu_firmware_get_idx(img_idx), ==, 23);
|
|
g_assert_cmpstr(fu_firmware_get_id(img_idx), ==, "secondary");
|
|
|
|
str = fu_firmware_to_string(firmware);
|
|
g_assert_cmpstr(str,
|
|
==,
|
|
"<firmware>\n"
|
|
" <firmware>\n"
|
|
" <id>primary</id>\n"
|
|
" <idx>0xd</idx>\n"
|
|
" <addr>0x200</addr>\n"
|
|
" <filename>BIOS.bin</filename>\n"
|
|
" </firmware>\n"
|
|
" <firmware>\n"
|
|
" <id>secondary</id>\n"
|
|
" <idx>0x17</idx>\n"
|
|
" <addr>0x400</addr>\n"
|
|
" </firmware>\n"
|
|
"</firmware>\n");
|
|
|
|
ret = fu_firmware_remove_image_by_idx(firmware, 0xd, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
ret = fu_firmware_remove_image_by_id(firmware, "secondary", &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
images = fu_firmware_get_images(firmware);
|
|
g_assert_nonnull(images);
|
|
g_assert_cmpint(images->len, ==, 0);
|
|
ret = fu_firmware_remove_image_by_id(firmware, "NOTGOINGTOEXIST", &error);
|
|
g_assert_error(error, FWUPD_ERROR, FWUPD_ERROR_NOT_FOUND);
|
|
g_assert_false(ret);
|
|
}
|
|
|
|
static void
|
|
fu_firmware_dedupe_func(void)
|
|
{
|
|
g_autoptr(FuFirmware) firmware = fu_firmware_new();
|
|
g_autoptr(FuFirmware) img1 = fu_firmware_new();
|
|
g_autoptr(FuFirmware) img1_old = fu_firmware_new();
|
|
g_autoptr(FuFirmware) img2 = fu_firmware_new();
|
|
g_autoptr(FuFirmware) img2_old = fu_firmware_new();
|
|
g_autoptr(FuFirmware) img_id = NULL;
|
|
g_autoptr(FuFirmware) img_idx = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
fu_firmware_add_flag(firmware, FU_FIRMWARE_FLAG_DEDUPE_ID);
|
|
fu_firmware_add_flag(firmware, FU_FIRMWARE_FLAG_DEDUPE_IDX);
|
|
|
|
fu_firmware_set_idx(img1_old, 13);
|
|
fu_firmware_set_id(img1_old, "DAVE");
|
|
fu_firmware_add_image(firmware, img1_old);
|
|
|
|
fu_firmware_set_idx(img1, 13);
|
|
fu_firmware_set_id(img1, "primary");
|
|
fu_firmware_add_image(firmware, img1);
|
|
|
|
fu_firmware_set_idx(img2_old, 123456);
|
|
fu_firmware_set_id(img2_old, "secondary");
|
|
fu_firmware_add_image(firmware, img2_old);
|
|
|
|
fu_firmware_set_idx(img2, 23);
|
|
fu_firmware_set_id(img2, "secondary");
|
|
fu_firmware_add_image(firmware, img2);
|
|
|
|
img_id = fu_firmware_get_image_by_id(firmware, "primary", &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(img_id);
|
|
g_assert_cmpint(fu_firmware_get_idx(img_id), ==, 13);
|
|
g_assert_cmpstr(fu_firmware_get_id(img_id), ==, "primary");
|
|
|
|
img_idx = fu_firmware_get_image_by_idx(firmware, 23, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(img_idx);
|
|
g_assert_cmpint(fu_firmware_get_idx(img_idx), ==, 23);
|
|
g_assert_cmpstr(fu_firmware_get_id(img_idx), ==, "secondary");
|
|
}
|
|
|
|
static void
|
|
fu_efivar_func(void)
|
|
{
|
|
gboolean ret;
|
|
gsize sz = 0;
|
|
guint32 attr = 0;
|
|
guint64 total;
|
|
g_autofree guint8 *data = NULL;
|
|
g_autoptr(GError) error = NULL;
|
|
g_autoptr(GPtrArray) names = NULL;
|
|
|
|
#ifndef __linux__
|
|
g_test_skip("only works on Linux");
|
|
return;
|
|
#endif
|
|
|
|
/* check supported */
|
|
ret = fu_efivar_supported(&error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
|
|
/* check we can get the space used */
|
|
total = fu_efivar_space_used(&error);
|
|
g_assert_no_error(error);
|
|
g_assert_cmpint(total, >=, 0x2000);
|
|
|
|
/* check existing keys */
|
|
g_assert_false(fu_efivar_exists(FU_EFIVAR_GUID_EFI_GLOBAL, "NotGoingToExist"));
|
|
g_assert_true(fu_efivar_exists(FU_EFIVAR_GUID_EFI_GLOBAL, "SecureBoot"));
|
|
|
|
/* list a few keys */
|
|
names = fu_efivar_get_names(FU_EFIVAR_GUID_EFI_GLOBAL, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_nonnull(names);
|
|
g_assert_cmpint(names->len, ==, 2);
|
|
|
|
/* write and read a key */
|
|
ret = fu_efivar_set_data(FU_EFIVAR_GUID_EFI_GLOBAL,
|
|
"Test",
|
|
(guint8 *)"1",
|
|
1,
|
|
FU_EFIVAR_ATTR_NON_VOLATILE | FU_EFIVAR_ATTR_RUNTIME_ACCESS,
|
|
&error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
ret = fu_efivar_get_data(FU_EFIVAR_GUID_EFI_GLOBAL, "Test", &data, &sz, &attr, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
g_assert_cmpint(sz, ==, 1);
|
|
g_assert_cmpint(attr, ==, FU_EFIVAR_ATTR_NON_VOLATILE | FU_EFIVAR_ATTR_RUNTIME_ACCESS);
|
|
g_assert_cmpint(data[0], ==, '1');
|
|
|
|
/* delete single key */
|
|
ret = fu_efivar_delete(FU_EFIVAR_GUID_EFI_GLOBAL, "Test", &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
g_assert_false(fu_efivar_exists(FU_EFIVAR_GUID_EFI_GLOBAL, "Test"));
|
|
|
|
/* delete multiple keys */
|
|
ret = fu_efivar_set_data(FU_EFIVAR_GUID_EFI_GLOBAL, "Test1", (guint8 *)"1", 1, 0, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
ret = fu_efivar_set_data(FU_EFIVAR_GUID_EFI_GLOBAL, "Test2", (guint8 *)"1", 1, 0, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
ret = fu_efivar_delete_with_glob(FU_EFIVAR_GUID_EFI_GLOBAL, "Test*", &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
g_assert_false(fu_efivar_exists(FU_EFIVAR_GUID_EFI_GLOBAL, "Test1"));
|
|
g_assert_false(fu_efivar_exists(FU_EFIVAR_GUID_EFI_GLOBAL, "Test2"));
|
|
|
|
/* read a key that doesn't exist */
|
|
ret = fu_efivar_get_data(FU_EFIVAR_GUID_EFI_GLOBAL,
|
|
"NotGoingToExist",
|
|
NULL,
|
|
NULL,
|
|
NULL,
|
|
&error);
|
|
g_assert_error(error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND);
|
|
g_assert_false(ret);
|
|
}
|
|
|
|
typedef struct {
|
|
guint cnt_success;
|
|
guint cnt_failed;
|
|
} FuDeviceRetryHelper;
|
|
|
|
static gboolean
|
|
fu_device_retry_success(FuDevice *device, gpointer user_data, GError **error)
|
|
{
|
|
FuDeviceRetryHelper *helper = (FuDeviceRetryHelper *)user_data;
|
|
helper->cnt_success++;
|
|
return TRUE;
|
|
}
|
|
|
|
static gboolean
|
|
fu_device_retry_failed(FuDevice *device, gpointer user_data, GError **error)
|
|
{
|
|
FuDeviceRetryHelper *helper = (FuDeviceRetryHelper *)user_data;
|
|
helper->cnt_failed++;
|
|
g_set_error_literal(error, FWUPD_ERROR, FWUPD_ERROR_INTERNAL, "failed");
|
|
return FALSE;
|
|
}
|
|
|
|
static gboolean
|
|
fu_device_retry_success_3rd_try(FuDevice *device, gpointer user_data, GError **error)
|
|
{
|
|
FuDeviceRetryHelper *helper = (FuDeviceRetryHelper *)user_data;
|
|
if (helper->cnt_failed == 2) {
|
|
helper->cnt_success++;
|
|
return TRUE;
|
|
}
|
|
helper->cnt_failed++;
|
|
g_set_error_literal(error, FWUPD_ERROR, FWUPD_ERROR_INTERNAL, "failed");
|
|
return FALSE;
|
|
}
|
|
|
|
static void
|
|
fu_device_retry_success_func(void)
|
|
{
|
|
gboolean ret;
|
|
g_autoptr(FuDevice) device = fu_device_new();
|
|
g_autoptr(GError) error = NULL;
|
|
FuDeviceRetryHelper helper = {
|
|
.cnt_success = 0,
|
|
.cnt_failed = 0,
|
|
};
|
|
fu_device_retry_add_recovery(device,
|
|
FWUPD_ERROR,
|
|
FWUPD_ERROR_INTERNAL,
|
|
fu_device_retry_failed);
|
|
ret = fu_device_retry(device, fu_device_retry_success, 3, &helper, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
g_assert_cmpint(helper.cnt_success, ==, 1);
|
|
g_assert_cmpint(helper.cnt_failed, ==, 0);
|
|
}
|
|
|
|
static void
|
|
fu_device_retry_failed_func(void)
|
|
{
|
|
gboolean ret;
|
|
g_autoptr(FuDevice) device = fu_device_new();
|
|
g_autoptr(GError) error = NULL;
|
|
FuDeviceRetryHelper helper = {
|
|
.cnt_success = 0,
|
|
.cnt_failed = 0,
|
|
};
|
|
fu_device_retry_add_recovery(device,
|
|
FWUPD_ERROR,
|
|
FWUPD_ERROR_INTERNAL,
|
|
fu_device_retry_success);
|
|
ret = fu_device_retry(device, fu_device_retry_failed, 3, &helper, &error);
|
|
g_assert_error(error, FWUPD_ERROR, FWUPD_ERROR_INTERNAL);
|
|
g_assert_true(!ret);
|
|
g_assert_cmpint(helper.cnt_success, ==, 2); /* do not reset for the last failure */
|
|
g_assert_cmpint(helper.cnt_failed, ==, 3);
|
|
}
|
|
|
|
static void
|
|
fu_device_retry_hardware_func(void)
|
|
{
|
|
gboolean ret;
|
|
g_autoptr(FuDevice) device = fu_device_new();
|
|
g_autoptr(GError) error = NULL;
|
|
FuDeviceRetryHelper helper = {
|
|
.cnt_success = 0,
|
|
.cnt_failed = 0,
|
|
};
|
|
ret = fu_device_retry(device, fu_device_retry_success_3rd_try, 3, &helper, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
g_assert_cmpint(helper.cnt_success, ==, 1);
|
|
g_assert_cmpint(helper.cnt_failed, ==, 2);
|
|
}
|
|
|
|
static void
|
|
fu_security_attrs_hsi_func(void)
|
|
{
|
|
g_autofree gchar *hsi1 = NULL;
|
|
g_autofree gchar *hsi2 = NULL;
|
|
g_autofree gchar *hsi3 = NULL;
|
|
g_autofree gchar *hsi4 = NULL;
|
|
g_autofree gchar *hsi5 = NULL;
|
|
g_autofree gchar *hsi6 = NULL;
|
|
g_autofree gchar *hsi7 = NULL;
|
|
g_autofree gchar *hsi8 = NULL;
|
|
g_autofree gchar *expected_hsi8 = NULL;
|
|
g_autoptr(FuSecurityAttrs) attrs = NULL;
|
|
g_autoptr(FwupdSecurityAttr) attr = NULL;
|
|
|
|
/* no attrs */
|
|
attrs = fu_security_attrs_new();
|
|
hsi1 = fu_security_attrs_calculate_hsi(attrs, FU_SECURITY_ATTRS_FLAG_NONE);
|
|
g_assert_cmpstr(hsi1, ==, "HSI:0");
|
|
|
|
/* just success from HSI:1 */
|
|
attr = fwupd_security_attr_new(FWUPD_SECURITY_ATTR_ID_SPI_BIOSWE);
|
|
fwupd_security_attr_set_plugin(attr, "test");
|
|
fwupd_security_attr_set_level(attr, FWUPD_SECURITY_ATTR_LEVEL_CRITICAL);
|
|
fwupd_security_attr_add_flag(attr, FWUPD_SECURITY_ATTR_FLAG_SUCCESS);
|
|
fwupd_security_attr_set_url(attr, "http://test");
|
|
fu_security_attrs_append(attrs, attr);
|
|
hsi2 = fu_security_attrs_calculate_hsi(attrs, FU_SECURITY_ATTRS_FLAG_NONE);
|
|
g_assert_cmpstr(hsi2, ==, "HSI:1");
|
|
g_clear_object(&attr);
|
|
|
|
/* add failed from HSI:2, so still HSI:1 */
|
|
attr = fwupd_security_attr_new("org.fwupd.hsi.PRX");
|
|
fwupd_security_attr_set_plugin(attr, "test");
|
|
fwupd_security_attr_set_level(attr, FWUPD_SECURITY_ATTR_LEVEL_IMPORTANT);
|
|
fwupd_security_attr_set_url(attr, "http://test");
|
|
fu_security_attrs_append(attrs, attr);
|
|
hsi3 = fu_security_attrs_calculate_hsi(attrs, FU_SECURITY_ATTRS_FLAG_NONE);
|
|
g_assert_cmpstr(hsi3, ==, "HSI:1");
|
|
g_clear_object(&attr);
|
|
|
|
/* add attr from HSI:3, obsoleting the failure */
|
|
attr = fwupd_security_attr_new("org.fwupd.hsi.BIOSGuard");
|
|
fwupd_security_attr_set_plugin(attr, "test");
|
|
fwupd_security_attr_set_level(attr, FWUPD_SECURITY_ATTR_LEVEL_THEORETICAL);
|
|
fwupd_security_attr_add_flag(attr, FWUPD_SECURITY_ATTR_FLAG_SUCCESS);
|
|
fwupd_security_attr_add_obsolete(attr, "org.fwupd.hsi.PRX");
|
|
fwupd_security_attr_set_url(attr, "http://test");
|
|
fu_security_attrs_append(attrs, attr);
|
|
fu_security_attrs_depsolve(attrs);
|
|
hsi4 = fu_security_attrs_calculate_hsi(attrs, FU_SECURITY_ATTRS_FLAG_NONE);
|
|
g_assert_cmpstr(hsi4, ==, "HSI:3");
|
|
g_clear_object(&attr);
|
|
|
|
/* add taint that was fine */
|
|
attr = fwupd_security_attr_new(FWUPD_SECURITY_ATTR_ID_FWUPD_PLUGINS);
|
|
fwupd_security_attr_set_plugin(attr, "test");
|
|
fwupd_security_attr_add_flag(attr, FWUPD_SECURITY_ATTR_FLAG_SUCCESS);
|
|
fwupd_security_attr_add_flag(attr, FWUPD_SECURITY_ATTR_FLAG_RUNTIME_ISSUE);
|
|
fwupd_security_attr_set_url(attr, "http://test");
|
|
fu_security_attrs_append(attrs, attr);
|
|
hsi5 = fu_security_attrs_calculate_hsi(attrs, FU_SECURITY_ATTRS_FLAG_NONE);
|
|
g_assert_cmpstr(hsi5, ==, "HSI:3");
|
|
g_clear_object(&attr);
|
|
|
|
/* add updates and attestation */
|
|
attr = fwupd_security_attr_new(FWUPD_SECURITY_ATTR_ID_FWUPD_UPDATES);
|
|
fwupd_security_attr_set_plugin(attr, "test");
|
|
fwupd_security_attr_add_flag(attr, FWUPD_SECURITY_ATTR_FLAG_SUCCESS);
|
|
fwupd_security_attr_set_url(attr, "http://test");
|
|
fu_security_attrs_append(attrs, attr);
|
|
hsi6 = fu_security_attrs_calculate_hsi(attrs, FU_SECURITY_ATTRS_FLAG_NONE);
|
|
g_assert_cmpstr(hsi6, ==, "HSI:3");
|
|
g_clear_object(&attr);
|
|
|
|
/* add issue that was uncool */
|
|
attr = fwupd_security_attr_new(FWUPD_SECURITY_ATTR_ID_KERNEL_SWAP);
|
|
fwupd_security_attr_set_plugin(attr, "test");
|
|
fwupd_security_attr_add_flag(attr, FWUPD_SECURITY_ATTR_FLAG_RUNTIME_ISSUE);
|
|
fwupd_security_attr_set_url(attr, "http://test");
|
|
fu_security_attrs_append(attrs, attr);
|
|
hsi7 = fu_security_attrs_calculate_hsi(attrs, FU_SECURITY_ATTRS_FLAG_NONE);
|
|
g_assert_cmpstr(hsi7, ==, "HSI:3!");
|
|
g_clear_object(&attr);
|
|
|
|
/* show version in the attribute */
|
|
attr = fwupd_security_attr_new(FWUPD_SECURITY_ATTR_ID_KERNEL_SWAP);
|
|
fwupd_security_attr_set_plugin(attr, "test");
|
|
fwupd_security_attr_add_flag(attr, FWUPD_SECURITY_ATTR_FLAG_RUNTIME_ISSUE);
|
|
fwupd_security_attr_set_url(attr, "http://test");
|
|
fu_security_attrs_append(attrs, attr);
|
|
hsi8 = fu_security_attrs_calculate_hsi(attrs, FU_SECURITY_ATTRS_FLAG_ADD_VERSION);
|
|
expected_hsi8 = g_strdup_printf("HSI:3! (v%d.%d.%d)",
|
|
FWUPD_MAJOR_VERSION,
|
|
FWUPD_MINOR_VERSION,
|
|
FWUPD_MICRO_VERSION);
|
|
g_assert_cmpstr(hsi8, ==, expected_hsi8);
|
|
g_clear_object(&attr);
|
|
}
|
|
static void
|
|
fu_firmware_dfuse_xml_func(void)
|
|
{
|
|
gboolean ret;
|
|
g_autofree gchar *csum1 = NULL;
|
|
g_autofree gchar *csum2 = NULL;
|
|
g_autofree gchar *xml_out = NULL;
|
|
g_autofree gchar *xml_src = NULL;
|
|
g_autoptr(FuFirmware) firmware1 = fu_dfuse_firmware_new();
|
|
g_autoptr(FuFirmware) firmware2 = fu_dfuse_firmware_new();
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
/* build and write */
|
|
ret = g_file_get_contents(FWUPD_FUZZINGSRCDIR "/dfuse.builder.xml", &xml_src, NULL, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
ret = fu_firmware_build_from_xml(firmware1, xml_src, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
csum1 = fu_firmware_get_checksum(firmware1, G_CHECKSUM_SHA1, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_cmpstr(csum1, ==, "c1ff429f0e381c8fe8e1b2ee41a5a9a79e2f2ff7");
|
|
|
|
/* ensure we can round-trip */
|
|
xml_out = fu_firmware_export_to_xml(firmware1, FU_FIRMWARE_EXPORT_FLAG_NONE, &error);
|
|
|
|
g_assert_no_error(error);
|
|
ret = fu_firmware_build_from_xml(firmware2, xml_out, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
csum2 = fu_firmware_get_checksum(firmware2, G_CHECKSUM_SHA1, &error);
|
|
g_assert_cmpstr(csum1, ==, csum2);
|
|
}
|
|
static void
|
|
fu_firmware_srec_xml_func(void)
|
|
{
|
|
gboolean ret;
|
|
g_autofree gchar *csum1 = NULL;
|
|
g_autofree gchar *csum2 = NULL;
|
|
g_autofree gchar *xml_out = NULL;
|
|
g_autofree gchar *xml_src = NULL;
|
|
g_autoptr(FuFirmware) firmware1 = fu_srec_firmware_new();
|
|
g_autoptr(FuFirmware) firmware2 = fu_srec_firmware_new();
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
/* build and write */
|
|
ret = g_file_get_contents(FWUPD_FUZZINGSRCDIR "/srec.builder.xml", &xml_src, NULL, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
ret = fu_firmware_build_from_xml(firmware1, xml_src, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
csum1 = fu_firmware_get_checksum(firmware1, G_CHECKSUM_SHA1, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_cmpstr(csum1, ==, "2aae6c35c94fcfb415dbe95f408b9ce91ee846ed");
|
|
|
|
/* ensure we can round-trip */
|
|
xml_out = fu_firmware_export_to_xml(firmware1, FU_FIRMWARE_EXPORT_FLAG_NONE, &error);
|
|
g_assert_no_error(error);
|
|
ret = fu_firmware_build_from_xml(firmware2, xml_out, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
csum2 = fu_firmware_get_checksum(firmware2, G_CHECKSUM_SHA1, &error);
|
|
g_assert_cmpstr(csum1, ==, csum2);
|
|
}
|
|
static void
|
|
fu_firmware_ihex_xml_func(void)
|
|
{
|
|
gboolean ret;
|
|
g_autofree gchar *csum1 = NULL;
|
|
g_autofree gchar *csum2 = NULL;
|
|
g_autofree gchar *xml_out = NULL;
|
|
g_autofree gchar *xml_src = NULL;
|
|
g_autoptr(FuFirmware) firmware1 = fu_ihex_firmware_new();
|
|
g_autoptr(FuFirmware) firmware2 = fu_ihex_firmware_new();
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
/* build and write */
|
|
ret = g_file_get_contents(FWUPD_FUZZINGSRCDIR "/ihex.builder.xml", &xml_src, NULL, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
ret = fu_firmware_build_from_xml(firmware1, xml_src, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
csum1 = fu_firmware_get_checksum(firmware1, G_CHECKSUM_SHA1, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_cmpstr(csum1, ==, "a8d74f767f3fc992b413e5ba801cedc80a4cf013");
|
|
|
|
/* ensure we can round-trip */
|
|
xml_out = fu_firmware_export_to_xml(firmware1, FU_FIRMWARE_EXPORT_FLAG_NONE, &error);
|
|
g_assert_no_error(error);
|
|
ret = fu_firmware_build_from_xml(firmware2, xml_out, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
csum2 = fu_firmware_get_checksum(firmware2, G_CHECKSUM_SHA1, &error);
|
|
g_assert_cmpstr(csum1, ==, csum2);
|
|
}
|
|
static void
|
|
fu_firmware_fmap_xml_func(void)
|
|
{
|
|
gboolean ret;
|
|
g_autofree gchar *csum1 = NULL;
|
|
g_autofree gchar *csum2 = NULL;
|
|
g_autofree gchar *xml_out = NULL;
|
|
g_autofree gchar *xml_src = NULL;
|
|
g_autoptr(FuFirmware) firmware1 = fu_fmap_firmware_new();
|
|
g_autoptr(FuFirmware) firmware2 = fu_fmap_firmware_new();
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
/* build and write */
|
|
ret = g_file_get_contents(FWUPD_FUZZINGSRCDIR "/fmap.builder.xml", &xml_src, NULL, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
ret = fu_firmware_build_from_xml(firmware1, xml_src, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
csum1 = fu_firmware_get_checksum(firmware1, G_CHECKSUM_SHA1, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_cmpstr(csum1, ==, "a0b9ffc10a586d217edf9e9bae7c1fe7c564ea01");
|
|
|
|
/* ensure we can round-trip */
|
|
xml_out = fu_firmware_export_to_xml(firmware1, FU_FIRMWARE_EXPORT_FLAG_NONE, &error);
|
|
g_assert_no_error(error);
|
|
ret = fu_firmware_build_from_xml(firmware2, xml_out, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
csum2 = fu_firmware_get_checksum(firmware2, G_CHECKSUM_SHA1, &error);
|
|
g_assert_cmpstr(csum1, ==, csum2);
|
|
}
|
|
|
|
static void
|
|
fu_efi_firmware_section_xml_func(void)
|
|
{
|
|
gboolean ret;
|
|
g_autofree gchar *csum1 = NULL;
|
|
g_autofree gchar *csum2 = NULL;
|
|
g_autofree gchar *xml_out = NULL;
|
|
g_autofree gchar *xml_src = NULL;
|
|
g_autoptr(FuFirmware) firmware1 = fu_efi_firmware_section_new();
|
|
g_autoptr(FuFirmware) firmware2 = fu_efi_firmware_section_new();
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
/* build and write */
|
|
ret = g_file_get_contents(FWUPD_FUZZINGSRCDIR "/efi-firmware-section.builder.xml",
|
|
&xml_src,
|
|
NULL,
|
|
&error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
ret = fu_firmware_build_from_xml(firmware1, xml_src, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
csum1 = fu_firmware_get_checksum(firmware1, G_CHECKSUM_SHA1, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_cmpstr(csum1, ==, "2aae6c35c94fcfb415dbe95f408b9ce91ee846ed");
|
|
|
|
/* ensure we can round-trip */
|
|
xml_out = fu_firmware_export_to_xml(firmware1, FU_FIRMWARE_EXPORT_FLAG_NONE, &error);
|
|
g_assert_no_error(error);
|
|
ret = fu_firmware_build_from_xml(firmware2, xml_out, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
csum2 = fu_firmware_get_checksum(firmware2, G_CHECKSUM_SHA1, &error);
|
|
g_assert_cmpstr(csum1, ==, csum2);
|
|
}
|
|
|
|
static void
|
|
fu_efi_firmware_file_xml_func(void)
|
|
{
|
|
gboolean ret;
|
|
g_autofree gchar *csum1 = NULL;
|
|
g_autofree gchar *csum2 = NULL;
|
|
g_autofree gchar *xml_out = NULL;
|
|
g_autofree gchar *xml_src = NULL;
|
|
g_autoptr(FuFirmware) firmware1 = fu_efi_firmware_file_new();
|
|
g_autoptr(FuFirmware) firmware2 = fu_efi_firmware_file_new();
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
/* build and write */
|
|
ret = g_file_get_contents(FWUPD_FUZZINGSRCDIR "/efi-firmware-file.builder.xml",
|
|
&xml_src,
|
|
NULL,
|
|
&error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
ret = fu_firmware_build_from_xml(firmware1, xml_src, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
csum1 = fu_firmware_get_checksum(firmware1, G_CHECKSUM_SHA1, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_cmpstr(csum1, ==, "1002c14b29a76069f3b7e35c50a55d2b0d197441");
|
|
|
|
/* ensure we can round-trip */
|
|
xml_out = fu_firmware_export_to_xml(firmware1, FU_FIRMWARE_EXPORT_FLAG_NONE, &error);
|
|
g_assert_no_error(error);
|
|
ret = fu_firmware_build_from_xml(firmware2, xml_out, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
csum2 = fu_firmware_get_checksum(firmware2, G_CHECKSUM_SHA1, &error);
|
|
g_assert_cmpstr(csum1, ==, csum2);
|
|
}
|
|
|
|
static void
|
|
fu_efi_firmware_filesystem_xml_func(void)
|
|
{
|
|
gboolean ret;
|
|
g_autofree gchar *csum1 = NULL;
|
|
g_autofree gchar *csum2 = NULL;
|
|
g_autofree gchar *xml_out = NULL;
|
|
g_autofree gchar *xml_src = NULL;
|
|
g_autoptr(FuFirmware) firmware1 = fu_efi_firmware_filesystem_new();
|
|
g_autoptr(FuFirmware) firmware2 = fu_efi_firmware_filesystem_new();
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
/* build and write */
|
|
ret = g_file_get_contents(FWUPD_FUZZINGSRCDIR "/efi-firmware-filesystem.builder.xml",
|
|
&xml_src,
|
|
NULL,
|
|
&error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
ret = fu_firmware_build_from_xml(firmware1, xml_src, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
csum1 = fu_firmware_get_checksum(firmware1, G_CHECKSUM_SHA1, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_cmpstr(csum1, ==, "d6fbadc1c303a3b4eede9db7fb0ddb353efffc86");
|
|
|
|
/* ensure we can round-trip */
|
|
xml_out = fu_firmware_export_to_xml(firmware1, FU_FIRMWARE_EXPORT_FLAG_NONE, &error);
|
|
g_assert_no_error(error);
|
|
ret = fu_firmware_build_from_xml(firmware2, xml_out, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
csum2 = fu_firmware_get_checksum(firmware2, G_CHECKSUM_SHA1, &error);
|
|
g_assert_cmpstr(csum1, ==, csum2);
|
|
}
|
|
|
|
static void
|
|
fu_efi_firmware_volume_xml_func(void)
|
|
{
|
|
gboolean ret;
|
|
g_autofree gchar *csum1 = NULL;
|
|
g_autofree gchar *csum2 = NULL;
|
|
g_autofree gchar *xml_out = NULL;
|
|
g_autofree gchar *xml_src = NULL;
|
|
g_autoptr(FuFirmware) firmware1 = fu_efi_firmware_volume_new();
|
|
g_autoptr(FuFirmware) firmware2 = fu_efi_firmware_volume_new();
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
/* build and write */
|
|
ret = g_file_get_contents(FWUPD_FUZZINGSRCDIR "/efi-firmware-volume.builder.xml",
|
|
&xml_src,
|
|
NULL,
|
|
&error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
ret = fu_firmware_build_from_xml(firmware1, xml_src, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
csum1 = fu_firmware_get_checksum(firmware1, G_CHECKSUM_SHA1, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_cmpstr(csum1, ==, "2aae6c35c94fcfb415dbe95f408b9ce91ee846ed");
|
|
|
|
/* ensure we can round-trip */
|
|
xml_out = fu_firmware_export_to_xml(firmware1, FU_FIRMWARE_EXPORT_FLAG_NONE, &error);
|
|
g_assert_no_error(error);
|
|
ret = fu_firmware_build_from_xml(firmware2, xml_out, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
csum2 = fu_firmware_get_checksum(firmware2, G_CHECKSUM_SHA1, &error);
|
|
g_assert_cmpstr(csum1, ==, csum2);
|
|
}
|
|
|
|
static void
|
|
fu_ifd_image_xml_func(void)
|
|
{
|
|
gboolean ret;
|
|
g_autofree gchar *csum1 = NULL;
|
|
g_autofree gchar *csum2 = NULL;
|
|
g_autofree gchar *xml_out = NULL;
|
|
g_autofree gchar *xml_src = NULL;
|
|
g_autoptr(FuFirmware) firmware1 = fu_ifd_image_new();
|
|
g_autoptr(FuFirmware) firmware2 = fu_ifd_image_new();
|
|
g_autoptr(GError) error = NULL;
|
|
|
|
/* build and write */
|
|
ret = g_file_get_contents(FWUPD_FUZZINGSRCDIR "/ifd.builder.xml", &xml_src, NULL, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
ret = fu_firmware_build_from_xml(firmware1, xml_src, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
csum1 = fu_firmware_get_checksum(firmware1, G_CHECKSUM_SHA1, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_cmpstr(csum1, ==, "aebfb3845c9bc638de30360f5ece156958918ca2");
|
|
|
|
/* ensure we can round-trip */
|
|
xml_out = fu_firmware_export_to_xml(firmware1, FU_FIRMWARE_EXPORT_FLAG_NONE, &error);
|
|
g_assert_no_error(error);
|
|
ret = fu_firmware_build_from_xml(firmware2, xml_out, &error);
|
|
g_assert_no_error(error);
|
|
g_assert_true(ret);
|
|
csum2 = fu_firmware_get_checksum(firmware2, G_CHECKSUM_SHA1, &error);
|
|
g_assert_cmpstr(csum1, ==, csum2);
|
|
}
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
g_test_init(&argc, &argv, NULL);
|
|
g_type_ensure(FU_TYPE_IFD_BIOS);
|
|
|
|
/* only critical and error are fatal */
|
|
g_log_set_fatal_mask(NULL, G_LOG_LEVEL_ERROR | G_LOG_LEVEL_CRITICAL);
|
|
g_setenv("G_MESSAGES_DEBUG", "all", TRUE);
|
|
g_setenv("FWUPD_DATADIR", TESTDATADIR_SRC, TRUE);
|
|
g_setenv("FWUPD_PLUGINDIR", TESTDATADIR_SRC, TRUE);
|
|
g_setenv("FWUPD_SYSCONFDIR", TESTDATADIR_SRC, TRUE);
|
|
g_setenv("FWUPD_SYSFSFWDIR", TESTDATADIR_SRC, TRUE);
|
|
g_setenv("FWUPD_OFFLINE_TRIGGER", "/tmp/fwupd-self-test/system-update", TRUE);
|
|
g_setenv("FWUPD_LOCALSTATEDIR", "/tmp/fwupd-self-test/var", TRUE);
|
|
|
|
g_test_add_func("/fwupd/security-attrs{hsi}", fu_security_attrs_hsi_func);
|
|
g_test_add_func("/fwupd/plugin{devices}", fu_plugin_devices_func);
|
|
g_test_add_func("/fwupd/plugin{device-inhibit-children}",
|
|
fu_plugin_device_inhibit_children_func);
|
|
g_test_add_func("/fwupd/plugin{delay}", fu_plugin_delay_func);
|
|
g_test_add_func("/fwupd/plugin{quirks}", fu_plugin_quirks_func);
|
|
g_test_add_func("/fwupd/plugin{quirks-performance}", fu_plugin_quirks_performance_func);
|
|
g_test_add_func("/fwupd/plugin{quirks-device}", fu_plugin_quirks_device_func);
|
|
g_test_add_func("/fwupd/backend", fu_backend_func);
|
|
g_test_add_func("/fwupd/chunk", fu_chunk_func);
|
|
g_test_add_func("/fwupd/common{align-up}", fu_common_align_up_func);
|
|
g_test_add_func("/fwupd/common{gpt-type}", fu_common_gpt_type_func);
|
|
g_test_add_func("/fwupd/common{byte-array}", fu_common_byte_array_func);
|
|
g_test_add_func("/fwupd/common{crc}", fu_common_crc_func);
|
|
g_test_add_func("/fwupd/common{string-append-kv}", fu_common_string_append_kv_func);
|
|
g_test_add_func("/fwupd/common{version-guess-format}", fu_common_version_guess_format_func);
|
|
g_test_add_func("/fwupd/common{version}", fu_common_version_func);
|
|
g_test_add_func("/fwupd/common{version-semver}", fu_common_version_semver_func);
|
|
g_test_add_func("/fwupd/common{vercmp}", fu_common_vercmp_func);
|
|
g_test_add_func("/fwupd/common{strstrip}", fu_common_strstrip_func);
|
|
g_test_add_func("/fwupd/common{endian}", fu_common_endian_func);
|
|
g_test_add_func("/fwupd/common{cabinet}", fu_common_cabinet_func);
|
|
g_test_add_func("/fwupd/common{cab-success}", fu_common_store_cab_func);
|
|
g_test_add_func("/fwupd/common{cab-success-artifact}", fu_common_store_cab_artifact_func);
|
|
g_test_add_func("/fwupd/common{cab-success-unsigned}", fu_common_store_cab_unsigned_func);
|
|
g_test_add_func("/fwupd/common{cab-success-folder}", fu_common_store_cab_folder_func);
|
|
g_test_add_func("/fwupd/common{cab-success-sha256}", fu_common_store_cab_sha256_func);
|
|
g_test_add_func("/fwupd/common{cab-error-no-metadata}",
|
|
fu_common_store_cab_error_no_metadata_func);
|
|
g_test_add_func("/fwupd/common{cab-error-wrong-size}",
|
|
fu_common_store_cab_error_wrong_size_func);
|
|
g_test_add_func("/fwupd/common{cab-error-wrong-checksum}",
|
|
fu_common_store_cab_error_wrong_checksum_func);
|
|
g_test_add_func("/fwupd/common{cab-error-missing-file}",
|
|
fu_common_store_cab_error_missing_file_func);
|
|
g_test_add_func("/fwupd/common{cab-error-size}", fu_common_store_cab_error_size_func);
|
|
g_test_add_func("/fwupd/common{bytes-get-data}", fu_common_bytes_get_data_func);
|
|
g_test_add_func("/fwupd/common{spawn)", fu_common_spawn_func);
|
|
g_test_add_func("/fwupd/common{spawn-timeout)", fu_common_spawn_timeout_func);
|
|
g_test_add_func("/fwupd/common{firmware-builder}", fu_common_firmware_builder_func);
|
|
g_test_add_func("/fwupd/common{kernel-lockdown}", fu_common_kernel_lockdown_func);
|
|
g_test_add_func("/fwupd/common{strsafe}", fu_common_strsafe_func);
|
|
g_test_add_func("/fwupd/common{uri-scheme}", fu_common_uri_scheme_func);
|
|
g_test_add_func("/fwupd/efivar", fu_efivar_func);
|
|
g_test_add_func("/fwupd/hwids", fu_hwids_func);
|
|
g_test_add_func("/fwupd/smbios", fu_smbios_func);
|
|
g_test_add_func("/fwupd/smbios3", fu_smbios3_func);
|
|
g_test_add_func("/fwupd/smbios{dt}", fu_smbios_dt_func);
|
|
g_test_add_func("/fwupd/smbios{class}", fu_smbios_class_func);
|
|
g_test_add_func("/fwupd/firmware", fu_firmware_func);
|
|
g_test_add_func("/fwupd/firmware{dedupe}", fu_firmware_dedupe_func);
|
|
g_test_add_func("/fwupd/firmware{build}", fu_firmware_build_func);
|
|
g_test_add_func("/fwupd/firmware{ihex}", fu_firmware_ihex_func);
|
|
g_test_add_func("/fwupd/firmware{ihex-xml}", fu_firmware_ihex_xml_func);
|
|
g_test_add_func("/fwupd/firmware{ihex-offset}", fu_firmware_ihex_offset_func);
|
|
g_test_add_func("/fwupd/firmware{ihex-signed}", fu_firmware_ihex_signed_func);
|
|
g_test_add_func("/fwupd/firmware{srec-tokenization}", fu_firmware_srec_tokenization_func);
|
|
g_test_add_func("/fwupd/firmware{srec}", fu_firmware_srec_func);
|
|
g_test_add_func("/fwupd/firmware{srec-xml}", fu_firmware_srec_xml_func);
|
|
g_test_add_func("/fwupd/firmware{dfu}", fu_firmware_dfu_func);
|
|
g_test_add_func("/fwupd/firmware{dfuse}", fu_firmware_dfuse_func);
|
|
g_test_add_func("/fwupd/firmware{dfuse-xml}", fu_firmware_dfuse_xml_func);
|
|
g_test_add_func("/fwupd/firmware{fmap}", fu_firmware_fmap_func);
|
|
g_test_add_func("/fwupd/firmware{fmap-xml}", fu_firmware_fmap_xml_func);
|
|
g_test_add_func("/fwupd/firmware{gtypes}", fu_firmware_new_from_gtypes_func);
|
|
g_test_add_func("/fwupd/archive{invalid}", fu_archive_invalid_func);
|
|
g_test_add_func("/fwupd/archive{cab}", fu_archive_cab_func);
|
|
g_test_add_func("/fwupd/device", fu_device_func);
|
|
g_test_add_func("/fwupd/device{instance-ids}", fu_device_instance_ids_func);
|
|
g_test_add_func("/fwupd/device{composite-id}", fu_device_composite_id_func);
|
|
g_test_add_func("/fwupd/device{flags}", fu_device_flags_func);
|
|
g_test_add_func("/fwupd/device{custom-flags}", fu_device_private_flags_func);
|
|
g_test_add_func("/fwupd/device{inhibit}", fu_device_inhibit_func);
|
|
g_test_add_func("/fwupd/device{parent}", fu_device_parent_func);
|
|
g_test_add_func("/fwupd/device{children}", fu_device_children_func);
|
|
g_test_add_func("/fwupd/device{incorporate}", fu_device_incorporate_func);
|
|
if (g_test_slow())
|
|
g_test_add_func("/fwupd/device{poll}", fu_device_poll_func);
|
|
g_test_add_func("/fwupd/device-locker{success}", fu_device_locker_func);
|
|
g_test_add_func("/fwupd/device-locker{fail}", fu_device_locker_fail_func);
|
|
g_test_add_func("/fwupd/device{name}", fu_device_name_func);
|
|
g_test_add_func("/fwupd/device{metadata}", fu_device_metadata_func);
|
|
g_test_add_func("/fwupd/device{open-refcount}", fu_device_open_refcount_func);
|
|
g_test_add_func("/fwupd/device{version-format}", fu_device_version_format_func);
|
|
g_test_add_func("/fwupd/device{retry-success}", fu_device_retry_success_func);
|
|
g_test_add_func("/fwupd/device{retry-failed}", fu_device_retry_failed_func);
|
|
g_test_add_func("/fwupd/device{retry-hardware}", fu_device_retry_hardware_func);
|
|
g_test_add_func("/efi/firmware-section{xml}", fu_efi_firmware_section_xml_func);
|
|
g_test_add_func("/efi/firmware-file{xml}", fu_efi_firmware_file_xml_func);
|
|
g_test_add_func("/efi/firmware-filesystem{xml}", fu_efi_firmware_filesystem_xml_func);
|
|
g_test_add_func("/efi/firmware-volume{xml}", fu_efi_firmware_volume_xml_func);
|
|
g_test_add_func("/ifd/image{xml}", fu_ifd_image_xml_func);
|
|
return g_test_run();
|
|
}
|