[LTP] [PATCH v1 07/10] Add wqueue06 new test
Andrea Cervesato
andrea.cervesato@suse.com
Tue Jan 4 09:18:33 CET 2022
This test checks if KEYCTL_CLEAR is recognized by watch queue
Signed-off-by: Andrea Cervesato <andrea.cervesato@suse.com>
---
testcases/kernel/watchqueue/wqueue06.c | 67 ++++++++++++++++++++++++++
1 file changed, 67 insertions(+)
create mode 100644 testcases/kernel/watchqueue/wqueue06.c
diff --git a/testcases/kernel/watchqueue/wqueue06.c b/testcases/kernel/watchqueue/wqueue06.c
new file mode 100644
index 000000000..bb3f234f6
--- /dev/null
+++ b/testcases/kernel/watchqueue/wqueue06.c
@@ -0,0 +1,67 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/*
+ * Copyright (C) 2021 Andrea Cervesato <andrea.cervesato@suse.com>
+ */
+
+/*\
+ * [Description]
+ *
+ * Test if keyctl clear is correctly recognized by watch queue.
+ */
+
+#define _FCNTL_H
+
+#include "tst_test.h"
+#include "lapi/keyctl.h"
+#include "common.h"
+
+static int *keep_polling;
+
+static void saw_key_cleared(struct watch_notification *n, size_t len, unsigned int wtype)
+{
+ if (wqueue_key_event(n, len, wtype, NOTIFY_KEY_CLEARED))
+ tst_res(TPASS, "keyctl clear has been recognized");
+ else
+ tst_res(TFAIL, "keyctl clear has not been recognized");
+}
+
+static void setup(void)
+{
+ keep_polling = SAFE_MMAP(NULL, sizeof(int), PROT_READ | PROT_WRITE, MAP_SHARED | MAP_ANONYMOUS, -1, 0);
+}
+
+static void cleanup(void)
+{
+ *keep_polling = 0;
+ SAFE_MUNMAP(keep_polling, sizeof(int));
+}
+
+static void run(void)
+{
+ int fd;
+ int pid;
+
+ fd = wqueue_watch(256, &wqueue_key_filter);
+ wqueue_add_key(fd);
+
+ *keep_polling = 1;
+
+ pid = SAFE_FORK();
+ if (pid > 0) {
+ wqueue_consumer(fd, keep_polling, saw_key_cleared);
+ return;
+ }
+
+ safe_keyctl(KEYCTL_CLEAR, KEY_SPEC_SESSION_KEYRING);
+
+ *keep_polling = 0;
+
+ SAFE_CLOSE(fd);
+}
+
+static struct tst_test test = {
+ .setup = setup,
+ .cleanup = cleanup,
+ .test_all = run,
+ .forks_child = 1
+};
--
2.34.1
More information about the ltp
mailing list