Tests: Add test app to generate syscalls
authorFrancis Deslauriers <francis.deslauriers@efficios.com>
Wed, 5 Apr 2017 15:53:51 +0000 (11:53 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Fri, 16 Feb 2018 19:28:58 +0000 (14:28 -0500)
This app launches and waits for the creation of a file specified in the
arguments before executing syscalls. This can be used with the PID
tracker feature of LTTng to only trace the syscalls made by the test
process and thus makes the tests more reliable.

Signed-off-by: Francis Deslauriers <francis.deslauriers@efficios.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
.gitignore
configure.ac
tests/utils/testapp/Makefile.am
tests/utils/testapp/gen-syscall-events/Makefile.am [new file with mode: 0644]
tests/utils/testapp/gen-syscall-events/gen-syscall-events.c [new file with mode: 0644]

index c9927d248f75f6b5203215bc972724c9e3107de7..7600cf6d565285e7a83075e6cd3bfd51eef2125b 100644 (file)
@@ -111,6 +111,7 @@ health_check
 /tests/regression/ust/ust-dl/test_ust-dl
 /tests/utils/testapp/gen-ust-nevents/gen-ust-nevents
 /tests/utils/testapp/gen-ust-tracef/gen-ust-tracef
+/tests/utils/testapp/gen-syscall-events/gen-syscall-events
 /tests/regression/tools/live/live_test
 /tests/unit/ini_config/ini_config
 /tests/perf/find_event
index b6ea39c559ef91c81558ca99fb827a32091cd4e1..972a73e8b5c79b7419685a1377b4452603848400 100644 (file)
@@ -1117,6 +1117,7 @@ AC_CONFIG_FILES([
        tests/utils/testapp/gen-ust-events/Makefile
        tests/utils/testapp/gen-ust-nevents/Makefile
        tests/utils/testapp/gen-ust-nevents-str/Makefile
+       tests/utils/testapp/gen-syscall-events/Makefile
        tests/utils/testapp/gen-ust-tracef/Makefile
 ])
 
index 036561e307c1b0e38bb5c5c14a52b2b1ee405381..596591265c1799567c5e95a44f2e737169582e00 100644 (file)
@@ -1,3 +1,3 @@
-SUBDIRS = gen-ust-events gen-ust-nevents gen-ust-nevents-str gen-ust-tracef
+SUBDIRS = gen-ust-events gen-ust-nevents gen-ust-nevents-str gen-ust-tracef gen-syscall-events
 
 noinst_HEADERS = signal-helper.h
diff --git a/tests/utils/testapp/gen-syscall-events/Makefile.am b/tests/utils/testapp/gen-syscall-events/Makefile.am
new file mode 100644 (file)
index 0000000..9741b18
--- /dev/null
@@ -0,0 +1,5 @@
+AM_CFLAGS += -I$(top_srcdir)/tests/utils/
+
+noinst_PROGRAMS = gen-syscall-events
+gen_syscall_events_SOURCES = gen-syscall-events.c
+gen_syscall_events_LDADD = $(top_builddir)/tests/utils/libtestutils.la
diff --git a/tests/utils/testapp/gen-syscall-events/gen-syscall-events.c b/tests/utils/testapp/gen-syscall-events/gen-syscall-events.c
new file mode 100644 (file)
index 0000000..5e4aabe
--- /dev/null
@@ -0,0 +1,85 @@
+/*
+ * Copyright (C) - 2017 Francis Deslauriers <francis.deslauriers@efficios.com>
+ *
+ * This library is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as published by the
+ * Free Software Foundation; version 2.1 of the License.
+ *
+ * This library is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
+ * for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this library; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA
+ */
+
+#define _LGPL_SOURCE
+
+#include <fcntl.h>
+#include <stdio.h>
+#include <sys/syscall.h>
+#include <unistd.h>
+
+#include "utils.h"
+
+#define MAX_LEN 16
+/*
+ * The process waits for the creation of a file passed as argument from an
+ * external processes to execute a syscall and exiting. This is useful for tests
+ * in combinaison with LTTng's PID tracker feature where we can trace the kernel
+ * events generated by our test process only.
+ */
+int main(int argc, char **argv)
+{
+       int fd, ret = 0;
+       char buf[MAX_LEN];
+       char *start_file;
+
+       if (argc != 2) {
+               fprintf(stderr, "Error: Missing argument\n");
+               fprintf(stderr, "USAGE: %s PATH_WAIT_FILE\n", argv[0]);
+               ret = -1;
+               goto error;
+       }
+
+       start_file = argv[1];
+
+       /*
+        * Wait for the start_file to be created by an external process
+        * (typically the test script) before executing the syscalls.
+        */
+       ret = wait_on_file(start_file);
+       if (ret != 0) {
+               goto error;
+       }
+
+       /*
+        * Start generating syscalls. We use syscall(2) to prevent libc to change
+        * the underlying syscall. e.g. calling openat(2) instead of open(2).
+        */
+       fd = syscall(SYS_open, "/proc/cpuinfo", O_RDONLY);
+       if (fd < 0) {
+               perror("open");
+               ret = -1;
+               goto error;
+       }
+
+       ret = syscall(SYS_read, fd, buf, MAX_LEN);
+       if (ret < 0) {
+               perror("read");
+               ret = -1;
+               goto error;
+       }
+
+       ret = syscall(SYS_close, fd);
+       if (ret == -1) {
+               perror("close");
+               ret = -1;
+               goto error;
+       }
+
+error:
+       return ret;
+}
This page took 0.031925 seconds and 5 git commands to generate.