summaryrefslogtreecommitdiffstats
path: root/src/libr-elf.c
blob: 8e4f4e7a0ed947d7d5fb22399089b0cbde2edc3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
/*
 *
 *  Copyright (c) 2008 Erich Hoover
 *
 *  libr libelf Backend - Add resources into ELF binaries using libelf
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation; either version 2.1 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 *
 * To provide feedback, report bugs, or otherwise contact me:
 * ehoover at mines dot edu
 *
 */

/* Include compile-time parameters */
#include "config.h"

#include "libr.h"

#include <sys/stat.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
#include <fcntl.h>

//#define MANUAL_LAYOUT            true

extern void libr_set_error(libr_intstatus error);

/*
 * Write the output file using libelf
 */
void write_output(libr_file *file_handle)
{
	/* Update the ELF file on the disk */
	if(elf_update(file_handle->elf_handle, ELF_C_NULL) < 0)
	{
		printf("elf_update() failed: %s.", elf_errmsg(-1));
		return;
	}
	if(elf_update(file_handle->elf_handle, ELF_C_WRITE) < 0)
	{
		printf("elf_update() failed: %s.", elf_errmsg(-1));
		return;
	}
	/* Close the handles */
	elf_end(file_handle->elf_handle);
	close(file_handle->fd_handle);
}

/*
 * Return the size of the file represented by the file descriptor
 */
off_t file_size(int fd)
{
	struct stat file_stat;
	
	if(fstat(fd, &file_stat) == ERROR)
		return ERROR;
	return file_stat.st_size;
}

/*
 * Open the handles for working with the file using libelf
 */
libr_intstatus open_handles(libr_file *file_handle, char *filename, libr_access_t access)
{
	const int elf_access[2] = {ELF_C_READ, ELF_C_RDWR};
	const int fd_access[2] = {O_RDONLY, O_RDWR};
	Elf *e = NULL;
	int fd = 0;
	
	if((fd = open(filename, fd_access[access], 0)) < 0)
		RETURN(LIBR_ERROR_OPENFAILED, "Failed to open input file");
	if((e = elf_begin(fd, elf_access[access], NULL)) == NULL)
		RETURN(LIBR_ERROR_BEGINFAILED, "Failed to open ELF file: %s.", elf_errmsg(-1));
	if(elf_kind(e) != ELF_K_ELF)
		RETURN(LIBR_ERROR_WRONGFORMAT, "Invalid input file format");
	
	file_handle->access = access;
	file_handle->fd_handle = fd;
	file_handle->elf_handle = e;
	file_handle->file_size = file_size(fd);
	file_handle->version = EV_CURRENT; /* This should probably match the rest of the file */
	RETURN_OK;
}

/*
 * Expand a section
 * (Only used when manually controlling ELF layout)
 */
#ifdef MANUAL_LAYOUT
libr_intstatus expand_section(Elf *e, Elf_Scn *scn, size_t size, int reset)
{
	size_t offset = 0, delta = 0;
	Elf_Scn *tmpscn = NULL;
	GElf_Shdr shdr;
	
	if(gelf_getshdr(scn, &shdr) != &shdr)
		RETURN(LIBR_INTERROR_GETSHDR, "Failed to obtain ELF header: %s", elf_errmsg(-1));
	if(reset)
	{
		delta = (size-shdr.sh_size); 
		shdr.sh_size = size;
	}
	else
	{
		delta = size;
		shdr.sh_size += size;
	}
	offset = shdr.sh_offset;
	if(gelf_update_shdr(scn, &shdr) < 0)
		RETURN(LIBR_ERROR_UPDATE, "Failed to perform dynamic update: %s.", elf_errmsg(-1));
	if(elf_update(e, ELF_C_NULL) < 0)
		RETURN(LIBR_ERROR_UPDATE, "Failed to perform dynamic update: %s.", elf_errmsg(-1));
	/* Update any section that follows this one data-wise */
/*
****** This does not work yet
	while((tmpscn = elf_nextscn(e, tmpscn)) != NULL)
	{
		if(tmpscn == scn)
			continue;
		if(gelf_getshdr(tmpscn, &shdr) != &shdr)
			return LIBR_INTERROR_GETSHDR;
		if(offset < shdr.sh_offset)
		{
			if((name = elf_strptr(e, ehdr.e_shstrndx, shdr.sh_name)) == NULL)
				RETURN(LIBR_ERROR_STRPTR, "Failed to obtain section string pointer: %s.", elf_errmsg(-1));
			shdr.sh_offset += delta;
			if(gelf_update_shdr(tmpscn, &shdr) < 0)
				RETURN(LIBR_ERROR_UPDATE, "Failed to perform dynamic update: %s.", elf_errmsg(-1));
			if(elf_update(e, ELF_C_NULL) < 0)
				RETURN(LIBR_ERROR_UPDATE, "Failed to perform dynamic update: %s.", elf_errmsg(-1));
		}
	}
*/
	return LIBR_OK;
}
#endif

/*
 * Obtain the data from a section using libelf
 */
libr_data *get_data(libr_file *file_handle, libr_section *scn)
{
	return elf_getdata(scn, NULL);
}

/*
 * Create new data for a section using libelf
 */
libr_data *new_data(libr_file *file_handle, libr_section *scn)
{
	return elf_newdata(scn);
}

/*
 * Set data for a section using libelf (not written yet)
 */
libr_intstatus set_data(libr_file *file_handle, libr_section *scn, libr_data *data, off_t offset, char *buffer, size_t size)
{
	data->d_align = 1;
	data->d_off = offset;
	data->d_buf = buffer;
	data->d_type = ELF_T_BYTE;
	data->d_size = size;
	data->d_version = file_handle->version;
#ifdef MANUAL_LAYOUT
	if(expand_section(file_handle->elf_handle, scn, data->d_size, true) != LIBR_OK)
		RETURN(LIBR_ERROR_EXPANDSECTION, "Failed to expand section");
#else
	if(elf_update(file_handle->elf_handle, ELF_C_NULL) < 0)
		RETURN(LIBR_ERROR_UPDATE, "Failed to perform dynamic update: %s.", elf_errmsg(-1));
	if(elf_update(file_handle->elf_handle, ELF_C_WRITE) < 0)
		RETURN(LIBR_ERROR_UPDATE, "Failed to perform dynamic update: %s.", elf_errmsg(-1));
#endif
	RETURN_OK;
}

/*
 * Find a named section from the ELF file using libelf
 */
libr_intstatus find_section(libr_file *file_handle, char *section, libr_section **retscn)
{
	Elf *e = file_handle->elf_handle;
	Elf_Scn *scn = NULL;
	char *name = NULL;
	GElf_Ehdr ehdr;
	GElf_Shdr shdr;
	uintmax_t si;
	
	if(gelf_getehdr(e, &ehdr) == NULL)
		RETURN(LIBR_ERROR_GETEHDR, "Failed to obtain ELF header: %s", elf_errmsg(-1));
	while((scn = elf_nextscn(e, scn)) != NULL)
	{
		if(gelf_getshdr(scn, &shdr) != &shdr)
			RETURN(LIBR_ERROR_GETSHDR, "Failed to obtain ELF section header: %s", elf_errmsg(-1));
		if((name = elf_strptr(e, ehdr.e_shstrndx, shdr.sh_name)) == NULL)
			RETURN(LIBR_ERROR_STRPTR, "Failed to obtain section string pointer: %s.", elf_errmsg(-1));
		
		si = (uintmax_t) elf_ndxscn(scn);
/*
printf("%d: %s (%d %d)\n", (long) si, name, (long) shdr.sh_offset, (long) shdr.sh_size);
*/
		if(strcmp(name, section) == 0)
		{
			*retscn = scn;
			RETURN_OK;
		}
	}
	RETURN(LIBR_ERROR_NOSECTION, "ELF resource section not found");
}

/*
 * Add a new section and create a name for it in the ELF string table using libelf
 */
libr_intstatus add_section(libr_file *file_handle, char *section, Elf_Scn **retscn)
{
	Elf_Scn *scn = NULL, *strscn = NULL;
	Elf *e = file_handle->elf_handle;
	Elf_Data *data;
	GElf_Ehdr ehdr;
	GElf_Shdr shdr;
#ifdef MANUAL_LAYOUT
	GElf_Shdr strshdr;
	size_t tblsize = 0;
#endif
	
	if(gelf_getehdr(e, &ehdr) == NULL)
		RETURN(LIBR_ERROR_GETEHDR, "Failed to obtain ELF header: %s", elf_errmsg(-1));
	/* TODO: Support creating a string table for objects that don't have one */
	if(!ehdr.e_shstrndx)
		RETURN(LIBR_ERROR_NOTABLE, "No ELF string table");
	strscn = elf_getscn(e, ehdr.e_shstrndx);
	if(strscn == NULL) 
		RETURN(LIBR_ERROR_TABLE, "Failed to open string table: %s.", elf_errmsg(-1));
	data = elf_newdata(strscn);
	if(data == NULL)
		RETURN(LIBR_ERROR_NEWDATA, "Failed to create data for section");
	data->d_align = 1;

#ifdef MANUAL_LAYOUT
	if(gelf_getshdr(strscn, &strshdr) != &strshdr)
		RETURN(LIBR_ERROR_GETSHDR, "Failed to obtain ELF section header: %s", elf_errmsg(-1));
	data->d_off = strshdr.sh_size;
#endif

	data->d_size = (size_t) strlen(section)+1;
	data->d_type = ELF_T_BYTE;
	data->d_buf = section;
	data->d_version = file_handle->version;

#ifdef MANUAL_LAYOUT
	if(expand_section(e, strscn, data->d_size, false) != LIBR_OK)
		return false;
#else
	/* Update the internal offset information */
	if(elf_update(e, ELF_C_NULL) < 0)
		RETURN(LIBR_ERROR_UPDATE, "Failed to perform dynamic update: %s.", elf_errmsg(-1));
#endif

	/* seek to the end of the section data */
	if((scn = elf_newscn(e)) == NULL)
		RETURN(LIBR_ERROR_NEWSECTION, "Failed to create new section");
	if(gelf_getshdr(scn, &shdr) != &shdr)
		RETURN(LIBR_ERROR_GETSHDR, "Failed to obtain ELF section header: %s", elf_errmsg(-1));
	shdr.sh_addralign = 1;
#ifdef MANUAL_LAYOUT
	shdr.sh_offset = file_handle->file_size;
#endif
	shdr.sh_size = 0;
	shdr.sh_name = data->d_off;
	shdr.sh_type = SHT_NOTE; /* TODO: Does "NOTE" type fit best? */
	shdr.sh_flags = SHF_WRITE;
	shdr.sh_entsize = 0;
	if(gelf_update_shdr(scn, &shdr) < 0)
		RETURN(LIBR_ERROR_UPDATE, "Failed to perform dynamic update: %s.", elf_errmsg(-1));
	*retscn = scn;
	RETURN_OK;
}

/*
 * Remove a section and eliminate it from the ELF string table using libelf
 */
libr_intstatus remove_section(libr_file *file_handle, libr_section *scn)
{
	unsigned int table_size, str_size;
	char *buffer = NULL, *tmp = NULL;
	Elf *e = file_handle->elf_handle;
	int remaining_size;
	Elf_Scn *strscn;
	Elf_Data *data;
	GElf_Ehdr ehdr;
	GElf_Shdr shdr;
#ifdef MANUAL_LAYOUT
	GElf_Shdr strshdr;
#endif
	
	if(gelf_getehdr(e, &ehdr) == NULL)
		RETURN(LIBR_ERROR_GETEHDR, "Failed to obtain ELF header: %s", elf_errmsg(-1));
	/* Grab the string table */
	if(!ehdr.e_shstrndx)
		RETURN(LIBR_ERROR_NOTABLE, "No ELF string table");
	strscn = elf_getscn(e, ehdr.e_shstrndx);
	if(strscn == NULL)
		RETURN(LIBR_ERROR_TABLE, "Failed to open string table: %s.", elf_errmsg(-1));
	if((data = elf_getdata(strscn, NULL)) == NULL)
		RETURN(LIBR_ERROR_GETDATA, "Failed to obtain data of section");
	/* Find where the section name is in the string table */
	if(gelf_getshdr(scn, &shdr) != &shdr)
		RETURN(LIBR_ERROR_GETSHDR, "Failed to obtain ELF section header: %s", elf_errmsg(-1));
	table_size = data->d_size;
	buffer = (char *) data->d_buf;
	/* Excise the string from the table */
	str_size = strlen(&buffer[shdr.sh_name])+1;
	remaining_size = table_size-(shdr.sh_name+str_size);
	if(remaining_size < 0)
		RETURN(LIBR_ERROR_SIZEMISMATCH, "Section's data size does not make sense");
	if(remaining_size > 0)
	{
		/* If there is data after our icon entry in the table then it must be moved before resizing
		 * NOTE: Using memcpy with overlapping addresses is not allowed, use temporary buffer. 
		 */
		tmp = (char *) malloc(remaining_size);
		memcpy(tmp, &buffer[shdr.sh_name+str_size], remaining_size);
		memcpy(&buffer[shdr.sh_name], tmp, remaining_size);
		free(tmp);
	}
	data->d_size -= str_size;
	/* Update the internal offset information */
	if(elf_update(e, ELF_C_NULL) < 0)
		RETURN(LIBR_ERROR_UPDATE, "Failed to perform dynamic update: %s.", elf_errmsg(-1));
#ifdef MANUAL_LAYOUT
	if(gelf_getshdr(strscn, &strshdr) != &strshdr)
		RETURN(LIBR_ERROR_GETSHDR, "Failed to obtain ELF section header: %s", elf_errmsg(-1));
	strshdr.sh_size -= str_size;
	if(gelf_update_shdr(strscn, &strshdr) < 0)
		RETURN(LIBR_ERROR_UPDATE, "Failed to perform dynamic update: %s.", elf_errmsg(-1));
#endif

	/* Clear the section itself and update the offsets */
	if(elfx_remscn(e, scn) == 0)
		RETURN(LIBR_ERROR_REMOVESECTION, "Failed to remove section: %s.", elf_errmsg(-1));
	RETURN_OK;
}

/*
 * Return the pointer to the actual data in the section
 */
void *data_pointer(libr_section *scn, libr_data *data)
{ 
	return data->d_buf;
}

/*
 * Return the size of the data in the section
 */
size_t data_size(libr_section *scn, libr_data *data)
{
	return data->d_size;
}

/*
 * Return the next section in the ELF file
 */
libr_section *next_section(libr_file *file_handle, libr_section *scn)
{
	return elf_nextscn(file_handle->elf_handle, scn);
}

/*
 * Retrieve the name of a section
 */
char *section_name(libr_file *file_handle, libr_section *scn)
{
	char *name = NULL;
	GElf_Shdr shdr;
	GElf_Ehdr ehdr;
	
	if(gelf_getehdr(file_handle->elf_handle, &ehdr) == NULL)
		return NULL;
	if(gelf_getshdr(scn, &shdr) != &shdr)
		return NULL;
	if((name = elf_strptr(file_handle->elf_handle, ehdr.e_shstrndx, shdr.sh_name)) == NULL)
		return NULL;
	return strdup(name);
}

/*
 * Initialize the libelf backend
 */
void initialize_backend(void)
{
	if(elf_version(EV_CURRENT) == EV_NONE)
		return; //errx(EX_SOFTWARE, "ELF library initialization failed: %s", elf_errmsg(-1));
}