jsfw/hid.c

326 lines
9.5 KiB
C
Raw Normal View History

2022-08-30 08:37:34 -05:00
#include <dirent.h>
#include <fcntl.h>
#include <linux/input.h>
#include <linux/joystick.h>
#include <linux/uinput.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <time.h>
2022-08-29 17:27:03 -05:00
#include "hid.h"
#include "main.h"
2022-08-30 08:37:34 -05:00
#include "vec.h"
2022-08-29 17:27:03 -05:00
// List of uniq of the currently known devices
static Vec devices;
// List of the new devices of a poll, static to keep the allocation alive
static Vec new_devices;
// Queue of devices to be taken by connections
static Vec devices_queue;
// Mutex for the device queue
static pthread_mutex_t devices_queue_mutex = PTHREAD_MUTEX_INITIALIZER;
// Condvar notified on device queue update
static pthread_cond_t devices_queue_cond = PTHREAD_COND_INITIALIZER;
// Mutex for devices
static pthread_mutex_t devices_mutex = PTHREAD_MUTEX_INITIALIZER;
2022-08-30 08:37:34 -05:00
static char *DEFAULT_NAME = "Unnamed Device";
2022-08-29 18:06:25 -05:00
2022-08-29 17:27:03 -05:00
// uniqs are just hexadecimal numbers with colons in between each byte
uniq_t parse_uniq(char uniq[17]) {
uniq_t res = 0;
2022-08-30 08:37:34 -05:00
for (int i = 0; i < 17; i++) {
2022-08-29 17:27:03 -05:00
char c = uniq[i];
2022-08-30 08:37:34 -05:00
int digit;
if (c >= '0' && c <= '9')
digit = c - '0';
else if (c >= 'a' && c <= 'f')
digit = c - 'a' + 10;
else if (c >= 'A' && c <= 'F')
digit = c - 'A' + 10;
else
continue;
2022-08-29 17:27:03 -05:00
res <<= 4;
res += digit;
}
return res;
}
2022-08-30 08:37:34 -05:00
static inline bool bit_set(uint8_t *bits, int i) { return bits[i / 8] & (1 << (i % 8)); }
void setup_device(PhysicalDevice *dev) {
dev->device_info.code = DeviceInfo;
dev->device_info.abs_count = 0;
dev->device_info.rel_count = 0;
dev->device_info.key_count = 0;
2022-08-30 11:28:29 -05:00
for(int i = 0; i < ABS_CNT; i++)
dev->mapping.abs_indices[i] = -1;
for(int i = 0; i < REL_CNT; i++)
dev->mapping.key_indices[i] = -1;
for(int i = 0; i < KEY_CNT; i++)
dev->mapping.key_indices[i] = -1;
2022-08-30 08:37:34 -05:00
uint8_t bits[EV_MAX] = {};
uint8_t feat_bits[KEY_MAX] = {};
ioctl(dev->event, EVIOCGBIT(0, EV_MAX), bits);
for (int i = 0; i < EV_MAX; i++) {
if (bit_set(bits, i)) {
ioctl(dev->event, EVIOCGBIT(i, KEY_MAX), feat_bits);
for (int j = 0; j < KEY_MAX; j++) {
if (bit_set(feat_bits, j)) {
if (i == EV_ABS) {
struct input_absinfo abs;
ioctl(dev->event, EVIOCGABS(j), &abs);
uint8_t index = dev->device_info.abs_count++;
dev->device_info.abs_id[index] = j;
dev->device_info.abs_min[index] = abs.minimum;
dev->device_info.abs_max[index] = abs.maximum;
dev->device_info.abs_fuzz[index] = abs.fuzz;
dev->device_info.abs_flat[index] = abs.flat;
dev->device_info.abs_res[index] = abs.resolution;
dev->mapping.abs_indices[j] = index;
} else if (i == EV_REL) {
uint8_t index = dev->device_info.rel_count++;
dev->device_info.rel_id[index] = j;
dev->mapping.rel_indices[j] = index;
} else if (i == EV_KEY) {
uint8_t index = dev->device_info.key_count++;
dev->device_info.key_id[index] = j;
dev->mapping.key_indices[j] = index;
}
}
}
}
}
}
bool filter_event(int fd, char *event) {
2022-08-29 17:27:03 -05:00
char device_path[64];
snprintf(device_path, 64, "/sys/class/input/%s/device", event);
2022-08-30 08:37:34 -05:00
DIR *device_dir = opendir(device_path);
struct dirent *device_dirent;
2022-08-29 17:27:03 -05:00
bool found = false;
2022-08-30 08:37:34 -05:00
while ((device_dirent = readdir(device_dir)) != NULL) {
if (device_dirent->d_type == DT_DIR && strncmp(device_dirent->d_name, "js", 2) == 0) {
2022-08-29 17:27:03 -05:00
found = true;
break;
}
}
2022-08-29 18:06:25 -05:00
closedir(device_dir);
2022-08-30 08:37:34 -05:00
if (!found) {
2022-08-29 17:27:03 -05:00
return false;
}
2022-08-30 08:37:34 -05:00
2022-08-29 17:27:03 -05:00
uint16_t info[4];
ioctl(fd, EVIOCGID, info);
return info[1] == 0x054c && info[2] == 0x05c4;
}
void poll_devices_init() {
2022-08-30 08:37:34 -05:00
devices = vec_of(uniq_t);
new_devices = vec_of(PhysicalDevice);
2022-08-29 17:27:03 -05:00
devices_queue = vec_of(PhysicalDevice);
}
PhysicalDevice get_device() {
pthread_mutex_lock(&devices_queue_mutex);
2022-08-30 08:37:34 -05:00
if (devices_queue.len > 0) {
2022-08-29 17:27:03 -05:00
PhysicalDevice r;
vec_pop(&devices_queue, &r);
pthread_mutex_unlock(&devices_queue_mutex);
return r;
}
2022-08-30 08:37:34 -05:00
while (devices_queue.len == 0) {
2022-08-29 17:27:03 -05:00
pthread_cond_wait(&devices_queue_cond, &devices_queue_mutex);
}
2022-08-30 08:37:34 -05:00
2022-08-29 17:27:03 -05:00
PhysicalDevice res;
vec_pop(&devices_queue, &res);
2022-08-30 08:37:34 -05:00
if (devices_queue.len > 0) {
2022-08-29 17:27:03 -05:00
pthread_cond_signal(&devices_queue_cond);
}
pthread_mutex_unlock(&devices_queue_mutex);
return res;
}
2022-08-30 08:37:34 -05:00
void return_device(PhysicalDevice *dev) {
if (dev->name != NULL && dev->name != DEFAULT_NAME) {
2022-08-29 18:06:25 -05:00
printf("HID: Returning device '%s' (%012lx)\n", dev->name, dev->uniq);
free(dev->name);
} else {
printf("HID: Returning device %012lx\n", dev->uniq);
}
2022-08-29 17:27:03 -05:00
close(dev->event);
close(dev->hidraw);
pthread_mutex_lock(&devices_mutex);
2022-08-30 08:37:34 -05:00
for (int i = 0; i < devices.len; i++) {
uniq_t *uniq = vec_get(&devices, i);
if (*uniq == dev->uniq) {
2022-08-29 17:27:03 -05:00
vec_remove(&devices, i, NULL);
break;
}
}
pthread_mutex_unlock(&devices_mutex);
}
void poll_devices() {
vec_clear(&new_devices);
2022-08-30 08:37:34 -05:00
DIR *input_dir = opendir("/sys/class/input");
struct dirent *input;
while ((input = readdir(input_dir)) != NULL) {
2022-08-29 17:27:03 -05:00
// Ignore if the entry isn't a linkg or doesn't start with event
2022-08-30 08:37:34 -05:00
if (input->d_type != DT_LNK || strncmp(input->d_name, "event", 5) != 0) {
2022-08-29 17:27:03 -05:00
continue;
}
2022-08-30 08:37:34 -05:00
PhysicalDevice dev;
2022-08-29 17:27:03 -05:00
char event_path[64];
snprintf(event_path, 64, "/dev/input/%s", input->d_name);
dev.event = open(event_path, O_RDONLY);
2022-08-30 08:37:34 -05:00
if (dev.event < 0) {
2022-08-29 17:27:03 -05:00
continue;
}
2022-08-30 08:37:34 -05:00
char name_buf[256] = {};
char *name;
if (ioctl(dev.event, EVIOCGNAME(256), name_buf) >= 0)
2022-08-29 18:06:25 -05:00
name = name_buf;
else
name = DEFAULT_NAME;
2022-08-29 17:27:03 -05:00
2022-08-30 08:37:34 -05:00
if (!filter_event(dev.event, input->d_name))
goto skip;
2022-08-29 17:27:03 -05:00
uniq_t uniq;
{
char uniq_str[17] = {};
2022-08-30 08:37:34 -05:00
ioctl(dev.event, EVIOCGUNIQ(17), uniq_str);
2022-08-29 17:27:03 -05:00
uniq = parse_uniq(uniq_str);
// If we couldn't parse the uniq (this assumes uniq can't be zero, which is probably alright)
2022-08-30 08:37:34 -05:00
if (uniq == 0)
goto skip;
2022-08-29 17:27:03 -05:00
}
bool found = false;
pthread_mutex_lock(&devices_mutex);
2022-08-30 08:37:34 -05:00
for (int i = 0; i < devices.len; i++) {
uniq_t *dev_uniq = vec_get(&devices, i);
if (*dev_uniq == uniq) {
2022-08-29 17:27:03 -05:00
found = true;
break;
}
}
pthread_mutex_unlock(&devices_mutex);
2022-08-30 08:37:34 -05:00
if (found)
goto skip;
2022-08-29 17:27:03 -05:00
dev.uniq = uniq;
char hidraw_path[64];
{
char hidraw_path[256];
snprintf(hidraw_path, 256, "/sys/class/input/%s/device/device/hidraw", input->d_name);
2022-08-30 08:37:34 -05:00
DIR *hidraw_dir = opendir(hidraw_path);
struct dirent *hidraw = NULL;
while ((hidraw = readdir(hidraw_dir)) != NULL) {
if (strncmp(hidraw->d_name, "hidraw", 6) == 0)
break;
2022-08-29 17:27:03 -05:00
}
2022-08-30 08:37:34 -05:00
if (hidraw == NULL) {
2022-08-29 17:27:03 -05:00
printf("Couldn't get hidraw of %s", input->d_name);
continue;
}
snprintf(hidraw_path, 64, "/dev/%s", hidraw->d_name);
closedir(hidraw_dir);
}
dev.hidraw = open(hidraw_path, O_WRONLY);
2022-08-30 08:37:34 -05:00
if (dev.hidraw < 0)
goto skip;
2022-08-29 17:27:03 -05:00
2022-08-29 18:06:25 -05:00
dev.name = malloc(256);
2022-08-30 08:37:34 -05:00
if (dev.name == NULL)
2022-08-29 18:06:25 -05:00
dev.name = DEFAULT_NAME;
else
strcpy(dev.name, name);
2022-08-30 08:37:34 -05:00
setup_device(&dev);
2022-08-29 17:27:03 -05:00
pthread_mutex_lock(&devices_mutex);
vec_push(&devices, &uniq);
pthread_mutex_unlock(&devices_mutex);
vec_push(&new_devices, &dev);
printf("HID: New device, %s (%s: %012lx)\n", name, input->d_name, dev.uniq);
continue;
// close open file descriptor and continue
2022-08-30 08:37:34 -05:00
skip:
2022-08-29 17:27:03 -05:00
close(dev.event);
continue;
};
closedir(input_dir);
2022-08-30 08:37:34 -05:00
if (new_devices.len > 0) {
2022-08-29 17:27:03 -05:00
pthread_mutex_lock(&devices_queue_mutex);
vec_extend(&devices_queue, new_devices.data, new_devices.len);
// Signal that there are new devices
pthread_cond_signal(&devices_queue_cond);
pthread_mutex_unlock(&devices_queue_mutex);
}
}
2022-08-30 08:37:34 -05:00
void apply_controller_state(PhysicalDevice *dev, MessageControllerState *state) {
uint8_t buf[32] = {0x05, 0xff, 0x00, 0x00};
buf[4] = state->small_rumble;
buf[5] = state->big_rumble;
buf[6] = state->led[0];
buf[7] = state->led[1];
buf[8] = state->led[2];
buf[9] = state->flash_on;
buf[10] = state->flash_off;
write(dev->hidraw, buf, 32);
if(state->flash_on == 0 && state->flash_off == 0) {
fsync(dev->hidraw);
// Send a second time because it doesn't work otherwise
write(dev->hidraw, buf, 32);
};
}
void *hid_thread() {
2022-08-29 17:27:03 -05:00
printf("HID: start\n");
poll_devices_init();
2022-08-30 08:37:34 -05:00
while (1) {
2022-08-29 17:27:03 -05:00
poll_devices();
struct timespec ts;
2022-08-30 08:37:34 -05:00
ts.tv_sec = 1;
2022-08-29 17:27:03 -05:00
ts.tv_nsec = 0;
nanosleep(&ts, NULL);
}
return NULL;
2022-08-27 19:29:43 -05:00
}