Cleanup: Move lttng-modules instrumentation headers
[lttng-modules.git] / probes / lttng.c
CommitLineData
b7cdc182 1/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
9f36eaed 2 *
0c956676
MD
3 * lttng.c
4 *
5 * LTTng logger ABI
6 *
7 * Copyright (C) 2008-2014 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
0c956676
MD
8 */
9
10#include <linux/module.h>
11#include <linux/tracepoint.h>
12#include <linux/uaccess.h>
13#include <linux/gfp.h>
14#include <linux/fs.h>
15#include <linux/proc_fs.h>
16#include <linux/slab.h>
17#include <linux/mm.h>
4d328377 18#include <linux/miscdevice.h>
156a3977 19#include <wrapper/vmalloc.h>
2df37e95 20#include <lttng/events.h>
0c956676
MD
21
22#define TP_MODULE_NOAUTOLOAD
23#define LTTNG_PACKAGE_BUILD
24#define CREATE_TRACE_POINTS
4f47ccf0 25#define TRACE_INCLUDE_PATH instrumentation/events
0c956676 26#define TRACE_INCLUDE_FILE lttng
3bc29f0a 27#define LTTNG_INSTRUMENTATION
0c956676 28
4f47ccf0 29#include <instrumentation/events/lttng.h>
0c956676
MD
30
31/* Events written through logger are truncated at 1024 bytes */
32#define LTTNG_LOGGER_COUNT_MAX 1024
33#define LTTNG_LOGGER_FILE "lttng-logger"
34
20591cf7
MD
35DEFINE_TRACE(lttng_logger);
36
0c956676
MD
37static struct proc_dir_entry *lttng_logger_dentry;
38
39/**
40 * lttng_logger_write - write a userspace string into the trace system
41 * @file: file pointer
42 * @user_buf: user string
43 * @count: length to copy
44 * @ppos: file position
45 *
46 * Copy a userspace string into a trace event named "lttng:logger".
47 * Copies at most @count bytes into the event "msg" dynamic array.
48 * Truncates the count at LTTNG_LOGGER_COUNT_MAX. Returns the number of
49 * bytes copied from the source.
50 * Return -1 on error, with EFAULT errno.
51 */
52static
53ssize_t lttng_logger_write(struct file *file, const char __user *user_buf,
54 size_t count, loff_t *ppos)
55{
467f3a48 56 int nr_pages = 1, i;
0c956676
MD
57 unsigned long uaddr = (unsigned long) user_buf;
58 struct page *pages[2];
59 ssize_t written;
60 int ret;
61
62 /* Truncate count */
63 if (unlikely(count > LTTNG_LOGGER_COUNT_MAX))
64 count = LTTNG_LOGGER_COUNT_MAX;
65
66 /* How many pages are we dealing with ? */
67 if (unlikely((uaddr & PAGE_MASK) != ((uaddr + count) & PAGE_MASK)))
68 nr_pages = 2;
69
70 /* Pin userspace pages */
71 ret = get_user_pages_fast(uaddr, nr_pages, 0, pages);
72 if (unlikely(ret < nr_pages)) {
73 if (ret > 0) {
74 BUG_ON(ret != 1);
75 put_page(pages[0]);
76 }
77 written = -EFAULT;
78 goto end;
79 }
80
81 /* Trace the event */
82 trace_lttng_logger(user_buf, count);
83 written = count;
84 *ppos += written;
85
86 for (i = 0; i < nr_pages; i++)
87 put_page(pages[i]);
88end:
89 return written;
90}
91
92static const struct file_operations lttng_logger_operations = {
93 .write = lttng_logger_write,
94};
95
059de147
MJ
96/*
97 * Linux 5.6 introduced a separate proc_ops struct for /proc operations
98 * to decouple it from the vfs.
99 */
100#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0))
101static const struct proc_ops lttng_logger_proc_ops = {
102 .proc_write = lttng_logger_write,
103};
104#else
105#define lttng_logger_proc_ops lttng_logger_operations
106#endif
107
4d328377
SG
108static struct miscdevice logger_dev = {
109 .minor = MISC_DYNAMIC_MINOR,
110 .name = "lttng-logger",
111 .mode = 0666,
112 .fops = &lttng_logger_operations
113};
114
0c956676
MD
115int __init lttng_logger_init(void)
116{
117 int ret = 0;
118
263b6c88 119 wrapper_vmalloc_sync_mappings();
4d328377
SG
120
121 /* /dev/lttng-logger */
122 ret = misc_register(&logger_dev);
123 if (ret) {
124 printk(KERN_ERR "Error creating LTTng logger device\n");
125 goto error;
126 }
127
128 /* /proc/lttng-logger */
0c956676
MD
129 lttng_logger_dentry = proc_create_data(LTTNG_LOGGER_FILE,
130 S_IRUGO | S_IWUGO, NULL,
059de147 131 &lttng_logger_proc_ops, NULL);
0c956676 132 if (!lttng_logger_dentry) {
4d328377 133 printk(KERN_ERR "Error creating LTTng logger proc file\n");
0c956676 134 ret = -ENOMEM;
4d328377 135 goto error_proc;
0c956676 136 }
4d328377
SG
137
138 /* Init */
0c956676
MD
139 ret = __lttng_events_init__lttng();
140 if (ret)
141 goto error_events;
142 return ret;
143
144error_events:
145 remove_proc_entry("lttng-logger", NULL);
4d328377
SG
146error_proc:
147 misc_deregister(&logger_dev);
0c956676
MD
148error:
149 return ret;
150}
151
32fe46fb 152void lttng_logger_exit(void)
0c956676
MD
153{
154 __lttng_events_exit__lttng();
155 if (lttng_logger_dentry)
156 remove_proc_entry("lttng-logger", NULL);
4d328377 157 misc_deregister(&logger_dev);
0c956676 158}
This page took 0.042098 seconds and 4 git commands to generate.