Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 2 | #define pr_fmt(fmt) "kcov: " fmt |
| 3 | |
Andrey Ryabinin | 36f05ae | 2016-04-28 16:18:55 -0700 | [diff] [blame] | 4 | #define DISABLE_BRANCH_PROFILING |
Kefeng Wang | db86235 | 2016-12-14 15:05:46 -0800 | [diff] [blame] | 5 | #include <linux/atomic.h> |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 6 | #include <linux/compiler.h> |
Kefeng Wang | db86235 | 2016-12-14 15:05:46 -0800 | [diff] [blame] | 7 | #include <linux/errno.h> |
| 8 | #include <linux/export.h> |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 9 | #include <linux/types.h> |
| 10 | #include <linux/file.h> |
| 11 | #include <linux/fs.h> |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 12 | #include <linux/hashtable.h> |
Kefeng Wang | db86235 | 2016-12-14 15:05:46 -0800 | [diff] [blame] | 13 | #include <linux/init.h> |
Alexander Potapenko | 74d8990 | 2022-09-15 17:04:03 +0200 | [diff] [blame] | 14 | #include <linux/kmsan-checks.h> |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 15 | #include <linux/mm.h> |
Kefeng Wang | db86235 | 2016-12-14 15:05:46 -0800 | [diff] [blame] | 16 | #include <linux/preempt.h> |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 17 | #include <linux/printk.h> |
Kefeng Wang | 166ad0e | 2016-12-07 14:44:36 -0800 | [diff] [blame] | 18 | #include <linux/sched.h> |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 19 | #include <linux/slab.h> |
| 20 | #include <linux/spinlock.h> |
| 21 | #include <linux/vmalloc.h> |
| 22 | #include <linux/debugfs.h> |
| 23 | #include <linux/uaccess.h> |
| 24 | #include <linux/kcov.h> |
Elena Reshetova | 39e07cb | 2019-03-07 16:30:00 -0800 | [diff] [blame] | 25 | #include <linux/refcount.h> |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 26 | #include <linux/log2.h> |
Alexander Popov | 4983f0a | 2016-12-19 16:23:09 -0800 | [diff] [blame] | 27 | #include <asm/setup.h> |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 28 | |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 29 | #define kcov_debug(fmt, ...) pr_debug("%s: " fmt, __func__, ##__VA_ARGS__) |
| 30 | |
Victor Chibotaru | ded97d2 | 2017-11-17 15:30:46 -0800 | [diff] [blame] | 31 | /* Number of 64-bit words written per one comparison: */ |
| 32 | #define KCOV_WORDS_PER_CMP 4 |
| 33 | |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 34 | /* |
| 35 | * kcov descriptor (one per opened debugfs file). |
| 36 | * State transitions of the descriptor: |
| 37 | * - initial state after open() |
| 38 | * - then there must be a single ioctl(KCOV_INIT_TRACE) call |
| 39 | * - then, mmap() call (several calls are allowed but not useful) |
Victor Chibotaru | ded97d2 | 2017-11-17 15:30:46 -0800 | [diff] [blame] | 40 | * - then, ioctl(KCOV_ENABLE, arg), where arg is |
| 41 | * KCOV_TRACE_PC - to trace only the PCs |
| 42 | * or |
| 43 | * KCOV_TRACE_CMP - to trace only the comparison operands |
| 44 | * - then, ioctl(KCOV_DISABLE) to disable the task. |
| 45 | * Enabling/disabling ioctls can be repeated (only one task a time allowed). |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 46 | */ |
| 47 | struct kcov { |
| 48 | /* |
| 49 | * Reference counter. We keep one for: |
| 50 | * - opened file descriptor |
| 51 | * - task with enabled coverage (we can't unwire it from another task) |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 52 | * - each code section for remote coverage collection |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 53 | */ |
Elena Reshetova | 39e07cb | 2019-03-07 16:30:00 -0800 | [diff] [blame] | 54 | refcount_t refcount; |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 55 | /* The lock protects mode, size, area and t. */ |
| 56 | spinlock_t lock; |
| 57 | enum kcov_mode mode; |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 58 | /* Size of arena (in long's). */ |
| 59 | unsigned int size; |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 60 | /* Coverage buffer shared with user space. */ |
| 61 | void *area; |
| 62 | /* Task for which we collect coverage, or NULL. */ |
| 63 | struct task_struct *t; |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 64 | /* Collecting coverage from remote (background) threads. */ |
| 65 | bool remote; |
| 66 | /* Size of remote area (in long's). */ |
| 67 | unsigned int remote_size; |
| 68 | /* |
| 69 | * Sequence is incremented each time kcov is reenabled, used by |
| 70 | * kcov_remote_stop(), see the comment there. |
| 71 | */ |
| 72 | int sequence; |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 73 | }; |
| 74 | |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 75 | struct kcov_remote_area { |
| 76 | struct list_head list; |
| 77 | unsigned int size; |
| 78 | }; |
| 79 | |
| 80 | struct kcov_remote { |
| 81 | u64 handle; |
| 82 | struct kcov *kcov; |
| 83 | struct hlist_node hnode; |
| 84 | }; |
| 85 | |
| 86 | static DEFINE_SPINLOCK(kcov_remote_lock); |
| 87 | static DEFINE_HASHTABLE(kcov_remote_map, 4); |
| 88 | static struct list_head kcov_remote_areas = LIST_HEAD_INIT(kcov_remote_areas); |
| 89 | |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 90 | struct kcov_percpu_data { |
| 91 | void *irq_area; |
Sebastian Andrzej Siewior | d5d2c51 | 2021-11-08 18:35:40 -0800 | [diff] [blame] | 92 | local_lock_t lock; |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 93 | |
| 94 | unsigned int saved_mode; |
| 95 | unsigned int saved_size; |
| 96 | void *saved_area; |
| 97 | struct kcov *saved_kcov; |
| 98 | int saved_sequence; |
| 99 | }; |
| 100 | |
Sebastian Andrzej Siewior | d5d2c51 | 2021-11-08 18:35:40 -0800 | [diff] [blame] | 101 | static DEFINE_PER_CPU(struct kcov_percpu_data, kcov_percpu_data) = { |
| 102 | .lock = INIT_LOCAL_LOCK(lock), |
| 103 | }; |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 104 | |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 105 | /* Must be called with kcov_remote_lock locked. */ |
| 106 | static struct kcov_remote *kcov_remote_find(u64 handle) |
| 107 | { |
| 108 | struct kcov_remote *remote; |
| 109 | |
| 110 | hash_for_each_possible(kcov_remote_map, remote, hnode, handle) { |
| 111 | if (remote->handle == handle) |
| 112 | return remote; |
| 113 | } |
| 114 | return NULL; |
| 115 | } |
| 116 | |
Andrey Konovalov | 3c61df3 | 2020-06-04 16:45:48 -0700 | [diff] [blame] | 117 | /* Must be called with kcov_remote_lock locked. */ |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 118 | static struct kcov_remote *kcov_remote_add(struct kcov *kcov, u64 handle) |
| 119 | { |
| 120 | struct kcov_remote *remote; |
| 121 | |
| 122 | if (kcov_remote_find(handle)) |
| 123 | return ERR_PTR(-EEXIST); |
| 124 | remote = kmalloc(sizeof(*remote), GFP_ATOMIC); |
| 125 | if (!remote) |
| 126 | return ERR_PTR(-ENOMEM); |
| 127 | remote->handle = handle; |
| 128 | remote->kcov = kcov; |
| 129 | hash_add(kcov_remote_map, &remote->hnode, handle); |
| 130 | return remote; |
| 131 | } |
| 132 | |
| 133 | /* Must be called with kcov_remote_lock locked. */ |
| 134 | static struct kcov_remote_area *kcov_remote_area_get(unsigned int size) |
| 135 | { |
| 136 | struct kcov_remote_area *area; |
| 137 | struct list_head *pos; |
| 138 | |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 139 | list_for_each(pos, &kcov_remote_areas) { |
| 140 | area = list_entry(pos, struct kcov_remote_area, list); |
| 141 | if (area->size == size) { |
| 142 | list_del(&area->list); |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 143 | return area; |
| 144 | } |
| 145 | } |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 146 | return NULL; |
| 147 | } |
| 148 | |
| 149 | /* Must be called with kcov_remote_lock locked. */ |
| 150 | static void kcov_remote_area_put(struct kcov_remote_area *area, |
| 151 | unsigned int size) |
| 152 | { |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 153 | INIT_LIST_HEAD(&area->list); |
| 154 | area->size = size; |
| 155 | list_add(&area->list, &kcov_remote_areas); |
Alexander Potapenko | 74d8990 | 2022-09-15 17:04:03 +0200 | [diff] [blame] | 156 | /* |
| 157 | * KMSAN doesn't instrument this file, so it may not know area->list |
| 158 | * is initialized. Unpoison it explicitly to avoid reports in |
| 159 | * kcov_remote_area_get(). |
| 160 | */ |
| 161 | kmsan_unpoison_memory(&area->list, sizeof(area->list)); |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 162 | } |
| 163 | |
Anders Roxell | 903e8ff | 2018-11-30 14:10:05 -0800 | [diff] [blame] | 164 | static notrace bool check_kcov_mode(enum kcov_mode needed_mode, struct task_struct *t) |
Victor Chibotaru | ded97d2 | 2017-11-17 15:30:46 -0800 | [diff] [blame] | 165 | { |
Mark Rutland | 0ed557a | 2018-06-14 15:27:41 -0700 | [diff] [blame] | 166 | unsigned int mode; |
Victor Chibotaru | ded97d2 | 2017-11-17 15:30:46 -0800 | [diff] [blame] | 167 | |
| 168 | /* |
| 169 | * We are interested in code coverage as a function of a syscall inputs, |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 170 | * so we ignore code executed in interrupts, unless we are in a remote |
| 171 | * coverage collection section in a softirq. |
Victor Chibotaru | ded97d2 | 2017-11-17 15:30:46 -0800 | [diff] [blame] | 172 | */ |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 173 | if (!in_task() && !(in_serving_softirq() && t->kcov_softirq)) |
Victor Chibotaru | ded97d2 | 2017-11-17 15:30:46 -0800 | [diff] [blame] | 174 | return false; |
| 175 | mode = READ_ONCE(t->kcov_mode); |
| 176 | /* |
| 177 | * There is some code that runs in interrupts but for which |
| 178 | * in_interrupt() returns false (e.g. preempt_schedule_irq()). |
| 179 | * READ_ONCE()/barrier() effectively provides load-acquire wrt |
| 180 | * interrupts, there are paired barrier()/WRITE_ONCE() in |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 181 | * kcov_start(). |
Victor Chibotaru | ded97d2 | 2017-11-17 15:30:46 -0800 | [diff] [blame] | 182 | */ |
| 183 | barrier(); |
| 184 | return mode == needed_mode; |
| 185 | } |
| 186 | |
Anders Roxell | 903e8ff | 2018-11-30 14:10:05 -0800 | [diff] [blame] | 187 | static notrace unsigned long canonicalize_ip(unsigned long ip) |
Victor Chibotaru | ded97d2 | 2017-11-17 15:30:46 -0800 | [diff] [blame] | 188 | { |
| 189 | #ifdef CONFIG_RANDOMIZE_BASE |
| 190 | ip -= kaslr_offset(); |
| 191 | #endif |
| 192 | return ip; |
| 193 | } |
| 194 | |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 195 | /* |
| 196 | * Entry point from instrumented code. |
| 197 | * This is called once per basic-block/edge. |
| 198 | */ |
James Morse | bdab42d | 2016-04-28 16:18:52 -0700 | [diff] [blame] | 199 | void notrace __sanitizer_cov_trace_pc(void) |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 200 | { |
| 201 | struct task_struct *t; |
Victor Chibotaru | ded97d2 | 2017-11-17 15:30:46 -0800 | [diff] [blame] | 202 | unsigned long *area; |
| 203 | unsigned long ip = canonicalize_ip(_RET_IP_); |
| 204 | unsigned long pos; |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 205 | |
| 206 | t = current; |
Victor Chibotaru | ded97d2 | 2017-11-17 15:30:46 -0800 | [diff] [blame] | 207 | if (!check_kcov_mode(KCOV_MODE_TRACE_PC, t)) |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 208 | return; |
Alexander Popov | 4983f0a | 2016-12-19 16:23:09 -0800 | [diff] [blame] | 209 | |
Victor Chibotaru | ded97d2 | 2017-11-17 15:30:46 -0800 | [diff] [blame] | 210 | area = t->kcov_area; |
| 211 | /* The first 64-bit word is the number of subsequent PCs. */ |
| 212 | pos = READ_ONCE(area[0]) + 1; |
| 213 | if (likely(pos < t->kcov_size)) { |
Congyu Liu | 3159d79 | 2022-05-23 05:35:31 +0000 | [diff] [blame] | 214 | /* Previously we write pc before updating pos. However, some |
| 215 | * early interrupt code could bypass check_kcov_mode() check |
| 216 | * and invoke __sanitizer_cov_trace_pc(). If such interrupt is |
| 217 | * raised between writing pc and updating pos, the pc could be |
| 218 | * overitten by the recursive __sanitizer_cov_trace_pc(). |
| 219 | * Update pos before writing pc to avoid such interleaving. |
| 220 | */ |
Victor Chibotaru | ded97d2 | 2017-11-17 15:30:46 -0800 | [diff] [blame] | 221 | WRITE_ONCE(area[0], pos); |
Congyu Liu | 3159d79 | 2022-05-23 05:35:31 +0000 | [diff] [blame] | 222 | barrier(); |
| 223 | area[pos] = ip; |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 224 | } |
| 225 | } |
| 226 | EXPORT_SYMBOL(__sanitizer_cov_trace_pc); |
| 227 | |
Victor Chibotaru | ded97d2 | 2017-11-17 15:30:46 -0800 | [diff] [blame] | 228 | #ifdef CONFIG_KCOV_ENABLE_COMPARISONS |
Anders Roxell | 6347244 | 2019-01-03 15:28:24 -0800 | [diff] [blame] | 229 | static void notrace write_comp_data(u64 type, u64 arg1, u64 arg2, u64 ip) |
Victor Chibotaru | ded97d2 | 2017-11-17 15:30:46 -0800 | [diff] [blame] | 230 | { |
| 231 | struct task_struct *t; |
| 232 | u64 *area; |
| 233 | u64 count, start_index, end_pos, max_pos; |
| 234 | |
| 235 | t = current; |
| 236 | if (!check_kcov_mode(KCOV_MODE_TRACE_CMP, t)) |
| 237 | return; |
| 238 | |
| 239 | ip = canonicalize_ip(ip); |
| 240 | |
| 241 | /* |
| 242 | * We write all comparison arguments and types as u64. |
| 243 | * The buffer was allocated for t->kcov_size unsigned longs. |
| 244 | */ |
| 245 | area = (u64 *)t->kcov_area; |
| 246 | max_pos = t->kcov_size * sizeof(unsigned long); |
| 247 | |
| 248 | count = READ_ONCE(area[0]); |
| 249 | |
| 250 | /* Every record is KCOV_WORDS_PER_CMP 64-bit words. */ |
| 251 | start_index = 1 + count * KCOV_WORDS_PER_CMP; |
| 252 | end_pos = (start_index + KCOV_WORDS_PER_CMP) * sizeof(u64); |
| 253 | if (likely(end_pos <= max_pos)) { |
Congyu Liu | 3159d79 | 2022-05-23 05:35:31 +0000 | [diff] [blame] | 254 | /* See comment in __sanitizer_cov_trace_pc(). */ |
| 255 | WRITE_ONCE(area[0], count + 1); |
| 256 | barrier(); |
Victor Chibotaru | ded97d2 | 2017-11-17 15:30:46 -0800 | [diff] [blame] | 257 | area[start_index] = type; |
| 258 | area[start_index + 1] = arg1; |
| 259 | area[start_index + 2] = arg2; |
| 260 | area[start_index + 3] = ip; |
Victor Chibotaru | ded97d2 | 2017-11-17 15:30:46 -0800 | [diff] [blame] | 261 | } |
| 262 | } |
| 263 | |
| 264 | void notrace __sanitizer_cov_trace_cmp1(u8 arg1, u8 arg2) |
| 265 | { |
| 266 | write_comp_data(KCOV_CMP_SIZE(0), arg1, arg2, _RET_IP_); |
| 267 | } |
| 268 | EXPORT_SYMBOL(__sanitizer_cov_trace_cmp1); |
| 269 | |
| 270 | void notrace __sanitizer_cov_trace_cmp2(u16 arg1, u16 arg2) |
| 271 | { |
| 272 | write_comp_data(KCOV_CMP_SIZE(1), arg1, arg2, _RET_IP_); |
| 273 | } |
| 274 | EXPORT_SYMBOL(__sanitizer_cov_trace_cmp2); |
| 275 | |
Dmitry Vyukov | 689d77f | 2017-12-14 15:33:02 -0800 | [diff] [blame] | 276 | void notrace __sanitizer_cov_trace_cmp4(u32 arg1, u32 arg2) |
Victor Chibotaru | ded97d2 | 2017-11-17 15:30:46 -0800 | [diff] [blame] | 277 | { |
| 278 | write_comp_data(KCOV_CMP_SIZE(2), arg1, arg2, _RET_IP_); |
| 279 | } |
| 280 | EXPORT_SYMBOL(__sanitizer_cov_trace_cmp4); |
| 281 | |
| 282 | void notrace __sanitizer_cov_trace_cmp8(u64 arg1, u64 arg2) |
| 283 | { |
| 284 | write_comp_data(KCOV_CMP_SIZE(3), arg1, arg2, _RET_IP_); |
| 285 | } |
| 286 | EXPORT_SYMBOL(__sanitizer_cov_trace_cmp8); |
| 287 | |
| 288 | void notrace __sanitizer_cov_trace_const_cmp1(u8 arg1, u8 arg2) |
| 289 | { |
| 290 | write_comp_data(KCOV_CMP_SIZE(0) | KCOV_CMP_CONST, arg1, arg2, |
| 291 | _RET_IP_); |
| 292 | } |
| 293 | EXPORT_SYMBOL(__sanitizer_cov_trace_const_cmp1); |
| 294 | |
| 295 | void notrace __sanitizer_cov_trace_const_cmp2(u16 arg1, u16 arg2) |
| 296 | { |
| 297 | write_comp_data(KCOV_CMP_SIZE(1) | KCOV_CMP_CONST, arg1, arg2, |
| 298 | _RET_IP_); |
| 299 | } |
| 300 | EXPORT_SYMBOL(__sanitizer_cov_trace_const_cmp2); |
| 301 | |
Dmitry Vyukov | 689d77f | 2017-12-14 15:33:02 -0800 | [diff] [blame] | 302 | void notrace __sanitizer_cov_trace_const_cmp4(u32 arg1, u32 arg2) |
Victor Chibotaru | ded97d2 | 2017-11-17 15:30:46 -0800 | [diff] [blame] | 303 | { |
| 304 | write_comp_data(KCOV_CMP_SIZE(2) | KCOV_CMP_CONST, arg1, arg2, |
| 305 | _RET_IP_); |
| 306 | } |
| 307 | EXPORT_SYMBOL(__sanitizer_cov_trace_const_cmp4); |
| 308 | |
| 309 | void notrace __sanitizer_cov_trace_const_cmp8(u64 arg1, u64 arg2) |
| 310 | { |
| 311 | write_comp_data(KCOV_CMP_SIZE(3) | KCOV_CMP_CONST, arg1, arg2, |
| 312 | _RET_IP_); |
| 313 | } |
| 314 | EXPORT_SYMBOL(__sanitizer_cov_trace_const_cmp8); |
| 315 | |
| 316 | void notrace __sanitizer_cov_trace_switch(u64 val, u64 *cases) |
| 317 | { |
| 318 | u64 i; |
| 319 | u64 count = cases[0]; |
| 320 | u64 size = cases[1]; |
| 321 | u64 type = KCOV_CMP_CONST; |
| 322 | |
| 323 | switch (size) { |
| 324 | case 8: |
| 325 | type |= KCOV_CMP_SIZE(0); |
| 326 | break; |
| 327 | case 16: |
| 328 | type |= KCOV_CMP_SIZE(1); |
| 329 | break; |
| 330 | case 32: |
| 331 | type |= KCOV_CMP_SIZE(2); |
| 332 | break; |
| 333 | case 64: |
| 334 | type |= KCOV_CMP_SIZE(3); |
| 335 | break; |
| 336 | default: |
| 337 | return; |
| 338 | } |
| 339 | for (i = 0; i < count; i++) |
| 340 | write_comp_data(type, cases[i + 2], val, _RET_IP_); |
| 341 | } |
| 342 | EXPORT_SYMBOL(__sanitizer_cov_trace_switch); |
| 343 | #endif /* ifdef CONFIG_KCOV_ENABLE_COMPARISONS */ |
| 344 | |
Andrey Konovalov | 76484b1 | 2020-06-04 16:45:55 -0700 | [diff] [blame] | 345 | static void kcov_start(struct task_struct *t, struct kcov *kcov, |
| 346 | unsigned int size, void *area, enum kcov_mode mode, |
| 347 | int sequence) |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 348 | { |
| 349 | kcov_debug("t = %px, size = %u, area = %px\n", t, size, area); |
Andrey Konovalov | 76484b1 | 2020-06-04 16:45:55 -0700 | [diff] [blame] | 350 | t->kcov = kcov; |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 351 | /* Cache in task struct for performance. */ |
| 352 | t->kcov_size = size; |
| 353 | t->kcov_area = area; |
Andrey Konovalov | eeb91f9 | 2020-06-04 16:45:58 -0700 | [diff] [blame] | 354 | t->kcov_sequence = sequence; |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 355 | /* See comment in check_kcov_mode(). */ |
| 356 | barrier(); |
| 357 | WRITE_ONCE(t->kcov_mode, mode); |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 358 | } |
| 359 | |
| 360 | static void kcov_stop(struct task_struct *t) |
| 361 | { |
| 362 | WRITE_ONCE(t->kcov_mode, KCOV_MODE_DISABLED); |
| 363 | barrier(); |
Andrey Konovalov | 76484b1 | 2020-06-04 16:45:55 -0700 | [diff] [blame] | 364 | t->kcov = NULL; |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 365 | t->kcov_size = 0; |
| 366 | t->kcov_area = NULL; |
| 367 | } |
| 368 | |
| 369 | static void kcov_task_reset(struct task_struct *t) |
| 370 | { |
| 371 | kcov_stop(t); |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 372 | t->kcov_sequence = 0; |
| 373 | t->kcov_handle = 0; |
| 374 | } |
| 375 | |
| 376 | void kcov_task_init(struct task_struct *t) |
| 377 | { |
| 378 | kcov_task_reset(t); |
| 379 | t->kcov_handle = current->kcov_handle; |
| 380 | } |
| 381 | |
| 382 | static void kcov_reset(struct kcov *kcov) |
| 383 | { |
| 384 | kcov->t = NULL; |
| 385 | kcov->mode = KCOV_MODE_INIT; |
| 386 | kcov->remote = false; |
| 387 | kcov->remote_size = 0; |
| 388 | kcov->sequence++; |
| 389 | } |
| 390 | |
| 391 | static void kcov_remote_reset(struct kcov *kcov) |
| 392 | { |
| 393 | int bkt; |
| 394 | struct kcov_remote *remote; |
| 395 | struct hlist_node *tmp; |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 396 | unsigned long flags; |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 397 | |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 398 | spin_lock_irqsave(&kcov_remote_lock, flags); |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 399 | hash_for_each_safe(kcov_remote_map, bkt, tmp, remote, hnode) { |
| 400 | if (remote->kcov != kcov) |
| 401 | continue; |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 402 | hash_del(&remote->hnode); |
| 403 | kfree(remote); |
| 404 | } |
| 405 | /* Do reset before unlock to prevent races with kcov_remote_start(). */ |
| 406 | kcov_reset(kcov); |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 407 | spin_unlock_irqrestore(&kcov_remote_lock, flags); |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 408 | } |
| 409 | |
| 410 | static void kcov_disable(struct task_struct *t, struct kcov *kcov) |
| 411 | { |
| 412 | kcov_task_reset(t); |
| 413 | if (kcov->remote) |
| 414 | kcov_remote_reset(kcov); |
| 415 | else |
| 416 | kcov_reset(kcov); |
| 417 | } |
| 418 | |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 419 | static void kcov_get(struct kcov *kcov) |
| 420 | { |
Elena Reshetova | 39e07cb | 2019-03-07 16:30:00 -0800 | [diff] [blame] | 421 | refcount_inc(&kcov->refcount); |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 422 | } |
| 423 | |
| 424 | static void kcov_put(struct kcov *kcov) |
| 425 | { |
Elena Reshetova | 39e07cb | 2019-03-07 16:30:00 -0800 | [diff] [blame] | 426 | if (refcount_dec_and_test(&kcov->refcount)) { |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 427 | kcov_remote_reset(kcov); |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 428 | vfree(kcov->area); |
| 429 | kfree(kcov); |
| 430 | } |
| 431 | } |
| 432 | |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 433 | void kcov_task_exit(struct task_struct *t) |
| 434 | { |
| 435 | struct kcov *kcov; |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 436 | unsigned long flags; |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 437 | |
| 438 | kcov = t->kcov; |
| 439 | if (kcov == NULL) |
| 440 | return; |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 441 | |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 442 | spin_lock_irqsave(&kcov->lock, flags); |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 443 | kcov_debug("t = %px, kcov->t = %px\n", t, kcov->t); |
| 444 | /* |
| 445 | * For KCOV_ENABLE devices we want to make sure that t->kcov->t == t, |
| 446 | * which comes down to: |
| 447 | * WARN_ON(!kcov->remote && kcov->t != t); |
| 448 | * |
| 449 | * For KCOV_REMOTE_ENABLE devices, the exiting task is either: |
Andrey Konovalov | 3021e69 | 2020-06-10 18:41:28 -0700 | [diff] [blame] | 450 | * |
| 451 | * 1. A remote task between kcov_remote_start() and kcov_remote_stop(). |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 452 | * In this case we should print a warning right away, since a task |
| 453 | * shouldn't be exiting when it's in a kcov coverage collection |
| 454 | * section. Here t points to the task that is collecting remote |
| 455 | * coverage, and t->kcov->t points to the thread that created the |
| 456 | * kcov device. Which means that to detect this case we need to |
| 457 | * check that t != t->kcov->t, and this gives us the following: |
| 458 | * WARN_ON(kcov->remote && kcov->t != t); |
| 459 | * |
| 460 | * 2. The task that created kcov exiting without calling KCOV_DISABLE, |
Andrey Konovalov | 3021e69 | 2020-06-10 18:41:28 -0700 | [diff] [blame] | 461 | * and then again we make sure that t->kcov->t == t: |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 462 | * WARN_ON(kcov->remote && kcov->t != t); |
| 463 | * |
| 464 | * By combining all three checks into one we get: |
| 465 | */ |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 466 | if (WARN_ON(kcov->t != t)) { |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 467 | spin_unlock_irqrestore(&kcov->lock, flags); |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 468 | return; |
| 469 | } |
| 470 | /* Just to not leave dangling references behind. */ |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 471 | kcov_disable(t, kcov); |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 472 | spin_unlock_irqrestore(&kcov->lock, flags); |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 473 | kcov_put(kcov); |
| 474 | } |
| 475 | |
| 476 | static int kcov_mmap(struct file *filep, struct vm_area_struct *vma) |
| 477 | { |
| 478 | int res = 0; |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 479 | struct kcov *kcov = vma->vm_file->private_data; |
| 480 | unsigned long size, off; |
| 481 | struct page *page; |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 482 | unsigned long flags; |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 483 | |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 484 | spin_lock_irqsave(&kcov->lock, flags); |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 485 | size = kcov->size * sizeof(unsigned long); |
Aleksandr Nogikh | b3d7fe8 | 2022-03-23 16:07:15 -0700 | [diff] [blame] | 486 | if (kcov->area == NULL || vma->vm_pgoff != 0 || |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 487 | vma->vm_end - vma->vm_start != size) { |
| 488 | res = -EINVAL; |
| 489 | goto exit; |
| 490 | } |
Aleksandr Nogikh | b3d7fe8 | 2022-03-23 16:07:15 -0700 | [diff] [blame] | 491 | spin_unlock_irqrestore(&kcov->lock, flags); |
| 492 | vma->vm_flags |= VM_DONTEXPAND; |
| 493 | for (off = 0; off < size; off += PAGE_SIZE) { |
| 494 | page = vmalloc_to_page(kcov->area + off); |
Aleksandr Nogikh | ecc0446 | 2022-04-21 16:36:07 -0700 | [diff] [blame] | 495 | res = vm_insert_page(vma, vma->vm_start + off, page); |
| 496 | if (res) { |
| 497 | pr_warn_once("kcov: vm_insert_page() failed\n"); |
| 498 | return res; |
| 499 | } |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 500 | } |
Aleksandr Nogikh | b3d7fe8 | 2022-03-23 16:07:15 -0700 | [diff] [blame] | 501 | return 0; |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 502 | exit: |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 503 | spin_unlock_irqrestore(&kcov->lock, flags); |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 504 | return res; |
| 505 | } |
| 506 | |
| 507 | static int kcov_open(struct inode *inode, struct file *filep) |
| 508 | { |
| 509 | struct kcov *kcov; |
| 510 | |
| 511 | kcov = kzalloc(sizeof(*kcov), GFP_KERNEL); |
| 512 | if (!kcov) |
| 513 | return -ENOMEM; |
Victor Chibotaru | ded97d2 | 2017-11-17 15:30:46 -0800 | [diff] [blame] | 514 | kcov->mode = KCOV_MODE_DISABLED; |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 515 | kcov->sequence = 1; |
Elena Reshetova | 39e07cb | 2019-03-07 16:30:00 -0800 | [diff] [blame] | 516 | refcount_set(&kcov->refcount, 1); |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 517 | spin_lock_init(&kcov->lock); |
| 518 | filep->private_data = kcov; |
| 519 | return nonseekable_open(inode, filep); |
| 520 | } |
| 521 | |
| 522 | static int kcov_close(struct inode *inode, struct file *filep) |
| 523 | { |
| 524 | kcov_put(filep->private_data); |
| 525 | return 0; |
| 526 | } |
| 527 | |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 528 | static int kcov_get_mode(unsigned long arg) |
| 529 | { |
| 530 | if (arg == KCOV_TRACE_PC) |
| 531 | return KCOV_MODE_TRACE_PC; |
| 532 | else if (arg == KCOV_TRACE_CMP) |
| 533 | #ifdef CONFIG_KCOV_ENABLE_COMPARISONS |
| 534 | return KCOV_MODE_TRACE_CMP; |
| 535 | #else |
| 536 | return -ENOTSUPP; |
| 537 | #endif |
| 538 | else |
| 539 | return -EINVAL; |
| 540 | } |
| 541 | |
Mark Rutland | dc55daf | 2018-06-14 15:27:37 -0700 | [diff] [blame] | 542 | /* |
| 543 | * Fault in a lazily-faulted vmalloc area before it can be used by |
| 544 | * __santizer_cov_trace_pc(), to avoid recursion issues if any code on the |
| 545 | * vmalloc fault handling path is instrumented. |
| 546 | */ |
| 547 | static void kcov_fault_in_area(struct kcov *kcov) |
| 548 | { |
| 549 | unsigned long stride = PAGE_SIZE / sizeof(unsigned long); |
| 550 | unsigned long *area = kcov->area; |
| 551 | unsigned long offset; |
| 552 | |
| 553 | for (offset = 0; offset < kcov->size; offset += stride) |
| 554 | READ_ONCE(area[offset]); |
| 555 | } |
| 556 | |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 557 | static inline bool kcov_check_handle(u64 handle, bool common_valid, |
| 558 | bool uncommon_valid, bool zero_valid) |
| 559 | { |
| 560 | if (handle & ~(KCOV_SUBSYSTEM_MASK | KCOV_INSTANCE_MASK)) |
| 561 | return false; |
| 562 | switch (handle & KCOV_SUBSYSTEM_MASK) { |
| 563 | case KCOV_SUBSYSTEM_COMMON: |
| 564 | return (handle & KCOV_INSTANCE_MASK) ? |
| 565 | common_valid : zero_valid; |
| 566 | case KCOV_SUBSYSTEM_USB: |
| 567 | return uncommon_valid; |
| 568 | default: |
| 569 | return false; |
| 570 | } |
| 571 | return false; |
| 572 | } |
| 573 | |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 574 | static int kcov_ioctl_locked(struct kcov *kcov, unsigned int cmd, |
| 575 | unsigned long arg) |
| 576 | { |
| 577 | struct task_struct *t; |
Aleksandr Nogikh | 17581aa | 2022-03-23 16:07:12 -0700 | [diff] [blame] | 578 | unsigned long flags, unused; |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 579 | int mode, i; |
| 580 | struct kcov_remote_arg *remote_arg; |
| 581 | struct kcov_remote *remote; |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 582 | |
| 583 | switch (cmd) { |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 584 | case KCOV_ENABLE: |
| 585 | /* |
| 586 | * Enable coverage for the current task. |
| 587 | * At this point user must have been enabled trace mode, |
| 588 | * and mmapped the file. Coverage collection is disabled only |
| 589 | * at task exit or voluntary by KCOV_DISABLE. After that it can |
| 590 | * be enabled for another task. |
| 591 | */ |
Victor Chibotaru | ded97d2 | 2017-11-17 15:30:46 -0800 | [diff] [blame] | 592 | if (kcov->mode != KCOV_MODE_INIT || !kcov->area) |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 593 | return -EINVAL; |
Dmitry Vyukov | a77660d | 2018-02-06 15:40:28 -0800 | [diff] [blame] | 594 | t = current; |
| 595 | if (kcov->t != NULL || t->kcov != NULL) |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 596 | return -EBUSY; |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 597 | mode = kcov_get_mode(arg); |
| 598 | if (mode < 0) |
| 599 | return mode; |
Mark Rutland | dc55daf | 2018-06-14 15:27:37 -0700 | [diff] [blame] | 600 | kcov_fault_in_area(kcov); |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 601 | kcov->mode = mode; |
Andrey Konovalov | 76484b1 | 2020-06-04 16:45:55 -0700 | [diff] [blame] | 602 | kcov_start(t, kcov, kcov->size, kcov->area, kcov->mode, |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 603 | kcov->sequence); |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 604 | kcov->t = t; |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 605 | /* Put either in kcov_task_exit() or in KCOV_DISABLE. */ |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 606 | kcov_get(kcov); |
| 607 | return 0; |
| 608 | case KCOV_DISABLE: |
| 609 | /* Disable coverage for the current task. */ |
| 610 | unused = arg; |
| 611 | if (unused != 0 || current->kcov != kcov) |
| 612 | return -EINVAL; |
| 613 | t = current; |
| 614 | if (WARN_ON(kcov->t != t)) |
| 615 | return -EINVAL; |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 616 | kcov_disable(t, kcov); |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 617 | kcov_put(kcov); |
| 618 | return 0; |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 619 | case KCOV_REMOTE_ENABLE: |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 620 | if (kcov->mode != KCOV_MODE_INIT || !kcov->area) |
| 621 | return -EINVAL; |
| 622 | t = current; |
| 623 | if (kcov->t != NULL || t->kcov != NULL) |
| 624 | return -EBUSY; |
| 625 | remote_arg = (struct kcov_remote_arg *)arg; |
| 626 | mode = kcov_get_mode(remote_arg->trace_mode); |
| 627 | if (mode < 0) |
| 628 | return mode; |
| 629 | if (remote_arg->area_size > LONG_MAX / sizeof(unsigned long)) |
| 630 | return -EINVAL; |
| 631 | kcov->mode = mode; |
| 632 | t->kcov = kcov; |
| 633 | kcov->t = t; |
| 634 | kcov->remote = true; |
| 635 | kcov->remote_size = remote_arg->area_size; |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 636 | spin_lock_irqsave(&kcov_remote_lock, flags); |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 637 | for (i = 0; i < remote_arg->num_handles; i++) { |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 638 | if (!kcov_check_handle(remote_arg->handles[i], |
| 639 | false, true, false)) { |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 640 | spin_unlock_irqrestore(&kcov_remote_lock, |
| 641 | flags); |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 642 | kcov_disable(t, kcov); |
| 643 | return -EINVAL; |
| 644 | } |
| 645 | remote = kcov_remote_add(kcov, remote_arg->handles[i]); |
| 646 | if (IS_ERR(remote)) { |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 647 | spin_unlock_irqrestore(&kcov_remote_lock, |
| 648 | flags); |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 649 | kcov_disable(t, kcov); |
| 650 | return PTR_ERR(remote); |
| 651 | } |
| 652 | } |
| 653 | if (remote_arg->common_handle) { |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 654 | if (!kcov_check_handle(remote_arg->common_handle, |
| 655 | true, false, false)) { |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 656 | spin_unlock_irqrestore(&kcov_remote_lock, |
| 657 | flags); |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 658 | kcov_disable(t, kcov); |
| 659 | return -EINVAL; |
| 660 | } |
| 661 | remote = kcov_remote_add(kcov, |
| 662 | remote_arg->common_handle); |
| 663 | if (IS_ERR(remote)) { |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 664 | spin_unlock_irqrestore(&kcov_remote_lock, |
| 665 | flags); |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 666 | kcov_disable(t, kcov); |
| 667 | return PTR_ERR(remote); |
| 668 | } |
| 669 | t->kcov_handle = remote_arg->common_handle; |
| 670 | } |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 671 | spin_unlock_irqrestore(&kcov_remote_lock, flags); |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 672 | /* Put either in kcov_task_exit() or in KCOV_DISABLE. */ |
| 673 | kcov_get(kcov); |
| 674 | return 0; |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 675 | default: |
| 676 | return -ENOTTY; |
| 677 | } |
| 678 | } |
| 679 | |
| 680 | static long kcov_ioctl(struct file *filep, unsigned int cmd, unsigned long arg) |
| 681 | { |
| 682 | struct kcov *kcov; |
| 683 | int res; |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 684 | struct kcov_remote_arg *remote_arg = NULL; |
| 685 | unsigned int remote_num_handles; |
| 686 | unsigned long remote_arg_size; |
Aleksandr Nogikh | 17581aa | 2022-03-23 16:07:12 -0700 | [diff] [blame] | 687 | unsigned long size, flags; |
Aleksandr Nogikh | b3d7fe8 | 2022-03-23 16:07:15 -0700 | [diff] [blame] | 688 | void *area; |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 689 | |
Aleksandr Nogikh | 17581aa | 2022-03-23 16:07:12 -0700 | [diff] [blame] | 690 | kcov = filep->private_data; |
| 691 | switch (cmd) { |
| 692 | case KCOV_INIT_TRACE: |
| 693 | /* |
| 694 | * Enable kcov in trace mode and setup buffer size. |
| 695 | * Must happen before anything else. |
| 696 | * |
| 697 | * First check the size argument - it must be at least 2 |
Aleksandr Nogikh | b3d7fe8 | 2022-03-23 16:07:15 -0700 | [diff] [blame] | 698 | * to hold the current position and one PC. |
Aleksandr Nogikh | 17581aa | 2022-03-23 16:07:12 -0700 | [diff] [blame] | 699 | */ |
| 700 | size = arg; |
| 701 | if (size < 2 || size > INT_MAX / sizeof(unsigned long)) |
| 702 | return -EINVAL; |
Aleksandr Nogikh | b3d7fe8 | 2022-03-23 16:07:15 -0700 | [diff] [blame] | 703 | area = vmalloc_user(size * sizeof(unsigned long)); |
| 704 | if (area == NULL) |
| 705 | return -ENOMEM; |
Aleksandr Nogikh | 17581aa | 2022-03-23 16:07:12 -0700 | [diff] [blame] | 706 | spin_lock_irqsave(&kcov->lock, flags); |
| 707 | if (kcov->mode != KCOV_MODE_DISABLED) { |
| 708 | spin_unlock_irqrestore(&kcov->lock, flags); |
Aleksandr Nogikh | b3d7fe8 | 2022-03-23 16:07:15 -0700 | [diff] [blame] | 709 | vfree(area); |
Aleksandr Nogikh | 17581aa | 2022-03-23 16:07:12 -0700 | [diff] [blame] | 710 | return -EBUSY; |
| 711 | } |
Aleksandr Nogikh | b3d7fe8 | 2022-03-23 16:07:15 -0700 | [diff] [blame] | 712 | kcov->area = area; |
Aleksandr Nogikh | 17581aa | 2022-03-23 16:07:12 -0700 | [diff] [blame] | 713 | kcov->size = size; |
| 714 | kcov->mode = KCOV_MODE_INIT; |
| 715 | spin_unlock_irqrestore(&kcov->lock, flags); |
| 716 | return 0; |
| 717 | case KCOV_REMOTE_ENABLE: |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 718 | if (get_user(remote_num_handles, (unsigned __user *)(arg + |
| 719 | offsetof(struct kcov_remote_arg, num_handles)))) |
| 720 | return -EFAULT; |
| 721 | if (remote_num_handles > KCOV_REMOTE_MAX_HANDLES) |
| 722 | return -EINVAL; |
| 723 | remote_arg_size = struct_size(remote_arg, handles, |
| 724 | remote_num_handles); |
| 725 | remote_arg = memdup_user((void __user *)arg, remote_arg_size); |
| 726 | if (IS_ERR(remote_arg)) |
| 727 | return PTR_ERR(remote_arg); |
| 728 | if (remote_arg->num_handles != remote_num_handles) { |
| 729 | kfree(remote_arg); |
| 730 | return -EINVAL; |
| 731 | } |
| 732 | arg = (unsigned long)remote_arg; |
Aleksandr Nogikh | 17581aa | 2022-03-23 16:07:12 -0700 | [diff] [blame] | 733 | fallthrough; |
| 734 | default: |
| 735 | /* |
| 736 | * All other commands can be normally executed under a spin lock, so we |
| 737 | * obtain and release it here in order to simplify kcov_ioctl_locked(). |
| 738 | */ |
| 739 | spin_lock_irqsave(&kcov->lock, flags); |
| 740 | res = kcov_ioctl_locked(kcov, cmd, arg); |
| 741 | spin_unlock_irqrestore(&kcov->lock, flags); |
| 742 | kfree(remote_arg); |
| 743 | return res; |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 744 | } |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 745 | } |
| 746 | |
| 747 | static const struct file_operations kcov_fops = { |
| 748 | .open = kcov_open, |
| 749 | .unlocked_ioctl = kcov_ioctl, |
Dmitry Vyukov | 7483e5d | 2017-09-08 16:17:35 -0700 | [diff] [blame] | 750 | .compat_ioctl = kcov_ioctl, |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 751 | .mmap = kcov_mmap, |
| 752 | .release = kcov_close, |
| 753 | }; |
| 754 | |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 755 | /* |
| 756 | * kcov_remote_start() and kcov_remote_stop() can be used to annotate a section |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 757 | * of code in a kernel background thread or in a softirq to allow kcov to be |
| 758 | * used to collect coverage from that part of code. |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 759 | * |
| 760 | * The handle argument of kcov_remote_start() identifies a code section that is |
| 761 | * used for coverage collection. A userspace process passes this handle to |
| 762 | * KCOV_REMOTE_ENABLE ioctl to make the used kcov device start collecting |
| 763 | * coverage for the code section identified by this handle. |
| 764 | * |
| 765 | * The usage of these annotations in the kernel code is different depending on |
| 766 | * the type of the kernel thread whose code is being annotated. |
| 767 | * |
| 768 | * For global kernel threads that are spawned in a limited number of instances |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 769 | * (e.g. one USB hub_event() worker thread is spawned per USB HCD) and for |
| 770 | * softirqs, each instance must be assigned a unique 4-byte instance id. The |
| 771 | * instance id is then combined with a 1-byte subsystem id to get a handle via |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 772 | * kcov_remote_handle(subsystem_id, instance_id). |
| 773 | * |
| 774 | * For local kernel threads that are spawned from system calls handler when a |
| 775 | * user interacts with some kernel interface (e.g. vhost workers), a handle is |
| 776 | * passed from a userspace process as the common_handle field of the |
| 777 | * kcov_remote_arg struct (note, that the user must generate a handle by using |
| 778 | * kcov_remote_handle() with KCOV_SUBSYSTEM_COMMON as the subsystem id and an |
| 779 | * arbitrary 4-byte non-zero number as the instance id). This common handle |
| 780 | * then gets saved into the task_struct of the process that issued the |
Maciej Grochowski | 324cfb1 | 2020-05-07 18:35:49 -0700 | [diff] [blame] | 781 | * KCOV_REMOTE_ENABLE ioctl. When this process issues system calls that spawn |
| 782 | * kernel threads, the common handle must be retrieved via kcov_common_handle() |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 783 | * and passed to the spawned threads via custom annotations. Those kernel |
| 784 | * threads must in turn be annotated with kcov_remote_start(common_handle) and |
| 785 | * kcov_remote_stop(). All of the threads that are spawned by the same process |
| 786 | * obtain the same handle, hence the name "common". |
| 787 | * |
| 788 | * See Documentation/dev-tools/kcov.rst for more details. |
| 789 | * |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 790 | * Internally, kcov_remote_start() looks up the kcov device associated with the |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 791 | * provided handle, allocates an area for coverage collection, and saves the |
| 792 | * pointers to kcov and area into the current task_struct to allow coverage to |
Andrey Konovalov | 3021e69 | 2020-06-10 18:41:28 -0700 | [diff] [blame] | 793 | * be collected via __sanitizer_cov_trace_pc(). |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 794 | * In turns kcov_remote_stop() clears those pointers from task_struct to stop |
| 795 | * collecting coverage and copies all collected coverage into the kcov area. |
| 796 | */ |
Andrey Konovalov | 5fe7042 | 2020-06-04 16:46:01 -0700 | [diff] [blame] | 797 | |
| 798 | static inline bool kcov_mode_enabled(unsigned int mode) |
| 799 | { |
| 800 | return (mode & ~KCOV_IN_CTXSW) != KCOV_MODE_DISABLED; |
| 801 | } |
| 802 | |
Wei Yongjun | fed79d0 | 2020-08-11 18:36:59 -0700 | [diff] [blame] | 803 | static void kcov_remote_softirq_start(struct task_struct *t) |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 804 | { |
| 805 | struct kcov_percpu_data *data = this_cpu_ptr(&kcov_percpu_data); |
| 806 | unsigned int mode; |
| 807 | |
| 808 | mode = READ_ONCE(t->kcov_mode); |
| 809 | barrier(); |
| 810 | if (kcov_mode_enabled(mode)) { |
| 811 | data->saved_mode = mode; |
| 812 | data->saved_size = t->kcov_size; |
| 813 | data->saved_area = t->kcov_area; |
| 814 | data->saved_sequence = t->kcov_sequence; |
| 815 | data->saved_kcov = t->kcov; |
| 816 | kcov_stop(t); |
| 817 | } |
| 818 | } |
| 819 | |
Wei Yongjun | fed79d0 | 2020-08-11 18:36:59 -0700 | [diff] [blame] | 820 | static void kcov_remote_softirq_stop(struct task_struct *t) |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 821 | { |
| 822 | struct kcov_percpu_data *data = this_cpu_ptr(&kcov_percpu_data); |
| 823 | |
| 824 | if (data->saved_kcov) { |
| 825 | kcov_start(t, data->saved_kcov, data->saved_size, |
| 826 | data->saved_area, data->saved_mode, |
| 827 | data->saved_sequence); |
| 828 | data->saved_mode = 0; |
| 829 | data->saved_size = 0; |
| 830 | data->saved_area = NULL; |
| 831 | data->saved_sequence = 0; |
| 832 | data->saved_kcov = NULL; |
| 833 | } |
| 834 | } |
| 835 | |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 836 | void kcov_remote_start(u64 handle) |
| 837 | { |
Andrey Konovalov | 5fe7042 | 2020-06-04 16:46:01 -0700 | [diff] [blame] | 838 | struct task_struct *t = current; |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 839 | struct kcov_remote *remote; |
Andrey Konovalov | 67b3d3c | 2020-06-04 16:45:51 -0700 | [diff] [blame] | 840 | struct kcov *kcov; |
Andrey Konovalov | 5fe7042 | 2020-06-04 16:46:01 -0700 | [diff] [blame] | 841 | unsigned int mode; |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 842 | void *area; |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 843 | unsigned int size; |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 844 | int sequence; |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 845 | unsigned long flags; |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 846 | |
| 847 | if (WARN_ON(!kcov_check_handle(handle, true, true, true))) |
| 848 | return; |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 849 | if (!in_task() && !in_serving_softirq()) |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 850 | return; |
Andrey Konovalov | 5fe7042 | 2020-06-04 16:46:01 -0700 | [diff] [blame] | 851 | |
Sebastian Andrzej Siewior | d5d2c51 | 2021-11-08 18:35:40 -0800 | [diff] [blame] | 852 | local_lock_irqsave(&kcov_percpu_data.lock, flags); |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 853 | |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 854 | /* |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 855 | * Check that kcov_remote_start() is not called twice in background |
| 856 | * threads nor called by user tasks (with enabled kcov). |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 857 | */ |
Andrey Konovalov | 5fe7042 | 2020-06-04 16:46:01 -0700 | [diff] [blame] | 858 | mode = READ_ONCE(t->kcov_mode); |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 859 | if (WARN_ON(in_task() && kcov_mode_enabled(mode))) { |
Sebastian Andrzej Siewior | d5d2c51 | 2021-11-08 18:35:40 -0800 | [diff] [blame] | 860 | local_unlock_irqrestore(&kcov_percpu_data.lock, flags); |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 861 | return; |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 862 | } |
| 863 | /* |
| 864 | * Check that kcov_remote_start() is not called twice in softirqs. |
| 865 | * Note, that kcov_remote_start() can be called from a softirq that |
| 866 | * happened while collecting coverage from a background thread. |
| 867 | */ |
| 868 | if (WARN_ON(in_serving_softirq() && t->kcov_softirq)) { |
Sebastian Andrzej Siewior | d5d2c51 | 2021-11-08 18:35:40 -0800 | [diff] [blame] | 869 | local_unlock_irqrestore(&kcov_percpu_data.lock, flags); |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 870 | return; |
| 871 | } |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 872 | |
| 873 | spin_lock(&kcov_remote_lock); |
| 874 | remote = kcov_remote_find(handle); |
| 875 | if (!remote) { |
Sebastian Andrzej Siewior | d5d2c51 | 2021-11-08 18:35:40 -0800 | [diff] [blame] | 876 | spin_unlock(&kcov_remote_lock); |
| 877 | local_unlock_irqrestore(&kcov_percpu_data.lock, flags); |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 878 | return; |
| 879 | } |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 880 | kcov_debug("handle = %llx, context: %s\n", handle, |
| 881 | in_task() ? "task" : "softirq"); |
Andrey Konovalov | 67b3d3c | 2020-06-04 16:45:51 -0700 | [diff] [blame] | 882 | kcov = remote->kcov; |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 883 | /* Put in kcov_remote_stop(). */ |
Andrey Konovalov | 67b3d3c | 2020-06-04 16:45:51 -0700 | [diff] [blame] | 884 | kcov_get(kcov); |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 885 | /* |
| 886 | * Read kcov fields before unlock to prevent races with |
| 887 | * KCOV_DISABLE / kcov_remote_reset(). |
| 888 | */ |
Andrey Konovalov | 67b3d3c | 2020-06-04 16:45:51 -0700 | [diff] [blame] | 889 | mode = kcov->mode; |
| 890 | sequence = kcov->sequence; |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 891 | if (in_task()) { |
| 892 | size = kcov->remote_size; |
| 893 | area = kcov_remote_area_get(size); |
| 894 | } else { |
| 895 | size = CONFIG_KCOV_IRQ_AREA_SIZE; |
| 896 | area = this_cpu_ptr(&kcov_percpu_data)->irq_area; |
| 897 | } |
Sebastian Andrzej Siewior | 22036abe | 2021-11-08 18:35:37 -0800 | [diff] [blame] | 898 | spin_unlock(&kcov_remote_lock); |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 899 | |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 900 | /* Can only happen when in_task(). */ |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 901 | if (!area) { |
Sebastian Andrzej Siewior | d5d2c51 | 2021-11-08 18:35:40 -0800 | [diff] [blame] | 902 | local_unlock_irqrestore(&kcov_percpu_data.lock, flags); |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 903 | area = vmalloc(size * sizeof(unsigned long)); |
| 904 | if (!area) { |
Andrey Konovalov | 67b3d3c | 2020-06-04 16:45:51 -0700 | [diff] [blame] | 905 | kcov_put(kcov); |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 906 | return; |
| 907 | } |
Sebastian Andrzej Siewior | d5d2c51 | 2021-11-08 18:35:40 -0800 | [diff] [blame] | 908 | local_lock_irqsave(&kcov_percpu_data.lock, flags); |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 909 | } |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 910 | |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 911 | /* Reset coverage size. */ |
| 912 | *(u64 *)area = 0; |
| 913 | |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 914 | if (in_serving_softirq()) { |
| 915 | kcov_remote_softirq_start(t); |
| 916 | t->kcov_softirq = 1; |
| 917 | } |
Andrey Konovalov | 76484b1 | 2020-06-04 16:45:55 -0700 | [diff] [blame] | 918 | kcov_start(t, kcov, size, area, mode, sequence); |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 919 | |
Sebastian Andrzej Siewior | d5d2c51 | 2021-11-08 18:35:40 -0800 | [diff] [blame] | 920 | local_unlock_irqrestore(&kcov_percpu_data.lock, flags); |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 921 | |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 922 | } |
| 923 | EXPORT_SYMBOL(kcov_remote_start); |
| 924 | |
| 925 | static void kcov_move_area(enum kcov_mode mode, void *dst_area, |
| 926 | unsigned int dst_area_size, void *src_area) |
| 927 | { |
| 928 | u64 word_size = sizeof(unsigned long); |
| 929 | u64 count_size, entry_size_log; |
| 930 | u64 dst_len, src_len; |
| 931 | void *dst_entries, *src_entries; |
| 932 | u64 dst_occupied, dst_free, bytes_to_move, entries_moved; |
| 933 | |
| 934 | kcov_debug("%px %u <= %px %lu\n", |
| 935 | dst_area, dst_area_size, src_area, *(unsigned long *)src_area); |
| 936 | |
| 937 | switch (mode) { |
| 938 | case KCOV_MODE_TRACE_PC: |
| 939 | dst_len = READ_ONCE(*(unsigned long *)dst_area); |
| 940 | src_len = *(unsigned long *)src_area; |
| 941 | count_size = sizeof(unsigned long); |
| 942 | entry_size_log = __ilog2_u64(sizeof(unsigned long)); |
| 943 | break; |
| 944 | case KCOV_MODE_TRACE_CMP: |
| 945 | dst_len = READ_ONCE(*(u64 *)dst_area); |
| 946 | src_len = *(u64 *)src_area; |
| 947 | count_size = sizeof(u64); |
| 948 | BUILD_BUG_ON(!is_power_of_2(KCOV_WORDS_PER_CMP)); |
| 949 | entry_size_log = __ilog2_u64(sizeof(u64) * KCOV_WORDS_PER_CMP); |
| 950 | break; |
| 951 | default: |
| 952 | WARN_ON(1); |
| 953 | return; |
| 954 | } |
| 955 | |
| 956 | /* As arm can't divide u64 integers use log of entry size. */ |
| 957 | if (dst_len > ((dst_area_size * word_size - count_size) >> |
| 958 | entry_size_log)) |
| 959 | return; |
| 960 | dst_occupied = count_size + (dst_len << entry_size_log); |
| 961 | dst_free = dst_area_size * word_size - dst_occupied; |
| 962 | bytes_to_move = min(dst_free, src_len << entry_size_log); |
| 963 | dst_entries = dst_area + dst_occupied; |
| 964 | src_entries = src_area + count_size; |
| 965 | memcpy(dst_entries, src_entries, bytes_to_move); |
| 966 | entries_moved = bytes_to_move >> entry_size_log; |
| 967 | |
| 968 | switch (mode) { |
| 969 | case KCOV_MODE_TRACE_PC: |
| 970 | WRITE_ONCE(*(unsigned long *)dst_area, dst_len + entries_moved); |
| 971 | break; |
| 972 | case KCOV_MODE_TRACE_CMP: |
| 973 | WRITE_ONCE(*(u64 *)dst_area, dst_len + entries_moved); |
| 974 | break; |
| 975 | default: |
| 976 | break; |
| 977 | } |
| 978 | } |
| 979 | |
| 980 | /* See the comment before kcov_remote_start() for usage details. */ |
| 981 | void kcov_remote_stop(void) |
| 982 | { |
| 983 | struct task_struct *t = current; |
Andrey Konovalov | 5fe7042 | 2020-06-04 16:46:01 -0700 | [diff] [blame] | 984 | struct kcov *kcov; |
| 985 | unsigned int mode; |
| 986 | void *area; |
| 987 | unsigned int size; |
| 988 | int sequence; |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 989 | unsigned long flags; |
| 990 | |
| 991 | if (!in_task() && !in_serving_softirq()) |
| 992 | return; |
| 993 | |
Sebastian Andrzej Siewior | d5d2c51 | 2021-11-08 18:35:40 -0800 | [diff] [blame] | 994 | local_lock_irqsave(&kcov_percpu_data.lock, flags); |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 995 | |
Andrey Konovalov | 5fe7042 | 2020-06-04 16:46:01 -0700 | [diff] [blame] | 996 | mode = READ_ONCE(t->kcov_mode); |
| 997 | barrier(); |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 998 | if (!kcov_mode_enabled(mode)) { |
Sebastian Andrzej Siewior | d5d2c51 | 2021-11-08 18:35:40 -0800 | [diff] [blame] | 999 | local_unlock_irqrestore(&kcov_percpu_data.lock, flags); |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 1000 | return; |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 1001 | } |
Andrey Konovalov | 3021e69 | 2020-06-10 18:41:28 -0700 | [diff] [blame] | 1002 | /* |
| 1003 | * When in softirq, check if the corresponding kcov_remote_start() |
| 1004 | * actually found the remote handle and started collecting coverage. |
| 1005 | */ |
| 1006 | if (in_serving_softirq() && !t->kcov_softirq) { |
Sebastian Andrzej Siewior | d5d2c51 | 2021-11-08 18:35:40 -0800 | [diff] [blame] | 1007 | local_unlock_irqrestore(&kcov_percpu_data.lock, flags); |
Andrey Konovalov | 3021e69 | 2020-06-10 18:41:28 -0700 | [diff] [blame] | 1008 | return; |
| 1009 | } |
| 1010 | /* Make sure that kcov_softirq is only set when in softirq. */ |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 1011 | if (WARN_ON(!in_serving_softirq() && t->kcov_softirq)) { |
Sebastian Andrzej Siewior | d5d2c51 | 2021-11-08 18:35:40 -0800 | [diff] [blame] | 1012 | local_unlock_irqrestore(&kcov_percpu_data.lock, flags); |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 1013 | return; |
| 1014 | } |
| 1015 | |
Andrey Konovalov | 3021e69 | 2020-06-10 18:41:28 -0700 | [diff] [blame] | 1016 | kcov = t->kcov; |
| 1017 | area = t->kcov_area; |
| 1018 | size = t->kcov_size; |
| 1019 | sequence = t->kcov_sequence; |
| 1020 | |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 1021 | kcov_stop(t); |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 1022 | if (in_serving_softirq()) { |
| 1023 | t->kcov_softirq = 0; |
| 1024 | kcov_remote_softirq_stop(t); |
| 1025 | } |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 1026 | |
| 1027 | spin_lock(&kcov->lock); |
| 1028 | /* |
| 1029 | * KCOV_DISABLE could have been called between kcov_remote_start() |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 1030 | * and kcov_remote_stop(), hence the sequence check. |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 1031 | */ |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 1032 | if (sequence == kcov->sequence && kcov->remote) |
| 1033 | kcov_move_area(kcov->mode, kcov->area, kcov->size, area); |
| 1034 | spin_unlock(&kcov->lock); |
| 1035 | |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 1036 | if (in_task()) { |
| 1037 | spin_lock(&kcov_remote_lock); |
| 1038 | kcov_remote_area_put(area, size); |
| 1039 | spin_unlock(&kcov_remote_lock); |
| 1040 | } |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 1041 | |
Sebastian Andrzej Siewior | d5d2c51 | 2021-11-08 18:35:40 -0800 | [diff] [blame] | 1042 | local_unlock_irqrestore(&kcov_percpu_data.lock, flags); |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 1043 | |
| 1044 | /* Get in kcov_remote_start(). */ |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 1045 | kcov_put(kcov); |
| 1046 | } |
| 1047 | EXPORT_SYMBOL(kcov_remote_stop); |
| 1048 | |
| 1049 | /* See the comment before kcov_remote_start() for usage details. */ |
| 1050 | u64 kcov_common_handle(void) |
| 1051 | { |
Aleksandr Nogikh | b08e84d | 2020-10-29 17:36:18 +0000 | [diff] [blame] | 1052 | if (!in_task()) |
| 1053 | return 0; |
Andrey Konovalov | eec028c | 2019-12-04 16:52:43 -0800 | [diff] [blame] | 1054 | return current->kcov_handle; |
| 1055 | } |
| 1056 | EXPORT_SYMBOL(kcov_common_handle); |
| 1057 | |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 1058 | static int __init kcov_init(void) |
| 1059 | { |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 1060 | int cpu; |
| 1061 | |
| 1062 | for_each_possible_cpu(cpu) { |
Sebastian Andrzej Siewior | 741ddd4 | 2021-11-08 18:35:34 -0800 | [diff] [blame] | 1063 | void *area = vmalloc_node(CONFIG_KCOV_IRQ_AREA_SIZE * |
| 1064 | sizeof(unsigned long), cpu_to_node(cpu)); |
Andrey Konovalov | 5ff3b30 | 2020-06-04 16:46:04 -0700 | [diff] [blame] | 1065 | if (!area) |
| 1066 | return -ENOMEM; |
| 1067 | per_cpu_ptr(&kcov_percpu_data, cpu)->irq_area = area; |
| 1068 | } |
| 1069 | |
Nicolai Stange | df4565f | 2016-05-24 14:05:05 +0200 | [diff] [blame] | 1070 | /* |
| 1071 | * The kcov debugfs file won't ever get removed and thus, |
| 1072 | * there is no need to protect it against removal races. The |
| 1073 | * use of debugfs_create_file_unsafe() is actually safe here. |
| 1074 | */ |
Greg Kroah-Hartman | ec9672d | 2019-03-07 16:29:56 -0800 | [diff] [blame] | 1075 | debugfs_create_file_unsafe("kcov", 0600, NULL, NULL, &kcov_fops); |
| 1076 | |
Dmitry Vyukov | 5c9a875 | 2016-03-22 14:27:30 -0700 | [diff] [blame] | 1077 | return 0; |
| 1078 | } |
| 1079 | |
| 1080 | device_initcall(kcov_init); |