summaryrefslogtreecommitdiff
path: root/src/binary.c
blob: 79928d6b73fa0b89599d0a763365e28d9cfe946c (plain)
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

/* 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 <http://www.gnu.org/licenses/>.
 */


#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";

    char *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);
    */


}