summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 0fd5aee58b1b85603ca4284bef7ab2224ad1b941 (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
2008-08-05  Cyrille Bagard <nocbos@gmail.com>

	* src/gtksnippet.c:
	* src/gtksnippet.h:
	Define a margin for setting breakpoints.

2008-08-03  Cyrille Bagard <nocbos@gmail.com>

	* src/arch/x86/instruction.h:
	Remove all the identifiers for the prefix '0x66'.

	* src/arch/x86/Makefile.am:
	Add op_(adc|add|and|or|sbb|sub|xor).c to libarchx86_a_SOURCES.

	* src/arch/x86/op_adc.c:
	* src/arch/x86/op_add.c:
	* src/arch/x86/op_and.c:
	New entries: support more opcodes.

	* src/arch/x86/opcodes.h:
	Register the new opcodes.

	* src/arch/x86/operand.c:
	* src/arch/x86/operand.h:
	Read registers from the ModR/M encoding.

	* src/arch/x86/op_mov.c:
	Support the 'mov' opcode from a register to another one.

	* src/arch/x86/op_or.c:
	* src/arch/x86/op_sbb.c:
	* src/arch/x86/op_sub.c:
	* src/arch/x86/op_xor.c:
	New entries: support more opcodes.

	* src/arch/x86/processor.c:
	Handle opcode extension. Improve the way that instructions with prefix
	are handled, and thus decrease the amount of lines of code.

2008-08-01  Cyrille Bagard <nocbos@gmail.com>

	* src/arch/x86/instruction.h:
	Register the new opcodes.

	* src/arch/x86/Makefile.am:
	Add op_(leave|ret).c to libarchx86_a_SOURCES.

	* src/arch/x86/opcodes.h:
	Register the new opcodes.

	* src/arch/x86/op_leave.c:
	* src/arch/x86/op_ret.c:
	New entries: handle the 'leave' and 'ret' opcodes.

	* src/arch/x86/processor.c:
	Register the new opcodes. Avoid wrong warning messages.

2008-07-31  Cyrille Bagard <nocbos@gmail.com>

	* src/arch/operand.c:
	* src/arch/operand.h:
	Read relative immediate operands.

	* src/arch/operand-int.h:
	Typo.

	* src/arch/processor.c:
	* src/arch/processor.h:
	Update the code: use the virtual offset.

	* src/arch/processor-int.h:
	* src/arch/x86/instruction.h:
	Support new instructions: X86_OP_PUSH_IMM(32|16) and X86_OP_CALL.

	* src/arch/x86/Makefile.am:
	Add op_call.c to libarchx86_a_SOURCES.

	* src/arch/x86/op_call.c:
	New entry: Handle the virtual offset ; fix the operand-size overriding.

	* src/arch/x86/opcodes.h:
	* src/arch/x86/op_dec.c:
	* src/arch/x86/op_hlt.c:
	* src/arch/x86/op_inc.c:
	* src/arch/x86/op_int.c:
	* src/arch/x86/op_mov.c:
	* src/arch/x86/op_nop.c:
	Handle the virtual offset ; fix the operand-size overriding.

	* src/arch/x86/op_pop.c:
	* src/arch/x86/op_push.c:
	Handle the virtual offset ; fix the operand-size overriding.
	Handle immediate values.

	* src/arch/x86/processor.c:
	* src/arch/x86/processor.h:
	Handle the virtual offset ; fix the operand-size overriding.

	* src/binary.c:
	Provide the virtual offset when decoding.

	* src/format/elf/format_elf.c:
	* src/format/elf/format_elf.h:
	Provide the virtual offset when reading ELF.

2008-07-30  Cyrille Bagard <nocbos@gmail.com>

	* src/arch/x86/instruction.h:
	Register new opcodes.

	* src/arch/x86/Makefile.am:
	Add op_(dec|hlt|inc|pop|push).c to libarchx86_a_SOURCES.

	* src/arch/x86/opcodes.h:
	Register new opcodes.

	* src/arch/x86/op_dec.c:
	Register this new opcode.

	* src/arch/x86/operand.c:
	* src/arch/x86/operand.h:
	Fix a mistake: define a base when reading the target register.

	* src/arch/x86/op_hlt.c:
	* src/arch/x86/op_inc.c:
	Register these new opcodes.

	* src/arch/x86/op_mov.c:
	Update the call to x86_create_reg1632_operand().

	* src/arch/x86/op_nop.c:
	Typo.

	* src/arch/x86/op_pop.c:
	* src/arch/x86/op_push.c:
	Register these new opcodes.

	* src/arch/x86/processor.c:
	Register the new opcodes and fix a bug with X86_OP_MOV_CX (s/D/C).

	* src/binary.c:
	Load the content of the file '/tmp/hello'.

	* src/format/elf/format_elf.c:
	* src/format/elf/format_elf.h:
	Look for the executable part of an ELF file.

2008-07-29  Cyrille Bagard <nocbos@gmail.com>

	* src/binary.c:
	Increase the length of the input code.

	* src/editor.c:
	Fix a warning about the GtkScrolledWindow.

	* src/gtksnippet.c:
	Adapt the size of the GtkSnippet widget. Define a white background.

2008-07-28  Cyrille Bagard <nocbos@gmail.com>

	* src/arch/operand.c:
	Fix a bug when reading immediate values (|| != |).

	* src/binary.c:
	Map the content of a given file into memory.

2008-07-27  Cyrille Bagard <nocbos@gmail.com>

	* configure.ac:
	Forget to commit last time.

	* src/arch/instruction.c:
	* src/arch/instruction.h:
	Change the data type (char -> uint8_t)  and update for the new internal
	structure.

	* src/arch/instruction-int.h:
	Change the definition of the asm_instr structure.

	* src/arch/operand.c:
	* src/arch/operand.h:
	Manage in a generic way 'db' and immediate values.

	* src/arch/operand-int.h:
	Refine the operand description.

	* src/arch/processor.c:
	* src/arch/processor.h:
	* src/arch/processor-int.h:
	Change the data type (char -> uint8_t) and handle the syntax.

	* src/arch/x86/instruction.h:
	Add new opcodes and support prefixes.

	* src/arch/x86/Makefile.am:
	Add op_nop.c, op_mov.c and operand.[ch] to libarchx86_a_SOURCES.

	* src/arch/x86/opcodes.h:
	Keep the list up to date.

	* src/arch/x86/operand.c:
	* src/arch/x86/operand.h:
	New entries: support some x86 specific operands.

	* src/arch/x86/op_int.c:
	Change the data type (char -> uint8_t)  and update for the new internal
	structure.

	* src/arch/x86/op_mov.c:
	* src/arch/x86/op_nop.c:
	New entries: Add these two new operands.

	* src/arch/x86/processor.c:
	Change the data type (char -> uint8_t) and handle the syntax. Support
	opcode prefixes and new opcodes. Clean the code for fetching instructions
	and the one for printing them.

	* src/binary.c:
	Change the data type (char -> uint8_t).

	* src/gtksnippet.c:
	Ask for a given syntax (Intel).

2008-07-27  Cyrille Bagard <nocbos@gmail.com>

	* configure.ac:
	Remove AC_PROG_RANLIB in favor of AC_PROG_LIBTOOL. Add AM_PROG_CC_C_O
	and schedule the creation of the new Makefiles.

	* src/arch/instruction.c:
	* src/arch/instruction.h:
	* src/arch/instruction-int.h:
	* src/arch/Makefile.am:
	* src/arch/operand.c:
	* src/arch/operand.h:
	* src/arch/operand-int.h:
	* src/arch/processor.c:
	* src/arch/processor.h:
	* src/arch/processor-int.h:
	* src/arch/x86/instruction.h:
	* src/arch/x86/Makefile.am:
	* src/arch/x86/opcodes.h:
	* src/arch/x86/op_int.c:
	* src/arch/x86/processor.c:
	* src/arch/x86/processor.h:
	New entries: parse x86 binary data and display the result.

	* src/binary.c:
	* src/binary.h:
	New entries: load a basic ASM content.

	* src/editor.c:
	Set some fixed fonts and use the new code snippet. Update the GPL header
	(Firebox Tools -> OpenIDA, version 2 -> version 3).

	* src/format/elf/format_elf.c:
	* src/format/elf/format_elf.h:
	* src/format/elf/Makefile.am:
	* src/format/Makefile.am:
	New entries: empty files.

	* src/gtksnippet.c:
	* src/gtksnippet.h:
	New entries: from an example from GTK.org, display assembly content.

	* src/Makefile.am:
	Add binary.[ch] and gtksnippet.[cg] files to openida_SOURCES and internal
	libraries to openida_LDADD.

2008-07-23  Cyrille Bagard <nocbos@gmail.com>

	* AUTHORS:
	* ChangeLog:
	* configure.ac:
	* Makefile.am:
	* NEWS:
	* po/Makevars:
	* po/POTFILES.in:
	* README:
	* src/editor.c:
	* src/Makefile.am:
	Initial commit. State of the program submitted to Gna!.