-
Notifications
You must be signed in to change notification settings - Fork 47
/
thd.c
456 lines (416 loc) · 10.3 KB
/
thd.c
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
/* Copyright 2010 Stefan Tomanek <[email protected]>
* You have permission to copy, modify, and redistribute under the
* terms of the GPLv3 or any later version.
* For full license terms, see COPYING.
*/
#include <stdio.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include <errno.h>
#include <signal.h>
#include <glob.h>
#include <stdlib.h>
#include <sys/wait.h>
#include <sys/select.h>
#include <sys/time.h>
#include <getopt.h>
#include <sys/socket.h>
#include <sys/un.h>
#include <stddef.h>
#include <pwd.h>
#include <grp.h>
#ifdef HAVE_SYSTEMD
#include <systemd/sd-daemon.h>
#endif
#include "thd.h"
#include "eventnames.h"
#include "devices.h"
#include "keystate.h"
#include "trigger.h"
#include "command.h"
#include "cmdsocket.h"
#include "obey.h"
#include "ignore.h"
#include "uinput.h"
/* version information */
#include "version.h"
/* command channel & FD */
static char *cmd_file = NULL;
static int cmd_fd = -1;
static char *uinput_dev = NULL;
static int dump_events = 0;
static int run_as_daemon = 0;
static char *triggerfile = NULL;
static char *pidfile = NULL;
static keystate_holder *keystate = NULL;
static ignore *ignored_keys = NULL;
static int normalize_events = 0;
static char *user = NULL;
static int exiting = 0;
static int reload_conf = 0;
/* forward declarations */
static int reload_triggerfile();
/* FDs to watch */
static fd_set rfds;
static int max_fd = -1;
/*
* Look up event and key names and print them to STDOUT
*/
static void print_event(char* dev, struct input_event ev) {
const char *typename = lookup_type_name( ev );
const char *evname = lookup_event_name( ev );
if ( evname != NULL ) {
printf( "%s\t%s\t%d\t%s\n", typename, evname, ev.value, dev );
} else {
fprintf( stderr, "Unknown %s event id on %s : %d (value %d)\n", typename, dev, ev.code, ev.value );
}
fflush(stdout);
}
static void print_triggerline(struct input_event ev, keystate_holder ksh) {
const char *evname = lookup_event_name( ev );
char *state = ( ev.type == EV_KEY ? get_keystate_ignore_key( ksh, ev.code ) : NULL);
const int d = (state && strlen(state)>0);
if ( evname != NULL ) {
printf( "# %s%s%s\t%d\tcommand\n", state?state:"", d?"+":"", evname, ev.value );
fflush(stdout);
}
free(state);
}
/*
* Read event from fd, decode it and pass it to handlers
*/
static int read_event( device *dev ) {
int fd = dev->fd;
char *devname = dev->devname;
struct input_event ev;
int n = read( fd, &ev, sizeof(ev) );
if ( n != sizeof(ev) ) {
fprintf(stderr, "Error reading device '%s'\n", dev->devname);
return 1;
}
/* ignore all events except KEY, SW and REL*/
if (ev.type == EV_KEY || ev.type == EV_SW || ev.type == EV_REL || ev.type == EV_ABS) {
if (ev.type == EV_KEY && is_ignored( ev.code, ignored_keys)) {
return 0;
}
if ((ev.type == EV_REL || ev.type == EV_ABS) && normalize_events) {
if (ev.value > 0) {
ev.value = 1;
} else if (ev.value < 0) {
ev.value = -1;
}
}
if (dump_events) {
print_event( devname, ev );
print_triggerline( ev, *keystate );
}
run_triggers( ev.type, ev.code, ev.value, *keystate, dev );
change_keystate( *keystate, ev );
}
return 0;
}
static void check_device( device *d ) {
int fd = d->fd;
if (FD_ISSET( fd, &rfds )) {
if (read_event( d )) {
/* read error? Remove the device! */
remove_device( d->devname );
}
}
}
static void process_devices(void) {
for_each_device( &check_device );
}
static void add_device_to_fdset( device *d ) {
int fd = d->fd;
if (fd > max_fd) {
max_fd = fd;
}
FD_SET( fd, &rfds );
}
static void process_events(void) {
struct timeval tv;
int retval;
/* loop as long as we have at least one device or
* the command channel
*/
while ( count_devices() > 0 || cmd_fd != -1 ) {
FD_ZERO( &rfds );
max_fd = -1;
/* add device fds */
for_each_device( &add_device_to_fdset );
/* add command channel */
if (cmd_fd != -1) {
FD_SET( cmd_fd, &rfds );
max_fd = cmd_fd > max_fd ? cmd_fd : max_fd;
}
tv.tv_sec = 5;
tv.tv_usec = 0;
retval = select(max_fd+1, &rfds, NULL, NULL, &tv);
if (retval == -1 && errno != EINTR) {
perror("select()");
continue;
} else if (exiting) {
break;
} else if (reload_conf) {
reload_conf = 0;
reload_triggerfile();
continue;
} else if (retval) {
process_devices();
if ( cmd_fd != -1 && FD_ISSET( cmd_fd, &rfds ) ) {
struct command *cmd = read_command( cmd_fd );
obey_command( cmd );
free(cmd);
}
}
}
}
static int write_pidfile( char *pidfile ) {
FILE *pid = fopen( pidfile, "w+" );
if (pid == NULL) {
return 1;
}
fprintf(pid, "%u\n", (unsigned int) getpid());
return fclose(pid);
}
static struct option long_options[] = {
{"dump", no_argument, &dump_events, 1},
{"daemon", no_argument, &run_as_daemon, 1},
{"user", required_argument, 0, 'u'},
{"pidfile", required_argument, 0, 'p'},
{"triggers", required_argument, 0, 't'},
{"socket", required_argument, 0, 's'},
{"ignore", required_argument, 0, 'i'},
{"normalize", no_argument, &normalize_events, 1},
{"help", no_argument, 0, 'h'},
{"uinput", required_argument, 0, '<'},
{"listevents", no_argument, 0, 'l'},
{"deviceglob", required_argument, 0, 'g'},
{0,0,0,0} /* end of list */
};
void show_help(void) {
printf( "Triggerhappy event daemon " TH_VERSION "\n\n" );
printf( "Usage:\n" );
printf( " thd [switches] [devices]\n\n" );
printf( "Command line switches:\n" );
printf( " --help Display this help message\n" );
printf( " --daemon Run as daemon process\n" );
printf( " --dump Dump events to console\n" );
printf( " --listevents Print a list of all known events\n" );
printf( " --triggers <file> Load trigger definitions from <file>\n" );
printf( " --socket <socket> Read commands from socket\n" );
printf( " --ignore <event> Ignore key events with name <event>\n" );
printf( " --normalize Normalize relative movement events\n" );
printf( " --user <name> Drop privileges to <name> after opening devices\n" );
printf( " --deviceglob <p> Open device files matching pattern <p>\n" );
}
static void list_event_table(int type, int max) {
int n = 0;
for (n = 0; n <= max; n++) {
const char *name = lookup_event_name_i(type, n);
if (name) {
printf("%s\n", name);
}
}
}
static void list_events(void) {
list_event_table(EV_KEY, KEY_MAX);
list_event_table(EV_SW, SW_MAX);
list_event_table(EV_REL, REL_MAX);
list_event_table(EV_ABS, REL_MAX);
}
void cleanup(void) {
close_uinput();
if (cmd_file) {
if (cmd_fd != -1) {
close( cmd_fd );
}
unlink(cmd_file);
cmd_fd = -1;
}
clear_devices();
if (pidfile) {
unlink(pidfile);
}
}
static int reload_triggerfile(void) {
clear_triggers();
if (triggerfile) {
int err = read_triggers(triggerfile);
if (err) {
fprintf(stderr, "Error loading triggerfile '%s'\n", triggerfile);
return 1;
}
}
return 0;
}
static void handle_signal(int sig) {
switch (sig) {
case SIGINT:
case SIGTERM:
exiting = 1;
break;
case SIGHUP:
reload_conf = 1;
break;
}
}
int start_readers(int argc, char *argv[], int start, char *dev_glob) {
if (argc-start < 1 && cmd_file == NULL && dev_glob == NULL) {
fprintf(stderr, "No input device files or command pipe specified.\n");
return 1;
}
/* open command pipe */
if (cmd_file) {
cmd_fd = bind_cmdsocket(cmd_file);
if (cmd_fd < 0) {
return 1;
}
}
/* add every device file supplied on command line */
int i;
for (i=start; i<argc; i++) {
char *dev = argv[i];
/* TODO
* we should provide a method to
* optionally grab the device or
* assign a tag
*/
int grab_dev = 0;
char *tag_dev = NULL;
add_device( dev, -1, grab_dev, tag_dev );
}
/* check device glob */
if (dev_glob) {
glob_t globbuf;
glob(dev_glob, GLOB_NOSORT, NULL, &globbuf);
for (i=0; i<globbuf.gl_pathc; i++) {
int grab_dev = 0;
char *tag_dev = NULL;
add_device(globbuf.gl_pathv[i], -1, grab_dev, tag_dev);
}
}
if (run_as_daemon) {
int err = daemon(0,0);
if (err) {
perror("daemon()");
}
}
if (pidfile) {
write_pidfile( pidfile );
}
/* drop privileges */
if (user) {
struct passwd *pw = getpwnam(user);
if (pw) {
int uid = pw->pw_uid;
int gid = pw->pw_gid;
if ( initgroups(user, gid) ) {
perror("initgroups");
return 1;
}
if ( setregid( gid, gid ) ) {
perror("setregid");
return 1;
}
if ( setreuid( uid, uid ) ) {
perror("setreuid");
return 1;
}
} else {
fprintf(stderr, "Unable to lookup user '%s'.\n", user);
return 1;
}
}
#ifdef HAVE_SYSTEMD
sd_notify(0, "READY=1");
#endif
process_events();
return 0;
}
int main(int argc, char *argv[]) {
signal(SIGCHLD, SIG_IGN);
char *dev_glob = NULL;
int option_index = 0;
int c;
while (1) {
c = getopt_long (argc, argv, "t:s:dhpni:u:g:", long_options, &option_index);
if (c == -1) {
break;
}
switch (c) {
case 0:
if (long_options[option_index].flag != 0) {
break;
}
printf ("option %s", long_options[option_index].name);
if (optarg)
printf (" with arg %s", optarg);
printf ("\n");
break;
case 'd': /* short for --dump */
dump_events = 1;
break;
case 'p': /* short for --pidfile */
pidfile = optarg;
break;
case 't':
triggerfile = optarg;
break;
case 's':
cmd_file = optarg;
break;
case 'i':
if ( lookup_event_type(optarg) == EV_KEY ) {
ignore_key( lookup_event_code(optarg), &ignored_keys );
}
break;
case 'h':
show_help();
return 0;
case 'l':
list_events();
return 0;
case 'u':
user = optarg;
break;
case '<':
uinput_dev = optarg;
break;
case 'g':
dev_glob = optarg;
break;
case '?':
default:
return 1;
}
}
/* load config file */
if (reload_triggerfile() != 0) {
return 1;
}
/* init keystate holder */
init_keystate_holder(&keystate);
/* set initial trigger mode */
change_trigger_mode("");
/* open uinput if requested */
if (uinput_dev != NULL && open_uinput(uinput_dev) == -1) {
fprintf(stderr, "Error setting up uinput support\n");
return 1;
}
/* install signal handler */
struct sigaction handler;
handler.sa_handler = handle_signal;
sigfillset(&handler.sa_mask);
handler.sa_flags=0;
sigaction(SIGINT,&handler,0);
sigaction(SIGTERM,&handler,0);
sigaction(SIGHUP,&handler,0);
int status = start_readers(argc, argv, optind, dev_glob);
cleanup();
return status;
}