
In addition to the standard human-friendly output, we now allow a machine-friendly key-value pair output, much easier to parse and use by programs that look at the mmcli output. This new key-value pair output should be treated as API from now on, so third-party programs can assume the output is compatible from one release to another.
298 lines
7.9 KiB
C
298 lines
7.9 KiB
C
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* mmcli -- Control modem status & access information from the command line
|
|
*
|
|
* 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.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Copyright (C) 2012 Google, Inc.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <locale.h>
|
|
#include <string.h>
|
|
|
|
#include <glib.h>
|
|
#include <gio/gio.h>
|
|
|
|
#define _LIBMM_INSIDE_MMCLI
|
|
#include <libmm-glib.h>
|
|
|
|
#include "mmcli.h"
|
|
#include "mmcli-common.h"
|
|
#include "mmcli-output.h"
|
|
|
|
/* Context */
|
|
typedef struct {
|
|
MMManager *manager;
|
|
GCancellable *cancellable;
|
|
MMObject *object;
|
|
MMModemFirmware *modem_firmware;
|
|
} Context;
|
|
static Context *ctx;
|
|
|
|
/* Options */
|
|
static gboolean list_flag;
|
|
static gchar *select_str;
|
|
|
|
static GOptionEntry entries[] = {
|
|
{ "firmware-list", 0, 0, G_OPTION_ARG_NONE, &list_flag,
|
|
"List firmware images installed in a given modem",
|
|
NULL
|
|
},
|
|
{ "firmware-select", 0, 0, G_OPTION_ARG_STRING, &select_str,
|
|
"Select a given firmware image",
|
|
"[Unique ID]"
|
|
},
|
|
{ NULL }
|
|
};
|
|
|
|
GOptionGroup *
|
|
mmcli_modem_firmware_get_option_group (void)
|
|
{
|
|
GOptionGroup *group;
|
|
|
|
group = g_option_group_new ("firmware",
|
|
"Firmware options",
|
|
"Show Firmware options",
|
|
NULL,
|
|
NULL);
|
|
g_option_group_add_entries (group, entries);
|
|
|
|
return group;
|
|
}
|
|
|
|
gboolean
|
|
mmcli_modem_firmware_options_enabled (void)
|
|
{
|
|
static guint n_actions = 0;
|
|
static gboolean checked = FALSE;
|
|
|
|
if (checked)
|
|
return !!n_actions;
|
|
|
|
n_actions = (list_flag +
|
|
!!select_str);
|
|
|
|
if (n_actions > 1) {
|
|
g_printerr ("error: too many Firmware actions requested\n");
|
|
exit (EXIT_FAILURE);
|
|
}
|
|
|
|
checked = TRUE;
|
|
return !!n_actions;
|
|
}
|
|
|
|
static void
|
|
context_free (Context *ctx)
|
|
{
|
|
if (!ctx)
|
|
return;
|
|
|
|
if (ctx->cancellable)
|
|
g_object_unref (ctx->cancellable);
|
|
if (ctx->modem_firmware)
|
|
g_object_unref (ctx->modem_firmware);
|
|
if (ctx->object)
|
|
g_object_unref (ctx->object);
|
|
if (ctx->manager)
|
|
g_object_unref (ctx->manager);
|
|
g_free (ctx);
|
|
}
|
|
|
|
static void
|
|
ensure_modem_firmware (void)
|
|
{
|
|
if (!ctx->modem_firmware) {
|
|
g_printerr ("error: modem has no firmware capabilities\n");
|
|
exit (EXIT_FAILURE);
|
|
}
|
|
|
|
/* Success */
|
|
}
|
|
|
|
void
|
|
mmcli_modem_firmware_shutdown (void)
|
|
{
|
|
context_free (ctx);
|
|
}
|
|
|
|
static void
|
|
list_process_reply (MMFirmwareProperties *selected,
|
|
GList *result,
|
|
const GError *error)
|
|
{
|
|
#undef VALIDATE_UNKNOWN
|
|
#define VALIDATE_UNKNOWN(str) (str ? str : "unknown")
|
|
|
|
if (error) {
|
|
g_printerr ("error: couldn't list firmware images: '%s'\n",
|
|
error->message);
|
|
exit (EXIT_FAILURE);
|
|
}
|
|
|
|
mmcli_output_firmware_list (result, selected);
|
|
mmcli_output_dump ();
|
|
|
|
g_list_free_full (result, g_object_unref);
|
|
g_clear_object (&selected);
|
|
}
|
|
|
|
static void
|
|
list_ready (MMModemFirmware *modem,
|
|
GAsyncResult *result,
|
|
gpointer nothing)
|
|
{
|
|
GList *installed = NULL;
|
|
MMFirmwareProperties *selected = NULL;
|
|
GError *error = NULL;
|
|
|
|
mm_modem_firmware_list_finish (modem, result, &selected, &installed, &error);
|
|
list_process_reply (selected, installed, error);
|
|
|
|
mmcli_async_operation_done ();
|
|
}
|
|
|
|
static void
|
|
select_process_reply (gboolean result,
|
|
const GError *error)
|
|
{
|
|
if (!result) {
|
|
g_printerr ("error: couldn't select firmware image: '%s'\n",
|
|
error ? error->message : "unknown error");
|
|
exit (EXIT_FAILURE);
|
|
}
|
|
|
|
g_print ("Successfully selected firmware image\n");
|
|
}
|
|
|
|
static void
|
|
create_ready (MMModemFirmware *modem,
|
|
GAsyncResult *result)
|
|
{
|
|
gboolean res;
|
|
GError *error = NULL;
|
|
|
|
res = mm_modem_firmware_select_finish (modem, result, &error);
|
|
select_process_reply (res, error);
|
|
|
|
mmcli_async_operation_done ();
|
|
}
|
|
|
|
static void
|
|
get_modem_ready (GObject *source,
|
|
GAsyncResult *result)
|
|
{
|
|
ctx->object = mmcli_get_modem_finish (result, &ctx->manager);
|
|
ctx->modem_firmware = mm_object_get_modem_firmware (ctx->object);
|
|
|
|
/* Setup operation timeout */
|
|
if (ctx->modem_firmware)
|
|
mmcli_force_operation_timeout (G_DBUS_PROXY (ctx->modem_firmware));
|
|
|
|
ensure_modem_firmware ();
|
|
|
|
/* Request to list images? */
|
|
if (list_flag) {
|
|
g_debug ("Asynchronously listing firmware images in modem...");
|
|
mm_modem_firmware_list (ctx->modem_firmware,
|
|
ctx->cancellable,
|
|
(GAsyncReadyCallback)list_ready,
|
|
NULL);
|
|
return;
|
|
}
|
|
|
|
/* Request to select a given image? */
|
|
if (select_str) {
|
|
g_debug ("Asynchronously selecting firmware image in modem...");
|
|
mm_modem_firmware_select (ctx->modem_firmware,
|
|
select_str,
|
|
ctx->cancellable,
|
|
(GAsyncReadyCallback)create_ready,
|
|
NULL);
|
|
return;
|
|
}
|
|
|
|
g_warn_if_reached ();
|
|
}
|
|
|
|
void
|
|
mmcli_modem_firmware_run_asynchronous (GDBusConnection *connection,
|
|
GCancellable *cancellable)
|
|
{
|
|
/* Initialize context */
|
|
ctx = g_new0 (Context, 1);
|
|
if (cancellable)
|
|
ctx->cancellable = g_object_ref (cancellable);
|
|
|
|
/* Get proper modem */
|
|
mmcli_get_modem (connection,
|
|
mmcli_get_common_modem_string (),
|
|
cancellable,
|
|
(GAsyncReadyCallback)get_modem_ready,
|
|
NULL);
|
|
}
|
|
|
|
void
|
|
mmcli_modem_firmware_run_synchronous (GDBusConnection *connection)
|
|
{
|
|
GError *error = NULL;
|
|
|
|
/* Initialize context */
|
|
ctx = g_new0 (Context, 1);
|
|
ctx->object = mmcli_get_modem_sync (connection,
|
|
mmcli_get_common_modem_string (),
|
|
&ctx->manager);
|
|
ctx->modem_firmware = mm_object_get_modem_firmware (ctx->object);
|
|
|
|
/* Setup operation timeout */
|
|
if (ctx->modem_firmware)
|
|
mmcli_force_operation_timeout (G_DBUS_PROXY (ctx->modem_firmware));
|
|
|
|
ensure_modem_firmware ();
|
|
|
|
/* Request to list firmware images? */
|
|
if (list_flag) {
|
|
GList *installed = NULL;
|
|
MMFirmwareProperties *selected = NULL;
|
|
|
|
g_debug ("Synchronously listing firmware images in modem...");
|
|
mm_modem_firmware_list_sync (ctx->modem_firmware,
|
|
&selected,
|
|
&installed,
|
|
NULL,
|
|
&error);
|
|
list_process_reply (selected, installed, error);
|
|
return;
|
|
}
|
|
|
|
/* Request to select a given image? */
|
|
if (select_str) {
|
|
gboolean result;
|
|
GError *error = NULL;
|
|
|
|
g_debug ("Synchronously selecting firmware image in modem...");
|
|
result = mm_modem_firmware_select_sync (ctx->modem_firmware,
|
|
select_str,
|
|
NULL,
|
|
&error);
|
|
select_process_reply (result, error);
|
|
return;
|
|
}
|
|
|
|
g_warn_if_reached ();
|
|
}
|