forked from uclinux-dev/elf2flt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ld-elf2flt.c
581 lines (506 loc) · 16.4 KB
/
ld-elf2flt.c
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
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
/*
* Wrapper for the real linker and the elf2flt converter. This was
* originally a simple shell script, but that doesn't work on a
* Windows host without cygwin.
* The proper long term solution is to add FLT as a BFD output format.
*
* Converted from ld-elf2flt.in by Nathan Sidwell, nathan@codesourcery.com.
* Updated to latest elf2flt code by Mike Frysinger, vapier@gentoo.org.
*
* This is Free Software, under the GNU General Public License V2 or greater.
*
* Copyright (C) 2006, CodeSourcery Inc.
* Copyright (C) 2009, Analog Devices, Inc.
* Copyright (C) 2002-2003 David McCullough <davidm@snapgear.com>
* Copyright (C) 2000, Lineo. <davidm@lineo.com>
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <errno.h>
#include <libiberty.h>
#include <filenames.h>
#include "stubs.h"
const char *elf2flt_progname;
static int flag_verbose = 0, flag_final = 1, have_elf2flt_options = 0,
flag_move_data = 0, want_shared = 0;
static const char *shared_lib_id = NULL;
static const char *output_file = "a.out";
static const char *linker_script = NULL;
static const char *emulation = NULL;
static const char *tmp_file = NULL;
static const char *output_gdb = NULL;
static const char *output_elf = NULL;
static const char *output_flt = NULL;
static options_t search_dirs, all_options, other_options, flt_options;
static const char *linker = NULL;
static const char *elf2flt = NULL;
static const char *nm = NULL;
static const char *objdump = NULL;
static const char *objcopy = NULL;
static const char *ldscriptpath = BINUTILS_LDSCRIPTDIR;
/* A list of sed commands */
typedef struct {
options_t *pattern; /* '^' for start of line match, everything else verbatim */
options_t *replacement; /* Delete line, if NULL */
} sed_commands_t;
/* Initialize a sed structure */
#define init_sed(DST) ( \
(DST)->pattern = xmalloc(sizeof(*(DST)->pattern)), \
(DST)->replacement = xmalloc(sizeof(*(DST)->replacement)), \
init_options((DST)->pattern), \
init_options((DST)->replacement) \
)
#define free_sed(DST) (free((DST)->pattern), free((DST)->replacement))
/* Append a slot for a new sed command. */
static void append_sed(sed_commands_t *dst, const char *pattern,
const char *replacement)
{
debug1("adding pattern '%s' with replacement '%s'\n",
pattern, replacement);
append_option(dst->pattern, pattern);
append_option(dst->replacement, replacement);
}
/* Execute an external program COMMAND. Write its stdout to OUTPUT,
unless that is NULL. Pass the trailing NULL terminated list of
options, followed by all those in OPTIONS, if that is non-NULL.
Order of options is important here as we may run on systems that
do not allow options after non-options (i.e. many BSDs). So the
final command line will look like:
<command> [options] [... va args ...]
This is because [options] will (should?) never contain non-options,
while non-options will always be passed via the [va args].
*/
static int
execute(const char *command, const char *output, const options_t *options, ...)
{
struct pex_obj *pex;
const char *errmsg;
int err;
int status;
va_list args;
const char *opt;
options_t opts;
debug("command=%s\n", command);
init_options(&opts);
append_option(&opts, command);
if (options)
append_options(&opts, options);
va_start(args, options);
while ((opt = va_arg(args, const char *)))
append_option(&opts, opt);
va_end(args);
append_option(&opts, NULL);
fflush(stdout);
fflush(stderr);
pex = pex_init(0, elf2flt_progname, NULL);
if (pex == NULL)
fatal_perror("pex_init failed");
if (flag_verbose) {
unsigned ix;
fprintf(stderr, "Invoking:");
for (ix = 0; ix != opts.num - 1; ix++)
fprintf(stderr, " '%s'", opts.options[ix]);
if (output)
fprintf(stderr, " > '%s'", output);
fprintf(stderr, "\n");
}
errmsg = pex_run(pex, PEX_LAST | PEX_SEARCH, command,
(char *const *)opts.options, output, NULL, &err);
if (errmsg != NULL) {
if (err != 0) {
errno = err;
fatal_perror(errmsg);
} else
fatal(errmsg);
}
if (!pex_get_status(pex, 1, &status))
fatal_perror("can't get program status");
pex_free(pex);
if (status) {
if (WIFSIGNALED(status)) {
int sig = WTERMSIG(status);
fatal("%s terminated with signal %d [%s]%s",
command, sig, strsignal(sig),
WCOREDUMP(status) ? ", core dumped" : "");
}
if (WIFEXITED(status))
return WEXITSTATUS(status);
}
return 0;
}
/* Auto NULL terminate */
#define execute(...) execute(__VA_ARGS__, NULL)
/* Apply the sed commands in SED to file NAME_IN producing file NAME_OUT */
static void
do_sed(const sed_commands_t *sed, const char *name_in, const char *name_out)
{
FILE *in, *out;
size_t alloc = 0;
char *line = NULL;
ssize_t len;
const char *pattern, *replacement;
int ix;
if (flag_verbose) {
fprintf(stderr, "emulating: sed \\\n");
for (ix = 0; ix != sed->pattern->num; ix++) {
pattern = sed->pattern->options[ix];
replacement = sed->replacement->options[ix];
if (replacement)
fprintf(stderr, "\t-e 's/%s/%s/' \\\n", pattern, replacement);
else
fprintf(stderr, "\t-e '/%s/d' \\\n", pattern);
}
fprintf(stderr, "\t%s > %s\n", name_in, name_out);
}
in = xfopen(name_in, "r");
out = xfopen(name_out, "w");
while ((len = getline(&line, &alloc, in)) > 0) {
debug2("len=%2zi line=%s", len, line);
for (ix = 0; ix != sed->pattern->num; ix++) {
const char *ptr;
int bol;
size_t pat_len;
pattern = sed->pattern->options[ix];
replacement = sed->replacement->options[ix];
ptr = line;
bol = pattern[0] == '^';
pattern += bol;
pat_len = strlen(pattern);
if (!bol) {
do {
ptr = strchr(ptr, pattern[0]);
if (!ptr) ;
else if (!strncmp(ptr, pattern, pat_len))
goto found;
else
ptr++;
}
while (ptr);
} else if (!strncmp(ptr, pattern, pat_len)) {
found:
if (replacement) {
debug2(" [modified]\n");
fwrite(line, 1, ptr - line, out);
fwrite(replacement, 1, strlen(replacement), out);
fwrite(ptr + pat_len, 1,
len - pat_len - (ptr - line),
out);
} else
debug2(" {dropped}\n");
goto next_line;
}
}
debug2("(untouched)\n");
fwrite(line, 1, len, out);
next_line:
;
}
fclose(in);
if (fclose(out))
fatal_perror("error writing temporary script '%s'", name_out);
free(line);
}
/* Generate the flt binary along with any other necessary pieces. */
#define exec_or_ret(...) \
do { \
int status = execute(__VA_ARGS__); \
if (status) return status; \
} while (0)
static int do_final_link(void)
{
sed_commands_t sed;
struct stat buf;
const char *script;
const char *rel_output;
int have_got = 0;
FILE *in;
char *line = NULL;
size_t alloc = 0;
ssize_t len;
init_sed(&sed);
if (flag_move_data) {
FILE *in;
/* See if the .rodata section contains any relocations. */
if (!output_flt)
output_flt = make_temp_file(NULL);
exec_or_ret(linker, NULL, &other_options, "-r", "-d", "-o", output_flt);
exec_or_ret(objdump, tmp_file, NULL, "-h", output_flt);
in = xfopen(tmp_file, "r");
while ((len = getline(&line, &alloc, in)) > 0) {
const char *ptr = line;
while (1) {
ptr = strchr(ptr, '.');
if (!ptr)
break;
if (streqn(ptr, ".rodata")) {
if (getline(&line, &alloc, in) == -1)
break;
ptr = line;
while (1) {
ptr = strchr(ptr, 'R');
if (!ptr)
break;
if (streqn(ptr, "RELOC")) {
flag_move_data = 0;
fprintf(stderr, "warning: .rodata section contains relocations");
break;
} else
ptr++;
}
break;
} else
ptr++;
}
}
fclose(in);
}
append_sed(&sed, "^R_RODAT", flag_move_data ? NULL : "");
append_sed(&sed, "^W_RODAT", flag_move_data ? "" : NULL);
append_sed(&sed, "^SINGLE_LINK:", USE_EMIT_RELOCS ? "" : NULL);
append_sed(&sed, "^TOR:", EMIT_CTOR_DTOR ? "" : NULL);
if (shared_lib_id) {
const char *got_offset;
int adj, id = strtol(shared_lib_id, NULL, 0);
char buf[30];
/* Replace addresses using the shared object id. */
sprintf(buf, "%.2X", id);
append_sed(&sed, "ORIGIN = 0x0,", concat("ORIGIN = 0x", buf, "000000,", NULL));
append_sed(&sed, ".text 0x0 :", concat(".text 0x0", buf, "000000 :", NULL));
if (id)
append_sed(&sed, "ENTRY (" SYMBOL_PREFIX "_start)", "ENTRY (lib_main)");
/* Provide the symbol specifying the library's data segment
pointer offset. */
adj = 4;
if (streq(TARGET_CPU, "h8300"))
got_offset = "__current_shared_library_er5_offset_";
else if (streq(TARGET_CPU, "bfin"))
got_offset = "_current_shared_library_p5_offset_", adj = 1;
else
got_offset = "_current_shared_library_a5_offset_";
append_option(&other_options, "-defsym");
sprintf(buf, "%d", id * -adj - adj);
append_option(&other_options, concat(got_offset, "=", buf, NULL));
}
/* Locate the default linker script, if we don't have one provided. */
if (!linker_script)
linker_script = concat(ldscriptpath, "/elf2flt.ld", NULL);
/* Try and locate the linker script. */
script = linker_script;
if (stat(script, &buf) || !S_ISREG(buf.st_mode)) {
script = concat(ldscriptpath, "/", linker_script, NULL);
if (stat(script, &buf) || !S_ISREG(buf.st_mode)) {
script = concat(ldscriptpath, "/ldscripts/", linker_script, NULL);
if (stat(script, &buf) || !S_ISREG(buf.st_mode))
script = NULL;
}
}
/* And process it if we can -- if we can't find it, the user must
know what they are doing. */
if (script) {
do_sed(&sed, linker_script, tmp_file);
linker_script = tmp_file;
}
free_sed(&sed);
if (USE_EMIT_RELOCS) {
exec_or_ret(linker, NULL, &other_options,
"-T", linker_script, "-q", "-o", output_gdb, emulation);
append_option(&flt_options, "-a");
rel_output = output_gdb;
} else if (NO_GOT_CHECK) {
output_elf = make_temp_file(NULL);
exec_or_ret(linker, NULL, &other_options,
"-T", linker_script, "-Ur", "-d", "-o", output_elf, emulation);
exec_or_ret(linker, NULL, &other_options,
"-T", linker_script, "-o", output_gdb, emulation);
rel_output = output_elf;
} else {
output_flt = make_temp_file(NULL);
exec_or_ret(linker, NULL, &other_options,
"-r", "-d", "-o", output_flt, emulation);
output_elf = make_temp_file(NULL);
exec_or_ret(linker, NULL, &search_dirs,
"-T", linker_script, "-Ur", "-o", output_elf, output_flt, emulation);
exec_or_ret(linker, NULL, &search_dirs,
"-T", linker_script, "-o", output_gdb, output_flt, emulation);
rel_output = output_elf;
}
if (shared_lib_id && strtol(shared_lib_id, NULL, 0) != 0)
exec_or_ret(objcopy, NULL, NULL, "--localize-hidden", "--weaken", output_gdb);
exec_or_ret(nm, tmp_file, NULL, "-p", output_gdb);
in = xfopen(tmp_file, "r");
while ((len = getline(&line, &alloc, in)) > 0) {
const char *ptr = strchr(line, '_');
if (ptr && streqn(ptr, "_GLOBAL_OFFSET_TABLE")) {
have_got = 1;
break;
}
}
fclose(in);
if (have_got)
exec_or_ret(elf2flt, NULL, &flt_options,
"-o", output_file, "-p", output_gdb, rel_output);
else
exec_or_ret(elf2flt, NULL, &flt_options,
"-o", output_file, "-r", rel_output);
return 0;
}
/* parse all the arguments provided to us */
static void parse_args(int argc, char **argv)
{
char *fltflags;
int argno;
for (argno = 1; argno < argc; argno++) {
char const *arg = argv[argno];
int to_all = argno;
if (streq(arg, "-elf2flt")) {
have_elf2flt_options = 1;
to_all++;
} else if (streqn(arg, "-elf2flt=")) {
have_elf2flt_options = 1;
append_option_str(&flt_options, &arg[9], "\t ");
to_all++;
} else if (streq(arg, "-move-rodata")) {
flag_move_data = 1;
} else if (streq(arg, "-shared-lib-id")) {
shared_lib_id = argv[++argno];
} else if (streq(arg, "-shared") || streq(arg, "-G")) {
want_shared = 1;
} else if (streqn(arg, "-o")) {
output_file = arg[2] ? &arg[2] : argv[++argno];
} else if (streqn(arg, "-T")) {
linker_script = arg[2] ? &arg[2] : argv[++argno];
} else if (streq(arg, "-c")) {
linker_script = argv[++argno];
} else if (streqn(arg, "-L")) {
const char *merged =
(arg[2] ? arg : concat("-L", argv[++argno], NULL));
append_option(&other_options, merged);
append_option(&search_dirs, merged);
} else if (streq(arg, "-EB")) {
append_option(&other_options, arg);
append_option(&search_dirs, arg);
} else if (streq(arg, "-relax")) {
;
} else if (streq(arg, "-s") || streq(arg, "--strip-all") ||
streq(arg, "-S") || streq(arg, "--strip-debug")) {
/* Ignore these strip options for links involving elf2flt.
The final flat output will be stripped by definition, and we
don't want to strip the .gdb helper file. The strip options
are also incompatible with -r and --emit-relocs. */
;
} else if (streq(arg, "-r") || streq(arg, "-Ur")) {
flag_final = 0;
append_option(&other_options, arg);
} else if (streq(arg, "--verbose")) {
flag_verbose = 1;
append_option(&other_options, arg);
} else if (streqn(arg, "-m")) {
emulation = arg[2] ? arg : concat("-m", argv[++argno], NULL);
} else
append_option(&other_options, arg);
while (to_all <= argno)
append_option(&all_options, argv[to_all++]);
}
fltflags = getenv("FLTFLAGS");
if (fltflags)
append_option_str(&flt_options, fltflags, "\t ");
}
int main(int argc, char *argv[])
{
const char *argv0 = argv[0];
const char *argv0_dir = make_relative_prefix(argv0, "/", "/");
const char *tooldir = argv0_dir;
const char *bindir = argv0_dir;
char *tmp;
struct stat buf;
const char *have_exe = NULL;
int status;
#ifdef __WIN32
/* Remove the .exe extension, if it's there. */
size_t len = strlen(argv0);
if (len > 4 && streq(&argv0[len - 4], ".exe")) {
have_exe = ".exe";
len -= 4;
argv0 = tmp = xstrdup(argv0);
tmp[len] = 0;
argv[0][len] = '\0';
}
#endif
elf2flt_progname = lbasename(argv0);
/* The standard binutils tool layout has:
bin/<TARGET_ALIAS>-foo
lib/
<TARGET_ALIAS>/bin/foo
<TARGET_ALIAS>/lib
It's <TARGET_ALIAS>/ that we want here: files in lib/ are for
the host while those in <TARGET_ALIAS>/lib are for the target.
Make bindir point to the bin dir for bin/<TARGET_ALIAS>-foo.
Make tooldir point to the bin dir for <TARGET_ALIAS>/bin/foo. */
if (streqn(elf2flt_progname, TARGET_ALIAS)) {
tmp = concat(argv0_dir, "../" TARGET_ALIAS "/bin", NULL);
if (stat(tmp, &buf) == 0 && S_ISDIR(buf.st_mode)) {
tooldir = concat(tmp, "/", NULL);
}
} else {
tmp = concat(argv0_dir, "../../bin", NULL);
if (stat(tmp, &buf) == 0 && S_ISDIR(buf.st_mode)) {
bindir = concat(tmp, "/", NULL);
}
}
/* Typically ld-elf2flt is invoked as `ld` which means error
* messages from it will look like "ld: " which is completely
* confusing. So append an identifier to keep things clear.
*/
elf2flt_progname = concat(elf2flt_progname, " (ld-elf2flt)", NULL);
xmalloc_set_program_name(elf2flt_progname);
linker = concat(tooldir, "ld.real", have_exe, NULL);
elf2flt = concat(tooldir, "elf2flt", have_exe, NULL);
nm = concat(tooldir, "nm", have_exe, NULL);
objdump = concat(bindir, TARGET_ALIAS "-objdump", have_exe, NULL);
objcopy = concat(bindir, TARGET_ALIAS "-objcopy", have_exe, NULL);
if (stat(ldscriptpath, &buf) || !S_ISDIR(buf.st_mode))
ldscriptpath = concat(tooldir, "../lib", NULL);
parse_args(argc, argv);
if (flag_verbose) {
fprintf(stderr, "argv[0] = '%s'\n", argv[0]);
fprintf(stderr, "bindir = '%s'\n", bindir);
fprintf(stderr, "tooldir = '%s'\n", tooldir);
fprintf(stderr, "linker = '%s'\n", linker);
fprintf(stderr, "elf2flt = '%s'\n", elf2flt);
fprintf(stderr, "nm = '%s'\n", nm);
fprintf(stderr, "objdump = '%s'\n", objdump);
fprintf(stderr, "objcopy = '%s'\n", objcopy);
fprintf(stderr, "ldscriptpath = '%s'\n", ldscriptpath);
}
/* Pass off to regular linker, if there's nothing elf2flt-like */
if (!have_elf2flt_options)
return execute(linker, NULL, &all_options);
/* Pass off to regular linker, minus the elf2flt options, if it's
not the final link. */
if (!flag_final)
return execute(linker, NULL, &other_options, "-o", output_file);
if (want_shared && !shared_lib_id)
fatal("-shared used without passing a shared library ID");
/* Otherwise link & convert to flt. */
output_gdb = concat(output_file, ".gdb", NULL);
tmp_file = make_temp_file(NULL);
status = do_final_link();
if (!flag_verbose) {
unlink(tmp_file);
unlink(output_flt);
unlink(output_elf);
} else {
fprintf(stderr,
"leaving elf2flt temp files behind:\n"
"tmp_file = %s\n"
"output_flt = %s\n"
"output_elf = %s\n",
tmp_file, output_flt, output_elf);
}
return status;
}