2 * Program to hack in a PT_NOTE program header entry in an ELF file.
3 * This is needed for OF on RS/6000s to load an image correctly.
4 * Note that OF needs a program header entry for the note, not an
7 * Copyright 2000 Paul Mackerras.
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
14 * Usage: addnote zImage
22 char arch
[] = "PowerPC";
25 unsigned int descr
[N_DESCR
] = {
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 */
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 */
45 unsigned char buf
[512];
47 #define GET_16BE(off) ((buf[off] << 8) + (buf[(off)+1]))
48 #define GET_32BE(off) ((GET_16BE(off) << 16) + GET_16BE((off)+2))
50 #define PUT_16BE(off, v) (buf[off] = ((v) >> 8) & 0xff, \
51 buf[(off) + 1] = (v) & 0xff)
52 #define PUT_32BE(off, v) (PUT_16BE((off), (v) >> 16), \
53 PUT_16BE((off) + 2, (v)))
55 /* Structure of an ELF file */
56 #define E_IDENT 0 /* ELF header */
58 #define E_PHENTSIZE 42
60 #define E_HSIZE 52 /* size of ELF header */
62 #define EI_MAGIC 0 /* offsets in E_IDENT area */
66 #define PH_TYPE 0 /* ELF program header */
69 #define PH_HSIZE 32 /* size of program header */
71 #define PT_NOTE 4 /* Program header type = note */
76 unsigned char elf_magic
[4] = { 0x7f, 'E', 'L', 'F' };
78 int main(int ac
, char **av
)
85 fprintf(stderr
, "Usage: %s elf-file\n", av
[0]);
88 fd
= open(av
[1], O_RDWR
);
94 nnote
= strlen(arch
) + 1 + (N_DESCR
+ 3) * 4;
96 n
= read(fd
, buf
, sizeof(buf
));
102 if (n
< E_HSIZE
|| memcmp(&buf
[E_IDENT
+EI_MAGIC
], elf_magic
, 4) != 0)
105 if (buf
[E_IDENT
+EI_CLASS
] != ELFCLASS32
106 || buf
[E_IDENT
+EI_DATA
] != ELFDATA2MSB
) {
107 fprintf(stderr
, "%s is not a big-endian 32-bit ELF image\n",
112 ph
= GET_32BE(E_PHOFF
);
113 ps
= GET_16BE(E_PHENTSIZE
);
114 np
= GET_16BE(E_PHNUM
);
115 if (ph
< E_HSIZE
|| ps
< PH_HSIZE
|| np
< 1)
117 if (ph
+ (np
+ 1) * ps
+ nnote
> n
)
120 for (i
= 0; i
< np
; ++i
) {
121 if (GET_32BE(ph
+ PH_TYPE
) == PT_NOTE
) {
122 fprintf(stderr
, "%s already has a note entry\n",
129 /* XXX check that the area we want to use is all zeroes */
130 for (i
= 0; i
< ps
+ nnote
; ++i
)
131 if (buf
[ph
+ i
] != 0)
134 /* fill in the program header entry */
136 PUT_32BE(ph
+ PH_TYPE
, PT_NOTE
);
137 PUT_32BE(ph
+ PH_OFFSET
, ns
);
138 PUT_32BE(ph
+ PH_FILESZ
, nnote
);
140 /* fill in the note area we point to */
141 /* XXX we should probably make this a proper section */
142 PUT_32BE(ns
, strlen(arch
) + 1);
143 PUT_32BE(ns
+ 4, N_DESCR
* 4);
144 PUT_32BE(ns
+ 8, 0x1275);
145 strcpy(&buf
[ns
+ 12], arch
);
146 ns
+= 12 + strlen(arch
) + 1;
147 for (i
= 0; i
< N_DESCR
; ++i
)
148 PUT_32BE(ns
+ i
* 4, descr
[i
]);
150 /* Update the number of program headers */
151 PUT_16BE(E_PHNUM
, np
+ 1);
154 lseek(fd
, (long) 0, SEEK_SET
);
155 i
= write(fd
, buf
, n
);
161 fprintf(stderr
, "%s: write truncated\n", av
[1]);
168 fprintf(stderr
, "%s does not appear to be an ELF file\n", av
[0]);
172 fprintf(stderr
, "sorry, I can't find space in %s to put the note\n",