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