
ModemManager[2804]: <warn> [1545055222.508649] No valid firmware images listed. Assuming firmware unsupported. ModemManager[2804]: <debug> [1545055222.508665] firmware list loading failed: unsupported ModemManager[2804]: <debug> [1545055222.508683] Couldn't load firmware image list: firmware list unknown ModemManager[2804]: <debug> [1545055222.508728] Couldn't load current firmware image: current firmware unknown (ModemManager:2804): GLib-CRITICAL **: 15:00:22.508: g_variant_builder_end: assertion '!GVSB(builder)->uniform_item_types || GVSB(builder)->prev_item_type != NULL || g_variant_type_is_definite (GVSB(builder)->type)' failed Thread 1 "ModemManager" received signal SIGTRAP, Trace/breakpoint trap. 0x00007ffff75b39b6 in ?? () from /usr/lib/libglib-2.0.so.0 (gdb) bt #0 0x00007ffff75b39b6 in () at /usr/lib/libglib-2.0.so.0 #1 0x00007ffff75b4363 in g_logv () at /usr/lib/libglib-2.0.so.0 #2 0x00007ffff75b4560 in g_log () at /usr/lib/libglib-2.0.so.0 #3 0x00007ffff758867d in g_variant_builder_end () at /usr/lib/libglib-2.0.so.0 #4 0x00005555555e4d12 in load_current_ready (self=0x55555579c330, res=0x5555557388e0, ctx=0x5555557d6d80) at mm-iface-modem-firmware.c:84 #5 0x00007ffff778f194 in () at /usr/lib/libgio-2.0.so.0 #6 0x00007ffff778f1c9 in () at /usr/lib/libgio-2.0.so.0 #7 0x00007ffff75c4271 in g_main_context_dispatch () at /usr/lib/libglib-2.0.so.0 #8 0x00007ffff75c5f89 in () at /usr/lib/libglib-2.0.so.0 #9 0x00007ffff75c6f62 in g_main_loop_run () at /usr/lib/libglib-2.0.so.0 #10 0x0000555555597aa0 in main (argc=2, argv=0x7fffffffe488) at main.c:181
488 lines
16 KiB
C
488 lines
16 KiB
C
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details:
|
|
*
|
|
* Copyright (C) 2012 Google, Inc.
|
|
*/
|
|
|
|
#include <ModemManager.h>
|
|
#define _LIBMM_INSIDE_MM
|
|
#include <libmm-glib.h>
|
|
|
|
#include "mm-iface-modem.h"
|
|
#include "mm-iface-modem-firmware.h"
|
|
#include "mm-log.h"
|
|
|
|
#define SUPPORT_CHECKED_TAG "firmware-support-checked-tag"
|
|
#define SUPPORTED_TAG "firmware-supported-tag"
|
|
|
|
static GQuark support_checked_quark;
|
|
static GQuark supported_quark;
|
|
|
|
/*****************************************************************************/
|
|
|
|
void
|
|
mm_iface_modem_firmware_bind_simple_status (MMIfaceModemFirmware *self,
|
|
MMSimpleStatus *status)
|
|
{
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
/* Handle the 'List' method from DBus */
|
|
|
|
typedef struct {
|
|
MMIfaceModemFirmware *self;
|
|
MmGdbusModemFirmware *skeleton;
|
|
GDBusMethodInvocation *invocation;
|
|
GList *list;
|
|
MMFirmwareProperties *current;
|
|
} HandleListContext;
|
|
|
|
static void
|
|
handle_list_context_free (HandleListContext *ctx)
|
|
{
|
|
if (ctx->list)
|
|
g_list_free_full (ctx->list, g_object_unref);
|
|
if (ctx->current)
|
|
g_object_unref (ctx->current);
|
|
g_object_unref (ctx->skeleton);
|
|
g_object_unref (ctx->invocation);
|
|
g_object_unref (ctx->self);
|
|
g_slice_free (HandleListContext, ctx);
|
|
}
|
|
|
|
static void
|
|
load_current_ready (MMIfaceModemFirmware *self,
|
|
GAsyncResult *res,
|
|
HandleListContext *ctx)
|
|
{
|
|
GVariantBuilder builder;
|
|
GList *l;
|
|
GError *error = NULL;
|
|
|
|
ctx->current = MM_IFACE_MODEM_FIRMWARE_GET_INTERFACE (self)->load_current_finish (self, res, &error);
|
|
if (!ctx->current) {
|
|
/* Not found isn't fatal */
|
|
if (!g_error_matches (error, MM_CORE_ERROR, MM_CORE_ERROR_NOT_FOUND)) {
|
|
g_dbus_method_invocation_take_error (ctx->invocation, error);
|
|
handle_list_context_free (ctx);
|
|
return;
|
|
}
|
|
mm_dbg ("Couldn't load current firmware image: %s", error->message);
|
|
g_clear_error (&error);
|
|
}
|
|
|
|
/* Build array of dicts */
|
|
g_variant_builder_init (&builder, G_VARIANT_TYPE ("aa{sv}"));
|
|
for (l = ctx->list; l; l = g_list_next (l))
|
|
g_variant_builder_add_value (
|
|
&builder,
|
|
mm_firmware_properties_get_dictionary (MM_FIRMWARE_PROPERTIES (l->data)));
|
|
|
|
mm_gdbus_modem_firmware_complete_list (
|
|
ctx->skeleton,
|
|
ctx->invocation,
|
|
(ctx->current ? mm_firmware_properties_get_unique_id (ctx->current) : ""),
|
|
g_variant_builder_end (&builder));
|
|
handle_list_context_free (ctx);
|
|
}
|
|
|
|
static void
|
|
load_list_ready (MMIfaceModemFirmware *self,
|
|
GAsyncResult *res,
|
|
HandleListContext *ctx)
|
|
{
|
|
GError *error = NULL;
|
|
|
|
ctx->list = MM_IFACE_MODEM_FIRMWARE_GET_INTERFACE (self)->load_list_finish (self, res, &error);
|
|
if (!ctx->list) {
|
|
/* Not found isn't fatal */
|
|
if (!g_error_matches (error, MM_CORE_ERROR, MM_CORE_ERROR_NOT_FOUND)) {
|
|
g_dbus_method_invocation_take_error (ctx->invocation, error);
|
|
handle_list_context_free (ctx);
|
|
return;
|
|
}
|
|
mm_dbg ("Couldn't load firmware image list: %s", error->message);
|
|
g_clear_error (&error);
|
|
}
|
|
|
|
MM_IFACE_MODEM_FIRMWARE_GET_INTERFACE (self)->load_current (MM_IFACE_MODEM_FIRMWARE (self),
|
|
(GAsyncReadyCallback)load_current_ready,
|
|
ctx);
|
|
}
|
|
|
|
static void
|
|
list_auth_ready (MMBaseModem *self,
|
|
GAsyncResult *res,
|
|
HandleListContext *ctx)
|
|
{
|
|
GError *error = NULL;
|
|
|
|
if (!mm_base_modem_authorize_finish (self, res, &error)) {
|
|
g_dbus_method_invocation_take_error (ctx->invocation, error);
|
|
handle_list_context_free (ctx);
|
|
return;
|
|
}
|
|
|
|
MM_IFACE_MODEM_FIRMWARE_GET_INTERFACE (self)->load_list (MM_IFACE_MODEM_FIRMWARE (self),
|
|
(GAsyncReadyCallback)load_list_ready,
|
|
ctx);
|
|
}
|
|
|
|
static gboolean
|
|
handle_list (MmGdbusModemFirmware *skeleton,
|
|
GDBusMethodInvocation *invocation,
|
|
MMIfaceModemFirmware *self)
|
|
{
|
|
HandleListContext *ctx;
|
|
|
|
g_assert (MM_IFACE_MODEM_FIRMWARE_GET_INTERFACE (self)->load_list != NULL);
|
|
g_assert (MM_IFACE_MODEM_FIRMWARE_GET_INTERFACE (self)->load_list_finish != NULL);
|
|
g_assert (MM_IFACE_MODEM_FIRMWARE_GET_INTERFACE (self)->load_current != NULL);
|
|
g_assert (MM_IFACE_MODEM_FIRMWARE_GET_INTERFACE (self)->load_current_finish != NULL);
|
|
|
|
ctx = g_slice_new (HandleListContext);
|
|
ctx->skeleton = g_object_ref (skeleton);
|
|
ctx->invocation = g_object_ref (invocation);
|
|
ctx->self = g_object_ref (self);
|
|
|
|
mm_base_modem_authorize (MM_BASE_MODEM (self),
|
|
invocation,
|
|
MM_AUTHORIZATION_DEVICE_CONTROL,
|
|
(GAsyncReadyCallback)list_auth_ready,
|
|
ctx);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
/* Handle the 'Select' method from DBus */
|
|
|
|
typedef struct {
|
|
MMIfaceModemFirmware *self;
|
|
MmGdbusModemFirmware *skeleton;
|
|
GDBusMethodInvocation *invocation;
|
|
gchar *name;
|
|
} HandleSelectContext;
|
|
|
|
static void
|
|
handle_select_context_free (HandleSelectContext *ctx)
|
|
{
|
|
g_free (ctx->name);
|
|
g_object_unref (ctx->skeleton);
|
|
g_object_unref (ctx->invocation);
|
|
g_object_unref (ctx->self);
|
|
g_slice_free (HandleSelectContext, ctx);
|
|
}
|
|
|
|
static void
|
|
change_current_ready (MMIfaceModemFirmware *self,
|
|
GAsyncResult *res,
|
|
HandleSelectContext *ctx)
|
|
{
|
|
GError *error = NULL;
|
|
|
|
if (!MM_IFACE_MODEM_FIRMWARE_GET_INTERFACE (self)->change_current_finish (self, res, &error))
|
|
g_dbus_method_invocation_take_error (ctx->invocation, error);
|
|
else
|
|
mm_gdbus_modem_firmware_complete_select (ctx->skeleton, ctx->invocation);
|
|
handle_select_context_free (ctx);
|
|
}
|
|
|
|
static void
|
|
select_auth_ready (MMBaseModem *self,
|
|
GAsyncResult *res,
|
|
HandleSelectContext *ctx)
|
|
{
|
|
GError *error = NULL;
|
|
|
|
if (!mm_base_modem_authorize_finish (self, res, &error)) {
|
|
g_dbus_method_invocation_take_error (ctx->invocation, error);
|
|
handle_select_context_free (ctx);
|
|
return;
|
|
}
|
|
|
|
MM_IFACE_MODEM_FIRMWARE_GET_INTERFACE (self)->change_current (MM_IFACE_MODEM_FIRMWARE (self),
|
|
ctx->name,
|
|
(GAsyncReadyCallback)change_current_ready,
|
|
ctx);
|
|
}
|
|
|
|
static gboolean
|
|
handle_select (MmGdbusModemFirmware *skeleton,
|
|
GDBusMethodInvocation *invocation,
|
|
const gchar *name,
|
|
MMIfaceModemFirmware *self)
|
|
{
|
|
HandleSelectContext *ctx;
|
|
|
|
g_assert (MM_IFACE_MODEM_FIRMWARE_GET_INTERFACE (self)->change_current != NULL);
|
|
g_assert (MM_IFACE_MODEM_FIRMWARE_GET_INTERFACE (self)->change_current_finish != NULL);
|
|
|
|
ctx = g_slice_new (HandleSelectContext);
|
|
ctx->skeleton = g_object_ref (skeleton);
|
|
ctx->invocation = g_object_ref (invocation);
|
|
ctx->self = g_object_ref (self);
|
|
ctx->name = g_strdup (name);
|
|
|
|
mm_base_modem_authorize (MM_BASE_MODEM (self),
|
|
invocation,
|
|
MM_AUTHORIZATION_DEVICE_CONTROL,
|
|
(GAsyncReadyCallback)select_auth_ready,
|
|
ctx);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|
|
typedef struct _InitializationContext InitializationContext;
|
|
static void interface_initialization_step (GTask *task);
|
|
|
|
typedef enum {
|
|
INITIALIZATION_STEP_FIRST,
|
|
INITIALIZATION_STEP_CHECK_SUPPORT,
|
|
INITIALIZATION_STEP_FAIL_IF_UNSUPPORTED,
|
|
INITIALIZATION_STEP_LAST
|
|
} InitializationStep;
|
|
|
|
struct _InitializationContext {
|
|
MmGdbusModemFirmware *skeleton;
|
|
InitializationStep step;
|
|
};
|
|
|
|
static void
|
|
initialization_context_free (InitializationContext *ctx)
|
|
{
|
|
g_object_unref (ctx->skeleton);
|
|
g_free (ctx);
|
|
}
|
|
|
|
static void
|
|
check_support_ready (MMIfaceModemFirmware *self,
|
|
GAsyncResult *res,
|
|
GTask *task)
|
|
{
|
|
InitializationContext *ctx;
|
|
GError *error = NULL;
|
|
|
|
if (!MM_IFACE_MODEM_FIRMWARE_GET_INTERFACE (self)->check_support_finish (self,
|
|
res,
|
|
&error)) {
|
|
if (error) {
|
|
/* This error shouldn't be treated as critical */
|
|
mm_dbg ("Firmware support check failed: '%s'", error->message);
|
|
g_error_free (error);
|
|
}
|
|
} else {
|
|
/* Firmware is supported! */
|
|
g_object_set_qdata (G_OBJECT (self),
|
|
supported_quark,
|
|
GUINT_TO_POINTER (TRUE));
|
|
}
|
|
|
|
/* Go on to next step */
|
|
ctx = g_task_get_task_data (task);
|
|
ctx->step++;
|
|
interface_initialization_step (task);
|
|
}
|
|
|
|
static void
|
|
interface_initialization_step (GTask *task)
|
|
{
|
|
MMIfaceModemFirmware *self;
|
|
InitializationContext *ctx;
|
|
|
|
/* Don't run new steps if we're cancelled */
|
|
if (g_task_return_error_if_cancelled (task)) {
|
|
g_object_unref (task);
|
|
return;
|
|
}
|
|
|
|
self = g_task_get_source_object (task);
|
|
ctx = g_task_get_task_data (task);
|
|
|
|
switch (ctx->step) {
|
|
case INITIALIZATION_STEP_FIRST:
|
|
/* Setup quarks if we didn't do it before */
|
|
if (G_UNLIKELY (!support_checked_quark))
|
|
support_checked_quark = (g_quark_from_static_string (
|
|
SUPPORT_CHECKED_TAG));
|
|
if (G_UNLIKELY (!supported_quark))
|
|
supported_quark = (g_quark_from_static_string (
|
|
SUPPORTED_TAG));
|
|
|
|
/* Fall down to next step */
|
|
ctx->step++;
|
|
|
|
case INITIALIZATION_STEP_CHECK_SUPPORT:
|
|
if (!GPOINTER_TO_UINT (g_object_get_qdata (G_OBJECT (self),
|
|
support_checked_quark))) {
|
|
/* Set the checked flag so that we don't run it again */
|
|
g_object_set_qdata (G_OBJECT (self),
|
|
support_checked_quark,
|
|
GUINT_TO_POINTER (TRUE));
|
|
/* Initially, assume we don't support it */
|
|
g_object_set_qdata (G_OBJECT (self),
|
|
supported_quark,
|
|
GUINT_TO_POINTER (FALSE));
|
|
|
|
if (MM_IFACE_MODEM_FIRMWARE_GET_INTERFACE (self)->check_support &&
|
|
MM_IFACE_MODEM_FIRMWARE_GET_INTERFACE (self)->check_support_finish) {
|
|
MM_IFACE_MODEM_FIRMWARE_GET_INTERFACE (self)->check_support (
|
|
self,
|
|
(GAsyncReadyCallback)check_support_ready,
|
|
task);
|
|
return;
|
|
}
|
|
|
|
/* If there is no implementation to check support, assume we DON'T
|
|
* support it. */
|
|
}
|
|
/* Fall down to next step */
|
|
ctx->step++;
|
|
|
|
case INITIALIZATION_STEP_FAIL_IF_UNSUPPORTED:
|
|
if (!GPOINTER_TO_UINT (g_object_get_qdata (G_OBJECT (self),
|
|
supported_quark))) {
|
|
g_task_return_new_error (task,
|
|
MM_CORE_ERROR,
|
|
MM_CORE_ERROR_UNSUPPORTED,
|
|
"Firmware interface not available");
|
|
g_object_unref (task);
|
|
return;
|
|
}
|
|
/* Fall down to next step */
|
|
ctx->step++;
|
|
|
|
case INITIALIZATION_STEP_LAST:
|
|
/* We are done without errors! */
|
|
|
|
/* Handle method invocations */
|
|
g_signal_connect (ctx->skeleton,
|
|
"handle-list",
|
|
G_CALLBACK (handle_list),
|
|
self);
|
|
g_signal_connect (ctx->skeleton,
|
|
"handle-select",
|
|
G_CALLBACK (handle_select),
|
|
self);
|
|
|
|
/* Finally, export the new interface */
|
|
mm_gdbus_object_skeleton_set_modem_firmware (MM_GDBUS_OBJECT_SKELETON (self),
|
|
MM_GDBUS_MODEM_FIRMWARE (ctx->skeleton));
|
|
|
|
g_task_return_boolean (task, TRUE);
|
|
g_object_unref (task);
|
|
return;
|
|
}
|
|
|
|
g_assert_not_reached ();
|
|
}
|
|
|
|
gboolean
|
|
mm_iface_modem_firmware_initialize_finish (MMIfaceModemFirmware *self,
|
|
GAsyncResult *res,
|
|
GError **error)
|
|
{
|
|
return g_task_propagate_boolean (G_TASK (res), error);
|
|
}
|
|
|
|
void
|
|
mm_iface_modem_firmware_initialize (MMIfaceModemFirmware *self,
|
|
GCancellable *cancellable,
|
|
GAsyncReadyCallback callback,
|
|
gpointer user_data)
|
|
{
|
|
InitializationContext *ctx;
|
|
MmGdbusModemFirmware *skeleton = NULL;
|
|
GTask *task;
|
|
|
|
/* Did we already create it? */
|
|
g_object_get (self,
|
|
MM_IFACE_MODEM_FIRMWARE_DBUS_SKELETON, &skeleton,
|
|
NULL);
|
|
if (!skeleton) {
|
|
skeleton = mm_gdbus_modem_firmware_skeleton_new ();
|
|
g_object_set (self,
|
|
MM_IFACE_MODEM_FIRMWARE_DBUS_SKELETON, skeleton,
|
|
NULL);
|
|
}
|
|
|
|
/* Perform async initialization here */
|
|
|
|
ctx = g_new0 (InitializationContext, 1);
|
|
ctx->step = INITIALIZATION_STEP_FIRST;
|
|
ctx->skeleton = skeleton;
|
|
|
|
task = g_task_new (self, cancellable, callback, user_data);
|
|
g_task_set_task_data (task, ctx, (GDestroyNotify)initialization_context_free);
|
|
|
|
interface_initialization_step (task);
|
|
}
|
|
|
|
void
|
|
mm_iface_modem_firmware_shutdown (MMIfaceModemFirmware *self)
|
|
{
|
|
g_return_if_fail (MM_IS_IFACE_MODEM_FIRMWARE (self));
|
|
|
|
/* Unexport DBus interface and remove the skeleton */
|
|
mm_gdbus_object_skeleton_set_modem_firmware (MM_GDBUS_OBJECT_SKELETON (self), NULL);
|
|
g_object_set (self,
|
|
MM_IFACE_MODEM_FIRMWARE_DBUS_SKELETON, NULL,
|
|
NULL);
|
|
}
|
|
|
|
/*****************************************************************************/
|
|
|
|
static void
|
|
iface_modem_firmware_init (gpointer g_iface)
|
|
{
|
|
static gboolean initialized = FALSE;
|
|
|
|
if (initialized)
|
|
return;
|
|
|
|
/* Properties */
|
|
g_object_interface_install_property
|
|
(g_iface,
|
|
g_param_spec_object (MM_IFACE_MODEM_FIRMWARE_DBUS_SKELETON,
|
|
"Firmware DBus skeleton",
|
|
"DBus skeleton for the Firmware interface",
|
|
MM_GDBUS_TYPE_MODEM_FIRMWARE_SKELETON,
|
|
G_PARAM_READWRITE));
|
|
|
|
initialized = TRUE;
|
|
}
|
|
|
|
GType
|
|
mm_iface_modem_firmware_get_type (void)
|
|
{
|
|
static GType iface_modem_firmware_type = 0;
|
|
|
|
if (!G_UNLIKELY (iface_modem_firmware_type)) {
|
|
static const GTypeInfo info = {
|
|
sizeof (MMIfaceModemFirmware), /* class_size */
|
|
iface_modem_firmware_init, /* base_init */
|
|
NULL, /* base_finalize */
|
|
};
|
|
|
|
iface_modem_firmware_type = g_type_register_static (G_TYPE_INTERFACE,
|
|
"MMIfaceModemFirmware",
|
|
&info,
|
|
0);
|
|
|
|
g_type_interface_add_prerequisite (iface_modem_firmware_type, MM_TYPE_IFACE_MODEM);
|
|
}
|
|
|
|
return iface_modem_firmware_type;
|
|
}
|