xref: /qemu/contrib/vhost-user-input/main.c (revision 0df750e9d3a5fea5e19f4750582121c9293a9d71)
1 /*
2  * This work is licensed under the terms of the GNU GPL, version 2 or
3  * (at your option) any later version.  See the COPYING file in the
4  * top-level directory.
5  */
6 
7 #include "qemu/osdep.h"
8 
9 #include <glib.h>
10 #include <linux/input.h>
11 
12 #include "qemu/iov.h"
13 #include "qemu/bswap.h"
14 #include "qemu/sockets.h"
15 #include "libvhost-user-glib.h"
16 #include "standard-headers/linux/virtio_input.h"
17 #include "qapi/error.h"
18 
19 enum {
20     VHOST_USER_INPUT_MAX_QUEUES = 2,
21 };
22 
23 typedef struct virtio_input_event virtio_input_event;
24 typedef struct virtio_input_config virtio_input_config;
25 
26 typedef struct VuInput {
27     VugDev dev;
28     GSource *evsrc;
29     int evdevfd;
30     GArray *config;
31     virtio_input_config *sel_config;
32     struct {
33         virtio_input_event event;
34         VuVirtqElement *elem;
35     } *queue;
36     uint32_t qindex, qsize;
37 } VuInput;
38 
39 static void vi_input_send(VuInput *vi, struct virtio_input_event *event)
40 {
41     VuDev *dev = &vi->dev.parent;
42     VuVirtq *vq = vu_get_queue(dev, 0);
43     VuVirtqElement *elem;
44     int i, len;
45 
46     /* queue up events ... */
47     if (vi->qindex == vi->qsize) {
48         vi->qsize++;
49         vi->queue = g_realloc_n(vi->queue, vi->qsize, sizeof(vi->queue[0]));
50     }
51     vi->queue[vi->qindex++].event = *event;
52 
53     /* ... until we see a report sync ... */
54     if (event->type != htole16(EV_SYN) ||
55         event->code != htole16(SYN_REPORT)) {
56         return;
57     }
58 
59     /* ... then check available space ... */
60     for (i = 0; i < vi->qindex; i++) {
61         elem = vu_queue_pop(dev, vq, sizeof(VuVirtqElement));
62         if (!elem) {
63             while (--i >= 0) {
64                 vu_queue_unpop(dev, vq, vi->queue[i].elem, 0);
65             }
66             vi->qindex = 0;
67             g_warning("virtio-input queue full");
68             return;
69         }
70         vi->queue[i].elem = elem;
71     }
72 
73     /* ... and finally pass them to the guest */
74     for (i = 0; i < vi->qindex; i++) {
75         elem = vi->queue[i].elem;
76         len = iov_from_buf(elem->in_sg, elem->in_num,
77                            0, &vi->queue[i].event, sizeof(virtio_input_event));
78         vu_queue_push(dev, vq, elem, len);
79         free(elem);
80     }
81 
82     vu_queue_notify(&vi->dev.parent, vq);
83     vi->qindex = 0;
84 }
85 
86 static void
87 vi_evdev_watch(VuDev *dev, int condition, void *data)
88 {
89     VuInput *vi = data;
90     int fd = vi->evdevfd;
91 
92     g_debug("Got evdev condition %x", condition);
93 
94     struct virtio_input_event virtio;
95     struct input_event evdev;
96     int rc;
97 
98     for (;;) {
99         rc = read(fd, &evdev, sizeof(evdev));
100         if (rc != sizeof(evdev)) {
101             break;
102         }
103 
104         g_debug("input %d %d %d", evdev.type, evdev.code, evdev.value);
105 
106         virtio.type  = htole16(evdev.type);
107         virtio.code  = htole16(evdev.code);
108         virtio.value = htole32(evdev.value);
109         vi_input_send(vi, &virtio);
110     }
111 }
112 
113 
114 static void vi_handle_status(VuInput *vi, virtio_input_event *event)
115 {
116     struct input_event evdev;
117     int rc;
118 
119     if (gettimeofday(&evdev.time, NULL)) {
120         perror("vi_handle_status: gettimeofday");
121         return;
122     }
123 
124     evdev.type = le16toh(event->type);
125     evdev.code = le16toh(event->code);
126     evdev.value = le32toh(event->value);
127 
128     rc = write(vi->evdevfd, &evdev, sizeof(evdev));
129     if (rc == -1) {
130         perror("vi_host_handle_status: write");
131     }
132 }
133 
134 static void vi_handle_sts(VuDev *dev, int qidx)
135 {
136     VuInput *vi = container_of(dev, VuInput, dev.parent);
137     VuVirtq *vq = vu_get_queue(dev, qidx);
138     virtio_input_event event;
139     VuVirtqElement *elem;
140     int len;
141 
142     g_debug("%s", G_STRFUNC);
143 
144     for (;;) {
145         elem = vu_queue_pop(dev, vq, sizeof(VuVirtqElement));
146         if (!elem) {
147             break;
148         }
149 
150         memset(&event, 0, sizeof(event));
151         len = iov_to_buf(elem->out_sg, elem->out_num,
152                          0, &event, sizeof(event));
153         vi_handle_status(vi, &event);
154         vu_queue_push(dev, vq, elem, len);
155         free(elem);
156     }
157 
158     vu_queue_notify(&vi->dev.parent, vq);
159 }
160 
161 static void
162 vi_panic(VuDev *dev, const char *msg)
163 {
164     g_critical("%s\n", msg);
165     exit(EXIT_FAILURE);
166 }
167 
168 static void
169 vi_queue_set_started(VuDev *dev, int qidx, bool started)
170 {
171     VuInput *vi = container_of(dev, VuInput, dev.parent);
172     VuVirtq *vq = vu_get_queue(dev, qidx);
173 
174     g_debug("queue started %d:%d", qidx, started);
175 
176     if (qidx == 1) {
177         vu_set_queue_handler(dev, vq, started ? vi_handle_sts : NULL);
178     }
179 
180     started = vu_queue_started(dev, vu_get_queue(dev, 0)) &&
181         vu_queue_started(dev, vu_get_queue(dev, 1));
182 
183     if (started && !vi->evsrc) {
184         vi->evsrc = vug_source_new(&vi->dev, vi->evdevfd,
185                                    G_IO_IN, vi_evdev_watch, vi);
186     }
187 
188     if (!started && vi->evsrc) {
189         vug_source_destroy(vi->evsrc);
190         vi->evsrc = NULL;
191     }
192 }
193 
194 static virtio_input_config *
195 vi_find_config(VuInput *vi, uint8_t select, uint8_t subsel)
196 {
197     virtio_input_config *cfg;
198     int i;
199 
200     for (i = 0; i < vi->config->len; i++) {
201         cfg = &g_array_index(vi->config, virtio_input_config, i);
202         if (select == cfg->select && subsel == cfg->subsel) {
203             return cfg;
204         }
205     }
206 
207     return NULL;
208 }
209 
210 static int vi_get_config(VuDev *dev, uint8_t *config, uint32_t len)
211 {
212     VuInput *vi = container_of(dev, VuInput, dev.parent);
213 
214     g_return_val_if_fail(len <= sizeof(*vi->sel_config), -1);
215 
216     if (vi->sel_config) {
217         memcpy(config, vi->sel_config, len);
218     } else {
219         memset(config, 0, len);
220     }
221 
222     return 0;
223 }
224 
225 static int vi_set_config(VuDev *dev, const uint8_t *data,
226                          uint32_t offset, uint32_t size,
227                          uint32_t flags)
228 {
229     VuInput *vi = container_of(dev, VuInput, dev.parent);
230     virtio_input_config *config = (virtio_input_config *)data;
231 
232     vi->sel_config = vi_find_config(vi, config->select, config->subsel);
233 
234     return 0;
235 }
236 
237 static const VuDevIface vuiface = {
238     .queue_set_started = vi_queue_set_started,
239     .get_config = vi_get_config,
240     .set_config = vi_set_config,
241 };
242 
243 static void
244 vi_bits_config(VuInput *vi, int type, int count)
245 {
246     virtio_input_config bits;
247     int rc, i, size = 0;
248 
249     memset(&bits, 0, sizeof(bits));
250     rc = ioctl(vi->evdevfd, EVIOCGBIT(type, count / 8), bits.u.bitmap);
251     if (rc < 0) {
252         return;
253     }
254 
255     for (i = 0; i < count / 8; i++) {
256         if (bits.u.bitmap[i]) {
257             size = i + 1;
258         }
259     }
260     if (size == 0) {
261         return;
262     }
263 
264     bits.select = VIRTIO_INPUT_CFG_EV_BITS;
265     bits.subsel = type;
266     bits.size   = size;
267     g_array_append_val(vi->config, bits);
268 }
269 
270 static char *opt_evdev;
271 static int opt_fdnum = -1;
272 static char *opt_socket_path;
273 static gboolean opt_nograb;
274 static gboolean opt_print_caps;
275 
276 static GOptionEntry entries[] = {
277     { "print-capabilities", 'c', 0, G_OPTION_ARG_NONE, &opt_print_caps,
278       "Print capabilities", NULL },
279     { "no-grab", 'n', 0, G_OPTION_ARG_NONE, &opt_nograb,
280       "Don't grab device", NULL },
281     { "fd", 'f', 0, G_OPTION_ARG_INT, &opt_fdnum,
282       "Use inherited fd socket", "FDNUM" },
283     { "socket-path", 's', 0, G_OPTION_ARG_FILENAME, &opt_socket_path,
284       "Use UNIX socket path", "PATH" },
285     { "evdev-path", 'p', 0, G_OPTION_ARG_FILENAME, &opt_evdev,
286       "evdev input device path", "PATH" },
287     { NULL, }
288 };
289 
290 int
291 main(int argc, char *argv[])
292 {
293     GMainLoop *loop = NULL;
294     VuInput vi = { 0, };
295     int rc, ver, fd;
296     virtio_input_config id;
297     struct input_id ids;
298     GError *error = NULL;
299     GOptionContext *context;
300 
301     context = g_option_context_new(NULL);
302     g_option_context_add_main_entries(context, entries, NULL);
303     if (!g_option_context_parse(context, &argc, &argv, &error)) {
304         g_printerr("Option parsing failed: %s\n", error->message);
305         exit(EXIT_FAILURE);
306     }
307     if (opt_print_caps) {
308         g_print("{\n");
309         g_print("  \"type\": \"input\",\n");
310         g_print("  \"features\": [\n");
311         g_print("    \"evdev-path\",\n");
312         g_print("    \"no-grab\"\n");
313         g_print("  ]\n");
314         g_print("}\n");
315         exit(EXIT_SUCCESS);
316     }
317     if (!opt_evdev) {
318         g_printerr("Please specify an evdev path\n");
319         exit(EXIT_FAILURE);
320     }
321     if ((!!opt_socket_path + (opt_fdnum != -1)) != 1) {
322         g_printerr("Please specify either --fd or --socket-path\n");
323         exit(EXIT_FAILURE);
324     }
325 
326     vi.evdevfd = open(opt_evdev, O_RDWR);
327     if (vi.evdevfd < 0) {
328         g_printerr("Failed to open evdev: %s\n", g_strerror(errno));
329         exit(EXIT_FAILURE);
330     }
331 
332     rc = ioctl(vi.evdevfd, EVIOCGVERSION, &ver);
333     if (rc < 0) {
334         g_printerr("%s: is not an evdev device\n", argv[1]);
335         exit(EXIT_FAILURE);
336     }
337 
338     if (!opt_nograb) {
339         rc = ioctl(vi.evdevfd, EVIOCGRAB, 1);
340         if (rc < 0) {
341             g_printerr("Failed to grab device\n");
342             exit(EXIT_FAILURE);
343         }
344     }
345 
346     vi.config = g_array_new(false, false, sizeof(virtio_input_config));
347     memset(&id, 0, sizeof(id));
348     if (ioctl(vi.evdevfd, EVIOCGNAME(sizeof(id.u.string) - 1),
349               id.u.string) < 0) {
350         g_printerr("Failed to get evdev name: %s\n", g_strerror(errno));
351         exit(EXIT_FAILURE);
352     }
353     id.select = VIRTIO_INPUT_CFG_ID_NAME;
354     id.size = strlen(id.u.string);
355     g_array_append_val(vi.config, id);
356 
357     if (ioctl(vi.evdevfd, EVIOCGID, &ids) == 0) {
358         memset(&id, 0, sizeof(id));
359         id.select = VIRTIO_INPUT_CFG_ID_DEVIDS;
360         id.size = sizeof(struct virtio_input_devids);
361         id.u.ids.bustype = cpu_to_le16(ids.bustype);
362         id.u.ids.vendor  = cpu_to_le16(ids.vendor);
363         id.u.ids.product = cpu_to_le16(ids.product);
364         id.u.ids.version = cpu_to_le16(ids.version);
365         g_array_append_val(vi.config, id);
366     }
367 
368     vi_bits_config(&vi, EV_KEY, KEY_CNT);
369     vi_bits_config(&vi, EV_REL, REL_CNT);
370     vi_bits_config(&vi, EV_ABS, ABS_CNT);
371     vi_bits_config(&vi, EV_MSC, MSC_CNT);
372     vi_bits_config(&vi, EV_SW,  SW_CNT);
373     g_debug("config length: %u", vi.config->len);
374 
375     if (opt_socket_path) {
376         int lsock = unix_listen(opt_socket_path, &error_fatal);
377         if (lsock < 0) {
378             g_printerr("Failed to listen on %s.\n", opt_socket_path);
379             exit(EXIT_FAILURE);
380         }
381         fd = accept(lsock, NULL, NULL);
382         close(lsock);
383     } else {
384         fd = opt_fdnum;
385     }
386     if (fd == -1) {
387         g_printerr("Invalid vhost-user socket.\n");
388         exit(EXIT_FAILURE);
389     }
390 
391     if (!vug_init(&vi.dev, VHOST_USER_INPUT_MAX_QUEUES, fd, vi_panic,
392                   &vuiface)) {
393         g_printerr("Failed to initialize libvhost-user-glib.\n");
394         exit(EXIT_FAILURE);
395     }
396 
397     loop = g_main_loop_new(NULL, FALSE);
398     g_main_loop_run(loop);
399     g_main_loop_unref(loop);
400 
401     vug_deinit(&vi.dev);
402 
403     vug_source_destroy(vi.evsrc);
404     g_array_free(vi.config, TRUE);
405     g_free(vi.queue);
406     return 0;
407 }
408