OpenCores
URL https://opencores.org/ocsvn/ao486/ao486/trunk

Subversion Repositories ao486

[/] [ao486/] [trunk/] [ao486_tool/] [src/] [ao486/] [test/] [branch/] [TestRET_far_real_v8086.java] - Blame information for rev 2

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 alfik
/*
2
 * Copyright (c) 2014, Aleksander Osman
3
 * All rights reserved.
4
 *
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions are met:
7
 *
8
 * * Redistributions of source code must retain the above copyright notice, this
9
 *   list of conditions and the following disclaimer.
10
 *
11
 * * Redistributions in binary form must reproduce the above copyright notice,
12
 *   this list of conditions and the following disclaimer in the documentation
13
 *   and/or other materials provided with the distribution.
14
 *
15
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
19
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
21
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
22
 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
23
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25
 */
26
 
27
package ao486.test.branch;
28
 
29
import ao486.test.TestUnit;
30
import ao486.test.layers.FlagsLayer;
31
import ao486.test.layers.GeneralRegisterLayer;
32
import ao486.test.layers.HandleModeChangeLayer;
33
import ao486.test.layers.IOLayer;
34
import ao486.test.layers.InstructionLayer;
35
import ao486.test.layers.Layer;
36
import ao486.test.layers.MemoryLayer;
37
import ao486.test.layers.MemoryPatchLayer;
38
import ao486.test.layers.OtherLayer;
39
import ao486.test.layers.Pair;
40
import ao486.test.layers.SegmentLayer;
41
import ao486.test.layers.StackLayer;
42
import java.io.*;
43
import java.util.LinkedList;
44
import java.util.Random;
45
 
46
 
47
public class TestRET_far_real_v8086 extends TestUnit implements Serializable {
48
    public static void main(String args[]) throws Exception {
49
        run_test(TestRET_far_real_v8086.class);
50
    }
51
 
52
    //--------------------------------------------------------------------------
53
    @Override
54
    public int get_test_count() throws Exception {
55
        return 100;
56
    }
57
 
58
    @Override
59
    public void init() throws Exception {
60
 
61
        random = new Random(1 + index);
62
 
63
        String instruction;
64
        while(true) {
65
            layers.clear();
66
 
67
            LinkedList<Pair<Long, Long>> prohibited_list = new LinkedList<>();
68
 
69
            InstructionLayer instr  = new InstructionLayer(random, prohibited_list);
70
            layers.add(instr);
71
            StackLayer stack        = new StackLayer(random, prohibited_list);
72
            layers.add(stack);
73
            layers.add(new OtherLayer(random));
74
            layers.add(new FlagsLayer(random));
75
            layers.add(new GeneralRegisterLayer(random));
76
            layers.add(new SegmentLayer(random));
77
            layers.add(new MemoryLayer(random));
78
            layers.add(new IOLayer(random));
79
            layers.addFirst(new HandleModeChangeLayer(
80
                    getInput("cr0_pe"),
81
                    getInput("vmflag"),
82
                    getInput("cs_rpl"),
83
                    getInput("cs_p"),
84
                    getInput("cs_s"),
85
                    getInput("cs_type")
86
            ));
87
 
88
            // instruction size
89
            boolean cs_d_b = getInput("cs_d_b") == 1;
90
 
91
            boolean a32 = random.nextBoolean();
92
            boolean o32 = random.nextBoolean();
93
 
94
            // destination
95
            long cs  = random.nextInt(0xFFFF+1);
96
            long eip = Layer.norm(random.nextInt());
97
 
98
            if(o32 == false) eip &= 0xFFFF;
99
 
100
            long dest = (cs << 4) + eip;
101
 
102
            boolean can_add = Layer.collides(prohibited_list, (int)dest, (int)(dest+1));
103
 
104
            if(can_add == false) continue;
105
 
106
            MemoryPatchLayer patch = new MemoryPatchLayer(random, prohibited_list, (int)dest, 0x0F,0x0F);
107
            layers.addFirst(patch);
108
 
109
            // stack
110
            if(o32) {
111
                stack.push_dword((int)eip); //eip
112
                stack.push_dword((int)cs);  //cs
113
            }
114
            else {
115
                stack.push_word((int)eip); //eip
116
                stack.push_word((int)cs);  //cs
117
            }
118
 
119
            // add instruction
120
            boolean cr0_pe  = getInput("cr0_pe") == 1;
121
            boolean flag_vm = getInput("vmflag") == 1;
122
 
123
            instruction = prepare_instr(cs_d_b, a32, o32);
124
            instr.add_instruction(instruction);
125
 
126
            // end condition
127
            if(cr0_pe == false || flag_vm == true) {
128
System.out.printf("cs: %x, eip: %x, dst: %x\n", cs, eip, dest);
129
                break;
130
            }
131
        }
132
 
133
        System.out.println("Instruction: [" + instruction + "]");
134
    }
135
 
136
    int imm_len(boolean a32, boolean o32, int opcode) {
137
        return opcode == 0xCA ? 2 : 0;
138
    }
139
    String prepare_instr(boolean cs_d_b, boolean a32, boolean o32) throws Exception {
140
        int opcodes[] = {
141
            0xCA,0xCB
142
        };
143
 
144
        String prefix = "";
145
        if(cs_d_b != o32) { prefix = "66" + prefix; }
146
        if(cs_d_b != a32) { prefix = "67" + prefix; }
147
 
148
        int     opcode      = opcodes[random.nextInt(opcodes.length)];
149
        boolean is_modregrm = false;
150
 
151
        byte possible_modregrm = (byte)random.nextInt();
152
        byte possible_sib      = (byte)random.nextInt();
153
 
154
        int len = (is_modregrm == false)? 1 : 1 + modregrm_len(!cs_d_b, unsigned(possible_modregrm), unsigned(possible_sib));
155
        len += imm_len(a32, o32, opcode);
156
 
157
 
158
        byte instr[] = new byte[len];
159
        instr[0] = (byte)opcode;
160
        for(int i=1; i<len; i++) {
161
            if(i==1)        instr[1] = possible_modregrm;
162
            else if(i==2)   instr[2] = possible_sib;
163
            else            instr[i] = (byte)random.nextInt();
164
        }
165
 
166
        return prefix + bytesToHex(instr);
167
    }
168
 
169
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.