summaryrefslogtreecommitdiffstats
path: root/drivers/isimodem/gprs.c
blob: adac3740af676118cea363694967ae250c400d27 (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
/*
 * This file is part of oFono - Open Source Telephony
 *
 * Copyright (C) 2010  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>
#include <inttypes.h>

#include <glib.h>

#include <ofono/log.h>
#include <ofono/modem.h>
#include <ofono/gprs.h>
#include <gisi/client.h>

#include "isimodem.h"
#include "isiutil.h"
#include "gpds.h"
#include "debug.h"

/* 27.007 Section 10.1.20 <stat> */
enum network_registration_status {
	GPRS_STAT_NOT_REGISTERED = 0,
	GPRS_STAT_REGISTERED = 1,
	GPRS_STAT_SEARCHING = 2,
	GPRS_STAT_DENIED = 3,
	GPRS_STAT_UNKNOWN = 4,
	GPRS_STAT_ROAMING = 5
};

struct gprs_data {
	GIsiClient *client;
};

static void detach_ind_cb(GIsiClient *client,
				const void *restrict data, size_t len,
				uint16_t object, void *opaque)
{
	/*struct ofono_gprs *gprs = opaque;*/
	const unsigned char *msg = data;

	if (!msg || len < 3 || msg[0] != GPDS_DETACH_IND)
		return;

	DBG("detached: %s (0x%02"PRIx8")",
		gpds_isi_cause_name(msg[1]), msg[1]);

	/* TODO: Don't report this to core, it won't ever reattach */
	/*ofono_gprs_detached_notify(gprs);*/
}

static void suspend_notify(struct ofono_gprs *gprs, uint8_t suspend_status,
			uint8_t suspend_cause)
{
	int cause;

	DBG("transfer status: %s (0x%02"PRIx8") cause %s (0x%02"PRIx8")",
		gpds_transfer_status_name(suspend_status), suspend_status,
		gpds_transfer_cause_name(suspend_cause), suspend_cause);

	if (suspend_status == GPDS_TRANSFER_AVAIL) {
		ofono_gprs_resume_notify(gprs);
		return;
	}

	switch (suspend_cause) {
	case GPDS_TRANSFER_CAUSE_SUSPENDED_NO_COVERAGE:
		cause = GPRS_SUSPENDED_NO_COVERAGE;
		break;

	case GPDS_TRANSFER_CAUSE_SUSPENDED_CALL:
		cause = GPRS_SUSPENDED_CALL;
		break;

	case GPDS_TRANSFER_CAUSE_SUSPENDED_CALL_SMS:
	case GPDS_TRANSFER_CAUSE_SUSPENDED_RAU:
	case GPDS_TRANSFER_CAUSE_SUSPENDED_LU:
		cause = GPRS_SUSPENDED_SIGNALLING;
		break;

	default:
		return;
	}

	ofono_gprs_suspend_notify(gprs, cause);
}

static void transfer_status_ind_cb(GIsiClient *client,
					const void *restrict data, size_t len,
					uint16_t object, void *opaque)
{
	struct ofono_gprs *gprs = opaque;
	const unsigned char *msg = data;

	if (!msg || len < 3 || msg[0] != GPDS_TRANSFER_STATUS_IND)
		return;

	suspend_notify(gprs, msg[1], msg[2]);
}

static gboolean isi_gprs_register(gpointer user)
{
	struct ofono_gprs *gprs = user;
	struct gprs_data *gd = ofono_gprs_get_data(gprs);

	const char *debug = getenv("OFONO_ISI_DEBUG");

	if (debug && (strcmp(debug, "all") == 0 || strcmp(debug, "gpds") == 0))
		g_isi_client_set_debug(gd->client, gpds_debug, NULL);

	g_isi_subscribe(gd->client, GPDS_DETACH_IND, detach_ind_cb, gprs);
	g_isi_subscribe(gd->client, GPDS_TRANSFER_STATUS_IND,
			transfer_status_ind_cb, gprs);

	ofono_gprs_register(user);

	return FALSE;
}

static void gpds_reachable_cb(GIsiClient *client,
				gboolean alive, uint16_t object,
				void *opaque)
{
	struct ofono_gprs *gprs = opaque;

	if (!alive) {
		DBG("unable to bootsrap gprs driver");
		return;
	}

	DBG("%s (v%03d.%03d)",
		pn_resource_name(g_isi_client_resource(client)),
		g_isi_version_major(client),
		g_isi_version_minor(client));

	g_idle_add(isi_gprs_register, gprs);
}

static int isi_gprs_probe(struct ofono_gprs *gprs,
				unsigned int vendor, void *user)
{
	GIsiModem *idx = user;
	struct gprs_data *gd = g_try_new0(struct gprs_data, 1);

	if (!gd)
		return -ENOMEM;

	gd->client = g_isi_client_create(idx, PN_GPDS);
	if (!gd->client) {
		g_free(gd);
		return -ENOMEM;
	}

	ofono_gprs_set_data(gprs, gd);

	ofono_gprs_set_cid_range(gprs, 1, GPDS_MAX_CONTEXT_COUNT + 1);

	g_isi_verify(gd->client, gpds_reachable_cb, gprs);

	return 0;
}

static void isi_gprs_remove(struct ofono_gprs *gprs)
{
	struct gprs_data *data = ofono_gprs_get_data(gprs);

	if (!data)
		return;

	ofono_gprs_set_data(gprs, NULL);
	g_isi_client_destroy(data->client);
	g_free(data);
}

static gboolean attach_resp_cb(GIsiClient *client,
				const void *restrict data, size_t len,
				uint16_t object, void *opaque)
{
	const unsigned char *msg = data;
	struct isi_cb_data *cbd = opaque;
	ofono_gprs_cb_t cb = cbd->cb;

	if (!msg) {
		DBG("ISI client error: %d", g_isi_client_error(client));
		goto error;
	}

	if (len != 4 || msg[0] != GPDS_ATTACH_RESP)
		return FALSE;

	if (msg[1] == GPDS_OK) {
		CALLBACK_WITH_SUCCESS(cb, cbd->data);

		return TRUE;
	}

	DBG("attach failed: %s", gpds_status_name(msg[1]));

error:
	CALLBACK_WITH_FAILURE(cb, cbd->data);

	return TRUE;
}

static gboolean detach_resp_cb(GIsiClient *client,
				const void *restrict data, size_t len,
				uint16_t object, void *opaque)
{
	const unsigned char *msg = data;
	struct isi_cb_data *cbd = opaque;
	ofono_gprs_cb_t cb = cbd->cb;

	if (!msg) {
		DBG("ISI client error: %d", g_isi_client_error(client));
		goto error;
	}

	if (len != 3 || msg[0] != GPDS_DETACH_RESP)
		return FALSE;

	if (msg[1] == GPDS_OK) {
		CALLBACK_WITH_SUCCESS(cb, cbd->data);

		return TRUE;
	}

	DBG("detach failed: %s", gpds_status_name(msg[1]));

error:
	CALLBACK_WITH_FAILURE(cb, cbd->data);

	return TRUE;
}

static GIsiRequest *attach_request_send(GIsiClient *client, void *data)
{
	const unsigned char msg[] = {
		GPDS_ATTACH_REQ,
		GPDS_FOLLOW_OFF
	};

	return g_isi_send(client, msg, sizeof(msg), GPDS_TIMEOUT,
				attach_resp_cb, data, g_free);
}

static GIsiRequest *detach_request_send(GIsiClient *client, void *data)
{
	const unsigned char msg[] = {
		GPDS_DETACH_REQ,
		0x00, /* filler */
		0x00  /* sub-blocks */
	};

	return g_isi_send(client, msg, sizeof(msg), GPDS_TIMEOUT,
				detach_resp_cb, data, g_free);
}

static void isi_gprs_set_attached(struct ofono_gprs *gprs, int attached,
					ofono_gprs_cb_t cb, void *data)
{
	struct gprs_data *gd = ofono_gprs_get_data(gprs);
	struct isi_cb_data *cbd = isi_cb_data_new(NULL, cb, data);

	GIsiRequest *req;

	if (!cbd)
		goto error;

	if (attached)
		req = attach_request_send(gd->client, cbd);
	else
		req = detach_request_send(gd->client, cbd);

	if (req)
		return;

error:
	CALLBACK_WITH_FAILURE(cb, data);
	g_free(cbd);
}

static gboolean status_resp_cb(GIsiClient *client,
				const void *restrict data, size_t len,
				uint16_t object, void *opaque)
{
	const unsigned char *msg = data;
	struct isi_cb_data *cbd = opaque;
	ofono_gprs_status_cb_t cb = cbd->cb;
	struct ofono_gprs *gprs = cbd->data;
	int status;

	if (!msg) {
		DBG("ISI client error: %d", g_isi_client_error(client));
		goto error;
	}

	if (len < 13 || msg[0] != GPDS_STATUS_RESP)
		return FALSE;

	/* FIXME: the core still expects reg status, and not a boolean
	 * attached status here.*/
	switch (msg[1]) {
	case GPDS_ATTACHED:
		status = GPRS_STAT_REGISTERED;
		break;
	case GPDS_DETACHED:
		status = GPRS_STAT_NOT_REGISTERED;
		break;
	default:
		status = GPRS_STAT_UNKNOWN;
	}

	suspend_notify(gprs, msg[11], msg[12]);

	CALLBACK_WITH_SUCCESS(cb, status, cbd->data);

	return TRUE;

error:
	CALLBACK_WITH_FAILURE(cb, -1, cbd->data);

	return TRUE;
}

static void isi_gprs_attached_status(struct ofono_gprs *gprs,
						ofono_gprs_status_cb_t cb,
						void *data)
{
	struct gprs_data *gd = ofono_gprs_get_data(gprs);
	struct isi_cb_data *cbd = isi_cb_data_new(NULL, cb, data);

	const unsigned char msg[] = {
		GPDS_STATUS_REQ,
	};

	if (!cbd)
		goto error;

	if (g_isi_send(gd->client, msg, sizeof(msg), GPDS_TIMEOUT,
			status_resp_cb, cbd, g_free))
		return;

error:
	CALLBACK_WITH_FAILURE(cb, -1, data);
	g_free(cbd);

}

static struct ofono_gprs_driver driver = {
	.name			= "isimodem",
	.probe			= isi_gprs_probe,
	.remove			= isi_gprs_remove,
	.set_attached		= isi_gprs_set_attached,
	.attached_status	= isi_gprs_attached_status,
};

void isi_gprs_init(void)
{
	ofono_gprs_driver_register(&driver);
}

void isi_gprs_exit(void)
{
	ofono_gprs_driver_unregister(&driver);
}