2014-04-19 22:25:46 +02:00
|
|
|
require 'elf/object_file'
|
|
|
|
require 'elf/symbol_table_section'
|
|
|
|
require 'elf/text_section'
|
|
|
|
require 'elf/string_table_section'
|
2014-04-14 17:09:56 +02:00
|
|
|
|
2014-04-23 12:57:34 +02:00
|
|
|
module Elf
|
2014-04-14 17:09:56 +02:00
|
|
|
|
|
|
|
class ObjectWriter
|
2014-05-19 16:32:41 +02:00
|
|
|
def initialize(program , target)
|
2014-04-19 22:25:46 +02:00
|
|
|
@object = Elf::ObjectFile.new(target)
|
2014-05-19 16:32:41 +02:00
|
|
|
@program = program
|
2014-04-19 22:25:46 +02:00
|
|
|
sym_strtab = Elf::StringTableSection.new(".strtab")
|
2014-04-14 17:09:56 +02:00
|
|
|
@object.add_section sym_strtab
|
2014-04-19 22:25:46 +02:00
|
|
|
@symbol_table = Elf::SymbolTableSection.new(".symtab", sym_strtab)
|
2014-04-14 17:09:56 +02:00
|
|
|
@object.add_section @symbol_table
|
|
|
|
|
2014-04-19 22:25:46 +02:00
|
|
|
@text = Elf::TextSection.new(".text")
|
2014-04-14 17:09:56 +02:00
|
|
|
@object.add_section @text
|
2014-05-19 16:32:41 +02:00
|
|
|
|
|
|
|
program.link_at( 0 , program.context )
|
|
|
|
|
|
|
|
binary = program.assemble(StringIO.new )
|
|
|
|
|
2014-05-19 20:28:18 +02:00
|
|
|
# blocks = program.functions.collect{ |f| [f.entry , f.exit , f.body] }
|
|
|
|
blocks = program.functions.collect{ |f| [f.body] }
|
2014-05-19 16:32:41 +02:00
|
|
|
blocks += [program.entry , program.exit , program.main]
|
|
|
|
blocks.flatten.each do |b|
|
|
|
|
add_symbol b.name.to_s , b.position
|
|
|
|
end
|
|
|
|
set_text binary.string
|
2014-04-14 17:09:56 +02:00
|
|
|
end
|
2014-05-20 09:28:34 +02:00
|
|
|
attr_reader :text
|
2014-04-14 17:09:56 +02:00
|
|
|
def set_text(text)
|
|
|
|
@text.text = text
|
|
|
|
add_symbol "_start", 0
|
|
|
|
end
|
|
|
|
def add_symbol(name, offset, linkage = Elf::Constants::STB_GLOBAL)
|
|
|
|
@symbol_table.add_func_symbol name, offset, @text, linkage
|
|
|
|
end
|
|
|
|
|
|
|
|
def save(filename)
|
2014-04-21 20:38:39 +02:00
|
|
|
to = File.open(filename, 'wb')
|
|
|
|
@object.write to
|
|
|
|
to.close
|
2014-04-14 17:09:56 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|