ofono/src/sim.c

2127 lines
49 KiB
C
Raw Normal View History

/*
*
* oFono - Open Source Telephony
*
2010-01-02 01:00:10 +00:00
* Copyright (C) 2008-2010 Intel Corporation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* 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
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
2009-08-04 15:15:00 +00:00
#define _GNU_SOURCE
#include <string.h>
#include <stdio.h>
#include <glib.h>
#include <gdbus.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <fcntl.h>
#include <errno.h>
2009-07-21 18:11:21 +00:00
#include <unistd.h>
#include "ofono.h"
#include "common.h"
#include "util.h"
2009-06-18 08:46:08 +00:00
#include "smsutil.h"
2009-07-10 23:56:44 +00:00
#include "simutil.h"
#include "storage.h"
#include "stkutil.h"
2009-08-04 15:15:00 +00:00
2009-08-04 15:15:33 +00:00
#define SIM_CACHE_MODE 0600
2009-12-19 01:49:21 +00:00
#define SIM_CACHE_PATH STORAGEDIR "/%s-%i/%04x"
#define SIM_CACHE_PATH_LEN(imsilen) (strlen(SIM_CACHE_PATH) - 3 + imsilen)
2009-08-04 15:15:33 +00:00
#define SIM_CACHE_HEADER_SIZE 6
2009-08-18 22:05:03 +00:00
static GSList *g_drivers = NULL;
static gboolean sim_op_next(gpointer user_data);
static gboolean sim_op_retrieve_next(gpointer user);
2009-08-18 22:05:03 +00:00
static void sim_own_numbers_update(struct ofono_sim *sim);
static void sim_pin_check(struct ofono_sim *sim);
static void sim_set_ready(struct ofono_sim *sim);
struct sim_file_op {
int id;
2009-08-04 14:54:51 +00:00
gboolean cache;
enum ofono_sim_file_structure structure;
int length;
int record_length;
int current;
gconstpointer cb;
2009-08-03 17:41:44 +00:00
gboolean is_read;
void *buffer;
void *userdata;
};
2009-08-18 22:05:03 +00:00
struct ofono_sim {
char *imsi;
2009-12-19 01:49:21 +00:00
enum ofono_sim_phase phase;
unsigned char mnc_length;
GSList *own_numbers;
GSList *new_numbers;
GSList *service_numbers;
2009-08-31 20:08:40 +00:00
gboolean sdn_ready;
enum ofono_sim_state state;
enum ofono_sim_password_type pin_type;
gboolean locked_pins[OFONO_SIM_PASSWORD_INVALID];
char **language_prefs;
GQueue *simop_q;
gint simop_source;
unsigned char efmsisdn_length;
unsigned char efmsisdn_records;
unsigned char *efli;
unsigned char efli_length;
2010-01-07 11:38:47 +00:00
enum ofono_sim_cphs_phase cphs_phase;
unsigned char cphs_service_table[2];
struct ofono_watchlist *state_watches;
2009-08-18 22:05:03 +00:00
const struct ofono_sim_driver *driver;
void *driver_data;
struct ofono_atom *atom;
DBusMessage *pending;
};
struct msisdn_set_request {
2009-08-18 22:05:03 +00:00
struct ofono_sim *sim;
int pending;
int failed;
DBusMessage *msg;
};
struct service_number {
char *id;
struct ofono_phone_number ph;
};
2009-09-21 12:51:23 +00:00
static const char *const passwd_name[] = {
2009-09-21 13:03:56 +00:00
[OFONO_SIM_PASSWORD_NONE] = "none",
[OFONO_SIM_PASSWORD_SIM_PIN] = "pin",
[OFONO_SIM_PASSWORD_SIM_PUK] = "puk",
[OFONO_SIM_PASSWORD_PHSIM_PIN] = "phone",
[OFONO_SIM_PASSWORD_PHFSIM_PIN] = "firstphone",
[OFONO_SIM_PASSWORD_PHFSIM_PUK] = "firstphonepuk",
[OFONO_SIM_PASSWORD_SIM_PIN2] = "pin2",
[OFONO_SIM_PASSWORD_SIM_PUK2] = "puk2",
[OFONO_SIM_PASSWORD_PHNET_PIN] = "network",
[OFONO_SIM_PASSWORD_PHNET_PUK] = "networkpuk",
[OFONO_SIM_PASSWORD_PHNETSUB_PIN] = "netsub",
[OFONO_SIM_PASSWORD_PHNETSUB_PUK] = "netsubpuk",
[OFONO_SIM_PASSWORD_PHSP_PIN] = "service",
[OFONO_SIM_PASSWORD_PHSP_PUK] = "servicepuk",
[OFONO_SIM_PASSWORD_PHCORP_PIN] = "corp",
[OFONO_SIM_PASSWORD_PHCORP_PUK] = "corppuk",
2009-09-21 12:51:23 +00:00
};
2009-09-21 13:03:56 +00:00
static const char *sim_passwd_name(enum ofono_sim_password_type type)
2009-09-21 12:51:23 +00:00
{
return passwd_name[type];
}
2009-09-21 13:03:56 +00:00
static enum ofono_sim_password_type sim_string_to_passwd(const char *name)
2009-09-21 12:51:23 +00:00
{
int len = sizeof(passwd_name) / sizeof(*passwd_name);
int i;
for (i = 0; i < len; i++)
if (!strcmp(passwd_name[i], name))
return i;
2009-09-21 13:03:56 +00:00
return OFONO_SIM_PASSWORD_INVALID;
2009-09-21 12:51:23 +00:00
}
static gboolean password_is_pin(enum ofono_sim_password_type type)
{
2009-09-24 15:22:57 +00:00
switch (type) {
case OFONO_SIM_PASSWORD_SIM_PIN:
case OFONO_SIM_PASSWORD_PHSIM_PIN:
case OFONO_SIM_PASSWORD_PHFSIM_PIN:
case OFONO_SIM_PASSWORD_SIM_PIN2:
case OFONO_SIM_PASSWORD_PHNET_PIN:
case OFONO_SIM_PASSWORD_PHNETSUB_PIN:
case OFONO_SIM_PASSWORD_PHSP_PIN:
case OFONO_SIM_PASSWORD_PHCORP_PIN:
return TRUE;
case OFONO_SIM_PASSWORD_SIM_PUK:
case OFONO_SIM_PASSWORD_PHFSIM_PUK:
case OFONO_SIM_PASSWORD_SIM_PUK2:
case OFONO_SIM_PASSWORD_PHNET_PUK:
case OFONO_SIM_PASSWORD_PHNETSUB_PUK:
case OFONO_SIM_PASSWORD_PHSP_PUK:
case OFONO_SIM_PASSWORD_PHCORP_PUK:
case OFONO_SIM_PASSWORD_INVALID:
case OFONO_SIM_PASSWORD_NONE:
return FALSE;
}
return FALSE;
}
static char **get_own_numbers(GSList *own_numbers)
{
int nelem = 0;
GSList *l;
struct ofono_phone_number *num;
char **ret;
if (own_numbers)
nelem = g_slist_length(own_numbers);
ret = g_new0(char *, nelem + 1);
nelem = 0;
for (l = own_numbers; l; l = l->next) {
num = l->data;
ret[nelem++] = g_strdup(phone_number_to_string(num));
}
return ret;
}
static char **get_locked_pins(struct ofono_sim *sim)
{
int i;
int nelem = 0;
char **ret;
for (i = 0; i < OFONO_SIM_PASSWORD_INVALID; i++) {
if (sim->locked_pins[i] == FALSE)
continue;
if (password_is_pin(i) == FALSE)
continue;
nelem += 1;
}
ret = g_new0(char *, nelem + 1);
nelem = 0;
for (i = 0; i < OFONO_SIM_PASSWORD_INVALID; i++) {
if (sim->locked_pins[i] == FALSE)
continue;
if (password_is_pin(i) == FALSE)
continue;
ret[nelem] = g_strdup(sim_passwd_name(i));
nelem += 1;
}
return ret;
}
static char **get_service_numbers(GSList *service_numbers)
{
int nelem;
GSList *l;
struct service_number *num;
char **ret;
nelem = g_slist_length(service_numbers) * 2;
ret = g_new0(char *, nelem + 1);
nelem = 0;
for (l = service_numbers; l; l = l->next) {
num = l->data;
ret[nelem++] = g_strdup(num->id);
ret[nelem++] = g_strdup(phone_number_to_string(&num->ph));
}
return ret;
}
static void sim_file_op_free(struct sim_file_op *node)
{
g_free(node);
}
static void service_number_free(struct service_number *num)
{
g_free(num->id);
g_free(num);
}
static DBusMessage *sim_get_properties(DBusConnection *conn,
DBusMessage *msg, void *data)
{
2009-08-18 22:05:03 +00:00
struct ofono_sim *sim = data;
DBusMessage *reply;
DBusMessageIter iter;
DBusMessageIter dict;
char **own_numbers;
char **service_numbers;
char **locked_pins;
const char *pin_name;
2010-04-09 06:49:49 +00:00
dbus_bool_t present = sim->state != OFONO_SIM_STATE_NOT_PRESENT;
reply = dbus_message_new_method_return(msg);
if (!reply)
return NULL;
dbus_message_iter_init_append(reply, &iter);
dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY,
OFONO_PROPERTIES_ARRAY_SIGNATURE,
&dict);
2010-04-09 06:49:49 +00:00
ofono_dbus_dict_append(&dict, "Present", DBUS_TYPE_BOOLEAN, &present);
if (!present)
goto done;
if (sim->imsi)
2009-07-29 15:26:55 +00:00
ofono_dbus_dict_append(&dict, "SubscriberIdentity",
DBUS_TYPE_STRING, &sim->imsi);
if (sim->mnc_length) {
char mcc[OFONO_MAX_MCC_LENGTH + 1];
char mnc[OFONO_MAX_MNC_LENGTH + 1];
const char *str;
strncpy(mcc, sim->imsi, OFONO_MAX_MCC_LENGTH);
mcc[OFONO_MAX_MCC_LENGTH] = '\0';
strncpy(mnc, sim->imsi + OFONO_MAX_MCC_LENGTH, sim->mnc_length);
mnc[sim->mnc_length] = '\0';
str = mcc;
ofono_dbus_dict_append(&dict, "MobileCountryCode",
DBUS_TYPE_STRING, &str);
str = mnc;
ofono_dbus_dict_append(&dict, "MobileNetworkCode",
DBUS_TYPE_STRING, &str);
}
own_numbers = get_own_numbers(sim->own_numbers);
2009-07-29 15:29:52 +00:00
ofono_dbus_dict_append_array(&dict, "SubscriberNumbers",
DBUS_TYPE_STRING, &own_numbers);
g_strfreev(own_numbers);
locked_pins = get_locked_pins(sim);
ofono_dbus_dict_append_array(&dict, "LockedPins",
DBUS_TYPE_STRING, &locked_pins);
g_strfreev(locked_pins);
2009-08-31 20:08:40 +00:00
if (sim->service_numbers && sim->sdn_ready) {
service_numbers = get_service_numbers(sim->service_numbers);
ofono_dbus_dict_append_dict(&dict, "ServiceDiallingNumbers",
DBUS_TYPE_STRING,
&service_numbers);
g_strfreev(service_numbers);
}
if (sim->language_prefs)
ofono_dbus_dict_append_array(&dict, "PreferredLanguages",
2009-09-24 15:22:57 +00:00
DBUS_TYPE_STRING,
&sim->language_prefs);
pin_name = sim_passwd_name(sim->pin_type);
ofono_dbus_dict_append(&dict, "PinRequired",
DBUS_TYPE_STRING,
(void *) &pin_name);
2010-04-09 06:49:49 +00:00
done:
dbus_message_iter_close_container(&iter, &dict);
return reply;
}
static void msisdn_set_done(struct msisdn_set_request *req)
{
DBusMessage *reply;
if (req->failed)
reply = __ofono_error_failed(req->msg);
else
reply = dbus_message_new_method_return(req->msg);
__ofono_dbus_pending_reply(&req->msg, reply);
/* Re-read the numbers and emit signal if needed */
2009-08-18 22:05:03 +00:00
sim_own_numbers_update(req->sim);
g_free(req);
}
2009-08-18 22:05:03 +00:00
static void msisdn_set_cb(int ok, void *data)
{
struct msisdn_set_request *req = data;
if (!ok)
req->failed++;
req->pending--;
if (!req->pending)
msisdn_set_done(req);
}
2009-08-18 22:05:03 +00:00
static gboolean set_own_numbers(struct ofono_sim *sim,
GSList *new_numbers, DBusMessage *msg)
{
struct msisdn_set_request *req;
int record;
unsigned char efmsisdn[255];
struct ofono_phone_number *number;
if (new_numbers && g_slist_length(new_numbers) > sim->efmsisdn_records)
return FALSE;
req = g_new0(struct msisdn_set_request, 1);
2009-08-18 22:05:03 +00:00
req->sim = sim;
req->msg = dbus_message_ref(msg);
for (record = 1; record <= sim->efmsisdn_records; record++) {
if (new_numbers) {
number = new_numbers->data;
sim_adn_build(efmsisdn, sim->efmsisdn_length,
number, NULL);
new_numbers = new_numbers->next;
} else {
memset(efmsisdn, 0xff, sim->efmsisdn_length);
}
2009-08-18 22:05:03 +00:00
if (ofono_sim_write(req->sim, SIM_EFMSISDN_FILEID,
msisdn_set_cb, OFONO_SIM_FILE_STRUCTURE_FIXED,
record, efmsisdn,
sim->efmsisdn_length, req) == 0)
req->pending++;
else
req->failed++;
}
if (!req->pending)
msisdn_set_done(req);
return TRUE;
}
static DBusMessage *sim_set_property(DBusConnection *conn, DBusMessage *msg,
void *data)
{
2009-08-18 22:05:03 +00:00
struct ofono_sim *sim = data;
DBusMessageIter iter;
DBusMessageIter var;
DBusMessageIter var_elem;
const char *name, *value;
if (!dbus_message_iter_init(msg, &iter))
return __ofono_error_invalid_args(msg);
if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_STRING)
return __ofono_error_invalid_args(msg);
dbus_message_iter_get_basic(&iter, &name);
if (!strcmp(name, "SubscriberNumbers")) {
gboolean set_ok = FALSE;
struct ofono_phone_number *own;
GSList *own_numbers = NULL;
if (sim->efmsisdn_length == 0)
return __ofono_error_busy(msg);
dbus_message_iter_next(&iter);
if (dbus_message_iter_get_arg_type(&iter) != DBUS_TYPE_VARIANT)
return __ofono_error_invalid_args(msg);
dbus_message_iter_recurse(&iter, &var);
if (dbus_message_iter_get_arg_type(&var) != DBUS_TYPE_ARRAY ||
dbus_message_iter_get_element_type(&var) !=
DBUS_TYPE_STRING)
return __ofono_error_invalid_args(msg);
dbus_message_iter_recurse(&var, &var_elem);
/* Empty lists are supported */
while (dbus_message_iter_get_arg_type(&var_elem) !=
DBUS_TYPE_INVALID) {
if (dbus_message_iter_get_arg_type(&var_elem) !=
DBUS_TYPE_STRING)
goto error;
dbus_message_iter_get_basic(&var_elem, &value);
if (!valid_phone_number_format(value))
goto error;
own = g_new0(struct ofono_phone_number, 1);
string_to_phone_number(value, own);
own_numbers = g_slist_prepend(own_numbers, own);
dbus_message_iter_next(&var_elem);
}
own_numbers = g_slist_reverse(own_numbers);
2009-08-18 22:05:03 +00:00
set_ok = set_own_numbers(sim, own_numbers, msg);
error:
g_slist_foreach(own_numbers, (GFunc) g_free, 0);
g_slist_free(own_numbers);
if (set_ok)
return NULL;
}
return __ofono_error_invalid_args(msg);
}
static void sim_locked_cb(struct ofono_sim *sim, gboolean locked)
{
DBusConnection *conn = ofono_dbus_get_connection();
const char *path = __ofono_atom_get_path(sim->atom);
const char *typestr;
const char *pin;
char **locked_pins;
enum ofono_sim_password_type type;
DBusMessage *reply;
reply = dbus_message_new_method_return(sim->pending);
dbus_message_get_args(sim->pending, NULL, DBUS_TYPE_STRING, &typestr,
DBUS_TYPE_STRING, &pin,
DBUS_TYPE_INVALID);
type = sim_string_to_passwd(typestr);
sim->locked_pins[type] = locked;
__ofono_dbus_pending_reply(&sim->pending, reply);
locked_pins = get_locked_pins(sim);
ofono_dbus_signal_array_property_changed(conn, path,
OFONO_SIM_MANAGER_INTERFACE,
"LockedPins", DBUS_TYPE_STRING,
&locked_pins);
g_strfreev(locked_pins);
}
static void sim_unlock_cb(const struct ofono_error *error, void *data)
{
struct ofono_sim *sim = data;
if (error->type != OFONO_ERROR_TYPE_NO_ERROR) {
DBusMessage *reply = __ofono_error_failed(sim->pending);
__ofono_dbus_pending_reply(&sim->pending, reply);
return;
}
sim_locked_cb(sim, FALSE);
}
static void sim_lock_cb(const struct ofono_error *error, void *data)
{
struct ofono_sim *sim = data;
if (error->type != OFONO_ERROR_TYPE_NO_ERROR) {
DBusMessage *reply = __ofono_error_failed(sim->pending);
__ofono_dbus_pending_reply(&sim->pending, reply);
return;
}
sim_locked_cb(sim, TRUE);
}
2009-09-21 14:37:56 +00:00
static DBusMessage *sim_lock_or_unlock(struct ofono_sim *sim, int lock,
DBusConnection *conn, DBusMessage *msg)
{
enum ofono_sim_password_type type;
const char *typestr;
const char *pin;
if (!sim->driver->lock)
return __ofono_error_not_implemented(msg);
if (sim->pending)
return __ofono_error_busy(msg);
if (dbus_message_get_args(msg, NULL, DBUS_TYPE_STRING, &typestr,
DBUS_TYPE_STRING, &pin,
DBUS_TYPE_INVALID) == FALSE)
2009-09-21 14:37:56 +00:00
return __ofono_error_invalid_args(msg);
type = sim_string_to_passwd(typestr);
2009-09-22 05:05:29 +00:00
/* SIM PIN2 cannot be locked / unlocked according to 27.007,
* however the PIN combination can be changed
*/
if (password_is_pin(type) == FALSE ||
type == OFONO_SIM_PASSWORD_SIM_PIN2)
2009-09-21 14:37:56 +00:00
return __ofono_error_invalid_format(msg);
if (!is_valid_pin(pin, PIN_TYPE_PIN))
2009-09-21 14:37:56 +00:00
return __ofono_error_invalid_format(msg);
sim->pending = dbus_message_ref(msg);
sim->driver->lock(sim, type, lock, pin,
lock ? sim_lock_cb : sim_unlock_cb, sim);
2009-09-21 14:37:56 +00:00
return NULL;
}
static DBusMessage *sim_lock_pin(DBusConnection *conn, DBusMessage *msg,
void *data)
{
struct ofono_sim *sim = data;
return sim_lock_or_unlock(sim, 1, conn, msg);
}
static DBusMessage *sim_unlock_pin(DBusConnection *conn, DBusMessage *msg,
void *data)
{
struct ofono_sim *sim = data;
return sim_lock_or_unlock(sim, 0, conn, msg);
}
static void sim_change_pin_cb(const struct ofono_error *error, void *data)
{
2009-09-21 14:37:56 +00:00
struct ofono_sim *sim = data;
if (error->type != OFONO_ERROR_TYPE_NO_ERROR) {
__ofono_dbus_pending_reply(&sim->pending,
__ofono_error_failed(sim->pending));
2009-09-21 14:37:56 +00:00
return;
}
2009-09-21 14:37:56 +00:00
__ofono_dbus_pending_reply(&sim->pending,
dbus_message_new_method_return(sim->pending));
}
static DBusMessage *sim_change_pin(DBusConnection *conn, DBusMessage *msg,
void *data)
{
struct ofono_sim *sim = data;
2009-09-21 13:03:56 +00:00
enum ofono_sim_password_type type;
const char *typestr;
const char *old;
const char *new;
2009-09-21 14:37:56 +00:00
if (!sim->driver->change_passwd)
return __ofono_error_not_implemented(msg);
if (sim->pending)
return __ofono_error_busy(msg);
if (dbus_message_get_args(msg, NULL, DBUS_TYPE_STRING, &typestr,
DBUS_TYPE_STRING, &old,
DBUS_TYPE_STRING, &new,
DBUS_TYPE_INVALID) == FALSE)
return __ofono_error_invalid_args(msg);
type = sim_string_to_passwd(typestr);
if (password_is_pin(type) == FALSE)
return __ofono_error_invalid_format(msg);
if (!is_valid_pin(old, PIN_TYPE_PIN))
return __ofono_error_invalid_format(msg);
if (!is_valid_pin(new, PIN_TYPE_PIN))
2009-09-21 14:37:56 +00:00
return __ofono_error_invalid_format(msg);
2009-09-21 14:37:56 +00:00
if (!strcmp(new, old))
return dbus_message_new_method_return(msg);
2009-09-21 14:37:56 +00:00
sim->pending = dbus_message_ref(msg);
sim->driver->change_passwd(sim, type, old, new,
sim_change_pin_cb, sim);
return NULL;
}
static void sim_enter_pin_cb(const struct ofono_error *error, void *data)
{
struct ofono_sim *sim = data;
DBusMessage *reply;
if (error->type != OFONO_ERROR_TYPE_NO_ERROR)
reply = __ofono_error_failed(sim->pending);
else
reply = dbus_message_new_method_return(sim->pending);
__ofono_dbus_pending_reply(&sim->pending, reply);
sim_pin_check(sim);
}
static DBusMessage *sim_enter_pin(DBusConnection *conn, DBusMessage *msg,
void *data)
{
struct ofono_sim *sim = data;
const char *typestr;
enum ofono_sim_password_type type;
const char *pin;
if (!sim->driver->send_passwd)
return __ofono_error_not_implemented(msg);
if (sim->pending)
return __ofono_error_busy(msg);
if (dbus_message_get_args(msg, NULL, DBUS_TYPE_STRING, &typestr,
DBUS_TYPE_STRING, &pin,
DBUS_TYPE_INVALID) == FALSE)
return __ofono_error_invalid_args(msg);
type = sim_string_to_passwd(typestr);
2009-09-21 13:03:56 +00:00
if (type == OFONO_SIM_PASSWORD_NONE || type != sim->pin_type)
return __ofono_error_invalid_format(msg);
if (!is_valid_pin(pin, PIN_TYPE_PIN))
return __ofono_error_invalid_format(msg);
sim->pending = dbus_message_ref(msg);
sim->driver->send_passwd(sim, pin, sim_enter_pin_cb, sim);
return NULL;
}
static DBusMessage *sim_reset_pin(DBusConnection *conn, DBusMessage *msg,
void *data)
{
struct ofono_sim *sim = data;
const char *typestr;
enum ofono_sim_password_type type;
const char *puk;
const char *pin;
if (!sim->driver->reset_passwd)
return __ofono_error_not_implemented(msg);
if (sim->pending)
return __ofono_error_busy(msg);
if (dbus_message_get_args(msg, NULL, DBUS_TYPE_STRING, &typestr,
DBUS_TYPE_STRING, &puk,
DBUS_TYPE_STRING, &pin,
DBUS_TYPE_INVALID) == FALSE)
return __ofono_error_invalid_args(msg);
type = sim_string_to_passwd(typestr);
2009-09-21 13:03:56 +00:00
if (type == OFONO_SIM_PASSWORD_NONE || type != sim->pin_type)
return __ofono_error_invalid_format(msg);
if (!is_valid_pin(puk, PIN_TYPE_PUK))
return __ofono_error_invalid_format(msg);
if (!is_valid_pin(pin, PIN_TYPE_PIN))
return __ofono_error_invalid_format(msg);
sim->pending = dbus_message_ref(msg);
sim->driver->reset_passwd(sim, puk, pin, sim_enter_pin_cb, sim);
return NULL;
}
2009-08-18 22:05:03 +00:00
static GDBusMethodTable sim_methods[] = {
{ "GetProperties", "", "a{sv}", sim_get_properties },
{ "SetProperty", "sv", "", sim_set_property,
G_DBUS_METHOD_FLAG_ASYNC },
{ "ChangePin", "sss", "", sim_change_pin,
G_DBUS_METHOD_FLAG_ASYNC },
{ "EnterPin", "ss", "", sim_enter_pin,
G_DBUS_METHOD_FLAG_ASYNC },
{ "ResetPin", "sss", "", sim_reset_pin,
G_DBUS_METHOD_FLAG_ASYNC },
2009-09-21 14:37:56 +00:00
{ "LockPin", "ss", "", sim_lock_pin,
G_DBUS_METHOD_FLAG_ASYNC },
{ "UnlockPin", "ss", "", sim_unlock_pin,
G_DBUS_METHOD_FLAG_ASYNC },
{ }
};
2009-08-18 22:05:03 +00:00
static GDBusSignalTable sim_signals[] = {
2009-07-17 23:42:54 +00:00
{ "PropertyChanged", "sv" },
{ }
};
static gboolean numbers_list_equal(GSList *a, GSList *b)
{
struct ofono_phone_number *num_a, *num_b;
while (a || b) {
if (!a || !b)
return FALSE;
num_a = a->data;
num_b = b->data;
if (!g_str_equal(num_a->number, num_b->number) ||
num_a->type != num_b->type)
return FALSE;
a = a->next;
b = b->next;
}
return TRUE;
}
static void sim_msisdn_read_cb(int ok, int length, int record,
2009-07-10 23:54:20 +00:00
const unsigned char *data,
int record_length, void *userdata)
{
2009-08-18 22:05:03 +00:00
struct ofono_sim *sim = userdata;
2009-07-14 17:49:12 +00:00
int total;
struct ofono_phone_number ph;
2009-07-10 23:54:20 +00:00
if (!ok)
goto check;
2009-07-17 23:42:54 +00:00
if (record_length < 14 || length < record_length)
2009-07-10 23:54:20 +00:00
return;
2009-07-14 17:49:12 +00:00
total = length / record_length;
sim->efmsisdn_length = record_length;
sim->efmsisdn_records = total;
if (sim_adn_parse(data, record_length, &ph, NULL) == TRUE) {
struct ofono_phone_number *own;
own = g_new(struct ofono_phone_number, 1);
memcpy(own, &ph, sizeof(struct ofono_phone_number));
sim->new_numbers = g_slist_prepend(sim->new_numbers, own);
}
if (record != total)
return;
2009-07-10 23:54:20 +00:00
check:
/* All records retrieved */
if (sim->new_numbers)
sim->new_numbers = g_slist_reverse(sim->new_numbers);
if (!numbers_list_equal(sim->new_numbers, sim->own_numbers)) {
2009-08-18 22:05:03 +00:00
const char *path = __ofono_atom_get_path(sim->atom);
2009-07-10 23:54:20 +00:00
char **own_numbers;
DBusConnection *conn = ofono_dbus_get_connection();
g_slist_foreach(sim->own_numbers, (GFunc) g_free, NULL);
g_slist_free(sim->own_numbers);
sim->own_numbers = sim->new_numbers;
2009-07-10 23:54:20 +00:00
own_numbers = get_own_numbers(sim->own_numbers);
2009-08-18 22:05:03 +00:00
ofono_dbus_signal_array_property_changed(conn, path,
OFONO_SIM_MANAGER_INTERFACE,
"SubscriberNumbers",
DBUS_TYPE_STRING, &own_numbers);
g_strfreev(own_numbers);
} else {
g_slist_foreach(sim->new_numbers, (GFunc) g_free, NULL);
g_slist_free(sim->new_numbers);
2009-07-10 23:54:20 +00:00
}
sim->new_numbers = NULL;
}
static void sim_ad_read_cb(int ok, int length, int record,
const unsigned char *data,
int record_length, void *userdata)
{
struct ofono_sim *sim = userdata;
DBusConnection *conn = ofono_dbus_get_connection();
const char *path = __ofono_atom_get_path(sim->atom);
int new_mnc_length;
char mcc[OFONO_MAX_MCC_LENGTH + 1];
char mnc[OFONO_MAX_MNC_LENGTH + 1];
const char *str;
if (!ok)
return;
if (length < 4)
return;
new_mnc_length = data[3] & 0xf;
2009-08-31 19:13:12 +00:00
if (sim->mnc_length == new_mnc_length)
return;
2009-08-31 19:13:12 +00:00
sim->mnc_length = new_mnc_length;
strncpy(mcc, sim->imsi, OFONO_MAX_MCC_LENGTH);
mcc[OFONO_MAX_MCC_LENGTH] = '\0';
strncpy(mnc, sim->imsi + OFONO_MAX_MCC_LENGTH, sim->mnc_length);
mnc[sim->mnc_length] = '\0';
str = mcc;
ofono_dbus_signal_property_changed(conn, path,
OFONO_SIM_MANAGER_INTERFACE,
"MobileCountryCode",
DBUS_TYPE_STRING, &str);
str = mnc;
2009-08-31 19:13:12 +00:00
ofono_dbus_signal_property_changed(conn, path,
OFONO_SIM_MANAGER_INTERFACE,
"MobileNetworkCode",
DBUS_TYPE_STRING, &str);
}
static gint service_number_compare(gconstpointer a, gconstpointer b)
{
const struct service_number *sdn = a;
const char *id = b;
return strcmp(sdn->id, id);
}
static void sim_sdn_read_cb(int ok, int length, int record,
const unsigned char *data,
int record_length, void *userdata)
{
struct ofono_sim *sim = userdata;
2009-08-31 20:06:06 +00:00
DBusConnection *conn = ofono_dbus_get_connection();
const char *path = __ofono_atom_get_path(sim->atom);
int total;
struct ofono_phone_number ph;
char *alpha;
2009-08-31 20:06:06 +00:00
struct service_number *sdn;
if (!ok)
goto check;
if (record_length < 14 || length < record_length)
return;
total = length / record_length;
2009-08-31 20:06:06 +00:00
if (sim_adn_parse(data, record_length, &ph, &alpha) == FALSE)
goto out;
2009-08-31 20:06:06 +00:00
/* Use phone number if Id is unavailable */
if (alpha && alpha[0] == '\0') {
g_free(alpha);
alpha = NULL;
}
2009-08-31 20:06:06 +00:00
if (alpha == NULL)
alpha = g_strdup(phone_number_to_string(&ph));
2009-08-31 20:06:06 +00:00
if (sim->service_numbers &&
g_slist_find_custom(sim->service_numbers,
alpha, service_number_compare)) {
ofono_error("Duplicate EFsdn entries for `%s'\n",
alpha);
g_free(alpha);
2009-08-31 20:06:06 +00:00
goto out;
}
2009-08-31 20:06:06 +00:00
sdn = g_new(struct service_number, 1);
sdn->id = alpha;
memcpy(&sdn->ph, &ph, sizeof(struct ofono_phone_number));
sim->service_numbers = g_slist_prepend(sim->service_numbers, sdn);
out:
if (record != total)
return;
check:
/* All records retrieved */
if (sim->service_numbers) {
2009-08-31 20:06:06 +00:00
char **service_numbers;
sim->service_numbers = g_slist_reverse(sim->service_numbers);
2009-08-31 20:08:40 +00:00
sim->sdn_ready = TRUE;
service_numbers = get_service_numbers(sim->service_numbers);
ofono_dbus_signal_dict_property_changed(conn, path,
OFONO_SIM_MANAGER_INTERFACE,
"ServiceDiallingNumbers",
DBUS_TYPE_STRING,
&service_numbers);
g_strfreev(service_numbers);
}
}
static void sim_own_numbers_update(struct ofono_sim *sim)
{
ofono_sim_read(sim, SIM_EFMSISDN_FILEID, OFONO_SIM_FILE_STRUCTURE_FIXED,
sim_msisdn_read_cb, sim);
}
static void sim_ready(void *user, enum ofono_sim_state new_state)
2009-07-10 23:28:53 +00:00
{
2009-08-18 22:05:03 +00:00
struct ofono_sim *sim = user;
if (new_state != OFONO_SIM_STATE_READY)
return;
2009-08-18 22:05:03 +00:00
sim_own_numbers_update(sim);
ofono_sim_read(sim, SIM_EFAD_FILEID,
OFONO_SIM_FILE_STRUCTURE_TRANSPARENT,
sim_ad_read_cb, sim);
ofono_sim_read(sim, SIM_EFSDN_FILEID, OFONO_SIM_FILE_STRUCTURE_FIXED,
sim_sdn_read_cb, sim);
2009-07-10 23:28:53 +00:00
}
2010-01-07 11:38:47 +00:00
static void sim_cphs_information_read_cb(int ok, int length, int record,
const unsigned char *data,
int record_length, void *userdata)
{
struct ofono_sim *sim = userdata;
sim->cphs_phase = OFONO_SIM_CPHS_PHASE_NONE;
2010-01-07 11:38:47 +00:00
if (!ok || length < 3)
goto ready;
if (data[0] == 0x01)
sim->cphs_phase = OFONO_SIM_CPHS_PHASE_1G;
2010-01-07 11:38:47 +00:00
else if (data[0] >= 0x02)
sim->cphs_phase = OFONO_SIM_CPHS_PHASE_2G;
2010-01-07 11:38:47 +00:00
memcpy(sim->cphs_service_table, data + 1, 2);
2010-01-07 11:38:47 +00:00
ready:
sim_set_ready(sim);
2010-01-07 11:38:47 +00:00
}
2009-07-10 23:28:53 +00:00
static void sim_imsi_cb(const struct ofono_error *error, const char *imsi,
void *data)
{
2009-08-18 22:05:03 +00:00
struct ofono_sim *sim = data;
2010-04-09 06:49:49 +00:00
DBusConnection *conn = ofono_dbus_get_connection();
const char *path = __ofono_atom_get_path(sim->atom);
2009-07-10 23:28:53 +00:00
if (error->type != OFONO_ERROR_TYPE_NO_ERROR) {
ofono_error("Unable to read IMSI, emergency calls only");
return;
}
sim->imsi = g_strdup(imsi);
2010-04-09 06:49:49 +00:00
ofono_dbus_signal_property_changed(conn, path,
OFONO_SIM_MANAGER_INTERFACE,
"SubscriberIdentity",
DBUS_TYPE_STRING, &sim->imsi);
2010-01-07 11:38:47 +00:00
/* Read CPHS-support bits, this is still part of the SIM
* initialisation but no order is specified for it. */
ofono_sim_read(sim, SIM_EF_CPHS_INFORMATION_FILEID,
OFONO_SIM_FILE_STRUCTURE_TRANSPARENT,
sim_cphs_information_read_cb, sim);
2009-07-10 23:28:53 +00:00
}
2009-08-18 22:05:03 +00:00
static void sim_retrieve_imsi(struct ofono_sim *sim)
2009-07-10 23:28:53 +00:00
{
2009-08-18 22:05:03 +00:00
if (!sim->driver->read_imsi) {
2009-07-10 23:28:53 +00:00
ofono_error("IMSI retrieval not implemented,"
" only emergency calls will be available");
return;
2009-07-10 23:28:53 +00:00
}
2009-08-18 22:05:03 +00:00
sim->driver->read_imsi(sim, sim_imsi_cb, sim);
2009-07-10 23:28:53 +00:00
}
static void sim_pin_query_cb(const struct ofono_error *error,
enum ofono_sim_password_type pin_type,
2009-09-21 13:03:56 +00:00
void *data)
{
struct ofono_sim *sim = data;
DBusConnection *conn = ofono_dbus_get_connection();
const char *path = __ofono_atom_get_path(sim->atom);
const char *pin_name;
if (error->type != OFONO_ERROR_TYPE_NO_ERROR) {
ofono_error("Querying PIN authentication state failed");
goto checkdone;
}
if (sim->pin_type != pin_type) {
sim->pin_type = pin_type;
pin_name = sim_passwd_name(pin_type);
sim->locked_pins[pin_type] = TRUE;
ofono_dbus_signal_property_changed(conn, path,
OFONO_SIM_MANAGER_INTERFACE,
"PinRequired", DBUS_TYPE_STRING,
&pin_name);
}
checkdone:
2009-09-21 13:03:56 +00:00
if (pin_type == OFONO_SIM_PASSWORD_NONE)
2009-09-21 12:54:21 +00:00
sim_retrieve_imsi(sim);
}
static void sim_pin_check(struct ofono_sim *sim)
{
if (!sim->driver->query_passwd_state) {
2009-09-21 12:54:21 +00:00
sim_retrieve_imsi(sim);
return;
}
sim->driver->query_passwd_state(sim, sim_pin_query_cb, sim);
}
static void sim_efli_read_cb(int ok, int length, int record,
2009-09-24 15:22:57 +00:00
const unsigned char *data,
int record_length, void *userdata)
{
struct ofono_sim *sim = userdata;
if (!ok)
return;
sim->efli = g_memdup(data, length);
sim->efli_length = length;
}
/* Detect whether the file is in EFli format, as opposed to 51.011 EFlp */
static gboolean sim_efli_format(const unsigned char *ef, int length)
{
2009-09-17 17:18:48 +00:00
int i;
if (length & 1)
return FALSE;
2009-09-17 17:18:48 +00:00
for (i = 0; i < length; i += 2) {
if (ef[i] == 0xff && ef[i+1] == 0xff)
continue;
/* ISO 639 country codes are each two lower-case SMS 7-bit
* characters while CB DCS language codes are in ranges
* (0 - 15) or (32 - 47), so the ranges don't overlap
*/
2009-09-17 17:18:48 +00:00
if (g_ascii_isalpha(ef[i]) == 0)
return FALSE;
2009-09-17 17:18:48 +00:00
if (g_ascii_isalpha(ef[i+1]) == 0)
return FALSE;
}
return TRUE;
}
static GSList *parse_language_list(const unsigned char *ef, int length)
{
int i;
GSList *ret = NULL;
for (i = 0; i < length; i += 2) {
if (ef[i] > 0x7f || ef[i+1] > 0x7f)
continue;
/* ISO 639 codes contain only characters that are coded
* identically in SMS 7 bit charset, ASCII or UTF8 so
* no conversion.
*/
ret = g_slist_prepend(ret, g_ascii_strdown((char *)ef + i, 2));
}
if (ret)
ret = g_slist_reverse(ret);
return ret;
}
static GSList *parse_eflp(const unsigned char *eflp, int length)
{
int i;
char code[3];
GSList *ret = NULL;
for (i = 0; i < length; i++) {
if (iso639_2_from_language(eflp[i], code) == FALSE)
continue;
ret = g_slist_prepend(ret, g_strdup(code));
}
if (ret)
ret = g_slist_reverse(ret);
return ret;
}
static char **concat_lang_prefs(GSList *a, GSList *b)
{
GSList *l, *k;
char **ret;
int i = 0;
int total = g_slist_length(a) + g_slist_length(b);
if (total == 0)
return NULL;
ret = g_new0(char *, total + 1);
for (l = a; l; l = l->next)
ret[i++] = g_strdup(l->data);
for (l = b; l; l = l->next) {
gboolean duplicate = FALSE;
for (k = a; k; k = k->next)
if (!strcmp(k->data, l->data))
duplicate = TRUE;
if (duplicate)
continue;
ret[i++] = g_strdup(l->data);
}
return ret;
}
static void sim_efpl_read_cb(int ok, int length, int record,
const unsigned char *data,
int record_length, void *userdata)
{
struct ofono_sim *sim = userdata;
const char *path = __ofono_atom_get_path(sim->atom);
DBusConnection *conn = ofono_dbus_get_connection();
gboolean efli_format = TRUE;
GSList *efli = NULL;
GSList *efpl = NULL;
if (!ok || length < 2)
goto skip_efpl;
efpl = parse_language_list(data, length);
skip_efpl:
if (sim->efli && sim->efli_length > 0) {
efli_format = sim_efli_format(sim->efli, sim->efli_length);
if (efli_format)
efli = parse_language_list(sim->efli, sim->efli_length);
else
efli = parse_eflp(sim->efli, sim->efli_length);
}
/* If efli_format is TRUE, make a list of languages in both files in
* order of preference following TS 31.102.
* Quoting 31.102 Section 5.1.1.2:
* The preferred language selection shall always use the EFLI in
* preference to the EFPL at the MF unless:
* - if the EFLI has the value 'FFFF' in its highest priority position,
* then the preferred language selection shall be the language
* preference in the EFPL at the MF level
* Otherwise in order of preference according to TS 51.011
*/
if (efli_format) {
if (sim->efli_length >= 2 && sim->efli[0] == 0xff &&
sim->efli[1] == 0xff)
sim->language_prefs = concat_lang_prefs(NULL, efpl);
else
sim->language_prefs = concat_lang_prefs(efli, efpl);
} else {
sim->language_prefs = concat_lang_prefs(efpl, efli);
}
2009-09-26 00:40:45 +00:00
if (sim->efli) {
g_free(sim->efli);
sim->efli = NULL;
sim->efli_length = 0;
}
if (efli) {
g_slist_foreach(efli, (GFunc)g_free, NULL);
g_slist_free(efli);
}
if (efpl) {
g_slist_foreach(efpl, (GFunc)g_free, NULL);
g_slist_free(efpl);
}
if (sim->language_prefs == NULL)
return;
ofono_dbus_signal_array_property_changed(conn, path,
OFONO_SIM_MANAGER_INTERFACE,
"PreferredLanguages",
DBUS_TYPE_STRING,
&sim->language_prefs);
}
2009-09-17 17:04:45 +00:00
static void sim_retrieve_efli_and_efpl(struct ofono_sim *sim)
{
/* According to 31.102 the EFli is read first and EFpl is then
* only read if none of the EFli languages are supported by user
* interface. 51.011 mandates the exact opposite, making EFpl/EFelp
* preferred over EFlp (same EFid as EFli, different format).
* However we don't depend on the user interface and so
* need to read both files now.
*/
ofono_sim_read(sim, SIM_EFLI_FILEID,
OFONO_SIM_FILE_STRUCTURE_TRANSPARENT,
sim_efli_read_cb, sim);
ofono_sim_read(sim, SIM_EFPL_FILEID,
OFONO_SIM_FILE_STRUCTURE_TRANSPARENT,
sim_efpl_read_cb, sim);
}
2009-12-19 01:49:21 +00:00
static void sim_efphase_read_cb(const struct ofono_error *error,
const unsigned char *data, int len, void *user)
{
struct ofono_sim *sim = user;
if (!error || error->type != OFONO_ERROR_TYPE_NO_ERROR || len != 1)
sim->phase = OFONO_SIM_PHASE_3G;
2009-12-19 01:49:21 +00:00
else
sim->phase = data[0];
2009-12-19 01:49:21 +00:00
/* Proceed with SIM initialization */
sim_retrieve_efli_and_efpl(sim);
sim_pin_check(sim);
}
static void sim_determine_phase(struct ofono_sim *sim)
{
if (!sim->driver->read_file_transparent) {
sim_efphase_read_cb(NULL, NULL, 0, sim);
return;
}
sim->driver->read_file_transparent(sim, SIM_EFPHASE_FILEID, 0, 1,
sim_efphase_read_cb, sim);
}
2009-08-18 22:05:03 +00:00
static void sim_op_error(struct ofono_sim *sim)
{
struct sim_file_op *op = g_queue_pop_head(sim->simop_q);
if (g_queue_get_length(sim->simop_q) > 0)
2009-08-18 22:05:03 +00:00
sim->simop_source = g_timeout_add(0, sim_op_next, sim);
2009-08-03 17:41:44 +00:00
if (op->is_read == TRUE)
((ofono_sim_file_read_cb_t) op->cb)
(0, 0, 0, 0, 0, op->userdata);
else
((ofono_sim_file_write_cb_t) op->cb)
2009-08-18 22:05:03 +00:00
(0, op->userdata);
sim_file_op_free(op);
}
static gboolean cache_record(const char *path, int current, int record_len,
const unsigned char *data)
{
int r = 0;
int fd;
2009-08-04 15:15:00 +00:00
fd = TFR(open(path, O_WRONLY));
if (fd == -1)
return FALSE;
if (lseek(fd, (current - 1) * record_len +
2009-09-08 19:15:40 +00:00
SIM_CACHE_HEADER_SIZE, SEEK_SET) != (off_t) -1)
2009-08-04 15:15:00 +00:00
r = TFR(write(fd, data, record_len));
2009-09-08 19:15:40 +00:00
2009-08-04 15:15:00 +00:00
TFR(close(fd));
if (r < record_len) {
unlink(path);
return FALSE;
}
return TRUE;
}
static void sim_op_retrieve_cb(const struct ofono_error *error,
const unsigned char *data, int len, void *user)
{
2009-08-18 22:05:03 +00:00
struct ofono_sim *sim = user;
struct sim_file_op *op = g_queue_peek_head(sim->simop_q);
int total = op->length / op->record_length;
ofono_sim_file_read_cb_t cb = op->cb;
char *imsi = sim->imsi;
if (error->type != OFONO_ERROR_TYPE_NO_ERROR) {
2009-08-18 22:05:03 +00:00
sim_op_error(sim);
return;
}
cb(1, op->length, op->current, data, op->record_length, op->userdata);
if (op->cache && imsi) {
2009-12-19 01:49:21 +00:00
char *path = g_strdup_printf(SIM_CACHE_PATH,
imsi, sim->phase, op->id);
op->cache = cache_record(path, op->current, op->record_length,
data);
g_free(path);
}
if (op->current == total) {
op = g_queue_pop_head(sim->simop_q);
sim_file_op_free(op);
if (g_queue_get_length(sim->simop_q) > 0)
2009-08-18 22:05:03 +00:00
sim->simop_source = g_timeout_add(0, sim_op_next, sim);
} else {
op->current += 1;
2009-08-18 22:05:03 +00:00
sim->simop_source = g_timeout_add(0, sim_op_retrieve_next, sim);
}
}
static gboolean sim_op_retrieve_next(gpointer user)
{
2009-08-18 22:05:03 +00:00
struct ofono_sim *sim = user;
struct sim_file_op *op = g_queue_peek_head(sim->simop_q);
sim->simop_source = 0;
switch (op->structure) {
case OFONO_SIM_FILE_STRUCTURE_TRANSPARENT:
2009-08-18 22:05:03 +00:00
if (!sim->driver->read_file_transparent) {
sim_op_error(sim);
return FALSE;
}
2009-08-18 22:05:03 +00:00
sim->driver->read_file_transparent(sim, op->id, 0, op->length,
sim_op_retrieve_cb, sim);
break;
case OFONO_SIM_FILE_STRUCTURE_FIXED:
2009-08-18 22:05:03 +00:00
if (!sim->driver->read_file_linear) {
sim_op_error(sim);
return FALSE;
}
2009-08-18 22:05:03 +00:00
sim->driver->read_file_linear(sim, op->id, op->current,
op->record_length,
2009-08-18 22:05:03 +00:00
sim_op_retrieve_cb, sim);
break;
case OFONO_SIM_FILE_STRUCTURE_CYCLIC:
2009-08-18 22:05:03 +00:00
if (!sim->driver->read_file_cyclic) {
sim_op_error(sim);
return FALSE;
}
2009-08-18 22:05:03 +00:00
sim->driver->read_file_cyclic(sim, op->id, op->current,
op->record_length,
2009-08-18 22:05:03 +00:00
sim_op_retrieve_cb, sim);
break;
default:
ofono_error("Unrecognized file structure, this can't happen");
}
return FALSE;
}
static void sim_op_info_cb(const struct ofono_error *error, int length,
enum ofono_sim_file_structure structure,
int record_length,
const unsigned char access[3], void *data)
{
2009-08-18 22:05:03 +00:00
struct ofono_sim *sim = data;
struct sim_file_op *op = g_queue_peek_head(sim->simop_q);
char *imsi = sim->imsi;
enum sim_file_access update;
enum sim_file_access invalidate;
enum sim_file_access rehabilitate;
if (error->type != OFONO_ERROR_TYPE_NO_ERROR) {
2009-08-18 22:05:03 +00:00
sim_op_error(sim);
return;
}
if (structure != op->structure) {
ofono_error("Requested file structure differs from SIM: %x",
op->id);
sim_op_error(sim);
return;
}
/* TS 11.11, Section 9.3 */
update = file_access_condition_decode(access[0] & 0xf);
rehabilitate = file_access_condition_decode((access[2] >> 4) & 0xf);
invalidate = file_access_condition_decode(access[2] & 0xf);
op->structure = structure;
op->length = length;
/* Never cache card holder writable files */
op->cache = (update == SIM_FILE_ACCESS_ADM ||
update == SIM_FILE_ACCESS_NEVER) &&
(invalidate == SIM_FILE_ACCESS_ADM ||
invalidate == SIM_FILE_ACCESS_NEVER) &&
(rehabilitate == SIM_FILE_ACCESS_ADM ||
rehabilitate == SIM_FILE_ACCESS_NEVER);
if (structure == OFONO_SIM_FILE_STRUCTURE_TRANSPARENT)
op->record_length = length;
else
op->record_length = record_length;
op->current = 1;
2009-08-18 22:05:03 +00:00
sim->simop_source = g_timeout_add(0, sim_op_retrieve_next, sim);
if (op->cache && imsi) {
unsigned char fileinfo[6];
fileinfo[0] = error->type;
fileinfo[1] = length >> 8;
fileinfo[2] = length & 0xff;
fileinfo[3] = structure;
fileinfo[4] = record_length >> 8;
fileinfo[5] = record_length & 0xff;
2009-12-19 01:49:21 +00:00
if (write_file(fileinfo, 6, SIM_CACHE_MODE, SIM_CACHE_PATH,
imsi, sim->phase, op->id) != 6)
op->cache = FALSE;
}
}
static void sim_op_write_cb(const struct ofono_error *error, void *data)
{
2009-08-18 22:05:03 +00:00
struct ofono_sim *sim = data;
struct sim_file_op *op = g_queue_pop_head(sim->simop_q);
ofono_sim_file_write_cb_t cb = op->cb;
if (g_queue_get_length(sim->simop_q) > 0)
2009-08-18 22:05:03 +00:00
sim->simop_source = g_timeout_add(0, sim_op_next, sim);
if (error->type == OFONO_ERROR_TYPE_NO_ERROR)
2009-08-18 22:05:03 +00:00
cb(1, op->userdata);
else
2009-08-18 22:05:03 +00:00
cb(0, op->userdata);
sim_file_op_free(op);
}
2009-08-18 22:05:03 +00:00
static gboolean sim_op_check_cached(struct ofono_sim *sim)
2009-08-08 00:50:09 +00:00
{
char *imsi = sim->imsi;
struct sim_file_op *op = g_queue_peek_head(sim->simop_q);
ofono_sim_file_read_cb_t cb = op->cb;
char *path;
int fd;
unsigned char fileinfo[SIM_CACHE_HEADER_SIZE];
ssize_t len;
int error_type;
unsigned int file_length;
enum ofono_sim_file_structure structure;
unsigned int record_length;
unsigned int record;
guint8 *buffer = NULL;
gboolean ret = FALSE;
if (!imsi)
return FALSE;
2009-12-19 01:49:21 +00:00
path = g_strdup_printf(SIM_CACHE_PATH, imsi, sim->phase, op->id);
2009-08-08 00:50:09 +00:00
if (path == NULL)
return FALSE;
2009-08-08 00:50:09 +00:00
fd = TFR(open(path, O_RDONLY));
g_free(path);
if (fd == -1) {
if (errno != ENOENT)
DBG("Error %i opening cache file for "
2009-08-08 00:50:09 +00:00
"fileid %04x, IMSI %s",
errno, op->id, imsi);
return FALSE;
}
len = TFR(read(fd, fileinfo, SIM_CACHE_HEADER_SIZE));
if (len != SIM_CACHE_HEADER_SIZE)
goto cleanup;
error_type = fileinfo[0];
file_length = (fileinfo[1] << 8) | fileinfo[2];
structure = fileinfo[3];
record_length = (fileinfo[4] << 8) | fileinfo[5];
if (structure == OFONO_SIM_FILE_STRUCTURE_TRANSPARENT)
record_length = file_length;
if (record_length == 0 || file_length < record_length)
goto cleanup;
if (error_type != OFONO_ERROR_TYPE_NO_ERROR ||
structure != op->structure) {
2009-08-08 00:50:09 +00:00
ret = TRUE;
cb(0, 0, 0, 0, 0, op->userdata);
2009-08-08 00:50:09 +00:00
goto cleanup;
}
buffer = g_try_malloc(file_length);
if (buffer == NULL)
goto cleanup;
2009-08-08 00:50:09 +00:00
2009-08-09 03:38:43 +00:00
len = TFR(read(fd, buffer, file_length));
if (len < (ssize_t)file_length)
2009-08-08 00:50:09 +00:00
goto cleanup;
for (record = 0; record < file_length / record_length; record++) {
cb(1, file_length, record + 1, &buffer[record * record_length],
record_length, op->userdata);
2009-08-08 00:50:09 +00:00
}
ret = TRUE;
cleanup:
if (buffer)
g_free(buffer);
TFR(close(fd));
return ret;
}
static gboolean sim_op_next(gpointer user_data)
{
2009-08-18 22:05:03 +00:00
struct ofono_sim *sim = user_data;
struct sim_file_op *op;
sim->simop_source = 0;
if (!sim->simop_q)
return FALSE;
op = g_queue_peek_head(sim->simop_q);
2009-08-03 17:41:44 +00:00
if (op->is_read == TRUE) {
2009-08-18 22:05:03 +00:00
if (sim_op_check_cached(sim)) {
2009-08-08 00:50:09 +00:00
op = g_queue_pop_head(sim->simop_q);
sim_file_op_free(op);
if (g_queue_get_length(sim->simop_q) > 0)
sim->simop_source =
2009-08-18 22:05:03 +00:00
g_timeout_add(0, sim_op_next, sim);
2009-08-08 00:50:09 +00:00
return FALSE;
}
2009-08-18 22:05:03 +00:00
sim->driver->read_file_info(sim, op->id, sim_op_info_cb, sim);
} else {
switch (op->structure) {
case OFONO_SIM_FILE_STRUCTURE_TRANSPARENT:
2009-08-18 22:05:03 +00:00
sim->driver->write_file_transparent(sim, op->id, 0,
op->length, op->buffer,
2009-08-18 22:05:03 +00:00
sim_op_write_cb, sim);
break;
case OFONO_SIM_FILE_STRUCTURE_FIXED:
2009-08-18 22:05:03 +00:00
sim->driver->write_file_linear(sim, op->id, op->current,
op->length, op->buffer,
2009-08-18 22:05:03 +00:00
sim_op_write_cb, sim);
break;
case OFONO_SIM_FILE_STRUCTURE_CYCLIC:
2009-08-18 22:05:03 +00:00
sim->driver->write_file_cyclic(sim, op->id,
op->length, op->buffer,
2009-08-18 22:05:03 +00:00
sim_op_write_cb, sim);
break;
default:
ofono_error("Unrecognized file structure, "
"this can't happen");
}
g_free(op->buffer);
}
return FALSE;
}
2009-08-18 22:05:03 +00:00
int ofono_sim_read(struct ofono_sim *sim, int id,
enum ofono_sim_file_structure expected_type,
ofono_sim_file_read_cb_t cb, void *data)
{
struct sim_file_op *op;
if (!cb)
return -1;
2009-08-18 22:05:03 +00:00
if (sim == NULL)
return -1;
2009-08-18 22:05:03 +00:00
if (!sim->driver)
return -1;
2009-08-18 22:05:03 +00:00
if (!sim->driver->read_file_info)
return -1;
2009-07-10 23:29:11 +00:00
/* TODO: We must first check the EFust table to see whether
* this file can be read at all
*/
if (!sim->simop_q)
sim->simop_q = g_queue_new();
op = g_new0(struct sim_file_op, 1);
op->id = id;
op->structure = expected_type;
op->cb = cb;
op->userdata = data;
2009-08-03 17:41:44 +00:00
op->is_read = TRUE;
g_queue_push_tail(sim->simop_q, op);
if (g_queue_get_length(sim->simop_q) == 1)
2009-08-18 22:05:03 +00:00
sim->simop_source = g_timeout_add(0, sim_op_next, sim);
return 0;
}
2009-08-18 22:05:03 +00:00
int ofono_sim_write(struct ofono_sim *sim, int id,
ofono_sim_file_write_cb_t cb,
enum ofono_sim_file_structure structure, int record,
const unsigned char *data, int length, void *userdata)
{
struct sim_file_op *op;
gconstpointer fn = NULL;
if (!cb)
return -1;
if (sim == NULL)
return -1;
2009-08-18 22:05:03 +00:00
if (!sim->driver)
return -1;
switch (structure) {
case OFONO_SIM_FILE_STRUCTURE_TRANSPARENT:
2009-08-18 22:05:03 +00:00
fn = sim->driver->write_file_transparent;
break;
case OFONO_SIM_FILE_STRUCTURE_FIXED:
2009-08-18 22:05:03 +00:00
fn = sim->driver->write_file_linear;
break;
case OFONO_SIM_FILE_STRUCTURE_CYCLIC:
2009-08-18 22:05:03 +00:00
fn = sim->driver->write_file_cyclic;
break;
default:
ofono_error("Unrecognized file structure, this can't happen");
}
if (fn == NULL)
return -1;
if (!sim->simop_q)
sim->simop_q = g_queue_new();
op = g_new0(struct sim_file_op, 1);
op->id = id;
op->cb = cb;
op->userdata = userdata;
2009-08-03 17:41:44 +00:00
op->is_read = FALSE;
op->buffer = g_memdup(data, length);
op->structure = structure;
op->length = length;
op->current = record;
g_queue_push_tail(sim->simop_q, op);
if (g_queue_get_length(sim->simop_q) == 1)
2009-08-18 22:05:03 +00:00
sim->simop_source = g_timeout_add(0, sim_op_next, sim);
return 0;
}
2009-08-18 22:05:03 +00:00
const char *ofono_sim_get_imsi(struct ofono_sim *sim)
{
2009-08-18 22:05:03 +00:00
if (sim == NULL)
return NULL;
2009-08-18 22:05:03 +00:00
return sim->imsi;
}
2009-12-19 01:49:21 +00:00
enum ofono_sim_phase ofono_sim_get_phase(struct ofono_sim *sim)
{
if (sim == NULL)
return 0;
return sim->phase;
}
2010-01-07 11:38:47 +00:00
enum ofono_sim_cphs_phase ofono_sim_get_cphs_phase(struct ofono_sim *sim)
{
if (sim == NULL)
return OFONO_SIM_CPHS_PHASE_NONE;
2010-01-07 11:38:47 +00:00
return sim->cphs_phase;
}
const unsigned char *ofono_sim_get_cphs_service_table(struct ofono_sim *sim)
2010-01-07 11:38:47 +00:00
{
if (sim == NULL)
return NULL;
2010-01-07 11:38:47 +00:00
return sim->cphs_service_table;
2010-01-07 11:38:47 +00:00
}
2010-04-09 06:49:49 +00:00
static void sim_inserted_update(struct ofono_sim *sim)
{
dbus_bool_t present = sim->state != OFONO_SIM_STATE_NOT_PRESENT;
DBusConnection *conn = ofono_dbus_get_connection();
const char *path = __ofono_atom_get_path(sim->atom);
ofono_dbus_signal_property_changed(conn, path,
OFONO_SIM_MANAGER_INTERFACE, "Present",
DBUS_TYPE_BOOLEAN, &present);
}
static void sim_free_state(struct ofono_sim *sim)
{
if (sim->simop_source) {
g_source_remove(sim->simop_source);
sim->simop_source = 0;
}
if (sim->simop_q) {
/* Note: users of ofono_sim_read/write must not assume that
* the callback happens for operations still in progress. */
g_queue_foreach(sim->simop_q, (GFunc)sim_file_op_free, NULL);
g_queue_free(sim->simop_q);
sim->simop_q = NULL;
}
if (sim->imsi) {
g_free(sim->imsi);
sim->imsi = NULL;
}
if (sim->own_numbers) {
g_slist_foreach(sim->own_numbers, (GFunc)g_free, NULL);
g_slist_free(sim->own_numbers);
sim->own_numbers = NULL;
}
if (sim->service_numbers) {
g_slist_foreach(sim->service_numbers,
(GFunc)service_number_free, NULL);
g_slist_free(sim->service_numbers);
sim->service_numbers = NULL;
}
if (sim->efli) {
g_free(sim->efli);
sim->efli = NULL;
sim->efli_length = 0;
}
if (sim->language_prefs) {
g_strfreev(sim->language_prefs);
sim->language_prefs = NULL;
}
}
void ofono_sim_inserted_notify(struct ofono_sim *sim, ofono_bool_t inserted)
{
ofono_sim_state_event_notify_cb_t notify;
GSList *l;
if (inserted && sim->state == OFONO_SIM_STATE_NOT_PRESENT)
sim->state = OFONO_SIM_STATE_INSERTED;
else if (!inserted && sim->state != OFONO_SIM_STATE_NOT_PRESENT)
sim->state = OFONO_SIM_STATE_NOT_PRESENT;
else
return;
if (!__ofono_atom_get_registered(sim->atom))
return;
2010-04-09 06:49:49 +00:00
sim_inserted_update(sim);
for (l = sim->state_watches->items; l; l = l->next) {
struct ofono_watchlist_item *item = l->data;
notify = item->notify;
notify(item->notify_data, sim->state);
}
2010-04-09 06:49:49 +00:00
if (!inserted) {
sim_free_state(sim);
return;
2010-04-09 06:49:49 +00:00
}
/* Perform SIM initialization according to 3GPP 31.102 Section 5.1.1.2
* The assumption here is that if sim manager is being initialized,
* then sim commands are implemented, and the sim manager is then
* responsible for checking the PIN, reading the IMSI and signaling
* SIM ready condition.
*
* The procedure according to 31.102 is roughly:
* Read EFecc
* Read EFli and EFpl
* SIM Pin check
* Request SIM phase (only in 51.011)
* Read EFust
* Read EFest
* Read IMSI
*
* At this point we signal the SIM ready condition and allow
* arbitrary files to be written or read, assuming their presence
* in the EFust
*/
sim_determine_phase(sim);
}
unsigned int ofono_sim_add_state_watch(struct ofono_sim *sim,
ofono_sim_state_event_notify_cb_t notify,
2009-08-18 22:05:03 +00:00
void *data, ofono_destroy_func destroy)
2009-07-09 22:16:00 +00:00
{
struct ofono_watchlist_item *item;
2009-07-09 22:16:00 +00:00
2009-08-18 22:05:03 +00:00
DBG("%p", sim);
2009-07-09 22:16:00 +00:00
2009-08-18 22:05:03 +00:00
if (sim == NULL)
return 0;
if (notify == NULL)
return 0;
2009-07-09 21:54:10 +00:00
item = g_new0(struct ofono_watchlist_item, 1);
2009-08-18 22:05:03 +00:00
item->notify = notify;
item->destroy = destroy;
item->notify_data = data;
2009-08-18 22:05:03 +00:00
return __ofono_watchlist_add_item(sim->state_watches, item);
2009-07-09 21:54:10 +00:00
}
void ofono_sim_remove_state_watch(struct ofono_sim *sim, unsigned int id)
2009-07-09 21:54:10 +00:00
{
__ofono_watchlist_remove_item(sim->state_watches, id);
2009-07-09 21:54:10 +00:00
}
enum ofono_sim_state ofono_sim_get_state(struct ofono_sim *sim)
2009-07-09 22:06:59 +00:00
{
2009-08-18 22:05:03 +00:00
if (sim == NULL)
return OFONO_SIM_STATE_NOT_PRESENT;
2009-07-09 22:06:59 +00:00
return sim->state;
2009-07-09 21:54:10 +00:00
}
static void sim_set_ready(struct ofono_sim *sim)
2009-07-09 22:06:59 +00:00
{
GSList *l;
ofono_sim_state_event_notify_cb_t notify;
2009-07-09 22:06:59 +00:00
2009-08-18 22:05:03 +00:00
if (sim == NULL)
2009-07-09 22:06:59 +00:00
return;
if (sim->state != OFONO_SIM_STATE_INSERTED)
2009-07-09 22:06:59 +00:00
return;
sim->state = OFONO_SIM_STATE_READY;
2009-07-09 22:06:59 +00:00
for (l = sim->state_watches->items; l; l = l->next) {
struct ofono_watchlist_item *item = l->data;
notify = item->notify;
2009-07-09 22:06:59 +00:00
notify(item->notify_data, sim->state);
2009-07-09 22:06:59 +00:00
}
}
2009-12-17 18:52:32 +00:00
static void sim_cb_download_cb(const struct ofono_error *error,
const unsigned char *data, int len, void *user)
{
if (error->type != OFONO_ERROR_TYPE_NO_ERROR) {
ofono_error("CellBroadcast download to UICC failed");
return;
}
DBG("CellBroadcast download to UICC reported no error");
2009-12-17 18:52:32 +00:00
}
void __ofono_cbs_sim_download(struct ofono_sim *sim,
const guint8 *pdu, int pdu_len)
{
guint8 tlv[pdu_len + 8];
if (sim->state != OFONO_SIM_STATE_READY)
2009-12-17 18:52:32 +00:00
return;
2009-12-18 01:29:51 +00:00
if (sim->driver->envelope == NULL)
2009-12-17 18:52:32 +00:00
return;
tlv[0] = STK_ENVELOPE_TYPE_CBS_PP_DOWNLOAD;
2009-12-17 18:52:32 +00:00
tlv[1] = 6 + pdu_len;
2010-03-31 04:56:57 +00:00
tlv[2] = 0x80 | STK_DATA_OBJECT_TYPE_DEVICE_IDENTITIES;
2009-12-17 18:52:32 +00:00
tlv[3] = 0x02; /* Device Identities length */
2010-03-31 04:56:57 +00:00
tlv[4] = STK_DEVICE_IDENTITY_TYPE_NETWORK;
tlv[5] = STK_DEVICE_IDENTITY_TYPE_UICC;
tlv[6] = 0x80 | STK_DATA_OBJECT_TYPE_CBS_PAGE;
2009-12-17 18:52:32 +00:00
tlv[7] = pdu_len;
2009-12-18 01:29:51 +00:00
2009-12-17 18:52:32 +00:00
memcpy(tlv + 8, pdu, pdu_len);
sim->driver->envelope(sim, pdu_len + 8, tlv, sim_cb_download_cb, sim);
}
2009-08-18 22:05:03 +00:00
int ofono_sim_driver_register(const struct ofono_sim_driver *d)
{
2009-08-18 22:05:03 +00:00
DBG("driver: %p, name: %s", d, d->name);
2009-08-18 22:05:03 +00:00
if (d->probe == NULL)
return -EINVAL;
2009-08-18 22:05:03 +00:00
g_drivers = g_slist_prepend(g_drivers, (void *)d);
return 0;
}
2009-08-18 22:05:03 +00:00
void ofono_sim_driver_unregister(const struct ofono_sim_driver *d)
{
DBG("driver: %p, name: %s", d, d->name);
g_drivers = g_slist_remove(g_drivers, (void *)d);
}
static void sim_unregister(struct ofono_atom *atom)
{
DBusConnection *conn = ofono_dbus_get_connection();
2009-08-18 22:05:03 +00:00
struct ofono_modem *modem = __ofono_atom_get_modem(atom);
const char *path = __ofono_atom_get_path(atom);
struct ofono_sim *sim = __ofono_atom_get_data(atom);
__ofono_watchlist_free(sim->state_watches);
sim->state_watches = NULL;
2009-08-20 20:32:53 +00:00
g_dbus_unregister_interface(conn, path, OFONO_SIM_MANAGER_INTERFACE);
ofono_modem_remove_interface(modem, OFONO_SIM_MANAGER_INTERFACE);
}
2009-08-18 22:05:03 +00:00
static void sim_remove(struct ofono_atom *atom)
{
struct ofono_sim *sim = __ofono_atom_get_data(atom);
DBG("atom: %p", atom);
if (sim == NULL)
return;
if (sim->driver && sim->driver->remove)
sim->driver->remove(sim);
2010-04-09 06:49:49 +00:00
sim_free_state(sim);
2009-08-18 22:05:03 +00:00
g_free(sim);
}
struct ofono_sim *ofono_sim_create(struct ofono_modem *modem,
unsigned int vendor,
2009-08-18 22:05:03 +00:00
const char *driver,
void *data)
{
2009-08-18 22:05:03 +00:00
struct ofono_sim *sim;
GSList *l;
if (driver == NULL)
return NULL;
sim = g_try_new0(struct ofono_sim, 1);
if (sim == NULL)
return NULL;
2010-01-06 20:17:27 +00:00
sim->phase = OFONO_SIM_PHASE_UNKNOWN;
2009-08-18 22:05:03 +00:00
sim->atom = __ofono_modem_add_atom(modem, OFONO_ATOM_TYPE_SIM,
sim_remove, sim);
for (l = g_drivers; l; l = l->next) {
const struct ofono_sim_driver *drv = l->data;
if (g_strcmp0(drv->name, driver))
continue;
2009-09-01 22:36:27 +00:00
if (drv->probe(sim, vendor, data) < 0)
2009-08-18 22:05:03 +00:00
continue;
sim->driver = drv;
break;
}
return sim;
}
2009-08-18 22:05:03 +00:00
void ofono_sim_register(struct ofono_sim *sim)
{
2009-08-18 22:05:03 +00:00
DBusConnection *conn = ofono_dbus_get_connection();
struct ofono_modem *modem = __ofono_atom_get_modem(sim->atom);
const char *path = __ofono_atom_get_path(sim->atom);
ofono_bool_t inserted;
2009-08-18 22:05:03 +00:00
if (!g_dbus_register_interface(conn, path,
OFONO_SIM_MANAGER_INTERFACE,
2009-08-18 22:05:03 +00:00
sim_methods, sim_signals, NULL,
sim, NULL)) {
ofono_error("Could not create %s interface",
OFONO_SIM_MANAGER_INTERFACE);
2009-08-18 22:05:03 +00:00
return;
2009-08-18 22:05:03 +00:00
}
ofono_modem_add_interface(modem, OFONO_SIM_MANAGER_INTERFACE);
sim->state_watches = __ofono_watchlist_new(g_free);
2009-08-18 22:05:03 +00:00
__ofono_atom_register(sim->atom, sim_unregister);
ofono_sim_add_state_watch(sim, sim_ready, sim, NULL);
2009-08-18 22:05:03 +00:00
inserted = sim->state != OFONO_SIM_STATE_NOT_PRESENT;
sim->state = OFONO_SIM_STATE_NOT_PRESENT;
ofono_sim_inserted_notify(sim, inserted);
2009-08-18 22:05:03 +00:00
}
2009-08-18 22:05:03 +00:00
void ofono_sim_remove(struct ofono_sim *sim)
{
__ofono_atom_free(sim->atom);
}
2009-08-18 22:05:03 +00:00
void ofono_sim_set_data(struct ofono_sim *sim, void *data)
{
sim->driver_data = data;
}
void *ofono_sim_get_data(struct ofono_sim *sim)
{
return sim->driver_data;
}