]> git.siccegge.de Git - frida/frida.git/commitdiff
Split blocks before finishing function
authorChristoph Egger <siccegge@faui49man12.informatik.uni-erlangen.de>
Thu, 8 Jan 2015 17:42:04 +0000 (18:42 +0100)
committerChristoph Egger <siccegge@faui49man12.informatik.uni-erlangen.de>
Thu, 8 Jan 2015 17:42:04 +0000 (18:42 +0100)
src/disassembler/Function.hxx
src/disassembler/llvm/LLVMDisassembler.cxx
src/disassembler/llvm/LLVMDisassembler.hxx
src/disassembler/llvm/LLVMFunction.hxx

index ccca54c2198ec22b247ba27e264bac30e526908a..57833baaf1ccbf210b62867caed574248bfb40e3 100644 (file)
@@ -2,6 +2,7 @@
 #define INCLUDE__Function_hxx
 
 #include "disassembler/BasicBlock.hxx"
 #define INCLUDE__Function_hxx
 
 #include "disassembler/BasicBlock.hxx"
+#include <map>
 
 class Function {
 public:
 
 class Function {
 public:
@@ -17,9 +18,18 @@ public:
        std::string getName() const {
                return name;
        }
        std::string getName() const {
                return name;
        }
+
+       void addBasicBlock(BasicBlock* block) {
+               _blocks.insert(std::make_pair(block->getStartAddress(), block));
+       }
+
+       std::map<uint64_t, BasicBlock*>& blocks() {
+               return _blocks;
+       }
 private:
        std::string name;
        uint64_t start_address;
 private:
        std::string name;
        uint64_t start_address;
+       std::map<uint64_t, BasicBlock*> _blocks;
 };
 
 #endif
 };
 
 #endif
index 79c7a544467fb8f6ce58abf6fae95c800d7bf750..c73e703d29c33e4f803bdb6bd926aa4892741a3d 100644 (file)
@@ -138,7 +138,7 @@ Function* LLVMDisassembler::disassembleFunctionAt(uint64_t address, const std::s
        text_section.getAddress(base_address);
        text_section.getSize(size);
 
        text_section.getAddress(base_address);
        text_section.getSize(size);
 
-       if (address < base_address || 
+       if (address < base_address ||
            address >= base_address + size) {
                return NULL;
        }
            address >= base_address + size) {
                return NULL;
        }
@@ -174,6 +174,7 @@ void LLVMDisassembler::disassembleFunction(LLVMFunction* function) {
        LLVMBasicBlock * block = new LLVMBasicBlock(function->getStartAddress(), this);
        remaining_blocks.push(block);
        blocks.insert(std::make_pair(block->getStartAddress(), block));
        LLVMBasicBlock * block = new LLVMBasicBlock(function->getStartAddress(), this);
        remaining_blocks.push(block);
        blocks.insert(std::make_pair(block->getStartAddress(), block));
+       function->addBasicBlock(block);
 
        while (remaining_blocks.size()) {
                LLVMBasicBlock * current_block = remaining_blocks.top();
 
        while (remaining_blocks.size()) {
                LLVMBasicBlock * current_block = remaining_blocks.top();
@@ -206,6 +207,7 @@ void LLVMDisassembler::disassembleFunction(LLVMFunction* function) {
                                                        if (blocks.find(jmptarget) == blocks.end()) {
                                                                LLVMBasicBlock * block = new LLVMBasicBlock(jmptarget, this);
                                                                blocks.insert(std::make_pair(block->getStartAddress(), block));
                                                        if (blocks.find(jmptarget) == blocks.end()) {
                                                                LLVMBasicBlock * block = new LLVMBasicBlock(jmptarget, this);
                                                                blocks.insert(std::make_pair(block->getStartAddress(), block));
+                                                               function->addBasicBlock(block);
                                                                remaining_blocks.push(block);
                                                        }
                                                        if (MIA->isConditionalBranch(inst)) {
                                                                remaining_blocks.push(block);
                                                        }
                                                        if (MIA->isConditionalBranch(inst)) {
@@ -214,6 +216,7 @@ void LLVMDisassembler::disassembleFunction(LLVMFunction* function) {
                                                                if (blocks.find(jmptarget) == blocks.end()) {
                                                                        LLVMBasicBlock * block = new LLVMBasicBlock(jmptarget, this);
                                                                        blocks.insert(std::make_pair(block->getStartAddress(), block));
                                                                if (blocks.find(jmptarget) == blocks.end()) {
                                                                        LLVMBasicBlock * block = new LLVMBasicBlock(jmptarget, this);
                                                                        blocks.insert(std::make_pair(block->getStartAddress(), block));
+                                                                       function->addBasicBlock(block);
                                                                        remaining_blocks.push(block);
                                                                }
                                                        }
                                                                        remaining_blocks.push(block);
                                                                }
                                                        }
@@ -234,6 +237,7 @@ void LLVMDisassembler::disassembleFunction(LLVMFunction* function) {
                        current_address += inst_size;
                }
        }
                        current_address += inst_size;
                }
        }
+       splitBlocks(function);
        LOG4CXX_DEBUG(logger, "Finished function " << function->getName());
        manager->signal_new_function(function);
 }
        LOG4CXX_DEBUG(logger, "Finished function " << function->getName());
        manager->signal_new_function(function);
 }
@@ -293,19 +297,19 @@ void LLVMDisassembler::disassemble() {
                LOG4CXX_INFO(logger, "No Symbols found, starting at the beginning of the text segment");
                disassembleFunctionAt(text_entry);
        }
                LOG4CXX_INFO(logger, "No Symbols found, starting at the beginning of the text segment");
                disassembleFunctionAt(text_entry);
        }
-
-       splitBlocks();
 }
 
 }
 
-void LLVMDisassembler::splitBlocks() {
+void LLVMDisassembler::splitBlocks(LLVMFunction* function) {
        SectionRef text_section = sections[".text"];
        StringRef bytes;
        text_section.getContents(bytes);
        StringRefMemoryObject ref(bytes);
 
        // Split blocks where jumps are going inside the block
        SectionRef text_section = sections[".text"];
        StringRef bytes;
        text_section.getContents(bytes);
        StringRefMemoryObject ref(bytes);
 
        // Split blocks where jumps are going inside the block
-       for (auto it = blocks.begin(); it != blocks.end(); ++it) {
-               LLVMBasicBlock * current_block = it->second;
+       for (auto it = function->blocks().begin();
+            it != function->blocks().end();
+            ++it) {
+               BasicBlock * current_block = it->second;
                uint64_t inst_size;
                uint64_t base_address;
                text_section.getAddress(base_address);
                uint64_t inst_size;
                uint64_t base_address;
                text_section.getAddress(base_address);
@@ -317,8 +321,10 @@ void LLVMDisassembler::splitBlocks() {
 
                        if(llvm::MCDisassembler::Success ==
                           DisAsm->getInstruction(inst, inst_size, ref, current_address, nulls(), nulls())) {
 
                        if(llvm::MCDisassembler::Success ==
                           DisAsm->getInstruction(inst, inst_size, ref, current_address, nulls(), nulls())) {
+                               // See if some other block starts here
                                auto other = blocks.find(current_address + inst_size + base_address);
 
                                auto other = blocks.find(current_address + inst_size + base_address);
 
+                               // Special case, other block starts here but we are at the end anyway
                                if (other != blocks.end()) {
                                        uint64_t endaddress = current_address + inst_size + base_address;
                                        if (endaddress != current_block->getEndAddress()) {
                                if (other != blocks.end()) {
                                        uint64_t endaddress = current_address + inst_size + base_address;
                                        if (endaddress != current_block->getEndAddress()) {
@@ -377,7 +383,8 @@ void LLVMDisassembler::forEachFunction(std::function<void (uint64_t, Function*)>
 }
 
 void LLVMDisassembler::printEachInstruction(uint64_t start, uint64_t end,
 }
 
 void LLVMDisassembler::printEachInstruction(uint64_t start, uint64_t end,
-                                            std::function<void (uint8_t*, size_t, const std::string&)> fun) {
+                                            std::function<void (uint8_t*, size_t,
+                                                                const std::string&)> fun) {
        SectionRef text_section = sections[".text"];
        uint64_t base_address;
        text_section.getAddress(base_address);
        SectionRef text_section = sections[".text"];
        uint64_t base_address;
        text_section.getAddress(base_address);
index 107767d646428ed11a8ee036a0472ad86b118ed4..b0ab082502a4483d3062b412e36b83e6787001a9 100644 (file)
@@ -41,7 +41,7 @@ protected:
 private:
        // http://llvm.org/docs/doxygen/html/MCObjectDisassembler_8cpp_source.html +197
        void disassembleFunction(LLVMFunction* function);
 private:
        // http://llvm.org/docs/doxygen/html/MCObjectDisassembler_8cpp_source.html +197
        void disassembleFunction(LLVMFunction* function);
-       void splitBlocks();
+       void splitBlocks(LLVMFunction* fun);
        void disassemble();
 
        void readSymbols();
        void disassemble();
 
        void readSymbols();
index 3bc813a79359511da101eac0488b24ab9dd3a209..0bdb1dc12aef4dcfce0ed0ff02ebb62e0e090918 100644 (file)
@@ -11,6 +11,3 @@ private:
 };
 
 #endif
 };
 
 #endif
-
-
-