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.interrupt;
|
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.OtherLayer;
|
38 |
|
|
import ao486.test.layers.Pair;
|
39 |
|
|
import ao486.test.layers.SegmentLayer;
|
40 |
|
|
import ao486.test.layers.StackLayer;
|
41 |
|
|
import java.io.*;
|
42 |
|
|
import java.util.LinkedList;
|
43 |
|
|
import java.util.Random;
|
44 |
|
|
|
45 |
|
|
|
46 |
|
|
public class Test_HLT extends TestUnit implements Serializable {
|
47 |
|
|
public static void main(String args[]) throws Exception {
|
48 |
|
|
run_test(Test_HLT.class);
|
49 |
|
|
}
|
50 |
|
|
|
51 |
|
|
//--------------------------------------------------------------------------
|
52 |
|
|
@Override
|
53 |
|
|
public int get_test_count() throws Exception {
|
54 |
|
|
return 100;
|
55 |
|
|
}
|
56 |
|
|
|
57 |
|
|
@Override
|
58 |
|
|
public void init() throws Exception {
|
59 |
|
|
|
60 |
|
|
random = new Random(2 + index);
|
61 |
|
|
|
62 |
|
|
String instruction;
|
63 |
|
|
while(true) {
|
64 |
|
|
layers.clear();
|
65 |
|
|
|
66 |
|
|
/* 0 - #GP fault
|
67 |
|
|
* 1 - interrupt
|
68 |
|
|
*
|
69 |
|
|
*/
|
70 |
|
|
|
71 |
|
|
int type = random.nextInt(2);
|
72 |
|
|
|
73 |
|
|
LinkedList<Pair<Long, Long>> prohibited_list = new LinkedList<>();
|
74 |
|
|
|
75 |
|
|
// if false: v8086 mode
|
76 |
|
|
boolean is_real = (type == 0)? false : true;
|
77 |
|
|
|
78 |
|
|
InstructionLayer instr = new InstructionLayer(random, prohibited_list, true);
|
79 |
|
|
layers.add(instr);
|
80 |
|
|
StackLayer stack = new StackLayer(random, prohibited_list);
|
81 |
|
|
layers.add(stack);
|
82 |
|
|
layers.add(new OtherLayer(is_real ? OtherLayer.Type.REAL : OtherLayer.Type.PROTECTED_OR_V8086, random));
|
83 |
|
|
layers.add(new FlagsLayer(is_real ? FlagsLayer.Type.RANDOM : FlagsLayer.Type.V8086, random));
|
84 |
|
|
layers.add(new GeneralRegisterLayer(random));
|
85 |
|
|
layers.add(new SegmentLayer(random));
|
86 |
|
|
layers.add(new MemoryLayer(random));
|
87 |
|
|
layers.add(new IOLayer(random));
|
88 |
|
|
layers.addFirst(new HandleModeChangeLayer(
|
89 |
|
|
getInput("cr0_pe"),
|
90 |
|
|
getInput("vmflag"),
|
91 |
|
|
getInput("cs_rpl"),
|
92 |
|
|
getInput("cs_p"),
|
93 |
|
|
getInput("cs_s"),
|
94 |
|
|
getInput("cs_type")
|
95 |
|
|
));
|
96 |
|
|
|
97 |
|
|
// instruction size
|
98 |
|
|
boolean cs_d_b = getInput("cs_d_b") == 1;
|
99 |
|
|
|
100 |
|
|
boolean a32 = random.nextBoolean();
|
101 |
|
|
boolean o32 = random.nextBoolean();
|
102 |
|
|
|
103 |
|
|
long cs_limit = getInput("cs_limit");
|
104 |
|
|
|
105 |
|
|
|
106 |
|
|
Layer esp_layer = new Layer() {
|
107 |
|
|
long esp() { return 0xF0; }
|
108 |
|
|
long ss_base() { return 0; }
|
109 |
|
|
long iflag() { return 1; }
|
110 |
|
|
long tflag() { return 0; }
|
111 |
|
|
|
112 |
|
|
long cs_d_b() { return 0; }
|
113 |
|
|
|
114 |
|
|
long check_interrupt(long counter) { return counter == 1? 0xAA : counter == 2? 0xAB : 0x100; }
|
115 |
|
|
|
116 |
|
|
long get_test_type() { return 0; }
|
117 |
|
|
};
|
118 |
|
|
layers.addFirst(esp_layer);
|
119 |
|
|
|
120 |
|
|
long handler = cs_limit;
|
121 |
|
|
|
122 |
|
|
// add instruction
|
123 |
|
|
instruction = "F4" + "909090909090"; // HLT
|
124 |
|
|
|
125 |
|
|
instr.add_instruction(instruction);
|
126 |
|
|
|
127 |
|
|
// end condition
|
128 |
|
|
break;
|
129 |
|
|
}
|
130 |
|
|
|
131 |
|
|
System.out.println("Instruction: [" + instruction + "]");
|
132 |
|
|
}
|
133 |
|
|
}
|