ofono/drivers/mbmmodem/gprs-context.c

484 lines
11 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
#define _GNU_SOURCE
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <glib.h>
#include <ofono/log.h>
#include <ofono/modem.h>
#include <ofono/gprs-context.h>
#include "gatchat.h"
#include "gatresult.h"
#include "mbmmodem.h"
#define MBM_E2NAP_DISCONNECTED 0
#define MBM_E2NAP_CONNECTED 1
#define MBM_E2NAP_CONNECTING 2
#define AUTH_BUF_LENGTH OFONO_GPRS_MAX_USERNAME_LENGTH + \
OFONO_GPRS_MAX_PASSWORD_LENGTH + 128
#define MAX_DNS 5
2009-12-16 03:01:30 +00:00
#define STATIC_IP_NETMASK "255.255.255.248"
static const char *none_prefix[] = { NULL };
2009-12-01 23:25:20 +00:00
static const char *e2ipcfg_prefix[] = { "*E2IPCFG:", NULL };
2009-12-02 01:38:44 +00:00
static const char *enap_prefix[] = { "*ENAP:", NULL };
static gboolean mbm_enap_poll(gpointer user_data);
2009-12-01 23:25:20 +00:00
enum mbm_state {
MBM_NONE = 0,
MBM_ENABLING = 1,
MBM_DISABLING = 2,
};
struct gprs_context_data {
GAtChat *chat;
unsigned int active_context;
2009-12-01 23:25:20 +00:00
gboolean have_e2nap;
gboolean have_e2ipcfg;
2009-12-02 01:38:44 +00:00
unsigned int enap_source;
2009-12-01 23:36:48 +00:00
enum mbm_state mbm_state;
2009-12-01 23:25:20 +00:00
union {
ofono_gprs_context_cb_t down_cb; /* Down callback */
ofono_gprs_context_up_cb_t up_cb; /* Up callback */
};
void *cb_data; /* Callback data */
int enap; /* State of the call */
};
2009-12-02 01:38:44 +00:00
static void mbm_e2ipcfg_cb(gboolean ok, GAtResult *result, gpointer user_data)
{
struct ofono_gprs_context *gc = user_data;
struct gprs_context_data *gcd = ofono_gprs_context_get_data(gc);
GAtResultIter iter;
int numdns = 0;
int type;
const char *str;
const char *ip = NULL;
const char *gateway = NULL;
const char *dns[MAX_DNS + 1];
2009-12-02 01:38:44 +00:00
struct ofono_modem *modem;
const char *interface;
gboolean success = FALSE;
if (!ok)
goto out;
g_at_result_iter_init(&iter, result);
if (g_at_result_iter_next(&iter, "*E2IPCFG:") == FALSE)
return;
while (g_at_result_iter_open_list(&iter)) {
if (g_at_result_iter_next_number(&iter, &type) == FALSE)
break;
if (g_at_result_iter_next_string(&iter, &str) == FALSE)
break;
switch (type) {
case 1:
ip = str;
break;
case 2:
gateway = str;
break;
case 3:
if (numdns < MAX_DNS)
dns[numdns++] = str;
2009-12-02 01:38:44 +00:00
break;
default:
break;
}
if (g_at_result_iter_close_list(&iter) == FALSE)
break;
}
dns[numdns] = NULL;
if (ip && gateway && numdns)
success = TRUE;
out:
modem = ofono_gprs_context_get_modem(gc);
interface = ofono_modem_get_string(modem, "NetworkInterface");
2009-12-16 03:01:30 +00:00
CALLBACK_WITH_SUCCESS(gcd->up_cb, interface, success, ip,
STATIC_IP_NETMASK, gateway,
success ? dns : NULL, gcd->cb_data);
2009-12-02 01:38:44 +00:00
gcd->mbm_state = MBM_NONE;
gcd->up_cb = NULL;
gcd->cb_data = NULL;
}
static void mbm_get_ip_details(struct ofono_gprs_context *gc)
{
struct gprs_context_data *gcd = ofono_gprs_context_get_data(gc);
struct ofono_modem *modem;
const char *interface;
if (gcd->have_e2ipcfg) {
g_at_chat_send(gcd->chat, "AT*E2IPCFG?", e2ipcfg_prefix,
mbm_e2ipcfg_cb, gc, NULL);
return;
}
modem = ofono_gprs_context_get_modem(gc);
interface = ofono_modem_get_string(modem, "NetworkInterface");
CALLBACK_WITH_SUCCESS(gcd->up_cb, interface, FALSE, NULL, NULL,
NULL, NULL, gcd->cb_data);
gcd->mbm_state = MBM_NONE;
gcd->up_cb = NULL;
gcd->cb_data = NULL;
}
static void mbm_state_changed(struct ofono_gprs_context *gc, int state)
{
struct gprs_context_data *gcd = ofono_gprs_context_get_data(gc);
if (gcd->active_context == 0)
return;
switch (state) {
case MBM_E2NAP_DISCONNECTED:
ofono_debug("MBM Context: disconnected");
if (gcd->mbm_state == MBM_DISABLING) {
CALLBACK_WITH_SUCCESS(gcd->down_cb, gcd->cb_data);
gcd->down_cb = NULL;
} else if (gcd->mbm_state == MBM_ENABLING) {
CALLBACK_WITH_FAILURE(gcd->up_cb, NULL, 0, NULL, NULL,
NULL, NULL, gcd->cb_data);
gcd->up_cb = NULL;
2009-12-18 03:44:09 +00:00
} else {
2009-12-02 01:38:44 +00:00
ofono_gprs_context_deactivated(gc, gcd->active_context);
2009-12-18 03:44:09 +00:00
}
2009-12-02 01:38:44 +00:00
gcd->mbm_state = MBM_NONE;
gcd->cb_data = NULL;
gcd->active_context = 0;
break;
case MBM_E2NAP_CONNECTED:
ofono_debug("MBM Context: connected");
if (gcd->mbm_state == MBM_ENABLING)
mbm_get_ip_details(gc);
break;
case MBM_E2NAP_CONNECTING:
ofono_debug("MBM Context: connecting");
break;
default:
break;
};
gcd->enap = state;
}
static void mbm_enap_poll_cb(gboolean ok, GAtResult *result, gpointer user_data)
{
struct ofono_gprs_context *gc = user_data;
struct gprs_context_data *gcd = ofono_gprs_context_get_data(gc);
GAtResultIter iter;
int state;
g_at_result_iter_init(&iter, result);
if (g_at_result_iter_next(&iter, "*ENAP:") == FALSE)
return;
g_at_result_iter_next_number(&iter, &state);
mbm_state_changed(gc, state);
if ((state == MBM_E2NAP_CONNECTED && gcd->mbm_state == MBM_DISABLING) ||
state == MBM_E2NAP_CONNECTING)
gcd->enap_source = g_timeout_add_seconds(1, mbm_enap_poll, gc);
}
static gboolean mbm_enap_poll(gpointer user_data)
{
struct ofono_gprs_context *gc = user_data;
struct gprs_context_data *gcd = ofono_gprs_context_get_data(gc);
g_at_chat_send(gcd->chat, "AT*ENAP?", enap_prefix,
mbm_enap_poll_cb, gc, NULL);
gcd->enap_source = 0;
return FALSE;
}
static void at_enap_down_cb(gboolean ok, GAtResult *result, gpointer user_data)
{
struct cb_data *cbd = user_data;
ofono_gprs_context_cb_t cb = cbd->cb;
struct ofono_gprs_context *gc = cbd->user;
struct gprs_context_data *gcd = ofono_gprs_context_get_data(gc);
struct ofono_error error;
2009-12-01 23:25:20 +00:00
/* Now we have to wait for the unsolicited notification to arrive */
if (ok && gcd->enap != 0) {
gcd->mbm_state = MBM_DISABLING;
gcd->down_cb = cb;
gcd->cb_data = cbd->data;
2009-12-02 01:38:44 +00:00
if (gcd->have_e2nap == FALSE)
g_at_chat_send(gcd->chat, "AT*ENAP?", enap_prefix,
mbm_enap_poll_cb, gc, NULL);
2009-12-01 23:25:20 +00:00
return;
}
decode_at_error(&error, g_at_result_final_response(result));
cb(&error, cbd->data);
}
static void mbm_enap_up_cb(gboolean ok, GAtResult *result, gpointer user_data)
{
struct cb_data *cbd = user_data;
ofono_gprs_context_up_cb_t cb = cbd->cb;
struct ofono_gprs_context *gc = cbd->user;
2009-12-01 23:25:20 +00:00
struct gprs_context_data *gcd = ofono_gprs_context_get_data(gc);
struct ofono_error error;
if (ok) {
2009-12-01 23:25:20 +00:00
gcd->mbm_state = MBM_ENABLING;
gcd->up_cb = cb;
gcd->cb_data = cbd->data;
2009-12-02 01:38:44 +00:00
if (gcd->have_e2nap == FALSE)
g_at_chat_send(gcd->chat, "AT*ENAP?", enap_prefix,
mbm_enap_poll_cb, gc, NULL);
2009-12-01 23:25:20 +00:00
return;
}
2009-12-01 23:25:20 +00:00
gcd->active_context = 0;
decode_at_error(&error, g_at_result_final_response(result));
cb(&error, NULL, FALSE, NULL, NULL, NULL, NULL, cbd->data);
}
static void mbm_cgdcont_cb(gboolean ok, GAtResult *result, gpointer user_data)
{
struct cb_data *cbd = user_data;
ofono_gprs_context_up_cb_t cb = cbd->cb;
struct ofono_gprs_context *gc = cbd->user;
struct gprs_context_data *gcd = ofono_gprs_context_get_data(gc);
struct cb_data *ncbd;
char buf[64];
dump_response("cgdcont_cb", ok, result);
if (!ok) {
struct ofono_error error;
gcd->active_context = 0;
decode_at_error(&error, g_at_result_final_response(result));
cb(&error, NULL, 0, NULL, NULL, NULL, NULL, cbd->data);
return;
}
ncbd = g_memdup(cbd, sizeof(struct cb_data));
sprintf(buf, "AT*ENAP=1,%u", gcd->active_context);
if (g_at_chat_send(gcd->chat, buf, none_prefix,
mbm_enap_up_cb, ncbd, g_free) > 0)
return;
if (ncbd)
g_free(ncbd);
gcd->active_context = 0;
CALLBACK_WITH_FAILURE(cb, NULL, 0, NULL, NULL, NULL, NULL, cbd->data);
}
static void mbm_gprs_activate_primary(struct ofono_gprs_context *gc,
const struct ofono_gprs_primary_context *ctx,
ofono_gprs_context_up_cb_t cb, void *data)
{
struct gprs_context_data *gcd = ofono_gprs_context_get_data(gc);
struct cb_data *cbd = cb_data_new(cb, data);
char buf[AUTH_BUF_LENGTH];
int len;
if (!cbd)
goto error;
gcd->active_context = ctx->cid;
cbd->user = gc;
sprintf(buf, "AT*EIAAUW=%d,1,\"%s\",\"%s\"", ctx->cid,
ctx->username, ctx->password);
if (g_at_chat_send(gcd->chat, buf, none_prefix,
NULL, NULL, NULL) == 0)
goto error;
len = sprintf(buf, "AT+CGDCONT=%u,\"IP\"", ctx->cid);
if (ctx->apn)
snprintf(buf + len, sizeof(buf) - len - 3, ",\"%s\"",
ctx->apn);
if (g_at_chat_send(gcd->chat, buf, none_prefix,
mbm_cgdcont_cb, cbd, g_free) > 0)
return;
error:
if (cbd)
g_free(cbd);
CALLBACK_WITH_FAILURE(cb, NULL, 0, NULL, NULL, NULL, NULL, data);
}
static void mbm_gprs_deactivate_primary(struct ofono_gprs_context *gc,
unsigned int cid,
ofono_gprs_context_cb_t cb, void *data)
{
struct gprs_context_data *gcd = ofono_gprs_context_get_data(gc);
struct cb_data *cbd = cb_data_new(cb, data);
if (!cbd)
goto error;
cbd->user = gc;
if (g_at_chat_send(gcd->chat, "AT*ENAP=0", none_prefix,
at_enap_down_cb, cbd, g_free) > 0)
return;
error:
if (cbd)
g_free(cbd);
CALLBACK_WITH_FAILURE(cb, data);
}
static void e2nap_notifier(GAtResult *result, gpointer user_data)
{
struct ofono_gprs_context *gc = user_data;
GAtResultIter iter;
int state;
g_at_result_iter_init(&iter, result);
if (g_at_result_iter_next(&iter, "*E2NAP:") == FALSE)
return;
g_at_result_iter_next_number(&iter, &state);
2009-12-02 01:38:44 +00:00
mbm_state_changed(gc, state);
2009-12-01 23:25:20 +00:00
}
static void mbm_e2nap_cb(gboolean ok, GAtResult *result, gpointer user_data)
{
struct ofono_gprs_context *gc = user_data;
struct gprs_context_data *gcd = ofono_gprs_context_get_data(gc);
gcd->have_e2nap = ok;
if (ok)
g_at_chat_register(gcd->chat, "*E2NAP:", e2nap_notifier,
FALSE, gc, NULL);
}
static void mbm_e2ipcfg_query_cb(gboolean ok, GAtResult *result,
gpointer user_data)
{
struct ofono_gprs_context *gc = user_data;
struct gprs_context_data *gcd = ofono_gprs_context_get_data(gc);
gcd->have_e2ipcfg = ok;
}
static int mbm_gprs_context_probe(struct ofono_gprs_context *gc,
unsigned int vendor, void *data)
{
GAtChat *chat = data;
struct gprs_context_data *gcd;
gcd = g_new0(struct gprs_context_data, 1);
gcd->chat = chat;
ofono_gprs_context_set_data(gc, gcd);
2009-12-01 23:25:20 +00:00
g_at_chat_send(chat, "AT*E2NAP=1", none_prefix, mbm_e2nap_cb, gc, NULL);
g_at_chat_send(chat, "AT*E2IPCFG=?", e2ipcfg_prefix,
mbm_e2ipcfg_query_cb, gc, NULL);
return 0;
}
static void mbm_gprs_context_remove(struct ofono_gprs_context *gc)
{
struct gprs_context_data *gcd = ofono_gprs_context_get_data(gc);
2009-12-02 01:38:44 +00:00
if (gcd->enap_source) {
g_source_remove(gcd->enap_source);
gcd->enap_source = 0;
}
ofono_gprs_context_set_data(gc, NULL);
g_free(gcd);
}
static struct ofono_gprs_context_driver driver = {
.name = "mbm",
.probe = mbm_gprs_context_probe,
.remove = mbm_gprs_context_remove,
.activate_primary = mbm_gprs_activate_primary,
.deactivate_primary = mbm_gprs_deactivate_primary,
};
void mbm_gprs_context_init()
{
ofono_gprs_context_driver_register(&driver);
}
void mbm_gprs_context_exit()
{
ofono_gprs_context_driver_unregister(&driver);
}