fwupd/libfwupdplugin/fu-volume.c
2021-08-24 11:18:40 -05:00

435 lines
9.9 KiB
C

/*
* Copyright (C) 2018 Richard Hughes <richard@hughsie.com>
* Copyright (C) 2019 Mario Limonciello <mario.limonciello@dell.com>
*
* SPDX-License-Identifier: LGPL-2.1+
*/
#define G_LOG_DOMAIN "FuVolume"
#include "config.h"
#include <gio/gio.h>
#include "fwupd-error.h"
#include "fu-volume-private.h"
/**
* FuVolume:
*
* Volume abstraction that uses UDisks
*/
struct _FuVolume {
GObject parent_instance;
GDBusProxy *proxy_blk;
GDBusProxy *proxy_fs;
gchar *mount_path; /* only when mounted ourselves */
};
enum { PROP_0, PROP_MOUNT_PATH, PROP_PROXY_BLOCK, PROP_PROXY_FILESYSTEM, PROP_LAST };
G_DEFINE_TYPE(FuVolume, fu_volume, G_TYPE_OBJECT)
static void
fu_volume_finalize(GObject *obj)
{
FuVolume *self = FU_VOLUME(obj);
g_free(self->mount_path);
if (self->proxy_blk != NULL)
g_object_unref(self->proxy_blk);
if (self->proxy_fs != NULL)
g_object_unref(self->proxy_fs);
G_OBJECT_CLASS(fu_volume_parent_class)->finalize(obj);
}
static void
fu_volume_get_property(GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
{
FuVolume *self = FU_VOLUME(object);
switch (prop_id) {
case PROP_MOUNT_PATH:
g_value_set_string(value, self->mount_path);
break;
case PROP_PROXY_BLOCK:
g_value_set_object(value, self->proxy_blk);
break;
case PROP_PROXY_FILESYSTEM:
g_value_set_object(value, self->proxy_fs);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
break;
}
}
static void
fu_volume_set_property(GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
{
FuVolume *self = FU_VOLUME(object);
switch (prop_id) {
case PROP_MOUNT_PATH:
self->mount_path = g_value_dup_string(value);
break;
case PROP_PROXY_BLOCK:
self->proxy_blk = g_value_dup_object(value);
break;
case PROP_PROXY_FILESYSTEM:
self->proxy_fs = g_value_dup_object(value);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
break;
}
}
static void
fu_volume_class_init(FuVolumeClass *klass)
{
GParamSpec *pspec;
GObjectClass *object_class = G_OBJECT_CLASS(klass);
object_class->finalize = fu_volume_finalize;
object_class->get_property = fu_volume_get_property;
object_class->set_property = fu_volume_set_property;
pspec =
g_param_spec_object("proxy-block",
NULL,
NULL,
G_TYPE_DBUS_PROXY,
G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE | G_PARAM_STATIC_NAME);
g_object_class_install_property(object_class, PROP_PROXY_BLOCK, pspec);
pspec =
g_param_spec_object("proxy-filesystem",
NULL,
NULL,
G_TYPE_DBUS_PROXY,
G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE | G_PARAM_STATIC_NAME);
g_object_class_install_property(object_class, PROP_PROXY_FILESYSTEM, pspec);
pspec =
g_param_spec_string("mount-path",
NULL,
NULL,
NULL,
G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE | G_PARAM_STATIC_NAME);
g_object_class_install_property(object_class, PROP_MOUNT_PATH, pspec);
}
static void
fu_volume_init(FuVolume *self)
{
}
/**
* fu_volume_get_id:
* @self: a @FuVolume
*
* Gets the D-Bus path of the mount point.
*
* Returns: string ID, or %NULL
*
* Since: 1.4.6
**/
const gchar *
fu_volume_get_id(FuVolume *self)
{
g_return_val_if_fail(FU_IS_VOLUME(self), NULL);
if (self->proxy_fs != NULL)
return g_dbus_proxy_get_object_path(self->proxy_fs);
if (self->proxy_blk != NULL)
return g_dbus_proxy_get_object_path(self->proxy_blk);
return NULL;
}
/**
* fu_volume_get_mount_point:
* @self: a @FuVolume
*
* Gets the location of the volume mount point.
*
* Returns: UNIX path, or %NULL
*
* Since: 1.4.6
**/
gchar *
fu_volume_get_mount_point(FuVolume *self)
{
g_autofree const gchar **mountpoints = NULL;
g_autoptr(GVariant) val = NULL;
g_return_val_if_fail(FU_IS_VOLUME(self), NULL);
/* we mounted it */
if (self->mount_path != NULL)
return g_strdup(self->mount_path);
/* something else mounted it */
if (self->proxy_fs == NULL)
return NULL;
val = g_dbus_proxy_get_cached_property(self->proxy_fs, "MountPoints");
if (val == NULL)
return NULL;
mountpoints = g_variant_get_bytestring_array(val, NULL);
return g_strdup(mountpoints[0]);
}
/**
* fu_volume_check_free_space:
* @self: a @FuVolume
* @required: size in bytes
* @error: (nullable): optional return location for an error
*
* Checks the volume for required space.
*
* Returns: %TRUE for success
*
* Since: 1.4.6
**/
gboolean
fu_volume_check_free_space(FuVolume *self, guint64 required, GError **error)
{
guint64 fs_free;
g_autofree gchar *path = NULL;
g_autoptr(GFile) file = NULL;
g_autoptr(GFileInfo) info = NULL;
g_return_val_if_fail(FU_IS_VOLUME(self), FALSE);
g_return_val_if_fail(error == NULL || *error == NULL, FALSE);
/* skip the checks for unmounted disks */
path = fu_volume_get_mount_point(self);
if (path == NULL)
return TRUE;
file = g_file_new_for_path(path);
info = g_file_query_filesystem_info(file, G_FILE_ATTRIBUTE_FILESYSTEM_FREE, NULL, error);
if (info == NULL)
return FALSE;
fs_free = g_file_info_get_attribute_uint64(info, G_FILE_ATTRIBUTE_FILESYSTEM_FREE);
if (fs_free < required) {
g_autofree gchar *str_free = g_format_size(fs_free);
g_autofree gchar *str_reqd = g_format_size(required);
g_set_error(error,
FWUPD_ERROR,
FWUPD_ERROR_NOT_SUPPORTED,
"%s does not have sufficient space, required %s, got %s",
path,
str_reqd,
str_free);
return FALSE;
}
return TRUE;
}
/**
* fu_volume_is_mounted:
* @self: a @FuVolume
*
* Checks if the VOLUME is already mounted.
*
* Returns: %TRUE for success
*
* Since: 1.4.6
**/
gboolean
fu_volume_is_mounted(FuVolume *self)
{
g_autofree gchar *mount_point = NULL;
g_return_val_if_fail(FU_IS_VOLUME(self), FALSE);
mount_point = fu_volume_get_mount_point(self);
return mount_point != NULL;
}
/**
* fu_volume_is_encrypted:
* @self: a @FuVolume
*
* Checks if the VOLUME is currently encrypted.
*
* Returns: %TRUE for success
*
* Since: 1.5.1
**/
gboolean
fu_volume_is_encrypted(FuVolume *self)
{
g_autoptr(GVariant) val = NULL;
g_return_val_if_fail(FU_IS_VOLUME(self), FALSE);
if (self->proxy_blk == NULL)
return FALSE;
val = g_dbus_proxy_get_cached_property(self->proxy_blk, "CryptoBackingDevice");
if (val == NULL)
return FALSE;
if (g_strcmp0(g_variant_get_string(val, NULL), "/") == 0)
return FALSE;
return TRUE;
}
/**
* fu_volume_mount:
* @self: a @FuVolume
* @error: (nullable): optional return location for an error
*
* Mounts the VOLUME ready for use.
*
* Returns: %TRUE for success
*
* Since: 1.4.6
**/
gboolean
fu_volume_mount(FuVolume *self, GError **error)
{
GVariantBuilder builder;
g_autoptr(GVariant) val = NULL;
g_return_val_if_fail(FU_IS_VOLUME(self), FALSE);
g_return_val_if_fail(error == NULL || *error == NULL, FALSE);
/* device from the self tests */
if (self->proxy_fs == NULL)
return TRUE;
g_debug("mounting %s", fu_volume_get_id(self));
g_variant_builder_init(&builder, G_VARIANT_TYPE_VARDICT);
val = g_dbus_proxy_call_sync(self->proxy_fs,
"Mount",
g_variant_new("(a{sv})", &builder),
G_DBUS_CALL_FLAGS_NONE,
-1,
NULL,
error);
if (val == NULL)
return FALSE;
g_variant_get(val, "(s)", &self->mount_path);
return TRUE;
}
/**
* fu_volume_is_internal:
* @self: a @FuVolume
*
* Guesses if the drive is internal to the system
*
* Returns: %TRUE for success
*
* Since: 1.5.2
**/
gboolean
fu_volume_is_internal(FuVolume *self)
{
g_autoptr(GVariant) val_system = NULL;
g_return_val_if_fail(FU_IS_VOLUME(self), FALSE);
val_system = g_dbus_proxy_get_cached_property(self->proxy_blk, "HintSystem");
if (val_system == NULL)
return FALSE;
return g_variant_get_boolean(val_system);
}
/**
* fu_volume_get_id_type:
* @self: a @FuVolume
*
* Return the IdType of the volume
*
* Returns: string for type or NULL
*
* Since: 1.5.2
**/
gchar *
fu_volume_get_id_type(FuVolume *self)
{
g_autoptr(GVariant) val = NULL;
g_return_val_if_fail(FU_IS_VOLUME(self), NULL);
val = g_dbus_proxy_get_cached_property(self->proxy_blk, "IdType");
if (val == NULL)
return NULL;
return g_strdup(g_variant_get_string(val, NULL));
}
/**
* fu_volume_unmount:
* @self: a @FuVolume
* @error: (nullable): optional return location for an error
*
* Unmounts the volume after use.
*
* Returns: %TRUE for success
*
* Since: 1.4.6
**/
gboolean
fu_volume_unmount(FuVolume *self, GError **error)
{
GVariantBuilder builder;
g_autoptr(GVariant) val = NULL;
g_return_val_if_fail(FU_IS_VOLUME(self), FALSE);
g_return_val_if_fail(error == NULL || *error == NULL, FALSE);
/* device from the self tests */
if (self->proxy_fs == NULL)
return TRUE;
g_debug("unmounting %s", fu_volume_get_id(self));
g_variant_builder_init(&builder, G_VARIANT_TYPE_VARDICT);
val = g_dbus_proxy_call_sync(self->proxy_fs,
"Unmount",
g_variant_new("(a{sv})", &builder),
G_DBUS_CALL_FLAGS_NONE,
-1,
NULL,
error);
if (val == NULL)
return FALSE;
g_free(self->mount_path);
self->mount_path = NULL;
return TRUE;
}
/**
* fu_volume_locker:
* @self: a @FuVolume
* @error: (nullable): optional return location for an error
*
* Locks the volume, mounting it and unmounting it as required. If the volume is
* already mounted then it is is _not_ unmounted when the locker is closed.
*
* Returns: (transfer full): a device locker for success, or %NULL
*
* Since: 1.4.6
**/
FuDeviceLocker *
fu_volume_locker(FuVolume *self, GError **error)
{
g_return_val_if_fail(FU_IS_VOLUME(self), NULL);
g_return_val_if_fail(error == NULL || *error == NULL, NULL);
/* already open, so NOP */
if (fu_volume_is_mounted(self))
return g_object_new(FU_TYPE_DEVICE_LOCKER, NULL);
return fu_device_locker_new_full(self,
(FuDeviceLockerFunc)fu_volume_mount,
(FuDeviceLockerFunc)fu_volume_unmount,
error);
}
/* private */
FuVolume *
fu_volume_new_from_mount_path(const gchar *mount_path)
{
g_autoptr(FuVolume) self = g_object_new(FU_TYPE_VOLUME, NULL);
g_return_val_if_fail(mount_path != NULL, NULL);
self->mount_path = g_strdup(mount_path);
return g_steal_pointer(&self);
}