Collect extra trace buffer data in the stage of preparing perf trace
buffer. If extra perf trace buffer is valid, set invalid flag, extend
the trace buffer size and append the data of extra buffer to perf
trace buffer, so the combined data will be compatible to the orignal
format and can be processed by perf-script.

Signed-off-by: He Kuang <heku...@huawei.com>
---
 kernel/trace/trace_kprobe.c | 34 ++++++++++++++++++++++++++++++++--
 1 file changed, 32 insertions(+), 2 deletions(-)

diff --git a/kernel/trace/trace_kprobe.c b/kernel/trace/trace_kprobe.c
index 16ad88e..88642ee 100644
--- a/kernel/trace/trace_kprobe.c
+++ b/kernel/trace/trace_kprobe.c
@@ -1140,6 +1140,8 @@ kprobe_perf_func(struct trace_kprobe *tk, struct pt_regs 
*regs)
        struct hlist_head *head;
        int size, __size, dsize;
        int rctx;
+       u32 extra_buf_size;
+       char *extra_buf;
 
        head = this_cpu_ptr(call->perf_events);
        if (hlist_empty(head))
@@ -1152,15 +1154,28 @@ kprobe_perf_func(struct trace_kprobe *tk, struct 
pt_regs *regs)
        if (prog && !trace_call_bpf(prog, regs))
                goto out;
 
+       /* Check extra trace buf */
+       extra_buf = get_perf_extra_trace_buf(rctx);
+       extra_buf_size = *(u32 *)extra_buf;
+
+       /* Clear size to invalid buf */
+       *(u32 *)extra_buf = 0;
+
+       if (extra_buf_size != 0)
+               extra_buf += sizeof(u32);
+
        dsize = __get_data_size(&tk->tp, regs);
        __size = sizeof(*entry) + tk->tp.size + dsize;
-       size = ALIGN(__size + sizeof(u32), sizeof(u64));
+       size = ALIGN(__size + extra_buf_size + sizeof(u32), sizeof(u64));
        size -= sizeof(u32);
 
        entry = perf_trace_buf_prepare_rctx(size, call->event.type, NULL, rctx);
        if (!entry)
                goto out;
 
+       /* Combine extra trace buf to perf trace buf */
+       memcpy((char *)entry + __size, extra_buf, extra_buf_size);
+
        entry->ip = (unsigned long)tk->rp.kp.addr;
        memset(&entry[1], 0, dsize);
        store_trace_args(sizeof(*entry), &tk->tp, regs, (u8 *)&entry[1], dsize);
@@ -1183,6 +1198,8 @@ kretprobe_perf_func(struct trace_kprobe *tk, struct 
kretprobe_instance *ri,
        struct hlist_head *head;
        int size, __size, dsize;
        int rctx;
+       u32 extra_buf_size;
+       char *extra_buf;
 
        head = this_cpu_ptr(call->perf_events);
        if (hlist_empty(head))
@@ -1195,15 +1212,28 @@ kretprobe_perf_func(struct trace_kprobe *tk, struct 
kretprobe_instance *ri,
        if (prog && !trace_call_bpf(prog, regs))
                goto out;
 
+       /* Check extra trace buf */
+       extra_buf = get_perf_extra_trace_buf(rctx);
+       extra_buf_size = *(u32 *)extra_buf;
+
+       /* Clear size to invalid buf */
+       *(u32 *)extra_buf = 0;
+
+       if (extra_buf_size != 0)
+               extra_buf += sizeof(u32);
+
        dsize = __get_data_size(&tk->tp, regs);
        __size = sizeof(*entry) + tk->tp.size + dsize;
-       size = ALIGN(__size + sizeof(u32), sizeof(u64));
+       size = ALIGN(__size + extra_buf_size + sizeof(u32), sizeof(u64));
        size -= sizeof(u32);
 
        entry = perf_trace_buf_prepare_rctx(size, call->event.type, NULL, rctx);
        if (!entry)
                goto out;
 
+       /* Combine extra trace buf to perf trace buf */
+       memcpy((char *)entry + __size, extra_buf, extra_buf_size);
+
        entry->func = (unsigned long)tk->rp.kp.addr;
        entry->ret_ip = (unsigned long)ri->ret_addr;
        store_trace_args(sizeof(*entry), &tk->tp, regs, (u8 *)&entry[1], dsize);
-- 
1.8.5.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to