forked from shizmob/smol
-
Notifications
You must be signed in to change notification settings - Fork 4
/
smold.py
executable file
·319 lines (278 loc) · 16.7 KB
/
smold.py
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
#!/usr/bin/env python3
import argparse
import glob
import itertools
import os, os.path
import shutil
import subprocess
import sys
import tempfile
from smol.shared import *
from smol.parse import *
from smol.emit import *
from smol.cnl import *
from smol.emit_dlfixup import *
def preproc_args(args):
if args.hash16 and args.crc32c and not args.fuse_dlfixup_loader: # shouldn't happen anymore
error("Cannot combine --hash16 and --crc32c!")
if args.fuse_dnload_loader and args.fuse_dlfixup_loader:
error("Cannot combine -fuse-dnload-loader and -fuse-dlfixup-loader!")
# if args.fuse_dlfixup_loader:
# if args.hash16: printf("Warning: specifying --hash16 (-s) while using the _dl_fixup-based loader does nothing.")
# if args.crc32c: printf("Warning: specifying --crc32c (-c) while using the _dl_fixup-based loader does nothing.")
# if args.fuse_dt_debug:
# printf("Warning: specifying -fuse-dt-debug while using the _dl_fixup-based loader does nothing.")
# if args.fskip_zero_value:
# printf("Warning: specifying -fskip-zero-value while using the _dl_fixup-based loader does nothing.")
# if args.fskip_entries:
# printf("Warning: specifying -fskip-entries while using the _dl_fixup-based loader does nothing.")
# if args.fifunc_support:
# printf("Warning: specifying -fifunc_support while using the _dl_fixup-based loader does nothing.")
if args.debug:
args.cflags.append('-g')
args.ldflags.append('-g')
args.asflags.append('-g')
if len(args.library) == 0:
eprintf("W: no library dependencies specified. This is probably not "+\
"what you want. (You need to explicitely add -lc for a "+\
"dependency on libc)")
args.fskip_zero_value = args.fskip_zero_value or args.fuse_dnload_loader
args.asflags.insert(0, "-DORDER_DT" if args.section_order == "dt" else "-DORDER_TD")
if args.dynamic_linker is not None:
args.asflags.insert(0, "-DPT_INTERP_VAL=\"%s\""%args.dynamic_linker)
if args.fskip_zero_value: args.asflags.insert(0, "-DSKIP_ZERO_VALUE")
if args.fuse_nx: args.asflags.insert(0, "-DUSE_NX")
if args.fskip_entries: args.asflags.insert(0, "-DSKIP_ENTRIES")
if args.funsafe_dynamic: args.asflags.insert(0, "-DUNSAFE_DYNAMIC")
if args.fno_start_arg: args.asflags.insert(0, "-DNO_START_ARG")
if args.fuse_dl_fini: args.asflags.insert(0, "-DUSE_DL_FINI")
if args.fuse_dt_debug: args.asflags.insert(0, "-DUSE_DT_DEBUG")
if args.fuse_dnload_loader: args.asflags.insert(0, "-DUSE_DNLOAD_LOADER")
if args.fuse_interp: args.asflags.insert(0, "-DUSE_INTERP")
if args.falign_stack: args.asflags.insert(0, "-DALIGN_STACK")
if args.fifunc_support: args.asflags.insert(0, "-DIFUNC_SUPPORT")
if args.fifunc_strict_cconv: args.asflags.insert(0, "-DIFUNC_CORRECT_CCONV")
if args.hang_on_startup: args.asflags.insert(0, "-DHANG_ON_STARTUP")
for x in ['nasm','cc','readelf']:
val = args.__dict__[x]
if val is None or not os.path.isfile(val):
error("'%s' binary%s not found" %
(x, ("" if val is None else (" ('%s')" % val))))
arch = args.target.tolower() if len(args.target) != 0 else decide_arch(args.input)
if arch not in archmagic:
error("Unknown/unsupported architecture '%s'" % str(arch))
if args.verbose: eprintf("arch: %s" % str(arch))
if args.hash16 and arch not in ('i386', 3):
error("Cannot use --hash16 for arch `%s' (not i386)" % (arch))
if args.fuse_dlfixup_loader and arch != 'x86_64':
error("Cannot use -fuse-dlfixup-loader for arch '%s' (not x86_64)." % arch)
return args, arch
def do_smol_run(args, arch):
objinput = None
objinputistemp = False
tmp_asm_file, tmp_elf_fd, tmp_elf_file = None, None, None
if not args.gen_rt_only:
tmp_asm_file = tempfile.mkstemp(prefix='smoltab',suffix='.asm',text=True)
tmp_asm_fd = tmp_asm_file[0]
tmp_asm_file = tmp_asm_file[1]
tmp_elf_file = tempfile.mkstemp(prefix='smolout',suffix='.o')
os.close(tmp_elf_file[0])
tmp_elf_file = tmp_elf_file[1]
try:
#for inp in args.input:
# if not is_valid_elf(inp):
# error("Input file '%s' is not a valid ELF file!" % inp)
# if >1 input OR input is LTO object:
if len(args.input) > 1 or has_lto_object(args.readelf, args.input):
fd, objinput = tempfile.mkstemp(prefix='smolin',suffix='.o')
objinputistemp = True
os.close(fd)
cc_relink_objs(args.verbose, args.cc, arch, args.input, objinput, args.cflags)
else:
objinput = args.input[0]
if not check_start_sym_ok(objinput):
eprintf("WARNING: input object file not formatted properly or the"+\
" entrypoint could not be found. Your"+\
" executable will not work, unless you REALLY know what "+\
"you're doing. See the smol README for more details.")
# generate smol hashtab
cc_paths = get_cc_paths(args.cc, arch)
syms = get_needed_syms(args.readelf, objinput)
spaths = args.libdir + cc_paths['libraries']
libraries = cc_paths['libraries']
libs = find_libs(args.readelf, spaths, args.library, arch)
if args.verbose:
eprintf("libs = %s" % repr(libs))
libs_symbol_map = build_symbol_map(args.readelf, libs)
symbols = resolve_extern_symbols(syms, libs_symbol_map, args)
with (open(args.output,'w') if args.gen_rt_only
else os.fdopen(tmp_asm_fd, mode='w')) as taf:
if args.fuse_dlfixup_loader:
output_dlfixup(arch, symbols, args.fuse_nx, taf, args.det)
else:
output(arch, symbols, args.fuse_nx, get_hash_id(args.hash16, args.crc32c), taf, args.det)
if args.verbose:
eprintf("wrote symtab to %s" % tmp_asm_file)
if not args.gen_rt_only:
# assemble hash table/ELF header
nasm_assemble_elfhdr(args.verbose, args.nasm, arch, args.smolrt,
tmp_asm_file, tmp_elf_file, args.asflags)
# link with LD into the final executable, w/ special linker script
if args.debugout is not None: # do this first, so the linker map output will use the final output binary
ld_link_final(args.verbose, args.cc, arch, args.smolld, [objinput, tmp_elf_file],
args.debugout, args.ldflags, args.fuse_nx, args.section_order, True)
ld_link_final(args.verbose, args.cc, arch, args.smolld, [objinput, tmp_elf_file],
args.output, args.ldflags, args.fuse_nx, args.section_order, False)
finally:
if not args.keeptmp:
if objinputistemp: os.remove(objinput)
if not args.gen_rt_only: os.remove(tmp_asm_file)
os.remove(tmp_elf_file)
def main():
parser = argparse.ArgumentParser()
parser.add_argument('-m', '--target', default='', \
help='architecture to generate asm code for (default: auto)')
parser.add_argument('-l', '--library', default=[], metavar='LIB', action='append', \
help='libraries to link against')
parser.add_argument('-L', '--libdir', default=[], metavar='DIR', action='append', \
help="directories to search libraries in")
hashgrp = parser.add_mutually_exclusive_group()
hashgrp.add_argument('-s', '--hash16', default=False, action='store_true', \
help="Use 16-bit (BSD2) hashes instead of 32-bit djb2 hashes. "+\
"Implies `-fuse-dnload-loader'. Only usable for 32-bit output. "+\
"Ignored if `-fuse-dlfixup-loader' is specified.")
hashgrp.add_argument('-c', '--crc32c', default=False, action='store_true', \
help="Use Intel's crc32 intrinsic for hashing. "+\
"Implies `-fuse-dnload-loader'. Conflicts with `--hash16'. "+\
"Ignored if `-fuse-dlfixup-loader' is specified.")
parser.add_argument('-n', '--nx', default=False, action='store_true', \
help="Deprecated, use `-fuse-nx' instead.",
dest="fuse_nx")
parser.add_argument('-d', '--det', default=False, action='store_true', \
help="Make the order of imports deterministic (default: just use " + \
"whatever binutils throws at us)")
parser.add_argument('-g', '--debug', default=False, action='store_true', \
help="Pass `-g' to the C compiler, assembler and linker. Only useful "+\
"when `--debugout' is specified.")
parser.add_argument('-I', '--dynamic-linker', default=None, type=str,
help="Set the name of the dynamic linker. The default dynamic linker "+\
"is normally correct; don't use this unless you know what you are doing.")
parser.add_argument('-fuse-interp', default=True, action='store_true', \
help="[Default ON] Include a program interpreter header (PT_INTERP). " +\
"If not enabled, ld.so has to be invoked manually by the end "+\
"user. Disable with `-fno-use-interp'.",
dest="fuse_interp")
parser.add_argument('-fno-use-interp', action='store_false', \
dest="fuse_interp", help=argparse.SUPPRESS)
parser.add_argument('-falign-stack', default=True, action='store_true', \
help="[Default ON] Align the stack before running user code (_start). " + \
"If not enabled, this has to be done manually. Costs 1 byte. "+\
"Disable with `-fno-align-stack'.",
dest="falign_stack")
parser.add_argument('-fno-align-stack', action='store_false', \
dest="falign_stack", help=argparse.SUPPRESS)
parser.add_argument('-fskip-zero-value', default=None, action='store_true', \
help="[Default: ON if `-fuse-dnload-loader' supplied, OFF otherwise] "+\
"Skip an ELF symbol with a zero address (a weak symbol) when "+\
"parsing libraries at runtime. Try enabling this if you're "+\
"experiencing sudden breakage. However, many libraries don't use "+\
"weak symbols, so this doesn't often pose a problem. Costs ~5 bytes."+\
"Disable with `-fno-skip-zero-value'.",
dest="fskip_zero_value")
parser.add_argument('-fno-skip-zero-value', default=None, action='store_false', \
dest="fskip_zero_value", help=argparse.SUPPRESS)
parser.add_argument('-fifunc-support', default=True, action='store_true', \
help="[Default ON] Support linking to IFUNCs. Probably needed on x86_64, "+\
"but costs ~16 bytes. Ignored on platforms without IFUNC support. "+\
"Disable with `-fno-fifunc-support'.",
dest="fifunc_support")
parser.add_argument('-fno-ifunc-support', action='store_false', \
dest="fifunc_support", help=argparse.SUPPRESS)
parser.add_argument('-fuse-dnload-loader', default=False, action='store_true', \
help="Use a dnload-style loader for resolving symbols, which doesn't "+\
"depend on nonstandard/undocumented ELF and ld.so features, but "+\
"is slightly larger. If not enabled, a smaller custom loader is "+\
"used which assumes glibc. `-fskip-zero-value' defaults to ON if "+\
"this flag is supplied.")
parser.add_argument('-fuse-dlfixup-loader', default=False, action='store_true', \
help="Use an EXPERIMENTAL loader that uses the _dl_fixup function "+\
"placed into the GOT by ld.so, only works with glibc. Cannot be "+\
"used in combination with `-fuse-dnload-loader'. Only works on "+\
"x86_64.")
parser.add_argument('-fuse-nx', default=False, action='store_true', \
help="Don't use one big RWE segment, but use separate RW and RE ones."+\
" Use this to keep strict kernels (PaX/grsec) happy. Costs at "+\
"least the size of one program header entry.",
dest="fuse_nx")
parser.add_argument('-fuse-dl-fini', default=False, action='store_true', \
help="Pass _dl_fini to the user entrypoint, which should be done to "+\
"properly comply with all standards, but is very often not "+\
"needed at all. Costs 2 bytes.")
parser.add_argument('-fno-start-arg', default=False, action='store_true', \
help="Don't pass a pointer to argc/argv/envp to the entrypoint using "+\
"the standard calling convention. This means you need to read "+\
"these yourself in assembly if you want to use them! (envp is "+\
"a preprequisite for X11, because it needs $DISPLAY.) Frees 3 bytes.")
parser.add_argument('-funsafe-dynamic', default=False, action='store_true', \
help="Don't end the ELF Dyn table with a DT_NULL entry. This might "+\
"cause ld.so to interpret the entire binary as the Dyn table, "+\
"so only enable this if you're sure this won't break things!")
parser.add_argument('-fuse-dt-debug', default=False, action='store_true', \
help="Use the DT_DEBUG Dyn header to access the link_map, which doesn't"+\
" depend on nonstandard/undocumented ELF and ld.so features. If "+\
"not enabled, the link_map is accessed using data leaked to the "+\
"entrypoint by ld.so, which assumes glibc. Costs ~10 bytes. "+\
"Ignored if `-fuse-dlfixup-loader' is specified.")
parser.add_argument('-fskip-entries', default=False, action='store_true', \
help="Skip the first two entries in the link map (resp. ld.so and "+\
"the vDSO). Speeds up symbol resolving, but costs ~5 bytes. "+\
"Ignored if `-fuse-dlfixup-loader' is specified.")
parser.add_argument('-fifunc-strict-cconv', default=False, action='store_true', \
help="On i386, if -fifunc-support is specified, strictly follow the "+\
"calling convention rules. Probably not needed, but you never know. "+\
"Ignored if `-fuse-dlfixup-loader' is specified.")
parser.add_argument('--nasm', default=os.getenv('NASM') or shutil.which('nasm'), \
help="which nasm binary to use")
parser.add_argument('--cc', default=os.getenv('CC') or shutil.which('cc'), \
help="which cc binary to use (MUST BE GCC!)")
parser.add_argument('--readelf', default=os.getenv('READELF') or shutil.which('readelf'), \
help="which readelf binary to use")
parser.add_argument('-Wc','--cflags', default=[], metavar='CFLAGS', action='append',
help="Flags to pass to the C compiler for the relinking step")
parser.add_argument('-Wa','--asflags', default=[], metavar='ASFLAGS', action='append',
help="Flags to pass to the assembler when creating the ELF header and runtime startup code")
parser.add_argument('-Wl','--ldflags', default=[], metavar='LDFLAGS', action='append',
help="Flags to pass to the linker for the final linking step")
parser.add_argument('--smolrt', default=os.getcwd()+"/rt",
help="Directory containing the smol runtime sources")
parser.add_argument('--smolld', default=os.getcwd()+"/ld",
help="Directory containing the smol linker scripts")
parser.add_argument('--section-order', choices=["dt","td"], default="td",\
help="Specifies the order in which data and text sections will appear"+\
" in your binary. 'dt' means first data and then text, while 'td'"+\
" means the opposite.")
parser.add_argument('--gen-rt-only', default=False, action='store_true', \
help="Only generate the headers/runtime assembly source file, instead"+\
" of doing a full link. (I.e. fall back to pre-release behavior.)")
parser.add_argument('--verbose', default=False, action='store_true', \
help="Be verbose about what happens and which subcommands are invoked")
parser.add_argument('--keeptmp', default=False, action='store_true', \
help="Keep temp files (only useful for debugging)")
parser.add_argument('--debugout', type=str, default=None, \
help="Write out an additional, unrunnable debug ELF file with symbol "+\
"information. (Useful for debugging with gdb, cannot be ran due "+\
"to broken relocations.)")
parser.add_argument('--hang-on-startup', default=False, action='store_true', \
help="Hang on startup until a debugger breaks the code out of the "+\
"loop. Only useful for debugging.")
parser.add_argument('input', nargs='+', help="input object file")
parser.add_argument('output', type=str, help="output binary")
args = parser.parse_args()
args, arch = preproc_args(args)
do_smol_run(args, arch)
if __name__ == '__main__':
rv = main()
if rv is None: pass
else:
try: sys.exit(int(rv))
except: sys.exit(1)