calc_vmlinuz_load_addr.c 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * Copyright (C) 2010 "Wu Zhangjin" <wuzhangjin@gmail.com>
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms of the GNU General Public License as published by the
  6. * Free Software Foundation; either version 2 of the License, or (at your
  7. * option) any later version.
  8. */
  9. #include <sys/types.h>
  10. #include <sys/stat.h>
  11. #include <errno.h>
  12. #include <stdint.h>
  13. #include <stdio.h>
  14. #include <stdlib.h>
  15. #include "../../../../include/linux/sizes.h"
  16. int main(int argc, char *argv[])
  17. {
  18. unsigned long long vmlinux_size, vmlinux_load_addr, vmlinuz_load_addr;
  19. struct stat sb;
  20. if (argc != 3) {
  21. fprintf(stderr, "Usage: %s <pathname> <vmlinux_load_addr>\n",
  22. argv[0]);
  23. return EXIT_FAILURE;
  24. }
  25. if (stat(argv[1], &sb) == -1) {
  26. perror("stat");
  27. return EXIT_FAILURE;
  28. }
  29. /* Convert hex characters to dec number */
  30. errno = 0;
  31. if (sscanf(argv[2], "%llx", &vmlinux_load_addr) != 1) {
  32. if (errno != 0)
  33. perror("sscanf");
  34. else
  35. fprintf(stderr, "No matching characters\n");
  36. return EXIT_FAILURE;
  37. }
  38. vmlinux_size = (uint64_t)sb.st_size;
  39. vmlinuz_load_addr = vmlinux_load_addr + vmlinux_size;
  40. /*
  41. * Align with 64KB: KEXEC needs load sections to be aligned to PAGE_SIZE,
  42. * which may be as large as 64KB depending on the kernel configuration.
  43. */
  44. vmlinuz_load_addr += (SZ_64K - vmlinux_size % SZ_64K);
  45. printf("0x%llx\n", vmlinuz_load_addr);
  46. return EXIT_SUCCESS;
  47. }