1 /* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
5 * Linux Trace Toolkit Next Generation Test Module
7 * Copyright 2015 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
10 #include <linux/init.h>
11 #include <linux/module.h>
12 #include <linux/proc_fs.h>
13 #include <linux/byteorder/generic.h>
14 #include <asm/byteorder.h>
16 #include <lttng-events.h>
17 #include <lttng-tracer.h>
19 #define TP_MODULE_NOAUTOLOAD
20 #define LTTNG_PACKAGE_BUILD
21 #define CREATE_TRACE_POINTS
22 #define TRACE_INCLUDE_PATH instrumentation/events/lttng-module
23 #define TRACE_INCLUDE_FILE lttng-test
24 #define LTTNG_INSTRUMENTATION
25 #include <instrumentation/events/lttng-module/lttng-test.h>
27 DEFINE_TRACE(lttng_test_filter_event
);
29 #define LTTNG_TEST_FILTER_EVENT_FILE "lttng-test-filter-event"
31 #define LTTNG_WRITE_COUNT_MAX 64
33 static struct proc_dir_entry
*lttng_test_filter_event_dentry
;
36 void trace_test_event(unsigned int nr_iter
)
39 long values
[] = { 1, 2, 3 };
40 uint32_t net_values
[] = { 1, 2, 3 };
41 char text
[10] = "test";
42 char escape
[10] = "\\*";
44 for (i
= 0; i
< 3; i
++) {
45 net_values
[i
] = htonl(net_values
[i
]);
47 for (i
= 0; i
< nr_iter
; i
++) {
49 trace_lttng_test_filter_event(i
, netint
, values
, text
, strlen(text
), escape
, net_values
);
54 * lttng_filter_event_write - trigger a lttng_test_filter_event
56 * @user_buf: user string
57 * @count: length to copy
59 * Return -1 on error, with EFAULT errno. Returns count on success.
62 ssize_t
lttng_test_filter_event_write(struct file
*file
, const char __user
*user_buf
,
63 size_t count
, loff_t
*ppos
)
69 /* Get the number of iterations */
70 ret
= kstrtouint_from_user(user_buf
, count
, 10, &nr_iter
);
76 trace_test_event(nr_iter
);
83 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0))
84 static const struct proc_ops lttng_test_filter_event_proc_ops
= {
85 .proc_write
= lttng_test_filter_event_write
,
88 static const struct file_operations lttng_test_filter_event_proc_ops
= {
89 .write
= lttng_test_filter_event_write
,
94 int __init
lttng_test_init(void)
98 lttng_test_filter_event_dentry
=
99 proc_create_data(LTTNG_TEST_FILTER_EVENT_FILE
,
100 S_IRUGO
| S_IWUGO
, NULL
,
101 <tng_test_filter_event_proc_ops
, NULL
);
102 if (!lttng_test_filter_event_dentry
) {
103 printk(KERN_ERR
"Error creating LTTng test filter file\n");
107 ret
= __lttng_events_init__lttng_test();
113 remove_proc_entry(LTTNG_TEST_FILTER_EVENT_FILE
, NULL
);
118 module_init(lttng_test_init
);
121 void __exit
lttng_test_exit(void)
123 __lttng_events_exit__lttng_test();
124 if (lttng_test_filter_event_dentry
)
125 remove_proc_entry(LTTNG_TEST_FILTER_EVENT_FILE
, NULL
);
128 module_exit(lttng_test_exit
);
130 MODULE_LICENSE("GPL and additional rights");
131 MODULE_AUTHOR("Mathieu Desnoyers <mathieu.desnoyers@efficios.com>");
132 MODULE_DESCRIPTION("LTTng Test");
133 MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION
) "."
134 __stringify(LTTNG_MODULES_MINOR_VERSION
) "."
135 __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION
)
136 LTTNG_MODULES_EXTRAVERSION
);