Branch data Line data Source code
1 : : /*
2 : : * This code exports profiling data as debugfs files to userspace.
3 : : *
4 : : * Copyright IBM Corp. 2009
5 : : * Author(s): Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
6 : : *
7 : : * Uses gcc-internal data definitions.
8 : : * Based on the gcov-kernel patch by:
9 : : * Hubertus Franke <frankeh@us.ibm.com>
10 : : * Nigel Hinds <nhinds@us.ibm.com>
11 : : * Rajan Ravindran <rajancr@us.ibm.com>
12 : : * Peter Oberparleiter <oberpar@linux.vnet.ibm.com>
13 : : * Paul Larson
14 : : * Yi CDL Yang
15 : : */
16 : :
17 : : #define pr_fmt(fmt) "gcov: " fmt
18 : :
19 : : #include <linux/init.h>
20 : : #include <linux/module.h>
21 : : #include <linux/debugfs.h>
22 : : #include <linux/fs.h>
23 : : #include <linux/list.h>
24 : : #include <linux/string.h>
25 : : #include <linux/slab.h>
26 : : #include <linux/mutex.h>
27 : : #include <linux/seq_file.h>
28 : : #include "gcov.h"
29 : :
30 : : /**
31 : : * struct gcov_node - represents a debugfs entry
32 : : * @list: list head for child node list
33 : : * @children: child nodes
34 : : * @all: list head for list of all nodes
35 : : * @parent: parent node
36 : : * @loaded_info: array of pointers to profiling data sets for loaded object
37 : : * files.
38 : : * @num_loaded: number of profiling data sets for loaded object files.
39 : : * @unloaded_info: accumulated copy of profiling data sets for unloaded
40 : : * object files. Used only when gcov_persist=1.
41 : : * @dentry: main debugfs entry, either a directory or data file
42 : : * @links: associated symbolic links
43 : : * @name: data file basename
44 : : *
45 : : * struct gcov_node represents an entity within the gcov/ subdirectory
46 : : * of debugfs. There are directory and data file nodes. The latter represent
47 : : * the actual synthesized data file plus any associated symbolic links which
48 : : * are needed by the gcov tool to work correctly.
49 : : */
50 : : struct gcov_node {
51 : : struct list_head list;
52 : : struct list_head children;
53 : : struct list_head all;
54 : : struct gcov_node *parent;
55 : : struct gcov_info **loaded_info;
56 : : struct gcov_info *unloaded_info;
57 : : struct dentry *dentry;
58 : : struct dentry **links;
59 : : int num_loaded;
60 : : char name[0];
61 : : };
62 : :
63 : : static const char objtree[] = OBJTREE;
64 : : static const char srctree[] = SRCTREE;
65 : : static struct gcov_node root_node;
66 : : static struct dentry *reset_dentry;
67 : : static LIST_HEAD(all_head);
68 : : static DEFINE_MUTEX(node_lock);
69 : :
70 : : /* If non-zero, keep copies of profiling data for unloaded modules. */
71 : : static int gcov_persist = 1;
72 : :
73 : 0 : static int __init gcov_persist_setup(char *str)
74 : : {
75 : : unsigned long val;
76 : :
77 [ # # ]: 0 : if (kstrtoul(str, 0, &val)) {
78 : 0 : pr_warn("invalid gcov_persist parameter '%s'\n", str);
79 : 0 : return 0;
80 : : }
81 : 0 : gcov_persist = val;
82 : 0 : pr_info("setting gcov_persist to %d\n", gcov_persist);
83 : :
84 : 0 : return 1;
85 : : }
86 : : __setup("gcov_persist=", gcov_persist_setup);
87 : :
88 : : /*
89 : : * seq_file.start() implementation for gcov data files. Note that the
90 : : * gcov_iterator interface is designed to be more restrictive than seq_file
91 : : * (no start from arbitrary position, etc.), to simplify the iterator
92 : : * implementation.
93 : : */
94 : 0 : static void *gcov_seq_start(struct seq_file *seq, loff_t *pos)
95 : : {
96 : : loff_t i;
97 : :
98 : 13290 : gcov_iter_start(seq->private);
99 [ + + ]: 30919 : for (i = 0; i < *pos; i++) {
100 [ + + ]: 9870 : if (gcov_iter_next(seq->private))
101 : : return NULL;
102 : : }
103 : 7759 : return seq->private;
104 : : }
105 : :
106 : : /* seq_file.next() implementation for gcov data files. */
107 : 0 : static void *gcov_seq_next(struct seq_file *seq, void *data, loff_t *pos)
108 : : {
109 : : struct gcov_iterator *iter = data;
110 : :
111 [ + + ]: 7749 : if (gcov_iter_next(iter))
112 : : return NULL;
113 : 2218 : (*pos)++;
114 : :
115 : 2218 : return iter;
116 : : }
117 : :
118 : : /* seq_file.show() implementation for gcov data files. */
119 : 0 : static int gcov_seq_show(struct seq_file *seq, void *data)
120 : : {
121 : : struct gcov_iterator *iter = data;
122 : :
123 [ + - ]: 9977 : if (gcov_iter_write(iter, seq))
124 : : return -EINVAL;
125 : 9977 : return 0;
126 : : }
127 : :
128 : 0 : static void gcov_seq_stop(struct seq_file *seq, void *data)
129 : : {
130 : : /* Unused. */
131 : 13290 : }
132 : :
133 : : static const struct seq_operations gcov_seq_ops = {
134 : : .start = gcov_seq_start,
135 : : .next = gcov_seq_next,
136 : : .show = gcov_seq_show,
137 : : .stop = gcov_seq_stop,
138 : : };
139 : :
140 : : /*
141 : : * Return a profiling data set associated with the given node. This is
142 : : * either a data set for a loaded object file or a data set copy in case
143 : : * all associated object files have been unloaded.
144 : : */
145 : : static struct gcov_info *get_node_info(struct gcov_node *node)
146 : : {
147 [ # # ][ # # ]: 0 : if (node->num_loaded > 0)
148 : 0 : return node->loaded_info[0];
149 : :
150 : 0 : return node->unloaded_info;
151 : : }
152 : :
153 : : /*
154 : : * Return a newly allocated profiling data set which contains the sum of
155 : : * all profiling data associated with the given node.
156 : : */
157 : 0 : static struct gcov_info *get_accumulated_info(struct gcov_node *node)
158 : : {
159 : : struct gcov_info *info;
160 : : int i = 0;
161 : :
162 [ - + ]: 5532 : if (node->unloaded_info)
163 : 0 : info = gcov_info_dup(node->unloaded_info);
164 : : else
165 : 5532 : info = gcov_info_dup(node->loaded_info[i++]);
166 [ + - ]: 5531 : if (!info)
167 : : return NULL;
168 [ - + ]: 5531 : for (; i < node->num_loaded; i++)
169 : 0 : gcov_info_add(info, node->loaded_info[i]);
170 : :
171 : : return info;
172 : : }
173 : :
174 : : /*
175 : : * open() implementation for gcov data files. Create a copy of the profiling
176 : : * data set and initialize the iterator and seq_file interface.
177 : : */
178 : 0 : static int gcov_seq_open(struct inode *inode, struct file *file)
179 : : {
180 : 5532 : struct gcov_node *node = inode->i_private;
181 : : struct gcov_iterator *iter;
182 : : struct seq_file *seq;
183 : : struct gcov_info *info;
184 : : int rc = -ENOMEM;
185 : :
186 : 5532 : mutex_lock(&node_lock);
187 : : /*
188 : : * Read from a profiling data copy to minimize reference tracking
189 : : * complexity and concurrent access and to keep accumulating multiple
190 : : * profiling data sets associated with one node simple.
191 : : */
192 : 5532 : info = get_accumulated_info(node);
193 [ + - ]: 5531 : if (!info)
194 : : goto out_unlock;
195 : 5531 : iter = gcov_iter_new(info);
196 [ + - ]: 5531 : if (!iter)
197 : : goto err_free_info;
198 : 5531 : rc = seq_open(file, &gcov_seq_ops);
199 [ + - ]: 11063 : if (rc)
200 : : goto err_free_iter_info;
201 : 5531 : seq = file->private_data;
202 : 5531 : seq->private = iter;
203 : : out_unlock:
204 : 5531 : mutex_unlock(&node_lock);
205 : 5531 : return rc;
206 : :
207 : : err_free_iter_info:
208 : 0 : gcov_iter_free(iter);
209 : : err_free_info:
210 : 0 : gcov_info_free(info);
211 : 0 : goto out_unlock;
212 : : }
213 : :
214 : : /*
215 : : * release() implementation for gcov data files. Release resources allocated
216 : : * by open().
217 : : */
218 : 0 : static int gcov_seq_release(struct inode *inode, struct file *file)
219 : : {
220 : : struct gcov_iterator *iter;
221 : : struct gcov_info *info;
222 : : struct seq_file *seq;
223 : :
224 : 5531 : seq = file->private_data;
225 : 5531 : iter = seq->private;
226 : 5531 : info = gcov_iter_get_info(iter);
227 : 5531 : gcov_iter_free(iter);
228 : 5531 : gcov_info_free(info);
229 : 5531 : seq_release(inode, file);
230 : :
231 : 5531 : return 0;
232 : : }
233 : :
234 : : /*
235 : : * Find a node by the associated data file name. Needs to be called with
236 : : * node_lock held.
237 : : */
238 : 0 : static struct gcov_node *get_node_by_name(const char *name)
239 : : {
240 : : struct gcov_node *node;
241 : : struct gcov_info *info;
242 : :
243 [ # # ]: 0 : list_for_each_entry(node, &all_head, all) {
244 : : info = get_node_info(node);
245 [ # # ][ # # ]: 0 : if (info && (strcmp(gcov_info_filename(info), name) == 0))
246 : : return node;
247 : : }
248 : :
249 : : return NULL;
250 : : }
251 : :
252 : : /*
253 : : * Reset all profiling data associated with the specified node.
254 : : */
255 : 0 : static void reset_node(struct gcov_node *node)
256 : : {
257 : : int i;
258 : :
259 [ - + ]: 941 : if (node->unloaded_info)
260 : 941 : gcov_info_reset(node->unloaded_info);
261 [ + + ]: 1883 : for (i = 0; i < node->num_loaded; i++)
262 : 941 : gcov_info_reset(node->loaded_info[i]);
263 : 942 : }
264 : :
265 : : static void remove_node(struct gcov_node *node);
266 : :
267 : : /*
268 : : * write() implementation for gcov data files. Reset profiling data for the
269 : : * corresponding file. If all associated object files have been unloaded,
270 : : * remove the debug fs node as well.
271 : : */
272 : 0 : static ssize_t gcov_seq_write(struct file *file, const char __user *addr,
273 : : size_t len, loff_t *pos)
274 : : {
275 : : struct seq_file *seq;
276 : : struct gcov_info *info;
277 : : struct gcov_node *node;
278 : :
279 : 0 : seq = file->private_data;
280 : 0 : info = gcov_iter_get_info(seq->private);
281 : 0 : mutex_lock(&node_lock);
282 : 0 : node = get_node_by_name(gcov_info_filename(info));
283 [ # # ]: 0 : if (node) {
284 : : /* Reset counts or remove node for unloaded modules. */
285 [ # # ]: 0 : if (node->num_loaded == 0)
286 : 0 : remove_node(node);
287 : : else
288 : 0 : reset_node(node);
289 : : }
290 : : /* Reset counts for open file. */
291 : 0 : gcov_info_reset(info);
292 : 0 : mutex_unlock(&node_lock);
293 : :
294 : 0 : return len;
295 : : }
296 : :
297 : : /*
298 : : * Given a string <path> representing a file path of format:
299 : : * path/to/file.gcda
300 : : * construct and return a new string:
301 : : * <dir/>path/to/file.<ext>
302 : : */
303 : 0 : static char *link_target(const char *dir, const char *path, const char *ext)
304 : : {
305 : : char *target;
306 : : char *old_ext;
307 : : char *copy;
308 : :
309 : 0 : copy = kstrdup(path, GFP_KERNEL);
310 [ # # ]: 0 : if (!copy)
311 : : return NULL;
312 : 0 : old_ext = strrchr(copy, '.');
313 [ # # ]: 0 : if (old_ext)
314 : 0 : *old_ext = '\0';
315 [ # # ]: 0 : if (dir)
316 : 0 : target = kasprintf(GFP_KERNEL, "%s/%s.%s", dir, copy, ext);
317 : : else
318 : 0 : target = kasprintf(GFP_KERNEL, "%s.%s", copy, ext);
319 : 0 : kfree(copy);
320 : :
321 : 0 : return target;
322 : : }
323 : :
324 : : /*
325 : : * Construct a string representing the symbolic link target for the given
326 : : * gcov data file name and link type. Depending on the link type and the
327 : : * location of the data file, the link target can either point to a
328 : : * subdirectory of srctree, objtree or in an external location.
329 : : */
330 : 0 : static char *get_link_target(const char *filename, const struct gcov_link *ext)
331 : : {
332 : : const char *rel;
333 : : char *result;
334 : :
335 [ # # ]: 0 : if (strncmp(filename, objtree, strlen(objtree)) == 0) {
336 : 0 : rel = filename + strlen(objtree) + 1;
337 [ # # ]: 0 : if (ext->dir == SRC_TREE)
338 : 0 : result = link_target(srctree, rel, ext->ext);
339 : : else
340 : 0 : result = link_target(objtree, rel, ext->ext);
341 : : } else {
342 : : /* External compilation. */
343 : 0 : result = link_target(NULL, filename, ext->ext);
344 : : }
345 : :
346 : 0 : return result;
347 : : }
348 : :
349 : : #define SKEW_PREFIX ".tmp_"
350 : :
351 : : /*
352 : : * For a filename .tmp_filename.ext return filename.ext. Needed to compensate
353 : : * for filename skewing caused by the mod-versioning mechanism.
354 : : */
355 : : static const char *deskew(const char *basename)
356 : : {
357 [ # # ][ # # ]: 0 : if (strncmp(basename, SKEW_PREFIX, sizeof(SKEW_PREFIX) - 1) == 0)
358 : 0 : return basename + sizeof(SKEW_PREFIX) - 1;
359 : : return basename;
360 : : }
361 : :
362 : : /*
363 : : * Create links to additional files (usually .c and .gcno files) which the
364 : : * gcov tool expects to find in the same directory as the gcov data file.
365 : : */
366 : 0 : static void add_links(struct gcov_node *node, struct dentry *parent)
367 : : {
368 : : const char *basename;
369 : : char *target;
370 : : int num;
371 : : int i;
372 : :
373 [ # # ]: 0 : for (num = 0; gcov_link[num].ext; num++)
374 : : /* Nothing. */;
375 : 0 : node->links = kcalloc(num, sizeof(struct dentry *), GFP_KERNEL);
376 [ # # ]: 0 : if (!node->links)
377 : : return;
378 [ # # ]: 0 : for (i = 0; i < num; i++) {
379 : 0 : target = get_link_target(
380 : : gcov_info_filename(get_node_info(node)),
381 : : &gcov_link[i]);
382 [ # # ]: 0 : if (!target)
383 : : goto out_err;
384 : : basename = kbasename(target);
385 [ # # ]: 0 : if (basename == target)
386 : : goto out_err;
387 : 0 : node->links[i] = debugfs_create_symlink(deskew(basename),
388 : : parent, target);
389 [ # # ]: 0 : if (!node->links[i])
390 : : goto out_err;
391 : 0 : kfree(target);
392 : : }
393 : :
394 : : return;
395 : : out_err:
396 : 0 : kfree(target);
397 [ # # ]: 0 : while (i-- > 0)
398 : 0 : debugfs_remove(node->links[i]);
399 : 0 : kfree(node->links);
400 : 0 : node->links = NULL;
401 : : }
402 : :
403 : : static const struct file_operations gcov_data_fops = {
404 : : .open = gcov_seq_open,
405 : : .release = gcov_seq_release,
406 : : .read = seq_read,
407 : : .llseek = seq_lseek,
408 : : .write = gcov_seq_write,
409 : : };
410 : :
411 : : /* Basic initialization of a new node. */
412 : 0 : static void init_node(struct gcov_node *node, struct gcov_info *info,
413 : : const char *name, struct gcov_node *parent)
414 : : {
415 : 0 : INIT_LIST_HEAD(&node->list);
416 : 0 : INIT_LIST_HEAD(&node->children);
417 : 0 : INIT_LIST_HEAD(&node->all);
418 [ # # ]: 0 : if (node->loaded_info) {
419 : 0 : node->loaded_info[0] = info;
420 : 0 : node->num_loaded = 1;
421 : : }
422 : 0 : node->parent = parent;
423 [ # # ]: 0 : if (name)
424 : 0 : strcpy(node->name, name);
425 : 0 : }
426 : :
427 : : /*
428 : : * Create a new node and associated debugfs entry. Needs to be called with
429 : : * node_lock held.
430 : : */
431 : 0 : static struct gcov_node *new_node(struct gcov_node *parent,
432 : : struct gcov_info *info, const char *name)
433 : : {
434 : : struct gcov_node *node;
435 : :
436 : 0 : node = kzalloc(sizeof(struct gcov_node) + strlen(name) + 1, GFP_KERNEL);
437 [ # # ]: 0 : if (!node)
438 : : goto err_nomem;
439 [ # # ]: 0 : if (info) {
440 : 0 : node->loaded_info = kcalloc(1, sizeof(struct gcov_info *),
441 : : GFP_KERNEL);
442 [ # # ]: 0 : if (!node->loaded_info)
443 : : goto err_nomem;
444 : : }
445 : 0 : init_node(node, info, name, parent);
446 : : /* Differentiate between gcov data file nodes and directory nodes. */
447 [ # # ]: 0 : if (info) {
448 : 0 : node->dentry = debugfs_create_file(deskew(node->name), 0600,
449 : : parent->dentry, node, &gcov_data_fops);
450 : : } else
451 : 0 : node->dentry = debugfs_create_dir(node->name, parent->dentry);
452 [ # # ]: 0 : if (!node->dentry) {
453 : 0 : pr_warn("could not create file\n");
454 : 0 : kfree(node);
455 : 0 : return NULL;
456 : : }
457 [ # # ]: 0 : if (info)
458 : 0 : add_links(node, parent->dentry);
459 : 0 : list_add(&node->list, &parent->children);
460 : 0 : list_add(&node->all, &all_head);
461 : :
462 : 0 : return node;
463 : :
464 : : err_nomem:
465 : 0 : kfree(node);
466 : 0 : pr_warn("out of memory\n");
467 : 0 : return NULL;
468 : : }
469 : :
470 : : /* Remove symbolic links associated with node. */
471 : 0 : static void remove_links(struct gcov_node *node)
472 : : {
473 : : int i;
474 : :
475 [ # # ]: 0 : if (!node->links)
476 : 0 : return;
477 [ # # ]: 0 : for (i = 0; gcov_link[i].ext; i++)
478 : 0 : debugfs_remove(node->links[i]);
479 : 0 : kfree(node->links);
480 : 0 : node->links = NULL;
481 : : }
482 : :
483 : : /*
484 : : * Remove node from all lists and debugfs and release associated resources.
485 : : * Needs to be called with node_lock held.
486 : : */
487 : 0 : static void release_node(struct gcov_node *node)
488 : : {
489 : : list_del(&node->list);
490 : : list_del(&node->all);
491 : 0 : debugfs_remove(node->dentry);
492 : 0 : remove_links(node);
493 : 0 : kfree(node->loaded_info);
494 [ # # ]: 0 : if (node->unloaded_info)
495 : 0 : gcov_info_free(node->unloaded_info);
496 : 0 : kfree(node);
497 : 0 : }
498 : :
499 : : /* Release node and empty parents. Needs to be called with node_lock held. */
500 : 0 : static void remove_node(struct gcov_node *node)
501 : : {
502 : : struct gcov_node *parent;
503 : :
504 [ # # ][ # # ]: 0 : while ((node != &root_node) && list_empty(&node->children)) {
505 : 0 : parent = node->parent;
506 : 0 : release_node(node);
507 : : node = parent;
508 : : }
509 : 0 : }
510 : :
511 : : /*
512 : : * Find child node with given basename. Needs to be called with node_lock
513 : : * held.
514 : : */
515 : 0 : static struct gcov_node *get_child_by_name(struct gcov_node *parent,
516 : : const char *name)
517 : : {
518 : : struct gcov_node *node;
519 : :
520 [ # # ]: 0 : list_for_each_entry(node, &parent->children, list) {
521 [ # # ]: 0 : if (strcmp(node->name, name) == 0)
522 : : return node;
523 : : }
524 : :
525 : : return NULL;
526 : : }
527 : :
528 : : /*
529 : : * write() implementation for reset file. Reset all profiling data to zero
530 : : * and remove nodes for which all associated object files are unloaded.
531 : : */
532 : 0 : static ssize_t reset_write(struct file *file, const char __user *addr,
533 : : size_t len, loff_t *pos)
534 : : {
535 : : struct gcov_node *node;
536 : :
537 : 0 : mutex_lock(&node_lock);
538 : : restart:
539 [ + + ]: 1061 : list_for_each_entry(node, &all_head, all) {
540 [ + + ]: 1060 : if (node->num_loaded > 0)
541 : 941 : reset_node(node);
542 [ - + ]: 119 : else if (list_empty(&node->children)) {
543 : 0 : remove_node(node);
544 : : /* Several nodes may have gone - restart loop. */
545 : 0 : goto restart;
546 : : }
547 : : }
548 : 1 : mutex_unlock(&node_lock);
549 : :
550 : 1 : return len;
551 : : }
552 : :
553 : : /* read() implementation for reset file. Unused. */
554 : 0 : static ssize_t reset_read(struct file *file, char __user *addr, size_t len,
555 : : loff_t *pos)
556 : : {
557 : : /* Allow read operation so that a recursive copy won't fail. */
558 : 6 : return 0;
559 : : }
560 : :
561 : : static const struct file_operations gcov_reset_fops = {
562 : : .write = reset_write,
563 : : .read = reset_read,
564 : : .llseek = noop_llseek,
565 : : };
566 : :
567 : : /*
568 : : * Create a node for a given profiling data set and add it to all lists and
569 : : * debugfs. Needs to be called with node_lock held.
570 : : */
571 : 0 : static void add_node(struct gcov_info *info)
572 : : {
573 : : char *filename;
574 : : char *curr;
575 : : char *next;
576 : : struct gcov_node *parent;
577 : : struct gcov_node *node;
578 : :
579 : 0 : filename = kstrdup(gcov_info_filename(info), GFP_KERNEL);
580 [ # # ]: 0 : if (!filename)
581 : : return;
582 : : parent = &root_node;
583 : : /* Create directory nodes along the path. */
584 [ # # ]: 0 : for (curr = filename; (next = strchr(curr, '/')); curr = next + 1) {
585 [ # # ]: 0 : if (curr == next)
586 : 0 : continue;
587 : 0 : *next = 0;
588 [ # # ]: 0 : if (strcmp(curr, ".") == 0)
589 : 0 : continue;
590 [ # # ]: 0 : if (strcmp(curr, "..") == 0) {
591 [ # # ]: 0 : if (!parent->parent)
592 : : goto err_remove;
593 : : parent = parent->parent;
594 : 0 : continue;
595 : : }
596 : 0 : node = get_child_by_name(parent, curr);
597 [ # # ]: 0 : if (!node) {
598 : 0 : node = new_node(parent, NULL, curr);
599 [ # # ]: 0 : if (!node)
600 : : goto err_remove;
601 : : }
602 : : parent = node;
603 : : }
604 : : /* Create file node. */
605 : 0 : node = new_node(parent, info, curr);
606 [ # # ]: 0 : if (!node)
607 : : goto err_remove;
608 : : out:
609 : 0 : kfree(filename);
610 : 0 : return;
611 : :
612 : : err_remove:
613 : 0 : remove_node(parent);
614 : 0 : goto out;
615 : : }
616 : :
617 : : /*
618 : : * Associate a profiling data set with an existing node. Needs to be called
619 : : * with node_lock held.
620 : : */
621 : 0 : static void add_info(struct gcov_node *node, struct gcov_info *info)
622 : : {
623 : : struct gcov_info **loaded_info;
624 : 0 : int num = node->num_loaded;
625 : :
626 : : /*
627 : : * Prepare new array. This is done first to simplify cleanup in
628 : : * case the new data set is incompatible, the node only contains
629 : : * unloaded data sets and there's not enough memory for the array.
630 : : */
631 : 0 : loaded_info = kcalloc(num + 1, sizeof(struct gcov_info *), GFP_KERNEL);
632 [ # # ]: 0 : if (!loaded_info) {
633 : 0 : pr_warn("could not add '%s' (out of memory)\n",
634 : : gcov_info_filename(info));
635 : 0 : return;
636 : : }
637 : 0 : memcpy(loaded_info, node->loaded_info,
638 : : num * sizeof(struct gcov_info *));
639 : 0 : loaded_info[num] = info;
640 : : /* Check if the new data set is compatible. */
641 [ # # ]: 0 : if (num == 0) {
642 : : /*
643 : : * A module was unloaded, modified and reloaded. The new
644 : : * data set replaces the copy of the last one.
645 : : */
646 [ # # ]: 0 : if (!gcov_info_is_compatible(node->unloaded_info, info)) {
647 : 0 : pr_warn("discarding saved data for %s "
648 : : "(incompatible version)\n",
649 : : gcov_info_filename(info));
650 : 0 : gcov_info_free(node->unloaded_info);
651 : 0 : node->unloaded_info = NULL;
652 : : }
653 : : } else {
654 : : /*
655 : : * Two different versions of the same object file are loaded.
656 : : * The initial one takes precedence.
657 : : */
658 [ # # ]: 0 : if (!gcov_info_is_compatible(node->loaded_info[0], info)) {
659 : 0 : pr_warn("could not add '%s' (incompatible "
660 : : "version)\n", gcov_info_filename(info));
661 : 0 : kfree(loaded_info);
662 : 0 : return;
663 : : }
664 : : }
665 : : /* Overwrite previous array. */
666 : 0 : kfree(node->loaded_info);
667 : 0 : node->loaded_info = loaded_info;
668 : 0 : node->num_loaded = num + 1;
669 : : }
670 : :
671 : : /*
672 : : * Return the index of a profiling data set associated with a node.
673 : : */
674 : : static int get_info_index(struct gcov_node *node, struct gcov_info *info)
675 : : {
676 : : int i;
677 : :
678 [ # # ]: 0 : for (i = 0; i < node->num_loaded; i++) {
679 [ # # ]: 0 : if (node->loaded_info[i] == info)
680 : : return i;
681 : : }
682 : : return -ENOENT;
683 : : }
684 : :
685 : : /*
686 : : * Save the data of a profiling data set which is being unloaded.
687 : : */
688 : 0 : static void save_info(struct gcov_node *node, struct gcov_info *info)
689 : : {
690 [ # # ]: 0 : if (node->unloaded_info)
691 : 0 : gcov_info_add(node->unloaded_info, info);
692 : : else {
693 : 0 : node->unloaded_info = gcov_info_dup(info);
694 [ # # ]: 0 : if (!node->unloaded_info) {
695 : 0 : pr_warn("could not save data for '%s' "
696 : : "(out of memory)\n",
697 : : gcov_info_filename(info));
698 : : }
699 : : }
700 : 0 : }
701 : :
702 : : /*
703 : : * Disassociate a profiling data set from a node. Needs to be called with
704 : : * node_lock held.
705 : : */
706 : 0 : static void remove_info(struct gcov_node *node, struct gcov_info *info)
707 : : {
708 : : int i;
709 : :
710 : : i = get_info_index(node, info);
711 [ # # ]: 0 : if (i < 0) {
712 : 0 : pr_warn("could not remove '%s' (not found)\n",
713 : : gcov_info_filename(info));
714 : 0 : return;
715 : : }
716 [ # # ]: 0 : if (gcov_persist)
717 : 0 : save_info(node, info);
718 : : /* Shrink array. */
719 : 0 : node->loaded_info[i] = node->loaded_info[node->num_loaded - 1];
720 : 0 : node->num_loaded--;
721 [ # # ]: 0 : if (node->num_loaded > 0)
722 : : return;
723 : : /* Last loaded data set was removed. */
724 : 0 : kfree(node->loaded_info);
725 : 0 : node->loaded_info = NULL;
726 : 0 : node->num_loaded = 0;
727 [ # # ]: 0 : if (!node->unloaded_info)
728 : 0 : remove_node(node);
729 : : }
730 : :
731 : : /*
732 : : * Callback to create/remove profiling files when code compiled with
733 : : * -fprofile-arcs is loaded/unloaded.
734 : : */
735 : 0 : void gcov_event(enum gcov_action action, struct gcov_info *info)
736 : : {
737 : : struct gcov_node *node;
738 : :
739 : 0 : mutex_lock(&node_lock);
740 : 0 : node = get_node_by_name(gcov_info_filename(info));
741 [ # # # ]: 0 : switch (action) {
742 : : case GCOV_ADD:
743 [ # # ]: 0 : if (node)
744 : 0 : add_info(node, info);
745 : : else
746 : 0 : add_node(info);
747 : : break;
748 : : case GCOV_REMOVE:
749 [ # # ]: 0 : if (node)
750 : 0 : remove_info(node, info);
751 : : else {
752 : 0 : pr_warn("could not remove '%s' (not found)\n",
753 : : gcov_info_filename(info));
754 : : }
755 : : break;
756 : : }
757 : 0 : mutex_unlock(&node_lock);
758 : 0 : }
759 : :
760 : : /* Create debugfs entries. */
761 : 0 : static __init int gcov_fs_init(void)
762 : : {
763 : : int rc = -EIO;
764 : :
765 : 0 : init_node(&root_node, NULL, NULL, NULL);
766 : : /*
767 : : * /sys/kernel/debug/gcov will be parent for the reset control file
768 : : * and all profiling files.
769 : : */
770 : 0 : root_node.dentry = debugfs_create_dir("gcov", NULL);
771 [ # # ]: 0 : if (!root_node.dentry)
772 : : goto err_remove;
773 : : /*
774 : : * Create reset file which resets all profiling counts when written
775 : : * to.
776 : : */
777 : 0 : reset_dentry = debugfs_create_file("reset", 0600, root_node.dentry,
778 : : NULL, &gcov_reset_fops);
779 [ # # ]: 0 : if (!reset_dentry)
780 : : goto err_remove;
781 : : /* Replay previous events to get our fs hierarchy up-to-date. */
782 : 0 : gcov_enable_events();
783 : 0 : return 0;
784 : :
785 : : err_remove:
786 : 0 : pr_err("init failed\n");
787 [ # # ]: 0 : if (root_node.dentry)
788 : 0 : debugfs_remove(root_node.dentry);
789 : :
790 : : return rc;
791 : : }
792 : : device_initcall(gcov_fs_init);
|