summaryrefslogtreecommitdiff
path: root/android/ipc.c
blob: 3b3c95293a7e74bd037a0cd7f8f0c166b8b01d18 (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
// SPDX-License-Identifier: LGPL-2.1-or-later
/*
 *
 *  BlueZ - Bluetooth protocol stack for Linux
 *
 *  Copyright (C) 2013-2014  Intel Corporation. All rights reserved.
 *
 *
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <stddef.h>
#include <errno.h>
#include <stdint.h>
#include <string.h>
#include <signal.h>
#include <stdbool.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <unistd.h>
#include <glib.h>

#include "ipc-common.h"
#include "ipc.h"
#include "src/log.h"

struct service_handler {
	const struct ipc_handler *handler;
	uint8_t size;
};

struct ipc {
	struct service_handler *services;
	int service_max;

	const char *path;
	size_t size;

	GIOChannel *cmd_io;
	guint cmd_watch;

	bool notifications;
	GIOChannel *notif_io;
	guint notif_watch;

	ipc_disconnect_cb disconnect_cb;
	void *disconnect_cb_data;
};

static void ipc_disconnect(struct ipc *ipc, bool in_cleanup)
{
	if (ipc->cmd_watch) {
		g_source_remove(ipc->cmd_watch);
		ipc->cmd_watch = 0;
	}

	if (ipc->cmd_io) {
		g_io_channel_shutdown(ipc->cmd_io, TRUE, NULL);
		g_io_channel_unref(ipc->cmd_io);
		ipc->cmd_io = NULL;
	}

	if (ipc->notif_watch) {
		g_source_remove(ipc->notif_watch);
		ipc->notif_watch = 0;
	}

	if (ipc->notif_io) {
		g_io_channel_shutdown(ipc->notif_io, TRUE, NULL);
		g_io_channel_unref(ipc->notif_io);
		ipc->notif_io = NULL;
	}

	if (in_cleanup)
		return;

	if (ipc->disconnect_cb)
		ipc->disconnect_cb(ipc->disconnect_cb_data);
}

static int ipc_handle_msg(struct service_handler *handlers, size_t max_index,
						const void *buf, ssize_t len)
{
	const struct ipc_hdr *msg = buf;
	const struct ipc_handler *handler;

	if (len < (ssize_t) sizeof(*msg)) {
		DBG("message too small (%zd bytes)", len);
		return -EBADMSG;
	}

	if (len != (ssize_t) (sizeof(*msg) + msg->len)) {
		DBG("message malformed (%zd bytes)", len);
		return -EBADMSG;
	}

	/* if service is valid */
	if (msg->service_id > max_index) {
		DBG("unknown service (0x%x)", msg->service_id);
		return -EOPNOTSUPP;
	}

	/* if service is registered */
	if (!handlers[msg->service_id].handler) {
		DBG("service not registered (0x%x)", msg->service_id);
		return -EOPNOTSUPP;
	}

	/* if opcode is valid */
	if (msg->opcode == IPC_OP_STATUS ||
			msg->opcode > handlers[msg->service_id].size) {
		DBG("invalid opcode 0x%x for service 0x%x", msg->opcode,
							msg->service_id);
		return -EOPNOTSUPP;
	}

	/* opcode is table offset + 1 */
	handler = &handlers[msg->service_id].handler[msg->opcode - 1];

	/* if payload size is valid */
	if ((handler->var_len && handler->data_len > msg->len) ||
			(!handler->var_len && handler->data_len != msg->len)) {
		DBG("invalid size for opcode 0x%x service 0x%x",
						msg->opcode, msg->service_id);
		return -EMSGSIZE;
	}

	handler->handler(msg->payload, msg->len);

	return 0;
}

static gboolean cmd_watch_cb(GIOChannel *io, GIOCondition cond,
							gpointer user_data)
{
	struct ipc *ipc = user_data;

	char buf[IPC_MTU];
	ssize_t ret;
	int fd, err;

	if (cond & (G_IO_NVAL | G_IO_ERR | G_IO_HUP)) {
		info("IPC: command socket closed");

		ipc->cmd_watch = 0;
		goto fail;
	}

	fd = g_io_channel_unix_get_fd(io);

	ret = read(fd, buf, sizeof(buf));
	if (ret < 0) {
		error("IPC: command read failed (%s)", strerror(errno));
		goto fail;
	}

	err = ipc_handle_msg(ipc->services, ipc->service_max, buf, ret);
	if (err < 0) {
		error("IPC: failed to handle message (%s)", strerror(-err));
		goto fail;
	}

	return TRUE;

fail:
	ipc_disconnect(ipc, false);

	return FALSE;
}

static gboolean notif_watch_cb(GIOChannel *io, GIOCondition cond,
							gpointer user_data)
{
	struct ipc *ipc = user_data;

	info("IPC: notification socket closed");

	ipc->notif_watch = 0;

	ipc_disconnect(ipc, false);

	return FALSE;
}

static GIOChannel *ipc_connect(const char *path, size_t size,
					GIOFunc connect_cb, void *user_data)
{
	struct sockaddr_un addr;
	GIOCondition cond;
	GIOChannel *io;
	int sk;

	sk = socket(PF_LOCAL, SOCK_SEQPACKET, 0);
	if (sk < 0) {
		error("IPC: failed to create socket: %d (%s)", errno,
							strerror(errno));
		return NULL;
	}

	io = g_io_channel_unix_new(sk);

	g_io_channel_set_close_on_unref(io, TRUE);
	g_io_channel_set_flags(io, G_IO_FLAG_NONBLOCK, NULL);

	memset(&addr, 0, sizeof(addr));
	addr.sun_family = AF_UNIX;

	memcpy(addr.sun_path, path, size);

	connect(sk, (struct sockaddr *) &addr, sizeof(addr));

	cond = G_IO_OUT | G_IO_ERR | G_IO_HUP | G_IO_NVAL;

	g_io_add_watch(io, cond, connect_cb, user_data);

	return io;
}

static gboolean notif_connect_cb(GIOChannel *io, GIOCondition cond,
							gpointer user_data)
{
	struct ipc *ipc = user_data;

	DBG("");

	if (cond & (G_IO_NVAL | G_IO_ERR | G_IO_HUP)) {
		error("IPC: notification socket connect failed");

		ipc_disconnect(ipc, false);

		return FALSE;
	}

	cond = G_IO_ERR | G_IO_HUP | G_IO_NVAL;

	ipc->notif_watch = g_io_add_watch(io, cond, notif_watch_cb, ipc);

	cond = G_IO_IN | G_IO_ERR | G_IO_HUP | G_IO_NVAL;

	ipc->cmd_watch = g_io_add_watch(ipc->cmd_io, cond, cmd_watch_cb, ipc);

	info("IPC: successfully connected (with notifications)");

	return FALSE;
}

static gboolean cmd_connect_cb(GIOChannel *io, GIOCondition cond,
							gpointer user_data)
{
	struct ipc *ipc = user_data;

	DBG("");

	if (cond & (G_IO_NVAL | G_IO_ERR | G_IO_HUP)) {
		error("IPC: command socket connect failed");
		ipc_disconnect(ipc, false);

		return FALSE;
	}

	if (ipc->notifications) {
		ipc->notif_io = ipc_connect(ipc->path, ipc->size,
							notif_connect_cb, ipc);
		if (!ipc->notif_io)
			ipc_disconnect(ipc, false);

		return FALSE;
	}

	cond = G_IO_IN | G_IO_ERR | G_IO_HUP | G_IO_NVAL;

	ipc->cmd_watch = g_io_add_watch(ipc->cmd_io, cond, cmd_watch_cb, ipc);

	info("IPC: successfully connected (without notifications)");

	return FALSE;
}

struct ipc *ipc_init(const char *path, size_t size, int max_service_id,
					bool notifications,
					ipc_disconnect_cb cb, void *cb_data)
{
	struct ipc *ipc;

	ipc = g_new0(struct ipc, 1);

	ipc->services = g_new0(struct service_handler, max_service_id + 1);
	ipc->service_max = max_service_id;

	ipc->path = path;
	ipc->size = size;

	ipc->notifications = notifications;

	ipc->cmd_io = ipc_connect(path, size, cmd_connect_cb, ipc);
	if (!ipc->cmd_io) {
		g_free(ipc->services);
		g_free(ipc);
		return NULL;
	}

	ipc->disconnect_cb = cb;
	ipc->disconnect_cb_data = cb_data;

	return ipc;
}

void ipc_cleanup(struct ipc *ipc)
{
	ipc_disconnect(ipc, true);

	g_free(ipc->services);
	g_free(ipc);
}

static void ipc_send(int sk, uint8_t service_id, uint8_t opcode, uint16_t len,
							void *param, int fd)
{
	struct msghdr msg;
	struct iovec iv[2];
	struct ipc_hdr m;
	char cmsgbuf[CMSG_SPACE(sizeof(int))];
	struct cmsghdr *cmsg;

	memset(&msg, 0, sizeof(msg));
	memset(&m, 0, sizeof(m));
	memset(cmsgbuf, 0, sizeof(cmsgbuf));

	m.service_id = service_id;
	m.opcode = opcode;
	m.len = len;

	iv[0].iov_base = &m;
	iv[0].iov_len = sizeof(m);

	iv[1].iov_base = param;
	iv[1].iov_len = len;

	msg.msg_iov = iv;
	msg.msg_iovlen = 2;

	if (fd >= 0) {
		msg.msg_control = cmsgbuf;
		msg.msg_controllen = sizeof(cmsgbuf);

		cmsg = CMSG_FIRSTHDR(&msg);
		cmsg->cmsg_level = SOL_SOCKET;
		cmsg->cmsg_type = SCM_RIGHTS;
		cmsg->cmsg_len = CMSG_LEN(sizeof(int));

		/* Initialize the payload */
		memcpy(CMSG_DATA(cmsg), &fd, sizeof(int));
	}

	if (sendmsg(sk, &msg, 0) < 0) {
		error("IPC send failed :%s", strerror(errno));

		/* TODO disconnect IPC here when this function becomes static */
		raise(SIGTERM);
	}
}

void ipc_send_rsp(struct ipc *ipc, uint8_t service_id, uint8_t opcode,
								uint8_t status)
{
	struct ipc_status s;
	int sk;

	sk = g_io_channel_unix_get_fd(ipc->cmd_io);

	if (status == IPC_STATUS_SUCCESS) {
		ipc_send(sk, service_id, opcode, 0, NULL, -1);
		return;
	}

	s.code = status;

	ipc_send(sk, service_id, IPC_OP_STATUS, sizeof(s), &s, -1);
}

void ipc_send_rsp_full(struct ipc *ipc, uint8_t service_id, uint8_t opcode,
					uint16_t len, void *param, int fd)
{
	ipc_send(g_io_channel_unix_get_fd(ipc->cmd_io), service_id, opcode, len,
								param, fd);
}

void ipc_send_notif(struct ipc *ipc, uint8_t service_id, uint8_t opcode,
						uint16_t len, void *param)
{
	return ipc_send_notif_with_fd(ipc, service_id, opcode, len, param, -1);
}

void ipc_send_notif_with_fd(struct ipc *ipc, uint8_t service_id, uint8_t opcode,
					uint16_t len, void *param, int fd)
{
	if (!ipc || !ipc->notif_io)
		return;

	ipc_send(g_io_channel_unix_get_fd(ipc->notif_io), service_id, opcode,
								len, param, fd);
}

void ipc_register(struct ipc *ipc, uint8_t service,
			const struct ipc_handler *handlers, uint8_t size)
{
	if (service > ipc->service_max)
		return;

	ipc->services[service].handler = handlers;
	ipc->services[service].size = size;
}

void ipc_unregister(struct ipc *ipc, uint8_t service)
{
	if (service > ipc->service_max)
		return;

	ipc->services[service].handler = NULL;
	ipc->services[service].size = 0;
}