summaryrefslogtreecommitdiffstats
path: root/src/ussd.c
blob: c9796e55cb67b8b9106d249365aabb6d914c618f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
/*
 *
 *  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 <stdio.h>

#include <dbus/dbus.h>
#include <glib.h>
#include <gdbus.h>

#include "ofono.h"

#include "dbus-gsm.h"
#include "modem.h"
#include "driver.h"
#include "common.h"
#include "ussd.h"

#define SUPPLEMENTARY_SERVICES_INTERFACE "org.ofono.SupplementaryServices"

#define USSD_FLAG_PENDING 0x1

enum ussd_state {
	USSD_STATE_IDLE = 0,
	USSD_STATE_ACTIVE = 1,
	USSD_STATE_USER_ACTION = 2
};

static struct ussd_data *ussd_create()
{
	struct ussd_data *r;

	r = g_try_new0(struct ussd_data, 1);

	return r;
}

static void ussd_destroy(gpointer data)
{
	struct ofono_modem *modem = data;
	struct ussd_data *ussd = modem->ussd;

	g_free(ussd);
}

struct ss_control_entry {
	char *service;
	ss_control_cb_t cb;
};

static struct ss_control_entry *ss_control_entry_create(const char *service,
							ss_control_cb_t cb)
{
	struct ss_control_entry *r;

	r = g_try_new0(struct ss_control_entry, 1);

	if (!r)
		return r;

	r->service = g_strdup(service);
	r->cb = cb;

	return r;
}

static void ss_control_entry_destroy(struct ss_control_entry *ca)
{
	g_free(ca->service);
	g_free(ca);
}

static gint ss_control_entry_compare(gconstpointer a, gconstpointer b)
{
	const struct ss_control_entry *ca = a;
	const struct ss_control_entry *cb = b;
	int ret;

	ret = strcmp(ca->service, cb->service);

	if (ret)
		return ret;

	if (ca->cb < cb->cb)
		return -1;

	if (ca->cb > cb->cb)
		return 1;

	return 0;
}

static gint ss_control_entry_find_by_service(gconstpointer a, gconstpointer b)
{
	const struct ss_control_entry *ca = a;

	return strcmp(ca->service, b);
}

gboolean ss_control_register(struct ofono_modem *modem, const char *str,
				ss_control_cb_t cb)
{
	struct ss_control_entry *entry;

	if (!modem)
		return FALSE;

	entry = ss_control_entry_create(str, cb);

	if (!entry)
		return FALSE;

	modem->ss_control_list = g_slist_append(modem->ss_control_list, entry);

	return TRUE;
}

void ss_control_unregister(struct ofono_modem *modem, const char *str,
				ss_control_cb_t cb)
{
	const struct ss_control_entry entry = { (char *)str, cb };
	GSList *l;

	if (!modem)
		return;

	l = g_slist_find_custom(modem->ss_control_list, &entry,
				ss_control_entry_compare);

	if (!l)
		return;

	ss_control_entry_destroy(l->data);
	modem->ss_control_list = g_slist_remove(modem->ss_control_list,
						l->data);
}

static gboolean recognized_control_string(struct ofono_modem *modem,
						const char *ss_str,
						DBusMessage *msg)
{
	char *str = g_strdup(ss_str);
	char *sc, *sia, *sib, *sic, *dn;
	int type;
	gboolean ret = FALSE;

	ofono_debug("parsing control string");

	if (parse_ss_control_string(str, &type, &sc, &sia, &sib, &sic, &dn)) {
		GSList *l = modem->ss_control_list;

		ofono_debug("Got parse result: %d, %s, %s, %s, %s, %s",
				type, sc, sia, sib, sic, dn);

		while ((l = g_slist_find_custom(l, sc,
				ss_control_entry_find_by_service)) != NULL) {
			struct ss_control_entry *entry = l->data;

			if (entry->cb(modem, type, sc, sia, sib, sic, dn, msg)) {
				ret = TRUE;
				goto out;
			}

			l = l->next;
		}
	}

	/* TODO: Handle all strings that control voice calls */

	/* TODO: Handle Multiple subscriber profile DN*59#SEND and *59#SEND
	 */

	/* Note: SIM PIN/PIN2 change and unblock and IMEI presentation
	 * procedures are not handled by the daemon since they are not followed
	 * by SEND and are not valid USSD requests.
	 */

	/* TODO: Handle Password registration according to 22.030 Section 6.5.4
	 */

out:
	g_free(str);

	return ret;
}

void ofono_ussd_notify(struct ofono_modem *modem, int status, const char *str)
{
	struct ussd_data *ussd = modem->ussd;
	DBusConnection *conn = dbus_gsm_connection();
	const char *ussdstr = "USSD";
	const char sig[] = { DBUS_TYPE_STRING, 0 };
	DBusMessage *reply;
	DBusMessageIter iter;
	DBusMessageIter variant;

	if (status == USSD_STATUS_NOT_SUPPORTED) {
		ussd->state = USSD_STATE_IDLE;
		reply = dbus_gsm_not_supported(ussd->pending);
		goto out;
	}

	if (status == USSD_STATUS_TIMED_OUT) {
		ussd->state = USSD_STATE_IDLE;
		reply = dbus_gsm_timed_out(ussd->pending);
		goto out;
	}

	/* TODO: Rework this in the Agent framework */
	if (ussd->state == USSD_STATE_ACTIVE) {
		if (status == USSD_STATUS_ACTION_REQUIRED) {
			ofono_error("Unable to handle action required ussd");
			return;
		}

		reply = dbus_message_new_method_return(ussd->pending);

		dbus_message_iter_init_append(reply, &iter);

		dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING,
						&ussdstr);

		dbus_message_iter_open_container(&iter, DBUS_TYPE_VARIANT, sig,
							&variant);

		dbus_message_iter_append_basic(&variant, DBUS_TYPE_STRING,
						&str);

		dbus_message_iter_close_container(&iter, &variant);

		ussd->state = USSD_STATE_IDLE;
	} else {
		ofono_error("Received an unsolicited USSD, ignoring for now...");
		ofono_debug("USSD is: status: %d, %s", status, str);

		return;
	}

out:
	g_dbus_send_message(conn, reply);

	dbus_message_unref(ussd->pending);
	ussd->pending = NULL;
}

static void ussd_callback(const struct ofono_error *error, void *data)
{
	struct ussd_data *ussd = data;
	DBusConnection *conn = dbus_gsm_connection();
	DBusMessage *reply;

	if (error->type != OFONO_ERROR_TYPE_NO_ERROR)
		ofono_debug("ussd request failed with error: %s",
				telephony_error_to_str(error));

	ussd->flags &= ~USSD_FLAG_PENDING;

	if (!ussd->pending)
		return;

	if (error->type == OFONO_ERROR_TYPE_NO_ERROR) {
		ussd->state = USSD_STATE_ACTIVE;
		return;
	}

	reply = dbus_gsm_failed(ussd->pending);

	g_dbus_send_message(conn, reply);

	dbus_message_unref(ussd->pending);
	ussd->pending = NULL;
}

static DBusMessage *ussd_initiate(DBusConnection *conn, DBusMessage *msg,
					void *data)
{
	struct ofono_modem *modem = data;
	struct ussd_data *ussd = modem->ussd;
	const char *str;

	if (ussd->flags & USSD_FLAG_PENDING)
		return dbus_gsm_busy(msg);

	if (ussd->state == USSD_STATE_ACTIVE)
		return dbus_gsm_busy(msg);

	if (dbus_message_get_args(msg, NULL, DBUS_TYPE_STRING, &str,
					DBUS_TYPE_INVALID) == FALSE)
		return dbus_gsm_invalid_args(msg);

	if (strlen(str) == 0)
		return dbus_gsm_invalid_format(msg);

	ofono_debug("checking if this is a recognized control string");
	if (recognized_control_string(modem, str, msg))
		return NULL;

	ofono_debug("No.., checking if this is a USSD string");
	if (!valid_ussd_string(str))
		return dbus_gsm_invalid_format(msg);

	ofono_debug("OK, running USSD request");

	if (!ussd->ops->request)
		return dbus_gsm_not_implemented(msg);

	ussd->flags |= USSD_FLAG_PENDING;
	ussd->pending = dbus_message_ref(msg);

	ussd->ops->request(modem, str, ussd_callback, ussd);

	return NULL;
}

static void ussd_cancel_callback(const struct ofono_error *error, void *data)
{
	struct ussd_data *ussd = data;
	DBusMessage *reply;

	if (error->type != OFONO_ERROR_TYPE_NO_ERROR)
		ofono_debug("ussd cancel failed with error: %s",
				telephony_error_to_str(error));

	ussd->flags &= ~USSD_FLAG_PENDING;

	if (!ussd->pending)
		return;

	if (error->type == OFONO_ERROR_TYPE_NO_ERROR) {
		ussd->state = USSD_STATE_IDLE;

		reply = dbus_message_new_method_return(ussd->pending);
	} else
		reply = dbus_gsm_failed(ussd->pending);

	dbus_gsm_pending_reply(&ussd->pending, reply);
}

static DBusMessage *ussd_cancel(DBusConnection *conn, DBusMessage *msg,
					void *data)
{
	struct ofono_modem *modem = data;
	struct ussd_data *ussd = modem->ussd;

	if (ussd->flags & USSD_FLAG_PENDING)
		return dbus_gsm_busy(msg);

	if (ussd->state == USSD_STATE_IDLE)
		return dbus_gsm_not_active(msg);

	if (!ussd->ops->cancel)
		return dbus_gsm_not_implemented(msg);

	ussd->flags |= USSD_FLAG_PENDING;
	ussd->pending = dbus_message_ref(msg);

	ussd->ops->cancel(modem, ussd_cancel_callback, ussd);

	return NULL;
}

static GDBusMethodTable ussd_methods[] = {
	{ "Initiate",	"s",	"sv",	ussd_initiate,
					G_DBUS_METHOD_FLAG_ASYNC },
	{ "Cancel",	"",	"",	ussd_cancel,
					G_DBUS_METHOD_FLAG_ASYNC },
	{ }
};

static GDBusSignalTable ussd_signals[] = {
	{ }
};

int ofono_ussd_register(struct ofono_modem *modem, struct ofono_ussd_ops *ops)
{
	DBusConnection *conn = dbus_gsm_connection();

	if (modem == NULL)
		return -1;

	if (ops == NULL)
		return -1;

	modem->ussd = ussd_create();

	if (modem->ussd == NULL)
		return -1;

	modem->ussd->ops = ops;

	if (!g_dbus_register_interface(conn, modem->path,
					SUPPLEMENTARY_SERVICES_INTERFACE,
					ussd_methods, ussd_signals, NULL,
					modem, ussd_destroy)) {
		ofono_error("Could not create %s interface",
				SUPPLEMENTARY_SERVICES_INTERFACE);

		ussd_destroy(modem->ussd);

		return -1;
	}

	modem_add_interface(modem, SUPPLEMENTARY_SERVICES_INTERFACE);

	return 0;
}

void ofono_ussd_unregister(struct ofono_modem *modem)
{
	DBusConnection *conn = dbus_gsm_connection();

	if (modem->ussd == NULL)
		return;

	modem_remove_interface(modem, SUPPLEMENTARY_SERVICES_INTERFACE);
	g_dbus_unregister_interface(conn, modem->path,
					SUPPLEMENTARY_SERVICES_INTERFACE);
}