ofono/drivers/atmodem/sim.c

479 lines
9.9 KiB
C
Raw Normal View History

2009-05-22 11:58:49 +00:00
/*
*
* 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
#define _GNU_SOURCE
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <glib.h>
#include <ofono/log.h>
2009-07-29 19:33:58 +00:00
#include <ofono/modem.h>
2009-08-18 22:05:50 +00:00
#include <ofono/sim.h>
2009-05-22 11:58:49 +00:00
#include "gatchat.h"
#include "gatresult.h"
#include "at.h"
static const char *crsm_prefix[] = { "+CRSM:", NULL };
static void at_crsm_info_cb(gboolean ok, GAtResult *result, gpointer user_data)
2009-05-22 11:58:49 +00:00
{
struct cb_data *cbd = user_data;
GAtResultIter iter;
ofono_sim_file_info_cb_t cb = cbd->cb;
2009-05-22 11:58:49 +00:00
struct ofono_error error;
const guint8 *response;
gint sw1, sw2, len;
int flen, rlen;
2009-06-18 07:23:37 +00:00
enum ofono_sim_file_structure str;
unsigned char access[3];
2009-05-22 11:58:49 +00:00
dump_response("at_crsm_info_cb", ok, result);
2009-05-22 11:58:49 +00:00
decode_at_error(&error, g_at_result_final_response(result));
if (!ok) {
cb(&error, -1, -1, -1, NULL, cbd->data);
2009-05-22 11:58:49 +00:00
return;
}
g_at_result_iter_init(&iter, result);
if (!g_at_result_iter_next(&iter, "+CRSM:")) {
DECLARE_FAILURE(e);
cb(&e, -1, -1, -1, NULL, cbd->data);
2009-05-22 11:58:49 +00:00
return;
}
g_at_result_iter_next_number(&iter, &sw1);
g_at_result_iter_next_number(&iter, &sw2);
2009-05-22 11:58:49 +00:00
if (!g_at_result_iter_next_hexstring(&iter, &response, &len) ||
(sw1 != 0x90 && sw1 != 0x91 && sw1 != 0x92) ||
(sw1 == 0x90 && sw2 != 0x00) ||
len < 14 || response[6] != 0x04 ||
(response[13] == 0x01 && len < 15)) {
2009-05-22 11:58:49 +00:00
DECLARE_FAILURE(e);
cb(&e, -1, -1, -1, NULL, cbd->data);
2009-05-22 11:58:49 +00:00
return;
}
ofono_debug("crsm_info_cb: %02x, %02x, %i", sw1, sw2, len);
flen = (response[2] << 8) | response[3];
str = response[13];
access[0] = response[8];
access[1] = response[9];
access[2] = response[10];
2009-07-27 21:56:05 +00:00
if (str == 0x01 || str == 0x03)
rlen = response[14];
else
rlen = 0;
cb(&error, flen, str, rlen, access, cbd->data);
2009-05-22 11:58:49 +00:00
}
2009-08-18 22:05:50 +00:00
static void at_sim_read_info(struct ofono_sim *sim, int fileid,
ofono_sim_file_info_cb_t cb,
2009-05-22 11:58:49 +00:00
void *data)
{
2009-08-18 22:05:50 +00:00
GAtChat *chat = ofono_sim_get_data(sim);
struct cb_data *cbd = cb_data_new(NULL, cb, data);
2009-05-22 11:58:49 +00:00
char buf[64];
if (!cbd)
goto error;
snprintf(buf, sizeof(buf), "AT+CRSM=192,%i,0,0,15", fileid);
2009-07-10 18:10:14 +00:00
2009-08-18 22:05:50 +00:00
if (g_at_chat_send(chat, buf, crsm_prefix,
at_crsm_info_cb, cbd, g_free) > 0)
2009-05-22 11:58:49 +00:00
return;
error:
if (cbd)
g_free(cbd);
{
DECLARE_FAILURE(error);
cb(&error, -1, -1, -1, NULL, data);
2009-05-22 11:58:49 +00:00
}
}
static void at_crsm_read_cb(gboolean ok, GAtResult *result,
gpointer user_data)
2009-05-22 11:58:49 +00:00
{
struct cb_data *cbd = user_data;
GAtResultIter iter;
ofono_sim_read_cb_t cb = cbd->cb;
struct ofono_error error;
const guint8 *response;
gint sw1, sw2, len;
dump_response("at_crsm_read_cb", ok, result);
2009-05-22 11:58:49 +00:00
decode_at_error(&error, g_at_result_final_response(result));
if (!ok) {
cb(&error, NULL, 0, cbd->data);
return;
}
g_at_result_iter_init(&iter, result);
if (!g_at_result_iter_next(&iter, "+CRSM:")) {
DECLARE_FAILURE(e);
cb(&e, NULL, 0, cbd->data);
return;
}
g_at_result_iter_next_number(&iter, &sw1);
g_at_result_iter_next_number(&iter, &sw2);
2009-07-10 18:10:14 +00:00
2009-05-22 11:58:49 +00:00
if (!g_at_result_iter_next_hexstring(&iter, &response, &len) ||
(sw1 != 0x90 && sw1 != 0x91 && sw1 != 0x92 && sw1 != 0x9f) ||
2009-05-22 11:58:49 +00:00
(sw1 == 0x90 && sw2 != 0x00)) {
DECLARE_FAILURE(e);
cb(&e, NULL, 0, cbd->data);
return;
}
ofono_debug("crsm_read_cb: %02x, %02x, %d", sw1, sw2, len);
2009-05-22 11:58:49 +00:00
cb(&error, response, len, cbd->data);
}
2009-08-18 22:05:50 +00:00
static void at_sim_read_binary(struct ofono_sim *sim, int fileid,
int start, int length,
ofono_sim_read_cb_t cb, void *data)
2009-05-22 11:58:49 +00:00
{
2009-08-18 22:05:50 +00:00
GAtChat *chat = ofono_sim_get_data(sim);
struct cb_data *cbd = cb_data_new(NULL, cb, data);
2009-05-22 11:58:49 +00:00
char buf[64];
if (!cbd)
goto error;
snprintf(buf, sizeof(buf), "AT+CRSM=176,%i,%i,%i,%i", fileid,
start >> 8, start & 0xff, length);
2009-07-10 18:10:14 +00:00
2009-08-18 22:05:50 +00:00
if (g_at_chat_send(chat, buf, crsm_prefix,
at_crsm_read_cb, cbd, g_free) > 0)
return;
error:
if (cbd)
g_free(cbd);
{
DECLARE_FAILURE(error);
cb(&error, NULL, 0, data);
}
}
2009-08-18 22:05:50 +00:00
static void at_sim_read_record(struct ofono_sim *sim, int fileid,
int record, int length,
ofono_sim_read_cb_t cb, void *data)
{
2009-08-18 22:05:50 +00:00
GAtChat *chat = ofono_sim_get_data(sim);
struct cb_data *cbd = cb_data_new(NULL, cb, data);
char buf[64];
if (!cbd)
goto error;
snprintf(buf, sizeof(buf), "AT+CRSM=178,%i,%i,4,%i", fileid,
record, length);
2009-07-10 18:10:14 +00:00
2009-08-18 22:05:50 +00:00
if (g_at_chat_send(chat, buf, crsm_prefix,
at_crsm_read_cb, cbd, g_free) > 0)
2009-05-22 11:58:49 +00:00
return;
error:
if (cbd)
g_free(cbd);
{
DECLARE_FAILURE(error);
cb(&error, NULL, 0, data);
}
}
static void at_crsm_update_cb(gboolean ok, GAtResult *result,
gpointer user_data)
{
struct cb_data *cbd = user_data;
GAtResultIter iter;
2009-08-18 22:05:50 +00:00
ofono_sim_write_cb_t cb = cbd->cb;
struct ofono_error error;
gint sw1, sw2;
dump_response("at_crsm_update_cb", ok, result);
decode_at_error(&error, g_at_result_final_response(result));
if (!ok) {
cb(&error, cbd->data);
return;
}
g_at_result_iter_init(&iter, result);
if (!g_at_result_iter_next(&iter, "+CRSM:")) {
DECLARE_FAILURE(e);
cb(&e, cbd->data);
return;
}
g_at_result_iter_next_number(&iter, &sw1);
g_at_result_iter_next_number(&iter, &sw2);
2009-07-10 18:10:14 +00:00
if ((sw1 != 0x90 && sw1 != 0x91 && sw1 != 0x92 && sw1 != 0x9f) ||
(sw1 == 0x90 && sw2 != 0x00)) {
DECLARE_FAILURE(e);
cb(&e, cbd->data);
return;
}
ofono_debug("crsm_update_cb: %02x, %02x", sw1, sw2);
cb(&error, cbd->data);
}
2009-08-18 22:05:50 +00:00
static void at_sim_update_binary(struct ofono_sim *sim, int fileid,
int start, int length,
const unsigned char *value,
2009-08-18 22:05:50 +00:00
ofono_sim_write_cb_t cb, void *data)
{
2009-08-18 22:05:50 +00:00
GAtChat *chat = ofono_sim_get_data(sim);
struct cb_data *cbd = cb_data_new(NULL, cb, data);
char *buf = g_try_new(char, 36 + length * 2);
int len, ret;
if (!cbd || !buf)
goto error;
len = sprintf(buf, "AT+CRSM=214,%i,%i,%i,%i,", fileid,
start >> 8, start & 0xff, length);
2009-07-10 18:10:14 +00:00
for (; length; length--)
len += sprintf(buf + len, "%02hhx", *value++);
2009-07-10 18:10:14 +00:00
2009-08-18 22:05:50 +00:00
ret = g_at_chat_send(chat, buf, crsm_prefix,
at_crsm_update_cb, cbd, g_free);
g_free(buf);
if (ret > 0)
return;
error:
if (cbd)
g_free(cbd);
{
DECLARE_FAILURE(error);
cb(&error, data);
}
}
2009-08-18 22:05:50 +00:00
static void at_sim_update_record(struct ofono_sim *sim, int fileid,
int record, int length,
const unsigned char *value,
2009-08-18 22:05:50 +00:00
ofono_sim_write_cb_t cb, void *data)
{
2009-08-18 22:05:50 +00:00
GAtChat *chat = ofono_sim_get_data(sim);
struct cb_data *cbd = cb_data_new(NULL, cb, data);
char *buf = g_try_new(char, 36 + length * 2);
int len, ret;
if (!cbd || !buf)
goto error;
len = sprintf(buf, "AT+CRSM=220,%i,%i,4,%i,", fileid,
record, length);
2009-07-10 18:10:14 +00:00
for (; length; length--)
len += sprintf(buf + len, "%02hhx", *value++);
2009-07-10 18:10:14 +00:00
2009-08-18 22:05:50 +00:00
ret = g_at_chat_send(chat, buf, crsm_prefix,
at_crsm_update_cb, cbd, g_free);
g_free(buf);
if (ret > 0)
return;
error:
if (cbd)
g_free(cbd);
{
DECLARE_FAILURE(error);
cb(&error, data);
}
}
2009-08-18 22:05:50 +00:00
static void at_sim_update_cyclic(struct ofono_sim *sim, int fileid,
int length, const unsigned char *value,
2009-08-18 22:05:50 +00:00
ofono_sim_write_cb_t cb, void *data)
{
2009-08-18 22:05:50 +00:00
GAtChat *chat = ofono_sim_get_data(sim);
struct cb_data *cbd = cb_data_new(NULL, cb, data);
char *buf = g_try_new(char, 36 + length * 2);
int len, ret;
if (!cbd || !buf)
goto error;
len = sprintf(buf, "AT+CRSM=220,%i,0,3,%i,", fileid, length);
2009-07-10 18:10:14 +00:00
for (; length; length--)
len += sprintf(buf + len, "%02hhx", *value++);
2009-07-10 18:10:14 +00:00
2009-08-18 22:05:50 +00:00
ret = g_at_chat_send(chat, buf, crsm_prefix,
at_crsm_update_cb, cbd, g_free);
g_free(buf);
if (ret > 0)
return;
error:
if (cbd)
g_free(cbd);
{
DECLARE_FAILURE(error);
cb(&error, data);
}
}
2009-05-22 11:58:49 +00:00
static void at_cimi_cb(gboolean ok, GAtResult *result, gpointer user_data)
{
struct cb_data *cbd = user_data;
GAtResultIter iter;
2009-08-18 22:05:50 +00:00
ofono_sim_imsi_cb_t cb = cbd->cb;
2009-05-22 11:58:49 +00:00
struct ofono_error error;
const char *imsi;
2009-05-29 23:14:40 +00:00
int i;
2009-05-22 11:58:49 +00:00
dump_response("at_cimi_cb", ok, result);
decode_at_error(&error, g_at_result_final_response(result));
2009-07-10 18:10:14 +00:00
2009-05-22 11:58:49 +00:00
if (!ok) {
cb(&error, NULL, cbd->data);
return;
}
g_at_result_iter_init(&iter, result);
2009-05-29 23:14:40 +00:00
for (i = 0; i < g_at_result_num_response_lines(result); i++)
g_at_result_iter_next(&iter, NULL);
2009-05-22 11:58:49 +00:00
imsi = g_at_result_iter_raw_line(&iter);
ofono_debug("cimi_cb: %s", imsi);
cb(&error, imsi, cbd->data);
}
2009-08-18 22:05:50 +00:00
static void at_read_imsi(struct ofono_sim *sim, ofono_sim_imsi_cb_t cb,
2009-05-22 11:58:49 +00:00
void *data)
{
2009-08-18 22:05:50 +00:00
GAtChat *chat = ofono_sim_get_data(sim);
struct cb_data *cbd = cb_data_new(NULL, cb, data);
2009-05-22 11:58:49 +00:00
if (!cbd)
goto error;
2009-08-18 22:05:50 +00:00
if (g_at_chat_send(chat, "AT+CIMI", NULL,
2009-05-22 11:58:49 +00:00
at_cimi_cb, cbd, g_free) > 0)
return;
error:
if (cbd)
g_free(cbd);
{
DECLARE_FAILURE(error);
cb(&error, NULL, data);
}
}
2009-08-18 22:05:50 +00:00
static gboolean at_sim_register(gpointer user)
{
struct ofono_sim *sim = user;
GAtChat *chat = ofono_sim_get_data(sim);
ofono_sim_register(sim);
return FALSE;
}
static int at_sim_probe(struct ofono_sim *sim)
{
g_idle_add(at_sim_register, sim);
return 0;
}
static int at_sim_remove(struct ofono_sim *sim)
{
return 0;
}
static struct ofono_sim_driver driver = {
.name = "generic_at",
.probe = at_sim_probe,
.remove = at_sim_remove,
.read_file_info = at_sim_read_info,
.read_file_transparent = at_sim_read_binary,
.read_file_linear = at_sim_read_record,
.read_file_cyclic = at_sim_read_record,
.write_file_transparent = at_sim_update_binary,
.write_file_linear = at_sim_update_record,
.write_file_cyclic = at_sim_update_cyclic,
2009-05-22 11:58:49 +00:00
.read_imsi = at_read_imsi,
};
2009-08-18 22:05:50 +00:00
void at_sim_init()
2009-05-22 11:58:49 +00:00
{
2009-08-18 22:05:50 +00:00
ofono_sim_driver_register(&driver);
2009-05-22 11:58:49 +00:00
}
2009-08-18 22:05:50 +00:00
void at_sim_exit()
2009-05-22 11:58:49 +00:00
{
2009-08-18 22:05:50 +00:00
ofono_sim_driver_unregister(&driver);
2009-05-22 11:58:49 +00:00
}