From: Aristeu Sergio Rozanski Filho <aris@cathedrallabs.org>
To: BlueZ development <bluez-devel@lists.sourceforge.net>
Subject: [Bluez-devel] [PATCH 3/4] add support to fake HID devices
Date: Tue, 29 Jan 2008 00:12:24 -0500 [thread overview]
Message-ID: <20080129051224.GD14674@jake.ruivo.org> (raw)
This patch adds support to fake HID devices. Instead of registering with
kernel, the fake HID will be handled in user level and an uinput device
will be created in order to get the events into input layer.
---
input/Makefile.am | 2 -
input/device.c | 36 ++++-----------------
input/device.h | 28 ++++++++++++++++
input/fake_hid.c | 90 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
input/fake_hid.h | 20 ++++++++++++
5 files changed, 146 insertions(+), 30 deletions(-)
--- a/input/device.c 2007-11-28 11:56:38.000000000 -0500
+++ b/input/device.c 2007-11-28 11:56:39.000000000 -0500
@@ -53,6 +53,7 @@
#include "manager.h"
#include "storage.h"
#include "bluetooth_ids.h"
+#include "fake_hid.h"
#define INPUT_DEVICE_INTERFACE "org.bluez.input.Device"
@@ -60,34 +61,6 @@
#define UPDOWN_ENABLED 1
-struct fake_input {
- GIOChannel *io;
- int rfcomm; /* RFCOMM socket */
- int uinput; /* uinput socket */
- uint8_t ch; /* RFCOMM channel number */
- gboolean (*connect)(struct device *idev);
- int (*disconnect)(struct device *idev);
- int (is_connected)(struct device *idev);
-};
-
-struct device {
- bdaddr_t src;
- bdaddr_t dst;
- char *name;
- uint8_t major;
- uint8_t minor;
- uint16_t product;
- uint16_t vendor;
- struct fake_input *fake;
- DBusMessage *pending_connect;
- DBusConnection *conn;
- char *path;
- int ctrl_sk;
- int intr_sk;
- guint ctrl_watch;
- guint intr_watch;
-};
-
GSList *devices = NULL;
static struct device *device_new(bdaddr_t *src, bdaddr_t *dst, uint8_t subclass)
@@ -1342,13 +1315,18 @@ int input_device_close_channels(bdaddr_t
int input_device_connadd(bdaddr_t *src, bdaddr_t *dst)
{
struct device *idev;
+ struct fake_hid *fake_hid;
int err;
idev = find_device(src, dst);
if (!idev)
return -ENOENT;
- err = hidp_connadd(src, dst, idev->ctrl_sk, idev->intr_sk, idev->name);
+ fake_hid = is_fake_hid(idev);
+ if (fake_hid)
+ err = fake_hid_connadd(idev, fake_hid);
+ else
+ err = hidp_connadd(src, dst, idev->ctrl_sk, idev->intr_sk, idev->name);
if (err < 0) {
close(idev->ctrl_sk);
close(idev->intr_sk);
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
+++ b/input/fake_hid.h 2007-11-28 11:56:39.000000000 -0500
@@ -0,0 +1,20 @@
+#ifndef FAKE_HID_H
+#define FAKE_HID_H
+#include <glib.h>
+struct device;
+struct fake_hid;
+
+struct fake_hid {
+ uint16_t vendor;
+ uint16_t product;
+ gboolean (*connect)(struct device *idev);
+ int (*disconnect)(struct device *idev);
+ int (*is_connected)(struct device *idev);
+ gboolean (*event)(GIOChannel *chan, GIOCondition cond, gpointer data);
+ int (*setup_uinput)(struct device *idev, struct fake_hid *fake_hid);
+};
+
+struct fake_hid *is_fake_hid(struct device *idev);
+int fake_hid_connadd(struct device *idev, struct fake_hid *fake_hid);
+#endif /* FAKE_HID_H */
+
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
+++ b/input/fake_hid.c 2007-11-28 11:56:39.000000000 -0500
@@ -0,0 +1,90 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <errno.h>
+#include <sys/types.h>
+#include <glib.h>
+#include <dbus/dbus.h>
+#include <bluetooth/bluetooth.h>
+#include <bluetooth/hidp.h>
+#include <bluetooth/l2cap.h>
+#include "logging.h"
+#include "bluetooth_ids.h"
+#include "device.h"
+#include "fake_hid.h"
+
+#define FAKE_HID_ENTRY(v, p, c, d, i, e, s) { \
+ .vendor = BLUETOOTH_VENDOR_ID_##v, \
+ .product = BLUETOOTH_DEVICE_ID_##p, \
+ .connect = c, \
+ .disconnect = d, \
+ .is_connected = i, \
+ .event = e, \
+ .setup_uinput = s, \
+ }
+
+static gboolean fake_hid_common_connect(struct device *idev)
+{
+ return TRUE;
+}
+
+static int fake_hid_common_disconnect(struct device *idev)
+{
+ return 0;
+}
+
+static int fake_hid_common_is_connected(struct device *idev)
+{
+ return 1;
+}
+
+static struct fake_hid fake_hid_table[] = {
+ { },
+};
+
+static inline int fake_hid_match_device(struct device *idev,
+ struct fake_hid *fhid)
+{
+ return idev->vendor == fhid->vendor &&
+ idev->product == fhid->product;
+}
+
+struct fake_hid *is_fake_hid(struct device *idev)
+{
+ int i;
+
+ for (i = 0; fake_hid_table[i].vendor != 0; i++)
+ if (fake_hid_match_device(idev, &fake_hid_table[i]))
+ return &fake_hid_table[i];
+
+ return NULL;
+}
+
+int fake_hid_connadd(struct device *idev, struct fake_hid *fake_hid)
+{
+ struct fake_input *fake;
+
+ fake = malloc(sizeof(struct fake_input));
+ if (fake == NULL)
+ return ENOMEM;
+ memset(fake, 0, sizeof(struct fake_input));
+
+ fake->connect = fake_hid->connect;
+ fake->disconnect = fake_hid->disconnect;
+ fake->is_connected = fake_hid->is_connected;
+ idev->fake = fake;
+
+ if (fake_hid->setup_uinput(idev, fake_hid)) {
+ error("Error setting up uinput");
+ free(fake);
+ idev->fake = NULL;
+ return 1;
+ }
+
+ fake->io = g_io_channel_unix_new(idev->intr_sk);
+ g_io_channel_set_close_on_unref(fake->io, TRUE);
+ g_io_add_watch(fake->io, G_IO_IN | G_IO_ERR | G_IO_HUP | G_IO_NVAL,
+ (GIOFunc) fake_hid->event, fake);
+
+ return 0;
+}
+
--- a/input/device.h 2007-11-28 11:56:35.000000000 -0500
+++ b/input/device.h 2007-11-28 11:56:39.000000000 -0500
@@ -24,6 +24,34 @@
#define L2CAP_PSM_HIDP_CTRL 0x11
#define L2CAP_PSM_HIDP_INTR 0x13
+struct device {
+ bdaddr_t src;
+ bdaddr_t dst;
+ char *name;
+ uint8_t major;
+ uint8_t minor;
+ uint16_t product;
+ uint16_t vendor;
+ struct fake_input *fake;
+ DBusMessage *pending_connect;
+ DBusConnection *conn;
+ char *path;
+ int ctrl_sk;
+ int intr_sk;
+ guint ctrl_watch;
+ guint intr_watch;
+};
+
+struct fake_input {
+ GIOChannel *io;
+ int rfcomm; /* RFCOMM socket */
+ int uinput; /* uinput socket */
+ uint8_t ch; /* RFCOMM channel number */
+ gboolean (*connect)(struct device *idev);
+ int (*disconnect)(struct device *idev);
+ int (*is_connected)(struct device *idev);
+};
+
int input_device_register(DBusConnection *conn, bdaddr_t *src, bdaddr_t *dst,
struct hidp_connadd_req *hidp, const char **ppath);
int fake_input_register(DBusConnection *conn, bdaddr_t *src,
--- a/input/Makefile.am 2007-11-28 11:56:37.000000000 -0500
+++ b/input/Makefile.am 2007-11-28 11:56:39.000000000 -0500
@@ -13,7 +13,7 @@ service_PROGRAMS = bluetoothd-service-in
bluetoothd_service_input_SOURCES = main.c \
manager.h manager.c \
server.h server.c device.h device.c storage.h storage.c \
- bluetooth_ids.h
+ bluetooth_ids.h fake_hid.c fake_hid.h
LDADD = $(top_builddir)/common/libhelper.a \
@GLIB_LIBS@ @DBUS_LIBS@ @BLUEZ_LIBS@
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel
next reply other threads:[~2008-01-29 5:12 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-01-29 5:12 Aristeu Sergio Rozanski Filho [this message]
2008-01-29 16:32 ` [Bluez-devel] [PATCH 3/4] add support to fake HID devices Marcel Holtmann
2008-01-29 17:06 ` Aristeu Rozanski
2008-01-29 17:09 ` Marcel Holtmann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20080129051224.GD14674@jake.ruivo.org \
--to=aris@cathedrallabs.org \
--cc=bluez-devel@lists.sourceforge.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox