fwupd/plugins/dfu/dfu-firmware.c
2019-11-01 14:21:20 +00:00

353 lines
8.6 KiB
C

/*
* Copyright (C) 2015-2018 Richard Hughes <richard@hughsie.com>
*
* SPDX-License-Identifier: LGPL-2.1+
*/
/**
* SECTION:dfu-firmware
* @short_description: Object representing a DFU or DfuSe firmware file
*
* This object allows reading and writing firmware files either in
* raw, DFU or DfuSe formats.
*
* A #DfuFirmware can be made up of several #DfuImages, although
* typically there is only one.
*
* See also: #DfuImage
*/
#include "config.h"
#include <string.h>
#include <stdio.h>
#include "fu-common-version.h"
#include "fu-firmware.h"
#include "dfu-common.h"
#include "dfu-firmware.h"
#include "dfu-format-dfu.h"
#include "dfu-format-raw.h"
#include "dfu-image.h"
#include "fwupd-error.h"
typedef struct {
DfuFirmwareFormat format;
} DfuFirmwarePrivate;
G_DEFINE_TYPE_WITH_PRIVATE (DfuFirmware, dfu_firmware, FU_TYPE_DFU_FIRMWARE)
#define GET_PRIVATE(o) (dfu_firmware_get_instance_private (o))
static void
dfu_firmware_init (DfuFirmware *firmware)
{
}
static void
dfu_firmware_finalize (GObject *object)
{
G_OBJECT_CLASS (dfu_firmware_parent_class)->finalize (object);
}
/**
* dfu_firmware_new:
*
* Creates a new DFU firmware object.
*
* Return value: a new #DfuFirmware
**/
DfuFirmware *
dfu_firmware_new (void)
{
DfuFirmware *firmware;
firmware = g_object_new (DFU_TYPE_FIRMWARE, NULL);
return firmware;
}
/**
* dfu_firmware_get_size:
* @firmware: a #DfuFirmware
*
* Gets the size of all the images in the firmware.
*
* This only returns actual data that would be sent to the device and
* does not include any padding.
*
* Return value: a integer value, or 0 if there are no images.
**/
guint32
dfu_firmware_get_size (DfuFirmware *firmware)
{
guint32 length = 0;
g_autoptr(GPtrArray) images = fu_firmware_get_images (FU_FIRMWARE (firmware));
g_return_val_if_fail (DFU_IS_FIRMWARE (firmware), 0);
for (guint i = 0; i < images->len; i++) {
DfuImage *image = g_ptr_array_index (images, i);
length += dfu_image_get_size (image);
}
return length;
}
/**
* dfu_firmware_get_format:
* @firmware: a #DfuFirmware
*
* Gets the DFU version.
*
* Return value: a version, or 0x0 for unset
**/
guint16
dfu_firmware_get_format (DfuFirmware *firmware)
{
DfuFirmwarePrivate *priv = GET_PRIVATE (firmware);
g_return_val_if_fail (DFU_IS_FIRMWARE (firmware), 0xffff);
return priv->format;
}
/**
* dfu_firmware_set_format:
* @firmware: a #DfuFirmware
* @format: a #DfuFirmwareFormat, e.g. %DFU_FIRMWARE_FORMAT_DFUSE
*
* Sets the DFU version in BCD format.
**/
void
dfu_firmware_set_format (DfuFirmware *firmware, DfuFirmwareFormat format)
{
DfuFirmwarePrivate *priv = GET_PRIVATE (firmware);
g_return_if_fail (DFU_IS_FIRMWARE (firmware));
priv->format = format;
}
/**
* dfu_firmware_parse_data:
* @firmware: a #DfuFirmware
* @bytes: raw firmware data
* @flags: optional flags, e.g. %FWUPD_INSTALL_FLAG_FORCE
* @error: a #GError, or %NULL
*
* Parses firmware data which may have an optional DFU suffix.
*
* Return value: %TRUE for success
**/
gboolean
dfu_firmware_parse_data (DfuFirmware *firmware, GBytes *bytes,
FwupdInstallFlags flags, GError **error)
{
DfuFirmwarePrivate *priv = GET_PRIVATE (firmware);
g_return_val_if_fail (DFU_IS_FIRMWARE (firmware), FALSE);
g_return_val_if_fail (bytes != NULL, FALSE);
g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
/* try to get format if not already set */
if (priv->format == DFU_FIRMWARE_FORMAT_UNKNOWN)
priv->format = dfu_firmware_detect_dfu (bytes);
if (priv->format == DFU_FIRMWARE_FORMAT_UNKNOWN)
priv->format = DFU_FIRMWARE_FORMAT_RAW;
/* handled easily */
switch (priv->format) {
case DFU_FIRMWARE_FORMAT_DFU:
case DFU_FIRMWARE_FORMAT_DFUSE:
if (!dfu_firmware_from_dfu (firmware, bytes, flags, error))
return FALSE;
break;
default:
if (!dfu_firmware_from_raw (firmware, bytes, flags, error))
return FALSE;
break;
}
return TRUE;
}
/**
* dfu_firmware_parse_file:
* @firmware: a #DfuFirmware
* @file: a #GFile to load and parse
* @flags: optional flags, e.g. %FWUPD_INSTALL_FLAG_FORCE
* @error: a #GError, or %NULL
*
* Parses a DFU firmware, which may contain an optional footer.
*
* Return value: %TRUE for success
**/
gboolean
dfu_firmware_parse_file (DfuFirmware *firmware, GFile *file,
FwupdInstallFlags flags,
GError **error)
{
gchar *contents = NULL;
gsize length = 0;
g_autoptr(GBytes) bytes = NULL;
g_return_val_if_fail (DFU_IS_FIRMWARE (firmware), FALSE);
g_return_val_if_fail (G_IS_FILE (file), FALSE);
g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
if (!g_file_load_contents (file, NULL, &contents, &length, NULL, error))
return FALSE;
bytes = g_bytes_new_take (contents, length);
return dfu_firmware_parse_data (firmware, bytes, flags, error);
}
static gboolean
dfu_firmware_check_acceptable_for_format (DfuFirmware *firmware, GError **error)
{
DfuFirmwarePrivate *priv = GET_PRIVATE (firmware);
g_autoptr(GPtrArray) images = fu_firmware_get_images (FU_FIRMWARE (firmware));
/* always okay */
if (images->len <= 1)
return TRUE;
if (priv->format == DFU_FIRMWARE_FORMAT_DFUSE)
return TRUE;
/* unsupported */
g_set_error (error,
FWUPD_ERROR,
FWUPD_ERROR_INTERNAL,
"multiple images (%u) not supported for %s",
images->len,
dfu_firmware_format_to_string (priv->format));
return TRUE;
}
/**
* dfu_firmware_write_data:
* @firmware: a #DfuFirmware
* @error: a #GError, or %NULL
*
* Writes DFU data to a data blob with a DFU-specific footer.
*
* Return value: (transfer none): firmware data
**/
GBytes *
dfu_firmware_write_data (DfuFirmware *firmware, GError **error)
{
DfuFirmwarePrivate *priv = GET_PRIVATE (firmware);
g_autoptr(GPtrArray) images = fu_firmware_get_images (FU_FIRMWARE (firmware));
g_return_val_if_fail (DFU_IS_FIRMWARE (firmware), NULL);
g_return_val_if_fail (error == NULL || *error == NULL, NULL);
/* at least one image */
if (images->len == 0) {
g_set_error_literal (error,
FWUPD_ERROR,
FWUPD_ERROR_INTERNAL,
"no image data to write");
return NULL;
}
/* does the format support this many images */
if (!dfu_firmware_check_acceptable_for_format (firmware, error))
return NULL;
/* raw */
if (priv->format == DFU_FIRMWARE_FORMAT_RAW)
return dfu_firmware_to_raw (firmware, error);
/* DFU or DfuSe*/
if (priv->format == DFU_FIRMWARE_FORMAT_DFU ||
priv->format == DFU_FIRMWARE_FORMAT_DFUSE)
return dfu_firmware_to_dfu (firmware, error);
/* invalid */
g_set_error (error,
FWUPD_ERROR,
FWUPD_ERROR_INTERNAL,
"invalid format for write (0x%04x)",
priv->format);
return NULL;
}
/**
* dfu_firmware_write_file:
* @firmware: a #DfuFirmware
* @file: a #GFile
* @error: a #GError, or %NULL
*
* Writes a DFU firmware with the optional footer.
*
* Return value: %TRUE for success
**/
gboolean
dfu_firmware_write_file (DfuFirmware *firmware, GFile *file, GError **error)
{
const guint8 *data;
gsize length = 0;
g_autoptr(GBytes) bytes = NULL;
g_return_val_if_fail (DFU_IS_FIRMWARE (firmware), FALSE);
g_return_val_if_fail (G_IS_FILE (file), FALSE);
g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
/* get blob */
bytes = dfu_firmware_write_data (firmware, error);
if (bytes == NULL)
return FALSE;
/* save to firmware */
data = g_bytes_get_data (bytes, &length);
return g_file_replace_contents (file,
(const gchar *) data,
length,
NULL,
FALSE,
G_FILE_CREATE_NONE,
NULL,
NULL, /* cancellable */
error);
}
/**
* dfu_firmware_format_to_string:
* @format: a #DfuFirmwareFormat, e.g. %DFU_FIRMWARE_FORMAT_DFU
*
* Returns a string representation of the format.
*
* Return value: NULL terminated string, or %NULL for invalid
**/
const gchar *
dfu_firmware_format_to_string (DfuFirmwareFormat format)
{
if (format == DFU_FIRMWARE_FORMAT_RAW)
return "raw";
if (format == DFU_FIRMWARE_FORMAT_DFU)
return "dfu";
if (format == DFU_FIRMWARE_FORMAT_DFUSE)
return "dfuse";
return NULL;
}
/**
* dfu_firmware_format_from_string:
* @format: a format string, e.g. `dfuse`
*
* Returns an enumerated version of the format.
*
* Return value: a #DfuFirmwareFormat, e.g. %DFU_FIRMWARE_FORMAT_DFUSE
**/
DfuFirmwareFormat
dfu_firmware_format_from_string (const gchar *format)
{
if (g_strcmp0 (format, "raw") == 0)
return DFU_FIRMWARE_FORMAT_RAW;
if (g_strcmp0 (format, "dfu") == 0)
return DFU_FIRMWARE_FORMAT_DFU;
if (g_strcmp0 (format, "dfuse") == 0)
return DFU_FIRMWARE_FORMAT_DFUSE;
return DFU_FIRMWARE_FORMAT_UNKNOWN;
}
static void
dfu_firmware_class_init (DfuFirmwareClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
object_class->finalize = dfu_firmware_finalize;
}