1 // SPDX-License-Identifier: GPL-2.0
3 * fprobe - Simple ftrace probe wrapper for function entry.
5 #define pr_fmt(fmt) "fprobe: " fmt
8 #include <linux/fprobe.h>
9 #include <linux/kallsyms.h>
10 #include <linux/kprobes.h>
11 #include <linux/rethook.h>
12 #include <linux/slab.h>
13 #include <linux/sort.h>
17 struct fprobe_rethook_node {
18 struct rethook_node node;
19 unsigned long entry_ip;
22 static void fprobe_handler(unsigned long ip, unsigned long parent_ip,
23 struct ftrace_ops *ops, struct ftrace_regs *fregs)
25 struct fprobe_rethook_node *fpr;
26 struct rethook_node *rh;
30 fp = container_of(ops, struct fprobe, ops);
31 if (fprobe_disabled(fp))
34 bit = ftrace_test_recursion_trylock(ip, parent_ip);
40 if (fp->entry_handler)
41 fp->entry_handler(fp, ip, ftrace_get_regs(fregs));
43 if (fp->exit_handler) {
44 rh = rethook_try_get(fp->rethook);
49 fpr = container_of(rh, struct fprobe_rethook_node, node);
51 rethook_hook(rh, ftrace_get_regs(fregs), true);
55 ftrace_test_recursion_unlock(bit);
57 NOKPROBE_SYMBOL(fprobe_handler);
59 static void fprobe_kprobe_handler(unsigned long ip, unsigned long parent_ip,
60 struct ftrace_ops *ops, struct ftrace_regs *fregs)
62 struct fprobe *fp = container_of(ops, struct fprobe, ops);
64 if (unlikely(kprobe_running())) {
69 fprobe_handler(ip, parent_ip, ops, fregs);
73 static void fprobe_exit_handler(struct rethook_node *rh, void *data,
76 struct fprobe *fp = (struct fprobe *)data;
77 struct fprobe_rethook_node *fpr;
79 if (!fp || fprobe_disabled(fp))
82 fpr = container_of(rh, struct fprobe_rethook_node, node);
84 fp->exit_handler(fp, fpr->entry_ip, regs);
86 NOKPROBE_SYMBOL(fprobe_exit_handler);
88 static int symbols_cmp(const void *a, const void *b)
90 const char **str_a = (const char **) a;
91 const char **str_b = (const char **) b;
93 return strcmp(*str_a, *str_b);
96 /* Convert ftrace location address from symbols */
97 static unsigned long *get_ftrace_locations(const char **syms, int num)
101 /* Convert symbols to symbol address */
102 addrs = kcalloc(num, sizeof(*addrs), GFP_KERNEL);
104 return ERR_PTR(-ENOMEM);
106 /* ftrace_lookup_symbols expects sorted symbols */
107 sort(syms, num, sizeof(*syms), symbols_cmp, NULL);
109 if (!ftrace_lookup_symbols(syms, num, addrs))
113 return ERR_PTR(-ENOENT);
116 static void fprobe_init(struct fprobe *fp)
119 if (fprobe_shared_with_kprobes(fp))
120 fp->ops.func = fprobe_kprobe_handler;
122 fp->ops.func = fprobe_handler;
123 fp->ops.flags |= FTRACE_OPS_FL_SAVE_REGS;
126 static int fprobe_init_rethook(struct fprobe *fp, int num)
133 if (!fp->exit_handler) {
138 /* Initialize rethook if needed */
139 size = num * num_possible_cpus() * 2;
143 fp->rethook = rethook_alloc((void *)fp, fprobe_exit_handler);
144 for (i = 0; i < size; i++) {
145 struct fprobe_rethook_node *node;
147 node = kzalloc(sizeof(*node), GFP_KERNEL);
149 rethook_free(fp->rethook);
153 rethook_add_node(fp->rethook, &node->node);
158 static void fprobe_fail_cleanup(struct fprobe *fp)
161 /* Don't need to cleanup rethook->handler because this is not used. */
162 rethook_free(fp->rethook);
165 ftrace_free_filter(&fp->ops);
169 * register_fprobe() - Register fprobe to ftrace by pattern.
170 * @fp: A fprobe data structure to be registered.
171 * @filter: A wildcard pattern of probed symbols.
172 * @notfilter: A wildcard pattern of NOT probed symbols.
174 * Register @fp to ftrace for enabling the probe on the symbols matched to @filter.
175 * If @notfilter is not NULL, the symbols matched the @notfilter are not probed.
177 * Return 0 if @fp is registered successfully, -errno if not.
179 int register_fprobe(struct fprobe *fp, const char *filter, const char *notfilter)
181 struct ftrace_hash *hash;
190 len = strlen(filter);
191 str = kstrdup(filter, GFP_KERNEL);
192 ret = ftrace_set_filter(&fp->ops, str, len, 0);
198 len = strlen(notfilter);
199 str = kstrdup(notfilter, GFP_KERNEL);
200 ret = ftrace_set_notrace(&fp->ops, str, len, 0);
207 * correctly calculate the total number of filtered symbols
208 * from both filter and notfilter.
210 hash = rcu_access_pointer(fp->ops.local_hash.filter_hash);
211 if (WARN_ON_ONCE(!hash))
214 ret = fprobe_init_rethook(fp, (int)hash->count);
216 ret = register_ftrace_function(&fp->ops);
220 fprobe_fail_cleanup(fp);
223 EXPORT_SYMBOL_GPL(register_fprobe);
226 * register_fprobe_ips() - Register fprobe to ftrace by address.
227 * @fp: A fprobe data structure to be registered.
228 * @addrs: An array of target ftrace location addresses.
229 * @num: The number of entries of @addrs.
231 * Register @fp to ftrace for enabling the probe on the address given by @addrs.
232 * The @addrs must be the addresses of ftrace location address, which may be
233 * the symbol address + arch-dependent offset.
234 * If you unsure what this mean, please use other registration functions.
236 * Return 0 if @fp is registered successfully, -errno if not.
238 int register_fprobe_ips(struct fprobe *fp, unsigned long *addrs, int num)
242 if (!fp || !addrs || num <= 0)
247 ret = ftrace_set_filter_ips(&fp->ops, addrs, num, 0, 0);
251 ret = fprobe_init_rethook(fp, num);
253 ret = register_ftrace_function(&fp->ops);
256 fprobe_fail_cleanup(fp);
259 EXPORT_SYMBOL_GPL(register_fprobe_ips);
262 * register_fprobe_syms() - Register fprobe to ftrace by symbols.
263 * @fp: A fprobe data structure to be registered.
264 * @syms: An array of target symbols.
265 * @num: The number of entries of @syms.
267 * Register @fp to the symbols given by @syms array. This will be useful if
268 * you are sure the symbols exist in the kernel.
270 * Return 0 if @fp is registered successfully, -errno if not.
272 int register_fprobe_syms(struct fprobe *fp, const char **syms, int num)
274 unsigned long *addrs;
277 if (!fp || !syms || num <= 0)
280 addrs = get_ftrace_locations(syms, num);
282 return PTR_ERR(addrs);
284 ret = register_fprobe_ips(fp, addrs, num);
290 EXPORT_SYMBOL_GPL(register_fprobe_syms);
293 * unregister_fprobe() - Unregister fprobe from ftrace
294 * @fp: A fprobe data structure to be unregistered.
296 * Unregister fprobe (and remove ftrace hooks from the function entries).
298 * Return 0 if @fp is unregistered successfully, -errno if not.
300 int unregister_fprobe(struct fprobe *fp)
304 if (!fp || fp->ops.func != fprobe_handler)
308 * rethook_free() starts disabling the rethook, but the rethook handlers
309 * may be running on other processors at this point. To make sure that all
310 * current running handlers are finished, call unregister_ftrace_function()
314 rethook_free(fp->rethook);
316 ret = unregister_ftrace_function(&fp->ops);
320 ftrace_free_filter(&fp->ops);
324 EXPORT_SYMBOL_GPL(unregister_fprobe);