]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
tracing/kprobes: Fix to check notrace function with correct range
authorMasami Hiramatsu <mhiramat@kernel.org>
Tue, 21 Aug 2018 13:04:57 +0000 (22:04 +0900)
committerSteven Rostedt (VMware) <rostedt@goodmis.org>
Tue, 21 Aug 2018 13:41:12 +0000 (09:41 -0400)
Fix within_notrace_func() to check notrace function correctly.

Since the ftrace_location_range(start, end) function checks
the range inclusively (start <= ftrace-loc <= end), the end
address must not include the entry address of next function.

However, within_notrace_func() uses kallsyms_lookup_size_offset()
to get the function size and calculate the end address from
adding the size to the entry address. This means the end address
is the entry address of the next function.

In the result, within_notrace_func() fails to find notrace
function if the next function of the target function is
ftraced.

Let's subtract 1 from the end address so that ftrace_location_range()
can check it correctly.

Link: http://lkml.kernel.org/r/153485669706.16611.17726752296213785504.stgit@devbox
Fixes: commit 45408c4f9250 ("tracing: kprobes: Prohibit probing on notrace function")
Reported-by: Michael Rodin <michael@rodin.online>
Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
kernel/trace/trace_kprobe.c

index 65a4157af851a46dd40793e545ad5bca0259c3b3..ad384b31fe01d800f438c23e4f1382f7e2567767 100644 (file)
@@ -513,7 +513,14 @@ static bool within_notrace_func(struct trace_kprobe *tk)
        if (!addr || !kallsyms_lookup_size_offset(addr, &size, &offset))
                return false;
 
-       return !ftrace_location_range(addr - offset, addr - offset + size);
+       /* Get the entry address of the target function */
+       addr -= offset;
+
+       /*
+        * Since ftrace_location_range() does inclusive range check, we need
+        * to subtract 1 byte from the end address.
+        */
+       return !ftrace_location_range(addr, addr + size - 1);
 }
 #else
 #define within_notrace_func(tk)        (false)