blob: 5939595f0115c6ba33393a263615fcf47f7bccfc [file] [log] [blame]
Thomas Gleixner9c92ab62019-05-29 07:17:56 -07001// SPDX-License-Identifier: GPL-2.0-only
Anton Vorontsov060287b2012-07-09 17:10:41 -07002/*
3 * Copyright 2012 Google, Inc.
Anton Vorontsov060287b2012-07-09 17:10:41 -07004 */
5
6#include <linux/kernel.h>
7#include <linux/compiler.h>
8#include <linux/irqflags.h>
9#include <linux/percpu.h>
10#include <linux/smp.h>
11#include <linux/atomic.h>
Anton Vorontsov65f8c952012-07-17 14:26:15 -070012#include <linux/types.h>
13#include <linux/mutex.h>
14#include <linux/ftrace.h>
15#include <linux/fs.h>
16#include <linux/debugfs.h>
17#include <linux/err.h>
18#include <linux/cache.h>
Kees Cook16a58302020-05-08 08:42:12 -070019#include <linux/slab.h>
Anton Vorontsov060287b2012-07-09 17:10:41 -070020#include <asm/barrier.h>
21#include "internal.h"
22
Joel Fernandesfbccdeb2016-10-20 00:34:05 -070023/* This doesn't need to be atomic: speed is chosen over correctness here. */
24static u64 pstore_ftrace_stamp;
25
Anton Vorontsov65f8c952012-07-17 14:26:15 -070026static void notrace pstore_ftrace_call(unsigned long ip,
Anton Vorontsovebacfd12012-11-14 18:48:15 -080027 unsigned long parent_ip,
28 struct ftrace_ops *op,
Steven Rostedt (VMware)d19ad072020-10-28 17:42:17 -040029 struct ftrace_regs *fregs)
Anton Vorontsov060287b2012-07-09 17:10:41 -070030{
Steven Rostedt (VMware)6cdf9412020-11-05 21:32:39 -050031 int bit;
Anton Vorontsov65f8c952012-07-17 14:26:15 -070032 unsigned long flags;
Anton Vorontsov060287b2012-07-09 17:10:41 -070033 struct pstore_ftrace_record rec = {};
Kees Cookb10b4712017-03-05 00:27:54 -080034 struct pstore_record record = {
35 .type = PSTORE_TYPE_FTRACE,
36 .buf = (char *)&rec,
37 .size = sizeof(rec),
38 .psi = psinfo,
39 };
Anton Vorontsov060287b2012-07-09 17:10:41 -070040
41 if (unlikely(oops_in_progress))
42 return;
43
Steven Rostedt (VMware)773c1672020-11-05 21:32:46 -050044 bit = ftrace_test_recursion_trylock(ip, parent_ip);
Steven Rostedt (VMware)6cdf9412020-11-05 21:32:39 -050045 if (bit < 0)
46 return;
47
Anton Vorontsov65f8c952012-07-17 14:26:15 -070048 local_irq_save(flags);
49
Anton Vorontsov060287b2012-07-09 17:10:41 -070050 rec.ip = ip;
51 rec.parent_ip = parent_ip;
Joel Fernandesfbccdeb2016-10-20 00:34:05 -070052 pstore_ftrace_write_timestamp(&rec, pstore_ftrace_stamp++);
Anton Vorontsov060287b2012-07-09 17:10:41 -070053 pstore_ftrace_encode_cpu(&rec, raw_smp_processor_id());
Kees Cook4c9ec212017-03-05 22:41:10 -080054 psinfo->write(&record);
Anton Vorontsov65f8c952012-07-17 14:26:15 -070055
56 local_irq_restore(flags);
Steven Rostedt (VMware)6cdf9412020-11-05 21:32:39 -050057 ftrace_test_recursion_unlock(bit);
Anton Vorontsov65f8c952012-07-17 14:26:15 -070058}
59
60static struct ftrace_ops pstore_ftrace_ops __read_mostly = {
61 .func = pstore_ftrace_call,
62};
63
64static DEFINE_MUTEX(pstore_ftrace_lock);
65static bool pstore_ftrace_enabled;
66
67static ssize_t pstore_ftrace_knob_write(struct file *f, const char __user *buf,
68 size_t count, loff_t *ppos)
69{
70 u8 on;
71 ssize_t ret;
72
73 ret = kstrtou8_from_user(buf, count, 2, &on);
74 if (ret)
75 return ret;
76
77 mutex_lock(&pstore_ftrace_lock);
78
79 if (!on ^ pstore_ftrace_enabled)
80 goto out;
81
Joel Fernandes7a0032f2016-11-15 12:31:21 -080082 if (on) {
83 ftrace_ops_set_global_filter(&pstore_ftrace_ops);
Anton Vorontsov65f8c952012-07-17 14:26:15 -070084 ret = register_ftrace_function(&pstore_ftrace_ops);
Joel Fernandes7a0032f2016-11-15 12:31:21 -080085 } else {
Anton Vorontsov65f8c952012-07-17 14:26:15 -070086 ret = unregister_ftrace_function(&pstore_ftrace_ops);
Joel Fernandes7a0032f2016-11-15 12:31:21 -080087 }
88
Anton Vorontsov65f8c952012-07-17 14:26:15 -070089 if (ret) {
90 pr_err("%s: unable to %sregister ftrace ops: %zd\n",
91 __func__, on ? "" : "un", ret);
92 goto err;
93 }
94
95 pstore_ftrace_enabled = on;
96out:
97 ret = count;
98err:
99 mutex_unlock(&pstore_ftrace_lock);
100
101 return ret;
102}
103
104static ssize_t pstore_ftrace_knob_read(struct file *f, char __user *buf,
105 size_t count, loff_t *ppos)
106{
107 char val[] = { '0' + pstore_ftrace_enabled, '\n' };
108
109 return simple_read_from_buffer(buf, count, ppos, val, sizeof(val));
110}
111
112static const struct file_operations pstore_knob_fops = {
113 .open = simple_open,
114 .read = pstore_ftrace_knob_read,
115 .write = pstore_ftrace_knob_write,
116};
117
Geliang Tangee1d2672015-10-20 00:39:03 -0700118static struct dentry *pstore_ftrace_dir;
119
Anton Vorontsov65f8c952012-07-17 14:26:15 -0700120void pstore_register_ftrace(void)
121{
Kees Cook4c9ec212017-03-05 22:41:10 -0800122 if (!psinfo->write)
Anton Vorontsov65f8c952012-07-17 14:26:15 -0700123 return;
124
Geliang Tangee1d2672015-10-20 00:39:03 -0700125 pstore_ftrace_dir = debugfs_create_dir("pstore", NULL);
Anton Vorontsov65f8c952012-07-17 14:26:15 -0700126
Greg Kroah-Hartmanfa1af752019-06-12 17:20:33 +0200127 debugfs_create_file("record_ftrace", 0600, pstore_ftrace_dir, NULL,
128 &pstore_knob_fops);
Geliang Tangee1d2672015-10-20 00:39:03 -0700129}
130
131void pstore_unregister_ftrace(void)
132{
133 mutex_lock(&pstore_ftrace_lock);
134 if (pstore_ftrace_enabled) {
135 unregister_ftrace_function(&pstore_ftrace_ops);
Thomas Meyer69596432017-10-07 16:02:21 +0200136 pstore_ftrace_enabled = false;
Geliang Tangee1d2672015-10-20 00:39:03 -0700137 }
138 mutex_unlock(&pstore_ftrace_lock);
139
140 debugfs_remove_recursive(pstore_ftrace_dir);
Anton Vorontsov060287b2012-07-09 17:10:41 -0700141}
Kees Cook16a58302020-05-08 08:42:12 -0700142
143ssize_t pstore_ftrace_combine_log(char **dest_log, size_t *dest_log_size,
144 const char *src_log, size_t src_log_size)
145{
146 size_t dest_size, src_size, total, dest_off, src_off;
147 size_t dest_idx = 0, src_idx = 0, merged_idx = 0;
148 void *merged_buf;
149 struct pstore_ftrace_record *drec, *srec, *mrec;
150 size_t record_size = sizeof(struct pstore_ftrace_record);
151
152 dest_off = *dest_log_size % record_size;
153 dest_size = *dest_log_size - dest_off;
154
155 src_off = src_log_size % record_size;
156 src_size = src_log_size - src_off;
157
158 total = dest_size + src_size;
159 merged_buf = kmalloc(total, GFP_KERNEL);
160 if (!merged_buf)
161 return -ENOMEM;
162
163 drec = (struct pstore_ftrace_record *)(*dest_log + dest_off);
164 srec = (struct pstore_ftrace_record *)(src_log + src_off);
165 mrec = (struct pstore_ftrace_record *)(merged_buf);
166
167 while (dest_size > 0 && src_size > 0) {
168 if (pstore_ftrace_read_timestamp(&drec[dest_idx]) <
169 pstore_ftrace_read_timestamp(&srec[src_idx])) {
170 mrec[merged_idx++] = drec[dest_idx++];
171 dest_size -= record_size;
172 } else {
173 mrec[merged_idx++] = srec[src_idx++];
174 src_size -= record_size;
175 }
176 }
177
178 while (dest_size > 0) {
179 mrec[merged_idx++] = drec[dest_idx++];
180 dest_size -= record_size;
181 }
182
183 while (src_size > 0) {
184 mrec[merged_idx++] = srec[src_idx++];
185 src_size -= record_size;
186 }
187
188 kfree(*dest_log);
189 *dest_log = merged_buf;
190 *dest_log_size = total;
191
192 return 0;
193}
194EXPORT_SYMBOL_GPL(pstore_ftrace_combine_log);