2020-09-17 15:56:41 +10:00
|
|
|
// SPDX-License-Identifier: MIT
|
2013-06-27 09:40:23 +10:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2013 Red Hat, Inc.
|
|
|
|
|
*/
|
|
|
|
|
|
2020-02-14 10:13:18 +10:00
|
|
|
#include "config.h"
|
2013-06-27 09:40:23 +10:00
|
|
|
#include <check.h>
|
2018-06-15 15:08:53 +10:00
|
|
|
#include <errno.h>
|
2017-05-09 08:12:43 +10:00
|
|
|
#include <stdio.h>
|
2013-12-24 08:19:16 +10:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#include <sys/ptrace.h>
|
2017-05-09 08:12:43 +10:00
|
|
|
#include <sys/resource.h>
|
2013-12-24 08:19:16 +10:00
|
|
|
#include <sys/wait.h>
|
2018-06-15 15:08:53 +10:00
|
|
|
#include <sys/stat.h>
|
|
|
|
|
#include <sys/types.h>
|
2014-01-17 10:21:48 +10:00
|
|
|
#include <libevdev/libevdev.h>
|
|
|
|
|
|
|
|
|
|
#include "test-common.h"
|
2013-06-27 09:40:23 +10:00
|
|
|
|
2013-12-24 08:19:16 +10:00
|
|
|
static int
|
|
|
|
|
is_debugger_attached(void)
|
|
|
|
|
{
|
2020-08-10 23:24:34 +02:00
|
|
|
int rc = 1;
|
|
|
|
|
/*
|
|
|
|
|
* FreeBSD does not support PTRACE_ATTACH, disable attaching a debugger
|
|
|
|
|
* on FreeBSD by skipping the rest of the function and just return 1.
|
|
|
|
|
*/
|
|
|
|
|
#ifndef __FreeBSD__
|
2013-12-24 08:19:16 +10:00
|
|
|
int status;
|
|
|
|
|
int pid = fork();
|
|
|
|
|
|
|
|
|
|
if (pid == -1)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
if (pid == 0) {
|
|
|
|
|
int ppid = getppid();
|
|
|
|
|
if (ptrace(PTRACE_ATTACH, ppid, NULL, NULL) == 0) {
|
|
|
|
|
waitpid(ppid, NULL, 0);
|
|
|
|
|
ptrace(PTRACE_CONT, NULL, NULL);
|
|
|
|
|
ptrace(PTRACE_DETACH, ppid, NULL, NULL);
|
|
|
|
|
rc = 0;
|
2020-08-10 23:24:34 +02:00
|
|
|
}
|
2013-12-24 08:19:16 +10:00
|
|
|
_exit(rc);
|
|
|
|
|
} else {
|
|
|
|
|
waitpid(pid, &status, 0);
|
|
|
|
|
rc = WEXITSTATUS(status);
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-10 23:24:34 +02:00
|
|
|
#endif /* !__FreeBSD__ */
|
2013-12-24 08:19:16 +10:00
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-15 15:08:53 +10:00
|
|
|
static bool
|
|
|
|
|
device_nodes_exist(void)
|
|
|
|
|
{
|
|
|
|
|
struct stat st;
|
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
|
|
rc = stat("/dev/uinput", &st);
|
|
|
|
|
if (rc == -1 && errno == ENOENT)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
rc = stat("/dev/input", &st);
|
|
|
|
|
if (rc == -1 && errno == ENOENT)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
/* Any issues but ENOENT we just let the test suite blow up later */
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-15 14:36:37 +10:00
|
|
|
extern const struct libevdev_test __start_test_section, __stop_test_section;
|
|
|
|
|
|
2017-05-09 08:13:53 +10:00
|
|
|
int main(void)
|
2013-06-27 09:40:23 +10:00
|
|
|
{
|
2018-06-15 14:36:37 +10:00
|
|
|
const struct libevdev_test *t;
|
2017-05-09 08:12:43 +10:00
|
|
|
const struct rlimit corelimit = {0, 0};
|
2013-06-27 09:40:23 +10:00
|
|
|
int failed;
|
2013-12-24 08:19:16 +10:00
|
|
|
|
2018-06-15 14:51:19 +10:00
|
|
|
for (t = &__start_test_section; t < &__stop_test_section; t++) {
|
|
|
|
|
if (t->needs_root_privileges) {
|
2018-06-29 11:13:44 +10:00
|
|
|
if (getenv("LIBEVDEV_SKIP_ROOT_TESTS"))
|
|
|
|
|
return 77;
|
2018-06-15 15:08:53 +10:00
|
|
|
|
2018-06-15 14:51:19 +10:00
|
|
|
if (getuid() != 0) {
|
|
|
|
|
fprintf(stderr, "This test needs to run as root\n");
|
|
|
|
|
return 77;
|
|
|
|
|
}
|
2018-06-15 15:08:53 +10:00
|
|
|
if (!device_nodes_exist()) {
|
|
|
|
|
fprintf(stderr, "This test needs /dev/input and /dev/uinput to exist\n");
|
|
|
|
|
return 77;
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-15 14:51:19 +10:00
|
|
|
break;
|
|
|
|
|
}
|
2018-02-26 17:09:48 +10:00
|
|
|
}
|
|
|
|
|
|
2013-12-24 08:19:16 +10:00
|
|
|
if (is_debugger_attached())
|
|
|
|
|
setenv("CK_FORK", "no", 0);
|
|
|
|
|
|
2017-05-09 08:12:43 +10:00
|
|
|
if (setrlimit(RLIMIT_CORE, &corelimit) != 0)
|
|
|
|
|
perror("WARNING: Core dumps not disabled. Reason");
|
|
|
|
|
|
2014-01-17 10:21:48 +10:00
|
|
|
libevdev_set_log_function(test_logfunc_abort_on_error, NULL);
|
|
|
|
|
|
2018-06-15 14:36:37 +10:00
|
|
|
SRunner *sr = srunner_create(NULL);
|
|
|
|
|
for (t = &__start_test_section; t < &__stop_test_section; t++) {
|
|
|
|
|
srunner_add_suite(sr, t->setup());
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-27 09:40:23 +10:00
|
|
|
srunner_run_all(sr, CK_NORMAL);
|
|
|
|
|
|
|
|
|
|
failed = srunner_ntests_failed(sr);
|
|
|
|
|
srunner_free(sr);
|
|
|
|
|
|
|
|
|
|
return failed;
|
|
|
|
|
}
|