list_debug.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * Copyright 2006, Red Hat, Inc., Dave Jones
  3. * Released under the General Public License (GPL).
  4. *
  5. * This file contains the linked list validation for DEBUG_LIST.
  6. */
  7. #include <linux/export.h>
  8. #include <linux/list.h>
  9. #include <linux/bug.h>
  10. #include <linux/kernel.h>
  11. #include <linux/rculist.h>
  12. #include <linux/bug.h>
  13. /*
  14. * Check that the data structures for the list manipulations are reasonably
  15. * valid. Failures here indicate memory corruption (and possibly an exploit
  16. * attempt).
  17. */
  18. bool __list_add_valid(struct list_head *new, struct list_head *prev,
  19. struct list_head *next)
  20. {
  21. if (CHECK_DATA_CORRUPTION(next->prev != prev,
  22. "list_add corruption. next->prev should be prev (%p), but was %p. (next=%p).\n",
  23. prev, next->prev, next) ||
  24. CHECK_DATA_CORRUPTION(prev->next != next,
  25. "list_add corruption. prev->next should be next (%p), but was %p. (prev=%p).\n",
  26. next, prev->next, prev) ||
  27. CHECK_DATA_CORRUPTION(new == prev || new == next,
  28. "list_add double add: new=%p, prev=%p, next=%p.\n",
  29. new, prev, next))
  30. return false;
  31. return true;
  32. }
  33. EXPORT_SYMBOL(__list_add_valid);
  34. bool __list_del_entry_valid(struct list_head *entry)
  35. {
  36. struct list_head *prev, *next;
  37. prev = entry->prev;
  38. next = entry->next;
  39. if (CHECK_DATA_CORRUPTION(next == LIST_POISON1,
  40. "list_del corruption, %p->next is LIST_POISON1 (%p)\n",
  41. entry, LIST_POISON1) ||
  42. CHECK_DATA_CORRUPTION(prev == LIST_POISON2,
  43. "list_del corruption, %p->prev is LIST_POISON2 (%p)\n",
  44. entry, LIST_POISON2) ||
  45. CHECK_DATA_CORRUPTION(prev->next != entry,
  46. "list_del corruption. prev->next should be %p, but was %p\n",
  47. entry, prev->next) ||
  48. CHECK_DATA_CORRUPTION(next->prev != entry,
  49. "list_del corruption. next->prev should be %p, but was %p\n",
  50. entry, next->prev))
  51. return false;
  52. return true;
  53. }
  54. EXPORT_SYMBOL(__list_del_entry_valid);