crash_dump_32.c 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*
  2. * Memory preserving reboot related code.
  3. *
  4. * Created by: Hariprasad Nellitheertha (hari@in.ibm.com)
  5. * Copyright (C) IBM Corporation, 2004. All rights reserved
  6. */
  7. #include <linux/slab.h>
  8. #include <linux/errno.h>
  9. #include <linux/highmem.h>
  10. #include <linux/crash_dump.h>
  11. #include <asm/uaccess.h>
  12. static void *kdump_buf_page;
  13. static inline bool is_crashed_pfn_valid(unsigned long pfn)
  14. {
  15. #ifndef CONFIG_X86_PAE
  16. /*
  17. * non-PAE kdump kernel executed from a PAE one will crop high pte
  18. * bits and poke unwanted space counting again from address 0, we
  19. * don't want that. pte must fit into unsigned long. In fact the
  20. * test checks high 12 bits for being zero (pfn will be shifted left
  21. * by PAGE_SHIFT).
  22. */
  23. return pte_pfn(pfn_pte(pfn, __pgprot(0))) == pfn;
  24. #else
  25. return true;
  26. #endif
  27. }
  28. /**
  29. * copy_oldmem_page - copy one page from "oldmem"
  30. * @pfn: page frame number to be copied
  31. * @buf: target memory address for the copy; this can be in kernel address
  32. * space or user address space (see @userbuf)
  33. * @csize: number of bytes to copy
  34. * @offset: offset in bytes into the page (based on pfn) to begin the copy
  35. * @userbuf: if set, @buf is in user address space, use copy_to_user(),
  36. * otherwise @buf is in kernel address space, use memcpy().
  37. *
  38. * Copy a page from "oldmem". For this page, there is no pte mapped
  39. * in the current kernel. We stitch up a pte, similar to kmap_atomic.
  40. *
  41. * Calling copy_to_user() in atomic context is not desirable. Hence first
  42. * copying the data to a pre-allocated kernel page and then copying to user
  43. * space in non-atomic context.
  44. */
  45. ssize_t copy_oldmem_page(unsigned long pfn, char *buf,
  46. size_t csize, unsigned long offset, int userbuf)
  47. {
  48. void *vaddr;
  49. if (!csize)
  50. return 0;
  51. if (!is_crashed_pfn_valid(pfn))
  52. return -EFAULT;
  53. vaddr = kmap_atomic_pfn(pfn);
  54. if (!userbuf) {
  55. memcpy(buf, (vaddr + offset), csize);
  56. kunmap_atomic(vaddr);
  57. } else {
  58. if (!kdump_buf_page) {
  59. printk(KERN_WARNING "Kdump: Kdump buffer page not"
  60. " allocated\n");
  61. kunmap_atomic(vaddr);
  62. return -EFAULT;
  63. }
  64. copy_page(kdump_buf_page, vaddr);
  65. kunmap_atomic(vaddr);
  66. if (copy_to_user(buf, (kdump_buf_page + offset), csize))
  67. return -EFAULT;
  68. }
  69. return csize;
  70. }
  71. static int __init kdump_buf_page_init(void)
  72. {
  73. int ret = 0;
  74. kdump_buf_page = kmalloc(PAGE_SIZE, GFP_KERNEL);
  75. if (!kdump_buf_page) {
  76. printk(KERN_WARNING "Kdump: Failed to allocate kdump buffer"
  77. " page\n");
  78. ret = -ENOMEM;
  79. }
  80. return ret;
  81. }
  82. arch_initcall(kdump_buf_page_init);