aboutsummaryrefslogtreecommitdiff
path: root/src/evdev.c
blob: 3a2e3972d41ea1b57fcfb894a3cfbd1f0dc21634 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
/*
 * Copyright © 2006 Zephaniah E. Hull
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Soft-
 * ware"), to deal in the Software without restriction, including without
 * limitation the rights to use, copy, modify, merge, publish, distribute,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, provided that the above copyright
 * notice(s) and this permission notice appear in all copies of the Soft-
 * ware and that both the above copyright notice(s) and this permission
 * notice appear in supporting documentation.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
 * ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY
 * RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN
 * THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSE-
 * QUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFOR-
 * MANCE OF THIS SOFTWARE.
 *
 * Except as contained in this notice, the name of a copyright holder shall
 * not be used in advertising or otherwise to promote the sale, use or
 * other dealings in this Software without prior written authorization of
 * the copyright holder.
 *
 * Author:  Zephaniah E. Hull (warp@aehallh.com)
 */
/*
 * Copyright © 2004 Red Hat, Inc.
 *
 * Permission to use, copy, modify, distribute, and sell this software
 * and its documentation for any purpose is hereby granted without
 * fee, provided that the above copyright notice appear in all copies
 * and that both that copyright notice and this permission notice
 * appear in supporting documentation, and that the name of Red Hat
 * not be used in advertising or publicity pertaining to distribution
 * of the software without specific, written prior permission.  Red
 * Hat makes no representations about the suitability of this software
 * for any purpose.  It is provided "as is" without express or implied
 * warranty.
 *
 * RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
 * NO EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
 * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
 * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 *
 * Author:  Kristian Høgsberg (krh@redhat.com)
 */
 
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
 
#include <X11/keysym.h>
#include <X11/XF86keysym.h>
#include <X11/extensions/XIproto.h>
 
#include <string.h>
 
/* The libc wrapper just blows... linux/input.h must be included
 * before xf86_ansic.h and xf86_libc.h so we avoid defining ioctl
 * twice. */
#include "evdev.h"
 
#include <xf86.h>
 
#include <xf86Module.h>
 
 
#include <xf86_OSproc.h>
 
/*
 * FIXME: This should most definitely not be here.
 * But I need it, even if it _is_ private.
 */
 
void xf86ActivateDevice(InputInfoPtr pInfo);
 
static void
EvdevReadInput(InputInfoPtr pInfo)
{
    struct input_event ev;
    int len, value;
 
    while (xf86WaitForInput (pInfo->fd, 0) > 0{
        len = read(pInfo->fd, &ev, sizeof(ev));
        if (len != sizeof(ev)) {
            /* The kernel promises that we always only read a complete
             * event, so len != sizeof ev is an error. */
            xf86Msg(X_ERROR, "Read error: %s (%d%d != %ld)\n",
    strerror(errno), errno, len, sizeof (ev));
            break;
        }
 
        /* Get the signed value, earlier kernels had this as unsigned */
        value = ev.value;
 
        switch (ev.type{
        case EV_REL:
    EvdevRelProcess (pInfo, &ev);
    break;
 
        case EV_ABS:
    EvdevAbsProcess (pInfo, &ev);
            break;
 
        case EV_KEY:
    if ((ev.code >= BTN_MISC) && (ev.code < KEY_OK))
EvdevBtnProcess (pInfo, &ev);
    else
EvdevKeyProcess (pInfo, &ev);
    break;
 
        case EV_SYN:
    if (ev.code == SYN_REPORT) {
EvdevRelSyn (pInfo);
EvdevAbsSyn (pInfo);
/* EvdevBtnSyn (pInfo); */
/* EvdevKeySyn (pInfo); */
    }
            break;
        }
    }
}
 
static void
EvdevSigioReadInput (int fd, void *data)
{
    EvdevReadInput ((InputInfoPtr) data);
}
 
static int
EvdevProc(DeviceIntPtr device, int what)
{
    InputInfoPtr pInfo = device->public.devicePrivate;
    evdevDevicePtr pEvdev = pInfo->private;
 
    if (!pEvdev->device)
return BadRequest;
 
    switch (what)
    {
    case DEVICE_INIT:
if (pEvdev->state.abs)
    EvdevAbsInit (device);
if (pEvdev->state.rel)
    EvdevRelInit (device);
if (pEvdev->state.btn)
    EvdevBtnInit (device);
if (pEvdev->state.key)
    EvdevKeyInit (device);
xf86Msg(X_INFO, "%s: Init\n", pInfo->name);
break;
 
    case DEVICE_ON:
xf86Msg(X_INFO, "%s: On\n", pInfo->name);
if (device->public.on)
    break;
 
if ((pInfo->fd = evdevGetFDForDevice (pEvdev)) == -1{
    xf86Msg(X_ERROR, "%s: cannot open input device.\n", pInfo->name);
 
    if (pEvdev->phys)
xfree(pEvdev->phys);
    pEvdev->phys = NULL;
 
    if (pEvdev->device)
xfree(pEvdev->device);
    pEvdev->device = NULL;
 
    return BadRequest;
}
 
if (pEvdev->state.can_grab)
    if (ioctl(pInfo->fd, EVIOCGRAB, (void *)1))
xf86Msg(X_ERROR, "%s: Unable to grab device (%s).\n", pInfo->name, strerror(errno));
 
xf86FlushInput (pInfo->fd);
if (!xf86InstallSIGIOHandler (pInfo->fd, EvdevSigioReadInput, pInfo))
    AddEnabledDevice (pInfo->fd);
 
device->public.on = TRUE;
 
if (pEvdev->state.abs)
    EvdevAbsOn (device);
if (pEvdev->state.rel)
    EvdevRelOn (device);
if (pEvdev->state.btn)
    EvdevBtnOn (device);
if (pEvdev->state.key)
    EvdevKeyOn (device);
break;
 
    case DEVICE_CLOSE:
    case DEVICE_OFF:
xf86Msg(X_INFO, "%s: Off\n", pInfo->name);
if (pInfo->fd != -1{
    if (pEvdev->state.can_grab)
ioctl(pInfo->fd, EVIOCGRAB, (void *)0);
 
    RemoveEnabledDevice (pInfo->fd);
    xf86RemoveSIGIOHandler (pInfo->fd);
    close (pInfo->fd);
 
    if (pEvdev->state.abs)
EvdevAbsOff (device);
    if (pEvdev->state.rel)
EvdevRelOff (device);
    if (pEvdev->state.btn)
EvdevBtnOff (device);
    if (pEvdev->state.key)
EvdevKeyOff (device);
}
 
device->public.on = FALSE;
break;
    }
 
    return Success;
}
 
static int
EvdevSwitchMode (ClientPtr client, DeviceIntPtr device, int mode)
{
    InputInfoPtr pInfo = device->public.devicePrivate;
    evdevDevicePtr pEvdev = pInfo->private;
    evdevStatePtr state = &pEvdev->state;
 
    switch (mode)
    {
case Absolute:
case Relative:
    if (state->abs)
state->mode = mode;
    else
return !Success;
    break;
case SendCoreEvents:
case DontSendCoreEvents:
    xf86XInputSetSendCoreEvents (pInfo, (mode == SendCoreEvents));
    break;
default:
    return !Success;
    }
 
    return Success;
}
 
static Bool
EvdevNew(evdevDriverPtr driver, evdevDevicePtr device)
{
    InputInfoPtr pInfo;
    char name[512] = {0};
 
    if (!(pInfo = xf86AllocateInput(driver->drv, 0)))
return 0;
 
    /* Initialise the InputInfoRec. */
    strncat (name, driver->dev->identifier, sizeof(name));
    strncat (name, "-"sizeof(name));
    strncat (name, device->phys, sizeof(name));
    pInfo->name = xstrdup(name);
    pInfo->flags = 0;
    pInfo->type_name = "UNKNOWN";
    pInfo->device_control = EvdevProc;
    pInfo->read_input = EvdevReadInput;
    pInfo->switch_mode = EvdevSwitchMode;
    pInfo->motion_history_proc = xf86GetMotionEvents;
    pInfo->conf_idev = driver->dev;
 
    pInfo->private = device;
 
    device->callback = EvdevProc;
    device->pInfo = pInfo;
 
    xf86CollectInputOptions(pInfo, NULLNULL);
    xf86ProcessCommonOptions(pInfo, pInfo->options);
 
    if ((pInfo->fd = evdevGetFDForDevice (device)) == -1{
xf86Msg(X_ERROR, "%s: cannot open input device\n", pInfo->name);
pInfo->private = NULL;
xf86DeleteInput (pInfo, 0);
return 0;
    }
 
    if (!evdevGetBits (pInfo->fd, &device->bits)) {
xf86Msg(X_ERROR, "%s: cannot load bits\n", pInfo->name);
pInfo->private = NULL;
close (pInfo->fd);
xf86DeleteInput (pInfo, 0);
return 0;
    }
 
    if (ioctl(pInfo->fd, EVIOCGRAB, (void *)1)) {
xf86Msg(X_INFO, "%s: Unable to grab device (%s).  Cowardly refusing to check use as keyboard.\n", pInfo->name, strerror(errno));
device->state.can_grab = 0;
    } else {
device->state.can_grab = 1;
        ioctl(pInfo->fd, EVIOCGRAB, (void *)0);
    }
 
 
    /* XXX: Note, the order of these is important. */
    EvdevAbsNew (pInfo);
    EvdevRelNew (pInfo);
    EvdevBtnNew (pInfo);
    if (device->state.can_grab)
EvdevKeyNew (pInfo);
 
    close (pInfo->fd);
    pInfo->fd = -1;
 
    pInfo->flags |= XI86_OPEN_ON_INIT;
    if (!(pInfo->flags & XI86_CONFIGURED)) {
        xf86Msg(X_ERROR, "%s: Don't know how to use device.\n", pInfo->name);
pInfo->private = NULL;
close (pInfo->fd);
xf86DeleteInput (pInfo, 0);
        return 0;
    }
 
    if (driver->configured) {
xf86ActivateDevice (pInfo);
 
pInfo->dev->inited = (device->callback(device->pInfo->dev, DEVICE_INIT) == Success);
EnableDevice (pInfo->dev);
    }
 
    return 1;
}
 
static void
EvdevParseBits (char *in, long *out, int len)
{
    unsigned long v[2];
    int n, i, max_bits = len * BITS_PER_LONG;
 
    n = sscanf (in, "%lu-%lu", &v[0], &v[1]);
    if (!n)
return;
 
    if (v[0] >= max_bits)
return;
 
    if (n == 2{
if (v[1] >= max_bits)
    v[1] = max_bits - 1;
 
for (i = v[0]; i <= v[1]; i++)
    set_bit (i, out);
    } else
set_bit (v[0], out);
}
 
static void
EvdevParseBitOption (char *opt, long *all, long *not, long *any, int len)
{
    char *cur, *next;
 
    next = opt - 1;
    while (next) {
cur = next + 1;
if ((next = strchr(cur, ' ')))
    *next = '\0';
 
switch (cur[0]) {
    case '+':
EvdevParseBits (cur + 1, all, len);
break;
    case '-':
EvdevParseBits (cur + 1, not, len);
break;
    case '~':
EvdevParseBits (cur + 1, any, len);
break;
}
    }
}
 
static InputInfoPtr
EvdevCorePreInit(InputDriverPtr drv, IDevPtr dev, int flags)
{
    evdevDriverPtr pEvdev;
    char *opt, *tmp;
 
    if (!(pEvdev = Xcalloc(sizeof(*pEvdev))))
        return NULL;
 
    pEvdev->name = xf86CheckStrOption(dev->commonOptions, "Name"NULL);
    pEvdev->phys = xf86CheckStrOption(dev->commonOptions, "Phys"NULL);
    pEvdev->device = xf86CheckStrOption(dev->commonOptions, "Device"NULL);
 
#define bitoption(field) \
    opt = xf86CheckStrOption(dev->commonOptions, #field "Bits"NULL); \
    if (opt) { \
tmp = strdup(opt); \
EvdevParseBitOption (tmp, pEvdev->all_bits.field, \
pEvdev->not_bits.field, \
pEvdev->any_bits.field, \
sizeof(pEvdev->not_bits.field) / sizeof (long)); \
free (tmp); \
    }
    bitoption(ev);
    bitoption(key);
    bitoption(rel);
    bitoption(abs);
    bitoption(msc);
    bitoption(led);
    bitoption(snd);
    bitoption(ff);
#undef bitoption
 
    pEvdev->id.bustype = xf86CheckIntOption(dev->commonOptions, "bustype"0);
    pEvdev->id.vendor = xf86CheckIntOption(dev->commonOptions, "vendor"0);
    pEvdev->id.product = xf86CheckIntOption(dev->commonOptions, "product"0);
    pEvdev->id.version = xf86CheckIntOption(dev->commonOptions, "version"0);
 
    pEvdev->pass = xf86CheckIntOption(dev->commonOptions, "Pass"0);
    if (pEvdev->pass > 3)
pEvdev->pass = 3;
    else if (pEvdev->pass < 0)
pEvdev->pass = 0;
 
 
    xf86Msg(X_CONFIG, "%s: name: %s, phys: %s, device: %s, pass: %d.\n",
    dev->identifier, pEvdev->name, pEvdev->phys, pEvdev->device,
    pEvdev->pass);
 
    pEvdev->callback = EvdevNew;
 
    pEvdev->dev = dev;
    pEvdev->drv = drv;
 
    if (!evdevStart (drv)) {
xf86Msg(X_ERROR, "%s: cannot start evdev brain.\n", dev->identifier);
        xfree(pEvdev);
return NULL;
    }
 
    evdevNewDriver (pEvdev);
 
    if (pEvdev->devices && pEvdev->devices->pInfo)
return pEvdev->devices->pInfo;
 
    return NULL;
}
 
_X_EXPORT InputDriverRec EVDEV = {
    1,
    "evdev",
    NULL,
    EvdevCorePreInit,
    NULL,
    NULL,
    0
};
 
#ifdef XFree86LOADER
 
static void
EvdevUnplug(pointer p)
{
}
 
static pointer
EvdevPlug(pointer module,
          pointer options,
          int *errmaj,
          int *errmin)
{
    xf86AddInputDriver(&EVDEV, module, 0);
    return module;
}
 
static XF86ModuleVersionInfo EvdevVersionRec =
{
    "evdev",
    MODULEVENDORSTRING,
    MODINFOSTRING1,
    MODINFOSTRING2,
    0/* Missing from SDK: XORG_VERSION_CURRENT, */
    100,
    ABI_CLASS_XINPUT,
    ABI_XINPUT_VERSION,
    MOD_CLASS_XINPUT,
    {0000}
};
 
_X_EXPORT XF86ModuleData evdevModuleData =
{
    &EvdevVersionRec,
    EvdevPlug,
    EvdevUnplug
};
#endif /* XFree86LOADER */