linux/kernel/locking/lockdep.c
<<
>>
Prefs
   1/*
   2 * kernel/lockdep.c
   3 *
   4 * Runtime locking correctness validator
   5 *
   6 * Started by Ingo Molnar:
   7 *
   8 *  Copyright (C) 2006,2007 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
   9 *  Copyright (C) 2007 Red Hat, Inc., Peter Zijlstra
  10 *
  11 * this code maps all the lock dependencies as they occur in a live kernel
  12 * and will warn about the following classes of locking bugs:
  13 *
  14 * - lock inversion scenarios
  15 * - circular lock dependencies
  16 * - hardirq/softirq safe/unsafe locking bugs
  17 *
  18 * Bugs are reported even if the current locking scenario does not cause
  19 * any deadlock at this point.
  20 *
  21 * I.e. if anytime in the past two locks were taken in a different order,
  22 * even if it happened for another task, even if those were different
  23 * locks (but of the same class as this lock), this code will detect it.
  24 *
  25 * Thanks to Arjan van de Ven for coming up with the initial idea of
  26 * mapping lock dependencies runtime.
  27 */
  28#define DISABLE_BRANCH_PROFILING
  29#include <linux/mutex.h>
  30#include <linux/sched.h>
  31#include <linux/sched/clock.h>
  32#include <linux/sched/task.h>
  33#include <linux/sched/mm.h>
  34#include <linux/delay.h>
  35#include <linux/module.h>
  36#include <linux/proc_fs.h>
  37#include <linux/seq_file.h>
  38#include <linux/spinlock.h>
  39#include <linux/kallsyms.h>
  40#include <linux/interrupt.h>
  41#include <linux/stacktrace.h>
  42#include <linux/debug_locks.h>
  43#include <linux/irqflags.h>
  44#include <linux/utsname.h>
  45#include <linux/hash.h>
  46#include <linux/ftrace.h>
  47#include <linux/stringify.h>
  48#include <linux/bitops.h>
  49#include <linux/gfp.h>
  50#include <linux/random.h>
  51#include <linux/jhash.h>
  52#include <linux/nmi.h>
  53
  54#include <asm/sections.h>
  55
  56#include "lockdep_internals.h"
  57
  58#define CREATE_TRACE_POINTS
  59#include <trace/events/lock.h>
  60
  61#ifdef CONFIG_PROVE_LOCKING
  62int prove_locking = 1;
  63module_param(prove_locking, int, 0644);
  64#else
  65#define prove_locking 0
  66#endif
  67
  68#ifdef CONFIG_LOCK_STAT
  69int lock_stat = 1;
  70module_param(lock_stat, int, 0644);
  71#else
  72#define lock_stat 0
  73#endif
  74
  75/*
  76 * lockdep_lock: protects the lockdep graph, the hashes and the
  77 *               class/list/hash allocators.
  78 *
  79 * This is one of the rare exceptions where it's justified
  80 * to use a raw spinlock - we really dont want the spinlock
  81 * code to recurse back into the lockdep code...
  82 */
  83static arch_spinlock_t lockdep_lock = (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
  84
  85static int graph_lock(void)
  86{
  87        arch_spin_lock(&lockdep_lock);
  88        /*
  89         * Make sure that if another CPU detected a bug while
  90         * walking the graph we dont change it (while the other
  91         * CPU is busy printing out stuff with the graph lock
  92         * dropped already)
  93         */
  94        if (!debug_locks) {
  95                arch_spin_unlock(&lockdep_lock);
  96                return 0;
  97        }
  98        /* prevent any recursions within lockdep from causing deadlocks */
  99        current->lockdep_recursion++;
 100        return 1;
 101}
 102
 103static inline int graph_unlock(void)
 104{
 105        if (debug_locks && !arch_spin_is_locked(&lockdep_lock)) {
 106                /*
 107                 * The lockdep graph lock isn't locked while we expect it to
 108                 * be, we're confused now, bye!
 109                 */
 110                return DEBUG_LOCKS_WARN_ON(1);
 111        }
 112
 113        current->lockdep_recursion--;
 114        arch_spin_unlock(&lockdep_lock);
 115        return 0;
 116}
 117
 118/*
 119 * Turn lock debugging off and return with 0 if it was off already,
 120 * and also release the graph lock:
 121 */
 122static inline int debug_locks_off_graph_unlock(void)
 123{
 124        int ret = debug_locks_off();
 125
 126        arch_spin_unlock(&lockdep_lock);
 127
 128        return ret;
 129}
 130
 131unsigned long nr_list_entries;
 132static struct lock_list list_entries[MAX_LOCKDEP_ENTRIES];
 133
 134/*
 135 * All data structures here are protected by the global debug_lock.
 136 *
 137 * Mutex key structs only get allocated, once during bootup, and never
 138 * get freed - this significantly simplifies the debugging code.
 139 */
 140unsigned long nr_lock_classes;
 141static struct lock_class lock_classes[MAX_LOCKDEP_KEYS];
 142
 143static inline struct lock_class *hlock_class(struct held_lock *hlock)
 144{
 145        if (!hlock->class_idx) {
 146                /*
 147                 * Someone passed in garbage, we give up.
 148                 */
 149                DEBUG_LOCKS_WARN_ON(1);
 150                return NULL;
 151        }
 152        return lock_classes + hlock->class_idx - 1;
 153}
 154
 155#ifdef CONFIG_LOCK_STAT
 156static DEFINE_PER_CPU(struct lock_class_stats[MAX_LOCKDEP_KEYS], cpu_lock_stats);
 157
 158static inline u64 lockstat_clock(void)
 159{
 160        return local_clock();
 161}
 162
 163static int lock_point(unsigned long points[], unsigned long ip)
 164{
 165        int i;
 166
 167        for (i = 0; i < LOCKSTAT_POINTS; i++) {
 168                if (points[i] == 0) {
 169                        points[i] = ip;
 170                        break;
 171                }
 172                if (points[i] == ip)
 173                        break;
 174        }
 175
 176        return i;
 177}
 178
 179static void lock_time_inc(struct lock_time *lt, u64 time)
 180{
 181        if (time > lt->max)
 182                lt->max = time;
 183
 184        if (time < lt->min || !lt->nr)
 185                lt->min = time;
 186
 187        lt->total += time;
 188        lt->nr++;
 189}
 190
 191static inline void lock_time_add(struct lock_time *src, struct lock_time *dst)
 192{
 193        if (!src->nr)
 194                return;
 195
 196        if (src->max > dst->max)
 197                dst->max = src->max;
 198
 199        if (src->min < dst->min || !dst->nr)
 200                dst->min = src->min;
 201
 202        dst->total += src->total;
 203        dst->nr += src->nr;
 204}
 205
 206struct lock_class_stats lock_stats(struct lock_class *class)
 207{
 208        struct lock_class_stats stats;
 209        int cpu, i;
 210
 211        memset(&stats, 0, sizeof(struct lock_class_stats));
 212        for_each_possible_cpu(cpu) {
 213                struct lock_class_stats *pcs =
 214                        &per_cpu(cpu_lock_stats, cpu)[class - lock_classes];
 215
 216                for (i = 0; i < ARRAY_SIZE(stats.contention_point); i++)
 217                        stats.contention_point[i] += pcs->contention_point[i];
 218
 219                for (i = 0; i < ARRAY_SIZE(stats.contending_point); i++)
 220                        stats.contending_point[i] += pcs->contending_point[i];
 221
 222                lock_time_add(&pcs->read_waittime, &stats.read_waittime);
 223                lock_time_add(&pcs->write_waittime, &stats.write_waittime);
 224
 225                lock_time_add(&pcs->read_holdtime, &stats.read_holdtime);
 226                lock_time_add(&pcs->write_holdtime, &stats.write_holdtime);
 227
 228                for (i = 0; i < ARRAY_SIZE(stats.bounces); i++)
 229                        stats.bounces[i] += pcs->bounces[i];
 230        }
 231
 232        return stats;
 233}
 234
 235void clear_lock_stats(struct lock_class *class)
 236{
 237        int cpu;
 238
 239        for_each_possible_cpu(cpu) {
 240                struct lock_class_stats *cpu_stats =
 241                        &per_cpu(cpu_lock_stats, cpu)[class - lock_classes];
 242
 243                memset(cpu_stats, 0, sizeof(struct lock_class_stats));
 244        }
 245        memset(class->contention_point, 0, sizeof(class->contention_point));
 246        memset(class->contending_point, 0, sizeof(class->contending_point));
 247}
 248
 249static struct lock_class_stats *get_lock_stats(struct lock_class *class)
 250{
 251        return &this_cpu_ptr(cpu_lock_stats)[class - lock_classes];
 252}
 253
 254static void lock_release_holdtime(struct held_lock *hlock)
 255{
 256        struct lock_class_stats *stats;
 257        u64 holdtime;
 258
 259        if (!lock_stat)
 260                return;
 261
 262        holdtime = lockstat_clock() - hlock->holdtime_stamp;
 263
 264        stats = get_lock_stats(hlock_class(hlock));
 265        if (hlock->read)
 266                lock_time_inc(&stats->read_holdtime, holdtime);
 267        else
 268                lock_time_inc(&stats->write_holdtime, holdtime);
 269}
 270#else
 271static inline void lock_release_holdtime(struct held_lock *hlock)
 272{
 273}
 274#endif
 275
 276/*
 277 * We keep a global list of all lock classes. The list only grows,
 278 * never shrinks. The list is only accessed with the lockdep
 279 * spinlock lock held.
 280 */
 281LIST_HEAD(all_lock_classes);
 282
 283/*
 284 * The lockdep classes are in a hash-table as well, for fast lookup:
 285 */
 286#define CLASSHASH_BITS          (MAX_LOCKDEP_KEYS_BITS - 1)
 287#define CLASSHASH_SIZE          (1UL << CLASSHASH_BITS)
 288#define __classhashfn(key)      hash_long((unsigned long)key, CLASSHASH_BITS)
 289#define classhashentry(key)     (classhash_table + __classhashfn((key)))
 290
 291static struct hlist_head classhash_table[CLASSHASH_SIZE];
 292
 293/*
 294 * We put the lock dependency chains into a hash-table as well, to cache
 295 * their existence:
 296 */
 297#define CHAINHASH_BITS          (MAX_LOCKDEP_CHAINS_BITS-1)
 298#define CHAINHASH_SIZE          (1UL << CHAINHASH_BITS)
 299#define __chainhashfn(chain)    hash_long(chain, CHAINHASH_BITS)
 300#define chainhashentry(chain)   (chainhash_table + __chainhashfn((chain)))
 301
 302static struct hlist_head chainhash_table[CHAINHASH_SIZE];
 303
 304/*
 305 * The hash key of the lock dependency chains is a hash itself too:
 306 * it's a hash of all locks taken up to that lock, including that lock.
 307 * It's a 64-bit hash, because it's important for the keys to be
 308 * unique.
 309 */
 310static inline u64 iterate_chain_key(u64 key, u32 idx)
 311{
 312        u32 k0 = key, k1 = key >> 32;
 313
 314        __jhash_mix(idx, k0, k1); /* Macro that modifies arguments! */
 315
 316        return k0 | (u64)k1 << 32;
 317}
 318
 319void lockdep_off(void)
 320{
 321        current->lockdep_recursion++;
 322}
 323EXPORT_SYMBOL(lockdep_off);
 324
 325void lockdep_on(void)
 326{
 327        current->lockdep_recursion--;
 328}
 329EXPORT_SYMBOL(lockdep_on);
 330
 331/*
 332 * Debugging switches:
 333 */
 334
 335#define VERBOSE                 0
 336#define VERY_VERBOSE            0
 337
 338#if VERBOSE
 339# define HARDIRQ_VERBOSE        1
 340# define SOFTIRQ_VERBOSE        1
 341#else
 342# define HARDIRQ_VERBOSE        0
 343# define SOFTIRQ_VERBOSE        0
 344#endif
 345
 346#if VERBOSE || HARDIRQ_VERBOSE || SOFTIRQ_VERBOSE
 347/*
 348 * Quick filtering for interesting events:
 349 */
 350static int class_filter(struct lock_class *class)
 351{
 352#if 0
 353        /* Example */
 354        if (class->name_version == 1 &&
 355                        !strcmp(class->name, "lockname"))
 356                return 1;
 357        if (class->name_version == 1 &&
 358                        !strcmp(class->name, "&struct->lockfield"))
 359                return 1;
 360#endif
 361        /* Filter everything else. 1 would be to allow everything else */
 362        return 0;
 363}
 364#endif
 365
 366static int verbose(struct lock_class *class)
 367{
 368#if VERBOSE
 369        return class_filter(class);
 370#endif
 371        return 0;
 372}
 373
 374/*
 375 * Stack-trace: tightly packed array of stack backtrace
 376 * addresses. Protected by the graph_lock.
 377 */
 378unsigned long nr_stack_trace_entries;
 379static unsigned long stack_trace[MAX_STACK_TRACE_ENTRIES];
 380
 381static void print_lockdep_off(const char *bug_msg)
 382{
 383        printk(KERN_DEBUG "%s\n", bug_msg);
 384        printk(KERN_DEBUG "turning off the locking correctness validator.\n");
 385#ifdef CONFIG_LOCK_STAT
 386        printk(KERN_DEBUG "Please attach the output of /proc/lock_stat to the bug report\n");
 387#endif
 388}
 389
 390static int save_trace(struct stack_trace *trace)
 391{
 392        trace->nr_entries = 0;
 393        trace->max_entries = MAX_STACK_TRACE_ENTRIES - nr_stack_trace_entries;
 394        trace->entries = stack_trace + nr_stack_trace_entries;
 395
 396        trace->skip = 3;
 397
 398        save_stack_trace(trace);
 399
 400        /*
 401         * Some daft arches put -1 at the end to indicate its a full trace.
 402         *
 403         * <rant> this is buggy anyway, since it takes a whole extra entry so a
 404         * complete trace that maxes out the entries provided will be reported
 405         * as incomplete, friggin useless </rant>
 406         */
 407        if (trace->nr_entries != 0 &&
 408            trace->entries[trace->nr_entries-1] == ULONG_MAX)
 409                trace->nr_entries--;
 410
 411        trace->max_entries = trace->nr_entries;
 412
 413        nr_stack_trace_entries += trace->nr_entries;
 414
 415        if (nr_stack_trace_entries >= MAX_STACK_TRACE_ENTRIES-1) {
 416                if (!debug_locks_off_graph_unlock())
 417                        return 0;
 418
 419                print_lockdep_off("BUG: MAX_STACK_TRACE_ENTRIES too low!");
 420                dump_stack();
 421
 422                return 0;
 423        }
 424
 425        return 1;
 426}
 427
 428unsigned int nr_hardirq_chains;
 429unsigned int nr_softirq_chains;
 430unsigned int nr_process_chains;
 431unsigned int max_lockdep_depth;
 432
 433#ifdef CONFIG_DEBUG_LOCKDEP
 434/*
 435 * Various lockdep statistics:
 436 */
 437DEFINE_PER_CPU(struct lockdep_stats, lockdep_stats);
 438#endif
 439
 440/*
 441 * Locking printouts:
 442 */
 443
 444#define __USAGE(__STATE)                                                \
 445        [LOCK_USED_IN_##__STATE] = "IN-"__stringify(__STATE)"-W",       \
 446        [LOCK_ENABLED_##__STATE] = __stringify(__STATE)"-ON-W",         \
 447        [LOCK_USED_IN_##__STATE##_READ] = "IN-"__stringify(__STATE)"-R",\
 448        [LOCK_ENABLED_##__STATE##_READ] = __stringify(__STATE)"-ON-R",
 449
 450static const char *usage_str[] =
 451{
 452#define LOCKDEP_STATE(__STATE) __USAGE(__STATE)
 453#include "lockdep_states.h"
 454#undef LOCKDEP_STATE
 455        [LOCK_USED] = "INITIAL USE",
 456};
 457
 458const char * __get_key_name(struct lockdep_subclass_key *key, char *str)
 459{
 460        return kallsyms_lookup((unsigned long)key, NULL, NULL, NULL, str);
 461}
 462
 463static inline unsigned long lock_flag(enum lock_usage_bit bit)
 464{
 465        return 1UL << bit;
 466}
 467
 468static char get_usage_char(struct lock_class *class, enum lock_usage_bit bit)
 469{
 470        char c = '.';
 471
 472        if (class->usage_mask & lock_flag(bit + 2))
 473                c = '+';
 474        if (class->usage_mask & lock_flag(bit)) {
 475                c = '-';
 476                if (class->usage_mask & lock_flag(bit + 2))
 477                        c = '?';
 478        }
 479
 480        return c;
 481}
 482
 483void get_usage_chars(struct lock_class *class, char usage[LOCK_USAGE_CHARS])
 484{
 485        int i = 0;
 486
 487#define LOCKDEP_STATE(__STATE)                                          \
 488        usage[i++] = get_usage_char(class, LOCK_USED_IN_##__STATE);     \
 489        usage[i++] = get_usage_char(class, LOCK_USED_IN_##__STATE##_READ);
 490#include "lockdep_states.h"
 491#undef LOCKDEP_STATE
 492
 493        usage[i] = '\0';
 494}
 495
 496static void __print_lock_name(struct lock_class *class)
 497{
 498        char str[KSYM_NAME_LEN];
 499        const char *name;
 500
 501        name = class->name;
 502        if (!name) {
 503                name = __get_key_name(class->key, str);
 504                printk(KERN_CONT "%s", name);
 505        } else {
 506                printk(KERN_CONT "%s", name);
 507                if (class->name_version > 1)
 508                        printk(KERN_CONT "#%d", class->name_version);
 509                if (class->subclass)
 510                        printk(KERN_CONT "/%d", class->subclass);
 511        }
 512}
 513
 514static void print_lock_name(struct lock_class *class)
 515{
 516        char usage[LOCK_USAGE_CHARS];
 517
 518        get_usage_chars(class, usage);
 519
 520        printk(KERN_CONT " (");
 521        __print_lock_name(class);
 522        printk(KERN_CONT "){%s}", usage);
 523}
 524
 525static void print_lockdep_cache(struct lockdep_map *lock)
 526{
 527        const char *name;
 528        char str[KSYM_NAME_LEN];
 529
 530        name = lock->name;
 531        if (!name)
 532                name = __get_key_name(lock->key->subkeys, str);
 533
 534        printk(KERN_CONT "%s", name);
 535}
 536
 537static void print_lock(struct held_lock *hlock)
 538{
 539        /*
 540         * We can be called locklessly through debug_show_all_locks() so be
 541         * extra careful, the hlock might have been released and cleared.
 542         */
 543        unsigned int class_idx = hlock->class_idx;
 544
 545        /* Don't re-read hlock->class_idx, can't use READ_ONCE() on bitfields: */
 546        barrier();
 547
 548        if (!class_idx || (class_idx - 1) >= MAX_LOCKDEP_KEYS) {
 549                printk(KERN_CONT "<RELEASED>\n");
 550                return;
 551        }
 552
 553        printk(KERN_CONT "%p", hlock->instance);
 554        print_lock_name(lock_classes + class_idx - 1);
 555        printk(KERN_CONT ", at: %pS\n", (void *)hlock->acquire_ip);
 556}
 557
 558static void lockdep_print_held_locks(struct task_struct *p)
 559{
 560        int i, depth = READ_ONCE(p->lockdep_depth);
 561
 562        if (!depth)
 563                printk("no locks held by %s/%d.\n", p->comm, task_pid_nr(p));
 564        else
 565                printk("%d lock%s held by %s/%d:\n", depth,
 566                       depth > 1 ? "s" : "", p->comm, task_pid_nr(p));
 567        /*
 568         * It's not reliable to print a task's held locks if it's not sleeping
 569         * and it's not the current task.
 570         */
 571        if (p->state == TASK_RUNNING && p != current)
 572                return;
 573        for (i = 0; i < depth; i++) {
 574                printk(" #%d: ", i);
 575                print_lock(p->held_locks + i);
 576        }
 577}
 578
 579static void print_kernel_ident(void)
 580{
 581        printk("%s %.*s %s\n", init_utsname()->release,
 582                (int)strcspn(init_utsname()->version, " "),
 583                init_utsname()->version,
 584                print_tainted());
 585}
 586
 587static int very_verbose(struct lock_class *class)
 588{
 589#if VERY_VERBOSE
 590        return class_filter(class);
 591#endif
 592        return 0;
 593}
 594
 595/*
 596 * Is this the address of a static object:
 597 */
 598#ifdef __KERNEL__
 599static int static_obj(void *obj)
 600{
 601        unsigned long start = (unsigned long) &_stext,
 602                      end   = (unsigned long) &_end,
 603                      addr  = (unsigned long) obj;
 604
 605        /*
 606         * static variable?
 607         */
 608        if ((addr >= start) && (addr < end))
 609                return 1;
 610
 611        if (arch_is_kernel_data(addr))
 612                return 1;
 613
 614        /*
 615         * in-kernel percpu var?
 616         */
 617        if (is_kernel_percpu_address(addr))
 618                return 1;
 619
 620        /*
 621         * module static or percpu var?
 622         */
 623        return is_module_address(addr) || is_module_percpu_address(addr);
 624}
 625#endif
 626
 627/*
 628 * To make lock name printouts unique, we calculate a unique
 629 * class->name_version generation counter:
 630 */
 631static int count_matching_names(struct lock_class *new_class)
 632{
 633        struct lock_class *class;
 634        int count = 0;
 635
 636        if (!new_class->name)
 637                return 0;
 638
 639        list_for_each_entry_rcu(class, &all_lock_classes, lock_entry) {
 640                if (new_class->key - new_class->subclass == class->key)
 641                        return class->name_version;
 642                if (class->name && !strcmp(class->name, new_class->name))
 643                        count = max(count, class->name_version);
 644        }
 645
 646        return count + 1;
 647}
 648
 649static inline struct lock_class *
 650look_up_lock_class(const struct lockdep_map *lock, unsigned int subclass)
 651{
 652        struct lockdep_subclass_key *key;
 653        struct hlist_head *hash_head;
 654        struct lock_class *class;
 655
 656        if (unlikely(subclass >= MAX_LOCKDEP_SUBCLASSES)) {
 657                debug_locks_off();
 658                printk(KERN_ERR
 659                        "BUG: looking up invalid subclass: %u\n", subclass);
 660                printk(KERN_ERR
 661                        "turning off the locking correctness validator.\n");
 662                dump_stack();
 663                return NULL;
 664        }
 665
 666        /*
 667         * If it is not initialised then it has never been locked,
 668         * so it won't be present in the hash table.
 669         */
 670        if (unlikely(!lock->key))
 671                return NULL;
 672
 673        /*
 674         * NOTE: the class-key must be unique. For dynamic locks, a static
 675         * lock_class_key variable is passed in through the mutex_init()
 676         * (or spin_lock_init()) call - which acts as the key. For static
 677         * locks we use the lock object itself as the key.
 678         */
 679        BUILD_BUG_ON(sizeof(struct lock_class_key) >
 680                        sizeof(struct lockdep_map));
 681
 682        key = lock->key->subkeys + subclass;
 683
 684        hash_head = classhashentry(key);
 685
 686        /*
 687         * We do an RCU walk of the hash, see lockdep_free_key_range().
 688         */
 689        if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
 690                return NULL;
 691
 692        hlist_for_each_entry_rcu(class, hash_head, hash_entry) {
 693                if (class->key == key) {
 694                        /*
 695                         * Huh! same key, different name? Did someone trample
 696                         * on some memory? We're most confused.
 697                         */
 698                        WARN_ON_ONCE(class->name != lock->name);
 699                        return class;
 700                }
 701        }
 702
 703        return NULL;
 704}
 705
 706/*
 707 * Static locks do not have their class-keys yet - for them the key is
 708 * the lock object itself. If the lock is in the per cpu area, the
 709 * canonical address of the lock (per cpu offset removed) is used.
 710 */
 711static bool assign_lock_key(struct lockdep_map *lock)
 712{
 713        unsigned long can_addr, addr = (unsigned long)lock;
 714
 715        if (__is_kernel_percpu_address(addr, &can_addr))
 716                lock->key = (void *)can_addr;
 717        else if (__is_module_percpu_address(addr, &can_addr))
 718                lock->key = (void *)can_addr;
 719        else if (static_obj(lock))
 720                lock->key = (void *)lock;
 721        else {
 722                /* Debug-check: all keys must be persistent! */
 723                debug_locks_off();
 724                pr_err("INFO: trying to register non-static key.\n");
 725                pr_err("the code is fine but needs lockdep annotation.\n");
 726                pr_err("turning off the locking correctness validator.\n");
 727                dump_stack();
 728                return false;
 729        }
 730
 731        return true;
 732}
 733
 734/*
 735 * Register a lock's class in the hash-table, if the class is not present
 736 * yet. Otherwise we look it up. We cache the result in the lock object
 737 * itself, so actual lookup of the hash should be once per lock object.
 738 */
 739static struct lock_class *
 740register_lock_class(struct lockdep_map *lock, unsigned int subclass, int force)
 741{
 742        struct lockdep_subclass_key *key;
 743        struct hlist_head *hash_head;
 744        struct lock_class *class;
 745
 746        DEBUG_LOCKS_WARN_ON(!irqs_disabled());
 747
 748        class = look_up_lock_class(lock, subclass);
 749        if (likely(class))
 750                goto out_set_class_cache;
 751
 752        if (!lock->key) {
 753                if (!assign_lock_key(lock))
 754                        return NULL;
 755        } else if (!static_obj(lock->key)) {
 756                return NULL;
 757        }
 758
 759        key = lock->key->subkeys + subclass;
 760        hash_head = classhashentry(key);
 761
 762        if (!graph_lock()) {
 763                return NULL;
 764        }
 765        /*
 766         * We have to do the hash-walk again, to avoid races
 767         * with another CPU:
 768         */
 769        hlist_for_each_entry_rcu(class, hash_head, hash_entry) {
 770                if (class->key == key)
 771                        goto out_unlock_set;
 772        }
 773
 774        /*
 775         * Allocate a new key from the static array, and add it to
 776         * the hash:
 777         */
 778        if (nr_lock_classes >= MAX_LOCKDEP_KEYS) {
 779                if (!debug_locks_off_graph_unlock()) {
 780                        return NULL;
 781                }
 782
 783                print_lockdep_off("BUG: MAX_LOCKDEP_KEYS too low!");
 784                dump_stack();
 785                return NULL;
 786        }
 787        class = lock_classes + nr_lock_classes++;
 788        debug_atomic_inc(nr_unused_locks);
 789        class->key = key;
 790        class->name = lock->name;
 791        class->subclass = subclass;
 792        INIT_LIST_HEAD(&class->lock_entry);
 793        INIT_LIST_HEAD(&class->locks_before);
 794        INIT_LIST_HEAD(&class->locks_after);
 795        class->name_version = count_matching_names(class);
 796        /*
 797         * We use RCU's safe list-add method to make
 798         * parallel walking of the hash-list safe:
 799         */
 800        hlist_add_head_rcu(&class->hash_entry, hash_head);
 801        /*
 802         * Add it to the global list of classes:
 803         */
 804        list_add_tail_rcu(&class->lock_entry, &all_lock_classes);
 805
 806        if (verbose(class)) {
 807                graph_unlock();
 808
 809                printk("\nnew class %px: %s", class->key, class->name);
 810                if (class->name_version > 1)
 811                        printk(KERN_CONT "#%d", class->name_version);
 812                printk(KERN_CONT "\n");
 813                dump_stack();
 814
 815                if (!graph_lock()) {
 816                        return NULL;
 817                }
 818        }
 819out_unlock_set:
 820        graph_unlock();
 821
 822out_set_class_cache:
 823        if (!subclass || force)
 824                lock->class_cache[0] = class;
 825        else if (subclass < NR_LOCKDEP_CACHING_CLASSES)
 826                lock->class_cache[subclass] = class;
 827
 828        /*
 829         * Hash collision, did we smoke some? We found a class with a matching
 830         * hash but the subclass -- which is hashed in -- didn't match.
 831         */
 832        if (DEBUG_LOCKS_WARN_ON(class->subclass != subclass))
 833                return NULL;
 834
 835        return class;
 836}
 837
 838#ifdef CONFIG_PROVE_LOCKING
 839/*
 840 * Allocate a lockdep entry. (assumes the graph_lock held, returns
 841 * with NULL on failure)
 842 */
 843static struct lock_list *alloc_list_entry(void)
 844{
 845        if (nr_list_entries >= MAX_LOCKDEP_ENTRIES) {
 846                if (!debug_locks_off_graph_unlock())
 847                        return NULL;
 848
 849                print_lockdep_off("BUG: MAX_LOCKDEP_ENTRIES too low!");
 850                dump_stack();
 851                return NULL;
 852        }
 853        return list_entries + nr_list_entries++;
 854}
 855
 856/*
 857 * Add a new dependency to the head of the list:
 858 */
 859static int add_lock_to_list(struct lock_class *this, struct list_head *head,
 860                            unsigned long ip, int distance,
 861                            struct stack_trace *trace)
 862{
 863        struct lock_list *entry;
 864        /*
 865         * Lock not present yet - get a new dependency struct and
 866         * add it to the list:
 867         */
 868        entry = alloc_list_entry();
 869        if (!entry)
 870                return 0;
 871
 872        entry->class = this;
 873        entry->distance = distance;
 874        entry->trace = *trace;
 875        /*
 876         * Both allocation and removal are done under the graph lock; but
 877         * iteration is under RCU-sched; see look_up_lock_class() and
 878         * lockdep_free_key_range().
 879         */
 880        list_add_tail_rcu(&entry->entry, head);
 881
 882        return 1;
 883}
 884
 885/*
 886 * For good efficiency of modular, we use power of 2
 887 */
 888#define MAX_CIRCULAR_QUEUE_SIZE         4096UL
 889#define CQ_MASK                         (MAX_CIRCULAR_QUEUE_SIZE-1)
 890
 891/*
 892 * The circular_queue and helpers is used to implement the
 893 * breadth-first search(BFS)algorithem, by which we can build
 894 * the shortest path from the next lock to be acquired to the
 895 * previous held lock if there is a circular between them.
 896 */
 897struct circular_queue {
 898        unsigned long element[MAX_CIRCULAR_QUEUE_SIZE];
 899        unsigned int  front, rear;
 900};
 901
 902static struct circular_queue lock_cq;
 903
 904unsigned int max_bfs_queue_depth;
 905
 906static unsigned int lockdep_dependency_gen_id;
 907
 908static inline void __cq_init(struct circular_queue *cq)
 909{
 910        cq->front = cq->rear = 0;
 911        lockdep_dependency_gen_id++;
 912}
 913
 914static inline int __cq_empty(struct circular_queue *cq)
 915{
 916        return (cq->front == cq->rear);
 917}
 918
 919static inline int __cq_full(struct circular_queue *cq)
 920{
 921        return ((cq->rear + 1) & CQ_MASK) == cq->front;
 922}
 923
 924static inline int __cq_enqueue(struct circular_queue *cq, unsigned long elem)
 925{
 926        if (__cq_full(cq))
 927                return -1;
 928
 929        cq->element[cq->rear] = elem;
 930        cq->rear = (cq->rear + 1) & CQ_MASK;
 931        return 0;
 932}
 933
 934static inline int __cq_dequeue(struct circular_queue *cq, unsigned long *elem)
 935{
 936        if (__cq_empty(cq))
 937                return -1;
 938
 939        *elem = cq->element[cq->front];
 940        cq->front = (cq->front + 1) & CQ_MASK;
 941        return 0;
 942}
 943
 944static inline unsigned int  __cq_get_elem_count(struct circular_queue *cq)
 945{
 946        return (cq->rear - cq->front) & CQ_MASK;
 947}
 948
 949static inline void mark_lock_accessed(struct lock_list *lock,
 950                                        struct lock_list *parent)
 951{
 952        unsigned long nr;
 953
 954        nr = lock - list_entries;
 955        WARN_ON(nr >= nr_list_entries); /* Out-of-bounds, input fail */
 956        lock->parent = parent;
 957        lock->class->dep_gen_id = lockdep_dependency_gen_id;
 958}
 959
 960static inline unsigned long lock_accessed(struct lock_list *lock)
 961{
 962        unsigned long nr;
 963
 964        nr = lock - list_entries;
 965        WARN_ON(nr >= nr_list_entries); /* Out-of-bounds, input fail */
 966        return lock->class->dep_gen_id == lockdep_dependency_gen_id;
 967}
 968
 969static inline struct lock_list *get_lock_parent(struct lock_list *child)
 970{
 971        return child->parent;
 972}
 973
 974static inline int get_lock_depth(struct lock_list *child)
 975{
 976        int depth = 0;
 977        struct lock_list *parent;
 978
 979        while ((parent = get_lock_parent(child))) {
 980                child = parent;
 981                depth++;
 982        }
 983        return depth;
 984}
 985
 986static int __bfs(struct lock_list *source_entry,
 987                 void *data,
 988                 int (*match)(struct lock_list *entry, void *data),
 989                 struct lock_list **target_entry,
 990                 int forward)
 991{
 992        struct lock_list *entry;
 993        struct list_head *head;
 994        struct circular_queue *cq = &lock_cq;
 995        int ret = 1;
 996
 997        if (match(source_entry, data)) {
 998                *target_entry = source_entry;
 999                ret = 0;
1000                goto exit;
1001        }
1002
1003        if (forward)
1004                head = &source_entry->class->locks_after;
1005        else
1006                head = &source_entry->class->locks_before;
1007
1008        if (list_empty(head))
1009                goto exit;
1010
1011        __cq_init(cq);
1012        __cq_enqueue(cq, (unsigned long)source_entry);
1013
1014        while (!__cq_empty(cq)) {
1015                struct lock_list *lock;
1016
1017                __cq_dequeue(cq, (unsigned long *)&lock);
1018
1019                if (!lock->class) {
1020                        ret = -2;
1021                        goto exit;
1022                }
1023
1024                if (forward)
1025                        head = &lock->class->locks_after;
1026                else
1027                        head = &lock->class->locks_before;
1028
1029                DEBUG_LOCKS_WARN_ON(!irqs_disabled());
1030
1031                list_for_each_entry_rcu(entry, head, entry) {
1032                        if (!lock_accessed(entry)) {
1033                                unsigned int cq_depth;
1034                                mark_lock_accessed(entry, lock);
1035                                if (match(entry, data)) {
1036                                        *target_entry = entry;
1037                                        ret = 0;
1038                                        goto exit;
1039                                }
1040
1041                                if (__cq_enqueue(cq, (unsigned long)entry)) {
1042                                        ret = -1;
1043                                        goto exit;
1044                                }
1045                                cq_depth = __cq_get_elem_count(cq);
1046                                if (max_bfs_queue_depth < cq_depth)
1047                                        max_bfs_queue_depth = cq_depth;
1048                        }
1049                }
1050        }
1051exit:
1052        return ret;
1053}
1054
1055static inline int __bfs_forwards(struct lock_list *src_entry,
1056                        void *data,
1057                        int (*match)(struct lock_list *entry, void *data),
1058                        struct lock_list **target_entry)
1059{
1060        return __bfs(src_entry, data, match, target_entry, 1);
1061
1062}
1063
1064static inline int __bfs_backwards(struct lock_list *src_entry,
1065                        void *data,
1066                        int (*match)(struct lock_list *entry, void *data),
1067                        struct lock_list **target_entry)
1068{
1069        return __bfs(src_entry, data, match, target_entry, 0);
1070
1071}
1072
1073/*
1074 * Recursive, forwards-direction lock-dependency checking, used for
1075 * both noncyclic checking and for hardirq-unsafe/softirq-unsafe
1076 * checking.
1077 */
1078
1079/*
1080 * Print a dependency chain entry (this is only done when a deadlock
1081 * has been detected):
1082 */
1083static noinline int
1084print_circular_bug_entry(struct lock_list *target, int depth)
1085{
1086        if (debug_locks_silent)
1087                return 0;
1088        printk("\n-> #%u", depth);
1089        print_lock_name(target->class);
1090        printk(KERN_CONT ":\n");
1091        print_stack_trace(&target->trace, 6);
1092
1093        return 0;
1094}
1095
1096static void
1097print_circular_lock_scenario(struct held_lock *src,
1098                             struct held_lock *tgt,
1099                             struct lock_list *prt)
1100{
1101        struct lock_class *source = hlock_class(src);
1102        struct lock_class *target = hlock_class(tgt);
1103        struct lock_class *parent = prt->class;
1104
1105        /*
1106         * A direct locking problem where unsafe_class lock is taken
1107         * directly by safe_class lock, then all we need to show
1108         * is the deadlock scenario, as it is obvious that the
1109         * unsafe lock is taken under the safe lock.
1110         *
1111         * But if there is a chain instead, where the safe lock takes
1112         * an intermediate lock (middle_class) where this lock is
1113         * not the same as the safe lock, then the lock chain is
1114         * used to describe the problem. Otherwise we would need
1115         * to show a different CPU case for each link in the chain
1116         * from the safe_class lock to the unsafe_class lock.
1117         */
1118        if (parent != source) {
1119                printk("Chain exists of:\n  ");
1120                __print_lock_name(source);
1121                printk(KERN_CONT " --> ");
1122                __print_lock_name(parent);
1123                printk(KERN_CONT " --> ");
1124                __print_lock_name(target);
1125                printk(KERN_CONT "\n\n");
1126        }
1127
1128        printk(" Possible unsafe locking scenario:\n\n");
1129        printk("       CPU0                    CPU1\n");
1130        printk("       ----                    ----\n");
1131        printk("  lock(");
1132        __print_lock_name(target);
1133        printk(KERN_CONT ");\n");
1134        printk("                               lock(");
1135        __print_lock_name(parent);
1136        printk(KERN_CONT ");\n");
1137        printk("                               lock(");
1138        __print_lock_name(target);
1139        printk(KERN_CONT ");\n");
1140        printk("  lock(");
1141        __print_lock_name(source);
1142        printk(KERN_CONT ");\n");
1143        printk("\n *** DEADLOCK ***\n\n");
1144}
1145
1146/*
1147 * When a circular dependency is detected, print the
1148 * header first:
1149 */
1150static noinline int
1151print_circular_bug_header(struct lock_list *entry, unsigned int depth,
1152                        struct held_lock *check_src,
1153                        struct held_lock *check_tgt)
1154{
1155        struct task_struct *curr = current;
1156
1157        if (debug_locks_silent)
1158                return 0;
1159
1160        pr_warn("\n");
1161        pr_warn("======================================================\n");
1162        pr_warn("WARNING: possible circular locking dependency detected\n");
1163        print_kernel_ident();
1164        pr_warn("------------------------------------------------------\n");
1165        pr_warn("%s/%d is trying to acquire lock:\n",
1166                curr->comm, task_pid_nr(curr));
1167        print_lock(check_src);
1168
1169        pr_warn("\nbut task is already holding lock:\n");
1170
1171        print_lock(check_tgt);
1172        pr_warn("\nwhich lock already depends on the new lock.\n\n");
1173        pr_warn("\nthe existing dependency chain (in reverse order) is:\n");
1174
1175        print_circular_bug_entry(entry, depth);
1176
1177        return 0;
1178}
1179
1180static inline int class_equal(struct lock_list *entry, void *data)
1181{
1182        return entry->class == data;
1183}
1184
1185static noinline int print_circular_bug(struct lock_list *this,
1186                                struct lock_list *target,
1187                                struct held_lock *check_src,
1188                                struct held_lock *check_tgt,
1189                                struct stack_trace *trace)
1190{
1191        struct task_struct *curr = current;
1192        struct lock_list *parent;
1193        struct lock_list *first_parent;
1194        int depth;
1195
1196        if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1197                return 0;
1198
1199        if (!save_trace(&this->trace))
1200                return 0;
1201
1202        depth = get_lock_depth(target);
1203
1204        print_circular_bug_header(target, depth, check_src, check_tgt);
1205
1206        parent = get_lock_parent(target);
1207        first_parent = parent;
1208
1209        while (parent) {
1210                print_circular_bug_entry(parent, --depth);
1211                parent = get_lock_parent(parent);
1212        }
1213
1214        printk("\nother info that might help us debug this:\n\n");
1215        print_circular_lock_scenario(check_src, check_tgt,
1216                                     first_parent);
1217
1218        lockdep_print_held_locks(curr);
1219
1220        printk("\nstack backtrace:\n");
1221        dump_stack();
1222
1223        return 0;
1224}
1225
1226static noinline int print_bfs_bug(int ret)
1227{
1228        if (!debug_locks_off_graph_unlock())
1229                return 0;
1230
1231        /*
1232         * Breadth-first-search failed, graph got corrupted?
1233         */
1234        WARN(1, "lockdep bfs error:%d\n", ret);
1235
1236        return 0;
1237}
1238
1239static int noop_count(struct lock_list *entry, void *data)
1240{
1241        (*(unsigned long *)data)++;
1242        return 0;
1243}
1244
1245static unsigned long __lockdep_count_forward_deps(struct lock_list *this)
1246{
1247        unsigned long  count = 0;
1248        struct lock_list *uninitialized_var(target_entry);
1249
1250        __bfs_forwards(this, (void *)&count, noop_count, &target_entry);
1251
1252        return count;
1253}
1254unsigned long lockdep_count_forward_deps(struct lock_class *class)
1255{
1256        unsigned long ret, flags;
1257        struct lock_list this;
1258
1259        this.parent = NULL;
1260        this.class = class;
1261
1262        raw_local_irq_save(flags);
1263        arch_spin_lock(&lockdep_lock);
1264        ret = __lockdep_count_forward_deps(&this);
1265        arch_spin_unlock(&lockdep_lock);
1266        raw_local_irq_restore(flags);
1267
1268        return ret;
1269}
1270
1271static unsigned long __lockdep_count_backward_deps(struct lock_list *this)
1272{
1273        unsigned long  count = 0;
1274        struct lock_list *uninitialized_var(target_entry);
1275
1276        __bfs_backwards(this, (void *)&count, noop_count, &target_entry);
1277
1278        return count;
1279}
1280
1281unsigned long lockdep_count_backward_deps(struct lock_class *class)
1282{
1283        unsigned long ret, flags;
1284        struct lock_list this;
1285
1286        this.parent = NULL;
1287        this.class = class;
1288
1289        raw_local_irq_save(flags);
1290        arch_spin_lock(&lockdep_lock);
1291        ret = __lockdep_count_backward_deps(&this);
1292        arch_spin_unlock(&lockdep_lock);
1293        raw_local_irq_restore(flags);
1294
1295        return ret;
1296}
1297
1298/*
1299 * Prove that the dependency graph starting at <entry> can not
1300 * lead to <target>. Print an error and return 0 if it does.
1301 */
1302static noinline int
1303check_noncircular(struct lock_list *root, struct lock_class *target,
1304                struct lock_list **target_entry)
1305{
1306        int result;
1307
1308        debug_atomic_inc(nr_cyclic_checks);
1309
1310        result = __bfs_forwards(root, target, class_equal, target_entry);
1311
1312        return result;
1313}
1314
1315static noinline int
1316check_redundant(struct lock_list *root, struct lock_class *target,
1317                struct lock_list **target_entry)
1318{
1319        int result;
1320
1321        debug_atomic_inc(nr_redundant_checks);
1322
1323        result = __bfs_forwards(root, target, class_equal, target_entry);
1324
1325        return result;
1326}
1327
1328#if defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_PROVE_LOCKING)
1329/*
1330 * Forwards and backwards subgraph searching, for the purposes of
1331 * proving that two subgraphs can be connected by a new dependency
1332 * without creating any illegal irq-safe -> irq-unsafe lock dependency.
1333 */
1334
1335static inline int usage_match(struct lock_list *entry, void *bit)
1336{
1337        return entry->class->usage_mask & (1 << (enum lock_usage_bit)bit);
1338}
1339
1340
1341
1342/*
1343 * Find a node in the forwards-direction dependency sub-graph starting
1344 * at @root->class that matches @bit.
1345 *
1346 * Return 0 if such a node exists in the subgraph, and put that node
1347 * into *@target_entry.
1348 *
1349 * Return 1 otherwise and keep *@target_entry unchanged.
1350 * Return <0 on error.
1351 */
1352static int
1353find_usage_forwards(struct lock_list *root, enum lock_usage_bit bit,
1354                        struct lock_list **target_entry)
1355{
1356        int result;
1357
1358        debug_atomic_inc(nr_find_usage_forwards_checks);
1359
1360        result = __bfs_forwards(root, (void *)bit, usage_match, target_entry);
1361
1362        return result;
1363}
1364
1365/*
1366 * Find a node in the backwards-direction dependency sub-graph starting
1367 * at @root->class that matches @bit.
1368 *
1369 * Return 0 if such a node exists in the subgraph, and put that node
1370 * into *@target_entry.
1371 *
1372 * Return 1 otherwise and keep *@target_entry unchanged.
1373 * Return <0 on error.
1374 */
1375static int
1376find_usage_backwards(struct lock_list *root, enum lock_usage_bit bit,
1377                        struct lock_list **target_entry)
1378{
1379        int result;
1380
1381        debug_atomic_inc(nr_find_usage_backwards_checks);
1382
1383        result = __bfs_backwards(root, (void *)bit, usage_match, target_entry);
1384
1385        return result;
1386}
1387
1388static void print_lock_class_header(struct lock_class *class, int depth)
1389{
1390        int bit;
1391
1392        printk("%*s->", depth, "");
1393        print_lock_name(class);
1394        printk(KERN_CONT " ops: %lu", class->ops);
1395        printk(KERN_CONT " {\n");
1396
1397        for (bit = 0; bit < LOCK_USAGE_STATES; bit++) {
1398                if (class->usage_mask & (1 << bit)) {
1399                        int len = depth;
1400
1401                        len += printk("%*s   %s", depth, "", usage_str[bit]);
1402                        len += printk(KERN_CONT " at:\n");
1403                        print_stack_trace(class->usage_traces + bit, len);
1404                }
1405        }
1406        printk("%*s }\n", depth, "");
1407
1408        printk("%*s ... key      at: [<%px>] %pS\n",
1409                depth, "", class->key, class->key);
1410}
1411
1412/*
1413 * printk the shortest lock dependencies from @start to @end in reverse order:
1414 */
1415static void __used
1416print_shortest_lock_dependencies(struct lock_list *leaf,
1417                                struct lock_list *root)
1418{
1419        struct lock_list *entry = leaf;
1420        int depth;
1421
1422        /*compute depth from generated tree by BFS*/
1423        depth = get_lock_depth(leaf);
1424
1425        do {
1426                print_lock_class_header(entry->class, depth);
1427                printk("%*s ... acquired at:\n", depth, "");
1428                print_stack_trace(&entry->trace, 2);
1429                printk("\n");
1430
1431                if (depth == 0 && (entry != root)) {
1432                        printk("lockdep:%s bad path found in chain graph\n", __func__);
1433                        break;
1434                }
1435
1436                entry = get_lock_parent(entry);
1437                depth--;
1438        } while (entry && (depth >= 0));
1439
1440        return;
1441}
1442
1443static void
1444print_irq_lock_scenario(struct lock_list *safe_entry,
1445                        struct lock_list *unsafe_entry,
1446                        struct lock_class *prev_class,
1447                        struct lock_class *next_class)
1448{
1449        struct lock_class *safe_class = safe_entry->class;
1450        struct lock_class *unsafe_class = unsafe_entry->class;
1451        struct lock_class *middle_class = prev_class;
1452
1453        if (middle_class == safe_class)
1454                middle_class = next_class;
1455
1456        /*
1457         * A direct locking problem where unsafe_class lock is taken
1458         * directly by safe_class lock, then all we need to show
1459         * is the deadlock scenario, as it is obvious that the
1460         * unsafe lock is taken under the safe lock.
1461         *
1462         * But if there is a chain instead, where the safe lock takes
1463         * an intermediate lock (middle_class) where this lock is
1464         * not the same as the safe lock, then the lock chain is
1465         * used to describe the problem. Otherwise we would need
1466         * to show a different CPU case for each link in the chain
1467         * from the safe_class lock to the unsafe_class lock.
1468         */
1469        if (middle_class != unsafe_class) {
1470                printk("Chain exists of:\n  ");
1471                __print_lock_name(safe_class);
1472                printk(KERN_CONT " --> ");
1473                __print_lock_name(middle_class);
1474                printk(KERN_CONT " --> ");
1475                __print_lock_name(unsafe_class);
1476                printk(KERN_CONT "\n\n");
1477        }
1478
1479        printk(" Possible interrupt unsafe locking scenario:\n\n");
1480        printk("       CPU0                    CPU1\n");
1481        printk("       ----                    ----\n");
1482        printk("  lock(");
1483        __print_lock_name(unsafe_class);
1484        printk(KERN_CONT ");\n");
1485        printk("                               local_irq_disable();\n");
1486        printk("                               lock(");
1487        __print_lock_name(safe_class);
1488        printk(KERN_CONT ");\n");
1489        printk("                               lock(");
1490        __print_lock_name(middle_class);
1491        printk(KERN_CONT ");\n");
1492        printk("  <Interrupt>\n");
1493        printk("    lock(");
1494        __print_lock_name(safe_class);
1495        printk(KERN_CONT ");\n");
1496        printk("\n *** DEADLOCK ***\n\n");
1497}
1498
1499static int
1500print_bad_irq_dependency(struct task_struct *curr,
1501                         struct lock_list *prev_root,
1502                         struct lock_list *next_root,
1503                         struct lock_list *backwards_entry,
1504                         struct lock_list *forwards_entry,
1505                         struct held_lock *prev,
1506                         struct held_lock *next,
1507                         enum lock_usage_bit bit1,
1508                         enum lock_usage_bit bit2,
1509                         const char *irqclass)
1510{
1511        if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1512                return 0;
1513
1514        pr_warn("\n");
1515        pr_warn("=====================================================\n");
1516        pr_warn("WARNING: %s-safe -> %s-unsafe lock order detected\n",
1517                irqclass, irqclass);
1518        print_kernel_ident();
1519        pr_warn("-----------------------------------------------------\n");
1520        pr_warn("%s/%d [HC%u[%lu]:SC%u[%lu]:HE%u:SE%u] is trying to acquire:\n",
1521                curr->comm, task_pid_nr(curr),
1522                curr->hardirq_context, hardirq_count() >> HARDIRQ_SHIFT,
1523                curr->softirq_context, softirq_count() >> SOFTIRQ_SHIFT,
1524                curr->hardirqs_enabled,
1525                curr->softirqs_enabled);
1526        print_lock(next);
1527
1528        pr_warn("\nand this task is already holding:\n");
1529        print_lock(prev);
1530        pr_warn("which would create a new lock dependency:\n");
1531        print_lock_name(hlock_class(prev));
1532        pr_cont(" ->");
1533        print_lock_name(hlock_class(next));
1534        pr_cont("\n");
1535
1536        pr_warn("\nbut this new dependency connects a %s-irq-safe lock:\n",
1537                irqclass);
1538        print_lock_name(backwards_entry->class);
1539        pr_warn("\n... which became %s-irq-safe at:\n", irqclass);
1540
1541        print_stack_trace(backwards_entry->class->usage_traces + bit1, 1);
1542
1543        pr_warn("\nto a %s-irq-unsafe lock:\n", irqclass);
1544        print_lock_name(forwards_entry->class);
1545        pr_warn("\n... which became %s-irq-unsafe at:\n", irqclass);
1546        pr_warn("...");
1547
1548        print_stack_trace(forwards_entry->class->usage_traces + bit2, 1);
1549
1550        pr_warn("\nother info that might help us debug this:\n\n");
1551        print_irq_lock_scenario(backwards_entry, forwards_entry,
1552                                hlock_class(prev), hlock_class(next));
1553
1554        lockdep_print_held_locks(curr);
1555
1556        pr_warn("\nthe dependencies between %s-irq-safe lock and the holding lock:\n", irqclass);
1557        if (!save_trace(&prev_root->trace))
1558                return 0;
1559        print_shortest_lock_dependencies(backwards_entry, prev_root);
1560
1561        pr_warn("\nthe dependencies between the lock to be acquired");
1562        pr_warn(" and %s-irq-unsafe lock:\n", irqclass);
1563        if (!save_trace(&next_root->trace))
1564                return 0;
1565        print_shortest_lock_dependencies(forwards_entry, next_root);
1566
1567        pr_warn("\nstack backtrace:\n");
1568        dump_stack();
1569
1570        return 0;
1571}
1572
1573static int
1574check_usage(struct task_struct *curr, struct held_lock *prev,
1575            struct held_lock *next, enum lock_usage_bit bit_backwards,
1576            enum lock_usage_bit bit_forwards, const char *irqclass)
1577{
1578        int ret;
1579        struct lock_list this, that;
1580        struct lock_list *uninitialized_var(target_entry);
1581        struct lock_list *uninitialized_var(target_entry1);
1582
1583        this.parent = NULL;
1584
1585        this.class = hlock_class(prev);
1586        ret = find_usage_backwards(&this, bit_backwards, &target_entry);
1587        if (ret < 0)
1588                return print_bfs_bug(ret);
1589        if (ret == 1)
1590                return ret;
1591
1592        that.parent = NULL;
1593        that.class = hlock_class(next);
1594        ret = find_usage_forwards(&that, bit_forwards, &target_entry1);
1595        if (ret < 0)
1596                return print_bfs_bug(ret);
1597        if (ret == 1)
1598                return ret;
1599
1600        return print_bad_irq_dependency(curr, &this, &that,
1601                        target_entry, target_entry1,
1602                        prev, next,
1603                        bit_backwards, bit_forwards, irqclass);
1604}
1605
1606static const char *state_names[] = {
1607#define LOCKDEP_STATE(__STATE) \
1608        __stringify(__STATE),
1609#include "lockdep_states.h"
1610#undef LOCKDEP_STATE
1611};
1612
1613static const char *state_rnames[] = {
1614#define LOCKDEP_STATE(__STATE) \
1615        __stringify(__STATE)"-READ",
1616#include "lockdep_states.h"
1617#undef LOCKDEP_STATE
1618};
1619
1620static inline const char *state_name(enum lock_usage_bit bit)
1621{
1622        return (bit & 1) ? state_rnames[bit >> 2] : state_names[bit >> 2];
1623}
1624
1625static int exclusive_bit(int new_bit)
1626{
1627        /*
1628         * USED_IN
1629         * USED_IN_READ
1630         * ENABLED
1631         * ENABLED_READ
1632         *
1633         * bit 0 - write/read
1634         * bit 1 - used_in/enabled
1635         * bit 2+  state
1636         */
1637
1638        int state = new_bit & ~3;
1639        int dir = new_bit & 2;
1640
1641        /*
1642         * keep state, bit flip the direction and strip read.
1643         */
1644        return state | (dir ^ 2);
1645}
1646
1647static int check_irq_usage(struct task_struct *curr, struct held_lock *prev,
1648                           struct held_lock *next, enum lock_usage_bit bit)
1649{
1650        /*
1651         * Prove that the new dependency does not connect a hardirq-safe
1652         * lock with a hardirq-unsafe lock - to achieve this we search
1653         * the backwards-subgraph starting at <prev>, and the
1654         * forwards-subgraph starting at <next>:
1655         */
1656        if (!check_usage(curr, prev, next, bit,
1657                           exclusive_bit(bit), state_name(bit)))
1658                return 0;
1659
1660        bit++; /* _READ */
1661
1662        /*
1663         * Prove that the new dependency does not connect a hardirq-safe-read
1664         * lock with a hardirq-unsafe lock - to achieve this we search
1665         * the backwards-subgraph starting at <prev>, and the
1666         * forwards-subgraph starting at <next>:
1667         */
1668        if (!check_usage(curr, prev, next, bit,
1669                           exclusive_bit(bit), state_name(bit)))
1670                return 0;
1671
1672        return 1;
1673}
1674
1675static int
1676check_prev_add_irq(struct task_struct *curr, struct held_lock *prev,
1677                struct held_lock *next)
1678{
1679#define LOCKDEP_STATE(__STATE)                                          \
1680        if (!check_irq_usage(curr, prev, next, LOCK_USED_IN_##__STATE)) \
1681                return 0;
1682#include "lockdep_states.h"
1683#undef LOCKDEP_STATE
1684
1685        return 1;
1686}
1687
1688static void inc_chains(void)
1689{
1690        if (current->hardirq_context)
1691                nr_hardirq_chains++;
1692        else {
1693                if (current->softirq_context)
1694                        nr_softirq_chains++;
1695                else
1696                        nr_process_chains++;
1697        }
1698}
1699
1700#else
1701
1702static inline int
1703check_prev_add_irq(struct task_struct *curr, struct held_lock *prev,
1704                struct held_lock *next)
1705{
1706        return 1;
1707}
1708
1709static inline void inc_chains(void)
1710{
1711        nr_process_chains++;
1712}
1713
1714#endif
1715
1716static void
1717print_deadlock_scenario(struct held_lock *nxt,
1718                             struct held_lock *prv)
1719{
1720        struct lock_class *next = hlock_class(nxt);
1721        struct lock_class *prev = hlock_class(prv);
1722
1723        printk(" Possible unsafe locking scenario:\n\n");
1724        printk("       CPU0\n");
1725        printk("       ----\n");
1726        printk("  lock(");
1727        __print_lock_name(prev);
1728        printk(KERN_CONT ");\n");
1729        printk("  lock(");
1730        __print_lock_name(next);
1731        printk(KERN_CONT ");\n");
1732        printk("\n *** DEADLOCK ***\n\n");
1733        printk(" May be due to missing lock nesting notation\n\n");
1734}
1735
1736static int
1737print_deadlock_bug(struct task_struct *curr, struct held_lock *prev,
1738                   struct held_lock *next)
1739{
1740        if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1741                return 0;
1742
1743        pr_warn("\n");
1744        pr_warn("============================================\n");
1745        pr_warn("WARNING: possible recursive locking detected\n");
1746        print_kernel_ident();
1747        pr_warn("--------------------------------------------\n");
1748        pr_warn("%s/%d is trying to acquire lock:\n",
1749                curr->comm, task_pid_nr(curr));
1750        print_lock(next);
1751        pr_warn("\nbut task is already holding lock:\n");
1752        print_lock(prev);
1753
1754        pr_warn("\nother info that might help us debug this:\n");
1755        print_deadlock_scenario(next, prev);
1756        lockdep_print_held_locks(curr);
1757
1758        pr_warn("\nstack backtrace:\n");
1759        dump_stack();
1760
1761        return 0;
1762}
1763
1764/*
1765 * Check whether we are holding such a class already.
1766 *
1767 * (Note that this has to be done separately, because the graph cannot
1768 * detect such classes of deadlocks.)
1769 *
1770 * Returns: 0 on deadlock detected, 1 on OK, 2 on recursive read
1771 */
1772static int
1773check_deadlock(struct task_struct *curr, struct held_lock *next,
1774               struct lockdep_map *next_instance, int read)
1775{
1776        struct held_lock *prev;
1777        struct held_lock *nest = NULL;
1778        int i;
1779
1780        for (i = 0; i < curr->lockdep_depth; i++) {
1781                prev = curr->held_locks + i;
1782
1783                if (prev->instance == next->nest_lock)
1784                        nest = prev;
1785
1786                if (hlock_class(prev) != hlock_class(next))
1787                        continue;
1788
1789                /*
1790                 * Allow read-after-read recursion of the same
1791                 * lock class (i.e. read_lock(lock)+read_lock(lock)):
1792                 */
1793                if ((read == 2) && prev->read)
1794                        return 2;
1795
1796                /*
1797                 * We're holding the nest_lock, which serializes this lock's
1798                 * nesting behaviour.
1799                 */
1800                if (nest)
1801                        return 2;
1802
1803                return print_deadlock_bug(curr, prev, next);
1804        }
1805        return 1;
1806}
1807
1808/*
1809 * There was a chain-cache miss, and we are about to add a new dependency
1810 * to a previous lock. We recursively validate the following rules:
1811 *
1812 *  - would the adding of the <prev> -> <next> dependency create a
1813 *    circular dependency in the graph? [== circular deadlock]
1814 *
1815 *  - does the new prev->next dependency connect any hardirq-safe lock
1816 *    (in the full backwards-subgraph starting at <prev>) with any
1817 *    hardirq-unsafe lock (in the full forwards-subgraph starting at
1818 *    <next>)? [== illegal lock inversion with hardirq contexts]
1819 *
1820 *  - does the new prev->next dependency connect any softirq-safe lock
1821 *    (in the full backwards-subgraph starting at <prev>) with any
1822 *    softirq-unsafe lock (in the full forwards-subgraph starting at
1823 *    <next>)? [== illegal lock inversion with softirq contexts]
1824 *
1825 * any of these scenarios could lead to a deadlock.
1826 *
1827 * Then if all the validations pass, we add the forwards and backwards
1828 * dependency.
1829 */
1830static int
1831check_prev_add(struct task_struct *curr, struct held_lock *prev,
1832               struct held_lock *next, int distance, struct stack_trace *trace,
1833               int (*save)(struct stack_trace *trace))
1834{
1835        struct lock_list *uninitialized_var(target_entry);
1836        struct lock_list *entry;
1837        struct lock_list this;
1838        int ret;
1839
1840        /*
1841         * Prove that the new <prev> -> <next> dependency would not
1842         * create a circular dependency in the graph. (We do this by
1843         * forward-recursing into the graph starting at <next>, and
1844         * checking whether we can reach <prev>.)
1845         *
1846         * We are using global variables to control the recursion, to
1847         * keep the stackframe size of the recursive functions low:
1848         */
1849        this.class = hlock_class(next);
1850        this.parent = NULL;
1851        ret = check_noncircular(&this, hlock_class(prev), &target_entry);
1852        if (unlikely(!ret)) {
1853                if (!trace->entries) {
1854                        /*
1855                         * If @save fails here, the printing might trigger
1856                         * a WARN but because of the !nr_entries it should
1857                         * not do bad things.
1858                         */
1859                        save(trace);
1860                }
1861                return print_circular_bug(&this, target_entry, next, prev, trace);
1862        }
1863        else if (unlikely(ret < 0))
1864                return print_bfs_bug(ret);
1865
1866        if (!check_prev_add_irq(curr, prev, next))
1867                return 0;
1868
1869        /*
1870         * For recursive read-locks we do all the dependency checks,
1871         * but we dont store read-triggered dependencies (only
1872         * write-triggered dependencies). This ensures that only the
1873         * write-side dependencies matter, and that if for example a
1874         * write-lock never takes any other locks, then the reads are
1875         * equivalent to a NOP.
1876         */
1877        if (next->read == 2 || prev->read == 2)
1878                return 1;
1879        /*
1880         * Is the <prev> -> <next> dependency already present?
1881         *
1882         * (this may occur even though this is a new chain: consider
1883         *  e.g. the L1 -> L2 -> L3 -> L4 and the L5 -> L1 -> L2 -> L3
1884         *  chains - the second one will be new, but L1 already has
1885         *  L2 added to its dependency list, due to the first chain.)
1886         */
1887        list_for_each_entry(entry, &hlock_class(prev)->locks_after, entry) {
1888                if (entry->class == hlock_class(next)) {
1889                        if (distance == 1)
1890                                entry->distance = 1;
1891                        return 1;
1892                }
1893        }
1894
1895        /*
1896         * Is the <prev> -> <next> link redundant?
1897         */
1898        this.class = hlock_class(prev);
1899        this.parent = NULL;
1900        ret = check_redundant(&this, hlock_class(next), &target_entry);
1901        if (!ret) {
1902                debug_atomic_inc(nr_redundant);
1903                return 2;
1904        }
1905        if (ret < 0)
1906                return print_bfs_bug(ret);
1907
1908
1909        if (!trace->entries && !save(trace))
1910                return 0;
1911
1912        /*
1913         * Ok, all validations passed, add the new lock
1914         * to the previous lock's dependency list:
1915         */
1916        ret = add_lock_to_list(hlock_class(next),
1917                               &hlock_class(prev)->locks_after,
1918                               next->acquire_ip, distance, trace);
1919
1920        if (!ret)
1921                return 0;
1922
1923        ret = add_lock_to_list(hlock_class(prev),
1924                               &hlock_class(next)->locks_before,
1925                               next->acquire_ip, distance, trace);
1926        if (!ret)
1927                return 0;
1928
1929        return 2;
1930}
1931
1932/*
1933 * Add the dependency to all directly-previous locks that are 'relevant'.
1934 * The ones that are relevant are (in increasing distance from curr):
1935 * all consecutive trylock entries and the final non-trylock entry - or
1936 * the end of this context's lock-chain - whichever comes first.
1937 */
1938static int
1939check_prevs_add(struct task_struct *curr, struct held_lock *next)
1940{
1941        int depth = curr->lockdep_depth;
1942        struct held_lock *hlock;
1943        struct stack_trace trace = {
1944                .nr_entries = 0,
1945                .max_entries = 0,
1946                .entries = NULL,
1947                .skip = 0,
1948        };
1949
1950        /*
1951         * Debugging checks.
1952         *
1953         * Depth must not be zero for a non-head lock:
1954         */
1955        if (!depth)
1956                goto out_bug;
1957        /*
1958         * At least two relevant locks must exist for this
1959         * to be a head:
1960         */
1961        if (curr->held_locks[depth].irq_context !=
1962                        curr->held_locks[depth-1].irq_context)
1963                goto out_bug;
1964
1965        for (;;) {
1966                int distance = curr->lockdep_depth - depth + 1;
1967                hlock = curr->held_locks + depth - 1;
1968
1969                /*
1970                 * Only non-recursive-read entries get new dependencies
1971                 * added:
1972                 */
1973                if (hlock->read != 2 && hlock->check) {
1974                        int ret = check_prev_add(curr, hlock, next, distance, &trace, save_trace);
1975                        if (!ret)
1976                                return 0;
1977
1978                        /*
1979                         * Stop after the first non-trylock entry,
1980                         * as non-trylock entries have added their
1981                         * own direct dependencies already, so this
1982                         * lock is connected to them indirectly:
1983                         */
1984                        if (!hlock->trylock)
1985                                break;
1986                }
1987
1988                depth--;
1989                /*
1990                 * End of lock-stack?
1991                 */
1992                if (!depth)
1993                        break;
1994                /*
1995                 * Stop the search if we cross into another context:
1996                 */
1997                if (curr->held_locks[depth].irq_context !=
1998                                curr->held_locks[depth-1].irq_context)
1999                        break;
2000        }
2001        return 1;
2002out_bug:
2003        if (!debug_locks_off_graph_unlock())
2004                return 0;
2005
2006        /*
2007         * Clearly we all shouldn't be here, but since we made it we
2008         * can reliable say we messed up our state. See the above two
2009         * gotos for reasons why we could possibly end up here.
2010         */
2011        WARN_ON(1);
2012
2013        return 0;
2014}
2015
2016unsigned long nr_lock_chains;
2017struct lock_chain lock_chains[MAX_LOCKDEP_CHAINS];
2018int nr_chain_hlocks;
2019static u16 chain_hlocks[MAX_LOCKDEP_CHAIN_HLOCKS];
2020
2021struct lock_class *lock_chain_get_class(struct lock_chain *chain, int i)
2022{
2023        return lock_classes + chain_hlocks[chain->base + i];
2024}
2025
2026/*
2027 * Returns the index of the first held_lock of the current chain
2028 */
2029static inline int get_first_held_lock(struct task_struct *curr,
2030                                        struct held_lock *hlock)
2031{
2032        int i;
2033        struct held_lock *hlock_curr;
2034
2035        for (i = curr->lockdep_depth - 1; i >= 0; i--) {
2036                hlock_curr = curr->held_locks + i;
2037                if (hlock_curr->irq_context != hlock->irq_context)
2038                        break;
2039
2040        }
2041
2042        return ++i;
2043}
2044
2045#ifdef CONFIG_DEBUG_LOCKDEP
2046/*
2047 * Returns the next chain_key iteration
2048 */
2049static u64 print_chain_key_iteration(int class_idx, u64 chain_key)
2050{
2051        u64 new_chain_key = iterate_chain_key(chain_key, class_idx);
2052
2053        printk(" class_idx:%d -> chain_key:%016Lx",
2054                class_idx,
2055                (unsigned long long)new_chain_key);
2056        return new_chain_key;
2057}
2058
2059static void
2060print_chain_keys_held_locks(struct task_struct *curr, struct held_lock *hlock_next)
2061{
2062        struct held_lock *hlock;
2063        u64 chain_key = 0;
2064        int depth = curr->lockdep_depth;
2065        int i;
2066
2067        printk("depth: %u\n", depth + 1);
2068        for (i = get_first_held_lock(curr, hlock_next); i < depth; i++) {
2069                hlock = curr->held_locks + i;
2070                chain_key = print_chain_key_iteration(hlock->class_idx, chain_key);
2071
2072                print_lock(hlock);
2073        }
2074
2075        print_chain_key_iteration(hlock_next->class_idx, chain_key);
2076        print_lock(hlock_next);
2077}
2078
2079static void print_chain_keys_chain(struct lock_chain *chain)
2080{
2081        int i;
2082        u64 chain_key = 0;
2083        int class_id;
2084
2085        printk("depth: %u\n", chain->depth);
2086        for (i = 0; i < chain->depth; i++) {
2087                class_id = chain_hlocks[chain->base + i];
2088                chain_key = print_chain_key_iteration(class_id + 1, chain_key);
2089
2090                print_lock_name(lock_classes + class_id);
2091                printk("\n");
2092        }
2093}
2094
2095static void print_collision(struct task_struct *curr,
2096                        struct held_lock *hlock_next,
2097                        struct lock_chain *chain)
2098{
2099        pr_warn("\n");
2100        pr_warn("============================\n");
2101        pr_warn("WARNING: chain_key collision\n");
2102        print_kernel_ident();
2103        pr_warn("----------------------------\n");
2104        pr_warn("%s/%d: ", current->comm, task_pid_nr(current));
2105        pr_warn("Hash chain already cached but the contents don't match!\n");
2106
2107        pr_warn("Held locks:");
2108        print_chain_keys_held_locks(curr, hlock_next);
2109
2110        pr_warn("Locks in cached chain:");
2111        print_chain_keys_chain(chain);
2112
2113        pr_warn("\nstack backtrace:\n");
2114        dump_stack();
2115}
2116#endif
2117
2118/*
2119 * Checks whether the chain and the current held locks are consistent
2120 * in depth and also in content. If they are not it most likely means
2121 * that there was a collision during the calculation of the chain_key.
2122 * Returns: 0 not passed, 1 passed
2123 */
2124static int check_no_collision(struct task_struct *curr,
2125                        struct held_lock *hlock,
2126                        struct lock_chain *chain)
2127{
2128#ifdef CONFIG_DEBUG_LOCKDEP
2129        int i, j, id;
2130
2131        i = get_first_held_lock(curr, hlock);
2132
2133        if (DEBUG_LOCKS_WARN_ON(chain->depth != curr->lockdep_depth - (i - 1))) {
2134                print_collision(curr, hlock, chain);
2135                return 0;
2136        }
2137
2138        for (j = 0; j < chain->depth - 1; j++, i++) {
2139                id = curr->held_locks[i].class_idx - 1;
2140
2141                if (DEBUG_LOCKS_WARN_ON(chain_hlocks[chain->base + j] != id)) {
2142                        print_collision(curr, hlock, chain);
2143                        return 0;
2144                }
2145        }
2146#endif
2147        return 1;
2148}
2149
2150/*
2151 * This is for building a chain between just two different classes,
2152 * instead of adding a new hlock upon current, which is done by
2153 * add_chain_cache().
2154 *
2155 * This can be called in any context with two classes, while
2156 * add_chain_cache() must be done within the lock owener's context
2157 * since it uses hlock which might be racy in another context.
2158 */
2159static inline int add_chain_cache_classes(unsigned int prev,
2160                                          unsigned int next,
2161                                          unsigned int irq_context,
2162                                          u64 chain_key)
2163{
2164        struct hlist_head *hash_head = chainhashentry(chain_key);
2165        struct lock_chain *chain;
2166
2167        /*
2168         * Allocate a new chain entry from the static array, and add
2169         * it to the hash:
2170         */
2171
2172        /*
2173         * We might need to take the graph lock, ensure we've got IRQs
2174         * disabled to make this an IRQ-safe lock.. for recursion reasons
2175         * lockdep won't complain about its own locking errors.
2176         */
2177        if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2178                return 0;
2179
2180        if (unlikely(nr_lock_chains >= MAX_LOCKDEP_CHAINS)) {
2181                if (!debug_locks_off_graph_unlock())
2182                        return 0;
2183
2184                print_lockdep_off("BUG: MAX_LOCKDEP_CHAINS too low!");
2185                dump_stack();
2186                return 0;
2187        }
2188
2189        chain = lock_chains + nr_lock_chains++;
2190        chain->chain_key = chain_key;
2191        chain->irq_context = irq_context;
2192        chain->depth = 2;
2193        if (likely(nr_chain_hlocks + chain->depth <= MAX_LOCKDEP_CHAIN_HLOCKS)) {
2194                chain->base = nr_chain_hlocks;
2195                nr_chain_hlocks += chain->depth;
2196                chain_hlocks[chain->base] = prev - 1;
2197                chain_hlocks[chain->base + 1] = next -1;
2198        }
2199#ifdef CONFIG_DEBUG_LOCKDEP
2200        /*
2201         * Important for check_no_collision().
2202         */
2203        else {
2204                if (!debug_locks_off_graph_unlock())
2205                        return 0;
2206
2207                print_lockdep_off("BUG: MAX_LOCKDEP_CHAIN_HLOCKS too low!");
2208                dump_stack();
2209                return 0;
2210        }
2211#endif
2212
2213        hlist_add_head_rcu(&chain->entry, hash_head);
2214        debug_atomic_inc(chain_lookup_misses);
2215        inc_chains();
2216
2217        return 1;
2218}
2219
2220/*
2221 * Adds a dependency chain into chain hashtable. And must be called with
2222 * graph_lock held.
2223 *
2224 * Return 0 if fail, and graph_lock is released.
2225 * Return 1 if succeed, with graph_lock held.
2226 */
2227static inline int add_chain_cache(struct task_struct *curr,
2228                                  struct held_lock *hlock,
2229                                  u64 chain_key)
2230{
2231        struct lock_class *class = hlock_class(hlock);
2232        struct hlist_head *hash_head = chainhashentry(chain_key);
2233        struct lock_chain *chain;
2234        int i, j;
2235
2236        /*
2237         * Allocate a new chain entry from the static array, and add
2238         * it to the hash:
2239         */
2240
2241        /*
2242         * We might need to take the graph lock, ensure we've got IRQs
2243         * disabled to make this an IRQ-safe lock.. for recursion reasons
2244         * lockdep won't complain about its own locking errors.
2245         */
2246        if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2247                return 0;
2248
2249        if (unlikely(nr_lock_chains >= MAX_LOCKDEP_CHAINS)) {
2250                if (!debug_locks_off_graph_unlock())
2251                        return 0;
2252
2253                print_lockdep_off("BUG: MAX_LOCKDEP_CHAINS too low!");
2254                dump_stack();
2255                return 0;
2256        }
2257        chain = lock_chains + nr_lock_chains++;
2258        chain->chain_key = chain_key;
2259        chain->irq_context = hlock->irq_context;
2260        i = get_first_held_lock(curr, hlock);
2261        chain->depth = curr->lockdep_depth + 1 - i;
2262
2263        BUILD_BUG_ON((1UL << 24) <= ARRAY_SIZE(chain_hlocks));
2264        BUILD_BUG_ON((1UL << 6)  <= ARRAY_SIZE(curr->held_locks));
2265        BUILD_BUG_ON((1UL << 8*sizeof(chain_hlocks[0])) <= ARRAY_SIZE(lock_classes));
2266
2267        if (likely(nr_chain_hlocks + chain->depth <= MAX_LOCKDEP_CHAIN_HLOCKS)) {
2268                chain->base = nr_chain_hlocks;
2269                for (j = 0; j < chain->depth - 1; j++, i++) {
2270                        int lock_id = curr->held_locks[i].class_idx - 1;
2271                        chain_hlocks[chain->base + j] = lock_id;
2272                }
2273                chain_hlocks[chain->base + j] = class - lock_classes;
2274        }
2275
2276        if (nr_chain_hlocks < MAX_LOCKDEP_CHAIN_HLOCKS)
2277                nr_chain_hlocks += chain->depth;
2278
2279#ifdef CONFIG_DEBUG_LOCKDEP
2280        /*
2281         * Important for check_no_collision().
2282         */
2283        if (unlikely(nr_chain_hlocks > MAX_LOCKDEP_CHAIN_HLOCKS)) {
2284                if (!debug_locks_off_graph_unlock())
2285                        return 0;
2286
2287                print_lockdep_off("BUG: MAX_LOCKDEP_CHAIN_HLOCKS too low!");
2288                dump_stack();
2289                return 0;
2290        }
2291#endif
2292
2293        hlist_add_head_rcu(&chain->entry, hash_head);
2294        debug_atomic_inc(chain_lookup_misses);
2295        inc_chains();
2296
2297        return 1;
2298}
2299
2300/*
2301 * Look up a dependency chain.
2302 */
2303static inline struct lock_chain *lookup_chain_cache(u64 chain_key)
2304{
2305        struct hlist_head *hash_head = chainhashentry(chain_key);
2306        struct lock_chain *chain;
2307
2308        /*
2309         * We can walk it lock-free, because entries only get added
2310         * to the hash:
2311         */
2312        hlist_for_each_entry_rcu(chain, hash_head, entry) {
2313                if (chain->chain_key == chain_key) {
2314                        debug_atomic_inc(chain_lookup_hits);
2315                        return chain;
2316                }
2317        }
2318        return NULL;
2319}
2320
2321/*
2322 * If the key is not present yet in dependency chain cache then
2323 * add it and return 1 - in this case the new dependency chain is
2324 * validated. If the key is already hashed, return 0.
2325 * (On return with 1 graph_lock is held.)
2326 */
2327static inline int lookup_chain_cache_add(struct task_struct *curr,
2328                                         struct held_lock *hlock,
2329                                         u64 chain_key)
2330{
2331        struct lock_class *class = hlock_class(hlock);
2332        struct lock_chain *chain = lookup_chain_cache(chain_key);
2333
2334        if (chain) {
2335cache_hit:
2336                if (!check_no_collision(curr, hlock, chain))
2337                        return 0;
2338
2339                if (very_verbose(class)) {
2340                        printk("\nhash chain already cached, key: "
2341                                        "%016Lx tail class: [%px] %s\n",
2342                                        (unsigned long long)chain_key,
2343                                        class->key, class->name);
2344                }
2345
2346                return 0;
2347        }
2348
2349        if (very_verbose(class)) {
2350                printk("\nnew hash chain, key: %016Lx tail class: [%px] %s\n",
2351                        (unsigned long long)chain_key, class->key, class->name);
2352        }
2353
2354        if (!graph_lock())
2355                return 0;
2356
2357        /*
2358         * We have to walk the chain again locked - to avoid duplicates:
2359         */
2360        chain = lookup_chain_cache(chain_key);
2361        if (chain) {
2362                graph_unlock();
2363                goto cache_hit;
2364        }
2365
2366        if (!add_chain_cache(curr, hlock, chain_key))
2367                return 0;
2368
2369        return 1;
2370}
2371
2372static int validate_chain(struct task_struct *curr, struct lockdep_map *lock,
2373                struct held_lock *hlock, int chain_head, u64 chain_key)
2374{
2375        /*
2376         * Trylock needs to maintain the stack of held locks, but it
2377         * does not add new dependencies, because trylock can be done
2378         * in any order.
2379         *
2380         * We look up the chain_key and do the O(N^2) check and update of
2381         * the dependencies only if this is a new dependency chain.
2382         * (If lookup_chain_cache_add() return with 1 it acquires
2383         * graph_lock for us)
2384         */
2385        if (!hlock->trylock && hlock->check &&
2386            lookup_chain_cache_add(curr, hlock, chain_key)) {
2387                /*
2388                 * Check whether last held lock:
2389                 *
2390                 * - is irq-safe, if this lock is irq-unsafe
2391                 * - is softirq-safe, if this lock is hardirq-unsafe
2392                 *
2393                 * And check whether the new lock's dependency graph
2394                 * could lead back to the previous lock.
2395                 *
2396                 * any of these scenarios could lead to a deadlock. If
2397                 * All validations
2398                 */
2399                int ret = check_deadlock(curr, hlock, lock, hlock->read);
2400
2401                if (!ret)
2402                        return 0;
2403                /*
2404                 * Mark recursive read, as we jump over it when
2405                 * building dependencies (just like we jump over
2406                 * trylock entries):
2407                 */
2408                if (ret == 2)
2409                        hlock->read = 2;
2410                /*
2411                 * Add dependency only if this lock is not the head
2412                 * of the chain, and if it's not a secondary read-lock:
2413                 */
2414                if (!chain_head && ret != 2) {
2415                        if (!check_prevs_add(curr, hlock))
2416                                return 0;
2417                }
2418
2419                graph_unlock();
2420        } else {
2421                /* after lookup_chain_cache_add(): */
2422                if (unlikely(!debug_locks))
2423                        return 0;
2424        }
2425
2426        return 1;
2427}
2428#else
2429static inline int validate_chain(struct task_struct *curr,
2430                struct lockdep_map *lock, struct held_lock *hlock,
2431                int chain_head, u64 chain_key)
2432{
2433        return 1;
2434}
2435#endif
2436
2437/*
2438 * We are building curr_chain_key incrementally, so double-check
2439 * it from scratch, to make sure that it's done correctly:
2440 */
2441static void check_chain_key(struct task_struct *curr)
2442{
2443#ifdef CONFIG_DEBUG_LOCKDEP
2444        struct held_lock *hlock, *prev_hlock = NULL;
2445        unsigned int i;
2446        u64 chain_key = 0;
2447
2448        for (i = 0; i < curr->lockdep_depth; i++) {
2449                hlock = curr->held_locks + i;
2450                if (chain_key != hlock->prev_chain_key) {
2451                        debug_locks_off();
2452                        /*
2453                         * We got mighty confused, our chain keys don't match
2454                         * with what we expect, someone trample on our task state?
2455                         */
2456                        WARN(1, "hm#1, depth: %u [%u], %016Lx != %016Lx\n",
2457                                curr->lockdep_depth, i,
2458                                (unsigned long long)chain_key,
2459                                (unsigned long long)hlock->prev_chain_key);
2460                        return;
2461                }
2462                /*
2463                 * Whoops ran out of static storage again?
2464                 */
2465                if (DEBUG_LOCKS_WARN_ON(hlock->class_idx > MAX_LOCKDEP_KEYS))
2466                        return;
2467
2468                if (prev_hlock && (prev_hlock->irq_context !=
2469                                                        hlock->irq_context))
2470                        chain_key = 0;
2471                chain_key = iterate_chain_key(chain_key, hlock->class_idx);
2472                prev_hlock = hlock;
2473        }
2474        if (chain_key != curr->curr_chain_key) {
2475                debug_locks_off();
2476                /*
2477                 * More smoking hash instead of calculating it, damn see these
2478                 * numbers float.. I bet that a pink elephant stepped on my memory.
2479                 */
2480                WARN(1, "hm#2, depth: %u [%u], %016Lx != %016Lx\n",
2481                        curr->lockdep_depth, i,
2482                        (unsigned long long)chain_key,
2483                        (unsigned long long)curr->curr_chain_key);
2484        }
2485#endif
2486}
2487
2488static void
2489print_usage_bug_scenario(struct held_lock *lock)
2490{
2491        struct lock_class *class = hlock_class(lock);
2492
2493        printk(" Possible unsafe locking scenario:\n\n");
2494        printk("       CPU0\n");
2495        printk("       ----\n");
2496        printk("  lock(");
2497        __print_lock_name(class);
2498        printk(KERN_CONT ");\n");
2499        printk("  <Interrupt>\n");
2500        printk("    lock(");
2501        __print_lock_name(class);
2502        printk(KERN_CONT ");\n");
2503        printk("\n *** DEADLOCK ***\n\n");
2504}
2505
2506static int
2507print_usage_bug(struct task_struct *curr, struct held_lock *this,
2508                enum lock_usage_bit prev_bit, enum lock_usage_bit new_bit)
2509{
2510        if (!debug_locks_off_graph_unlock() || debug_locks_silent)
2511                return 0;
2512
2513        pr_warn("\n");
2514        pr_warn("================================\n");
2515        pr_warn("WARNING: inconsistent lock state\n");
2516        print_kernel_ident();
2517        pr_warn("--------------------------------\n");
2518
2519        pr_warn("inconsistent {%s} -> {%s} usage.\n",
2520                usage_str[prev_bit], usage_str[new_bit]);
2521
2522        pr_warn("%s/%d [HC%u[%lu]:SC%u[%lu]:HE%u:SE%u] takes:\n",
2523                curr->comm, task_pid_nr(curr),
2524                trace_hardirq_context(curr), hardirq_count() >> HARDIRQ_SHIFT,
2525                trace_softirq_context(curr), softirq_count() >> SOFTIRQ_SHIFT,
2526                trace_hardirqs_enabled(curr),
2527                trace_softirqs_enabled(curr));
2528        print_lock(this);
2529
2530        pr_warn("{%s} state was registered at:\n", usage_str[prev_bit]);
2531        print_stack_trace(hlock_class(this)->usage_traces + prev_bit, 1);
2532
2533        print_irqtrace_events(curr);
2534        pr_warn("\nother info that might help us debug this:\n");
2535        print_usage_bug_scenario(this);
2536
2537        lockdep_print_held_locks(curr);
2538
2539        pr_warn("\nstack backtrace:\n");
2540        dump_stack();
2541
2542        return 0;
2543}
2544
2545/*
2546 * Print out an error if an invalid bit is set:
2547 */
2548static inline int
2549valid_state(struct task_struct *curr, struct held_lock *this,
2550            enum lock_usage_bit new_bit, enum lock_usage_bit bad_bit)
2551{
2552        if (unlikely(hlock_class(this)->usage_mask & (1 << bad_bit)))
2553                return print_usage_bug(curr, this, bad_bit, new_bit);
2554        return 1;
2555}
2556
2557static int mark_lock(struct task_struct *curr, struct held_lock *this,
2558                     enum lock_usage_bit new_bit);
2559
2560#if defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_PROVE_LOCKING)
2561
2562/*
2563 * print irq inversion bug:
2564 */
2565static int
2566print_irq_inversion_bug(struct task_struct *curr,
2567                        struct lock_list *root, struct lock_list *other,
2568                        struct held_lock *this, int forwards,
2569                        const char *irqclass)
2570{
2571        struct lock_list *entry = other;
2572        struct lock_list *middle = NULL;
2573        int depth;
2574
2575        if (!debug_locks_off_graph_unlock() || debug_locks_silent)
2576                return 0;
2577
2578        pr_warn("\n");
2579        pr_warn("========================================================\n");
2580        pr_warn("WARNING: possible irq lock inversion dependency detected\n");
2581        print_kernel_ident();
2582        pr_warn("--------------------------------------------------------\n");
2583        pr_warn("%s/%d just changed the state of lock:\n",
2584                curr->comm, task_pid_nr(curr));
2585        print_lock(this);
2586        if (forwards)
2587                pr_warn("but this lock took another, %s-unsafe lock in the past:\n", irqclass);
2588        else
2589                pr_warn("but this lock was taken by another, %s-safe lock in the past:\n", irqclass);
2590        print_lock_name(other->class);
2591        pr_warn("\n\nand interrupts could create inverse lock ordering between them.\n\n");
2592
2593        pr_warn("\nother info that might help us debug this:\n");
2594
2595        /* Find a middle lock (if one exists) */
2596        depth = get_lock_depth(other);
2597        do {
2598                if (depth == 0 && (entry != root)) {
2599                        pr_warn("lockdep:%s bad path found in chain graph\n", __func__);
2600                        break;
2601                }
2602                middle = entry;
2603                entry = get_lock_parent(entry);
2604                depth--;
2605        } while (entry && entry != root && (depth >= 0));
2606        if (forwards)
2607                print_irq_lock_scenario(root, other,
2608                        middle ? middle->class : root->class, other->class);
2609        else
2610                print_irq_lock_scenario(other, root,
2611                        middle ? middle->class : other->class, root->class);
2612
2613        lockdep_print_held_locks(curr);
2614
2615        pr_warn("\nthe shortest dependencies between 2nd lock and 1st lock:\n");
2616        if (!save_trace(&root->trace))
2617                return 0;
2618        print_shortest_lock_dependencies(other, root);
2619
2620        pr_warn("\nstack backtrace:\n");
2621        dump_stack();
2622
2623        return 0;
2624}
2625
2626/*
2627 * Prove that in the forwards-direction subgraph starting at <this>
2628 * there is no lock matching <mask>:
2629 */
2630static int
2631check_usage_forwards(struct task_struct *curr, struct held_lock *this,
2632                     enum lock_usage_bit bit, const char *irqclass)
2633{
2634        int ret;
2635        struct lock_list root;
2636        struct lock_list *uninitialized_var(target_entry);
2637
2638        root.parent = NULL;
2639        root.class = hlock_class(this);
2640        ret = find_usage_forwards(&root, bit, &target_entry);
2641        if (ret < 0)
2642                return print_bfs_bug(ret);
2643        if (ret == 1)
2644                return ret;
2645
2646        return print_irq_inversion_bug(curr, &root, target_entry,
2647                                        this, 1, irqclass);
2648}
2649
2650/*
2651 * Prove that in the backwards-direction subgraph starting at <this>
2652 * there is no lock matching <mask>:
2653 */
2654static int
2655check_usage_backwards(struct task_struct *curr, struct held_lock *this,
2656                      enum lock_usage_bit bit, const char *irqclass)
2657{
2658        int ret;
2659        struct lock_list root;
2660        struct lock_list *uninitialized_var(target_entry);
2661
2662        root.parent = NULL;
2663        root.class = hlock_class(this);
2664        ret = find_usage_backwards(&root, bit, &target_entry);
2665        if (ret < 0)
2666                return print_bfs_bug(ret);
2667        if (ret == 1)
2668                return ret;
2669
2670        return print_irq_inversion_bug(curr, &root, target_entry,
2671                                        this, 0, irqclass);
2672}
2673
2674void print_irqtrace_events(struct task_struct *curr)
2675{
2676        printk("irq event stamp: %u\n", curr->irq_events);
2677        printk("hardirqs last  enabled at (%u): [<%px>] %pS\n",
2678                curr->hardirq_enable_event, (void *)curr->hardirq_enable_ip,
2679                (void *)curr->hardirq_enable_ip);
2680        printk("hardirqs last disabled at (%u): [<%px>] %pS\n",
2681                curr->hardirq_disable_event, (void *)curr->hardirq_disable_ip,
2682                (void *)curr->hardirq_disable_ip);
2683        printk("softirqs last  enabled at (%u): [<%px>] %pS\n",
2684                curr->softirq_enable_event, (void *)curr->softirq_enable_ip,
2685                (void *)curr->softirq_enable_ip);
2686        printk("softirqs last disabled at (%u): [<%px>] %pS\n",
2687                curr->softirq_disable_event, (void *)curr->softirq_disable_ip,
2688                (void *)curr->softirq_disable_ip);
2689}
2690
2691static int HARDIRQ_verbose(struct lock_class *class)
2692{
2693#if HARDIRQ_VERBOSE
2694        return class_filter(class);
2695#endif
2696        return 0;
2697}
2698
2699static int SOFTIRQ_verbose(struct lock_class *class)
2700{
2701#if SOFTIRQ_VERBOSE
2702        return class_filter(class);
2703#endif
2704        return 0;
2705}
2706
2707#define STRICT_READ_CHECKS      1
2708
2709static int (*state_verbose_f[])(struct lock_class *class) = {
2710#define LOCKDEP_STATE(__STATE) \
2711        __STATE##_verbose,
2712#include "lockdep_states.h"
2713#undef LOCKDEP_STATE
2714};
2715
2716static inline int state_verbose(enum lock_usage_bit bit,
2717                                struct lock_class *class)
2718{
2719        return state_verbose_f[bit >> 2](class);
2720}
2721
2722typedef int (*check_usage_f)(struct task_struct *, struct held_lock *,
2723                             enum lock_usage_bit bit, const char *name);
2724
2725static int
2726mark_lock_irq(struct task_struct *curr, struct held_lock *this,
2727                enum lock_usage_bit new_bit)
2728{
2729        int excl_bit = exclusive_bit(new_bit);
2730        int read = new_bit & 1;
2731        int dir = new_bit & 2;
2732
2733        /*
2734         * mark USED_IN has to look forwards -- to ensure no dependency
2735         * has ENABLED state, which would allow recursion deadlocks.
2736         *
2737         * mark ENABLED has to look backwards -- to ensure no dependee
2738         * has USED_IN state, which, again, would allow  recursion deadlocks.
2739         */
2740        check_usage_f usage = dir ?
2741                check_usage_backwards : check_usage_forwards;
2742
2743        /*
2744         * Validate that this particular lock does not have conflicting
2745         * usage states.
2746         */
2747        if (!valid_state(curr, this, new_bit, excl_bit))
2748                return 0;
2749
2750        /*
2751         * Validate that the lock dependencies don't have conflicting usage
2752         * states.
2753         */
2754        if ((!read || !dir || STRICT_READ_CHECKS) &&
2755                        !usage(curr, this, excl_bit, state_name(new_bit & ~1)))
2756                return 0;
2757
2758        /*
2759         * Check for read in write conflicts
2760         */
2761        if (!read) {
2762                if (!valid_state(curr, this, new_bit, excl_bit + 1))
2763                        return 0;
2764
2765                if (STRICT_READ_CHECKS &&
2766                        !usage(curr, this, excl_bit + 1,
2767                                state_name(new_bit + 1)))
2768                        return 0;
2769        }
2770
2771        if (state_verbose(new_bit, hlock_class(this)))
2772                return 2;
2773
2774        return 1;
2775}
2776
2777enum mark_type {
2778#define LOCKDEP_STATE(__STATE)  __STATE,
2779#include "lockdep_states.h"
2780#undef LOCKDEP_STATE
2781};
2782
2783/*
2784 * Mark all held locks with a usage bit:
2785 */
2786static int
2787mark_held_locks(struct task_struct *curr, enum mark_type mark)
2788{
2789        enum lock_usage_bit usage_bit;
2790        struct held_lock *hlock;
2791        int i;
2792
2793        for (i = 0; i < curr->lockdep_depth; i++) {
2794                hlock = curr->held_locks + i;
2795
2796                usage_bit = 2 + (mark << 2); /* ENABLED */
2797                if (hlock->read)
2798                        usage_bit += 1; /* READ */
2799
2800                BUG_ON(usage_bit >= LOCK_USAGE_STATES);
2801
2802                if (!hlock->check)
2803                        continue;
2804
2805                if (!mark_lock(curr, hlock, usage_bit))
2806                        return 0;
2807        }
2808
2809        return 1;
2810}
2811
2812/*
2813 * Hardirqs will be enabled:
2814 */
2815static void __trace_hardirqs_on_caller(unsigned long ip)
2816{
2817        struct task_struct *curr = current;
2818
2819        /* we'll do an OFF -> ON transition: */
2820        curr->hardirqs_enabled = 1;
2821
2822        /*
2823         * We are going to turn hardirqs on, so set the
2824         * usage bit for all held locks:
2825         */
2826        if (!mark_held_locks(curr, HARDIRQ))
2827                return;
2828        /*
2829         * If we have softirqs enabled, then set the usage
2830         * bit for all held locks. (disabled hardirqs prevented
2831         * this bit from being set before)
2832         */
2833        if (curr->softirqs_enabled)
2834                if (!mark_held_locks(curr, SOFTIRQ))
2835                        return;
2836
2837        curr->hardirq_enable_ip = ip;
2838        curr->hardirq_enable_event = ++curr->irq_events;
2839        debug_atomic_inc(hardirqs_on_events);
2840}
2841
2842void lockdep_hardirqs_on(unsigned long ip)
2843{
2844        if (unlikely(!debug_locks || current->lockdep_recursion))
2845                return;
2846
2847        if (unlikely(current->hardirqs_enabled)) {
2848                /*
2849                 * Neither irq nor preemption are disabled here
2850                 * so this is racy by nature but losing one hit
2851                 * in a stat is not a big deal.
2852                 */
2853                __debug_atomic_inc(redundant_hardirqs_on);
2854                return;
2855        }
2856
2857        /*
2858         * We're enabling irqs and according to our state above irqs weren't
2859         * already enabled, yet we find the hardware thinks they are in fact
2860         * enabled.. someone messed up their IRQ state tracing.
2861         */
2862        if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2863                return;
2864
2865        /*
2866         * See the fine text that goes along with this variable definition.
2867         */
2868        if (DEBUG_LOCKS_WARN_ON(unlikely(early_boot_irqs_disabled)))
2869                return;
2870
2871        /*
2872         * Can't allow enabling interrupts while in an interrupt handler,
2873         * that's general bad form and such. Recursion, limited stack etc..
2874         */
2875        if (DEBUG_LOCKS_WARN_ON(current->hardirq_context))
2876                return;
2877
2878        current->lockdep_recursion = 1;
2879        __trace_hardirqs_on_caller(ip);
2880        current->lockdep_recursion = 0;
2881}
2882
2883/*
2884 * Hardirqs were disabled:
2885 */
2886void lockdep_hardirqs_off(unsigned long ip)
2887{
2888        struct task_struct *curr = current;
2889
2890        if (unlikely(!debug_locks || current->lockdep_recursion))
2891                return;
2892
2893        /*
2894         * So we're supposed to get called after you mask local IRQs, but for
2895         * some reason the hardware doesn't quite think you did a proper job.
2896         */
2897        if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2898                return;
2899
2900        if (curr->hardirqs_enabled) {
2901                /*
2902                 * We have done an ON -> OFF transition:
2903                 */
2904                curr->hardirqs_enabled = 0;
2905                curr->hardirq_disable_ip = ip;
2906                curr->hardirq_disable_event = ++curr->irq_events;
2907                debug_atomic_inc(hardirqs_off_events);
2908        } else
2909                debug_atomic_inc(redundant_hardirqs_off);
2910}
2911
2912/*
2913 * Softirqs will be enabled:
2914 */
2915void trace_softirqs_on(unsigned long ip)
2916{
2917        struct task_struct *curr = current;
2918
2919        if (unlikely(!debug_locks || current->lockdep_recursion))
2920                return;
2921
2922        /*
2923         * We fancy IRQs being disabled here, see softirq.c, avoids
2924         * funny state and nesting things.
2925         */
2926        if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2927                return;
2928
2929        if (curr->softirqs_enabled) {
2930                debug_atomic_inc(redundant_softirqs_on);
2931                return;
2932        }
2933
2934        current->lockdep_recursion = 1;
2935        /*
2936         * We'll do an OFF -> ON transition:
2937         */
2938        curr->softirqs_enabled = 1;
2939        curr->softirq_enable_ip = ip;
2940        curr->softirq_enable_event = ++curr->irq_events;
2941        debug_atomic_inc(softirqs_on_events);
2942        /*
2943         * We are going to turn softirqs on, so set the
2944         * usage bit for all held locks, if hardirqs are
2945         * enabled too:
2946         */
2947        if (curr->hardirqs_enabled)
2948                mark_held_locks(curr, SOFTIRQ);
2949        current->lockdep_recursion = 0;
2950}
2951
2952/*
2953 * Softirqs were disabled:
2954 */
2955void trace_softirqs_off(unsigned long ip)
2956{
2957        struct task_struct *curr = current;
2958
2959        if (unlikely(!debug_locks || current->lockdep_recursion))
2960                return;
2961
2962        /*
2963         * We fancy IRQs being disabled here, see softirq.c
2964         */
2965        if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2966                return;
2967
2968        if (curr->softirqs_enabled) {
2969                /*
2970                 * We have done an ON -> OFF transition:
2971                 */
2972                curr->softirqs_enabled = 0;
2973                curr->softirq_disable_ip = ip;
2974                curr->softirq_disable_event = ++curr->irq_events;
2975                debug_atomic_inc(softirqs_off_events);
2976                /*
2977                 * Whoops, we wanted softirqs off, so why aren't they?
2978                 */
2979                DEBUG_LOCKS_WARN_ON(!softirq_count());
2980        } else
2981                debug_atomic_inc(redundant_softirqs_off);
2982}
2983
2984static int mark_irqflags(struct task_struct *curr, struct held_lock *hlock)
2985{
2986        /*
2987         * If non-trylock use in a hardirq or softirq context, then
2988         * mark the lock as used in these contexts:
2989         */
2990        if (!hlock->trylock) {
2991                if (hlock->read) {
2992                        if (curr->hardirq_context)
2993                                if (!mark_lock(curr, hlock,
2994                                                LOCK_USED_IN_HARDIRQ_READ))
2995                                        return 0;
2996                        if (curr->softirq_context)
2997                                if (!mark_lock(curr, hlock,
2998                                                LOCK_USED_IN_SOFTIRQ_READ))
2999                                        return 0;
3000                } else {
3001                        if (curr->hardirq_context)
3002                                if (!mark_lock(curr, hlock, LOCK_USED_IN_HARDIRQ))
3003                                        return 0;
3004                        if (curr->softirq_context)
3005                                if (!mark_lock(curr, hlock, LOCK_USED_IN_SOFTIRQ))
3006                                        return 0;
3007                }
3008        }
3009        if (!hlock->hardirqs_off) {
3010                if (hlock->read) {
3011                        if (!mark_lock(curr, hlock,
3012                                        LOCK_ENABLED_HARDIRQ_READ))
3013                                return 0;
3014                        if (curr->softirqs_enabled)
3015                                if (!mark_lock(curr, hlock,
3016                                                LOCK_ENABLED_SOFTIRQ_READ))
3017                                        return 0;
3018                } else {
3019                        if (!mark_lock(curr, hlock,
3020                                        LOCK_ENABLED_HARDIRQ))
3021                                return 0;
3022                        if (curr->softirqs_enabled)
3023                                if (!mark_lock(curr, hlock,
3024                                                LOCK_ENABLED_SOFTIRQ))
3025                                        return 0;
3026                }
3027        }
3028
3029        return 1;
3030}
3031
3032static inline unsigned int task_irq_context(struct task_struct *task)
3033{
3034        return 2 * !!task->hardirq_context + !!task->softirq_context;
3035}
3036
3037static int separate_irq_context(struct task_struct *curr,
3038                struct held_lock *hlock)
3039{
3040        unsigned int depth = curr->lockdep_depth;
3041
3042        /*
3043         * Keep track of points where we cross into an interrupt context:
3044         */
3045        if (depth) {
3046                struct held_lock *prev_hlock;
3047
3048                prev_hlock = curr->held_locks + depth-1;
3049                /*
3050                 * If we cross into another context, reset the
3051                 * hash key (this also prevents the checking and the
3052                 * adding of the dependency to 'prev'):
3053                 */
3054                if (prev_hlock->irq_context != hlock->irq_context)
3055                        return 1;
3056        }
3057        return 0;
3058}
3059
3060#else /* defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_PROVE_LOCKING) */
3061
3062static inline
3063int mark_lock_irq(struct task_struct *curr, struct held_lock *this,
3064                enum lock_usage_bit new_bit)
3065{
3066        WARN_ON(1); /* Impossible innit? when we don't have TRACE_IRQFLAG */
3067        return 1;
3068}
3069
3070static inline int mark_irqflags(struct task_struct *curr,
3071                struct held_lock *hlock)
3072{
3073        return 1;
3074}
3075
3076static inline unsigned int task_irq_context(struct task_struct *task)
3077{
3078        return 0;
3079}
3080
3081static inline int separate_irq_context(struct task_struct *curr,
3082                struct held_lock *hlock)
3083{
3084        return 0;
3085}
3086
3087#endif /* defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_PROVE_LOCKING) */
3088
3089/*
3090 * Mark a lock with a usage bit, and validate the state transition:
3091 */
3092static int mark_lock(struct task_struct *curr, struct held_lock *this,
3093                             enum lock_usage_bit new_bit)
3094{
3095        unsigned int new_mask = 1 << new_bit, ret = 1;
3096
3097        /*
3098         * If already set then do not dirty the cacheline,
3099         * nor do any checks:
3100         */
3101        if (likely(hlock_class(this)->usage_mask & new_mask))
3102                return 1;
3103
3104        if (!graph_lock())
3105                return 0;
3106        /*
3107         * Make sure we didn't race:
3108         */
3109        if (unlikely(hlock_class(this)->usage_mask & new_mask)) {
3110                graph_unlock();
3111                return 1;
3112        }
3113
3114        hlock_class(this)->usage_mask |= new_mask;
3115
3116        if (!save_trace(hlock_class(this)->usage_traces + new_bit))
3117                return 0;
3118
3119        switch (new_bit) {
3120#define LOCKDEP_STATE(__STATE)                  \
3121        case LOCK_USED_IN_##__STATE:            \
3122        case LOCK_USED_IN_##__STATE##_READ:     \
3123        case LOCK_ENABLED_##__STATE:            \
3124        case LOCK_ENABLED_##__STATE##_READ:
3125#include "lockdep_states.h"
3126#undef LOCKDEP_STATE
3127                ret = mark_lock_irq(curr, this, new_bit);
3128                if (!ret)
3129                        return 0;
3130                break;
3131        case LOCK_USED:
3132                debug_atomic_dec(nr_unused_locks);
3133                break;
3134        default:
3135                if (!debug_locks_off_graph_unlock())
3136                        return 0;
3137                WARN_ON(1);
3138                return 0;
3139        }
3140
3141        graph_unlock();
3142
3143        /*
3144         * We must printk outside of the graph_lock:
3145         */
3146        if (ret == 2) {
3147                printk("\nmarked lock as {%s}:\n", usage_str[new_bit]);
3148                print_lock(this);
3149                print_irqtrace_events(curr);
3150                dump_stack();
3151        }
3152
3153        return ret;
3154}
3155
3156/*
3157 * Initialize a lock instance's lock-class mapping info:
3158 */
3159static void __lockdep_init_map(struct lockdep_map *lock, const char *name,
3160                      struct lock_class_key *key, int subclass)
3161{
3162        int i;
3163
3164        for (i = 0; i < NR_LOCKDEP_CACHING_CLASSES; i++)
3165                lock->class_cache[i] = NULL;
3166
3167#ifdef CONFIG_LOCK_STAT
3168        lock->cpu = raw_smp_processor_id();
3169#endif
3170
3171        /*
3172         * Can't be having no nameless bastards around this place!
3173         */
3174        if (DEBUG_LOCKS_WARN_ON(!name)) {
3175                lock->name = "NULL";
3176                return;
3177        }
3178
3179        lock->name = name;
3180
3181        /*
3182         * No key, no joy, we need to hash something.
3183         */
3184        if (DEBUG_LOCKS_WARN_ON(!key))
3185                return;
3186        /*
3187         * Sanity check, the lock-class key must be persistent:
3188         */
3189        if (!static_obj(key)) {
3190                printk("BUG: key %px not in .data!\n", key);
3191                /*
3192                 * What it says above ^^^^^, I suggest you read it.
3193                 */
3194                DEBUG_LOCKS_WARN_ON(1);
3195                return;
3196        }
3197        lock->key = key;
3198
3199        if (unlikely(!debug_locks))
3200                return;
3201
3202        if (subclass) {
3203                unsigned long flags;
3204
3205                if (DEBUG_LOCKS_WARN_ON(current->lockdep_recursion))
3206                        return;
3207
3208                raw_local_irq_save(flags);
3209                current->lockdep_recursion = 1;
3210                register_lock_class(lock, subclass, 1);
3211                current->lockdep_recursion = 0;
3212                raw_local_irq_restore(flags);
3213        }
3214}
3215
3216void lockdep_init_map(struct lockdep_map *lock, const char *name,
3217                      struct lock_class_key *key, int subclass)
3218{
3219        __lockdep_init_map(lock, name, key, subclass);
3220}
3221EXPORT_SYMBOL_GPL(lockdep_init_map);
3222
3223struct lock_class_key __lockdep_no_validate__;
3224EXPORT_SYMBOL_GPL(__lockdep_no_validate__);
3225
3226static int
3227print_lock_nested_lock_not_held(struct task_struct *curr,
3228                                struct held_lock *hlock,
3229                                unsigned long ip)
3230{
3231        if (!debug_locks_off())
3232                return 0;
3233        if (debug_locks_silent)
3234                return 0;
3235
3236        pr_warn("\n");
3237        pr_warn("==================================\n");
3238        pr_warn("WARNING: Nested lock was not taken\n");
3239        print_kernel_ident();
3240        pr_warn("----------------------------------\n");
3241
3242        pr_warn("%s/%d is trying to lock:\n", curr->comm, task_pid_nr(curr));
3243        print_lock(hlock);
3244
3245        pr_warn("\nbut this task is not holding:\n");
3246        pr_warn("%s\n", hlock->nest_lock->name);
3247
3248        pr_warn("\nstack backtrace:\n");
3249        dump_stack();
3250
3251        pr_warn("\nother info that might help us debug this:\n");
3252        lockdep_print_held_locks(curr);
3253
3254        pr_warn("\nstack backtrace:\n");
3255        dump_stack();
3256
3257        return 0;
3258}
3259
3260static int __lock_is_held(const struct lockdep_map *lock, int read);
3261
3262/*
3263 * This gets called for every mutex_lock*()/spin_lock*() operation.
3264 * We maintain the dependency maps and validate the locking attempt:
3265 */
3266static int __lock_acquire(struct lockdep_map *lock, unsigned int subclass,
3267                          int trylock, int read, int check, int hardirqs_off,
3268                          struct lockdep_map *nest_lock, unsigned long ip,
3269                          int references, int pin_count)
3270{
3271        struct task_struct *curr = current;
3272        struct lock_class *class = NULL;
3273        struct held_lock *hlock;
3274        unsigned int depth;
3275        int chain_head = 0;
3276        int class_idx;
3277        u64 chain_key;
3278
3279        if (unlikely(!debug_locks))
3280                return 0;
3281
3282        /*
3283         * Lockdep should run with IRQs disabled, otherwise we could
3284         * get an interrupt which would want to take locks, which would
3285         * end up in lockdep and have you got a head-ache already?
3286         */
3287        if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
3288                return 0;
3289
3290        if (!prove_locking || lock->key == &__lockdep_no_validate__)
3291                check = 0;
3292
3293        if (subclass < NR_LOCKDEP_CACHING_CLASSES)
3294                class = lock->class_cache[subclass];
3295        /*
3296         * Not cached?
3297         */
3298        if (unlikely(!class)) {
3299                class = register_lock_class(lock, subclass, 0);
3300                if (!class)
3301                        return 0;
3302        }
3303        atomic_inc((atomic_t *)&class->ops);
3304        if (very_verbose(class)) {
3305                printk("\nacquire class [%px] %s", class->key, class->name);
3306                if (class->name_version > 1)
3307                        printk(KERN_CONT "#%d", class->name_version);
3308                printk(KERN_CONT "\n");
3309                dump_stack();
3310        }
3311
3312        /*
3313         * Add the lock to the list of currently held locks.
3314         * (we dont increase the depth just yet, up until the
3315         * dependency checks are done)
3316         */
3317        depth = curr->lockdep_depth;
3318        /*
3319         * Ran out of static storage for our per-task lock stack again have we?
3320         */
3321        if (DEBUG_LOCKS_WARN_ON(depth >= MAX_LOCK_DEPTH))
3322                return 0;
3323
3324        class_idx = class - lock_classes + 1;
3325
3326        if (depth) {
3327                hlock = curr->held_locks + depth - 1;
3328                if (hlock->class_idx == class_idx && nest_lock) {
3329                        if (hlock->references) {
3330                                /*
3331                                 * Check: unsigned int references:12, overflow.
3332                                 */
3333                                if (DEBUG_LOCKS_WARN_ON(hlock->references == (1 << 12)-1))
3334                                        return 0;
3335
3336                                hlock->references++;
3337                        } else {
3338                                hlock->references = 2;
3339                        }
3340
3341                        return 1;
3342                }
3343        }
3344
3345        hlock = curr->held_locks + depth;
3346        /*
3347         * Plain impossible, we just registered it and checked it weren't no
3348         * NULL like.. I bet this mushroom I ate was good!
3349         */
3350        if (DEBUG_LOCKS_WARN_ON(!class))
3351                return 0;
3352        hlock->class_idx = class_idx;
3353        hlock->acquire_ip = ip;
3354        hlock->instance = lock;
3355        hlock->nest_lock = nest_lock;
3356        hlock->irq_context = task_irq_context(curr);
3357        hlock->trylock = trylock;
3358        hlock->read = read;
3359        hlock->check = check;
3360        hlock->hardirqs_off = !!hardirqs_off;
3361        hlock->references = references;
3362#ifdef CONFIG_LOCK_STAT
3363        hlock->waittime_stamp = 0;
3364        hlock->holdtime_stamp = lockstat_clock();
3365#endif
3366        hlock->pin_count = pin_count;
3367
3368        if (check && !mark_irqflags(curr, hlock))
3369                return 0;
3370
3371        /* mark it as used: */
3372        if (!mark_lock(curr, hlock, LOCK_USED))
3373                return 0;
3374
3375        /*
3376         * Calculate the chain hash: it's the combined hash of all the
3377         * lock keys along the dependency chain. We save the hash value
3378         * at every step so that we can get the current hash easily
3379         * after unlock. The chain hash is then used to cache dependency
3380         * results.
3381         *
3382         * The 'key ID' is what is the most compact key value to drive
3383         * the hash, not class->key.
3384         */
3385        /*
3386         * Whoops, we did it again.. ran straight out of our static allocation.
3387         */
3388        if (DEBUG_LOCKS_WARN_ON(class_idx > MAX_LOCKDEP_KEYS))
3389                return 0;
3390
3391        chain_key = curr->curr_chain_key;
3392        if (!depth) {
3393                /*
3394                 * How can we have a chain hash when we ain't got no keys?!
3395                 */
3396                if (DEBUG_LOCKS_WARN_ON(chain_key != 0))
3397                        return 0;
3398                chain_head = 1;
3399        }
3400
3401        hlock->prev_chain_key = chain_key;
3402        if (separate_irq_context(curr, hlock)) {
3403                chain_key = 0;
3404                chain_head = 1;
3405        }
3406        chain_key = iterate_chain_key(chain_key, class_idx);
3407
3408        if (nest_lock && !__lock_is_held(nest_lock, -1))
3409                return print_lock_nested_lock_not_held(curr, hlock, ip);
3410
3411        if (!validate_chain(curr, lock, hlock, chain_head, chain_key))
3412                return 0;
3413
3414        curr->curr_chain_key = chain_key;
3415        curr->lockdep_depth++;
3416        check_chain_key(curr);
3417#ifdef CONFIG_DEBUG_LOCKDEP
3418        if (unlikely(!debug_locks))
3419                return 0;
3420#endif
3421        if (unlikely(curr->lockdep_depth >= MAX_LOCK_DEPTH)) {
3422                debug_locks_off();
3423                print_lockdep_off("BUG: MAX_LOCK_DEPTH too low!");
3424                printk(KERN_DEBUG "depth: %i  max: %lu!\n",
3425                       curr->lockdep_depth, MAX_LOCK_DEPTH);
3426
3427                lockdep_print_held_locks(current);
3428                debug_show_all_locks();
3429                dump_stack();
3430
3431                return 0;
3432        }
3433
3434        if (unlikely(curr->lockdep_depth > max_lockdep_depth))
3435                max_lockdep_depth = curr->lockdep_depth;
3436
3437        return 1;
3438}
3439
3440static int
3441print_unlock_imbalance_bug(struct task_struct *curr, struct lockdep_map *lock,
3442                           unsigned long ip)
3443{
3444        if (!debug_locks_off())
3445                return 0;
3446        if (debug_locks_silent)
3447                return 0;
3448
3449        pr_warn("\n");
3450        pr_warn("=====================================\n");
3451        pr_warn("WARNING: bad unlock balance detected!\n");
3452        print_kernel_ident();
3453        pr_warn("-------------------------------------\n");
3454        pr_warn("%s/%d is trying to release lock (",
3455                curr->comm, task_pid_nr(curr));
3456        print_lockdep_cache(lock);
3457        pr_cont(") at:\n");
3458        print_ip_sym(ip);
3459        pr_warn("but there are no more locks to release!\n");
3460        pr_warn("\nother info that might help us debug this:\n");
3461        lockdep_print_held_locks(curr);
3462
3463        pr_warn("\nstack backtrace:\n");
3464        dump_stack();
3465
3466        return 0;
3467}
3468
3469static int match_held_lock(const struct held_lock *hlock,
3470                                        const struct lockdep_map *lock)
3471{
3472        if (hlock->instance == lock)
3473                return 1;
3474
3475        if (hlock->references) {
3476                const struct lock_class *class = lock->class_cache[0];
3477
3478                if (!class)
3479                        class = look_up_lock_class(lock, 0);
3480
3481                /*
3482                 * If look_up_lock_class() failed to find a class, we're trying
3483                 * to test if we hold a lock that has never yet been acquired.
3484                 * Clearly if the lock hasn't been acquired _ever_, we're not
3485                 * holding it either, so report failure.
3486                 */
3487                if (!class)
3488                        return 0;
3489
3490                /*
3491                 * References, but not a lock we're actually ref-counting?
3492                 * State got messed up, follow the sites that change ->references
3493                 * and try to make sense of it.
3494                 */
3495                if (DEBUG_LOCKS_WARN_ON(!hlock->nest_lock))
3496                        return 0;
3497
3498                if (hlock->class_idx == class - lock_classes + 1)
3499                        return 1;
3500        }
3501
3502        return 0;
3503}
3504
3505/* @depth must not be zero */
3506static struct held_lock *find_held_lock(struct task_struct *curr,
3507                                        struct lockdep_map *lock,
3508                                        unsigned int depth, int *idx)
3509{
3510        struct held_lock *ret, *hlock, *prev_hlock;
3511        int i;
3512
3513        i = depth - 1;
3514        hlock = curr->held_locks + i;
3515        ret = hlock;
3516        if (match_held_lock(hlock, lock))
3517                goto out;
3518
3519        ret = NULL;
3520        for (i--, prev_hlock = hlock--;
3521             i >= 0;
3522             i--, prev_hlock = hlock--) {
3523                /*
3524                 * We must not cross into another context:
3525                 */
3526                if (prev_hlock->irq_context != hlock->irq_context) {
3527                        ret = NULL;
3528                        break;
3529                }
3530                if (match_held_lock(hlock, lock)) {
3531                        ret = hlock;
3532                        break;
3533                }
3534        }
3535
3536out:
3537        *idx = i;
3538        return ret;
3539}
3540
3541static int reacquire_held_locks(struct task_struct *curr, unsigned int depth,
3542                              int idx)
3543{
3544        struct held_lock *hlock;
3545
3546        for (hlock = curr->held_locks + idx; idx < depth; idx++, hlock++) {
3547                if (!__lock_acquire(hlock->instance,
3548                                    hlock_class(hlock)->subclass,
3549                                    hlock->trylock,
3550                                    hlock->read, hlock->check,
3551                                    hlock->hardirqs_off,
3552                                    hlock->nest_lock, hlock->acquire_ip,
3553                                    hlock->references, hlock->pin_count))
3554                        return 1;
3555        }
3556        return 0;
3557}
3558
3559static int
3560__lock_set_class(struct lockdep_map *lock, const char *name,
3561                 struct lock_class_key *key, unsigned int subclass,
3562                 unsigned long ip)
3563{
3564        struct task_struct *curr = current;
3565        struct held_lock *hlock;
3566        struct lock_class *class;
3567        unsigned int depth;
3568        int i;
3569
3570        depth = curr->lockdep_depth;
3571        /*
3572         * This function is about (re)setting the class of a held lock,
3573         * yet we're not actually holding any locks. Naughty user!
3574         */
3575        if (DEBUG_LOCKS_WARN_ON(!depth))
3576                return 0;
3577
3578        hlock = find_held_lock(curr, lock, depth, &i);
3579        if (!hlock)
3580                return print_unlock_imbalance_bug(curr, lock, ip);
3581
3582        lockdep_init_map(lock, name, key, 0);
3583        class = register_lock_class(lock, subclass, 0);
3584        hlock->class_idx = class - lock_classes + 1;
3585
3586        curr->lockdep_depth = i;
3587        curr->curr_chain_key = hlock->prev_chain_key;
3588
3589        if (reacquire_held_locks(curr, depth, i))
3590                return 0;
3591
3592        /*
3593         * I took it apart and put it back together again, except now I have
3594         * these 'spare' parts.. where shall I put them.
3595         */
3596        if (DEBUG_LOCKS_WARN_ON(curr->lockdep_depth != depth))
3597                return 0;
3598        return 1;
3599}
3600
3601static int __lock_downgrade(struct lockdep_map *lock, unsigned long ip)
3602{
3603        struct task_struct *curr = current;
3604        struct held_lock *hlock;
3605        unsigned int depth;
3606        int i;
3607
3608        depth = curr->lockdep_depth;
3609        /*
3610         * This function is about (re)setting the class of a held lock,
3611         * yet we're not actually holding any locks. Naughty user!
3612         */
3613        if (DEBUG_LOCKS_WARN_ON(!depth))
3614                return 0;
3615
3616        hlock = find_held_lock(curr, lock, depth, &i);
3617        if (!hlock)
3618                return print_unlock_imbalance_bug(curr, lock, ip);
3619
3620        curr->lockdep_depth = i;
3621        curr->curr_chain_key = hlock->prev_chain_key;
3622
3623        WARN(hlock->read, "downgrading a read lock");
3624        hlock->read = 1;
3625        hlock->acquire_ip = ip;
3626
3627        if (reacquire_held_locks(curr, depth, i))
3628                return 0;
3629
3630        /*
3631         * I took it apart and put it back together again, except now I have
3632         * these 'spare' parts.. where shall I put them.
3633         */
3634        if (DEBUG_LOCKS_WARN_ON(curr->lockdep_depth != depth))
3635                return 0;
3636        return 1;
3637}
3638
3639/*
3640 * Remove the lock to the list of currently held locks - this gets
3641 * called on mutex_unlock()/spin_unlock*() (or on a failed
3642 * mutex_lock_interruptible()).
3643 *
3644 * @nested is an hysterical artifact, needs a tree wide cleanup.
3645 */
3646static int
3647__lock_release(struct lockdep_map *lock, int nested, unsigned long ip)
3648{
3649        struct task_struct *curr = current;
3650        struct held_lock *hlock;
3651        unsigned int depth;
3652        int i;
3653
3654        if (unlikely(!debug_locks))
3655                return 0;
3656
3657        depth = curr->lockdep_depth;
3658        /*
3659         * So we're all set to release this lock.. wait what lock? We don't
3660         * own any locks, you've been drinking again?
3661         */
3662        if (DEBUG_LOCKS_WARN_ON(depth <= 0))
3663                 return print_unlock_imbalance_bug(curr, lock, ip);
3664
3665        /*
3666         * Check whether the lock exists in the current stack
3667         * of held locks:
3668         */
3669        hlock = find_held_lock(curr, lock, depth, &i);
3670        if (!hlock)
3671                return print_unlock_imbalance_bug(curr, lock, ip);
3672
3673        if (hlock->instance == lock)
3674                lock_release_holdtime(hlock);
3675
3676        WARN(hlock->pin_count, "releasing a pinned lock\n");
3677
3678        if (hlock->references) {
3679                hlock->references--;
3680                if (hlock->references) {
3681                        /*
3682                         * We had, and after removing one, still have
3683                         * references, the current lock stack is still
3684                         * valid. We're done!
3685                         */
3686                        return 1;
3687                }
3688        }
3689
3690        /*
3691         * We have the right lock to unlock, 'hlock' points to it.
3692         * Now we remove it from the stack, and add back the other
3693         * entries (if any), recalculating the hash along the way:
3694         */
3695
3696        curr->lockdep_depth = i;
3697        curr->curr_chain_key = hlock->prev_chain_key;
3698
3699        if (reacquire_held_locks(curr, depth, i + 1))
3700                return 0;
3701
3702        /*
3703         * We had N bottles of beer on the wall, we drank one, but now
3704         * there's not N-1 bottles of beer left on the wall...
3705         */
3706        if (DEBUG_LOCKS_WARN_ON(curr->lockdep_depth != depth - 1))
3707                return 0;
3708
3709        return 1;
3710}
3711
3712static int __lock_is_held(const struct lockdep_map *lock, int read)
3713{
3714        struct task_struct *curr = current;
3715        int i;
3716
3717        for (i = 0; i < curr->lockdep_depth; i++) {
3718                struct held_lock *hlock = curr->held_locks + i;
3719
3720                if (match_held_lock(hlock, lock)) {
3721                        if (read == -1 || hlock->read == read)
3722                                return 1;
3723
3724                        return 0;
3725                }
3726        }
3727
3728        return 0;
3729}
3730
3731static struct pin_cookie __lock_pin_lock(struct lockdep_map *lock)
3732{
3733        struct pin_cookie cookie = NIL_COOKIE;
3734        struct task_struct *curr = current;
3735        int i;
3736
3737        if (unlikely(!debug_locks))
3738                return cookie;
3739
3740        for (i = 0; i < curr->lockdep_depth; i++) {
3741                struct held_lock *hlock = curr->held_locks + i;
3742
3743                if (match_held_lock(hlock, lock)) {
3744                        /*
3745                         * Grab 16bits of randomness; this is sufficient to not
3746                         * be guessable and still allows some pin nesting in
3747                         * our u32 pin_count.
3748                         */
3749                        cookie.val = 1 + (prandom_u32() >> 16);
3750                        hlock->pin_count += cookie.val;
3751                        return cookie;
3752                }
3753        }
3754
3755        WARN(1, "pinning an unheld lock\n");
3756        return cookie;
3757}
3758
3759static void __lock_repin_lock(struct lockdep_map *lock, struct pin_cookie cookie)
3760{
3761        struct task_struct *curr = current;
3762        int i;
3763
3764        if (unlikely(!debug_locks))
3765                return;
3766
3767        for (i = 0; i < curr->lockdep_depth; i++) {
3768                struct held_lock *hlock = curr->held_locks + i;
3769
3770                if (match_held_lock(hlock, lock)) {
3771                        hlock->pin_count += cookie.val;
3772                        return;
3773                }
3774        }
3775
3776        WARN(1, "pinning an unheld lock\n");
3777}
3778
3779static void __lock_unpin_lock(struct lockdep_map *lock, struct pin_cookie cookie)
3780{
3781        struct task_struct *curr = current;
3782        int i;
3783
3784        if (unlikely(!debug_locks))
3785                return;
3786
3787        for (i = 0; i < curr->lockdep_depth; i++) {
3788                struct held_lock *hlock = curr->held_locks + i;
3789
3790                if (match_held_lock(hlock, lock)) {
3791                        if (WARN(!hlock->pin_count, "unpinning an unpinned lock\n"))
3792                                return;
3793
3794                        hlock->pin_count -= cookie.val;
3795
3796                        if (WARN((int)hlock->pin_count < 0, "pin count corrupted\n"))
3797                                hlock->pin_count = 0;
3798
3799                        return;
3800                }
3801        }
3802
3803        WARN(1, "unpinning an unheld lock\n");
3804}
3805
3806/*
3807 * Check whether we follow the irq-flags state precisely:
3808 */
3809static void check_flags(unsigned long flags)
3810{
3811#if defined(CONFIG_PROVE_LOCKING) && defined(CONFIG_DEBUG_LOCKDEP) && \
3812    defined(CONFIG_TRACE_IRQFLAGS)
3813        if (!debug_locks)
3814                return;
3815
3816        if (irqs_disabled_flags(flags)) {
3817                if (DEBUG_LOCKS_WARN_ON(current->hardirqs_enabled)) {
3818                        printk("possible reason: unannotated irqs-off.\n");
3819                }
3820        } else {
3821                if (DEBUG_LOCKS_WARN_ON(!current->hardirqs_enabled)) {
3822                        printk("possible reason: unannotated irqs-on.\n");
3823                }
3824        }
3825
3826        /*
3827         * We dont accurately track softirq state in e.g.
3828         * hardirq contexts (such as on 4KSTACKS), so only
3829         * check if not in hardirq contexts:
3830         */
3831        if (!hardirq_count()) {
3832                if (softirq_count()) {
3833                        /* like the above, but with softirqs */
3834                        DEBUG_LOCKS_WARN_ON(current->softirqs_enabled);
3835                } else {
3836                        /* lick the above, does it taste good? */
3837                        DEBUG_LOCKS_WARN_ON(!current->softirqs_enabled);
3838                }
3839        }
3840
3841        if (!debug_locks)
3842                print_irqtrace_events(current);
3843#endif
3844}
3845
3846void lock_set_class(struct lockdep_map *lock, const char *name,
3847                    struct lock_class_key *key, unsigned int subclass,
3848                    unsigned long ip)
3849{
3850        unsigned long flags;
3851
3852        if (unlikely(current->lockdep_recursion))
3853                return;
3854
3855        raw_local_irq_save(flags);
3856        current->lockdep_recursion = 1;
3857        check_flags(flags);
3858        if (__lock_set_class(lock, name, key, subclass, ip))
3859                check_chain_key(current);
3860        current->lockdep_recursion = 0;
3861        raw_local_irq_restore(flags);
3862}
3863EXPORT_SYMBOL_GPL(lock_set_class);
3864
3865void lock_downgrade(struct lockdep_map *lock, unsigned long ip)
3866{
3867        unsigned long flags;
3868
3869        if (unlikely(current->lockdep_recursion))
3870                return;
3871
3872        raw_local_irq_save(flags);
3873        current->lockdep_recursion = 1;
3874        check_flags(flags);
3875        if (__lock_downgrade(lock, ip))
3876                check_chain_key(current);
3877        current->lockdep_recursion = 0;
3878        raw_local_irq_restore(flags);
3879}
3880EXPORT_SYMBOL_GPL(lock_downgrade);
3881
3882/*
3883 * We are not always called with irqs disabled - do that here,
3884 * and also avoid lockdep recursion:
3885 */
3886void lock_acquire(struct lockdep_map *lock, unsigned int subclass,
3887                          int trylock, int read, int check,
3888                          struct lockdep_map *nest_lock, unsigned long ip)
3889{
3890        unsigned long flags;
3891
3892        if (unlikely(current->lockdep_recursion))
3893                return;
3894
3895        raw_local_irq_save(flags);
3896        check_flags(flags);
3897
3898        current->lockdep_recursion = 1;
3899        trace_lock_acquire(lock, subclass, trylock, read, check, nest_lock, ip);
3900        __lock_acquire(lock, subclass, trylock, read, check,
3901                       irqs_disabled_flags(flags), nest_lock, ip, 0, 0);
3902        current->lockdep_recursion = 0;
3903        raw_local_irq_restore(flags);
3904}
3905EXPORT_SYMBOL_GPL(lock_acquire);
3906
3907void lock_release(struct lockdep_map *lock, int nested,
3908                          unsigned long ip)
3909{
3910        unsigned long flags;
3911
3912        if (unlikely(current->lockdep_recursion))
3913                return;
3914
3915        raw_local_irq_save(flags);
3916        check_flags(flags);
3917        current->lockdep_recursion = 1;
3918        trace_lock_release(lock, ip);
3919        if (__lock_release(lock, nested, ip))
3920                check_chain_key(current);
3921        current->lockdep_recursion = 0;
3922        raw_local_irq_restore(flags);
3923}
3924EXPORT_SYMBOL_GPL(lock_release);
3925
3926int lock_is_held_type(const struct lockdep_map *lock, int read)
3927{
3928        unsigned long flags;
3929        int ret = 0;
3930
3931        if (unlikely(current->lockdep_recursion))
3932                return 1; /* avoid false negative lockdep_assert_held() */
3933
3934        raw_local_irq_save(flags);
3935        check_flags(flags);
3936
3937        current->lockdep_recursion = 1;
3938        ret = __lock_is_held(lock, read);
3939        current->lockdep_recursion = 0;
3940        raw_local_irq_restore(flags);
3941
3942        return ret;
3943}
3944EXPORT_SYMBOL_GPL(lock_is_held_type);
3945
3946struct pin_cookie lock_pin_lock(struct lockdep_map *lock)
3947{
3948        struct pin_cookie cookie = NIL_COOKIE;
3949        unsigned long flags;
3950
3951        if (unlikely(current->lockdep_recursion))
3952                return cookie;
3953
3954        raw_local_irq_save(flags);
3955        check_flags(flags);
3956
3957        current->lockdep_recursion = 1;
3958        cookie = __lock_pin_lock(lock);
3959        current->lockdep_recursion = 0;
3960        raw_local_irq_restore(flags);
3961
3962        return cookie;
3963}
3964EXPORT_SYMBOL_GPL(lock_pin_lock);
3965
3966void lock_repin_lock(struct lockdep_map *lock, struct pin_cookie cookie)
3967{
3968        unsigned long flags;
3969
3970        if (unlikely(current->lockdep_recursion))
3971                return;
3972
3973        raw_local_irq_save(flags);
3974        check_flags(flags);
3975
3976        current->lockdep_recursion = 1;
3977        __lock_repin_lock(lock, cookie);
3978        current->lockdep_recursion = 0;
3979        raw_local_irq_restore(flags);
3980}
3981EXPORT_SYMBOL_GPL(lock_repin_lock);
3982
3983void lock_unpin_lock(struct lockdep_map *lock, struct pin_cookie cookie)
3984{
3985        unsigned long flags;
3986
3987        if (unlikely(current->lockdep_recursion))
3988                return;
3989
3990        raw_local_irq_save(flags);
3991        check_flags(flags);
3992
3993        current->lockdep_recursion = 1;
3994        __lock_unpin_lock(lock, cookie);
3995        current->lockdep_recursion = 0;
3996        raw_local_irq_restore(flags);
3997}
3998EXPORT_SYMBOL_GPL(lock_unpin_lock);
3999
4000#ifdef CONFIG_LOCK_STAT
4001static int
4002print_lock_contention_bug(struct task_struct *curr, struct lockdep_map *lock,
4003                           unsigned long ip)
4004{
4005        if (!debug_locks_off())
4006                return 0;
4007        if (debug_locks_silent)
4008                return 0;
4009
4010        pr_warn("\n");
4011        pr_warn("=================================\n");
4012        pr_warn("WARNING: bad contention detected!\n");
4013        print_kernel_ident();
4014        pr_warn("---------------------------------\n");
4015        pr_warn("%s/%d is trying to contend lock (",
4016                curr->comm, task_pid_nr(curr));
4017        print_lockdep_cache(lock);
4018        pr_cont(") at:\n");
4019        print_ip_sym(ip);
4020        pr_warn("but there are no locks held!\n");
4021        pr_warn("\nother info that might help us debug this:\n");
4022        lockdep_print_held_locks(curr);
4023
4024        pr_warn("\nstack backtrace:\n");
4025        dump_stack();
4026
4027        return 0;
4028}
4029
4030static void
4031__lock_contended(struct lockdep_map *lock, unsigned long ip)
4032{
4033        struct task_struct *curr = current;
4034        struct held_lock *hlock;
4035        struct lock_class_stats *stats;
4036        unsigned int depth;
4037        int i, contention_point, contending_point;
4038
4039        depth = curr->lockdep_depth;
4040        /*
4041         * Whee, we contended on this lock, except it seems we're not
4042         * actually trying to acquire anything much at all..
4043         */
4044        if (DEBUG_LOCKS_WARN_ON(!depth))
4045                return;
4046
4047        hlock = find_held_lock(curr, lock, depth, &i);
4048        if (!hlock) {
4049                print_lock_contention_bug(curr, lock, ip);
4050                return;
4051        }
4052
4053        if (hlock->instance != lock)
4054                return;
4055
4056        hlock->waittime_stamp = lockstat_clock();
4057
4058        contention_point = lock_point(hlock_class(hlock)->contention_point, ip);
4059        contending_point = lock_point(hlock_class(hlock)->contending_point,
4060                                      lock->ip);
4061
4062        stats = get_lock_stats(hlock_class(hlock));
4063        if (contention_point < LOCKSTAT_POINTS)
4064                stats->contention_point[contention_point]++;
4065        if (contending_point < LOCKSTAT_POINTS)
4066                stats->contending_point[contending_point]++;
4067        if (lock->cpu != smp_processor_id())
4068                stats->bounces[bounce_contended + !!hlock->read]++;
4069}
4070
4071static void
4072__lock_acquired(struct lockdep_map *lock, unsigned long ip)
4073{
4074        struct task_struct *curr = current;
4075        struct held_lock *hlock;
4076        struct lock_class_stats *stats;
4077        unsigned int depth;
4078        u64 now, waittime = 0;
4079        int i, cpu;
4080
4081        depth = curr->lockdep_depth;
4082        /*
4083         * Yay, we acquired ownership of this lock we didn't try to
4084         * acquire, how the heck did that happen?
4085         */
4086        if (DEBUG_LOCKS_WARN_ON(!depth))
4087                return;
4088
4089        hlock = find_held_lock(curr, lock, depth, &i);
4090        if (!hlock) {
4091                print_lock_contention_bug(curr, lock, _RET_IP_);
4092                return;
4093        }
4094
4095        if (hlock->instance != lock)
4096                return;
4097
4098        cpu = smp_processor_id();
4099        if (hlock->waittime_stamp) {
4100                now = lockstat_clock();
4101                waittime = now - hlock->waittime_stamp;
4102                hlock->holdtime_stamp = now;
4103        }
4104
4105        trace_lock_acquired(lock, ip);
4106
4107        stats = get_lock_stats(hlock_class(hlock));
4108        if (waittime) {
4109                if (hlock->read)
4110                        lock_time_inc(&stats->read_waittime, waittime);
4111                else
4112                        lock_time_inc(&stats->write_waittime, waittime);
4113        }
4114        if (lock->cpu != cpu)
4115                stats->bounces[bounce_acquired + !!hlock->read]++;
4116
4117        lock->cpu = cpu;
4118        lock->ip = ip;
4119}
4120
4121void lock_contended(struct lockdep_map *lock, unsigned long ip)
4122{
4123        unsigned long flags;
4124
4125        if (unlikely(!lock_stat))
4126                return;
4127
4128        if (unlikely(current->lockdep_recursion))
4129                return;
4130
4131        raw_local_irq_save(flags);
4132        check_flags(flags);
4133        current->lockdep_recursion = 1;
4134        trace_lock_contended(lock, ip);
4135        __lock_contended(lock, ip);
4136        current->lockdep_recursion = 0;
4137        raw_local_irq_restore(flags);
4138}
4139EXPORT_SYMBOL_GPL(lock_contended);
4140
4141void lock_acquired(struct lockdep_map *lock, unsigned long ip)
4142{
4143        unsigned long flags;
4144
4145        if (unlikely(!lock_stat))
4146                return;
4147
4148        if (unlikely(current->lockdep_recursion))
4149                return;
4150
4151        raw_local_irq_save(flags);
4152        check_flags(flags);
4153        current->lockdep_recursion = 1;
4154        __lock_acquired(lock, ip);
4155        current->lockdep_recursion = 0;
4156        raw_local_irq_restore(flags);
4157}
4158EXPORT_SYMBOL_GPL(lock_acquired);
4159#endif
4160
4161/*
4162 * Used by the testsuite, sanitize the validator state
4163 * after a simulated failure:
4164 */
4165
4166void lockdep_reset(void)
4167{
4168        unsigned long flags;
4169        int i;
4170
4171        raw_local_irq_save(flags);
4172        current->curr_chain_key = 0;
4173        current->lockdep_depth = 0;
4174        current->lockdep_recursion = 0;
4175        memset(current->held_locks, 0, MAX_LOCK_DEPTH*sizeof(struct held_lock));
4176        nr_hardirq_chains = 0;
4177        nr_softirq_chains = 0;
4178        nr_process_chains = 0;
4179        debug_locks = 1;
4180        for (i = 0; i < CHAINHASH_SIZE; i++)
4181                INIT_HLIST_HEAD(chainhash_table + i);
4182        raw_local_irq_restore(flags);
4183}
4184
4185static void zap_class(struct lock_class *class)
4186{
4187        int i;
4188
4189        /*
4190         * Remove all dependencies this lock is
4191         * involved in:
4192         */
4193        for (i = 0; i < nr_list_entries; i++) {
4194                if (list_entries[i].class == class)
4195                        list_del_rcu(&list_entries[i].entry);
4196        }
4197        /*
4198         * Unhash the class and remove it from the all_lock_classes list:
4199         */
4200        hlist_del_rcu(&class->hash_entry);
4201        list_del_rcu(&class->lock_entry);
4202
4203        RCU_INIT_POINTER(class->key, NULL);
4204        RCU_INIT_POINTER(class->name, NULL);
4205}
4206
4207static inline int within(const void *addr, void *start, unsigned long size)
4208{
4209        return addr >= start && addr < start + size;
4210}
4211
4212/*
4213 * Used in module.c to remove lock classes from memory that is going to be
4214 * freed; and possibly re-used by other modules.
4215 *
4216 * We will have had one sync_sched() before getting here, so we're guaranteed
4217 * nobody will look up these exact classes -- they're properly dead but still
4218 * allocated.
4219 */
4220void lockdep_free_key_range(void *start, unsigned long size)
4221{
4222        struct lock_class *class;
4223        struct hlist_head *head;
4224        unsigned long flags;
4225        int i;
4226        int locked;
4227
4228        raw_local_irq_save(flags);
4229        locked = graph_lock();
4230
4231        /*
4232         * Unhash all classes that were created by this module:
4233         */
4234        for (i = 0; i < CLASSHASH_SIZE; i++) {
4235                head = classhash_table + i;
4236                hlist_for_each_entry_rcu(class, head, hash_entry) {
4237                        if (within(class->key, start, size))
4238                                zap_class(class);
4239                        else if (within(class->name, start, size))
4240                                zap_class(class);
4241                }
4242        }
4243
4244        if (locked)
4245                graph_unlock();
4246        raw_local_irq_restore(flags);
4247
4248        /*
4249         * Wait for any possible iterators from look_up_lock_class() to pass
4250         * before continuing to free the memory they refer to.
4251         *
4252         * sync_sched() is sufficient because the read-side is IRQ disable.
4253         */
4254        synchronize_sched();
4255
4256        /*
4257         * XXX at this point we could return the resources to the pool;
4258         * instead we leak them. We would need to change to bitmap allocators
4259         * instead of the linear allocators we have now.
4260         */
4261}
4262
4263void lockdep_reset_lock(struct lockdep_map *lock)
4264{
4265        struct lock_class *class;
4266        struct hlist_head *head;
4267        unsigned long flags;
4268        int i, j;
4269        int locked;
4270
4271        raw_local_irq_save(flags);
4272
4273        /*
4274         * Remove all classes this lock might have:
4275         */
4276        for (j = 0; j < MAX_LOCKDEP_SUBCLASSES; j++) {
4277                /*
4278                 * If the class exists we look it up and zap it:
4279                 */
4280                class = look_up_lock_class(lock, j);
4281                if (class)
4282                        zap_class(class);
4283        }
4284        /*
4285         * Debug check: in the end all mapped classes should
4286         * be gone.
4287         */
4288        locked = graph_lock();
4289        for (i = 0; i < CLASSHASH_SIZE; i++) {
4290                head = classhash_table + i;
4291                hlist_for_each_entry_rcu(class, head, hash_entry) {
4292                        int match = 0;
4293
4294                        for (j = 0; j < NR_LOCKDEP_CACHING_CLASSES; j++)
4295                                match |= class == lock->class_cache[j];
4296
4297                        if (unlikely(match)) {
4298                                if (debug_locks_off_graph_unlock()) {
4299                                        /*
4300                                         * We all just reset everything, how did it match?
4301                                         */
4302                                        WARN_ON(1);
4303                                }
4304                                goto out_restore;
4305                        }
4306                }
4307        }
4308        if (locked)
4309                graph_unlock();
4310
4311out_restore:
4312        raw_local_irq_restore(flags);
4313}
4314
4315void __init lockdep_init(void)
4316{
4317        printk("Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar\n");
4318
4319        printk("... MAX_LOCKDEP_SUBCLASSES:  %lu\n", MAX_LOCKDEP_SUBCLASSES);
4320        printk("... MAX_LOCK_DEPTH:          %lu\n", MAX_LOCK_DEPTH);
4321        printk("... MAX_LOCKDEP_KEYS:        %lu\n", MAX_LOCKDEP_KEYS);
4322        printk("... CLASSHASH_SIZE:          %lu\n", CLASSHASH_SIZE);
4323        printk("... MAX_LOCKDEP_ENTRIES:     %lu\n", MAX_LOCKDEP_ENTRIES);
4324        printk("... MAX_LOCKDEP_CHAINS:      %lu\n", MAX_LOCKDEP_CHAINS);
4325        printk("... CHAINHASH_SIZE:          %lu\n", CHAINHASH_SIZE);
4326
4327        printk(" memory used by lock dependency info: %lu kB\n",
4328                (sizeof(struct lock_class) * MAX_LOCKDEP_KEYS +
4329                sizeof(struct list_head) * CLASSHASH_SIZE +
4330                sizeof(struct lock_list) * MAX_LOCKDEP_ENTRIES +
4331                sizeof(struct lock_chain) * MAX_LOCKDEP_CHAINS +
4332                sizeof(struct list_head) * CHAINHASH_SIZE
4333#ifdef CONFIG_PROVE_LOCKING
4334                + sizeof(struct circular_queue)
4335#endif
4336                ) / 1024
4337                );
4338
4339        printk(" per task-struct memory footprint: %lu bytes\n",
4340                sizeof(struct held_lock) * MAX_LOCK_DEPTH);
4341}
4342
4343static void
4344print_freed_lock_bug(struct task_struct *curr, const void *mem_from,
4345                     const void *mem_to, struct held_lock *hlock)
4346{
4347        if (!debug_locks_off())
4348                return;
4349        if (debug_locks_silent)
4350                return;
4351
4352        pr_warn("\n");
4353        pr_warn("=========================\n");
4354        pr_warn("WARNING: held lock freed!\n");
4355        print_kernel_ident();
4356        pr_warn("-------------------------\n");
4357        pr_warn("%s/%d is freeing memory %px-%px, with a lock still held there!\n",
4358                curr->comm, task_pid_nr(curr), mem_from, mem_to-1);
4359        print_lock(hlock);
4360        lockdep_print_held_locks(curr);
4361
4362        pr_warn("\nstack backtrace:\n");
4363        dump_stack();
4364}
4365
4366static inline int not_in_range(const void* mem_from, unsigned long mem_len,
4367                                const void* lock_from, unsigned long lock_len)
4368{
4369        return lock_from + lock_len <= mem_from ||
4370                mem_from + mem_len <= lock_from;
4371}
4372
4373/*
4374 * Called when kernel memory is freed (or unmapped), or if a lock
4375 * is destroyed or reinitialized - this code checks whether there is
4376 * any held lock in the memory range of <from> to <to>:
4377 */
4378void debug_check_no_locks_freed(const void *mem_from, unsigned long mem_len)
4379{
4380        struct task_struct *curr = current;
4381        struct held_lock *hlock;
4382        unsigned long flags;
4383        int i;
4384
4385        if (unlikely(!debug_locks))
4386                return;
4387
4388        raw_local_irq_save(flags);
4389        for (i = 0; i < curr->lockdep_depth; i++) {
4390                hlock = curr->held_locks + i;
4391
4392                if (not_in_range(mem_from, mem_len, hlock->instance,
4393                                        sizeof(*hlock->instance)))
4394                        continue;
4395
4396                print_freed_lock_bug(curr, mem_from, mem_from + mem_len, hlock);
4397                break;
4398        }
4399        raw_local_irq_restore(flags);
4400}
4401EXPORT_SYMBOL_GPL(debug_check_no_locks_freed);
4402
4403static void print_held_locks_bug(void)
4404{
4405        if (!debug_locks_off())
4406                return;
4407        if (debug_locks_silent)
4408                return;
4409
4410        pr_warn("\n");
4411        pr_warn("====================================\n");
4412        pr_warn("WARNING: %s/%d still has locks held!\n",
4413               current->comm, task_pid_nr(current));
4414        print_kernel_ident();
4415        pr_warn("------------------------------------\n");
4416        lockdep_print_held_locks(current);
4417        pr_warn("\nstack backtrace:\n");
4418        dump_stack();
4419}
4420
4421void debug_check_no_locks_held(void)
4422{
4423        if (unlikely(current->lockdep_depth > 0))
4424                print_held_locks_bug();
4425}
4426EXPORT_SYMBOL_GPL(debug_check_no_locks_held);
4427
4428#ifdef __KERNEL__
4429void debug_show_all_locks(void)
4430{
4431        struct task_struct *g, *p;
4432
4433        if (unlikely(!debug_locks)) {
4434                pr_warn("INFO: lockdep is turned off.\n");
4435                return;
4436        }
4437        pr_warn("\nShowing all locks held in the system:\n");
4438
4439        rcu_read_lock();
4440        for_each_process_thread(g, p) {
4441                if (!p->lockdep_depth)
4442                        continue;
4443                lockdep_print_held_locks(p);
4444                touch_nmi_watchdog();
4445                touch_all_softlockup_watchdogs();
4446        }
4447        rcu_read_unlock();
4448
4449        pr_warn("\n");
4450        pr_warn("=============================================\n\n");
4451}
4452EXPORT_SYMBOL_GPL(debug_show_all_locks);
4453#endif
4454
4455/*
4456 * Careful: only use this function if you are sure that
4457 * the task cannot run in parallel!
4458 */
4459void debug_show_held_locks(struct task_struct *task)
4460{
4461        if (unlikely(!debug_locks)) {
4462                printk("INFO: lockdep is turned off.\n");
4463                return;
4464        }
4465        lockdep_print_held_locks(task);
4466}
4467EXPORT_SYMBOL_GPL(debug_show_held_locks);
4468
4469asmlinkage __visible void lockdep_sys_exit(void)
4470{
4471        struct task_struct *curr = current;
4472
4473        if (unlikely(curr->lockdep_depth)) {
4474                if (!debug_locks_off())
4475                        return;
4476                pr_warn("\n");
4477                pr_warn("================================================\n");
4478                pr_warn("WARNING: lock held when returning to user space!\n");
4479                print_kernel_ident();
4480                pr_warn("------------------------------------------------\n");
4481                pr_warn("%s/%d is leaving the kernel with locks still held!\n",
4482                                curr->comm, curr->pid);
4483                lockdep_print_held_locks(curr);
4484        }
4485
4486        /*
4487         * The lock history for each syscall should be independent. So wipe the
4488         * slate clean on return to userspace.
4489         */
4490        lockdep_invariant_state(false);
4491}
4492
4493void lockdep_rcu_suspicious(const char *file, const int line, const char *s)
4494{
4495        struct task_struct *curr = current;
4496
4497        /* Note: the following can be executed concurrently, so be careful. */
4498        pr_warn("\n");
4499        pr_warn("=============================\n");
4500        pr_warn("WARNING: suspicious RCU usage\n");
4501        print_kernel_ident();
4502        pr_warn("-----------------------------\n");
4503        pr_warn("%s:%d %s!\n", file, line, s);
4504        pr_warn("\nother info that might help us debug this:\n\n");
4505        pr_warn("\n%srcu_scheduler_active = %d, debug_locks = %d\n",
4506               !rcu_lockdep_current_cpu_online()
4507                        ? "RCU used illegally from offline CPU!\n"
4508                        : !rcu_is_watching()
4509                                ? "RCU used illegally from idle CPU!\n"
4510                                : "",
4511               rcu_scheduler_active, debug_locks);
4512
4513        /*
4514         * If a CPU is in the RCU-free window in idle (ie: in the section
4515         * between rcu_idle_enter() and rcu_idle_exit(), then RCU
4516         * considers that CPU to be in an "extended quiescent state",
4517         * which means that RCU will be completely ignoring that CPU.
4518         * Therefore, rcu_read_lock() and friends have absolutely no
4519         * effect on a CPU running in that state. In other words, even if
4520         * such an RCU-idle CPU has called rcu_read_lock(), RCU might well
4521         * delete data structures out from under it.  RCU really has no
4522         * choice here: we need to keep an RCU-free window in idle where
4523         * the CPU may possibly enter into low power mode. This way we can
4524         * notice an extended quiescent state to other CPUs that started a grace
4525         * period. Otherwise we would delay any grace period as long as we run
4526         * in the idle task.
4527         *
4528         * So complain bitterly if someone does call rcu_read_lock(),
4529         * rcu_read_lock_bh() and so on from extended quiescent states.
4530         */
4531        if (!rcu_is_watching())
4532                pr_warn("RCU used illegally from extended quiescent state!\n");
4533
4534        lockdep_print_held_locks(curr);
4535        pr_warn("\nstack backtrace:\n");
4536        dump_stack();
4537}
4538EXPORT_SYMBOL_GPL(lockdep_rcu_suspicious);
4539