Merge tag 'for-linus-4.17-rc5-tag' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-2.6-block.git] / kernel / locking / lockdep_proc.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
a8f24a39
IM
2/*
3 * kernel/lockdep_proc.c
4 *
5 * Runtime locking correctness validator
6 *
7 * Started by Ingo Molnar:
8 *
4b32d0a4 9 * Copyright (C) 2006,2007 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
90eec103 10 * Copyright (C) 2007 Red Hat, Inc., Peter Zijlstra
a8f24a39
IM
11 *
12 * Code for /proc/lockdep and /proc/lockdep_stats:
13 *
14 */
9984de1a 15#include <linux/export.h>
a8f24a39
IM
16#include <linux/proc_fs.h>
17#include <linux/seq_file.h>
18#include <linux/kallsyms.h>
19#include <linux/debug_locks.h>
c46261de
PZ
20#include <linux/vmalloc.h>
21#include <linux/sort.h>
7c0f6ba6 22#include <linux/uaccess.h>
c46261de 23#include <asm/div64.h>
a8f24a39
IM
24
25#include "lockdep_internals.h"
26
27static void *l_next(struct seq_file *m, void *v, loff_t *pos)
28{
8109e1de 29 return seq_list_next(v, &all_lock_classes, pos);
a8f24a39
IM
30}
31
32static void *l_start(struct seq_file *m, loff_t *pos)
33{
8109e1de 34 return seq_list_start_head(&all_lock_classes, *pos);
a8f24a39
IM
35}
36
37static void l_stop(struct seq_file *m, void *v)
38{
39}
40
068135e6
JB
41static void print_name(struct seq_file *m, struct lock_class *class)
42{
99fb4a12 43 char str[KSYM_NAME_LEN];
068135e6
JB
44 const char *name = class->name;
45
46 if (!name) {
47 name = __get_key_name(class->key, str);
48 seq_printf(m, "%s", name);
49 } else{
50 seq_printf(m, "%s", name);
51 if (class->name_version > 1)
52 seq_printf(m, "#%d", class->name_version);
53 if (class->subclass)
54 seq_printf(m, "/%d", class->subclass);
55 }
56}
57
a8f24a39
IM
58static int l_show(struct seq_file *m, void *v)
59{
8109e1de 60 struct lock_class *class = list_entry(v, struct lock_class, lock_entry);
068135e6 61 struct lock_list *entry;
f510b233 62 char usage[LOCK_USAGE_CHARS];
a8f24a39 63
8109e1de 64 if (v == &all_lock_classes) {
94c61c0a
TP
65 seq_printf(m, "all lock classes:\n");
66 return 0;
67 }
68
a8f24a39
IM
69 seq_printf(m, "%p", class->key);
70#ifdef CONFIG_DEBUG_LOCKDEP
71 seq_printf(m, " OPS:%8ld", class->ops);
72#endif
df60a844
SH
73#ifdef CONFIG_PROVE_LOCKING
74 seq_printf(m, " FD:%5ld", lockdep_count_forward_deps(class));
75 seq_printf(m, " BD:%5ld", lockdep_count_backward_deps(class));
76#endif
a8f24a39 77
f510b233
PZ
78 get_usage_chars(class, usage);
79 seq_printf(m, " %s", usage);
a8f24a39 80
068135e6
JB
81 seq_printf(m, ": ");
82 print_name(m, class);
83 seq_puts(m, "\n");
84
85 list_for_each_entry(entry, &class->locks_after, entry) {
86 if (entry->distance == 1) {
2429e4ee 87 seq_printf(m, " -> [%p] ", entry->class->key);
068135e6
JB
88 print_name(m, entry->class);
89 seq_puts(m, "\n");
90 }
a8f24a39
IM
91 }
92 seq_puts(m, "\n");
93
94 return 0;
95}
96
15ad7cdc 97static const struct seq_operations lockdep_ops = {
a8f24a39
IM
98 .start = l_start,
99 .next = l_next,
100 .stop = l_stop,
101 .show = l_show,
102};
103
104static int lockdep_open(struct inode *inode, struct file *file)
105{
8109e1de 106 return seq_open(file, &lockdep_ops);
a8f24a39
IM
107}
108
15ad7cdc 109static const struct file_operations proc_lockdep_operations = {
a8f24a39
IM
110 .open = lockdep_open,
111 .read = seq_read,
112 .llseek = seq_lseek,
113 .release = seq_release,
114};
115
cd1a28e8 116#ifdef CONFIG_PROVE_LOCKING
443cd507
HY
117static void *lc_start(struct seq_file *m, loff_t *pos)
118{
119 if (*pos == 0)
120 return SEQ_START_TOKEN;
121
e9d65725
LZ
122 if (*pos - 1 < nr_lock_chains)
123 return lock_chains + (*pos - 1);
443cd507
HY
124
125 return NULL;
126}
127
12aac19d
LZ
128static void *lc_next(struct seq_file *m, void *v, loff_t *pos)
129{
130 (*pos)++;
131 return lc_start(m, pos);
132}
133
443cd507
HY
134static void lc_stop(struct seq_file *m, void *v)
135{
136}
137
138static int lc_show(struct seq_file *m, void *v)
139{
140 struct lock_chain *chain = v;
141 struct lock_class *class;
142 int i;
143
144 if (v == SEQ_START_TOKEN) {
75dd602a
PZ
145 if (nr_chain_hlocks > MAX_LOCKDEP_CHAIN_HLOCKS)
146 seq_printf(m, "(buggered) ");
443cd507
HY
147 seq_printf(m, "all lock chains:\n");
148 return 0;
149 }
150
151 seq_printf(m, "irq_context: %d\n", chain->irq_context);
152
153 for (i = 0; i < chain->depth; i++) {
154 class = lock_chain_get_class(chain, i);
8bfe0298
RV
155 if (!class->key)
156 continue;
157
443cd507
HY
158 seq_printf(m, "[%p] ", class->key);
159 print_name(m, class);
160 seq_puts(m, "\n");
161 }
162 seq_puts(m, "\n");
163
164 return 0;
165}
166
167static const struct seq_operations lockdep_chains_ops = {
168 .start = lc_start,
169 .next = lc_next,
170 .stop = lc_stop,
171 .show = lc_show,
172};
173
174static int lockdep_chains_open(struct inode *inode, struct file *file)
175{
12aac19d 176 return seq_open(file, &lockdep_chains_ops);
443cd507
HY
177}
178
179static const struct file_operations proc_lockdep_chains_operations = {
180 .open = lockdep_chains_open,
181 .read = seq_read,
182 .llseek = seq_lseek,
183 .release = seq_release,
184};
cd1a28e8 185#endif /* CONFIG_PROVE_LOCKING */
443cd507 186
a8f24a39
IM
187static void lockdep_stats_debug_show(struct seq_file *m)
188{
189#ifdef CONFIG_DEBUG_LOCKDEP
bd6d29c2
FW
190 unsigned long long hi1 = debug_atomic_read(hardirqs_on_events),
191 hi2 = debug_atomic_read(hardirqs_off_events),
192 hr1 = debug_atomic_read(redundant_hardirqs_on),
193 hr2 = debug_atomic_read(redundant_hardirqs_off),
194 si1 = debug_atomic_read(softirqs_on_events),
195 si2 = debug_atomic_read(softirqs_off_events),
196 sr1 = debug_atomic_read(redundant_softirqs_on),
197 sr2 = debug_atomic_read(redundant_softirqs_off);
198
199 seq_printf(m, " chain lookup misses: %11llu\n",
200 debug_atomic_read(chain_lookup_misses));
201 seq_printf(m, " chain lookup hits: %11llu\n",
202 debug_atomic_read(chain_lookup_hits));
203 seq_printf(m, " cyclic checks: %11llu\n",
204 debug_atomic_read(nr_cyclic_checks));
ae813308
PZ
205 seq_printf(m, " redundant checks: %11llu\n",
206 debug_atomic_read(nr_redundant_checks));
207 seq_printf(m, " redundant links: %11llu\n",
208 debug_atomic_read(nr_redundant));
bd6d29c2
FW
209 seq_printf(m, " find-mask forwards checks: %11llu\n",
210 debug_atomic_read(nr_find_usage_forwards_checks));
211 seq_printf(m, " find-mask backwards checks: %11llu\n",
212 debug_atomic_read(nr_find_usage_backwards_checks));
213
214 seq_printf(m, " hardirq on events: %11llu\n", hi1);
215 seq_printf(m, " hardirq off events: %11llu\n", hi2);
216 seq_printf(m, " redundant hardirq ons: %11llu\n", hr1);
217 seq_printf(m, " redundant hardirq offs: %11llu\n", hr2);
218 seq_printf(m, " softirq on events: %11llu\n", si1);
219 seq_printf(m, " softirq off events: %11llu\n", si2);
220 seq_printf(m, " redundant softirq ons: %11llu\n", sr1);
221 seq_printf(m, " redundant softirq offs: %11llu\n", sr2);
a8f24a39
IM
222#endif
223}
224
225static int lockdep_stats_show(struct seq_file *m, void *v)
226{
227 struct lock_class *class;
228 unsigned long nr_unused = 0, nr_uncategorized = 0,
229 nr_irq_safe = 0, nr_irq_unsafe = 0,
230 nr_softirq_safe = 0, nr_softirq_unsafe = 0,
231 nr_hardirq_safe = 0, nr_hardirq_unsafe = 0,
232 nr_irq_read_safe = 0, nr_irq_read_unsafe = 0,
233 nr_softirq_read_safe = 0, nr_softirq_read_unsafe = 0,
234 nr_hardirq_read_safe = 0, nr_hardirq_read_unsafe = 0,
dec29608 235 sum_forward_deps = 0;
a8f24a39
IM
236
237 list_for_each_entry(class, &all_lock_classes, lock_entry) {
238
239 if (class->usage_mask == 0)
240 nr_unused++;
241 if (class->usage_mask == LOCKF_USED)
242 nr_uncategorized++;
243 if (class->usage_mask & LOCKF_USED_IN_IRQ)
244 nr_irq_safe++;
4fc95e86 245 if (class->usage_mask & LOCKF_ENABLED_IRQ)
a8f24a39
IM
246 nr_irq_unsafe++;
247 if (class->usage_mask & LOCKF_USED_IN_SOFTIRQ)
248 nr_softirq_safe++;
4fc95e86 249 if (class->usage_mask & LOCKF_ENABLED_SOFTIRQ)
a8f24a39
IM
250 nr_softirq_unsafe++;
251 if (class->usage_mask & LOCKF_USED_IN_HARDIRQ)
252 nr_hardirq_safe++;
4fc95e86 253 if (class->usage_mask & LOCKF_ENABLED_HARDIRQ)
a8f24a39
IM
254 nr_hardirq_unsafe++;
255 if (class->usage_mask & LOCKF_USED_IN_IRQ_READ)
256 nr_irq_read_safe++;
4fc95e86 257 if (class->usage_mask & LOCKF_ENABLED_IRQ_READ)
a8f24a39
IM
258 nr_irq_read_unsafe++;
259 if (class->usage_mask & LOCKF_USED_IN_SOFTIRQ_READ)
260 nr_softirq_read_safe++;
4fc95e86 261 if (class->usage_mask & LOCKF_ENABLED_SOFTIRQ_READ)
a8f24a39
IM
262 nr_softirq_read_unsafe++;
263 if (class->usage_mask & LOCKF_USED_IN_HARDIRQ_READ)
264 nr_hardirq_read_safe++;
4fc95e86 265 if (class->usage_mask & LOCKF_ENABLED_HARDIRQ_READ)
a8f24a39
IM
266 nr_hardirq_read_unsafe++;
267
df60a844 268#ifdef CONFIG_PROVE_LOCKING
419ca3f1 269 sum_forward_deps += lockdep_count_forward_deps(class);
df60a844 270#endif
a8f24a39 271 }
501b9ebf 272#ifdef CONFIG_DEBUG_LOCKDEP
bd6d29c2 273 DEBUG_LOCKS_WARN_ON(debug_atomic_read(nr_unused_locks) != nr_unused);
a8f24a39
IM
274#endif
275 seq_printf(m, " lock-classes: %11lu [max: %lu]\n",
276 nr_lock_classes, MAX_LOCKDEP_KEYS);
277 seq_printf(m, " direct dependencies: %11lu [max: %lu]\n",
278 nr_list_entries, MAX_LOCKDEP_ENTRIES);
279 seq_printf(m, " indirect dependencies: %11lu\n",
280 sum_forward_deps);
281
282 /*
283 * Total number of dependencies:
284 *
285 * All irq-safe locks may nest inside irq-unsafe locks,
286 * plus all the other known dependencies:
287 */
288 seq_printf(m, " all direct dependencies: %11lu\n",
289 nr_irq_unsafe * nr_irq_safe +
290 nr_hardirq_unsafe * nr_hardirq_safe +
291 nr_list_entries);
292
8e18257d 293#ifdef CONFIG_PROVE_LOCKING
a8f24a39
IM
294 seq_printf(m, " dependency chains: %11lu [max: %lu]\n",
295 nr_lock_chains, MAX_LOCKDEP_CHAINS);
443cd507 296 seq_printf(m, " dependency chain hlocks: %11d [max: %lu]\n",
cd1a28e8 297 nr_chain_hlocks, MAX_LOCKDEP_CHAIN_HLOCKS);
8e18257d 298#endif
a8f24a39
IM
299
300#ifdef CONFIG_TRACE_IRQFLAGS
301 seq_printf(m, " in-hardirq chains: %11u\n",
302 nr_hardirq_chains);
303 seq_printf(m, " in-softirq chains: %11u\n",
304 nr_softirq_chains);
305#endif
306 seq_printf(m, " in-process chains: %11u\n",
307 nr_process_chains);
308 seq_printf(m, " stack-trace entries: %11lu [max: %lu]\n",
309 nr_stack_trace_entries, MAX_STACK_TRACE_ENTRIES);
310 seq_printf(m, " combined max dependencies: %11u\n",
311 (nr_hardirq_chains + 1) *
312 (nr_softirq_chains + 1) *
313 (nr_process_chains + 1)
314 );
315 seq_printf(m, " hardirq-safe locks: %11lu\n",
316 nr_hardirq_safe);
317 seq_printf(m, " hardirq-unsafe locks: %11lu\n",
318 nr_hardirq_unsafe);
319 seq_printf(m, " softirq-safe locks: %11lu\n",
320 nr_softirq_safe);
321 seq_printf(m, " softirq-unsafe locks: %11lu\n",
322 nr_softirq_unsafe);
323 seq_printf(m, " irq-safe locks: %11lu\n",
324 nr_irq_safe);
325 seq_printf(m, " irq-unsafe locks: %11lu\n",
326 nr_irq_unsafe);
327
328 seq_printf(m, " hardirq-read-safe locks: %11lu\n",
329 nr_hardirq_read_safe);
330 seq_printf(m, " hardirq-read-unsafe locks: %11lu\n",
331 nr_hardirq_read_unsafe);
332 seq_printf(m, " softirq-read-safe locks: %11lu\n",
333 nr_softirq_read_safe);
334 seq_printf(m, " softirq-read-unsafe locks: %11lu\n",
335 nr_softirq_read_unsafe);
336 seq_printf(m, " irq-read-safe locks: %11lu\n",
337 nr_irq_read_safe);
338 seq_printf(m, " irq-read-unsafe locks: %11lu\n",
339 nr_irq_read_unsafe);
340
341 seq_printf(m, " uncategorized locks: %11lu\n",
342 nr_uncategorized);
343 seq_printf(m, " unused locks: %11lu\n",
344 nr_unused);
345 seq_printf(m, " max locking depth: %11u\n",
346 max_lockdep_depth);
bbfa2622 347#ifdef CONFIG_PROVE_LOCKING
12f3dfd0
ML
348 seq_printf(m, " max bfs queue depth: %11u\n",
349 max_bfs_queue_depth);
bbfa2622 350#endif
a8f24a39
IM
351 lockdep_stats_debug_show(m);
352 seq_printf(m, " debug_locks: %11u\n",
353 debug_locks);
354
355 return 0;
356}
357
358static int lockdep_stats_open(struct inode *inode, struct file *file)
359{
360 return single_open(file, lockdep_stats_show, NULL);
361}
362
15ad7cdc 363static const struct file_operations proc_lockdep_stats_operations = {
a8f24a39
IM
364 .open = lockdep_stats_open,
365 .read = seq_read,
366 .llseek = seq_lseek,
c0f33586 367 .release = single_release,
a8f24a39
IM
368};
369
c46261de
PZ
370#ifdef CONFIG_LOCK_STAT
371
372struct lock_stat_data {
373 struct lock_class *class;
374 struct lock_class_stats stats;
375};
376
377struct lock_stat_seq {
c46261de
PZ
378 struct lock_stat_data *iter_end;
379 struct lock_stat_data stats[MAX_LOCKDEP_KEYS];
380};
381
382/*
383 * sort on absolute number of contentions
384 */
385static int lock_stat_cmp(const void *l, const void *r)
386{
387 const struct lock_stat_data *dl = l, *dr = r;
388 unsigned long nl, nr;
389
390 nl = dl->stats.read_waittime.nr + dl->stats.write_waittime.nr;
391 nr = dr->stats.read_waittime.nr + dr->stats.write_waittime.nr;
392
393 return nr - nl;
394}
395
396static void seq_line(struct seq_file *m, char c, int offset, int length)
397{
398 int i;
399
400 for (i = 0; i < offset; i++)
401 seq_puts(m, " ");
402 for (i = 0; i < length; i++)
403 seq_printf(m, "%c", c);
404 seq_puts(m, "\n");
405}
406
407static void snprint_time(char *buf, size_t bufsiz, s64 nr)
408{
6918bc5c
PZ
409 s64 div;
410 s32 rem;
c46261de 411
2189459d 412 nr += 5; /* for display rounding */
6918bc5c
PZ
413 div = div_s64_rem(nr, 1000, &rem);
414 snprintf(buf, bufsiz, "%lld.%02d", (long long)div, (int)rem/10);
c46261de
PZ
415}
416
417static void seq_time(struct seq_file *m, s64 time)
418{
419 char num[15];
420
421 snprint_time(num, sizeof(num), time);
422 seq_printf(m, " %14s", num);
423}
424
425static void seq_lock_time(struct seq_file *m, struct lock_time *lt)
426{
427 seq_printf(m, "%14lu", lt->nr);
428 seq_time(m, lt->min);
429 seq_time(m, lt->max);
430 seq_time(m, lt->total);
838cc7b4 431 seq_time(m, lt->nr ? div_s64(lt->total, lt->nr) : 0);
c46261de
PZ
432}
433
434static void seq_stats(struct seq_file *m, struct lock_stat_data *data)
435{
cee34d88 436 struct lockdep_subclass_key *ckey;
c46261de 437 struct lock_class_stats *stats;
cee34d88
PZ
438 struct lock_class *class;
439 const char *cname;
c46261de 440 int i, namelen;
cee34d88 441 char name[39];
c46261de
PZ
442
443 class = data->class;
444 stats = &data->stats;
445
d38e1d5a
PZ
446 namelen = 38;
447 if (class->name_version > 1)
448 namelen -= 2; /* XXX truncates versions > 9 */
449 if (class->subclass)
450 namelen -= 2;
451
cee34d88
PZ
452 rcu_read_lock_sched();
453 cname = rcu_dereference_sched(class->name);
454 ckey = rcu_dereference_sched(class->key);
455
456 if (!cname && !ckey) {
457 rcu_read_unlock_sched();
458 return;
459
460 } else if (!cname) {
d38e1d5a
PZ
461 char str[KSYM_NAME_LEN];
462 const char *key_name;
463
cee34d88 464 key_name = __get_key_name(ckey, str);
d38e1d5a
PZ
465 snprintf(name, namelen, "%s", key_name);
466 } else {
cee34d88 467 snprintf(name, namelen, "%s", cname);
d38e1d5a 468 }
cee34d88
PZ
469 rcu_read_unlock_sched();
470
c46261de 471 namelen = strlen(name);
d38e1d5a
PZ
472 if (class->name_version > 1) {
473 snprintf(name+namelen, 3, "#%d", class->name_version);
474 namelen += 2;
475 }
476 if (class->subclass) {
477 snprintf(name+namelen, 3, "/%d", class->subclass);
478 namelen += 2;
479 }
c46261de
PZ
480
481 if (stats->write_holdtime.nr) {
482 if (stats->read_holdtime.nr)
483 seq_printf(m, "%38s-W:", name);
484 else
485 seq_printf(m, "%40s:", name);
486
96645678 487 seq_printf(m, "%14lu ", stats->bounces[bounce_contended_write]);
c46261de 488 seq_lock_time(m, &stats->write_waittime);
96645678 489 seq_printf(m, " %14lu ", stats->bounces[bounce_acquired_write]);
c46261de
PZ
490 seq_lock_time(m, &stats->write_holdtime);
491 seq_puts(m, "\n");
492 }
493
494 if (stats->read_holdtime.nr) {
495 seq_printf(m, "%38s-R:", name);
96645678 496 seq_printf(m, "%14lu ", stats->bounces[bounce_contended_read]);
c46261de 497 seq_lock_time(m, &stats->read_waittime);
96645678 498 seq_printf(m, " %14lu ", stats->bounces[bounce_acquired_read]);
c46261de
PZ
499 seq_lock_time(m, &stats->read_holdtime);
500 seq_puts(m, "\n");
501 }
502
503 if (stats->read_waittime.nr + stats->write_waittime.nr == 0)
504 return;
505
506 if (stats->read_holdtime.nr)
507 namelen += 2;
508
c7e78cff 509 for (i = 0; i < LOCKSTAT_POINTS; i++) {
c46261de
PZ
510 char ip[32];
511
512 if (class->contention_point[i] == 0)
513 break;
514
515 if (!i)
516 seq_line(m, '-', 40-namelen, namelen);
517
c46261de
PZ
518 snprintf(ip, sizeof(ip), "[<%p>]",
519 (void *)class->contention_point[i]);
3cf9b85b
JP
520 seq_printf(m, "%40s %14lu %29s %pS\n",
521 name, stats->contention_point[i],
522 ip, (void *)class->contention_point[i]);
c46261de 523 }
c7e78cff 524 for (i = 0; i < LOCKSTAT_POINTS; i++) {
c7e78cff
PZ
525 char ip[32];
526
527 if (class->contending_point[i] == 0)
528 break;
529
530 if (!i)
531 seq_line(m, '-', 40-namelen, namelen);
532
c7e78cff
PZ
533 snprintf(ip, sizeof(ip), "[<%p>]",
534 (void *)class->contending_point[i]);
3cf9b85b
JP
535 seq_printf(m, "%40s %14lu %29s %pS\n",
536 name, stats->contending_point[i],
537 ip, (void *)class->contending_point[i]);
c7e78cff 538 }
c46261de
PZ
539 if (i) {
540 seq_puts(m, "\n");
1232e380 541 seq_line(m, '.', 0, 40 + 1 + 12 * (14 + 1));
c46261de
PZ
542 seq_puts(m, "\n");
543 }
544}
545
546static void seq_header(struct seq_file *m)
547{
1232e380 548 seq_puts(m, "lock_stat version 0.4\n");
9833f8cb
PZ
549
550 if (unlikely(!debug_locks))
551 seq_printf(m, "*WARNING* lock debugging disabled!! - possibly due to a lockdep warning\n");
552
1232e380
DB
553 seq_line(m, '-', 0, 40 + 1 + 12 * (14 + 1));
554 seq_printf(m, "%40s %14s %14s %14s %14s %14s %14s %14s %14s %14s %14s "
96645678 555 "%14s %14s\n",
c46261de 556 "class name",
96645678 557 "con-bounces",
c46261de
PZ
558 "contentions",
559 "waittime-min",
560 "waittime-max",
561 "waittime-total",
1232e380 562 "waittime-avg",
96645678 563 "acq-bounces",
c46261de
PZ
564 "acquisitions",
565 "holdtime-min",
566 "holdtime-max",
1232e380
DB
567 "holdtime-total",
568 "holdtime-avg");
569 seq_line(m, '-', 0, 40 + 1 + 12 * (14 + 1));
c46261de
PZ
570 seq_printf(m, "\n");
571}
572
573static void *ls_start(struct seq_file *m, loff_t *pos)
574{
575 struct lock_stat_seq *data = m->private;
96004bb2 576 struct lock_stat_data *iter;
c46261de 577
94c61c0a
TP
578 if (*pos == 0)
579 return SEQ_START_TOKEN;
c46261de 580
96004bb2
LZ
581 iter = data->stats + (*pos - 1);
582 if (iter >= data->iter_end)
583 iter = NULL;
4b32d0a4 584
96004bb2 585 return iter;
c46261de
PZ
586}
587
588static void *ls_next(struct seq_file *m, void *v, loff_t *pos)
589{
c46261de 590 (*pos)++;
96004bb2 591 return ls_start(m, pos);
c46261de
PZ
592}
593
594static void ls_stop(struct seq_file *m, void *v)
595{
596}
597
598static int ls_show(struct seq_file *m, void *v)
599{
94c61c0a
TP
600 if (v == SEQ_START_TOKEN)
601 seq_header(m);
602 else
603 seq_stats(m, v);
c46261de 604
c46261de
PZ
605 return 0;
606}
607
88e9d34c 608static const struct seq_operations lockstat_ops = {
c46261de
PZ
609 .start = ls_start,
610 .next = ls_next,
611 .stop = ls_stop,
612 .show = ls_show,
613};
614
615static int lock_stat_open(struct inode *inode, struct file *file)
616{
617 int res;
618 struct lock_class *class;
619 struct lock_stat_seq *data = vmalloc(sizeof(struct lock_stat_seq));
620
621 if (!data)
622 return -ENOMEM;
623
624 res = seq_open(file, &lockstat_ops);
625 if (!res) {
626 struct lock_stat_data *iter = data->stats;
627 struct seq_file *m = file->private_data;
628
c46261de
PZ
629 list_for_each_entry(class, &all_lock_classes, lock_entry) {
630 iter->class = class;
631 iter->stats = lock_stats(class);
632 iter++;
633 }
634 data->iter_end = iter;
635
96004bb2 636 sort(data->stats, data->iter_end - data->stats,
c46261de
PZ
637 sizeof(struct lock_stat_data),
638 lock_stat_cmp, NULL);
639
640 m->private = data;
641 } else
642 vfree(data);
643
644 return res;
645}
646
647static ssize_t lock_stat_write(struct file *file, const char __user *buf,
648 size_t count, loff_t *ppos)
649{
650 struct lock_class *class;
651 char c;
652
653 if (count) {
654 if (get_user(c, buf))
655 return -EFAULT;
656
657 if (c != '0')
658 return count;
659
660 list_for_each_entry(class, &all_lock_classes, lock_entry)
661 clear_lock_stats(class);
662 }
663 return count;
664}
665
666static int lock_stat_release(struct inode *inode, struct file *file)
667{
668 struct seq_file *seq = file->private_data;
669
670 vfree(seq->private);
c46261de
PZ
671 return seq_release(inode, file);
672}
673
674static const struct file_operations proc_lock_stat_operations = {
675 .open = lock_stat_open,
676 .write = lock_stat_write,
677 .read = seq_read,
678 .llseek = seq_lseek,
679 .release = lock_stat_release,
680};
681#endif /* CONFIG_LOCK_STAT */
682
a8f24a39
IM
683static int __init lockdep_proc_init(void)
684{
c33fff0a 685 proc_create("lockdep", S_IRUSR, NULL, &proc_lockdep_operations);
cd1a28e8 686#ifdef CONFIG_PROVE_LOCKING
443cd507
HY
687 proc_create("lockdep_chains", S_IRUSR, NULL,
688 &proc_lockdep_chains_operations);
cd1a28e8 689#endif
c33fff0a
DL
690 proc_create("lockdep_stats", S_IRUSR, NULL,
691 &proc_lockdep_stats_operations);
a8f24a39 692
c46261de 693#ifdef CONFIG_LOCK_STAT
9795447f
LZ
694 proc_create("lock_stat", S_IRUSR | S_IWUSR, NULL,
695 &proc_lock_stat_operations);
c46261de
PZ
696#endif
697
a8f24a39
IM
698 return 0;
699}
700
701__initcall(lockdep_proc_init);
702