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;
20 unsigned long entry_parent_ip;
24 static inline void __fprobe_handler(unsigned long ip, unsigned long parent_ip,
25 struct ftrace_ops *ops, struct ftrace_regs *fregs)
27 struct fprobe_rethook_node *fpr;
28 struct rethook_node *rh = NULL;
30 void *entry_data = NULL;
33 fp = container_of(ops, struct fprobe, ops);
35 if (fp->exit_handler) {
36 rh = rethook_try_get(fp->rethook);
41 fpr = container_of(rh, struct fprobe_rethook_node, node);
43 fpr->entry_parent_ip = parent_ip;
44 if (fp->entry_data_size)
45 entry_data = fpr->data;
48 if (fp->entry_handler)
49 ret = fp->entry_handler(fp, ip, parent_ip, ftrace_get_regs(fregs), entry_data);
51 /* If entry_handler returns !0, nmissed is not counted. */
56 rethook_hook(rh, ftrace_get_regs(fregs), true);
60 static void fprobe_handler(unsigned long ip, unsigned long parent_ip,
61 struct ftrace_ops *ops, struct ftrace_regs *fregs)
66 fp = container_of(ops, struct fprobe, ops);
67 if (fprobe_disabled(fp))
70 /* recursion detection has to go before any traceable function and
71 * all functions before this point should be marked as notrace
73 bit = ftrace_test_recursion_trylock(ip, parent_ip);
78 __fprobe_handler(ip, parent_ip, ops, fregs);
79 ftrace_test_recursion_unlock(bit);
82 NOKPROBE_SYMBOL(fprobe_handler);
84 static void fprobe_kprobe_handler(unsigned long ip, unsigned long parent_ip,
85 struct ftrace_ops *ops, struct ftrace_regs *fregs)
90 fp = container_of(ops, struct fprobe, ops);
91 if (fprobe_disabled(fp))
94 /* recursion detection has to go before any traceable function and
95 * all functions called before this point should be marked as notrace
97 bit = ftrace_test_recursion_trylock(ip, parent_ip);
104 * This user handler is shared with other kprobes and is not expected to be
105 * called recursively. So if any other kprobe handler is running, this will
106 * exit as kprobe does. See the section 'Share the callbacks with kprobes'
107 * in Documentation/trace/fprobe.rst for more information.
109 if (unlikely(kprobe_running())) {
111 goto recursion_unlock;
115 __fprobe_handler(ip, parent_ip, ops, fregs);
119 ftrace_test_recursion_unlock(bit);
122 static void fprobe_exit_handler(struct rethook_node *rh, void *data,
123 unsigned long ret_ip, struct pt_regs *regs)
125 struct fprobe *fp = (struct fprobe *)data;
126 struct fprobe_rethook_node *fpr;
129 if (!fp || fprobe_disabled(fp))
132 fpr = container_of(rh, struct fprobe_rethook_node, node);
135 * we need to assure no calls to traceable functions in-between the
136 * end of fprobe_handler and the beginning of fprobe_exit_handler.
138 bit = ftrace_test_recursion_trylock(fpr->entry_ip, fpr->entry_parent_ip);
144 fp->exit_handler(fp, fpr->entry_ip, ret_ip, regs,
145 fp->entry_data_size ? (void *)fpr->data : NULL);
146 ftrace_test_recursion_unlock(bit);
148 NOKPROBE_SYMBOL(fprobe_exit_handler);
150 static int symbols_cmp(const void *a, const void *b)
152 const char **str_a = (const char **) a;
153 const char **str_b = (const char **) b;
155 return strcmp(*str_a, *str_b);
158 /* Convert ftrace location address from symbols */
159 static unsigned long *get_ftrace_locations(const char **syms, int num)
161 unsigned long *addrs;
163 /* Convert symbols to symbol address */
164 addrs = kcalloc(num, sizeof(*addrs), GFP_KERNEL);
166 return ERR_PTR(-ENOMEM);
168 /* ftrace_lookup_symbols expects sorted symbols */
169 sort(syms, num, sizeof(*syms), symbols_cmp, NULL);
171 if (!ftrace_lookup_symbols(syms, num, addrs))
175 return ERR_PTR(-ENOENT);
178 static void fprobe_init(struct fprobe *fp)
181 if (fprobe_shared_with_kprobes(fp))
182 fp->ops.func = fprobe_kprobe_handler;
184 fp->ops.func = fprobe_handler;
185 fp->ops.flags |= FTRACE_OPS_FL_SAVE_REGS;
188 static int fprobe_init_rethook(struct fprobe *fp, int num)
195 if (!fp->exit_handler) {
200 /* Initialize rethook if needed */
201 if (fp->nr_maxactive)
202 size = fp->nr_maxactive;
204 size = num * num_possible_cpus() * 2;
208 fp->rethook = rethook_alloc((void *)fp, fprobe_exit_handler);
211 for (i = 0; i < size; i++) {
212 struct fprobe_rethook_node *node;
214 node = kzalloc(sizeof(*node) + fp->entry_data_size, GFP_KERNEL);
216 rethook_free(fp->rethook);
220 rethook_add_node(fp->rethook, &node->node);
225 static void fprobe_fail_cleanup(struct fprobe *fp)
228 /* Don't need to cleanup rethook->handler because this is not used. */
229 rethook_free(fp->rethook);
232 ftrace_free_filter(&fp->ops);
236 * register_fprobe() - Register fprobe to ftrace by pattern.
237 * @fp: A fprobe data structure to be registered.
238 * @filter: A wildcard pattern of probed symbols.
239 * @notfilter: A wildcard pattern of NOT probed symbols.
241 * Register @fp to ftrace for enabling the probe on the symbols matched to @filter.
242 * If @notfilter is not NULL, the symbols matched the @notfilter are not probed.
244 * Return 0 if @fp is registered successfully, -errno if not.
246 int register_fprobe(struct fprobe *fp, const char *filter, const char *notfilter)
248 struct ftrace_hash *hash;
257 len = strlen(filter);
258 str = kstrdup(filter, GFP_KERNEL);
259 ret = ftrace_set_filter(&fp->ops, str, len, 0);
265 len = strlen(notfilter);
266 str = kstrdup(notfilter, GFP_KERNEL);
267 ret = ftrace_set_notrace(&fp->ops, str, len, 0);
274 * correctly calculate the total number of filtered symbols
275 * from both filter and notfilter.
277 hash = rcu_access_pointer(fp->ops.local_hash.filter_hash);
278 if (WARN_ON_ONCE(!hash))
281 ret = fprobe_init_rethook(fp, (int)hash->count);
283 ret = register_ftrace_function(&fp->ops);
287 fprobe_fail_cleanup(fp);
290 EXPORT_SYMBOL_GPL(register_fprobe);
293 * register_fprobe_ips() - Register fprobe to ftrace by address.
294 * @fp: A fprobe data structure to be registered.
295 * @addrs: An array of target ftrace location addresses.
296 * @num: The number of entries of @addrs.
298 * Register @fp to ftrace for enabling the probe on the address given by @addrs.
299 * The @addrs must be the addresses of ftrace location address, which may be
300 * the symbol address + arch-dependent offset.
301 * If you unsure what this mean, please use other registration functions.
303 * Return 0 if @fp is registered successfully, -errno if not.
305 int register_fprobe_ips(struct fprobe *fp, unsigned long *addrs, int num)
309 if (!fp || !addrs || num <= 0)
314 ret = ftrace_set_filter_ips(&fp->ops, addrs, num, 0, 0);
318 ret = fprobe_init_rethook(fp, num);
320 ret = register_ftrace_function(&fp->ops);
323 fprobe_fail_cleanup(fp);
326 EXPORT_SYMBOL_GPL(register_fprobe_ips);
329 * register_fprobe_syms() - Register fprobe to ftrace by symbols.
330 * @fp: A fprobe data structure to be registered.
331 * @syms: An array of target symbols.
332 * @num: The number of entries of @syms.
334 * Register @fp to the symbols given by @syms array. This will be useful if
335 * you are sure the symbols exist in the kernel.
337 * Return 0 if @fp is registered successfully, -errno if not.
339 int register_fprobe_syms(struct fprobe *fp, const char **syms, int num)
341 unsigned long *addrs;
344 if (!fp || !syms || num <= 0)
347 addrs = get_ftrace_locations(syms, num);
349 return PTR_ERR(addrs);
351 ret = register_fprobe_ips(fp, addrs, num);
357 EXPORT_SYMBOL_GPL(register_fprobe_syms);
359 bool fprobe_is_registered(struct fprobe *fp)
361 if (!fp || (fp->ops.saved_func != fprobe_handler &&
362 fp->ops.saved_func != fprobe_kprobe_handler))
368 * unregister_fprobe() - Unregister fprobe from ftrace
369 * @fp: A fprobe data structure to be unregistered.
371 * Unregister fprobe (and remove ftrace hooks from the function entries).
373 * Return 0 if @fp is unregistered successfully, -errno if not.
375 int unregister_fprobe(struct fprobe *fp)
379 if (!fprobe_is_registered(fp))
383 rethook_stop(fp->rethook);
385 ret = unregister_ftrace_function(&fp->ops);
390 rethook_free(fp->rethook);
392 ftrace_free_filter(&fp->ops);
396 EXPORT_SYMBOL_GPL(unregister_fprobe);