patch-dtb.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*
  2. * patch-dtb.c - patch a dtb into an image
  3. *
  4. * Copyright (C) 2006 Felix Fietkau <[email protected]>
  5. * Copyright (C) 2012 John Crispin <[email protected]>
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version 2
  10. * of the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  20. *
  21. * based on patch-cmdline.c
  22. */
  23. #include <stdio.h>
  24. #include <stdlib.h>
  25. #include <stddef.h>
  26. #include <unistd.h>
  27. #include <fcntl.h>
  28. #include <sys/mman.h>
  29. #include <sys/stat.h>
  30. #include <string.h>
  31. #define SEARCH_SPACE (16 * 1024)
  32. #define DTB_MAX (16 * 1024)
  33. int main(int argc, char **argv)
  34. {
  35. int fd, fddtb, found = 0, len, ret = -1;
  36. char *ptr, *ptrdtb, *p;
  37. struct stat s;
  38. if (argc != 3) {
  39. fprintf(stderr, "Usage: %s <file> <dtb>\n", argv[0]);
  40. goto err1;
  41. }
  42. fddtb = open(argv[1], O_RDONLY);
  43. if (!fddtb)
  44. goto err1;
  45. if (stat(argv[2], &s)) {
  46. fprintf(stderr, "DTB not found\n");
  47. goto err1;
  48. }
  49. len = s.st_size;
  50. if (len + 8 > DTB_MAX) {
  51. fprintf(stderr, "DTB too big\n");
  52. goto err1;
  53. }
  54. if (((fddtb = open(argv[2], O_RDONLY)) < 0) ||
  55. (ptrdtb = (char *) mmap(0, DTB_MAX, PROT_READ, MAP_SHARED, fddtb, 0)) == (void *) (-1)) {
  56. fprintf(stderr, "Could not open DTB");
  57. goto err2;
  58. }
  59. if (((fd = open(argv[1], O_RDWR)) < 0) ||
  60. (ptr = (char *) mmap(0, SEARCH_SPACE + DTB_MAX, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0)) == (void *) (-1)) {
  61. fprintf(stderr, "Could not open kernel image");
  62. goto err3;
  63. }
  64. for (p = ptr; p < (ptr + SEARCH_SPACE); p += 4) {
  65. if (memcmp(p, "OWRTDTB:", 8) == 0) {
  66. found = 1;
  67. p += 8;
  68. break;
  69. }
  70. }
  71. if (!found) {
  72. fprintf(stderr, "DTB marker not found!\n");
  73. goto err4;
  74. }
  75. memset(p, 0, DTB_MAX - 8);
  76. memcpy(p, ptrdtb, len);
  77. msync(p, len, MS_SYNC|MS_INVALIDATE);
  78. ret = 0;
  79. err4:
  80. munmap((void *) ptr, len);
  81. err3:
  82. if (fd > 0)
  83. close(fd);
  84. munmap((void *) ptrdtb, len);
  85. err2:
  86. if (fddtb > 0)
  87. close(fddtb);
  88. err1:
  89. return ret;
  90. }