crash_dump.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /*
  2. * kernel/crash_dump.c - 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/smp_lock.h>
  8. #include <linux/errno.h>
  9. #include <linux/proc_fs.h>
  10. #include <linux/bootmem.h>
  11. #include <linux/highmem.h>
  12. #include <linux/crash_dump.h>
  13. #include <asm/io.h>
  14. #include <asm/uaccess.h>
  15. #include <asm/kexec.h>
  16. /* Stores the physical address of elf header of crash image. */
  17. unsigned long long elfcorehdr_addr = ELFCORE_ADDR_MAX;
  18. #ifndef HAVE_ARCH_COPY_OLDMEM_PAGE
  19. /**
  20. * copy_oldmem_page - copy one page from "oldmem"
  21. * @pfn: page frame number to be copied
  22. * @buf: target memory address for the copy; this can be in kernel address
  23. * space or user address space (see @userbuf)
  24. * @csize: number of bytes to copy
  25. * @offset: offset in bytes into the page (based on pfn) to begin the copy
  26. * @userbuf: if set, @buf is in user address space, use copy_to_user(),
  27. * otherwise @buf is in kernel address space, use memcpy().
  28. *
  29. * Copy a page from "oldmem". For this page, there is no pte mapped
  30. * in the current kernel. We stitch up a pte, similar to kmap_atomic.
  31. */
  32. ssize_t copy_oldmem_page(unsigned long pfn, char *buf,
  33. size_t csize, unsigned long offset, int userbuf)
  34. {
  35. void *page, *vaddr;
  36. if (!csize)
  37. return 0;
  38. page = kmalloc(PAGE_SIZE, GFP_KERNEL);
  39. if (!page)
  40. return -ENOMEM;
  41. vaddr = kmap_atomic_pfn(pfn, KM_PTE0);
  42. copy_page(page, vaddr);
  43. kunmap_atomic(vaddr, KM_PTE0);
  44. if (userbuf) {
  45. if (copy_to_user(buf, (page + offset), csize)) {
  46. kfree(page);
  47. return -EFAULT;
  48. }
  49. } else {
  50. memcpy(buf, (page + offset), csize);
  51. }
  52. kfree(page);
  53. return csize;
  54. }
  55. #endif