upower/src/linux/up-device-idevice.c
2022-11-16 16:14:40 +01:00

365 lines
10 KiB
C

/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
*
* Copyright (C) 2010 Bastien Nocera <hadess@hadess.net>
* Copyright (C) 2005-2010 Richard Hughes <richard@hughsie.com>
* Copyright (C) 2004 Sergey V. Udaltsov <svu@gnome.org>
*
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#include "config.h"
#include <string.h>
#include <math.h>
#include <glib.h>
#include <glib/gstdio.h>
#include <glib/gprintf.h>
#include <glib/gi18n-lib.h>
#include <glib-object.h>
#include <gudev/gudev.h>
#include <libimobiledevice/libimobiledevice.h>
#include <libimobiledevice/lockdown.h>
#include <plist/plist.h>
#include "up-constants.h"
#include "up-types.h"
#include "up-device-idevice.h"
struct UpDeviceIdevicePrivate
{
idevice_t dev;
};
G_DEFINE_TYPE_WITH_PRIVATE (UpDeviceIdevice, up_device_idevice, UP_TYPE_DEVICE)
static gboolean up_device_idevice_refresh (UpDevice *device, UpRefreshReason reason);
static const char *
lockdownd_error_to_string (lockdownd_error_t lerr)
{
switch (lerr) {
case LOCKDOWN_E_SUCCESS:
return "LOCKDOWN_E_SUCCESS";
case LOCKDOWN_E_INVALID_ARG:
return "LOCKDOWN_E_INVALID_ARG";
case LOCKDOWN_E_INVALID_CONF:
return "LOCKDOWN_E_INVALID_CONF";
case LOCKDOWN_E_PLIST_ERROR:
return "LOCKDOWN_E_PLIST_ERROR";
case LOCKDOWN_E_PAIRING_FAILED:
return "LOCKDOWN_E_PAIRING_FAILED";
case LOCKDOWN_E_SSL_ERROR:
return "LOCKDOWN_E_SSL_ERROR";
case LOCKDOWN_E_DICT_ERROR:
return "LOCKDOWN_E_DICT_ERROR";
case -7:
/* Either LOCKDOWN_E_NOT_ENOUGH_DATA or
* LOCKDOWN_E_RECEIVE_TIMEOUT depending on version */
return "LOCKDOWN_E_RECEIVE_TIMEOUT";
case LOCKDOWN_E_MUX_ERROR:
return "LOCKDOWN_E_MUX_ERROR";
case LOCKDOWN_E_NO_RUNNING_SESSION:
return "LOCKDOWN_E_NO_RUNNING_SESSION";
case LOCKDOWN_E_INVALID_RESPONSE:
return "LOCKDOWN_E_INVALID_RESPONSE";
case LOCKDOWN_E_MISSING_KEY:
return "LOCKDOWN_E_MISSING_KEY";
case LOCKDOWN_E_MISSING_VALUE:
return "LOCKDOWN_E_MISSING_VALUE";
case LOCKDOWN_E_GET_PROHIBITED:
return "LOCKDOWN_E_GET_PROHIBITED";
case LOCKDOWN_E_SET_PROHIBITED:
return "LOCKDOWN_E_SET_PROHIBITED";
case LOCKDOWN_E_REMOVE_PROHIBITED:
return "LOCKDOWN_E_REMOVE_PROHIBITED";
case LOCKDOWN_E_IMMUTABLE_VALUE:
return "LOCKDOWN_E_IMMUTABLE_VALUE";
case LOCKDOWN_E_PASSWORD_PROTECTED:
return "LOCKDOWN_E_PASSWORD_PROTECTED";
case LOCKDOWN_E_USER_DENIED_PAIRING:
return "LOCKDOWN_E_USER_DENIED_PAIRING";
case LOCKDOWN_E_PAIRING_DIALOG_RESPONSE_PENDING:
return "LOCKDOWN_E_PAIRING_DIALOG_RESPONSE_PENDING";
case LOCKDOWN_E_MISSING_HOST_ID:
return "LOCKDOWN_E_MISSING_HOST_ID";
case LOCKDOWN_E_INVALID_HOST_ID:
return "LOCKDOWN_E_INVALID_HOST_ID";
case LOCKDOWN_E_SESSION_ACTIVE:
return "LOCKDOWN_E_SESSION_ACTIVE";
case LOCKDOWN_E_SESSION_INACTIVE:
return "LOCKDOWN_E_SESSION_INACTIVE";
case LOCKDOWN_E_MISSING_SESSION_ID:
return "LOCKDOWN_E_MISSING_SESSION_ID";
case LOCKDOWN_E_INVALID_SESSION_ID:
return "LOCKDOWN_E_INVALID_SESSION_ID";
case LOCKDOWN_E_MISSING_SERVICE:
return "LOCKDOWN_E_MISSING_SERVICE";
case LOCKDOWN_E_INVALID_SERVICE:
return "LOCKDOWN_E_INVALID_SERVICE";
case LOCKDOWN_E_SERVICE_LIMIT:
return "LOCKDOWN_E_SERVICE_LIMIT";
case LOCKDOWN_E_MISSING_PAIR_RECORD:
return "LOCKDOWN_E_MISSING_PAIR_RECORD";
case LOCKDOWN_E_SAVE_PAIR_RECORD_FAILED:
return "LOCKDOWN_E_SAVE_PAIR_RECORD_FAILED";
case LOCKDOWN_E_INVALID_PAIR_RECORD:
return "LOCKDOWN_E_INVALID_PAIR_RECORD";
case LOCKDOWN_E_INVALID_ACTIVATION_RECORD:
return "LOCKDOWN_E_INVALID_ACTIVATION_RECORD";
case LOCKDOWN_E_MISSING_ACTIVATION_RECORD:
return "LOCKDOWN_E_MISSING_ACTIVATION_RECORD";
case LOCKDOWN_E_SERVICE_PROHIBITED:
return "LOCKDOWN_E_SERVICE_PROHIBITED";
case LOCKDOWN_E_ESCROW_LOCKED:
return "LOCKDOWN_E_ESCROW_LOCKED";
case LOCKDOWN_E_UNKNOWN_ERROR:
return "LOCKDOWN_E_UNKNOWN_ERROR";
default:
return "unknown error";
}
}
static char *
get_device_uuid (GUdevDevice *native)
{
const char *uuid;
char *retval;
uuid = g_udev_device_get_property (native, "ID_SERIAL_SHORT");
if (uuid == NULL)
return NULL;
if (strlen (uuid) != 24)
return g_strdup (uuid);
/* new style UDID: add hyphen between first 8 and following 16 digits */
retval = g_malloc0 (24 + 1 + 1);
memcpy (&retval[0], &uuid[0], 8);
retval[8] = '-';
memcpy (&retval[9], &uuid[8], 16);
return retval;
}
/**
* up_device_idevice_coldplug:
*
* Return %TRUE on success, %FALSE if we failed to get data and should be removed
**/
static gboolean
up_device_idevice_coldplug (UpDevice *device)
{
UpDeviceIdevice *idevice = UP_DEVICE_IDEVICE (device);
GUdevDevice *native;
char *uuid;
const gchar *model;
UpDeviceKind kind;
/* Is it an iDevice? */
native = G_UDEV_DEVICE (up_device_get_native (device));
if (g_udev_device_get_property_as_boolean (native, "USBMUX_SUPPORTED") == FALSE)
return FALSE;
/* Get the UUID */
uuid = get_device_uuid (native);
if (uuid == NULL)
return FALSE;
/* find the kind of device */
model = g_udev_device_get_property (native, "ID_MODEL");
kind = UP_DEVICE_KIND_PHONE;
if (model != NULL && g_strstr_len (model, -1, "iPad")) {
kind = UP_DEVICE_KIND_COMPUTER;
} else if (model != NULL && g_strstr_len (model, -1, "iPod")) {
kind = UP_DEVICE_KIND_MEDIA_PLAYER;
}
/* hardcode some values */
g_object_set (device,
"type", kind,
"serial", uuid,
"vendor", g_udev_device_get_property (native, "ID_VENDOR"),
"model", model,
"power-supply", FALSE,
"is-present", FALSE,
"is-rechargeable", TRUE,
"has-history", TRUE,
NULL);
g_object_set (idevice, "poll-timeout", 5, NULL);
g_free (uuid);
return TRUE;
}
/**
* up_device_idevice_refresh:
*
* Return %TRUE on success, %FALSE if we failed to refresh or no data
**/
static gboolean
up_device_idevice_refresh (UpDevice *device, UpRefreshReason reason)
{
UpDeviceIdevice *idevice = UP_DEVICE_IDEVICE (device);
idevice_t dev = idevice->priv->dev;
lockdownd_client_t client = NULL;
lockdownd_error_t lerr;
char *name = NULL;
plist_t dict, node;
guint64 percentage;
guint8 charging, has_battery;
UpDeviceState state;
gboolean retval = FALSE;
/* No device yet, try to open it */
if (!dev) {
g_autofree char *uuid = NULL;
g_object_get (G_OBJECT (idevice), "serial", &uuid, NULL);
g_assert (uuid);
/* Connect to the device */
if (idevice_new (&dev, uuid) != IDEVICE_E_SUCCESS)
goto out;
}
if ((lerr = lockdownd_client_new_with_handshake (dev, &client, "upower")) != LOCKDOWN_E_SUCCESS) {
g_debug ("Could not start lockdownd client: %s (%d)",
lockdownd_error_to_string (lerr), lerr);
goto out;
}
if (lockdownd_get_device_name (client, &name) == LOCKDOWN_E_SUCCESS) {
/* Prefer the user-chosen name for the device when available */
g_object_set (device,
"vendor", NULL,
"model", name,
NULL);
free (name);
}
if (lockdownd_get_value (client, "com.apple.mobile.battery", NULL, &dict) != LOCKDOWN_E_SUCCESS)
goto out;
node = plist_dict_get_item (dict, "HasBattery");
if (node) {
plist_get_bool_val (node, &has_battery);
if (!has_battery) {
plist_free(dict);
goto out;
}
}
/* get battery status */
node = plist_dict_get_item (dict, "BatteryCurrentCapacity");
if (!node) {
plist_free (dict);
goto out;
}
plist_get_uint_val (node, &percentage);
g_object_set (device, "percentage", (double) percentage, NULL);
g_debug ("percentage=%"G_GUINT64_FORMAT, percentage);
/* get charging status */
node = plist_dict_get_item (dict, "BatteryIsCharging");
if (!node) {
plist_free(dict);
goto out;
}
plist_get_bool_val (node, &charging);
if (percentage == 100)
state = UP_DEVICE_STATE_FULLY_CHARGED;
else if (percentage == 0)
state = UP_DEVICE_STATE_EMPTY;
else if (charging)
state = UP_DEVICE_STATE_CHARGING;
else
state = UP_DEVICE_STATE_DISCHARGING; /* upower doesn't have a "not charging" state */
g_object_set (device,
"state", state,
NULL);
g_debug ("state=%s", up_device_state_to_string (state));
plist_free (dict);
/* reset time */
g_object_set (device, "update-time", (guint64) g_get_real_time () / G_USEC_PER_SEC, NULL);
retval = TRUE;
if (!idevice->priv->dev) {
/* Device is working, mark as present and poll less frequently */
g_object_set (G_OBJECT (idevice), "is-present", TRUE, NULL);
g_object_set (idevice, "poll-timeout", UP_DAEMON_SHORT_TIMEOUT, NULL);
idevice->priv->dev = dev;
}
out:
/* Free device if we created it and it was not stored. */
if (dev && !idevice->priv->dev)
idevice_free (dev);
lockdownd_client_free (client);
return retval;
}
/**
* up_device_idevice_init:
**/
static void
up_device_idevice_init (UpDeviceIdevice *idevice)
{
idevice->priv = up_device_idevice_get_instance_private (idevice);
}
/**
* up_device_idevice_finalize:
**/
static void
up_device_idevice_finalize (GObject *object)
{
UpDeviceIdevice *idevice;
g_return_if_fail (object != NULL);
g_return_if_fail (UP_IS_DEVICE_IDEVICE (object));
idevice = UP_DEVICE_IDEVICE (object);
g_return_if_fail (idevice->priv != NULL);
if (idevice->priv->dev != NULL)
idevice_free (idevice->priv->dev);
G_OBJECT_CLASS (up_device_idevice_parent_class)->finalize (object);
}
/**
* up_device_idevice_class_init:
**/
static void
up_device_idevice_class_init (UpDeviceIdeviceClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
UpDeviceClass *device_class = UP_DEVICE_CLASS (klass);
object_class->finalize = up_device_idevice_finalize;
device_class->coldplug = up_device_idevice_coldplug;
device_class->refresh = up_device_idevice_refresh;
}