2013-10-23 15:14:58 +08:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* BlueZ - Bluetooth protocol stack for Linux
|
|
|
|
*
|
2014-02-12 02:42:56 +08:00
|
|
|
* Copyright (C) 2013-2014 Intel Corporation. All rights reserved.
|
2013-10-23 15:14:58 +08:00
|
|
|
*
|
|
|
|
*
|
2014-02-12 02:42:56 +08:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2013-10-23 15:14:58 +08:00
|
|
|
*
|
2014-02-12 02:42:56 +08:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2013-10-23 15:14:58 +08:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2014-02-12 02:42:56 +08:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2013-10-23 15:14:58 +08:00
|
|
|
*
|
2014-02-12 02:42:56 +08:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2013-10-23 15:14:58 +08:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-11-04 17:34:58 +08:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
2013-10-23 15:14:58 +08:00
|
|
|
#include <stdint.h>
|
2013-10-23 19:04:41 +08:00
|
|
|
#include <stdbool.h>
|
2013-10-29 17:48:15 +08:00
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
2014-04-18 21:40:05 +08:00
|
|
|
#include <ctype.h>
|
2013-10-23 15:14:58 +08:00
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
2013-10-29 17:48:15 +08:00
|
|
|
#include "btio/btio.h"
|
2013-10-23 19:04:41 +08:00
|
|
|
#include "lib/bluetooth.h"
|
2013-11-01 16:58:43 +08:00
|
|
|
#include "lib/sdp.h"
|
|
|
|
#include "lib/sdp_lib.h"
|
2013-10-29 17:48:15 +08:00
|
|
|
#include "src/shared/mgmt.h"
|
2014-03-14 21:13:02 +08:00
|
|
|
#include "src/shared/util.h"
|
2014-05-28 19:18:18 +08:00
|
|
|
#include "src/shared/uhid.h"
|
2013-11-01 16:58:43 +08:00
|
|
|
#include "src/sdp-client.h"
|
2014-01-21 20:12:00 +08:00
|
|
|
#include "src/uuid-helper.h"
|
2014-01-26 16:23:15 +08:00
|
|
|
#include "src/log.h"
|
2013-10-29 17:48:15 +08:00
|
|
|
|
2013-10-23 15:14:58 +08:00
|
|
|
#include "hal-msg.h"
|
2014-02-25 00:05:03 +08:00
|
|
|
#include "ipc-common.h"
|
2013-10-23 15:14:58 +08:00
|
|
|
#include "ipc.h"
|
2014-06-03 01:24:36 +08:00
|
|
|
#include "bluetooth.h"
|
|
|
|
#include "gatt.h"
|
|
|
|
#include "hog.h"
|
2013-11-08 00:17:03 +08:00
|
|
|
#include "hidhost.h"
|
2013-10-29 17:48:15 +08:00
|
|
|
#include "utils.h"
|
|
|
|
|
|
|
|
#define L2CAP_PSM_HIDP_CTRL 0x11
|
|
|
|
#define L2CAP_PSM_HIDP_INTR 0x13
|
2013-10-23 15:14:58 +08:00
|
|
|
|
2013-11-06 05:09:07 +08:00
|
|
|
/* HID message types */
|
2013-11-08 20:08:51 +08:00
|
|
|
#define HID_MSG_CONTROL 0x10
|
2013-11-06 05:09:11 +08:00
|
|
|
#define HID_MSG_GET_REPORT 0x40
|
2013-11-06 05:09:13 +08:00
|
|
|
#define HID_MSG_SET_REPORT 0x50
|
2013-11-06 05:09:07 +08:00
|
|
|
#define HID_MSG_GET_PROTOCOL 0x60
|
2013-11-06 05:09:08 +08:00
|
|
|
#define HID_MSG_SET_PROTOCOL 0x70
|
2013-11-06 05:09:07 +08:00
|
|
|
#define HID_MSG_DATA 0xa0
|
|
|
|
|
2013-11-06 05:09:11 +08:00
|
|
|
/* HID data types */
|
|
|
|
#define HID_DATA_TYPE_INPUT 0x01
|
|
|
|
#define HID_DATA_TYPE_OUTPUT 0x02
|
|
|
|
#define HID_DATA_TYPE_FEATURE 0x03
|
|
|
|
|
2013-11-06 05:09:07 +08:00
|
|
|
/* HID protocol header parameters */
|
|
|
|
#define HID_PROTO_BOOT 0x00
|
|
|
|
#define HID_PROTO_REPORT 0x01
|
|
|
|
|
2013-11-06 05:09:11 +08:00
|
|
|
/* HID GET REPORT Size Field */
|
|
|
|
#define HID_GET_REPORT_SIZE_FIELD 0x08
|
|
|
|
|
2013-11-08 20:08:51 +08:00
|
|
|
/* HID Virtual Cable Unplug */
|
|
|
|
#define HID_VIRTUAL_CABLE_UNPLUG 0x05
|
|
|
|
|
2014-06-03 01:24:36 +08:00
|
|
|
#define HOG_UUID "00001812-0000-1000-8000-00805f9b34fb"
|
|
|
|
|
2013-11-13 07:48:16 +08:00
|
|
|
static bdaddr_t adapter_addr;
|
|
|
|
|
2013-10-31 20:19:46 +08:00
|
|
|
static GIOChannel *ctrl_io = NULL;
|
|
|
|
static GIOChannel *intr_io = NULL;
|
2013-10-29 17:48:15 +08:00
|
|
|
static GSList *devices = NULL;
|
2014-06-03 01:24:36 +08:00
|
|
|
static unsigned int hog_app = 0;
|
2013-10-29 17:48:15 +08:00
|
|
|
|
2014-02-24 20:44:12 +08:00
|
|
|
static struct ipc *hal_ipc = NULL;
|
|
|
|
|
2013-10-29 17:48:15 +08:00
|
|
|
struct hid_device {
|
|
|
|
bdaddr_t dst;
|
2013-10-31 20:19:48 +08:00
|
|
|
uint8_t state;
|
2013-11-01 21:08:41 +08:00
|
|
|
uint8_t subclass;
|
2013-11-01 16:58:43 +08:00
|
|
|
uint16_t vendor;
|
|
|
|
uint16_t product;
|
|
|
|
uint16_t version;
|
|
|
|
uint8_t country;
|
|
|
|
int rd_size;
|
|
|
|
void *rd_data;
|
2013-11-05 06:20:06 +08:00
|
|
|
uint8_t boot_dev;
|
2013-10-29 17:48:15 +08:00
|
|
|
GIOChannel *ctrl_io;
|
|
|
|
GIOChannel *intr_io;
|
|
|
|
guint ctrl_watch;
|
|
|
|
guint intr_watch;
|
2014-05-28 19:18:18 +08:00
|
|
|
struct bt_uhid *uhid;
|
2013-11-06 05:09:07 +08:00
|
|
|
uint8_t last_hid_msg;
|
2014-06-03 01:24:36 +08:00
|
|
|
struct bt_hog *hog;
|
2014-06-12 17:43:27 +08:00
|
|
|
guint reconnect_id;
|
2014-08-25 20:54:19 +08:00
|
|
|
int sec_level;
|
2013-10-29 17:48:15 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static int device_cmp(gconstpointer s, gconstpointer user_data)
|
|
|
|
{
|
2013-11-01 21:08:38 +08:00
|
|
|
const struct hid_device *dev = s;
|
2013-10-29 17:48:15 +08:00
|
|
|
const bdaddr_t *dst = user_data;
|
|
|
|
|
2013-11-01 21:08:38 +08:00
|
|
|
return bacmp(&dev->dst, dst);
|
2013-10-29 17:48:15 +08:00
|
|
|
}
|
|
|
|
|
2014-02-06 21:06:02 +08:00
|
|
|
static void hid_device_free(void *data)
|
2013-10-29 17:48:15 +08:00
|
|
|
{
|
2014-02-06 21:06:02 +08:00
|
|
|
struct hid_device *dev = data;
|
|
|
|
|
2014-06-12 17:43:27 +08:00
|
|
|
if (dev->reconnect_id > 0)
|
|
|
|
g_source_remove(dev->reconnect_id);
|
|
|
|
|
2013-11-01 21:08:38 +08:00
|
|
|
if (dev->ctrl_watch > 0)
|
|
|
|
g_source_remove(dev->ctrl_watch);
|
2013-10-29 17:48:15 +08:00
|
|
|
|
2013-11-01 21:08:38 +08:00
|
|
|
if (dev->intr_watch > 0)
|
|
|
|
g_source_remove(dev->intr_watch);
|
2013-10-29 17:48:15 +08:00
|
|
|
|
2013-11-01 21:08:38 +08:00
|
|
|
if (dev->intr_io)
|
|
|
|
g_io_channel_unref(dev->intr_io);
|
2013-10-29 17:48:15 +08:00
|
|
|
|
2013-11-01 21:08:38 +08:00
|
|
|
if (dev->ctrl_io)
|
|
|
|
g_io_channel_unref(dev->ctrl_io);
|
2013-10-29 17:48:15 +08:00
|
|
|
|
2014-05-28 19:18:18 +08:00
|
|
|
if (dev->uhid)
|
|
|
|
bt_uhid_unref(dev->uhid);
|
2013-11-01 16:58:44 +08:00
|
|
|
|
2014-06-03 01:24:36 +08:00
|
|
|
if (dev->hog)
|
|
|
|
bt_hog_unref(dev->hog);
|
|
|
|
|
2013-11-01 21:08:38 +08:00
|
|
|
g_free(dev->rd_data);
|
2014-02-06 21:06:02 +08:00
|
|
|
g_free(dev);
|
|
|
|
}
|
2013-11-01 16:58:43 +08:00
|
|
|
|
2014-02-06 21:06:02 +08:00
|
|
|
static void hid_device_remove(struct hid_device *dev)
|
|
|
|
{
|
2013-11-01 21:08:38 +08:00
|
|
|
devices = g_slist_remove(devices, dev);
|
2014-02-06 21:06:02 +08:00
|
|
|
hid_device_free(dev);
|
2013-10-29 17:48:15 +08:00
|
|
|
}
|
|
|
|
|
2014-06-25 17:09:25 +08:00
|
|
|
static struct hid_device *hid_device_new(const bdaddr_t *addr)
|
|
|
|
{
|
|
|
|
struct hid_device *dev;
|
|
|
|
|
|
|
|
dev = g_new0(struct hid_device, 1);
|
|
|
|
bacpy(&dev->dst, addr);
|
|
|
|
dev->state = HAL_HIDHOST_STATE_DISCONNECTED;
|
2014-08-25 20:54:19 +08:00
|
|
|
dev->sec_level = BT_IO_SEC_LOW;
|
|
|
|
|
2014-06-25 17:09:25 +08:00
|
|
|
devices = g_slist_append(devices, dev);
|
|
|
|
|
|
|
|
return dev;
|
|
|
|
}
|
|
|
|
|
2014-04-18 21:40:05 +08:00
|
|
|
static bool hex2buf(const uint8_t *hex, uint8_t *buf, int buf_size)
|
2014-04-08 20:22:27 +08:00
|
|
|
{
|
2014-04-18 21:40:05 +08:00
|
|
|
int i, j;
|
|
|
|
char c;
|
|
|
|
uint8_t b;
|
2014-04-08 20:22:27 +08:00
|
|
|
|
2014-04-18 21:40:05 +08:00
|
|
|
for (i = 0, j = 0; i < buf_size; i++, j++) {
|
|
|
|
c = toupper(hex[j]);
|
|
|
|
|
|
|
|
if (c >= '0' && c <= '9')
|
|
|
|
b = c - '0';
|
|
|
|
else if (c >= 'A' && c <= 'F')
|
|
|
|
b = 10 + c - 'A';
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
|
|
|
|
j++;
|
|
|
|
|
|
|
|
c = toupper(hex[j]);
|
|
|
|
|
|
|
|
if (c >= '0' && c <= '9')
|
|
|
|
b = b * 16 + c - '0';
|
|
|
|
else if (c >= 'A' && c <= 'F')
|
|
|
|
b = b * 16 + 10 + c - 'A';
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
|
|
|
|
buf[i] = b;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2014-04-08 20:22:27 +08:00
|
|
|
}
|
|
|
|
|
2014-05-28 19:18:18 +08:00
|
|
|
static void handle_uhid_output(struct uhid_event *event, void *user_data)
|
2013-11-06 05:09:17 +08:00
|
|
|
{
|
2014-05-28 19:18:18 +08:00
|
|
|
struct uhid_output_req *output = &event->u.output;
|
|
|
|
struct hid_device *dev = user_data;
|
2014-04-18 21:40:04 +08:00
|
|
|
int fd, req_size;
|
|
|
|
uint8_t *req;
|
2013-11-12 23:07:13 +08:00
|
|
|
|
2014-04-18 21:40:04 +08:00
|
|
|
if (!dev->ctrl_io)
|
2013-11-12 23:07:13 +08:00
|
|
|
return;
|
|
|
|
|
2014-04-18 21:40:03 +08:00
|
|
|
req_size = 1 + output->size;
|
2014-04-18 21:40:04 +08:00
|
|
|
req = malloc0(req_size);
|
2013-11-12 23:07:13 +08:00
|
|
|
if (!req)
|
|
|
|
return;
|
|
|
|
|
2013-12-16 22:37:31 +08:00
|
|
|
req[0] = HID_MSG_SET_REPORT | output->rtype;
|
2014-04-18 21:40:03 +08:00
|
|
|
memcpy(req + 1, output->data, req_size - 1);
|
2013-11-12 23:07:13 +08:00
|
|
|
|
|
|
|
fd = g_io_channel_unix_get_fd(dev->ctrl_io);
|
|
|
|
|
|
|
|
if (write(fd, req, req_size) < 0)
|
2014-04-18 21:40:04 +08:00
|
|
|
error("hidhost: error writing set_report: %s (%d)",
|
|
|
|
strerror(errno), errno);
|
2013-11-12 23:07:13 +08:00
|
|
|
|
2014-04-18 21:40:04 +08:00
|
|
|
free(req);
|
2013-11-06 05:09:17 +08:00
|
|
|
}
|
|
|
|
|
2013-10-29 17:48:15 +08:00
|
|
|
static gboolean intr_io_watch_cb(GIOChannel *chan, gpointer data)
|
|
|
|
{
|
2013-11-01 21:08:38 +08:00
|
|
|
struct hid_device *dev = data;
|
2013-11-01 16:58:44 +08:00
|
|
|
uint8_t buf[UHID_DATA_MAX];
|
|
|
|
struct uhid_event ev;
|
2014-05-28 19:18:18 +08:00
|
|
|
int fd, bread, err;
|
2013-10-29 17:48:15 +08:00
|
|
|
|
2013-11-01 16:58:44 +08:00
|
|
|
/* Wait uHID if not ready */
|
2014-05-28 19:18:18 +08:00
|
|
|
if (!dev->uhid)
|
2013-11-01 16:58:44 +08:00
|
|
|
return TRUE;
|
|
|
|
|
2013-10-29 17:48:15 +08:00
|
|
|
fd = g_io_channel_unix_get_fd(chan);
|
|
|
|
bread = read(fd, buf, sizeof(buf));
|
|
|
|
if (bread < 0) {
|
2014-04-23 16:31:45 +08:00
|
|
|
error("hidhost: read from interrupt failed: %s(%d)",
|
|
|
|
strerror(errno), -errno);
|
2013-10-29 17:48:15 +08:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-11-01 16:58:44 +08:00
|
|
|
/* Discard non-data packets */
|
2013-11-06 05:09:15 +08:00
|
|
|
if (bread == 0 || buf[0] != (HID_MSG_DATA | HID_DATA_TYPE_INPUT))
|
2013-11-01 16:58:44 +08:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* send data to uHID device skipping HIDP header byte */
|
|
|
|
memset(&ev, 0, sizeof(ev));
|
|
|
|
ev.type = UHID_INPUT;
|
|
|
|
ev.u.input.size = bread - 1;
|
|
|
|
memcpy(ev.u.input.data, &buf[1], ev.u.input.size);
|
|
|
|
|
2014-05-28 19:18:18 +08:00
|
|
|
err = bt_uhid_send(dev->uhid, &ev);
|
|
|
|
if (err < 0)
|
|
|
|
DBG("bt_uhid_send: %s (%d)", strerror(-err), -err);
|
2013-10-29 17:48:15 +08:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-11-05 06:20:05 +08:00
|
|
|
static void bt_hid_notify_state(struct hid_device *dev, uint8_t state)
|
2013-10-31 20:19:48 +08:00
|
|
|
{
|
2013-11-08 00:17:02 +08:00
|
|
|
struct hal_ev_hidhost_conn_state ev;
|
2013-10-31 20:19:48 +08:00
|
|
|
char address[18];
|
|
|
|
|
2013-11-01 21:08:38 +08:00
|
|
|
if (dev->state == state)
|
2013-10-31 20:19:48 +08:00
|
|
|
return;
|
|
|
|
|
2013-11-01 21:08:38 +08:00
|
|
|
dev->state = state;
|
2013-10-31 20:19:48 +08:00
|
|
|
|
2013-11-01 21:08:38 +08:00
|
|
|
ba2str(&dev->dst, address);
|
2013-10-31 20:19:48 +08:00
|
|
|
DBG("device %s state %u", address, state);
|
|
|
|
|
2013-11-01 21:08:38 +08:00
|
|
|
bdaddr2android(&dev->dst, ev.bdaddr);
|
2013-10-31 20:19:48 +08:00
|
|
|
ev.state = state;
|
|
|
|
|
2014-02-24 20:44:12 +08:00
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_HIDHOST,
|
|
|
|
HAL_EV_HIDHOST_CONN_STATE, sizeof(ev), &ev);
|
2013-10-31 20:19:48 +08:00
|
|
|
}
|
|
|
|
|
2013-10-29 17:48:15 +08:00
|
|
|
static gboolean intr_watch_cb(GIOChannel *chan, GIOCondition cond,
|
|
|
|
gpointer data)
|
|
|
|
{
|
2013-11-01 21:08:38 +08:00
|
|
|
struct hid_device *dev = data;
|
2013-10-29 17:48:15 +08:00
|
|
|
|
2013-11-12 21:05:15 +08:00
|
|
|
if (cond & (G_IO_HUP | G_IO_ERR | G_IO_NVAL))
|
|
|
|
goto error;
|
|
|
|
|
2013-10-29 17:48:15 +08:00
|
|
|
if (cond & G_IO_IN)
|
|
|
|
return intr_io_watch_cb(chan, data);
|
|
|
|
|
2013-11-12 21:05:15 +08:00
|
|
|
error:
|
|
|
|
bt_hid_notify_state(dev, HAL_HIDHOST_STATE_DISCONNECTED);
|
|
|
|
|
2014-04-29 19:17:25 +08:00
|
|
|
/*
|
|
|
|
* Checking for ctrl_watch avoids a double g_io_channel_shutdown since
|
2013-10-29 17:48:15 +08:00
|
|
|
* it's likely that ctrl_watch_cb has been queued for dispatching in
|
2014-04-29 19:17:25 +08:00
|
|
|
* this mainloop iteration
|
|
|
|
*/
|
2013-11-01 21:08:38 +08:00
|
|
|
if ((cond & (G_IO_HUP | G_IO_ERR)) && dev->ctrl_watch)
|
2013-10-29 17:48:15 +08:00
|
|
|
g_io_channel_shutdown(chan, TRUE, NULL);
|
|
|
|
|
|
|
|
/* Close control channel */
|
2013-11-01 21:08:38 +08:00
|
|
|
if (dev->ctrl_io && !(cond & G_IO_NVAL))
|
|
|
|
g_io_channel_shutdown(dev->ctrl_io, TRUE, NULL);
|
2013-10-29 17:48:15 +08:00
|
|
|
|
2014-02-06 21:06:02 +08:00
|
|
|
hid_device_remove(dev);
|
2013-11-12 21:05:15 +08:00
|
|
|
|
2013-10-29 17:48:15 +08:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-11-06 05:09:07 +08:00
|
|
|
static void bt_hid_notify_proto_mode(struct hid_device *dev, uint8_t *buf,
|
|
|
|
int len)
|
|
|
|
{
|
2013-11-08 00:17:02 +08:00
|
|
|
struct hal_ev_hidhost_proto_mode ev;
|
2013-11-06 05:09:07 +08:00
|
|
|
char address[18];
|
|
|
|
|
|
|
|
ba2str(&dev->dst, address);
|
|
|
|
DBG("device %s", address);
|
|
|
|
|
|
|
|
memset(&ev, 0, sizeof(ev));
|
|
|
|
bdaddr2android(&dev->dst, ev.bdaddr);
|
|
|
|
|
|
|
|
if (buf[0] == HID_MSG_DATA) {
|
2013-11-08 00:17:02 +08:00
|
|
|
ev.status = HAL_HIDHOST_STATUS_OK;
|
2013-11-06 05:09:07 +08:00
|
|
|
if (buf[1] == HID_PROTO_REPORT)
|
2013-11-08 00:17:02 +08:00
|
|
|
ev.mode = HAL_HIDHOST_REPORT_PROTOCOL;
|
2013-11-06 05:09:07 +08:00
|
|
|
else if (buf[1] == HID_PROTO_BOOT)
|
2013-11-08 00:17:02 +08:00
|
|
|
ev.mode = HAL_HIDHOST_BOOT_PROTOCOL;
|
2013-11-06 05:09:07 +08:00
|
|
|
else
|
2013-11-08 00:17:02 +08:00
|
|
|
ev.mode = HAL_HIDHOST_UNSUPPORTED_PROTOCOL;
|
2013-11-06 05:09:07 +08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
ev.status = buf[0];
|
2013-11-08 00:17:02 +08:00
|
|
|
ev.mode = HAL_HIDHOST_UNSUPPORTED_PROTOCOL;
|
2013-11-06 05:09:07 +08:00
|
|
|
}
|
|
|
|
|
2014-02-24 20:44:12 +08:00
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_HIDHOST,
|
|
|
|
HAL_EV_HIDHOST_PROTO_MODE, sizeof(ev), &ev);
|
2013-11-06 05:09:07 +08:00
|
|
|
}
|
|
|
|
|
2013-11-06 05:09:11 +08:00
|
|
|
static void bt_hid_notify_get_report(struct hid_device *dev, uint8_t *buf,
|
|
|
|
int len)
|
|
|
|
{
|
2013-11-08 00:17:02 +08:00
|
|
|
struct hal_ev_hidhost_get_report *ev;
|
2013-11-06 05:09:11 +08:00
|
|
|
int ev_len;
|
|
|
|
char address[18];
|
|
|
|
|
|
|
|
ba2str(&dev->dst, address);
|
|
|
|
DBG("device %s", address);
|
|
|
|
|
2014-01-21 20:24:18 +08:00
|
|
|
ev_len = sizeof(*ev);
|
2013-11-06 05:09:11 +08:00
|
|
|
|
|
|
|
if (!((buf[0] == (HID_MSG_DATA | HID_DATA_TYPE_INPUT)) ||
|
|
|
|
(buf[0] == (HID_MSG_DATA | HID_DATA_TYPE_OUTPUT)) ||
|
2014-01-26 09:44:01 +08:00
|
|
|
(buf[0] == (HID_MSG_DATA | HID_DATA_TYPE_FEATURE)))) {
|
2013-11-06 05:09:11 +08:00
|
|
|
ev = g_malloc0(ev_len);
|
|
|
|
ev->status = buf[0];
|
|
|
|
bdaddr2android(&dev->dst, ev->bdaddr);
|
|
|
|
goto send;
|
|
|
|
}
|
|
|
|
|
2014-04-29 19:17:25 +08:00
|
|
|
/*
|
|
|
|
* Report porotocol mode reply contains id after hdr, in boot
|
|
|
|
* protocol mode id doesn't exist
|
|
|
|
*/
|
2013-11-06 05:09:11 +08:00
|
|
|
ev_len += (dev->boot_dev) ? (len - 1) : (len - 2);
|
|
|
|
ev = g_malloc0(ev_len);
|
2013-11-08 00:17:02 +08:00
|
|
|
ev->status = HAL_HIDHOST_STATUS_OK;
|
2013-11-06 05:09:11 +08:00
|
|
|
bdaddr2android(&dev->dst, ev->bdaddr);
|
|
|
|
|
2014-04-29 19:17:25 +08:00
|
|
|
/*
|
|
|
|
* Report porotocol mode reply contains id after hdr, in boot
|
|
|
|
* protocol mode id doesn't exist
|
|
|
|
*/
|
2013-11-06 05:09:11 +08:00
|
|
|
if (dev->boot_dev) {
|
|
|
|
ev->len = len - 1;
|
|
|
|
memcpy(ev->data, buf + 1, ev->len);
|
|
|
|
} else {
|
|
|
|
ev->len = len - 2;
|
|
|
|
memcpy(ev->data, buf + 2, ev->len);
|
|
|
|
}
|
|
|
|
|
|
|
|
send:
|
2014-02-24 20:44:12 +08:00
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_HIDHOST,
|
|
|
|
HAL_EV_HIDHOST_GET_REPORT, ev_len, ev);
|
2013-11-06 05:09:11 +08:00
|
|
|
g_free(ev);
|
|
|
|
}
|
|
|
|
|
2013-11-08 22:14:54 +08:00
|
|
|
static void bt_hid_notify_virtual_unplug(struct hid_device *dev,
|
|
|
|
uint8_t *buf, int len)
|
|
|
|
{
|
|
|
|
struct hal_ev_hidhost_virtual_unplug ev;
|
|
|
|
char address[18];
|
|
|
|
|
|
|
|
ba2str(&dev->dst, address);
|
|
|
|
DBG("device %s", address);
|
|
|
|
bdaddr2android(&dev->dst, ev.bdaddr);
|
|
|
|
|
|
|
|
ev.status = HAL_HIDHOST_GENERAL_ERROR;
|
|
|
|
|
|
|
|
/* Wait either channels to HUP */
|
|
|
|
if (dev->intr_io && dev->ctrl_io) {
|
|
|
|
g_io_channel_shutdown(dev->intr_io, TRUE, NULL);
|
|
|
|
g_io_channel_shutdown(dev->ctrl_io, TRUE, NULL);
|
|
|
|
bt_hid_notify_state(dev, HAL_HIDHOST_STATE_DISCONNECTING);
|
|
|
|
ev.status = HAL_HIDHOST_STATUS_OK;
|
|
|
|
}
|
|
|
|
|
2014-02-24 20:44:12 +08:00
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_HIDHOST,
|
|
|
|
HAL_EV_HIDHOST_VIRTUAL_UNPLUG, sizeof(ev), &ev);
|
2013-11-08 22:14:54 +08:00
|
|
|
}
|
|
|
|
|
2013-11-06 05:09:07 +08:00
|
|
|
static gboolean ctrl_io_watch_cb(GIOChannel *chan, gpointer data)
|
|
|
|
{
|
|
|
|
struct hid_device *dev = data;
|
|
|
|
int fd, bread;
|
|
|
|
uint8_t buf[UHID_DATA_MAX];
|
|
|
|
|
|
|
|
DBG("");
|
|
|
|
|
|
|
|
fd = g_io_channel_unix_get_fd(chan);
|
|
|
|
bread = read(fd, buf, sizeof(buf));
|
|
|
|
if (bread < 0) {
|
2014-04-23 16:31:45 +08:00
|
|
|
error("hidhost: read from control failed: %s(%d)",
|
|
|
|
strerror(errno), -errno);
|
2013-11-06 05:09:07 +08:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (dev->last_hid_msg) {
|
|
|
|
case HID_MSG_GET_PROTOCOL:
|
2013-11-06 05:09:08 +08:00
|
|
|
case HID_MSG_SET_PROTOCOL:
|
2013-11-06 05:09:07 +08:00
|
|
|
bt_hid_notify_proto_mode(dev, buf, bread);
|
|
|
|
break;
|
2013-11-06 05:09:11 +08:00
|
|
|
case HID_MSG_GET_REPORT:
|
|
|
|
bt_hid_notify_get_report(dev, buf, bread);
|
|
|
|
break;
|
2013-11-06 05:09:07 +08:00
|
|
|
}
|
|
|
|
|
2013-11-08 22:14:54 +08:00
|
|
|
if (buf[0] == (HID_MSG_CONTROL | HID_VIRTUAL_CABLE_UNPLUG))
|
|
|
|
bt_hid_notify_virtual_unplug(dev, buf, bread);
|
|
|
|
|
2013-11-06 05:09:07 +08:00
|
|
|
/* reset msg type request */
|
|
|
|
dev->last_hid_msg = 0;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2013-10-29 17:48:15 +08:00
|
|
|
static gboolean ctrl_watch_cb(GIOChannel *chan, GIOCondition cond,
|
|
|
|
gpointer data)
|
|
|
|
{
|
2013-11-01 21:08:38 +08:00
|
|
|
struct hid_device *dev = data;
|
2013-11-12 21:05:15 +08:00
|
|
|
|
|
|
|
if (cond & (G_IO_HUP | G_IO_ERR | G_IO_NVAL))
|
|
|
|
goto error;
|
2013-10-29 17:48:15 +08:00
|
|
|
|
2013-11-06 05:09:07 +08:00
|
|
|
if (cond & G_IO_IN)
|
|
|
|
return ctrl_io_watch_cb(chan, data);
|
|
|
|
|
2013-11-12 21:05:15 +08:00
|
|
|
error:
|
2013-11-08 00:17:02 +08:00
|
|
|
bt_hid_notify_state(dev, HAL_HIDHOST_STATE_DISCONNECTED);
|
2013-10-29 17:48:15 +08:00
|
|
|
|
2014-04-29 19:17:25 +08:00
|
|
|
/*
|
|
|
|
* Checking for intr_watch avoids a double g_io_channel_shutdown since
|
2013-10-29 17:48:15 +08:00
|
|
|
* it's likely that intr_watch_cb has been queued for dispatching in
|
2014-04-29 19:17:25 +08:00
|
|
|
* this mainloop iteration
|
|
|
|
*/
|
2013-11-01 21:08:38 +08:00
|
|
|
if ((cond & (G_IO_HUP | G_IO_ERR)) && dev->intr_watch)
|
2013-10-29 17:48:15 +08:00
|
|
|
g_io_channel_shutdown(chan, TRUE, NULL);
|
|
|
|
|
2013-11-01 21:08:38 +08:00
|
|
|
if (dev->intr_io && !(cond & G_IO_NVAL))
|
|
|
|
g_io_channel_shutdown(dev->intr_io, TRUE, NULL);
|
2013-10-29 17:48:15 +08:00
|
|
|
|
2014-02-06 21:06:02 +08:00
|
|
|
hid_device_remove(dev);
|
2013-10-30 22:24:54 +08:00
|
|
|
|
2013-10-29 17:48:15 +08:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-11-01 21:08:41 +08:00
|
|
|
static void bt_hid_set_info(struct hid_device *dev)
|
|
|
|
{
|
2013-11-08 00:17:02 +08:00
|
|
|
struct hal_ev_hidhost_info ev;
|
2013-11-01 21:08:41 +08:00
|
|
|
|
|
|
|
DBG("");
|
|
|
|
|
|
|
|
bdaddr2android(&dev->dst, ev.bdaddr);
|
|
|
|
ev.attr = 0; /* TODO: Check what is this field */
|
|
|
|
ev.subclass = dev->subclass;
|
|
|
|
ev.app_id = 0; /* TODO: Check what is this field */
|
|
|
|
ev.vendor = dev->vendor;
|
|
|
|
ev.product = dev->product;
|
|
|
|
ev.version = dev->version;
|
|
|
|
ev.country = dev->country;
|
|
|
|
ev.descr_len = dev->rd_size;
|
|
|
|
memset(ev.descr, 0, sizeof(ev.descr));
|
|
|
|
memcpy(ev.descr, dev->rd_data, ev.descr_len);
|
|
|
|
|
2014-02-24 20:44:12 +08:00
|
|
|
ipc_send_notif(hal_ipc, HAL_SERVICE_ID_HIDHOST, HAL_EV_HIDHOST_INFO,
|
|
|
|
sizeof(ev), &ev);
|
2013-11-01 21:08:41 +08:00
|
|
|
}
|
|
|
|
|
2013-11-01 21:08:38 +08:00
|
|
|
static int uhid_create(struct hid_device *dev)
|
2013-11-01 16:58:44 +08:00
|
|
|
{
|
|
|
|
struct uhid_event ev;
|
2013-11-20 00:20:13 +08:00
|
|
|
int err;
|
2013-11-01 16:58:44 +08:00
|
|
|
|
2014-05-28 19:18:18 +08:00
|
|
|
dev->uhid = bt_uhid_new_default();
|
|
|
|
if (!dev->uhid) {
|
2013-11-20 00:20:13 +08:00
|
|
|
err = -errno;
|
2014-05-28 19:18:18 +08:00
|
|
|
error("hidhost: Failed to create bt_uhid instance");
|
2013-11-20 00:20:13 +08:00
|
|
|
return err;
|
2013-11-01 16:58:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
memset(&ev, 0, sizeof(ev));
|
|
|
|
ev.type = UHID_CREATE;
|
|
|
|
strcpy((char *) ev.u.create.name, "bluez-input-device");
|
|
|
|
ev.u.create.bus = BUS_BLUETOOTH;
|
2013-11-01 21:08:38 +08:00
|
|
|
ev.u.create.vendor = dev->vendor;
|
|
|
|
ev.u.create.product = dev->product;
|
2013-11-01 21:08:39 +08:00
|
|
|
ev.u.create.version = dev->version;
|
2013-11-01 21:08:38 +08:00
|
|
|
ev.u.create.country = dev->country;
|
|
|
|
ev.u.create.rd_size = dev->rd_size;
|
|
|
|
ev.u.create.rd_data = dev->rd_data;
|
|
|
|
|
2014-05-28 19:18:18 +08:00
|
|
|
err = bt_uhid_send(dev->uhid, &ev);
|
|
|
|
if (err < 0) {
|
2014-04-23 16:31:45 +08:00
|
|
|
error("hidhost: Failed to create uHID device: %s",
|
2014-05-28 19:18:18 +08:00
|
|
|
strerror(-err));
|
|
|
|
bt_uhid_unref(dev->uhid);
|
|
|
|
dev->uhid = NULL;
|
2013-11-20 00:20:13 +08:00
|
|
|
return err;
|
2013-11-01 16:58:44 +08:00
|
|
|
}
|
|
|
|
|
2014-05-28 19:18:18 +08:00
|
|
|
bt_uhid_register(dev->uhid, UHID_OUTPUT, handle_uhid_output, dev);
|
2013-11-01 21:08:41 +08:00
|
|
|
bt_hid_set_info(dev);
|
|
|
|
|
2013-11-01 16:58:44 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-10-29 17:48:15 +08:00
|
|
|
static void interrupt_connect_cb(GIOChannel *chan, GError *conn_err,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
2013-11-01 21:08:38 +08:00
|
|
|
struct hid_device *dev = user_data;
|
2013-11-19 22:56:27 +08:00
|
|
|
uint8_t state;
|
2013-10-29 17:48:15 +08:00
|
|
|
|
|
|
|
DBG("");
|
|
|
|
|
2013-11-12 17:47:19 +08:00
|
|
|
if (conn_err) {
|
2014-04-23 16:31:45 +08:00
|
|
|
error("hidhost: Failed to connect interrupt channel (%s)",
|
|
|
|
conn_err->message);
|
2013-11-19 22:56:27 +08:00
|
|
|
state = HAL_HIDHOST_STATE_FAILED;
|
2013-10-29 17:48:15 +08:00
|
|
|
goto failed;
|
2013-11-12 17:47:19 +08:00
|
|
|
}
|
2013-10-29 17:48:15 +08:00
|
|
|
|
2013-11-19 22:56:27 +08:00
|
|
|
if (uhid_create(dev) < 0) {
|
|
|
|
state = HAL_HIDHOST_STATE_NO_HID;
|
2013-11-01 16:58:44 +08:00
|
|
|
goto failed;
|
2013-11-19 22:56:27 +08:00
|
|
|
}
|
2013-11-01 16:58:44 +08:00
|
|
|
|
2013-11-01 21:08:38 +08:00
|
|
|
dev->intr_watch = g_io_add_watch(dev->intr_io,
|
2013-10-29 17:48:15 +08:00
|
|
|
G_IO_IN | G_IO_HUP | G_IO_ERR | G_IO_NVAL,
|
2013-11-01 21:08:38 +08:00
|
|
|
intr_watch_cb, dev);
|
2013-10-29 17:48:15 +08:00
|
|
|
|
2013-11-08 00:17:02 +08:00
|
|
|
bt_hid_notify_state(dev, HAL_HIDHOST_STATE_CONNECTED);
|
2013-10-31 20:19:48 +08:00
|
|
|
|
2013-10-29 17:48:15 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
failed:
|
2013-11-19 22:56:27 +08:00
|
|
|
bt_hid_notify_state(dev, state);
|
2014-02-06 21:06:02 +08:00
|
|
|
hid_device_remove(dev);
|
2013-10-29 17:48:15 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void control_connect_cb(GIOChannel *chan, GError *conn_err,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
2013-11-01 21:08:38 +08:00
|
|
|
struct hid_device *dev = user_data;
|
2013-10-29 17:48:15 +08:00
|
|
|
GError *err = NULL;
|
|
|
|
|
|
|
|
DBG("");
|
|
|
|
|
|
|
|
if (conn_err) {
|
2013-11-08 00:17:02 +08:00
|
|
|
bt_hid_notify_state(dev, HAL_HIDHOST_STATE_DISCONNECTED);
|
2014-04-23 16:31:45 +08:00
|
|
|
error("hidhost: Failed to connect control channel (%s)",
|
|
|
|
conn_err->message);
|
2013-10-29 17:48:15 +08:00
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Connect to the HID interrupt channel */
|
2013-11-01 21:08:38 +08:00
|
|
|
dev->intr_io = bt_io_connect(interrupt_connect_cb, dev, NULL, &err,
|
2013-11-13 07:48:16 +08:00
|
|
|
BT_IO_OPT_SOURCE_BDADDR, &adapter_addr,
|
2013-11-01 21:08:38 +08:00
|
|
|
BT_IO_OPT_DEST_BDADDR, &dev->dst,
|
2013-10-29 17:48:15 +08:00
|
|
|
BT_IO_OPT_PSM, L2CAP_PSM_HIDP_INTR,
|
2014-08-25 20:54:19 +08:00
|
|
|
BT_IO_OPT_SEC_LEVEL, dev->sec_level,
|
2013-10-29 17:48:15 +08:00
|
|
|
BT_IO_OPT_INVALID);
|
2013-11-01 21:08:38 +08:00
|
|
|
if (!dev->intr_io) {
|
2014-04-23 16:31:45 +08:00
|
|
|
error("hidhost: Failed to connect interrupt channel (%s)",
|
|
|
|
err->message);
|
2013-10-29 17:48:15 +08:00
|
|
|
g_error_free(err);
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
|
2013-11-01 21:08:38 +08:00
|
|
|
dev->ctrl_watch = g_io_add_watch(dev->ctrl_io,
|
2013-11-06 05:09:07 +08:00
|
|
|
G_IO_IN | G_IO_HUP | G_IO_ERR | G_IO_NVAL,
|
|
|
|
ctrl_watch_cb, dev);
|
2013-10-29 17:48:15 +08:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
failed:
|
2014-02-06 21:06:02 +08:00
|
|
|
hid_device_remove(dev);
|
2013-10-29 17:48:15 +08:00
|
|
|
}
|
|
|
|
|
2013-11-01 16:58:43 +08:00
|
|
|
static void hid_sdp_search_cb(sdp_list_t *recs, int err, gpointer data)
|
|
|
|
{
|
2013-11-01 21:08:38 +08:00
|
|
|
struct hid_device *dev = data;
|
2013-11-01 16:58:43 +08:00
|
|
|
sdp_list_t *list;
|
|
|
|
GError *gerr = NULL;
|
|
|
|
|
|
|
|
DBG("");
|
|
|
|
|
|
|
|
if (err < 0) {
|
2014-04-23 16:31:45 +08:00
|
|
|
error("hidhost: Unable to get SDP record: %s", strerror(-err));
|
2013-11-01 16:58:43 +08:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!recs || !recs->data) {
|
2014-04-23 16:31:45 +08:00
|
|
|
error("hidhost: No SDP records found");
|
2013-11-01 16:58:43 +08:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (list = recs; list != NULL; list = list->next) {
|
|
|
|
sdp_record_t *rec = list->data;
|
|
|
|
sdp_data_t *data;
|
|
|
|
|
|
|
|
data = sdp_data_get(rec, SDP_ATTR_HID_COUNTRY_CODE);
|
|
|
|
if (data)
|
2013-11-01 21:08:38 +08:00
|
|
|
dev->country = data->val.uint8;
|
2013-11-01 16:58:43 +08:00
|
|
|
|
2013-11-01 21:08:41 +08:00
|
|
|
data = sdp_data_get(rec, SDP_ATTR_HID_DEVICE_SUBCLASS);
|
2014-08-25 20:54:19 +08:00
|
|
|
if (data) {
|
2013-11-01 21:08:41 +08:00
|
|
|
dev->subclass = data->val.uint8;
|
|
|
|
|
2014-08-25 20:54:19 +08:00
|
|
|
/* Encryption is mandatory for keyboards */
|
|
|
|
if (dev->subclass & 0x40)
|
|
|
|
dev->sec_level = BT_IO_SEC_MEDIUM;
|
|
|
|
}
|
|
|
|
|
2013-11-05 06:20:06 +08:00
|
|
|
data = sdp_data_get(rec, SDP_ATTR_HID_BOOT_DEVICE);
|
|
|
|
if (data)
|
|
|
|
dev->boot_dev = data->val.uint8;
|
|
|
|
|
2013-11-01 16:58:43 +08:00
|
|
|
data = sdp_data_get(rec, SDP_ATTR_HID_DESCRIPTOR_LIST);
|
|
|
|
if (data) {
|
|
|
|
if (!SDP_IS_SEQ(data->dtd))
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
/* First HIDDescriptor */
|
|
|
|
data = data->val.dataseq;
|
|
|
|
if (!SDP_IS_SEQ(data->dtd))
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
/* ClassDescriptorType */
|
|
|
|
data = data->val.dataseq;
|
|
|
|
if (data->dtd != SDP_UINT8)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
/* ClassDescriptorData */
|
|
|
|
data = data->next;
|
|
|
|
if (!data || !SDP_IS_TEXT_STR(data->dtd))
|
|
|
|
goto fail;
|
|
|
|
|
2013-11-01 21:08:38 +08:00
|
|
|
dev->rd_size = data->unitSize;
|
|
|
|
dev->rd_data = g_memdup(data->val.str, data->unitSize);
|
2013-11-01 16:58:43 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-01 21:08:38 +08:00
|
|
|
if (dev->ctrl_io) {
|
2014-08-25 20:54:19 +08:00
|
|
|
/* Raise the security level for this device if needed. */
|
|
|
|
if ((dev->sec_level > BT_IO_SEC_LOW) &&
|
|
|
|
!bt_io_set(dev->ctrl_io, &gerr,
|
|
|
|
BT_IO_OPT_SEC_LEVEL, dev->sec_level,
|
|
|
|
BT_IO_OPT_INVALID)) {
|
|
|
|
error("hidhost: Cannot raise security level: %s",
|
|
|
|
gerr->message);
|
|
|
|
g_error_free(gerr);
|
|
|
|
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2013-11-01 21:08:38 +08:00
|
|
|
if (uhid_create(dev) < 0)
|
2013-11-01 16:58:44 +08:00
|
|
|
goto fail;
|
2013-11-01 16:58:43 +08:00
|
|
|
return;
|
2013-11-01 16:58:44 +08:00
|
|
|
}
|
2013-11-01 16:58:43 +08:00
|
|
|
|
2013-11-01 21:08:38 +08:00
|
|
|
dev->ctrl_io = bt_io_connect(control_connect_cb, dev, NULL, &gerr,
|
2013-11-13 07:48:16 +08:00
|
|
|
BT_IO_OPT_SOURCE_BDADDR, &adapter_addr,
|
2013-11-01 21:08:38 +08:00
|
|
|
BT_IO_OPT_DEST_BDADDR, &dev->dst,
|
2013-11-01 16:58:43 +08:00
|
|
|
BT_IO_OPT_PSM, L2CAP_PSM_HIDP_CTRL,
|
2014-08-25 20:54:19 +08:00
|
|
|
BT_IO_OPT_SEC_LEVEL, dev->sec_level,
|
2013-11-01 16:58:43 +08:00
|
|
|
BT_IO_OPT_INVALID);
|
|
|
|
if (gerr) {
|
2014-04-23 16:31:45 +08:00
|
|
|
error("hidhost: Failed to connect control channel (%s)",
|
|
|
|
gerr->message);
|
2013-11-01 16:58:43 +08:00
|
|
|
g_error_free(gerr);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
fail:
|
2013-11-08 00:17:02 +08:00
|
|
|
bt_hid_notify_state(dev, HAL_HIDHOST_STATE_DISCONNECTED);
|
2014-02-06 21:06:02 +08:00
|
|
|
hid_device_remove(dev);
|
2013-11-01 16:58:43 +08:00
|
|
|
}
|
|
|
|
|
2014-01-23 01:46:37 +08:00
|
|
|
static void hid_sdp_did_search_cb(sdp_list_t *recs, int err, gpointer data)
|
|
|
|
{
|
|
|
|
struct hid_device *dev = data;
|
|
|
|
sdp_list_t *list;
|
|
|
|
uuid_t uuid;
|
|
|
|
|
|
|
|
DBG("");
|
|
|
|
|
|
|
|
if (err < 0) {
|
2014-04-23 16:31:45 +08:00
|
|
|
error("hidhost: Unable to get Device ID SDP record: %s",
|
|
|
|
strerror(-err));
|
2014-01-23 01:46:37 +08:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!recs || !recs->data) {
|
2014-04-23 16:31:45 +08:00
|
|
|
error("hidhost: No Device ID SDP records found");
|
2014-01-23 01:46:37 +08:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (list = recs; list; list = list->next) {
|
|
|
|
sdp_record_t *rec = list->data;
|
|
|
|
sdp_data_t *data;
|
|
|
|
|
|
|
|
data = sdp_data_get(rec, SDP_ATTR_VENDOR_ID);
|
|
|
|
if (data)
|
|
|
|
dev->vendor = data->val.uint16;
|
|
|
|
|
|
|
|
data = sdp_data_get(rec, SDP_ATTR_PRODUCT_ID);
|
|
|
|
if (data)
|
|
|
|
dev->product = data->val.uint16;
|
|
|
|
|
|
|
|
data = sdp_data_get(rec, SDP_ATTR_VERSION);
|
|
|
|
if (data)
|
|
|
|
dev->version = data->val.uint16;
|
|
|
|
}
|
|
|
|
|
2014-02-12 02:32:26 +08:00
|
|
|
sdp_uuid16_create(&uuid, HID_SVCLASS_ID);
|
2014-01-23 01:46:37 +08:00
|
|
|
if (bt_search_service(&adapter_addr, &dev->dst, &uuid,
|
|
|
|
hid_sdp_search_cb, dev, NULL, 0) < 0) {
|
2014-04-23 16:31:45 +08:00
|
|
|
error("hidhost: Failed to search SDP details");
|
2014-01-23 01:46:37 +08:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
bt_hid_notify_state(dev, HAL_HIDHOST_STATE_DISCONNECTED);
|
2014-02-06 21:06:02 +08:00
|
|
|
hid_device_remove(dev);
|
2014-01-23 01:46:37 +08:00
|
|
|
}
|
|
|
|
|
2014-06-12 17:43:27 +08:00
|
|
|
static gboolean hog_reconnect(void *user_data)
|
|
|
|
{
|
|
|
|
struct hid_device *dev = user_data;
|
|
|
|
|
|
|
|
DBG("");
|
|
|
|
|
|
|
|
dev->reconnect_id = 0;
|
|
|
|
|
|
|
|
bt_gatt_connect_app(hog_app, &dev->dst);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2014-06-03 01:24:36 +08:00
|
|
|
static void hog_conn_cb(const bdaddr_t *addr, int err, void *attrib)
|
|
|
|
{
|
|
|
|
GSList *l;
|
|
|
|
struct hid_device *dev;
|
|
|
|
|
|
|
|
l = g_slist_find_custom(devices, addr, device_cmp);
|
|
|
|
dev = l ? l->data : NULL;
|
|
|
|
|
|
|
|
if (err < 0) {
|
|
|
|
if (!dev)
|
|
|
|
return;
|
2014-06-12 17:43:27 +08:00
|
|
|
if (dev->hog && !dev->reconnect_id) {
|
|
|
|
bt_hid_notify_state(dev,
|
|
|
|
HAL_HIDHOST_STATE_DISCONNECTED);
|
|
|
|
bt_hog_detach(dev->hog);
|
|
|
|
dev->reconnect_id = g_idle_add(hog_reconnect, dev);
|
|
|
|
return;
|
|
|
|
}
|
2014-06-03 01:24:36 +08:00
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!dev) {
|
2014-06-25 17:09:25 +08:00
|
|
|
dev = hid_device_new(addr);
|
2014-06-03 01:24:36 +08:00
|
|
|
bt_hid_notify_state(dev, HAL_HIDHOST_STATE_CONNECTING);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!dev->hog) {
|
|
|
|
/* TODO: Get device details and primary */
|
|
|
|
dev->hog = bt_hog_new("bluez-input-device", dev->vendor,
|
|
|
|
dev->product, dev->version, NULL);
|
|
|
|
if (!dev->hog) {
|
|
|
|
error("HoG: unable to create session");
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!bt_hog_attach(dev->hog, attrib)) {
|
|
|
|
error("HoG: unable to attach");
|
|
|
|
goto fail;
|
|
|
|
}
|
2014-07-30 17:38:48 +08:00
|
|
|
|
|
|
|
if (!bt_gatt_set_security(addr, BT_IO_SEC_MEDIUM)) {
|
|
|
|
error("Failed to set security level");
|
|
|
|
goto fail;
|
|
|
|
}
|
2014-06-03 01:24:36 +08:00
|
|
|
|
|
|
|
DBG("");
|
|
|
|
|
|
|
|
bt_hid_notify_state(dev, HAL_HIDHOST_STATE_CONNECTED);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
bt_hid_notify_state(dev, HAL_HIDHOST_STATE_DISCONNECTED);
|
|
|
|
hid_device_remove(dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool hog_connect(struct hid_device *dev)
|
|
|
|
{
|
|
|
|
DBG("");
|
|
|
|
|
|
|
|
if (hog_app)
|
|
|
|
return bt_gatt_connect_app(hog_app, &dev->dst);
|
|
|
|
|
|
|
|
hog_app = bt_gatt_register_app(HOG_UUID, GATT_CLIENT, hog_conn_cb);
|
|
|
|
if (!hog_app) {
|
|
|
|
error("hidhost: bt_gatt_register_app failed");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bt_gatt_connect_app(hog_app, &dev->dst);
|
|
|
|
}
|
|
|
|
|
2013-12-02 20:20:45 +08:00
|
|
|
static void bt_hid_connect(const void *buf, uint16_t len)
|
2013-10-29 17:48:15 +08:00
|
|
|
{
|
2013-12-02 20:20:45 +08:00
|
|
|
const struct hal_cmd_hidhost_connect *cmd = buf;
|
2013-11-01 21:08:38 +08:00
|
|
|
struct hid_device *dev;
|
2013-12-02 20:20:45 +08:00
|
|
|
uint8_t status;
|
2013-10-29 17:48:15 +08:00
|
|
|
char addr[18];
|
|
|
|
bdaddr_t dst;
|
|
|
|
GSList *l;
|
2013-11-01 16:58:43 +08:00
|
|
|
uuid_t uuid;
|
2013-10-29 17:48:15 +08:00
|
|
|
|
|
|
|
DBG("");
|
|
|
|
|
|
|
|
android2bdaddr(&cmd->bdaddr, &dst);
|
|
|
|
|
|
|
|
l = g_slist_find_custom(devices, &dst, device_cmp);
|
2013-12-02 20:20:45 +08:00
|
|
|
if (l) {
|
|
|
|
status = HAL_STATUS_FAILED;
|
|
|
|
goto failed;
|
|
|
|
}
|
2013-10-29 17:48:15 +08:00
|
|
|
|
2014-06-25 17:09:25 +08:00
|
|
|
dev = hid_device_new(&dst);
|
2013-10-29 17:48:15 +08:00
|
|
|
|
2013-11-01 21:08:38 +08:00
|
|
|
ba2str(&dev->dst, addr);
|
2013-10-29 17:48:15 +08:00
|
|
|
DBG("connecting to %s", addr);
|
|
|
|
|
2014-06-03 01:24:36 +08:00
|
|
|
if (bt_is_device_le(&dst)) {
|
|
|
|
if (!hog_connect(dev)) {
|
|
|
|
status = HAL_STATUS_FAILED;
|
2014-06-23 22:18:17 +08:00
|
|
|
hid_device_remove(dev);
|
2014-06-03 01:24:36 +08:00
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2014-02-12 02:32:26 +08:00
|
|
|
sdp_uuid16_create(&uuid, PNP_INFO_SVCLASS_ID);
|
2013-11-13 07:48:16 +08:00
|
|
|
if (bt_search_service(&adapter_addr, &dev->dst, &uuid,
|
2014-02-12 02:32:28 +08:00
|
|
|
hid_sdp_did_search_cb, dev, NULL, 0) < 0) {
|
2014-04-23 16:31:45 +08:00
|
|
|
error("hidhost: Failed to search DeviceID SDP details");
|
2014-02-06 21:06:02 +08:00
|
|
|
hid_device_remove(dev);
|
2013-12-02 20:20:45 +08:00
|
|
|
status = HAL_STATUS_FAILED;
|
|
|
|
goto failed;
|
2013-10-29 17:48:15 +08:00
|
|
|
}
|
|
|
|
|
2014-06-03 01:24:36 +08:00
|
|
|
done:
|
|
|
|
if (dev->state == HAL_HIDHOST_STATE_DISCONNECTED)
|
|
|
|
bt_hid_notify_state(dev, HAL_HIDHOST_STATE_CONNECTING);
|
2013-10-29 17:48:15 +08:00
|
|
|
|
2013-12-02 20:20:45 +08:00
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
|
|
|
|
failed:
|
2014-02-24 20:44:12 +08:00
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_HIDHOST, HAL_OP_HIDHOST_CONNECT,
|
|
|
|
status);
|
2013-10-29 17:48:15 +08:00
|
|
|
}
|
2013-10-23 19:04:41 +08:00
|
|
|
|
2014-06-03 01:24:36 +08:00
|
|
|
static bool hog_disconnect(struct hid_device *dev)
|
|
|
|
{
|
|
|
|
DBG("");
|
|
|
|
|
|
|
|
if (dev->state == HAL_HIDHOST_STATE_DISCONNECTED)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
bt_hid_notify_state(dev, HAL_HIDHOST_STATE_DISCONNECTING);
|
|
|
|
|
|
|
|
if (!bt_gatt_disconnect_app(hog_app, &dev->dst)) {
|
|
|
|
bt_hid_notify_state(dev, HAL_HIDHOST_STATE_DISCONNECTED);
|
|
|
|
hid_device_remove(dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-12-02 20:20:45 +08:00
|
|
|
static void bt_hid_disconnect(const void *buf, uint16_t len)
|
2013-10-29 17:48:16 +08:00
|
|
|
{
|
2013-12-02 20:20:45 +08:00
|
|
|
const struct hal_cmd_hidhost_disconnect *cmd = buf;
|
2013-11-01 21:08:38 +08:00
|
|
|
struct hid_device *dev;
|
2013-12-02 20:20:45 +08:00
|
|
|
uint8_t status;
|
2013-10-29 17:48:16 +08:00
|
|
|
GSList *l;
|
|
|
|
bdaddr_t dst;
|
|
|
|
|
|
|
|
DBG("");
|
|
|
|
|
|
|
|
android2bdaddr(&cmd->bdaddr, &dst);
|
|
|
|
|
|
|
|
l = g_slist_find_custom(devices, &dst, device_cmp);
|
2013-12-02 20:20:45 +08:00
|
|
|
if (!l) {
|
|
|
|
status = HAL_STATUS_FAILED;
|
|
|
|
goto failed;
|
|
|
|
}
|
2013-10-29 17:48:16 +08:00
|
|
|
|
2013-11-01 21:08:38 +08:00
|
|
|
dev = l->data;
|
2014-06-03 01:24:36 +08:00
|
|
|
if (bt_is_device_le(&dst)) {
|
|
|
|
if (!hog_disconnect(dev)) {
|
|
|
|
status = HAL_STATUS_FAILED;
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
goto done;
|
|
|
|
}
|
2013-10-31 20:19:48 +08:00
|
|
|
|
|
|
|
/* Wait either channels to HUP */
|
2013-11-01 21:08:38 +08:00
|
|
|
if (dev->intr_io)
|
|
|
|
g_io_channel_shutdown(dev->intr_io, TRUE, NULL);
|
2013-10-31 20:19:48 +08:00
|
|
|
|
2013-11-01 21:08:38 +08:00
|
|
|
if (dev->ctrl_io)
|
|
|
|
g_io_channel_shutdown(dev->ctrl_io, TRUE, NULL);
|
2013-10-31 20:19:48 +08:00
|
|
|
|
2013-11-08 00:17:02 +08:00
|
|
|
bt_hid_notify_state(dev, HAL_HIDHOST_STATE_DISCONNECTING);
|
2013-10-29 17:48:16 +08:00
|
|
|
|
2014-06-03 01:24:36 +08:00
|
|
|
|
|
|
|
done:
|
2013-12-02 20:20:45 +08:00
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
|
|
|
|
failed:
|
2014-02-24 20:44:12 +08:00
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_HIDHOST, HAL_OP_HIDHOST_DISCONNECT,
|
|
|
|
status);
|
2013-10-29 17:48:16 +08:00
|
|
|
}
|
|
|
|
|
2014-08-25 20:54:18 +08:00
|
|
|
static bool bt_hid_write_virtual_unplug(GIOChannel *chan)
|
|
|
|
{
|
|
|
|
uint8_t hdr = HID_MSG_CONTROL | HID_VIRTUAL_CABLE_UNPLUG;
|
|
|
|
int fd = g_io_channel_unix_get_fd(chan);
|
|
|
|
|
|
|
|
if (write(fd, &hdr, sizeof(hdr)) == sizeof(hdr))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
error("hidhost: Error writing virtual unplug command: %s (%d)",
|
|
|
|
strerror(errno), errno);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-12-02 20:20:45 +08:00
|
|
|
static void bt_hid_virtual_unplug(const void *buf, uint16_t len)
|
2013-11-01 21:52:44 +08:00
|
|
|
{
|
2013-12-02 20:20:45 +08:00
|
|
|
const struct hal_cmd_hidhost_virtual_unplug *cmd = buf;
|
2013-11-08 20:08:51 +08:00
|
|
|
struct hid_device *dev;
|
|
|
|
GSList *l;
|
2013-12-02 20:20:45 +08:00
|
|
|
uint8_t status;
|
2013-11-08 20:08:51 +08:00
|
|
|
bdaddr_t dst;
|
2013-11-01 21:52:44 +08:00
|
|
|
|
2013-11-08 20:08:51 +08:00
|
|
|
DBG("");
|
|
|
|
|
|
|
|
android2bdaddr(&cmd->bdaddr, &dst);
|
|
|
|
|
|
|
|
l = g_slist_find_custom(devices, &dst, device_cmp);
|
2013-12-02 20:20:45 +08:00
|
|
|
if (!l) {
|
|
|
|
status = HAL_STATUS_FAILED;
|
|
|
|
goto failed;
|
|
|
|
}
|
2013-11-08 20:08:51 +08:00
|
|
|
|
|
|
|
dev = l->data;
|
|
|
|
|
2013-12-02 20:20:45 +08:00
|
|
|
if (!(dev->ctrl_io)) {
|
|
|
|
status = HAL_STATUS_FAILED;
|
|
|
|
goto failed;
|
|
|
|
}
|
2013-11-08 20:08:51 +08:00
|
|
|
|
2014-08-25 20:54:18 +08:00
|
|
|
if (!bt_hid_write_virtual_unplug(dev->ctrl_io)) {
|
2013-12-02 20:20:45 +08:00
|
|
|
status = HAL_STATUS_FAILED;
|
|
|
|
goto failed;
|
2013-11-08 20:08:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Wait either channels to HUP */
|
|
|
|
if (dev->intr_io)
|
|
|
|
g_io_channel_shutdown(dev->intr_io, TRUE, NULL);
|
|
|
|
|
|
|
|
if (dev->ctrl_io)
|
|
|
|
g_io_channel_shutdown(dev->ctrl_io, TRUE, NULL);
|
|
|
|
|
|
|
|
bt_hid_notify_state(dev, HAL_HIDHOST_STATE_DISCONNECTING);
|
|
|
|
|
2013-12-02 20:20:45 +08:00
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
|
|
|
|
failed:
|
2014-02-24 20:44:12 +08:00
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_HIDHOST,
|
|
|
|
HAL_OP_HIDHOST_VIRTUAL_UNPLUG, status);
|
2013-11-01 21:52:44 +08:00
|
|
|
}
|
|
|
|
|
2013-12-02 20:20:45 +08:00
|
|
|
static void bt_hid_info(const void *buf, uint16_t len)
|
2013-11-01 21:52:44 +08:00
|
|
|
{
|
2014-01-24 07:05:37 +08:00
|
|
|
const struct hal_cmd_hidhost_set_info *cmd = buf;
|
|
|
|
|
|
|
|
if (len != sizeof(*cmd) + cmd->descr_len) {
|
|
|
|
error("Invalid hid set info size (%u bytes), terminating", len);
|
|
|
|
raise(SIGTERM);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-04-29 19:17:25 +08:00
|
|
|
/*
|
|
|
|
* Data from hal_cmd_hidhost_set_info is usefull only when we create
|
2013-11-12 23:07:15 +08:00
|
|
|
* UHID device. Once device is created all the transactions will be
|
|
|
|
* done through the fd. There is no way to use this information
|
2014-04-29 19:17:25 +08:00
|
|
|
* once device is created with HID internals.
|
|
|
|
*/
|
2013-11-12 23:07:15 +08:00
|
|
|
DBG("Not supported");
|
2013-11-01 21:52:44 +08:00
|
|
|
|
2014-02-24 20:44:12 +08:00
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_HIDHOST, HAL_OP_HIDHOST_SET_INFO,
|
2013-12-02 20:20:45 +08:00
|
|
|
HAL_STATUS_UNSUPPORTED);
|
2013-11-01 21:52:44 +08:00
|
|
|
}
|
|
|
|
|
2013-12-02 20:20:45 +08:00
|
|
|
static void bt_hid_get_protocol(const void *buf, uint16_t len)
|
2013-11-01 21:52:44 +08:00
|
|
|
{
|
2013-12-02 20:20:45 +08:00
|
|
|
const struct hal_cmd_hidhost_get_protocol *cmd = buf;
|
2013-11-06 05:09:07 +08:00
|
|
|
struct hid_device *dev;
|
|
|
|
GSList *l;
|
|
|
|
bdaddr_t dst;
|
|
|
|
int fd;
|
|
|
|
uint8_t hdr;
|
2013-12-02 20:20:45 +08:00
|
|
|
uint8_t status;
|
2013-11-01 21:52:44 +08:00
|
|
|
|
2013-11-06 05:09:07 +08:00
|
|
|
DBG("");
|
|
|
|
|
2013-12-31 06:56:17 +08:00
|
|
|
switch (cmd->mode) {
|
|
|
|
case HAL_HIDHOST_REPORT_PROTOCOL:
|
|
|
|
case HAL_HIDHOST_BOOT_PROTOCOL:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
status = HAL_STATUS_INVALID;
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
|
2013-11-06 05:09:07 +08:00
|
|
|
android2bdaddr(&cmd->bdaddr, &dst);
|
|
|
|
|
|
|
|
l = g_slist_find_custom(devices, &dst, device_cmp);
|
2013-12-02 20:20:45 +08:00
|
|
|
if (!l) {
|
|
|
|
status = HAL_STATUS_FAILED;
|
|
|
|
goto failed;
|
|
|
|
}
|
2013-11-06 05:09:07 +08:00
|
|
|
|
|
|
|
dev = l->data;
|
|
|
|
|
|
|
|
hdr = HID_MSG_GET_PROTOCOL | cmd->mode;
|
|
|
|
fd = g_io_channel_unix_get_fd(dev->ctrl_io);
|
|
|
|
|
|
|
|
if (write(fd, &hdr, sizeof(hdr)) < 0) {
|
2014-04-23 16:31:45 +08:00
|
|
|
error("hidhost: Error writing device_get_protocol: %s (%d)",
|
2013-11-08 21:46:31 +08:00
|
|
|
strerror(errno), errno);
|
2013-12-02 20:20:45 +08:00
|
|
|
status = HAL_STATUS_FAILED;
|
|
|
|
goto failed;
|
2013-11-06 05:09:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dev->last_hid_msg = HID_MSG_GET_PROTOCOL;
|
2013-12-02 20:20:45 +08:00
|
|
|
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
|
|
|
|
failed:
|
2014-02-24 20:44:12 +08:00
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_HIDHOST,
|
|
|
|
HAL_OP_HIDHOST_GET_PROTOCOL, status);
|
2013-11-01 21:52:44 +08:00
|
|
|
}
|
|
|
|
|
2013-12-02 20:20:45 +08:00
|
|
|
static void bt_hid_set_protocol(const void *buf, uint16_t len)
|
2013-11-01 21:52:44 +08:00
|
|
|
{
|
2013-12-02 20:20:45 +08:00
|
|
|
const struct hal_cmd_hidhost_set_protocol *cmd = buf;
|
2013-11-06 05:09:08 +08:00
|
|
|
struct hid_device *dev;
|
|
|
|
GSList *l;
|
|
|
|
bdaddr_t dst;
|
|
|
|
int fd;
|
|
|
|
uint8_t hdr;
|
2013-12-02 20:20:45 +08:00
|
|
|
uint8_t status;
|
2013-11-01 21:52:44 +08:00
|
|
|
|
2013-11-06 05:09:08 +08:00
|
|
|
DBG("");
|
|
|
|
|
2013-12-31 06:56:18 +08:00
|
|
|
switch (cmd->mode) {
|
|
|
|
case HAL_HIDHOST_REPORT_PROTOCOL:
|
|
|
|
case HAL_HIDHOST_BOOT_PROTOCOL:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
status = HAL_STATUS_INVALID;
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
|
2013-11-06 05:09:08 +08:00
|
|
|
android2bdaddr(&cmd->bdaddr, &dst);
|
|
|
|
|
|
|
|
l = g_slist_find_custom(devices, &dst, device_cmp);
|
2013-12-02 20:20:45 +08:00
|
|
|
if (!l) {
|
|
|
|
status = HAL_STATUS_FAILED;
|
|
|
|
goto failed;
|
|
|
|
}
|
2013-11-06 05:09:08 +08:00
|
|
|
|
|
|
|
dev = l->data;
|
|
|
|
|
|
|
|
hdr = HID_MSG_SET_PROTOCOL | cmd->mode;
|
|
|
|
fd = g_io_channel_unix_get_fd(dev->ctrl_io);
|
|
|
|
|
|
|
|
if (write(fd, &hdr, sizeof(hdr)) < 0) {
|
2014-04-23 16:31:45 +08:00
|
|
|
error("hidhost: error writing device_set_protocol: %s (%d)",
|
2013-11-08 21:46:31 +08:00
|
|
|
strerror(errno), errno);
|
2013-12-02 20:20:45 +08:00
|
|
|
status = HAL_STATUS_FAILED;
|
|
|
|
goto failed;
|
2013-11-06 05:09:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dev->last_hid_msg = HID_MSG_SET_PROTOCOL;
|
2013-12-02 20:20:45 +08:00
|
|
|
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
|
|
|
|
failed:
|
2014-02-24 20:44:12 +08:00
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_HIDHOST,
|
|
|
|
HAL_OP_HIDHOST_SET_PROTOCOL, status);
|
2013-11-01 21:52:44 +08:00
|
|
|
}
|
|
|
|
|
2013-12-02 20:20:45 +08:00
|
|
|
static void bt_hid_get_report(const void *buf, uint16_t len)
|
2013-11-01 21:52:44 +08:00
|
|
|
{
|
2013-12-02 20:20:45 +08:00
|
|
|
const struct hal_cmd_hidhost_get_report *cmd = buf;
|
2013-11-06 05:09:11 +08:00
|
|
|
struct hid_device *dev;
|
|
|
|
GSList *l;
|
|
|
|
bdaddr_t dst;
|
|
|
|
int fd;
|
|
|
|
uint8_t *req;
|
|
|
|
uint8_t req_size;
|
2013-12-02 20:20:45 +08:00
|
|
|
uint8_t status;
|
2013-11-01 21:52:44 +08:00
|
|
|
|
2013-11-06 05:09:11 +08:00
|
|
|
DBG("");
|
|
|
|
|
2013-12-31 06:56:19 +08:00
|
|
|
switch (cmd->type) {
|
|
|
|
case HAL_HIDHOST_INPUT_REPORT:
|
|
|
|
case HAL_HIDHOST_OUTPUT_REPORT:
|
|
|
|
case HAL_HIDHOST_FEATURE_REPORT:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
status = HAL_STATUS_INVALID;
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
|
2013-11-06 05:09:11 +08:00
|
|
|
android2bdaddr(&cmd->bdaddr, &dst);
|
|
|
|
|
|
|
|
l = g_slist_find_custom(devices, &dst, device_cmp);
|
2013-12-02 20:20:45 +08:00
|
|
|
if (!l) {
|
|
|
|
status = HAL_STATUS_FAILED;
|
|
|
|
goto failed;
|
|
|
|
}
|
2013-11-06 05:09:11 +08:00
|
|
|
|
|
|
|
dev = l->data;
|
2013-11-06 16:31:31 +08:00
|
|
|
req_size = (cmd->buf_size > 0) ? 4 : 2;
|
2013-11-06 05:09:11 +08:00
|
|
|
req = g_try_malloc0(req_size);
|
2013-12-02 20:20:45 +08:00
|
|
|
if (!req) {
|
|
|
|
status = HAL_STATUS_NOMEM;
|
|
|
|
goto failed;
|
|
|
|
}
|
2013-11-06 05:09:11 +08:00
|
|
|
|
|
|
|
req[0] = HID_MSG_GET_REPORT | cmd->type;
|
|
|
|
req[1] = cmd->id;
|
|
|
|
|
2013-11-06 16:33:31 +08:00
|
|
|
if (cmd->buf_size > 0) {
|
|
|
|
req[0] = req[0] | HID_GET_REPORT_SIZE_FIELD;
|
2014-03-14 21:13:02 +08:00
|
|
|
put_le16(cmd->buf_size, &req[2]);
|
2013-11-06 16:33:31 +08:00
|
|
|
}
|
2013-11-06 05:09:11 +08:00
|
|
|
|
|
|
|
fd = g_io_channel_unix_get_fd(dev->ctrl_io);
|
|
|
|
|
|
|
|
if (write(fd, req, req_size) < 0) {
|
2014-04-23 16:31:45 +08:00
|
|
|
error("hidhost: error writing hid_get_report: %s (%d)",
|
2013-11-08 21:46:31 +08:00
|
|
|
strerror(errno), errno);
|
2013-11-06 05:09:11 +08:00
|
|
|
g_free(req);
|
2013-12-02 20:20:45 +08:00
|
|
|
status = HAL_STATUS_FAILED;
|
|
|
|
goto failed;
|
2013-11-06 05:09:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dev->last_hid_msg = HID_MSG_GET_REPORT;
|
|
|
|
g_free(req);
|
2013-12-02 20:20:45 +08:00
|
|
|
|
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
|
|
|
|
failed:
|
2014-02-24 20:44:12 +08:00
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_HIDHOST, HAL_OP_HIDHOST_GET_REPORT,
|
|
|
|
status);
|
2013-11-01 21:52:44 +08:00
|
|
|
}
|
|
|
|
|
2013-12-02 20:20:45 +08:00
|
|
|
static void bt_hid_set_report(const void *buf, uint16_t len)
|
2013-11-01 21:52:44 +08:00
|
|
|
{
|
2013-12-02 20:20:45 +08:00
|
|
|
const struct hal_cmd_hidhost_set_report *cmd = buf;
|
2013-11-06 05:09:13 +08:00
|
|
|
struct hid_device *dev;
|
|
|
|
GSList *l;
|
|
|
|
bdaddr_t dst;
|
2014-04-08 20:22:27 +08:00
|
|
|
int fd;
|
2014-04-18 21:40:06 +08:00
|
|
|
uint8_t *req = NULL;
|
2013-11-06 05:09:13 +08:00
|
|
|
uint8_t req_size;
|
2013-12-02 20:20:45 +08:00
|
|
|
uint8_t status;
|
2013-11-01 21:52:44 +08:00
|
|
|
|
2013-11-06 05:09:13 +08:00
|
|
|
DBG("");
|
|
|
|
|
2013-12-02 20:20:45 +08:00
|
|
|
if (len != sizeof(*cmd) + cmd->len) {
|
|
|
|
error("Invalid hid set report size (%u bytes), terminating",
|
|
|
|
len);
|
|
|
|
raise(SIGTERM);
|
|
|
|
return;
|
|
|
|
}
|
2013-11-06 05:09:13 +08:00
|
|
|
|
2013-12-31 06:56:20 +08:00
|
|
|
switch (cmd->type) {
|
|
|
|
case HAL_HIDHOST_INPUT_REPORT:
|
|
|
|
case HAL_HIDHOST_OUTPUT_REPORT:
|
|
|
|
case HAL_HIDHOST_FEATURE_REPORT:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
status = HAL_STATUS_INVALID;
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
|
2013-11-06 05:09:13 +08:00
|
|
|
android2bdaddr(&cmd->bdaddr, &dst);
|
|
|
|
|
|
|
|
l = g_slist_find_custom(devices, &dst, device_cmp);
|
2013-12-02 20:20:45 +08:00
|
|
|
if (!l) {
|
|
|
|
status = HAL_STATUS_FAILED;
|
|
|
|
goto failed;
|
|
|
|
}
|
2013-11-06 05:09:13 +08:00
|
|
|
|
|
|
|
dev = l->data;
|
2013-11-08 20:08:48 +08:00
|
|
|
|
2014-07-02 15:58:11 +08:00
|
|
|
if (!dev->ctrl_io && !dev->hog) {
|
2013-12-02 20:20:45 +08:00
|
|
|
status = HAL_STATUS_FAILED;
|
|
|
|
goto failed;
|
|
|
|
}
|
2013-11-08 20:08:48 +08:00
|
|
|
|
|
|
|
req_size = 1 + (cmd->len / 2);
|
2013-11-06 05:09:13 +08:00
|
|
|
req = g_try_malloc0(req_size);
|
2013-12-02 20:20:45 +08:00
|
|
|
if (!req) {
|
|
|
|
status = HAL_STATUS_NOMEM;
|
|
|
|
goto failed;
|
|
|
|
}
|
2013-11-06 05:09:13 +08:00
|
|
|
|
|
|
|
req[0] = HID_MSG_SET_REPORT | cmd->type;
|
2014-04-29 19:17:25 +08:00
|
|
|
/*
|
|
|
|
* Report data coming to HAL is in ascii format, HAL sends
|
|
|
|
* data in hex to daemon, so convert to binary.
|
|
|
|
*/
|
2014-04-18 21:40:06 +08:00
|
|
|
if (!hex2buf(cmd->data, req + 1, req_size - 1)) {
|
|
|
|
status = HAL_STATUS_INVALID;
|
|
|
|
goto failed;
|
|
|
|
}
|
2013-11-06 05:09:13 +08:00
|
|
|
|
2014-07-02 15:58:11 +08:00
|
|
|
if (dev->hog) {
|
|
|
|
if (bt_hog_send_report(dev->hog, req + 1, req_size - 1,
|
|
|
|
cmd->type) < 0) {
|
|
|
|
status = HAL_STATUS_FAILED;
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2013-11-06 05:09:13 +08:00
|
|
|
fd = g_io_channel_unix_get_fd(dev->ctrl_io);
|
|
|
|
|
|
|
|
if (write(fd, req, req_size) < 0) {
|
2014-04-23 16:31:45 +08:00
|
|
|
error("hidhost: error writing hid_set_report: %s (%d)",
|
2013-11-08 21:46:31 +08:00
|
|
|
strerror(errno), errno);
|
2013-12-02 20:20:45 +08:00
|
|
|
status = HAL_STATUS_FAILED;
|
|
|
|
goto failed;
|
2013-11-06 05:09:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dev->last_hid_msg = HID_MSG_SET_REPORT;
|
2013-12-02 20:20:45 +08:00
|
|
|
|
2014-07-02 15:58:11 +08:00
|
|
|
done:
|
2013-12-02 20:20:45 +08:00
|
|
|
status = HAL_STATUS_SUCCESS;
|
|
|
|
|
|
|
|
failed:
|
2014-04-18 21:40:06 +08:00
|
|
|
g_free(req);
|
|
|
|
|
2014-02-24 20:44:12 +08:00
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_HIDHOST, HAL_OP_HIDHOST_SET_REPORT,
|
|
|
|
status);
|
2013-11-01 21:52:44 +08:00
|
|
|
}
|
|
|
|
|
2013-12-02 20:20:45 +08:00
|
|
|
static void bt_hid_send_data(const void *buf, uint16_t len)
|
2013-11-01 21:52:44 +08:00
|
|
|
{
|
2013-12-02 20:20:45 +08:00
|
|
|
const struct hal_cmd_hidhost_send_data *cmd = buf;
|
2013-11-08 20:08:50 +08:00
|
|
|
struct hid_device *dev;
|
|
|
|
GSList *l;
|
|
|
|
bdaddr_t dst;
|
2014-04-08 20:22:27 +08:00
|
|
|
int fd;
|
2014-04-18 21:40:06 +08:00
|
|
|
uint8_t *req = NULL;
|
2013-11-08 20:08:50 +08:00
|
|
|
uint8_t req_size;
|
2013-12-02 20:20:45 +08:00
|
|
|
uint8_t status;
|
2013-11-01 21:52:44 +08:00
|
|
|
|
2013-11-08 20:08:50 +08:00
|
|
|
DBG("");
|
|
|
|
|
2013-12-02 20:20:45 +08:00
|
|
|
if (len != sizeof(*cmd) + cmd->len) {
|
|
|
|
error("Invalid hid send data size (%u bytes), terminating",
|
|
|
|
len);
|
|
|
|
raise(SIGTERM);
|
|
|
|
return;
|
|
|
|
}
|
2013-11-08 20:08:50 +08:00
|
|
|
|
|
|
|
android2bdaddr(&cmd->bdaddr, &dst);
|
|
|
|
|
|
|
|
l = g_slist_find_custom(devices, &dst, device_cmp);
|
2013-12-02 20:20:45 +08:00
|
|
|
if (!l) {
|
|
|
|
status = HAL_STATUS_FAILED;
|
|
|
|
goto failed;
|
|
|
|
}
|
2013-11-08 20:08:50 +08:00
|
|
|
|
|
|
|
dev = l->data;
|
|
|
|
|
2013-12-02 20:20:45 +08:00
|
|
|
if (!(dev->intr_io)) {
|
|
|
|
status = HAL_STATUS_FAILED;
|
|
|
|
goto failed;
|
|
|
|
}
|
2013-11-08 20:08:50 +08:00
|
|
|
|
|
|
|
req_size = 1 + (cmd->len / 2);
|
|
|
|
req = g_try_malloc0(req_size);
|
2013-12-02 20:20:45 +08:00
|
|
|
if (!req) {
|
|
|
|
status = HAL_STATUS_NOMEM;
|
|
|
|
goto failed;
|
|
|
|
}
|
2013-11-08 20:08:50 +08:00
|
|
|
|
|
|
|
req[0] = HID_MSG_DATA | HID_DATA_TYPE_OUTPUT;
|
2014-04-29 19:17:25 +08:00
|
|
|
/*
|
|
|
|
* Report data coming to HAL is in ascii format, HAL sends
|
|
|
|
* data in hex to daemon, so convert to binary.
|
|
|
|
*/
|
2014-04-18 21:40:06 +08:00
|
|
|
if (!hex2buf(cmd->data, req + 1, req_size - 1)) {
|
|
|
|
status = HAL_STATUS_INVALID;
|
|
|
|
goto failed;
|
|
|
|
}
|
2013-11-08 20:08:50 +08:00
|
|
|
|
|
|
|
fd = g_io_channel_unix_get_fd(dev->intr_io);
|
|
|
|
|
|
|
|
if (write(fd, req, req_size) < 0) {
|
2014-04-23 16:31:45 +08:00
|
|
|
error("hidhost: error writing data to HID device: %s (%d)",
|
2013-11-08 21:46:31 +08:00
|
|
|
strerror(errno), errno);
|
2013-12-02 20:20:45 +08:00
|
|
|
status = HAL_STATUS_FAILED;
|
|
|
|
goto failed;
|
2013-11-08 20:08:50 +08:00
|
|
|
}
|
|
|
|
|
2013-12-02 20:20:45 +08:00
|
|
|
status = HAL_STATUS_SUCCESS;
|
2013-10-23 15:14:58 +08:00
|
|
|
|
2013-12-02 20:20:45 +08:00
|
|
|
failed:
|
2014-04-18 21:40:06 +08:00
|
|
|
g_free(req);
|
|
|
|
|
2014-02-24 20:44:12 +08:00
|
|
|
ipc_send_rsp(hal_ipc, HAL_SERVICE_ID_HIDHOST, HAL_OP_HIDHOST_SEND_DATA,
|
|
|
|
status);
|
2013-10-23 15:14:58 +08:00
|
|
|
}
|
2013-10-23 19:04:41 +08:00
|
|
|
|
2013-12-02 20:20:45 +08:00
|
|
|
static const struct ipc_handler cmd_handlers[] = {
|
|
|
|
/* HAL_OP_HIDHOST_CONNECT */
|
|
|
|
{ bt_hid_connect, false, sizeof(struct hal_cmd_hidhost_connect) },
|
|
|
|
/* HAL_OP_HIDHOST_DISCONNECT */
|
|
|
|
{ bt_hid_disconnect, false, sizeof(struct hal_cmd_hidhost_disconnect) },
|
|
|
|
/* HAL_OP_HIDHOST_VIRTUAL_UNPLUG */
|
|
|
|
{ bt_hid_virtual_unplug, false,
|
|
|
|
sizeof(struct hal_cmd_hidhost_virtual_unplug) },
|
|
|
|
/* HAL_OP_HIDHOST_SET_INFO */
|
|
|
|
{ bt_hid_info, true, sizeof(struct hal_cmd_hidhost_set_info) },
|
|
|
|
/* HAL_OP_HIDHOST_GET_PROTOCOL */
|
|
|
|
{ bt_hid_get_protocol, false,
|
|
|
|
sizeof(struct hal_cmd_hidhost_get_protocol) },
|
|
|
|
/* HAL_OP_HIDHOST_SET_PROTOCOL */
|
|
|
|
{ bt_hid_set_protocol, false,
|
|
|
|
sizeof(struct hal_cmd_hidhost_get_protocol) },
|
|
|
|
/* HAL_OP_HIDHOST_GET_REPORT */
|
|
|
|
{ bt_hid_get_report, false, sizeof(struct hal_cmd_hidhost_get_report) },
|
|
|
|
/* HAL_OP_HIDHOST_SET_REPORT */
|
|
|
|
{ bt_hid_set_report, true, sizeof(struct hal_cmd_hidhost_set_report) },
|
|
|
|
/* HAL_OP_HIDHOST_SEND_DATA */
|
|
|
|
{ bt_hid_send_data, true, sizeof(struct hal_cmd_hidhost_send_data) },
|
|
|
|
};
|
|
|
|
|
2013-10-31 20:19:46 +08:00
|
|
|
static void connect_cb(GIOChannel *chan, GError *err, gpointer user_data)
|
|
|
|
{
|
2013-11-01 21:08:38 +08:00
|
|
|
struct hid_device *dev;
|
2014-04-23 16:42:12 +08:00
|
|
|
bdaddr_t dst;
|
2013-10-31 20:19:46 +08:00
|
|
|
char address[18];
|
|
|
|
uint16_t psm;
|
|
|
|
GError *gerr = NULL;
|
|
|
|
GSList *l;
|
2013-11-01 16:58:43 +08:00
|
|
|
uuid_t uuid;
|
2013-10-31 20:19:46 +08:00
|
|
|
|
|
|
|
if (err) {
|
2014-04-23 16:31:45 +08:00
|
|
|
error("hidhost: Connect failed (%s)", err->message);
|
2013-10-31 20:19:46 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-13 22:29:34 +08:00
|
|
|
bt_io_get(chan, &gerr,
|
2013-10-31 20:19:46 +08:00
|
|
|
BT_IO_OPT_DEST_BDADDR, &dst,
|
|
|
|
BT_IO_OPT_PSM, &psm,
|
|
|
|
BT_IO_OPT_INVALID);
|
2013-11-13 22:29:34 +08:00
|
|
|
if (gerr) {
|
2014-04-23 16:31:45 +08:00
|
|
|
error("hidhost: Failed to read remote address (%s)",
|
|
|
|
gerr->message);
|
2013-10-31 20:19:46 +08:00
|
|
|
g_io_channel_shutdown(chan, TRUE, NULL);
|
2013-11-13 22:29:33 +08:00
|
|
|
g_error_free(gerr);
|
2013-10-31 20:19:46 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ba2str(&dst, address);
|
|
|
|
DBG("Incoming connection from %s on PSM %d", address, psm);
|
|
|
|
|
2014-08-25 20:54:18 +08:00
|
|
|
if (!bt_device_is_bonded(&dst)) {
|
|
|
|
warn("hidhost: Rejecting connection from unknown device %s",
|
|
|
|
address);
|
|
|
|
if (psm == L2CAP_PSM_HIDP_CTRL)
|
|
|
|
bt_hid_write_virtual_unplug(chan);
|
|
|
|
|
|
|
|
g_io_channel_shutdown(chan, TRUE, NULL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-10-31 20:19:46 +08:00
|
|
|
switch (psm) {
|
|
|
|
case L2CAP_PSM_HIDP_CTRL:
|
|
|
|
l = g_slist_find_custom(devices, &dst, device_cmp);
|
|
|
|
if (l)
|
|
|
|
return;
|
|
|
|
|
2014-06-25 17:09:25 +08:00
|
|
|
dev = hid_device_new(&dst);
|
2013-11-01 21:08:38 +08:00
|
|
|
dev->ctrl_io = g_io_channel_ref(chan);
|
2013-10-31 20:19:46 +08:00
|
|
|
|
2014-02-12 02:32:26 +08:00
|
|
|
sdp_uuid16_create(&uuid, PNP_INFO_SVCLASS_ID);
|
2014-04-23 16:42:12 +08:00
|
|
|
if (bt_search_service(&adapter_addr, &dev->dst, &uuid,
|
2014-02-12 02:32:28 +08:00
|
|
|
hid_sdp_did_search_cb, dev, NULL, 0) < 0) {
|
2014-04-23 16:31:45 +08:00
|
|
|
error("hidhost: Failed to search DID SDP details");
|
2014-02-06 21:06:02 +08:00
|
|
|
hid_device_remove(dev);
|
2013-11-01 16:58:43 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-01 21:08:38 +08:00
|
|
|
dev->ctrl_watch = g_io_add_watch(dev->ctrl_io,
|
2013-10-31 20:19:46 +08:00
|
|
|
G_IO_HUP | G_IO_ERR | G_IO_NVAL,
|
2013-11-01 21:08:38 +08:00
|
|
|
ctrl_watch_cb, dev);
|
2013-11-08 00:17:02 +08:00
|
|
|
bt_hid_notify_state(dev, HAL_HIDHOST_STATE_CONNECTING);
|
2013-10-31 20:19:46 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case L2CAP_PSM_HIDP_INTR:
|
|
|
|
l = g_slist_find_custom(devices, &dst, device_cmp);
|
|
|
|
if (!l)
|
|
|
|
return;
|
|
|
|
|
2013-11-01 21:08:38 +08:00
|
|
|
dev = l->data;
|
|
|
|
dev->intr_io = g_io_channel_ref(chan);
|
|
|
|
dev->intr_watch = g_io_add_watch(dev->intr_io,
|
2013-10-31 20:19:46 +08:00
|
|
|
G_IO_IN | G_IO_HUP | G_IO_ERR | G_IO_NVAL,
|
2013-11-01 21:08:38 +08:00
|
|
|
intr_watch_cb, dev);
|
2013-11-08 00:17:02 +08:00
|
|
|
bt_hid_notify_state(dev, HAL_HIDHOST_STATE_CONNECTED);
|
2013-10-31 20:19:46 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-03 07:50:44 +08:00
|
|
|
bool bt_hid_register(struct ipc *ipc, const bdaddr_t *addr, uint8_t mode)
|
2013-10-23 19:04:41 +08:00
|
|
|
{
|
2013-10-31 20:19:46 +08:00
|
|
|
GError *err = NULL;
|
|
|
|
|
2013-10-23 19:04:41 +08:00
|
|
|
DBG("");
|
|
|
|
|
2013-11-13 07:48:16 +08:00
|
|
|
bacpy(&adapter_addr, addr);
|
|
|
|
|
2013-10-31 20:19:46 +08:00
|
|
|
ctrl_io = bt_io_listen(connect_cb, NULL, NULL, NULL, &err,
|
2013-11-13 07:48:16 +08:00
|
|
|
BT_IO_OPT_SOURCE_BDADDR, &adapter_addr,
|
2013-10-31 20:19:46 +08:00
|
|
|
BT_IO_OPT_PSM, L2CAP_PSM_HIDP_CTRL,
|
|
|
|
BT_IO_OPT_SEC_LEVEL, BT_IO_SEC_LOW,
|
|
|
|
BT_IO_OPT_INVALID);
|
|
|
|
if (!ctrl_io) {
|
2014-04-23 16:31:45 +08:00
|
|
|
error("hidhost: Failed to listen on control channel: %s",
|
|
|
|
err->message);
|
2013-10-31 20:19:46 +08:00
|
|
|
g_error_free(err);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
intr_io = bt_io_listen(connect_cb, NULL, NULL, NULL, &err,
|
2013-11-13 07:48:16 +08:00
|
|
|
BT_IO_OPT_SOURCE_BDADDR, &adapter_addr,
|
2013-10-31 20:19:46 +08:00
|
|
|
BT_IO_OPT_PSM, L2CAP_PSM_HIDP_INTR,
|
|
|
|
BT_IO_OPT_SEC_LEVEL, BT_IO_SEC_LOW,
|
|
|
|
BT_IO_OPT_INVALID);
|
|
|
|
if (!intr_io) {
|
2014-04-23 16:31:45 +08:00
|
|
|
error("hidhost: Failed to listen on interrupt channel: %s",
|
|
|
|
err->message);
|
2013-10-31 20:19:46 +08:00
|
|
|
g_error_free(err);
|
2013-11-28 22:38:03 +08:00
|
|
|
|
|
|
|
g_io_channel_shutdown(ctrl_io, TRUE, NULL);
|
|
|
|
g_io_channel_unref(ctrl_io);
|
|
|
|
ctrl_io = NULL;
|
|
|
|
|
2013-10-31 20:19:46 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-02-24 20:44:12 +08:00
|
|
|
hal_ipc = ipc;
|
|
|
|
|
|
|
|
ipc_register(hal_ipc, HAL_SERVICE_ID_HIDHOST, cmd_handlers,
|
2013-12-02 23:17:58 +08:00
|
|
|
G_N_ELEMENTS(cmd_handlers));
|
2013-12-02 20:20:45 +08:00
|
|
|
|
2013-10-23 19:04:41 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void bt_hid_unregister(void)
|
|
|
|
{
|
|
|
|
DBG("");
|
|
|
|
|
2014-06-03 01:24:36 +08:00
|
|
|
if (hog_app > 0)
|
|
|
|
bt_gatt_unregister_app(hog_app);
|
|
|
|
|
2014-02-06 21:06:02 +08:00
|
|
|
g_slist_free_full(devices, hid_device_free);
|
2013-11-19 22:56:28 +08:00
|
|
|
devices = NULL;
|
2013-10-31 20:19:46 +08:00
|
|
|
|
2013-10-31 23:30:18 +08:00
|
|
|
if (ctrl_io) {
|
|
|
|
g_io_channel_shutdown(ctrl_io, TRUE, NULL);
|
|
|
|
g_io_channel_unref(ctrl_io);
|
|
|
|
ctrl_io = NULL;
|
|
|
|
}
|
2013-10-31 20:19:46 +08:00
|
|
|
|
2013-10-31 23:30:18 +08:00
|
|
|
if (intr_io) {
|
|
|
|
g_io_channel_shutdown(intr_io, TRUE, NULL);
|
|
|
|
g_io_channel_unref(intr_io);
|
|
|
|
intr_io = NULL;
|
|
|
|
}
|
2013-12-02 20:20:45 +08:00
|
|
|
|
2014-02-24 20:44:12 +08:00
|
|
|
ipc_unregister(hal_ipc, HAL_SERVICE_ID_HIDHOST);
|
|
|
|
hal_ipc = NULL;
|
2013-10-23 19:04:41 +08:00
|
|
|
}
|