]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
powerpc/kprobes: Fix kallsyms lookup across powerpc ABIv1 and ABIv2
authorNaveen N. Rao <naveen.n.rao@linux.vnet.ibm.com>
Mon, 15 Dec 2014 14:50:31 +0000 (20:20 +0530)
committerMichael Ellerman <mpe@ellerman.id.au>
Fri, 23 Jan 2015 03:02:51 +0000 (14:02 +1100)
Currently, all non-dot symbols are being treated as function descriptors
in ABIv1. This is incorrect and is resulting in perf probe not working:

  # perf probe do_fork
  Added new event:
  Failed to write event: Invalid argument
    Error: Failed to add events.
  # dmesg | tail -1
  [192268.073063] Could not insert probe at _text+768432: -22

perf probe bases all kernel probes on _text and writes,
for example, "p:probe/do_fork _text+768432" to
/sys/kernel/debug/tracing/kprobe_events. In-kernel, _text is being
considered to be a function descriptor and is resulting in the above
error.

Fix this by changing how we lookup symbol addresses on ppc64. We first
check for the dot variant of a symbol and look at the non-dot variant
only if that fails. In this manner, we avoid having to look at the
function descriptor.

While at it, also separate out how this works on ABIv2 where
we don't have dot symbols, but need to use the local entry point.

Signed-off-by: Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
arch/powerpc/include/asm/kprobes.h

index af15d4d8d604c79ab7f09066c1cacfe37d30c7f7..039b583db029233155d28866d60c8a514c97b142 100644 (file)
@@ -41,34 +41,59 @@ typedef ppc_opcode_t kprobe_opcode_t;
 #define MAX_INSN_SIZE 1
 
 #ifdef CONFIG_PPC64
+#if defined(_CALL_ELF) && _CALL_ELF == 2
+/* PPC64 ABIv2 needs local entry point */
+#define kprobe_lookup_name(name, addr)                                 \
+{                                                                      \
+       addr = (kprobe_opcode_t *)kallsyms_lookup_name(name);           \
+       if (addr)                                                       \
+               addr = (kprobe_opcode_t *)ppc_function_entry(addr);     \
+}
+#else
 /*
- * 64bit powerpc uses function descriptors.
- * Handle cases where:
- *             - User passes a <.symbol> or <module:.symbol>
- *             - User passes a <symbol> or <module:symbol>
- *             - User passes a non-existent symbol, kallsyms_lookup_name
- *               returns 0. Don't deref the NULL pointer in that case
+ * 64bit powerpc ABIv1 uses function descriptors:
+ * - Check for the dot variant of the symbol first.
+ * - If that fails, try looking up the symbol provided.
+ *
+ * This ensures we always get to the actual symbol and not the descriptor.
+ * Also handle <module:symbol> format.
  */
 #define kprobe_lookup_name(name, addr)                                 \
 {                                                                      \
-       addr = (kprobe_opcode_t *)kallsyms_lookup_name(name);           \
-       if (addr) {                                                     \
-               char *colon;                                            \
-               if ((colon = strchr(name, ':')) != NULL) {              \
-                       colon++;                                        \
-                       if (*colon != '\0' && *colon != '.')            \
-                               addr = (kprobe_opcode_t *)ppc_function_entry(addr); \
-               } else if (name[0] != '.')                              \
-                       addr = (kprobe_opcode_t *)ppc_function_entry(addr); \
-       } else {                                                        \
-               char dot_name[KSYM_NAME_LEN];                           \
+       char dot_name[MODULE_NAME_LEN + 1 + KSYM_NAME_LEN];             \
+       char *modsym;                                                   \
+       bool dot_appended = false;                                      \
+       if ((modsym = strchr(name, ':')) != NULL) {                     \
+               modsym++;                                               \
+               if (*modsym != '\0' && *modsym != '.') {                \
+                       /* Convert to <module:.symbol> */               \
+                       strncpy(dot_name, name, modsym - name);         \
+                       dot_name[modsym - name] = '.';                  \
+                       dot_name[modsym - name + 1] = '\0';             \
+                       strncat(dot_name, modsym,                       \
+                               sizeof(dot_name) - (modsym - name) - 2);\
+                       dot_appended = true;                            \
+               } else {                                                \
+                       dot_name[0] = '\0';                             \
+                       strncat(dot_name, name, sizeof(dot_name) - 1);  \
+               }                                                       \
+       } else if (name[0] != '.') {                                    \
                dot_name[0] = '.';                                      \
                dot_name[1] = '\0';                                     \
                strncat(dot_name, name, KSYM_NAME_LEN - 2);             \
-               addr = (kprobe_opcode_t *)kallsyms_lookup_name(dot_name); \
+               dot_appended = true;                                    \
+       } else {                                                        \
+               dot_name[0] = '\0';                                     \
+               strncat(dot_name, name, KSYM_NAME_LEN - 1);             \
+       }                                                               \
+       addr = (kprobe_opcode_t *)kallsyms_lookup_name(dot_name);       \
+       if (!addr && dot_appended) {                                    \
+               /* Let's try the original non-dot symbol lookup */      \
+               addr = (kprobe_opcode_t *)kallsyms_lookup_name(name);   \
        }                                                               \
 }
-#endif
+#endif /* defined(_CALL_ELF) && _CALL_ELF == 2 */
+#endif /* CONFIG_PPC64 */
 
 #define flush_insn_slot(p)     do { } while (0)
 #define kretprobe_blacklist_size 0