/* OpenIDA - Outil d'analyse de fichiers binaires * binary.c - traitement des flots de code binaire * * Copyright (C) 2008 Cyrille Bagard * * This file is part of OpenIDA. * * OpenIDA is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * OpenIDA 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 Foobar. If not, see . */ #include "binary.h" #include "arch/processor.h" void fill_snippet(GtkSnippet *snippet) { asm_processor *proc; asm_instr *instr; // char *data = "\x66\xba\x0c\x00\x00\x00\x66\xb9\x28\x00\x00\x00\x66\xbb\x01\x00\x00\x00\x66\xb8\x04\x00\x00\x00\xcd\x80\x66\xbb\x00\x00\x00\x00\x66\xb8\x01\x00\x00\x00\xcd\x80\x48\x65\x6c\x6c\x6f\x20\x57\x6f\x72\x6c\x64\x0a"; uint8_t *data = "\x66\xbb\x00\x00\x00\x00\x66\xb8\x01\x00\x00\x00\xcd\x80\x90"; off_t pos; off_t len; char buffer[64]; uint64_t base = 0; uint64_t offset = 0; proc = create_x86_processor(); pos = 0; len = 15; gtk_snippet_set_processor(snippet, proc); gtk_snippet_add_line(snippet, offset, NULL, "Simple HelloWorld !"); while (pos < len) { offset = base + pos; instr = decode_instruction(proc, data, &pos, len); gtk_snippet_add_line(snippet, offset, instr, NULL); } /* gtk_snippet_build_content(snippet); */ }