aboutsummaryrefslogtreecommitdiff
path: root/marsond.c
blob: 87ddf1471b5ff93f7ee841c04617f811697a6cd4 (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
#define _DEFAULT_SOURCE /* for getopt() and optarg */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <stdarg.h>
#include <sys/types.h>
#include <pwd.h>
#include <grp.h>
#include <signal.h>

#include <sys/resource.h>
#include <sys/mman.h>

#include <linux/input.h>
#include <linux/uinput.h>

#ifndef VERSION
#define VERSION "(unknown ver)"
#endif

#define DEFAULT_DELAY_MS 30

#define DEFAULT_KBD "/dev/input/by-id/usb-Marson_Marson_Keyboard_and_Mouse_Link_Ver:ps2120L-event-kbd"

#define DEFAULT_USER  "nobody"
#define DEFAULT_GROUP "nobody"

const char *self;

int debugging = 0;                      /* -v */
int foreground = 0;                     /* -v */
const char *keyboard_dev = DEFAULT_KBD; /* -k */
int delay_ms = DEFAULT_DELAY_MS;        /* -d */
int pause_ms = 0;                       /* -p */

int infd = -1, outfd = -1;

void cleanup(void);

/* variadic macros are apparently C99 and not just a GNU extension */
void logmsg(const char *prefix, const char *fmt, ...) {
	va_list ap;
	va_start(ap, fmt);
	fprintf(stderr, "%s: %s: ", self, prefix);
	vfprintf(stderr, fmt, ap);
	va_end(ap);
	fputc('\n', stderr);
}

#define die(fmt,  ...)  { logmsg("fatal",   fmt, ##__VA_ARGS__); cleanup(); exit(1); };
#define warn(fmt, ...)  { logmsg("warning", fmt, ##__VA_ARGS__); };
#define info(fmt, ...)  { logmsg("info",    fmt, ##__VA_ARGS__); };
#define debug(fmt, ...) { if(debugging) logmsg("debug",    fmt, ##__VA_ARGS__); };

void set_self(const char *argv0) {
   char *p;
   self = argv0;
   p = strrchr(self, '/');
   if(p) self = p + 1;
}

void print_help(void) {
	/* helptext comes from usage.c, which gets generated by mkusage.pl,
	   from the content in the the .rst file. */
	extern const char *helptext[];

	const char **helpline;

	puts("marsond " VERSION ", by B. Watson <urchlay@slackware.uk>, WTFPL");
	puts("Usage:");

	for(helpline = helptext; *helpline; helpline++)
		puts(*helpline);
}

void version(void) {
	puts(VERSION);
}

void parse_args(int argc, char **argv) {
	int opt;

	opterr = 0;

   if(argc >= 2) {
      if(strcmp(argv[1], "--help") == 0) {
         print_help();
         exit(0);
      } else if(strcmp(argv[1], "--version") == 0) {
         version();
         exit(0);
      }
   }

	while( (opt = getopt(argc, argv, "d:hfk:p:vV")) != -1) {
		switch(opt) {
			case 'd': delay_ms = atoi(optarg); break;
			case 'f': foreground++;            break;
			case 'h': print_help(); exit(0);   break;
			case 'k': keyboard_dev = optarg;   break;
			case 'p': pause_ms = atoi(optarg); break;
			case 'v': debugging++;             break;
			case 'V': version(); exit(0);      break;
			case '?': die("invalid option (try --help)"); break;
			default:  print_help(); exit(1);              break;
		}
	}

	if(delay_ms < 1) die("invalid -d argument");
}

/* cleanup() gets called by die() and sighandler() */
void cleanup(void) {
	if(outfd != -1) {
		ioctl(outfd, UI_DEV_DESTROY);
		close(outfd);
		outfd = -1;
	}

	if(infd != -1) {
		ioctl(infd, EVIOCGRAB, 0);
		close(infd);
		infd = -1;
	}
}

/* (try to) exit cleanly if we get a SIGTERM.
   I say "try" because ioctl() (used by cleanup()) is not listed as
   async-signal-safe in signal-safety(7). However, it does seem to
   work OK.
   If we didn't catch SIGTERM, the result would be that the keyboard
   stops working entirely if marsond was started from udev and
   manually killed. Cleanly exiting allows the physical keyboard to
   keep working (with the Enter key timing issue of course).
 */
void sighandler(int sig, siginfo_t *si, void *) {
	if(sig != SIGTERM) {
		/* this should never happen! */
		return;
	}

	cleanup();

   exit(0);
}

void setup_sighandler(void) {
	struct sigaction sa;

	sa.sa_flags = SA_SIGINFO;
	sigemptyset(&sa.sa_mask);
	sa.sa_sigaction = sighandler;

	if(sigaction(SIGTERM, &sa, NULL) < 0) {
		warn("can't catch SIGTERM (WTF?)");
	}
}

/* since every keystroke passes through this daemon, we *don't*
   want it to be swapped out. it would suck if you couldn't type
   because you were compiling something huge... note that we have to
   do this after all the forking, see mlockall(2) for details. */
void lock_memory(void) {
	if(mlockall(MCL_CURRENT) >= 0) {
		debug("mlockall() succeeded");
	} else {
		if(foreground)
			warn("can't lock memory: %s", strerror(errno));
	}
}

/* TODO: look into using *actual* realtime scheduling, as
   described in sched(7). */
void set_realtime(void) {
	if(setpriority(PRIO_PROCESS, 0, -20) >= 0) {
		debug("setpriority() succeeded");
	} else {
		if(foreground)
			warn("can't setpriority(): %s", strerror(errno));
	}
}

void drop_privs(void) {
	const char *user, *group;
	struct passwd *pw;
	struct group *gr;
	gid_t gid;

	user = getenv("MARSON_USER");

	if(!user) user = DEFAULT_USER;

	if( !(pw = getpwnam(user)) ) {
		die("no such user '%s'", user);
	}

	if( (group = getenv("MARSON_GROUP")) ) {
		if( !(gr = getgrnam(user)) ) {
			die("no such group '%s'", group);
		}
		gid = gr->gr_gid;
	} else {
		gid = pw->pw_gid;
	}

	debug("about to drop privileges to user/group %d/%d", pw->pw_uid, gid);

	if(setgid(gid) < 0) {
		die("can't change group ID to %d: %s", gid, strerror(errno));
	}

	if(setuid(pw->pw_uid) < 0) {
		die("can't change user ID to %d: %s", pw->pw_uid, strerror(errno));
	}

	debug("now running as user/group %d/%d", getuid(), getgid());
}

void daemonize(void) {
	int pid;

	pid = fork();
	if(pid < 0) {
		die("fork() failed");
	} else if(pid) {
		/* parent */
		exit(0);
	}

	/* we are the child here */
	setsid();

	pid = fork();
	if(pid < 0) {
		die("fork() failed");
	} else if(pid) {
		/* 2nd generation parent */
		info("forked to background, PID %d", pid);
		exit(0);
	}

	/* we are the grandchild here */

	/* nothing left to say, close stdin/out/err and cd to / so at
	   shutdown time, umount won't trip over our cwd. */
	chdir("/");
	close(0);
	close(1);
	close(2);

	/* nowhere for debug messages to go, so turn it off */
	debugging = 0;

	lock_memory();
	set_realtime();
	drop_privs();
}

void set_evbit(int outfd, int event) {
	if(ioctl(outfd, UI_SET_EVBIT, event) >= 0) {
		debug("UI_SET_EVBIT %d OK");
	} else {
		die("UI_SET_EVBIT %d failed: %s", event, strerror(errno));
	}
}

int main(int argc, char **argv) {
	int i;
	struct uinput_user_dev dev;
	struct input_event ev;

	set_self(argv[0]);
	debug("starting up");

	parse_args(argc, argv);

	if(pause_ms > 0) {
		debug("pausing %dms due to -p option");
		usleep(pause_ms * 1000);
	}

	if((outfd = open("/dev/uinput", O_WRONLY | O_NONBLOCK)) >= 0) {
		debug("opened /dev/uinput");
	} else {
		die("failed to open /dev/uinput: %s", strerror(errno));
	}

	if((infd = open(keyboard_dev, O_RDONLY)) >= 0) {
		debug("opened %s", keyboard_dev);
	} else {
		die("failed to open %s: %s", keyboard_dev, strerror(errno));
	}

	if(ioctl(infd, EVIOCGRAB, 1) >= 0) {
		debug("grabbed %s", keyboard_dev);
	} else {
		if(errno == EBUSY)
			warn("is an instance of %s already running?", self);
		die("failed to grab %s: %s", keyboard_dev, strerror(errno));
	}

	set_evbit(outfd, EV_KEY); /* get and send keystroke events... */
	set_evbit(outfd, EV_SYN); /* ...sync events... */
	set_evbit(outfd, EV_MSC); /* ...and miscellaneous. */
	/* the other event types will never be sent by a keyboard. */

	/* we want all possible keystrokes */
	for(i = 0; i < KEY_MAX; i++) {
		if(ioctl(outfd, UI_SET_KEYBIT, i) >= 0) {
			/* we don't wanna be *that* verbose */
		} else {
			die("UI_SET_KEYBIT %d failed: %s", i, strerror(errno));
		}
	}
	debug("UI_SET_KEYBIT OK");

	/* this is the old API. uinput.rst in the kernel sources shows
	   how to use the new API, then recommends using the old API
	   as a fallback for older kernels... I don't see a need to
	   even try the new API, if the old one works. */
	memset(&dev, 0, sizeof(dev));
	snprintf(dev.name, UINPUT_MAX_NAME_SIZE, "marsond virtual keyboard");
	dev.id.bustype = BUS_USB;
	dev.id.vendor =  0x69;
	dev.id.product = 0x666;
	dev.id.version = 1;

	if(write(outfd, &dev, sizeof(dev)) >= 0) {
		debug("wrote dev structure to /dev/uinput");
	} else {
		die("write to /dev/uinput failed: %s", strerror(errno));
	}

	/* I was hoping the return value of this ioctl would be the
	   device number, but it's just 0 for no error. */
	if(ioctl(outfd, UI_DEV_CREATE) >= 0) {
		if(debugging) {
			char name[UINPUT_MAX_NAME_SIZE];
			if(ioctl(outfd, UI_GET_SYSNAME(UINPUT_MAX_NAME_SIZE), name) >= 0) {
				debug("created virtual keyboard device: /sys/devices/virtual/input/%s/", name);
			} else {
				debug("created virtual keyboard device but couldn't get its name (old kernel?)");
			}
		}
	} else {
		die("UI_DEV_CREATE failed: %s", strerror(errno));
	}

	setup_sighandler();

	/* this must be done while still running as root... */
	if(foreground) {
		lock_memory();
		set_realtime();
		drop_privs();
		debug("entering event loop");
	} else {
		daemonize();
	}

	/* note: don't call debug() or die() unless foreground is true, since
	   daemonize() closes our stderr (there's nowhere for the messages
	   to print). */
	while(1) {
		if(read(infd, &ev, sizeof(ev)) < 0) {
			if(foreground) {
				die("read from %s failed: %s", keyboard_dev, strerror(errno));
			} else {
				exit(1);
			}
		}

		if(foreground) {
			debug("got event: type %d, code %d, value %d\n",
					ev.type, ev.code, ev.value);
		}

		/* value == 0 means key release (a 1 would be a press) */
		if(ev.type == EV_KEY && ev.code == KEY_ENTER && ev.value == 0) {
			if(foreground) {
				debug("!!! got Enter key release, delaying %d ms", delay_ms);
			}
			usleep(delay_ms * 1000);
		}

		if(write(outfd, &ev, sizeof(ev)) < 0) {
			if(foreground) {
				die("write to /dev/uinput failed: %s", strerror(errno));
			} else {
				exit(1);
			}
		}
	}

	exit(1);
}

/*
for the A key:

event: type 4, code 4, value 458756
event: type 1, code 30, value 1
event: type 0, code 0, value 0
event: type 4, code 4, value 458756
event: type 1, code 30, value 0
event: type 0, code 0, value 0

for Enter:

event: type 4, code 4, value 458792
event: type 1, code 28, value 1
event: type 0, code 0, value 0
event: type 4, code 4, value 458792
event: type 1, code 28, value 0
event: type 0, code 0, value 0

Onlt the type 1 messages concern us, but we have to pass
them all through. code 28 is KEY_ENTER, value is 1 for press,
0 for release.
*/