|
|
@@ -0,0 +1,359 @@
|
|
|
+/**
|
|
|
+ * @file sys_evdev.c
|
|
|
+ * @author Ambroz Bizjak <ambrop7@gmail.com>
|
|
|
+ *
|
|
|
+ * @section LICENSE
|
|
|
+ *
|
|
|
+ * This file is part of BadVPN.
|
|
|
+ *
|
|
|
+ * BadVPN 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.
|
|
|
+ *
|
|
|
+ * BadVPN 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 Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
+ *
|
|
|
+ * @section DESCRIPTION
|
|
|
+ *
|
|
|
+ * Linux event device module.
|
|
|
+ *
|
|
|
+ * Synopsis: sys.evdev(string device)
|
|
|
+ * Description: reports input events from a Linux event device. Transitions up when an event is
|
|
|
+ * detected, and goes down waiting for the next event when sys.evdev::nextevent() is called.
|
|
|
+ * Variables:
|
|
|
+ * string type - symbolic event type (e.g. EV_KEY, EV_REL, EV_ABS), corresponding to
|
|
|
+ * (struct input_event).type, or "unknown"
|
|
|
+ * string value - event value (signed integer), equal to (struct input_event).value
|
|
|
+ * string code_numeric - numeric event code (unsigned integer), equal to
|
|
|
+ * (struct input_event).code
|
|
|
+ * string code - symbolic event code (e.g. KEY_ESC. KEY_1, KEY_2, BTN_LEFT), corrresponding
|
|
|
+ * to (struct input_event).code, or "unknown"
|
|
|
+ *
|
|
|
+ * Synopsis: sys.evdev::nextevent()
|
|
|
+ * Description: makes the evdev module transition down in order to report the next event.
|
|
|
+ */
|
|
|
+
|
|
|
+#include <stdlib.h>
|
|
|
+#include <string.h>
|
|
|
+#include <stdint.h>
|
|
|
+#include <inttypes.h>
|
|
|
+#include <sys/types.h>
|
|
|
+#include <sys/stat.h>
|
|
|
+#include <fcntl.h>
|
|
|
+#include <unistd.h>
|
|
|
+#include <linux/input.h>
|
|
|
+
|
|
|
+#include <misc/nonblocking.h>
|
|
|
+
|
|
|
+#include <ncd/NCDModule.h>
|
|
|
+
|
|
|
+#include <generated/blog_channel_ncd_sys_evdev.h>
|
|
|
+
|
|
|
+#include "linux_input_names.h"
|
|
|
+
|
|
|
+#define ModuleLog(i, ...) NCDModuleInst_Backend_Log((i), BLOG_CURRENT_CHANNEL, __VA_ARGS__)
|
|
|
+
|
|
|
+struct instance {
|
|
|
+ NCDModuleInst *i;
|
|
|
+ int evdev_fd;
|
|
|
+ BFileDescriptor bfd;
|
|
|
+ int processing;
|
|
|
+ struct input_event event;
|
|
|
+};
|
|
|
+
|
|
|
+struct nextevent_instance {
|
|
|
+ NCDModuleInst *i;
|
|
|
+};
|
|
|
+
|
|
|
+#define MAKE_LOOKUP_FUNC(_name_) \
|
|
|
+static const char * evdev_##_name_##_to_str (uint16_t type) \
|
|
|
+{ \
|
|
|
+ if (type >= (sizeof(_name_##_names) / sizeof(_name_##_names[0])) || !_name_##_names[type]) { \
|
|
|
+ return "unknown"; \
|
|
|
+ } \
|
|
|
+ return _name_##_names[type]; \
|
|
|
+}
|
|
|
+
|
|
|
+MAKE_LOOKUP_FUNC(type)
|
|
|
+MAKE_LOOKUP_FUNC(key)
|
|
|
+MAKE_LOOKUP_FUNC(rel)
|
|
|
+MAKE_LOOKUP_FUNC(abs)
|
|
|
+MAKE_LOOKUP_FUNC(sw)
|
|
|
+MAKE_LOOKUP_FUNC(msc)
|
|
|
+MAKE_LOOKUP_FUNC(led)
|
|
|
+MAKE_LOOKUP_FUNC(rep)
|
|
|
+MAKE_LOOKUP_FUNC(snd)
|
|
|
+MAKE_LOOKUP_FUNC(ffstatus)
|
|
|
+
|
|
|
+static void device_handler (struct instance *o, int events)
|
|
|
+{
|
|
|
+ ASSERT(!o->processing)
|
|
|
+
|
|
|
+ int res = read(o->evdev_fd, &o->event, sizeof(o->event));
|
|
|
+ if (res < 0) {
|
|
|
+ ModuleLog(o->i, BLOG_ERROR, "read failed");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (res != sizeof(o->event)) {
|
|
|
+ ModuleLog(o->i, BLOG_ERROR, "read wrong");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ // stop reading
|
|
|
+ BReactor_SetFileDescriptorEvents(o->i->reactor, &o->bfd, 0);
|
|
|
+
|
|
|
+ // set processing
|
|
|
+ o->processing = 1;
|
|
|
+
|
|
|
+ // signal up
|
|
|
+ NCDModuleInst_Backend_Event(o->i, NCDMODULE_EVENT_UP);
|
|
|
+}
|
|
|
+
|
|
|
+static void device_nextevent (struct instance *o)
|
|
|
+{
|
|
|
+ ASSERT(o->processing)
|
|
|
+
|
|
|
+ // start reading
|
|
|
+ BReactor_SetFileDescriptorEvents(o->i->reactor, &o->bfd, BREACTOR_READ);
|
|
|
+
|
|
|
+ // set not processing
|
|
|
+ o->processing = 0;
|
|
|
+
|
|
|
+ // signal down
|
|
|
+ NCDModuleInst_Backend_Event(o->i, NCDMODULE_EVENT_DOWN);
|
|
|
+}
|
|
|
+
|
|
|
+static void func_new (NCDModuleInst *i)
|
|
|
+{
|
|
|
+ // allocate instance
|
|
|
+ struct instance *o = malloc(sizeof(*o));
|
|
|
+ if (!o) {
|
|
|
+ ModuleLog(i, BLOG_ERROR, "failed to allocate instance");
|
|
|
+ goto fail0;
|
|
|
+ }
|
|
|
+ NCDModuleInst_Backend_SetUser(i, o);
|
|
|
+
|
|
|
+ // init arguments
|
|
|
+ o->i = i;
|
|
|
+
|
|
|
+ // check arguments
|
|
|
+ NCDValue *device_arg;
|
|
|
+ if (!NCDValue_ListRead(o->i->args, 1, &device_arg)) {
|
|
|
+ ModuleLog(o->i, BLOG_ERROR, "wrong arity");
|
|
|
+ goto fail1;
|
|
|
+ }
|
|
|
+ if (NCDValue_Type(device_arg) != NCDVALUE_STRING) {
|
|
|
+ ModuleLog(o->i, BLOG_ERROR, "wrong type");
|
|
|
+ goto fail1;
|
|
|
+ }
|
|
|
+
|
|
|
+ // open device
|
|
|
+ if ((o->evdev_fd = open(NCDValue_StringValue(device_arg), O_RDONLY)) < 0) {
|
|
|
+ ModuleLog(o->i, BLOG_ERROR, "open failed");
|
|
|
+ goto fail1;
|
|
|
+ }
|
|
|
+
|
|
|
+ // set non-blocking
|
|
|
+ if (!badvpn_set_nonblocking(o->evdev_fd)) {
|
|
|
+ ModuleLog(o->i, BLOG_ERROR, "badvpn_set_nonblocking failed");
|
|
|
+ goto fail2;
|
|
|
+ }
|
|
|
+
|
|
|
+ // init BFileDescriptor
|
|
|
+ BFileDescriptor_Init(&o->bfd, o->evdev_fd, (BFileDescriptor_handler)device_handler, o);
|
|
|
+ if (!BReactor_AddFileDescriptor(o->i->reactor, &o->bfd)) {
|
|
|
+ ModuleLog(o->i, BLOG_ERROR, "BReactor_AddFileDescriptor failed");
|
|
|
+ goto fail2;
|
|
|
+ }
|
|
|
+ BReactor_SetFileDescriptorEvents(o->i->reactor, &o->bfd, BREACTOR_READ);
|
|
|
+
|
|
|
+ // set not processing
|
|
|
+ o->processing = 0;
|
|
|
+
|
|
|
+ return;
|
|
|
+
|
|
|
+fail2:
|
|
|
+ ASSERT_FORCE(close(o->evdev_fd) == 0)
|
|
|
+fail1:
|
|
|
+ free(o);
|
|
|
+fail0:
|
|
|
+ NCDModuleInst_Backend_SetError(i);
|
|
|
+ NCDModuleInst_Backend_Event(i, NCDMODULE_EVENT_DEAD);
|
|
|
+}
|
|
|
+
|
|
|
+static void func_die (void *vo)
|
|
|
+{
|
|
|
+ struct instance *o = vo;
|
|
|
+ NCDModuleInst *i = o->i;
|
|
|
+
|
|
|
+ // free BFileDescriptor
|
|
|
+ BReactor_RemoveFileDescriptor(o->i->reactor, &o->bfd);
|
|
|
+
|
|
|
+ // close device
|
|
|
+ ASSERT_FORCE(close(o->evdev_fd) == 0)
|
|
|
+
|
|
|
+ // free instance
|
|
|
+ free(o);
|
|
|
+
|
|
|
+ NCDModuleInst_Backend_Event(i, NCDMODULE_EVENT_DEAD);
|
|
|
+}
|
|
|
+
|
|
|
+static int func_getvar (void *vo, const char *name, NCDValue *out)
|
|
|
+{
|
|
|
+ struct instance *o = vo;
|
|
|
+ ASSERT(o->processing)
|
|
|
+
|
|
|
+ if (!strcmp(name, "type")) {
|
|
|
+ if (!NCDValue_InitString(out, evdev_type_to_str(o->event.type))) {
|
|
|
+ ModuleLog(o->i, BLOG_ERROR, "NCDValue_InitString failed");
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ return 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!strcmp(name, "value")) {
|
|
|
+ char str[50];
|
|
|
+ snprintf(str, sizeof(str), "%"PRIi32, o->event.value);
|
|
|
+ if (!NCDValue_InitString(out, str)) {
|
|
|
+ ModuleLog(o->i, BLOG_ERROR, "NCDValue_InitString failed");
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ return 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!strcmp(name, "code_numeric")) {
|
|
|
+ char str[50];
|
|
|
+ snprintf(str, sizeof(str), "%"PRIu16, o->event.code);
|
|
|
+ if (!NCDValue_InitString(out, str)) {
|
|
|
+ ModuleLog(o->i, BLOG_ERROR, "NCDValue_InitString failed");
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ return 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!strcmp(name, "code")) {
|
|
|
+ const char *str = "unknown";
|
|
|
+
|
|
|
+ #define MAKE_CASE(_evname_, _name_) \
|
|
|
+ case _evname_: \
|
|
|
+ str = evdev_##_name_##_to_str(o->event.code); \
|
|
|
+ break;
|
|
|
+
|
|
|
+ switch (o->event.type) {
|
|
|
+ #ifdef EV_KEY
|
|
|
+ MAKE_CASE(EV_KEY, key)
|
|
|
+ #endif
|
|
|
+ #ifdef EV_REL
|
|
|
+ MAKE_CASE(EV_REL, rel)
|
|
|
+ #endif
|
|
|
+ #ifdef EV_ABS
|
|
|
+ MAKE_CASE(EV_ABS, abs)
|
|
|
+ #endif
|
|
|
+ #ifdef EV_SW
|
|
|
+ MAKE_CASE(EV_SW, sw)
|
|
|
+ #endif
|
|
|
+ #ifdef EV_MSC
|
|
|
+ MAKE_CASE(EV_MSC, msc)
|
|
|
+ #endif
|
|
|
+ #ifdef EV_LED
|
|
|
+ MAKE_CASE(EV_LED, led)
|
|
|
+ #endif
|
|
|
+ #ifdef EV_REP
|
|
|
+ MAKE_CASE(EV_REP, rep)
|
|
|
+ #endif
|
|
|
+ #ifdef EV_SND
|
|
|
+ MAKE_CASE(EV_SND, snd)
|
|
|
+ #endif
|
|
|
+ #ifdef EV_FF_STATUS
|
|
|
+ MAKE_CASE(EV_FF_STATUS, ffstatus)
|
|
|
+ #endif
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!NCDValue_InitString(out, str)) {
|
|
|
+ ModuleLog(o->i, BLOG_ERROR, "NCDValue_InitString failed");
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ return 1;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
+static void nextevent_func_new (NCDModuleInst *i)
|
|
|
+{
|
|
|
+ // allocate instance
|
|
|
+ struct nextevent_instance *o = malloc(sizeof(*o));
|
|
|
+ if (!o) {
|
|
|
+ ModuleLog(i, BLOG_ERROR, "failed to allocate instance");
|
|
|
+ goto fail0;
|
|
|
+ }
|
|
|
+ NCDModuleInst_Backend_SetUser(i, o);
|
|
|
+
|
|
|
+ // init arguments
|
|
|
+ o->i = i;
|
|
|
+
|
|
|
+ // check arguments
|
|
|
+ if (!NCDValue_ListRead(o->i->args, 0)) {
|
|
|
+ ModuleLog(o->i, BLOG_ERROR, "wrong arity");
|
|
|
+ goto fail1;
|
|
|
+ }
|
|
|
+
|
|
|
+ // get method object
|
|
|
+ struct instance *mo = i->method_object->inst_user;
|
|
|
+ ASSERT(mo->processing)
|
|
|
+
|
|
|
+ // wait for next event
|
|
|
+ device_nextevent(mo);
|
|
|
+
|
|
|
+ // signal up
|
|
|
+ NCDModuleInst_Backend_Event(o->i, NCDMODULE_EVENT_UP);
|
|
|
+
|
|
|
+ return;
|
|
|
+
|
|
|
+fail1:
|
|
|
+ free(o);
|
|
|
+fail0:
|
|
|
+ NCDModuleInst_Backend_SetError(i);
|
|
|
+ NCDModuleInst_Backend_Event(i, NCDMODULE_EVENT_DEAD);
|
|
|
+}
|
|
|
+
|
|
|
+static void nextevent_func_die (void *vo)
|
|
|
+{
|
|
|
+ struct nextevent_instance *o = vo;
|
|
|
+ NCDModuleInst *i = o->i;
|
|
|
+
|
|
|
+ // free instance
|
|
|
+ free(o);
|
|
|
+
|
|
|
+ NCDModuleInst_Backend_Event(i, NCDMODULE_EVENT_DEAD);
|
|
|
+}
|
|
|
+
|
|
|
+static const struct NCDModule modules[] = {
|
|
|
+ {
|
|
|
+ .type = "sys.evdev",
|
|
|
+ .func_new = func_new,
|
|
|
+ .func_die = func_die,
|
|
|
+ .func_getvar = func_getvar
|
|
|
+ }, {
|
|
|
+ .type = "sys.evdev::nextevent",
|
|
|
+ .func_new = nextevent_func_new,
|
|
|
+ .func_die = nextevent_func_die
|
|
|
+ }, {
|
|
|
+ .type = NULL
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+const struct NCDModuleGroup ncdmodule_sys_evdev = {
|
|
|
+ .modules = modules
|
|
|
+};
|