addnote.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.addnote.c 1.7 05/18/01 15:17:23 cort
  3.  */
  4. /*
  5.  * Program to hack in a PT_NOTE program header entry in an ELF file.
  6.  * This is needed for OF on RS/6000s to load an image correctly.
  7.  * Note that OF needs a program header entry for the note, not an
  8.  * ELF section.
  9.  *
  10.  * Copyright 2000 Paul Mackerras.
  11.  *
  12.  * This program is free software; you can redistribute it and/or
  13.  * modify it under the terms of the GNU General Public License
  14.  * as published by the Free Software Foundation; either version
  15.  * 2 of the License, or (at your option) any later version.
  16.  *
  17.  * Usage: addnote zImage
  18.  */
  19. #include <stdio.h>
  20. #include <fcntl.h>
  21. #include <unistd.h>
  22. #include <string.h>
  23. char arch[] = "PowerPC";
  24. #define N_DESCR 6
  25. unsigned int descr[N_DESCR] = {
  26. #if 1
  27. /* values for IBM RS/6000 machines */
  28. 0xffffffff, /* real-mode = true */
  29. 0x00c00000, /* real-base, i.e. where we expect OF to be */
  30. 0xffffffff, /* real-size */
  31. 0xffffffff, /* virt-base */
  32. 0xffffffff, /* virt-size */
  33. 0x4000, /* load-base */
  34. #else
  35. /* values for longtrail CHRP */
  36. 0, /* real-mode = false */
  37. 0xffffffff, /* real-base */
  38. 0xffffffff, /* real-size */
  39. 0xffffffff, /* virt-base */
  40. 0xffffffff, /* virt-size */
  41. 0x00600000, /* load-base */
  42. #endif
  43. };
  44. unsigned char buf[512];
  45. #define GET_16BE(off) ((buf[off] << 8) + (buf[(off)+1]))
  46. #define GET_32BE(off) ((GET_16BE(off) << 16) + GET_16BE((off)+2))
  47. #define PUT_16BE(off, v) (buf[off] = ((v) >> 8) & 0xff, 
  48.  buf[(off) + 1] = (v) & 0xff)
  49. #define PUT_32BE(off, v) (PUT_16BE((off), (v) >> 16), 
  50.  PUT_16BE((off) + 2, (v)))
  51. /* Structure of an ELF file */
  52. #define E_IDENT 0 /* ELF header */
  53. #define E_PHOFF 28
  54. #define E_PHENTSIZE 42
  55. #define E_PHNUM 44
  56. #define E_HSIZE 52 /* size of ELF header */
  57. #define EI_MAGIC 0 /* offsets in E_IDENT area */
  58. #define EI_CLASS 4
  59. #define EI_DATA 5
  60. #define PH_TYPE 0 /* ELF program header */
  61. #define PH_OFFSET 4
  62. #define PH_FILESZ 16
  63. #define PH_HSIZE 32 /* size of program header */
  64. #define PT_NOTE 4 /* Program header type = note */
  65. #define ELFCLASS32 1
  66. #define ELFDATA2MSB 2
  67. unsigned char elf_magic[4] = { 0x7f, 'E', 'L', 'F' };
  68. int main(int ac, char **av)
  69. {
  70. int fd, n, i;
  71. int ph, ps, np;
  72. int nnote, ns;
  73. if (ac != 2) {
  74. fprintf(stderr, "Usage: %s elf-filen", av[0]);
  75. exit(1);
  76. }
  77. fd = open(av[1], O_RDWR);
  78. if (fd < 0) {
  79. perror(av[1]);
  80. exit(1);
  81. }
  82. nnote = strlen(arch) + 1 + (N_DESCR + 3) * 4;
  83. n = read(fd, buf, sizeof(buf));
  84. if (n < 0) {
  85. perror("read");
  86. exit(1);
  87. }
  88. if (n < E_HSIZE || memcmp(&buf[E_IDENT+EI_MAGIC], elf_magic, 4) != 0)
  89. goto notelf;
  90. if (buf[E_IDENT+EI_CLASS] != ELFCLASS32
  91.     || buf[E_IDENT+EI_DATA] != ELFDATA2MSB) {
  92. fprintf(stderr, "%s is not a big-endian 32-bit ELF imagen",
  93. av[1]);
  94. exit(1);
  95. }
  96. ph = GET_32BE(E_PHOFF);
  97. ps = GET_16BE(E_PHENTSIZE);
  98. np = GET_16BE(E_PHNUM);
  99. if (ph < E_HSIZE || ps < PH_HSIZE || np < 1)
  100. goto notelf;
  101. if (ph + (np + 1) * ps + nnote > n)
  102. goto nospace;
  103. for (i = 0; i < np; ++i) {
  104. if (GET_32BE(ph + PH_TYPE) == PT_NOTE) {
  105. fprintf(stderr, "%s already has a note entryn",
  106. av[1]);
  107. exit(0);
  108. }
  109. ph += ps;
  110. }
  111. /* XXX check that the area we want to use is all zeroes */
  112. for (i = 0; i < ps + nnote; ++i)
  113. if (buf[ph + i] != 0)
  114. goto nospace;
  115. /* fill in the program header entry */
  116. ns = ph + ps;
  117. PUT_32BE(ph + PH_TYPE, PT_NOTE);
  118. PUT_32BE(ph + PH_OFFSET, ns);
  119. PUT_32BE(ph + PH_FILESZ, nnote);
  120. /* fill in the note area we point to */
  121. /* XXX we should probably make this a proper section */
  122. PUT_32BE(ns, strlen(arch) + 1);
  123. PUT_32BE(ns + 4, N_DESCR * 4);
  124. PUT_32BE(ns + 8, 0x1275);
  125. strcpy(&buf[ns + 12], arch);
  126. ns += 12 + strlen(arch) + 1;
  127. for (i = 0; i < N_DESCR; ++i)
  128. PUT_32BE(ns + i * 4, descr[i]);
  129. /* Update the number of program headers */
  130. PUT_16BE(E_PHNUM, np + 1);
  131. /* write back */
  132. lseek(fd, (long) 0, SEEK_SET);
  133. i = write(fd, buf, n);
  134. if (i < 0) {
  135. perror("write");
  136. exit(1);
  137. }
  138. if (i < n) {
  139. fprintf(stderr, "%s: write truncatedn", av[1]);
  140. exit(1);
  141. }
  142. exit(0);
  143.  notelf:
  144. fprintf(stderr, "%s does not appear to be an ELF filen", av[0]);
  145. exit(1);
  146.  nospace:
  147. fprintf(stderr, "sorry, I can't find space in %s to put the noten",
  148. av[0]);
  149. exit(1);
  150. }