summaryrefslogtreecommitdiffstats
path: root/kernel/kcov.c
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2018-02-06 18:40:28 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2018-02-06 21:32:46 -0500
commita77660d231f8b3d84fd23ed482e0964f7aa546d6 (patch)
treede3b60669f8ad14825330b0ec2217bb17bb25d23 /kernel/kcov.c
parenta1be1f3931bfe0a42b46fef77a04593c2b136e7f (diff)
kcov: detect double association with a single task
Currently KCOV_ENABLE does not check if the current task is already associated with another kcov descriptor. As the result it is possible to associate a single task with more than one kcov descriptor, which later leads to a memory leak of the old descriptor. This relation is really meant to be one-to-one (task has only one back link). Extend validation to detect such misuse. Link: http://lkml.kernel.org/r/20180122082520.15716-1-dvyukov@google.com Fixes: 5c9a8750a640 ("kernel: add kcov code coverage") Signed-off-by: Dmitry Vyukov <dvyukov@google.com> Reported-by: Shankara Pailoor <sp3485@columbia.edu> Cc: Dmitry Vyukov <dvyukov@google.com> Cc: syzbot <syzkaller@googlegroups.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/kcov.c')
-rw-r--r--kernel/kcov.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/kcov.c b/kernel/kcov.c
index 7594c033d98a..2c16f1ab5e10 100644
--- a/kernel/kcov.c
+++ b/kernel/kcov.c
@@ -358,7 +358,8 @@ static int kcov_ioctl_locked(struct kcov *kcov, unsigned int cmd,
358 */ 358 */
359 if (kcov->mode != KCOV_MODE_INIT || !kcov->area) 359 if (kcov->mode != KCOV_MODE_INIT || !kcov->area)
360 return -EINVAL; 360 return -EINVAL;
361 if (kcov->t != NULL) 361 t = current;
362 if (kcov->t != NULL || t->kcov != NULL)
362 return -EBUSY; 363 return -EBUSY;
363 if (arg == KCOV_TRACE_PC) 364 if (arg == KCOV_TRACE_PC)
364 kcov->mode = KCOV_MODE_TRACE_PC; 365 kcov->mode = KCOV_MODE_TRACE_PC;
@@ -370,7 +371,6 @@ static int kcov_ioctl_locked(struct kcov *kcov, unsigned int cmd,
370#endif 371#endif
371 else 372 else
372 return -EINVAL; 373 return -EINVAL;
373 t = current;
374 /* Cache in task struct for performance. */ 374 /* Cache in task struct for performance. */
375 t->kcov_size = kcov->size; 375 t->kcov_size = kcov->size;
376 t->kcov_area = kcov->area; 376 t->kcov_area = kcov->area;