1 /* ndisasm.c the Netwide Disassembler main module
3 * The Netwide Assembler is copyright (C) 1996 Simon Tatham and
4 * Julian Hall. All rights reserved. The software is
5 * redistributable under the licence given in the file "Licence"
6 * distributed in the NASM archive.
19 #define BPL 8 /* bytes per line of hex dump */
21 static const char *help
=
22 "usage: ndisasm [-a] [-i] [-h] [-r] [-u] [-b bits] [-o origin] [-s sync...]\n"
23 " [-e bytes] [-k start,bytes] file\n"
24 " -a or -i activates auto (intelligent) sync\n"
25 " -u sets USE32 (32-bit mode)\n"
26 " -b 16 or -b 32 sets number of bits too\n"
27 " -h displays this text\n"
28 " -r displays the version number\n"
29 " -e skips <bytes> bytes of header\n"
30 " -k avoids disassembling <bytes> bytes from position <start>\n";
32 static void output_ins (unsigned long, unsigned char *, int, char *);
33 static void skip (unsigned long dist
, FILE *fp
);
35 int main(int argc
, char **argv
) {
36 unsigned char buffer
[INSN_MAX
* 2], *p
, *q
;
39 char *filename
= NULL
;
40 unsigned long nextsync
, synclen
, initskip
= 0L;
52 char *v
, *vv
, *p
= *++argv
;
55 while (*p
) switch (tolower(*p
)) {
56 case 'a': /* auto or intelligent sync */
62 fprintf(stderr
, help
);
65 fprintf(stderr
, "NDISASM version " NASM_VER
"\n");
72 v
= p
[1] ? p
+1 : --argc
? *++argv
: NULL
;
74 fprintf(stderr
, "%s: `-b' requires an argument\n", pname
);
79 else if (!strcmp(v
, "32"))
82 fprintf(stderr
, "%s: argument to `-b' should"
83 " be `16' or `32'\n", pname
);
85 p
= ""; /* force to next argument */
87 case 'o': /* origin */
88 v
= p
[1] ? p
+1 : --argc
? *++argv
: NULL
;
90 fprintf(stderr
, "%s: `-o' requires an argument\n", pname
);
93 offset
= readnum (v
, &rn_error
);
95 fprintf(stderr
, "%s: `-o' requires a numeric argument\n",
99 p
= ""; /* force to next argument */
101 case 's': /* sync point */
102 v
= p
[1] ? p
+1 : --argc
? *++argv
: NULL
;
104 fprintf(stderr
, "%s: `-s' requires an argument\n", pname
);
107 add_sync (readnum (v
, &rn_error
), 0L);
109 fprintf(stderr
, "%s: `-s' requires a numeric argument\n",
113 p
= ""; /* force to next argument */
115 case 'e': /* skip a header */
116 v
= p
[1] ? p
+1 : --argc
? *++argv
: NULL
;
118 fprintf(stderr
, "%s: `-e' requires an argument\n", pname
);
121 initskip
= readnum (v
, &rn_error
);
123 fprintf(stderr
, "%s: `-e' requires a numeric argument\n",
127 p
= ""; /* force to next argument */
129 case 'k': /* skip a region */
130 v
= p
[1] ? p
+1 : --argc
? *++argv
: NULL
;
132 fprintf(stderr
, "%s: `-k' requires an argument\n", pname
);
137 fprintf(stderr
, "%s: `-k' requires two numbers separated"
138 " by a comma\n", pname
);
142 nextsync
= readnum (v
, &rn_error
);
144 fprintf(stderr
, "%s: `-k' requires numeric arguments\n",
148 synclen
= readnum (vv
, &rn_error
);
150 fprintf(stderr
, "%s: `-k' requires numeric arguments\n",
154 add_sync (nextsync
, synclen
);
155 p
= ""; /* force to next argument */
158 } else if (!filename
) {
161 fprintf(stderr
, "%s: more than one filename specified\n", pname
);
167 fprintf(stderr
, help
, pname
);
171 fp
= fopen(filename
, "rb");
176 * This main loop is really horrible, and wants rewriting with
177 * an axe. It'll stay the way it is for a while though, until I
182 nextsync
= next_sync (offset
, &synclen
);
184 unsigned long to_read
= buffer
+sizeof(buffer
)-p
;
185 if (to_read
> nextsync
-offset
-(p
-q
))
186 to_read
= nextsync
-offset
-(p
-q
);
187 lenread
= fread (p
, 1, to_read
, fp
);
189 if (offset
== nextsync
) {
191 printf("%08lX skipping 0x%lX bytes\n", offset
, synclen
);
196 nextsync
= next_sync (offset
, &synclen
);
198 while (p
> q
&& (p
- q
>= INSN_MAX
|| lenread
== 0)) {
199 lendis
= disasm (q
, outbuf
, bits
, offset
, autosync
);
200 if (!lendis
|| lendis
> (p
- q
) ||
201 lendis
> nextsync
-offset
)
202 lendis
= eatbyte (q
, outbuf
);
203 output_ins (offset
, q
, lendis
, outbuf
);
207 if (q
>= buffer
+INSN_MAX
) {
208 unsigned char *r
= buffer
, *s
= q
;
215 } while (lenread
> 0 || !feof(fp
));
220 static void output_ins (unsigned long offset
, unsigned char *data
,
221 int datalen
, char *insn
) {
223 printf("%08lX ", offset
);
226 while (datalen
> 0 && bytes
< BPL
) {
227 printf("%02X", *data
++);
232 printf("%*s%s\n", (BPL
+1-bytes
)*2, "", insn
);
234 while (datalen
> 0) {
237 while (datalen
> 0 && bytes
< BPL
) {
238 printf("%02X", *data
++);
247 * Skip a certain amount of data in a file, either by seeking if
248 * possible, or if that fails then by reading and discarding.
250 static void skip (unsigned long dist
, FILE *fp
) {
251 char buffer
[256]; /* should fit on most stacks :-) */
254 * Got to be careful with fseek: at least one fseek I've tried
255 * doesn't approve of SEEK_CUR. So I'll use SEEK_SET and
256 * ftell... horrible but apparently necessary.
258 if (fseek (fp
, dist
+ftell(fp
), SEEK_SET
)) {
260 unsigned long len
= (dist
< sizeof(buffer
) ?
261 dist
: sizeof(buffer
));
262 if (fread (buffer
, 1, len
, fp
) < len
) {