ofono/drivers/isimodem/cbs.c

207 lines
4.8 KiB
C
Raw Normal View History

2009-09-14 09:51:48 +00:00
/*
* This file is part of oFono - Open Source Telephony
*
* Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
*
* 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 <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
2010-05-14 14:04:54 +00:00
#include <inttypes.h>
2009-09-14 09:51:48 +00:00
#include <glib.h>
#include <gisi/client.h>
#include <ofono/log.h>
#include <ofono/modem.h>
#include <ofono/cbs.h>
#include "isimodem.h"
#include "isiutil.h"
#include "sms.h"
#include "debug.h"
2009-09-14 09:51:48 +00:00
struct cbs_data {
GIsiClient *client;
};
static void isi_set_topics(struct ofono_cbs *cbs, const char *topics,
ofono_cbs_set_cb_t cb, void *data)
{
DBG("Not implemented (topics=%s), all topics accepted", topics);
CALLBACK_WITH_SUCCESS(cb, data);
2009-09-14 09:51:48 +00:00
}
static void isi_clear_topics(struct ofono_cbs *cbs,
ofono_cbs_set_cb_t cb, void *data)
{
DBG("Not implemented");
CALLBACK_WITH_SUCCESS(cb, data);
2009-09-14 09:51:48 +00:00
}
static void routing_ntf_cb(GIsiClient *client,
const void *restrict data, size_t len,
uint16_t object, void *opaque)
2009-09-14 09:51:48 +00:00
{
const unsigned char *msg = data;
struct ofono_cbs *cbs = opaque;
if (!msg || len < 3 || msg[0] != SMS_GSM_CB_ROUTING_NTF)
return;
2010-09-27 12:49:16 +00:00
/* Skipping header(s) */
msg += 5;
len -= 5;
/*
* The next 88 bytes of the sub-block are the actual CBS PDU,
* followed by an informational data length field, and filler.
*/
ofono_cbs_notify(cbs, msg, len - 2);
2009-09-14 09:51:48 +00:00
}
static gboolean routing_resp_cb(GIsiClient *client,
const void *restrict data, size_t len,
uint16_t object, void *opaque)
2009-09-14 09:51:48 +00:00
{
const unsigned char *msg = data;
struct ofono_cbs *cbs = opaque;
2010-01-12 16:31:34 +00:00
if (!msg) {
2009-09-14 09:51:48 +00:00
DBG("ISI client error: %d", g_isi_client_error(client));
return TRUE;
2009-09-14 09:51:48 +00:00
}
if (len < 3 || msg[0] != SMS_GSM_CB_ROUTING_RESP)
return FALSE;
2009-09-14 09:51:48 +00:00
if (msg[1] != SMS_OK) {
if (msg[1] == SMS_ERR_PP_RESERVED)
DBG("Request failed: 0x%02"PRIx8" (%s).\n\n "
"Unable to bootstrap CBS routing.\n "
"It appears some other component is "
"already\n registered as the CBS "
"routing endpoint.\n As a consequence, "
"receiving CBSs is NOT going to work.\n\n",
msg[1], sms_isi_cause_name(msg[1]));
return TRUE;
2009-09-14 09:51:48 +00:00
}
2010-05-14 14:04:54 +00:00
g_isi_subscribe(client, SMS_GSM_CB_ROUTING_NTF, routing_ntf_cb,
cbs);
2009-09-14 09:51:48 +00:00
2010-01-12 08:57:43 +00:00
ofono_cbs_register(cbs);
return TRUE;
2009-09-14 09:51:48 +00:00
}
static int isi_cbs_probe(struct ofono_cbs *cbs, unsigned int vendor,
void *user)
{
GIsiModem *idx = user;
struct cbs_data *cd = g_try_new0(struct cbs_data, 1);
2010-05-14 14:04:54 +00:00
const char *debug = NULL;
2009-09-14 09:51:48 +00:00
unsigned char msg[] = {
SMS_GSM_CB_ROUTING_REQ,
SMS_ROUTING_SET,
SMS_GSM_ROUTING_MODE_ALL,
SMS_CB_NOT_ALLOWED_IDS_LIST,
0x00, /* Subject count */
0x00, /* Language count */
0x00, /* CB range */
0x00, /* Subject list MSBS */
0x00, /* Subject list LSBS */
0x00 /* Languages */
};
if (!cd)
return -ENOMEM;
cd->client = g_isi_client_create(idx, PN_SMS);
if (!cd->client)
return -ENOMEM;
ofono_cbs_set_data(cbs, cd);
2010-05-14 14:04:54 +00:00
debug = getenv("OFONO_ISI_DEBUG");
if (debug && (strcmp(debug, "all") == 0 || strcmp(debug, "cbs") == 0))
g_isi_client_set_debug(cd->client, sms_debug, NULL);
2009-09-14 09:51:48 +00:00
if (!g_isi_request_make(cd->client, msg, sizeof(msg), CBS_TIMEOUT,
routing_resp_cb, cbs))
DBG("Failed to set CBS routing.");
return 0;
}
static void isi_cbs_remove(struct ofono_cbs *cbs)
{
struct cbs_data *data = ofono_cbs_get_data(cbs);
2010-05-14 14:04:54 +00:00
uint8_t msg[] = {
SMS_GSM_CB_ROUTING_REQ,
SMS_ROUTING_RELEASE,
SMS_GSM_ROUTING_MODE_ALL,
SMS_CB_NOT_ALLOWED_IDS_LIST,
0x00, /* Subject count */
0x00, /* Language count */
0x00, /* CB range */
0x00, /* Subject list MSBS */
0x00, /* Subject list LSBS */
0x00 /* Languages */
};
if (!data)
return;
if (data->client) {
/* Send a promiscuous routing release, so as not to
* hog resources unnecessarily after being removed */
g_isi_request_make(data->client, msg, sizeof(msg),
CBS_TIMEOUT, NULL, NULL);
2009-09-14 09:51:48 +00:00
g_isi_client_destroy(data->client);
}
2010-05-14 14:04:54 +00:00
g_free(data);
2009-09-14 09:51:48 +00:00
}
static struct ofono_cbs_driver driver = {
.name = "isimodem",
.probe = isi_cbs_probe,
.remove = isi_cbs_remove,
.set_topics = isi_set_topics,
.clear_topics = isi_clear_topics
};
void isi_cbs_init()
{
ofono_cbs_driver_register(&driver);
}
void isi_cbs_exit()
{
ofono_cbs_driver_unregister(&driver);
}