tracing: Fix infinite loop in tracing_read_pipe on overflowed print_trace_line
[platform/kernel/linux-starfive.git] / kernel / trace / trace.c
index 459ff8c..3076af8 100644 (file)
@@ -6797,7 +6797,20 @@ waitagain:
 
                ret = print_trace_line(iter);
                if (ret == TRACE_TYPE_PARTIAL_LINE) {
-                       /* don't print partial lines */
+                       /*
+                        * If one print_trace_line() fills entire trace_seq in one shot,
+                        * trace_seq_to_user() will returns -EBUSY because save_len == 0,
+                        * In this case, we need to consume it, otherwise, loop will peek
+                        * this event next time, resulting in an infinite loop.
+                        */
+                       if (save_len == 0) {
+                               iter->seq.full = 0;
+                               trace_seq_puts(&iter->seq, "[LINE TOO BIG]\n");
+                               trace_consume(iter);
+                               break;
+                       }
+
+                       /* In other cases, don't print partial lines */
                        iter->seq.seq.len = save_len;
                        break;
                }