ofono/src/sim.c

1114 lines
25 KiB
C
Raw Normal View History

/*
*
* oFono - Open Source Telephony
*
* Copyright (C) 2008-2009 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 "driver.h"
#include "common.h"
#include "util.h"
2009-06-18 08:46:08 +00:00
#include "smsutil.h"
#include "sim.h"
2009-07-10 23:56:44 +00:00
#include "simutil.h"
2009-08-04 15:15:00 +00:00
#ifdef TEMP_FAILURE_RETRY
#define TFR TEMP_FAILURE_RETRY
#else
#define TFR
#endif
#define SIM_MANAGER_INTERFACE "org.ofono.SimManager"
2009-08-04 15:15:33 +00:00
#define SIM_CACHE_MODE 0600
#define SIM_CACHE_PATH STORAGEDIR "/%s/%04x"
#define SIM_CACHE_PATH_LEN(imsilen) (strlen(SIM_CACHE_PATH) - 2 + imsilen)
#define SIM_CACHE_HEADER_SIZE 6
static gboolean sim_op_next(gpointer user_data);
static gboolean sim_op_retrieve_next(gpointer user);
static void sim_own_numbers_update(struct ofono_modem *modem);
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;
};
struct sim_manager_data {
struct ofono_sim_ops *ops;
char *imsi;
GSList *own_numbers;
GSList *new_numbers;
2009-07-09 21:52:54 +00:00
GSList *ready_notify;
2009-07-09 22:06:59 +00:00
gboolean ready;
GQueue *simop_q;
gint simop_source;
unsigned char efmsisdn_length;
unsigned char efmsisdn_records;
};
struct msisdn_set_request {
struct ofono_modem *modem;
int pending;
int failed;
DBusMessage *msg;
};
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 void sim_file_op_free(struct sim_file_op *node)
{
g_free(node);
}
static struct sim_manager_data *sim_manager_create()
{
return g_try_new0(struct sim_manager_data, 1);
}
static void sim_manager_destroy(gpointer userdata)
{
struct ofono_modem *modem = userdata;
struct sim_manager_data *data = modem->sim_manager;
if (data->imsi) {
g_free(data->imsi);
data->imsi = NULL;
}
if (data->own_numbers) {
g_slist_foreach(data->own_numbers, (GFunc)g_free, NULL);
g_slist_free(data->own_numbers);
data->own_numbers = NULL;
}
if (data->simop_source) {
g_source_remove(data->simop_source);
data->simop_source = 0;
}
if (data->simop_q) {
g_queue_foreach(data->simop_q, (GFunc)sim_file_op_free, NULL);
g_queue_free(data->simop_q);
data->simop_q = NULL;
}
}
static DBusMessage *sim_get_properties(DBusConnection *conn,
DBusMessage *msg, void *data)
{
struct ofono_modem *modem = data;
struct sim_manager_data *sim = modem->sim_manager;
DBusMessage *reply;
DBusMessageIter iter;
DBusMessageIter dict;
char **own_numbers;
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);
if (sim->imsi)
2009-07-29 15:26:55 +00:00
ofono_dbus_dict_append(&dict, "SubscriberIdentity",
DBUS_TYPE_STRING, &sim->imsi);
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);
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 */
sim_own_numbers_update(req->modem);
g_free(req);
}
static void msisdn_set_cb(struct ofono_modem *modem, int ok, void *data)
{
struct msisdn_set_request *req = data;
if (!ok)
req->failed++;
req->pending--;
if (!req->pending)
msisdn_set_done(req);
}
static gboolean set_own_numbers(struct ofono_modem *modem,
GSList *new_numbers, DBusMessage *msg)
{
struct sim_manager_data *sim = modem->sim_manager;
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);
req->modem = modem;
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);
new_numbers = new_numbers->next;
} else
memset(efmsisdn, 0xff, sim->efmsisdn_length);
if (ofono_sim_write(req->modem, 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)
{
struct ofono_modem *modem = data;
struct sim_manager_data *sim = modem->sim_manager;
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);
set_ok = set_own_numbers(modem, 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 GDBusMethodTable sim_manager_methods[] = {
{ "GetProperties", "", "a{sv}", sim_get_properties },
{ "SetProperty", "sv", "", sim_set_property,
G_DBUS_METHOD_FLAG_ASYNC },
{ }
};
2009-07-17 23:42:54 +00:00
static GDBusSignalTable sim_manager_signals[] = {
{ "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;
}
2009-07-10 23:54:20 +00:00
static void sim_msisdn_read_cb(struct ofono_modem *modem, int ok,
enum ofono_sim_file_structure structure,
int length, int record,
const unsigned char *data,
int record_length, void *userdata)
{
struct sim_manager_data *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-10 23:54:20 +00:00
if (structure != OFONO_SIM_FILE_STRUCTURE_FIXED)
return;
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) == 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-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);
ofono_dbus_signal_array_property_changed(conn, modem->path,
2009-07-10 23:54:20 +00:00
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_own_numbers_update(struct ofono_modem *modem)
{
ofono_sim_read(modem, SIM_EFMSISDN_FILEID,
sim_msisdn_read_cb, modem->sim_manager);
}
2009-07-10 23:28:53 +00:00
static void sim_ready(struct ofono_modem *modem)
{
sim_own_numbers_update(modem);
2009-07-10 23:28:53 +00:00
}
static void sim_imsi_cb(const struct ofono_error *error, const char *imsi,
void *data)
{
struct ofono_modem *modem = data;
struct sim_manager_data *sim = modem->sim_manager;
if (error->type != OFONO_ERROR_TYPE_NO_ERROR) {
ofono_error("Unable to read IMSI, emergency calls only");
return;
}
sim->imsi = g_strdup(imsi);
2009-07-14 17:41:16 +00:00
ofono_sim_set_ready(modem);
2009-07-10 23:28:53 +00:00
}
static void sim_retrieve_imsi(struct ofono_modem *modem)
2009-07-10 23:28:53 +00:00
{
struct sim_manager_data *sim = modem->sim_manager;
if (!sim->ops->read_imsi) {
ofono_error("IMSI retrieval not implemented,"
" only emergency calls will be available");
return;
2009-07-10 23:28:53 +00:00
}
sim->ops->read_imsi(modem, sim_imsi_cb, modem);
}
static int create_dirs(const char *filename, const mode_t mode)
{
struct stat st;
char *dir;
const char *prev, *next;
int err;
err = stat(filename, &st);
if (!err && S_ISREG(st.st_mode))
return 0;
dir = g_malloc(strlen(filename) + 1);
strcpy(dir, "/");
for (prev = filename; (next = strchr(prev + 1, '/')); prev = next)
if (next > prev + 1) {
strncat(dir, prev + 1, next - prev);
if (mkdir(dir, mode) && errno != EEXIST) {
g_free(dir);
return -1;
}
}
g_free(dir);
return 0;
}
static void sim_op_error(struct ofono_modem *modem)
{
struct sim_manager_data *sim = modem->sim_manager;
struct sim_file_op *op = g_queue_pop_head(sim->simop_q);
if (g_queue_get_length(sim->simop_q) > 0)
sim->simop_source = g_timeout_add(0, sim_op_next, modem);
2009-08-03 17:41:44 +00:00
if (op->is_read == TRUE)
((ofono_sim_file_read_cb_t) op->cb)
(modem, 0, 0, 0, 0, 0, 0, op->userdata);
else
((ofono_sim_file_write_cb_t) op->cb)
(modem, 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 +
SIM_CACHE_HEADER_SIZE, SEEK_SET) !=
(off_t) -1)
2009-08-04 15:15:00 +00:00
r = TFR(write(fd, data, record_len));
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)
{
struct ofono_modem *modem = user;
struct sim_manager_data *sim = modem->sim_manager;
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) {
sim_op_error(modem);
return;
}
cb(modem, 1, op->structure, op->length, op->current,
data, op->record_length, op->userdata);
if (op->cache && imsi) {
char *path = g_strdup_printf(SIM_CACHE_PATH, imsi, 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)
sim->simop_source = g_timeout_add(0, sim_op_next,
modem);
} else {
op->current += 1;
sim->simop_source = g_timeout_add(0, sim_op_retrieve_next,
modem);
}
}
static gboolean sim_op_retrieve_next(gpointer user)
{
struct ofono_modem *modem = user;
struct sim_manager_data *sim = modem->sim_manager;
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:
if (!sim->ops->read_file_transparent) {
sim_op_error(modem);
return FALSE;
}
sim->ops->read_file_transparent(modem, op->id, 0, op->length,
sim_op_retrieve_cb, modem);
break;
case OFONO_SIM_FILE_STRUCTURE_FIXED:
if (!sim->ops->read_file_linear) {
sim_op_error(modem);
return FALSE;
}
sim->ops->read_file_linear(modem, op->id, op->current,
op->record_length,
sim_op_retrieve_cb, modem);
break;
case OFONO_SIM_FILE_STRUCTURE_CYCLIC:
if (!sim->ops->read_file_cyclic) {
sim_op_error(modem);
return FALSE;
}
sim->ops->read_file_cyclic(modem, op->id, op->current,
op->record_length,
sim_op_retrieve_cb, modem);
break;
default:
ofono_error("Unrecognized file structure, this can't happen");
}
return FALSE;
}
static gboolean cache_info(const char *path, const unsigned char *info, int len)
{
int fd;
int r;
if (create_dirs(path, SIM_CACHE_MODE | S_IXUSR) != 0)
return FALSE;
2009-08-04 15:15:00 +00:00
fd = TFR(open(path, O_WRONLY | O_CREAT, SIM_CACHE_MODE));
if (fd == -1) {
ofono_debug("Error %i creating cache file %s",
errno, path);
return FALSE;
}
2009-08-04 15:15:00 +00:00
r = TFR(write(fd, info, len));
TFR(close(fd));
2009-08-05 17:35:08 +00:00
if (r < len) {
unlink(path);
return FALSE;
}
return TRUE;
}
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)
{
struct ofono_modem *modem = data;
struct sim_manager_data *sim = modem->sim_manager;
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) {
sim_op_error(modem);
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;
sim->simop_source = g_timeout_add(0, sim_op_retrieve_next, modem);
if (op->cache && imsi) {
char *path = g_strdup_printf(SIM_CACHE_PATH, imsi, op->id);
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;
op->cache = cache_info(path, fileinfo, 6);
g_free(path);
}
}
static void sim_op_write_cb(const struct ofono_error *error, void *data)
{
struct ofono_modem *modem = data;
struct sim_manager_data *sim = modem->sim_manager;
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)
sim->simop_source = g_timeout_add(0, sim_op_next, modem);
if (error->type == OFONO_ERROR_TYPE_NO_ERROR)
cb(modem, 1, op->userdata);
else
cb(modem, 0, op->userdata);
sim_file_op_free(op);
}
2009-08-08 00:50:09 +00:00
static gboolean sim_op_check_cached(struct ofono_modem *modem)
{
struct sim_manager_data *sim = modem->sim_manager;
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;
path = g_strdup_printf(SIM_CACHE_PATH, imsi, op->id);
fd = TFR(open(path, O_RDONLY));
g_free(path);
if (fd == -1) {
if (errno != ENOENT)
ofono_debug("Error %i opening cache file for "
"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) {
ret = TRUE;
cb(modem, 0, 0, 0, 0, 0, 0, 0);
goto cleanup;
}
buffer = g_malloc(file_length);
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(modem, 1, structure, file_length, record + 1,
&buffer[record * record_length], record_length,
op->userdata);
}
ret = TRUE;
cleanup:
if (buffer)
g_free(buffer);
TFR(close(fd));
return ret;
}
static gboolean sim_op_next(gpointer user_data)
{
struct ofono_modem *modem = user_data;
struct sim_manager_data *sim = modem->sim_manager;
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-08 00:50:09 +00:00
if (sim_op_check_cached(modem)) {
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 =
g_timeout_add(0, sim_op_next, modem);
return FALSE;
}
sim->ops->read_file_info(modem, op->id, sim_op_info_cb, modem);
} else {
switch (op->structure) {
case OFONO_SIM_FILE_STRUCTURE_TRANSPARENT:
sim->ops->write_file_transparent(modem, op->id, 0,
op->length, op->buffer,
sim_op_write_cb, modem);
break;
case OFONO_SIM_FILE_STRUCTURE_FIXED:
sim->ops->write_file_linear(modem, op->id, op->current,
op->length, op->buffer,
sim_op_write_cb, modem);
break;
case OFONO_SIM_FILE_STRUCTURE_CYCLIC:
sim->ops->write_file_cyclic(modem, op->id,
op->length, op->buffer,
sim_op_write_cb, modem);
break;
default:
ofono_error("Unrecognized file structure, "
"this can't happen");
}
g_free(op->buffer);
}
return FALSE;
}
int ofono_sim_read(struct ofono_modem *modem, int id,
ofono_sim_file_read_cb_t cb, void *data)
{
struct sim_manager_data *sim = modem->sim_manager;
struct sim_file_op *op;
if (!cb)
return -1;
if (modem->sim_manager == NULL)
return -1;
if (!sim->ops)
return -1;
if (!sim->ops->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->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)
sim->simop_source = g_timeout_add(0, sim_op_next, modem);
return 0;
}
int ofono_sim_write(struct ofono_modem *modem, 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_manager_data *sim = modem->sim_manager;
struct sim_file_op *op;
gconstpointer fn = NULL;
if (!cb)
return -1;
if (sim == NULL)
return -1;
if (!sim->ops)
return -1;
switch (structure) {
case OFONO_SIM_FILE_STRUCTURE_TRANSPARENT:
fn = sim->ops->write_file_transparent;
break;
case OFONO_SIM_FILE_STRUCTURE_FIXED:
fn = sim->ops->write_file_linear;
break;
case OFONO_SIM_FILE_STRUCTURE_CYCLIC:
fn = sim->ops->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)
sim->simop_source = g_timeout_add(0, sim_op_next, modem);
return 0;
}
static void initialize_sim_manager(struct ofono_modem *modem)
{
DBusConnection *conn = ofono_dbus_get_connection();
if (!g_dbus_register_interface(conn, modem->path,
SIM_MANAGER_INTERFACE,
sim_manager_methods,
sim_manager_signals,
NULL, modem,
sim_manager_destroy)) {
ofono_error("Could not register SIMManager interface");
sim_manager_destroy(modem);
return;
}
ofono_debug("SIMManager interface for modem: %s created",
modem->path);
ofono_modem_add_interface(modem, SIM_MANAGER_INTERFACE);
2009-07-10 23:28:53 +00:00
ofono_sim_ready_notify_register(modem, sim_ready);
2009-07-10 23:28:53 +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
* 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_retrieve_imsi(modem);
}
2009-07-09 22:16:00 +00:00
const char *ofono_sim_get_imsi(struct ofono_modem *modem)
{
if (modem->sim_manager == NULL)
return NULL;
return modem->sim_manager->imsi;
}
2009-07-09 21:54:10 +00:00
int ofono_sim_ready_notify_register(struct ofono_modem *modem,
ofono_sim_ready_notify_cb_t cb)
{
if (modem->sim_manager == NULL)
return -1;
modem->sim_manager->ready_notify =
g_slist_append(modem->sim_manager->ready_notify, cb);
return 0;
}
void ofono_sim_ready_notify_unregister(struct ofono_modem *modem,
ofono_sim_ready_notify_cb_t cb)
{
if (modem->sim_manager == NULL)
return;
modem->sim_manager->ready_notify =
g_slist_remove(modem->sim_manager->ready_notify, cb);
}
2009-07-09 22:06:59 +00:00
int ofono_sim_get_ready(struct ofono_modem *modem)
{
if (modem->sim_manager == NULL)
return 0;
if (modem->sim_manager->ready == TRUE)
return 1;
2009-07-09 21:54:10 +00:00
return 0;
}
2009-07-09 22:06:59 +00:00
void ofono_sim_set_ready(struct ofono_modem *modem)
{
GSList *l;
if (modem->sim_manager == NULL)
return;
if (modem->sim_manager->ready == TRUE)
return;
modem->sim_manager->ready = TRUE;
for (l = modem->sim_manager->ready_notify; l; l = l->next) {
ofono_sim_ready_notify_cb_t cb = l->data;
cb(modem);
}
}
int ofono_sim_manager_register(struct ofono_modem *modem,
struct ofono_sim_ops *ops)
{
if (modem == NULL)
return -1;
if (modem->sim_manager == NULL)
return -1;
if (ops == NULL)
return -1;
modem->sim_manager->ops = ops;
initialize_sim_manager(modem);
return 0;
}
void ofono_sim_manager_unregister(struct ofono_modem *modem)
{
DBusConnection *conn = ofono_dbus_get_connection();
g_dbus_unregister_interface(conn, modem->path,
SIM_MANAGER_INTERFACE);
ofono_modem_remove_interface(modem, SIM_MANAGER_INTERFACE);
}
void ofono_sim_manager_init(struct ofono_modem *modem)
{
modem->sim_manager = sim_manager_create();
}
void ofono_sim_manager_exit(struct ofono_modem *modem)
{
if (modem->sim_manager == NULL)
return;
g_free(modem->sim_manager);
modem->sim_manager = NULL;
}