1 // SPDX-License-Identifier: GPL-2.0
2 #define pr_fmt(fmt) "kcov: " fmt
4 #define DISABLE_BRANCH_PROFILING
5 #include <linux/atomic.h>
6 #include <linux/compiler.h>
7 #include <linux/errno.h>
8 #include <linux/export.h>
9 #include <linux/types.h>
10 #include <linux/file.h>
12 #include <linux/init.h>
14 #include <linux/preempt.h>
15 #include <linux/printk.h>
16 #include <linux/sched.h>
17 #include <linux/slab.h>
18 #include <linux/spinlock.h>
19 #include <linux/vmalloc.h>
20 #include <linux/debugfs.h>
21 #include <linux/uaccess.h>
22 #include <linux/kcov.h>
23 #include <asm/setup.h>
26 * kcov descriptor (one per opened debugfs file).
27 * State transitions of the descriptor:
28 * - initial state after open()
29 * - then there must be a single ioctl(KCOV_INIT_TRACE) call
30 * - then, mmap() call (several calls are allowed but not useful)
31 * - then, repeated enable/disable for a task (only one task a time allowed)
35 * Reference counter. We keep one for:
36 * - opened file descriptor
37 * - task with enabled coverage (we can't unwire it from another task)
40 /* The lock protects mode, size, area and t. */
43 /* Size of arena (in long's for KCOV_MODE_TRACE). */
45 /* Coverage buffer shared with user space. */
47 /* Task for which we collect coverage, or NULL. */
48 struct task_struct
*t
;
52 * Entry point from instrumented code.
53 * This is called once per basic-block/edge.
55 void notrace
__sanitizer_cov_trace_pc(void)
57 struct task_struct
*t
;
62 * We are interested in code coverage as a function of a syscall inputs,
63 * so we ignore code executed in interrupts.
67 mode
= READ_ONCE(t
->kcov_mode
);
68 if (mode
== KCOV_MODE_TRACE
) {
71 unsigned long ip
= _RET_IP_
;
73 #ifdef CONFIG_RANDOMIZE_BASE
78 * There is some code that runs in interrupts but for which
79 * in_interrupt() returns false (e.g. preempt_schedule_irq()).
80 * READ_ONCE()/barrier() effectively provides load-acquire wrt
81 * interrupts, there are paired barrier()/WRITE_ONCE() in
82 * kcov_ioctl_locked().
86 /* The first word is number of subsequent PCs. */
87 pos
= READ_ONCE(area
[0]) + 1;
88 if (likely(pos
< t
->kcov_size
)) {
90 WRITE_ONCE(area
[0], pos
);
94 EXPORT_SYMBOL(__sanitizer_cov_trace_pc
);
96 static void kcov_get(struct kcov
*kcov
)
98 atomic_inc(&kcov
->refcount
);
101 static void kcov_put(struct kcov
*kcov
)
103 if (atomic_dec_and_test(&kcov
->refcount
)) {
109 void kcov_task_init(struct task_struct
*t
)
111 t
->kcov_mode
= KCOV_MODE_DISABLED
;
117 void kcov_task_exit(struct task_struct
*t
)
124 spin_lock(&kcov
->lock
);
125 if (WARN_ON(kcov
->t
!= t
)) {
126 spin_unlock(&kcov
->lock
);
129 /* Just to not leave dangling references behind. */
132 spin_unlock(&kcov
->lock
);
136 static int kcov_mmap(struct file
*filep
, struct vm_area_struct
*vma
)
140 struct kcov
*kcov
= vma
->vm_file
->private_data
;
141 unsigned long size
, off
;
144 area
= vmalloc_user(vma
->vm_end
- vma
->vm_start
);
148 spin_lock(&kcov
->lock
);
149 size
= kcov
->size
* sizeof(unsigned long);
150 if (kcov
->mode
== KCOV_MODE_DISABLED
|| vma
->vm_pgoff
!= 0 ||
151 vma
->vm_end
- vma
->vm_start
!= size
) {
157 vma
->vm_flags
|= VM_DONTEXPAND
;
158 spin_unlock(&kcov
->lock
);
159 for (off
= 0; off
< size
; off
+= PAGE_SIZE
) {
160 page
= vmalloc_to_page(kcov
->area
+ off
);
161 if (vm_insert_page(vma
, vma
->vm_start
+ off
, page
))
162 WARN_ONCE(1, "vm_insert_page() failed");
167 spin_unlock(&kcov
->lock
);
172 static int kcov_open(struct inode
*inode
, struct file
*filep
)
176 kcov
= kzalloc(sizeof(*kcov
), GFP_KERNEL
);
179 atomic_set(&kcov
->refcount
, 1);
180 spin_lock_init(&kcov
->lock
);
181 filep
->private_data
= kcov
;
182 return nonseekable_open(inode
, filep
);
185 static int kcov_close(struct inode
*inode
, struct file
*filep
)
187 kcov_put(filep
->private_data
);
191 static int kcov_ioctl_locked(struct kcov
*kcov
, unsigned int cmd
,
194 struct task_struct
*t
;
195 unsigned long size
, unused
;
198 case KCOV_INIT_TRACE
:
200 * Enable kcov in trace mode and setup buffer size.
201 * Must happen before anything else.
203 if (kcov
->mode
!= KCOV_MODE_DISABLED
)
206 * Size must be at least 2 to hold current position and one PC.
207 * Later we allocate size * sizeof(unsigned long) memory,
208 * that must not overflow.
211 if (size
< 2 || size
> INT_MAX
/ sizeof(unsigned long))
214 kcov
->mode
= KCOV_MODE_TRACE
;
218 * Enable coverage for the current task.
219 * At this point user must have been enabled trace mode,
220 * and mmapped the file. Coverage collection is disabled only
221 * at task exit or voluntary by KCOV_DISABLE. After that it can
222 * be enabled for another task.
225 if (unused
!= 0 || kcov
->mode
== KCOV_MODE_DISABLED
||
231 /* Cache in task struct for performance. */
232 t
->kcov_size
= kcov
->size
;
233 t
->kcov_area
= kcov
->area
;
234 /* See comment in __sanitizer_cov_trace_pc(). */
236 WRITE_ONCE(t
->kcov_mode
, kcov
->mode
);
239 /* This is put either in kcov_task_exit() or in KCOV_DISABLE. */
243 /* Disable coverage for the current task. */
245 if (unused
!= 0 || current
->kcov
!= kcov
)
248 if (WARN_ON(kcov
->t
!= t
))
259 static long kcov_ioctl(struct file
*filep
, unsigned int cmd
, unsigned long arg
)
264 kcov
= filep
->private_data
;
265 spin_lock(&kcov
->lock
);
266 res
= kcov_ioctl_locked(kcov
, cmd
, arg
);
267 spin_unlock(&kcov
->lock
);
271 static const struct file_operations kcov_fops
= {
273 .unlocked_ioctl
= kcov_ioctl
,
274 .compat_ioctl
= kcov_ioctl
,
276 .release
= kcov_close
,
279 static int __init
kcov_init(void)
282 * The kcov debugfs file won't ever get removed and thus,
283 * there is no need to protect it against removal races. The
284 * use of debugfs_create_file_unsafe() is actually safe here.
286 if (!debugfs_create_file_unsafe("kcov", 0600, NULL
, NULL
, &kcov_fops
)) {
287 pr_err("failed to create kcov in debugfs\n");
293 device_initcall(kcov_init
);