xref: /freebsd/usr.sbin/crunch/crunchide/exec_elf32.c (revision 390e8cc2974df1888369c06339ef8e0e92b312b6)
1 /*
2  * Copyright (c) 1997 Christopher G. Demetriou.  All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  * 3. All advertising materials mentioning features or use of this software
13  *    must display the following acknowledgement:
14  *      This product includes software developed by Christopher G. Demetriou
15  *	for the NetBSD Project.
16  * 4. The name of the author may not be used to endorse or promote products
17  *    derived from this software without specific prior written permission
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30 
31 #include <sys/cdefs.h>
32 #ifndef lint
33 #if 0
34 __RCSID("$NetBSD: exec_elf32.c,v 1.4 1997/08/12 06:07:24 mikel Exp $");
35 #endif
36 #endif
37 __FBSDID("$FreeBSD$");
38 
39 #ifndef ELFSIZE
40 #define ELFSIZE         32
41 #endif
42 
43 #include <sys/types.h>
44 #include <sys/endian.h>
45 #include <sys/stat.h>
46 
47 #include <errno.h>
48 #include <stdio.h>
49 #include <stdlib.h>
50 #include <string.h>
51 #include <unistd.h>
52 
53 #include "extern.h"
54 
55 #if (defined(NLIST_ELF32) && (ELFSIZE == 32)) || \
56     (defined(NLIST_ELF64) && (ELFSIZE == 64))
57 
58 #define	__ELF_WORD_SIZE ELFSIZE
59 #if (ELFSIZE == 32)
60 #include <sys/elf32.h>
61 #define	xewtoh(x)	((data == ELFDATA2MSB) ? be32toh(x) : le32toh(x))
62 #define	htoxew(x)	((data == ELFDATA2MSB) ? htobe32(x) : htole32(x))
63 #elif (ELFSIZE == 64)
64 #include <sys/elf64.h>
65 #define	xewtoh(x)	((data == ELFDATA2MSB) ? be64toh(x) : le64toh(x))
66 #define	htoxew(x)	((data == ELFDATA2MSB) ? htobe64(x) : htole64(x))
67 #endif
68 #include <sys/elf_generic.h>
69 
70 #define CONCAT(x,y)     __CONCAT(x,y)
71 #define ELFNAME(x)      CONCAT(elf,CONCAT(ELFSIZE,CONCAT(_,x)))
72 #define ELFNAME2(x,y)   CONCAT(x,CONCAT(_elf,CONCAT(ELFSIZE,CONCAT(_,y))))
73 #define ELFNAMEEND(x)   CONCAT(x,CONCAT(_elf,ELFSIZE))
74 #define ELFDEFNNAME(x)  CONCAT(ELF,CONCAT(ELFSIZE,CONCAT(_,x)))
75 
76 #define	xe16toh(x)	((data == ELFDATA2MSB) ? be16toh(x) : le16toh(x))
77 #define	xe32toh(x)	((data == ELFDATA2MSB) ? be32toh(x) : le32toh(x))
78 #define	htoxe32(x)	((data == ELFDATA2MSB) ? htobe32(x) : htole32(x))
79 
80 struct listelem {
81 	struct listelem *next;
82 	void *mem;
83 	off_t file;
84 	size_t size;
85 };
86 
87 static ssize_t
88 xreadatoff(int fd, void *buf, off_t off, size_t size, const char *fn)
89 {
90 	ssize_t rv;
91 
92 	if (lseek(fd, off, SEEK_SET) != off) {
93 		perror(fn);
94 		return -1;
95 	}
96 	if ((rv = read(fd, buf, size)) != size) {
97 		fprintf(stderr, "%s: read error: %s\n", fn,
98 		    rv == -1 ? strerror(errno) : "short read");
99 		return -1;
100 	}
101 	return size;
102 }
103 
104 static ssize_t
105 xwriteatoff(int fd, void *buf, off_t off, size_t size, const char *fn)
106 {
107 	ssize_t rv;
108 
109 	if (lseek(fd, off, SEEK_SET) != off) {
110 		perror(fn);
111 		return -1;
112 	}
113 	if ((rv = write(fd, buf, size)) != size) {
114 		fprintf(stderr, "%s: write error: %s\n", fn,
115 		    rv == -1 ? strerror(errno) : "short write");
116 		return -1;
117 	}
118 	return size;
119 }
120 
121 static void *
122 xmalloc(size_t size, const char *fn, const char *use)
123 {
124 	void *rv;
125 
126 	rv = malloc(size);
127 	if (rv == NULL)
128 		fprintf(stderr, "%s: out of memory (allocating for %s)\n",
129 		    fn, use);
130 	return (rv);
131 }
132 
133 int
134 ELFNAMEEND(check)(int fd, const char *fn)
135 {
136 	Elf_Ehdr eh;
137 	struct stat sb;
138 	unsigned char data;
139 
140 	/*
141 	 * Check the header to maek sure it's an ELF file (of the
142 	 * appropriate size).
143 	 */
144 	if (fstat(fd, &sb) == -1)
145 		return 0;
146 	if (sb.st_size < sizeof eh)
147 		return 0;
148 	if (read(fd, &eh, sizeof eh) != sizeof eh)
149 		return 0;
150 
151 	if (IS_ELF(eh) == 0)
152                 return 0;
153 
154 	data = eh.e_ident[EI_DATA];
155 
156 	switch (xe16toh(eh.e_machine)) {
157 	case EM_386: break;
158 	case EM_ALPHA: break;
159 #ifndef EM_IA_64
160 #define	EM_IA_64	50
161 #endif
162 	case EM_IA_64: break;
163 #ifndef EM_SPARCV9
164 #define	EM_SPARCV9	43
165 #endif
166 	case EM_SPARCV9: break;
167 #ifndef EM_X86_64
168 #define	EM_X86_64	62
169 #endif
170 	case EM_X86_64: break;
171 /*        ELFDEFNNAME(MACHDEP_ID_CASES) */
172 
173         default:
174                 return 0;
175         }
176 
177 	return 1;
178 }
179 
180 int
181 ELFNAMEEND(hide)(int fd, const char *fn)
182 {
183 	Elf_Ehdr ehdr;
184 	Elf_Shdr *shdrp = NULL, *symtabshdr, *strtabshdr;
185 	Elf_Sym *symtabp = NULL;
186 	char *strtabp = NULL;
187 	Elf_Word *symfwmap = NULL, *symrvmap = NULL, nsyms, nlocalsyms, ewi;
188 	struct listelem *relalist = NULL, *rellist = NULL, *tmpl;
189 	ssize_t shdrsize;
190 	int rv, i, weird;
191 	unsigned char data;
192 
193 	rv = 0;
194 	if (xreadatoff(fd, &ehdr, 0, sizeof ehdr, fn) != sizeof ehdr)
195 		goto bad;
196 
197 	data = ehdr.e_ident[EI_DATA];
198 
199 	shdrsize = xe16toh(ehdr.e_shnum) * xe16toh(ehdr.e_shentsize);
200 	if ((shdrp = xmalloc(shdrsize, fn, "section header table")) == NULL)
201 		goto bad;
202 	if (xreadatoff(fd, shdrp, xewtoh(ehdr.e_shoff), shdrsize, fn) !=
203 	    shdrsize)
204 		goto bad;
205 
206 	symtabshdr = strtabshdr = NULL;
207 	weird = 0;
208 	for (i = 0; i < xe16toh(ehdr.e_shnum); i++) {
209 		switch (xe32toh(shdrp[i].sh_type)) {
210 		case SHT_SYMTAB:
211 			if (symtabshdr != NULL)
212 				weird = 1;
213 			symtabshdr = &shdrp[i];
214 			strtabshdr = &shdrp[xe32toh(shdrp[i].sh_link)];
215 			break;
216 		case SHT_RELA:
217 			tmpl = xmalloc(sizeof *tmpl, fn, "rela list element");
218 			if (tmpl == NULL)
219 				goto bad;
220 			tmpl->mem = NULL;
221 			tmpl->file = shdrp[i].sh_offset;
222 			tmpl->size = shdrp[i].sh_size;
223 			tmpl->next = relalist;
224 			relalist = tmpl;
225 			break;
226 		case SHT_REL:
227 			tmpl = xmalloc(sizeof *tmpl, fn, "rel list element");
228 			if (tmpl == NULL)
229 				goto bad;
230 			tmpl->mem = NULL;
231 			tmpl->file = shdrp[i].sh_offset;
232 			tmpl->size = shdrp[i].sh_size;
233 			tmpl->next = rellist;
234 			rellist = tmpl;
235 			break;
236 		}
237 	}
238 	if (symtabshdr == NULL)
239 		goto out;
240 	if (strtabshdr == NULL)
241 		weird = 1;
242 	if (weird) {
243 		fprintf(stderr, "%s: weird executable (unsupported)\n", fn);
244 		goto bad;
245 	}
246 
247 	/*
248 	 * load up everything we need
249 	 */
250 
251 	/* symbol table */
252 	if ((symtabp = xmalloc(xewtoh(symtabshdr->sh_size), fn, "symbol table"))
253 	    == NULL)
254 		goto bad;
255 	if (xreadatoff(fd, symtabp, xewtoh(symtabshdr->sh_offset),
256 	    xewtoh(symtabshdr->sh_size), fn) != xewtoh(symtabshdr->sh_size))
257 		goto bad;
258 
259 	/* string table */
260 	if ((strtabp = xmalloc(xewtoh(strtabshdr->sh_size), fn, "string table"))
261 	    == NULL)
262 		goto bad;
263 	if (xreadatoff(fd, strtabp, xewtoh(strtabshdr->sh_offset),
264 	    xewtoh(strtabshdr->sh_size), fn) != xewtoh(strtabshdr->sh_size))
265 		goto bad;
266 
267 	/* any rela tables */
268 	for (tmpl = relalist; tmpl != NULL; tmpl = tmpl->next) {
269 		if ((tmpl->mem = xmalloc(xewtoh(tmpl->size), fn, "rela table"))
270 		    == NULL)
271 			goto bad;
272 		if (xreadatoff(fd, tmpl->mem, xewtoh(tmpl->file),
273 		    xewtoh(tmpl->size), fn) != xewtoh(tmpl->size))
274 			goto bad;
275 	}
276 
277 	/* any rel tables */
278 	for (tmpl = rellist; tmpl != NULL; tmpl = tmpl->next) {
279 		if ((tmpl->mem = xmalloc(xewtoh(tmpl->size), fn, "rel table"))
280 		    == NULL)
281 			goto bad;
282 		if (xreadatoff(fd, tmpl->mem, xewtoh(tmpl->file),
283 		    xewtoh(tmpl->size), fn) != xewtoh(tmpl->size))
284 			goto bad;
285 	}
286 
287 	/* Prepare data structures for symbol movement. */
288 	nsyms = xewtoh(symtabshdr->sh_size) / xewtoh(symtabshdr->sh_entsize);
289 	nlocalsyms = xe32toh(symtabshdr->sh_info);
290 	if ((symfwmap = xmalloc(nsyms * sizeof (Elf_Word), fn,
291 	    "symbol forward mapping table")) == NULL)
292 		goto bad;
293 	if ((symrvmap = xmalloc(nsyms * sizeof (Elf_Word), fn,
294 	    "symbol reverse mapping table")) == NULL)
295 		goto bad;
296 
297 	/* init location -> symbol # table */
298 	for (ewi = 0; ewi < nsyms; ewi++)
299 		symrvmap[ewi] = ewi;
300 
301 	/* move symbols, making them local */
302 	for (ewi = nlocalsyms; ewi < nsyms; ewi++) {
303 		Elf_Sym *sp, symswap;
304 		Elf_Word mapswap;
305 
306 		sp = &symtabp[ewi];
307 
308 		/* if it's on our keep list, don't move it */
309 		if (in_keep_list(strtabp + xe32toh(sp->st_name)))
310 			continue;
311 
312 		/* if it's an undefined symbol, keep it */
313 		if (xe16toh(sp->st_shndx) == SHN_UNDEF)
314 			continue;
315 
316 		/* adjust the symbol so that it's local */
317 		sp->st_info =
318 		    ELF_ST_INFO(STB_LOCAL, sp->st_info);
319 /*		    (STB_LOCAL << 4) | ELF_SYM_TYPE(sp->st_info); *//* XXX */
320 
321 		/*
322 		 * move the symbol to its new location
323 		 */
324 
325 		/* note that symbols in those locations have been swapped */
326 		mapswap = symrvmap[ewi];
327 		symrvmap[ewi] = symrvmap[nlocalsyms];
328 		symrvmap[nlocalsyms] = mapswap;
329 
330 		/* and swap the symbols */
331 		symswap = *sp;
332 		*sp = symtabp[nlocalsyms];
333 		symtabp[nlocalsyms] = symswap;
334 
335 		nlocalsyms++;			/* note new local sym */
336 	}
337 	symtabshdr->sh_info = htoxe32(nlocalsyms);
338 
339 	/* set up symbol # -> location mapping table */
340 	for (ewi = 0; ewi < nsyms; ewi++)
341 		symfwmap[symrvmap[ewi]] = ewi;
342 
343 	/* any rela tables */
344 	for (tmpl = relalist; tmpl != NULL; tmpl = tmpl->next) {
345 		Elf_Rela *relap = tmpl->mem;
346 
347 		for (ewi = 0; ewi < xewtoh(tmpl->size) / sizeof(*relap); ewi++) {
348 			relap[ewi].r_info = htoxew(ELF_R_INFO(
349 			    symfwmap[ELF_R_SYM(xewtoh(relap[ewi].r_info))],
350 			    ELF_R_TYPE(xewtoh(relap[ewi].r_info))
351 			));
352 		}
353 	}
354 
355 	/* any rel tables */
356 	for (tmpl = rellist; tmpl != NULL; tmpl = tmpl->next) {
357 		Elf_Rel *relp = tmpl->mem;
358 
359 		for (ewi = 0; ewi < xewtoh(tmpl->size) / sizeof *relp; ewi++) {
360 			relp[ewi].r_info = htoxew(ELF_R_INFO(
361 			    symfwmap[ELF_R_SYM(xewtoh(relp[ewi].r_info))],
362 			    ELF_R_TYPE(xewtoh(relp[ewi].r_info))
363 			));
364 		}
365 	}
366 
367 	/*
368 	 * write new tables to the file
369 	 */
370 	if (xwriteatoff(fd, shdrp, xewtoh(ehdr.e_shoff), shdrsize, fn) !=
371 	    shdrsize)
372 		goto bad;
373 	if (xwriteatoff(fd, symtabp, xewtoh(symtabshdr->sh_offset),
374 	    xewtoh(symtabshdr->sh_size), fn) != xewtoh(symtabshdr->sh_size))
375 		goto bad;
376 	for (tmpl = relalist; tmpl != NULL; tmpl = tmpl->next) {
377 		if (xwriteatoff(fd, tmpl->mem, xewtoh(tmpl->file),
378 		    xewtoh(tmpl->size), fn) != xewtoh(tmpl->size))
379 			goto bad;
380 	}
381 	for (tmpl = rellist; tmpl != NULL; tmpl = tmpl->next) {
382 		if (xwriteatoff(fd, tmpl->mem, xewtoh(tmpl->file),
383 		    xewtoh(tmpl->size), fn) != xewtoh(tmpl->size))
384 			goto bad;
385 	}
386 
387 out:
388 	if (shdrp != NULL)
389 		free(shdrp);
390 	if (symtabp != NULL)
391 		free(symtabp);
392 	if (strtabp != NULL)
393 		free(strtabp);
394 	if (symfwmap != NULL)
395 		free(symfwmap);
396 	if (symrvmap != NULL)
397 		free(symrvmap);
398 	while ((tmpl = relalist) != NULL) {
399 		relalist = tmpl->next;
400 		if (tmpl->mem != NULL)
401 			free(tmpl->mem);
402 		free(tmpl);
403 	}
404 	while ((tmpl = rellist) != NULL) {
405 		rellist = tmpl->next;
406 		if (tmpl->mem != NULL)
407 			free(tmpl->mem);
408 		free(tmpl);
409 	}
410 	return (rv);
411 
412 bad:
413 	rv = 1;
414 	goto out;
415 }
416 
417 #endif /* include this size of ELF */
418