diff options
Diffstat (limited to 'src/arch/dalvik/op_aget.c')
-rw-r--r-- | src/arch/dalvik/op_aget.c | 281 |
1 files changed, 0 insertions, 281 deletions
diff --git a/src/arch/dalvik/op_aget.c b/src/arch/dalvik/op_aget.c deleted file mode 100644 index 25a4ab5..0000000 --- a/src/arch/dalvik/op_aget.c +++ /dev/null @@ -1,281 +0,0 @@ - -/* OpenIDA - Outil d'analyse de fichiers binaires - * op_aget.c - décodage des instructions manipulant des tableaux (chargement) - * - * Copyright (C) 2010 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 "opcodes.h" - - -#include "instruction.h" -#include "operand.h" - - - -/****************************************************************************** -* * -* Paramètres : data = flux de données à analyser. * -* pos = position courante dans ce flux. [OUT] * -* len = taille totale des données à analyser. * -* addr = adresse virtuelle de l'instruction. * -* proc = architecture ciblée par le désassemblage. * -* * -* Description : Décode une instruction de type 'aget'. * -* * -* Retour : Instruction mise en place ou NULL. * -* * -* Remarques : - * -* * -******************************************************************************/ - -GArchInstruction *dalvik_read_instr_aget(const bin_t *data, off_t *pos, off_t len, vmpa_t addr, const GDalvikProcessor *proc) -{ - GArchInstruction *result; /* Instruction à retourner */ - SourceEndian endian; /* Boutisme lié au binaire */ - - result = g_dalvik_instruction_new(DOP_AGET); - - endian = g_arch_processor_get_endianness(G_ARCH_PROCESSOR(proc)); - - if (!dalvik_read_operands(result, data, pos, len, endian, DALVIK_OPT_23X)) - { - g_object_unref(G_OBJECT(result)); - return NULL; - } - - return result; - -} - - -/****************************************************************************** -* * -* Paramètres : data = flux de données à analyser. * -* pos = position courante dans ce flux. [OUT] * -* len = taille totale des données à analyser. * -* addr = adresse virtuelle de l'instruction. * -* proc = architecture ciblée par le désassemblage. * -* * -* Description : Décode une instruction de type 'aget-boolean'. * -* * -* Retour : Instruction mise en place ou NULL. * -* * -* Remarques : - * -* * -******************************************************************************/ - -GArchInstruction *dalvik_read_instr_aget_boolean(const bin_t *data, off_t *pos, off_t len, vmpa_t addr, const GDalvikProcessor *proc) -{ - GArchInstruction *result; /* Instruction à retourner */ - SourceEndian endian; /* Boutisme lié au binaire */ - - result = g_dalvik_instruction_new(DOP_AGET_BOOLEAN); - - endian = g_arch_processor_get_endianness(G_ARCH_PROCESSOR(proc)); - - if (!dalvik_read_operands(result, data, pos, len, endian, DALVIK_OPT_23X)) - { - g_object_unref(G_OBJECT(result)); - return NULL; - } - - return result; - -} - - -/****************************************************************************** -* * -* Paramètres : data = flux de données à analyser. * -* pos = position courante dans ce flux. [OUT] * -* len = taille totale des données à analyser. * -* addr = adresse virtuelle de l'instruction. * -* proc = architecture ciblée par le désassemblage. * -* * -* Description : Décode une instruction de type 'aget-byte'. * -* * -* Retour : Instruction mise en place ou NULL. * -* * -* Remarques : - * -* * -******************************************************************************/ - -GArchInstruction *dalvik_read_instr_aget_byte(const bin_t *data, off_t *pos, off_t len, vmpa_t addr, const GDalvikProcessor *proc) -{ - GArchInstruction *result; /* Instruction à retourner */ - SourceEndian endian; /* Boutisme lié au binaire */ - - result = g_dalvik_instruction_new(DOP_AGET_BYTE); - - endian = g_arch_processor_get_endianness(G_ARCH_PROCESSOR(proc)); - - if (!dalvik_read_operands(result, data, pos, len, endian, DALVIK_OPT_23X)) - { - g_object_unref(G_OBJECT(result)); - return NULL; - } - - return result; - -} - - -/****************************************************************************** -* * -* Paramètres : data = flux de données à analyser. * -* pos = position courante dans ce flux. [OUT] * -* len = taille totale des données à analyser. * -* addr = adresse virtuelle de l'instruction. * -* proc = architecture ciblée par le désassemblage. * -* * -* Description : Décode une instruction de type 'aget-char'. * -* * -* Retour : Instruction mise en place ou NULL. * -* * -* Remarques : - * -* * -******************************************************************************/ - -GArchInstruction *dalvik_read_instr_aget_char(const bin_t *data, off_t *pos, off_t len, vmpa_t addr, const GDalvikProcessor *proc) -{ - GArchInstruction *result; /* Instruction à retourner */ - SourceEndian endian; /* Boutisme lié au binaire */ - - result = g_dalvik_instruction_new(DOP_AGET_CHAR); - - endian = g_arch_processor_get_endianness(G_ARCH_PROCESSOR(proc)); - - if (!dalvik_read_operands(result, data, pos, len, endian, DALVIK_OPT_23X)) - { - g_object_unref(G_OBJECT(result)); - return NULL; - } - - return result; - -} - - -/****************************************************************************** -* * -* Paramètres : data = flux de données à analyser. * -* pos = position courante dans ce flux. [OUT] * -* len = taille totale des données à analyser. * -* addr = adresse virtuelle de l'instruction. * -* proc = architecture ciblée par le désassemblage. * -* * -* Description : Décode une instruction de type 'aget-object'. * -* * -* Retour : Instruction mise en place ou NULL. * -* * -* Remarques : - * -* * -******************************************************************************/ - -GArchInstruction *dalvik_read_instr_aget_object(const bin_t *data, off_t *pos, off_t len, vmpa_t addr, const GDalvikProcessor *proc) -{ - GArchInstruction *result; /* Instruction à retourner */ - SourceEndian endian; /* Boutisme lié au binaire */ - - result = g_dalvik_instruction_new(DOP_AGET_OBJECT); - - endian = g_arch_processor_get_endianness(G_ARCH_PROCESSOR(proc)); - - if (!dalvik_read_operands(result, data, pos, len, endian, DALVIK_OPT_23X)) - { - g_object_unref(G_OBJECT(result)); - return NULL; - } - - return result; - -} - - -/****************************************************************************** -* * -* Paramètres : data = flux de données à analyser. * -* pos = position courante dans ce flux. [OUT] * -* len = taille totale des données à analyser. * -* addr = adresse virtuelle de l'instruction. * -* proc = architecture ciblée par le désassemblage. * -* * -* Description : Décode une instruction de type 'aget-short'. * -* * -* Retour : Instruction mise en place ou NULL. * -* * -* Remarques : - * -* * -******************************************************************************/ - -GArchInstruction *dalvik_read_instr_aget_short(const bin_t *data, off_t *pos, off_t len, vmpa_t addr, const GDalvikProcessor *proc) -{ - GArchInstruction *result; /* Instruction à retourner */ - SourceEndian endian; /* Boutisme lié au binaire */ - - result = g_dalvik_instruction_new(DOP_AGET_SHORT); - - endian = g_arch_processor_get_endianness(G_ARCH_PROCESSOR(proc)); - - if (!dalvik_read_operands(result, data, pos, len, endian, DALVIK_OPT_23X)) - { - g_object_unref(G_OBJECT(result)); - return NULL; - } - - return result; - -} - - -/****************************************************************************** -* * -* Paramètres : data = flux de données à analyser. * -* pos = position courante dans ce flux. [OUT] * -* len = taille totale des données à analyser. * -* addr = adresse virtuelle de l'instruction. * -* proc = architecture ciblée par le désassemblage. * -* * -* Description : Décode une instruction de type 'aget-wide'. * -* * -* Retour : Instruction mise en place ou NULL. * -* * -* Remarques : - * -* * -******************************************************************************/ - -GArchInstruction *dalvik_read_instr_aget_wide(const bin_t *data, off_t *pos, off_t len, vmpa_t addr, const GDalvikProcessor *proc) -{ - GArchInstruction *result; /* Instruction à retourner */ - SourceEndian endian; /* Boutisme lié au binaire */ - - result = g_dalvik_instruction_new(DOP_AGET_WIDE); - - endian = g_arch_processor_get_endianness(G_ARCH_PROCESSOR(proc)); - - if (!dalvik_read_operands(result, data, pos, len, endian, DALVIK_OPT_23X)) - { - g_object_unref(G_OBJECT(result)); - return NULL; - } - - return result; - -} |