-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEXE2COM.C
448 lines (363 loc) · 12.7 KB
/
EXE2COM.C
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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
/*
exe2com - exe2bin replacement by Chris Dunford/Cove Software
usage: exe2com [/I] infile [outfile]
usage is the same as exe2bin except:
1. Output defaults to COM rather than BIN
2. Binary fixup option not supported
3. Checksum not verified
4. Provides more useful error messages and a warning if a
COM file is being created with initial IP != 0x100
5. /I switch provides EXE file info instead of converting
Compiler notes:
This source was written for Microsoft C version 5.0. It
should be reasonably portable. Watch out for fseek();
what it returns seems to vary widely between compilers.
To compile with MSC, use:
cl exe2com.c (no switches necessary)
We have checked that the source (as of version 1.04) compiles
without error under Turbo C 1.5. It appears to operate correctly,
but we ran only some quick tests; there may be subtle errors here.
The original version of this program was knocked together in about
an hour in response to the removal of EXE2BIN from the standard DOS
distribution disks. Improvements/corrections are encouraged, but
please try to coordinate public releases through me.
Program donated to the public domain by the author.
cjd 4/17/87
Version history
---------------
Version 1.05 08/23/90 (CJD)
Added /R switch (relo table display).
Now compiled with MSC 6.0.
Version 1.04 03/02/88 (CJD)
Cleaned up some ugly code from the original quickie. Added
/I (info) switch. In previous versions, we defined an
error code for nonzero CS but didn't actually check it; now
we do. Source will now compile under either Microsoft C or
Turbo C.
Version 1.03 12/30/87 (CJD)
C86 version converted to Microsoft C (5.0) by Chris
Dunford. Increased size of I/O buffer to 4K to improve
speed; EXE2COM 1.03 is twice as fast as 1.02 and is now
slightly faster than EXE2BIN. The C86 version will no
longer be distributed.
Version 1.02 11/22/87
by Chris Blum (CompuServe 76625,1041)
Fix for even 512-byte boundary file losing last 512 bytes.
Also corrected signon per request of Chris Dunford (his name
was lost in the translation to Turbo C). Version 1.02
existed in both Turbo C and C86 versions, although only
the C86 executable was "officially" distributed.
Version 1.01 was a Turbo C conversion.
Version 1.00 04/17/87
Original C86 version by Chris Dunford
*/
#include <ctype.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#ifndef PATH_MAX
#define PATH_MAX 256
#endif
/* Version coding */
#define MAJVER 1
#define MINVER 0
#define REVISION 5
/* Conversion error codes */
#define BADREAD 0
#define BADWRITE 1
#define BADSIG 2
#define HASRELO 3
#define HAS_SS 4
#define HAS_CS 5
#define BAD_IP 6
#define TOO_BIG 7
/* This must be the last code */
#define UNKNOWN 8
/* Define size of console output buffer */
#define CONBUFSIZ 2048
/*
** Define structure of fixed-format part of EXE file header
*/
struct exe_header {
char exe_sig[2]; /* EXE file signature: "MZ" */
unsigned short excess, /* Image size mod 512 (valid bytes in last page) */
pages, /* # 512-byte pages in image */
relo_ct, /* Count of relocation table entries */
hdr_size, /* Size of header, in paragraphs */
min_mem, /* Min required memory */
max_mem, /* Max required memory */
ss, /* Stack seg offset in load module */
sp, /* Initial value of SP */
cksum, /* File checksum */
ip, /* Initial value of IP */
cs, /* CS offset in load module */
relo_start, /* Offset of first relo item */
ovl_num; /* Overlay number */
} xh;
FILE *fi, /* Input file stream */
*fo; /* Output file stream */
char fin[PATH_MAX + 1], /* Input file name */
fon[PATH_MAX + 1]; /* Output file name */
int info=0; /* Nonzero if /I found */
int relo_map=0; /* Nonzero if /R found */
char buf[CONBUFSIZ]; /* printf I/O buffer */
char defext[] = ".com"; /* Default output extension - change if you want */
unsigned long code_start, /* Offset of program image in EXE file */
code_size; /* Size of program image, in bytes */
/* Function prototypes */
void init (unsigned, char *[]);
void read_hdr (void);
void disp_info (void);
void convert (void);
void print_relo_map (void);
void err_xit (unsigned);
void usage (void);
/*
** program mainline
*/
int main(unsigned argc, char *argv[])
{
init (argc, argv);
read_hdr ();
if (info) {
disp_info ();
if (xh.relo_ct && relo_map)
print_relo_map();
}
else
convert ();
}
/*
** Initialize - parse arguments, get filenames, open/create files
*/
void init (unsigned argc, char **argv)
{
char c, *cp;
int i;
printf ("exe2com %u.%u%u by Chris Dunford/The Cove Software Group\n",
MAJVER, MINVER, REVISION);
/* Get arguments */
cp = *(++argv);
for (i=1; i < argc; i++) {
while ( (cp = strchr (cp, '/')) != (char *) NULL) {
*cp++ = '\0';
while (c = *cp++)
switch (toupper (c)) {
case 'I':
info = 1;
break;
case 'R':
relo_map = 1;
break;
default:
usage ();
}
}
if (**argv)
if (fin[0] == '\0')
strcpy (fin, (*argv));
else if (fon[0] == '\0')
strcpy (fon, (*argv));
else
usage ();
cp = *(++argv);
}
/* Check to ensure that an input filename was found *.
if (fin[0] == '\0') usage ();
/* If the input file has no extension, add .EXE */
if (strchr (fin, '.') == (char *) NULL)
strcat (fin, ".exe");
/* Copy input name to output if unspecified */
if (fon[0] == '\0')
strcpy (fon, fin);
/* Check output extension--change EXE to COM, or add COM */
if ((cp = strchr (fon, '.')) == (char *) NULL)
strcat (fon, defext);
else
strcpy (cp, defext);
/* Try to open input file */
if ((fi = fopen (fin, "rb")) == (FILE *) NULL) {
fprintf (stderr, "exe2com: can't find input file %s\n", fin);
exit (1);
}
/* Try to create output file, if INFO not requested */
if (!info)
if ((fo = fopen (fon, "wb")) == (FILE *) NULL) {
fprintf (stderr, "exe2com: can't open output file %s\n", fin);
exit (1);
}
}
/*
** usage display
*/
void usage (void)
{
fprintf (stderr, "usage: exe2com [/IR] infile [outfile]\n");
exit (1);
}
/*
** Read and check the EXE file header
*/
void read_hdr(void)
{
char *cp;
/* Read the formatted portion of the header */
if (!fread (&xh, sizeof (struct exe_header), 1, fi))
err_xit (BADREAD);
/* Check for "MZ" signature */
if (strncmp (xh.exe_sig, "MZ", 2))
err_xit (BADSIG);
/* Compute offset of program image in module, and program size.
**
** The program size is computed as follows; it cannot exceed 64K bytes:
** 512 * (# EXE pages - 1)
** + valid bytes in last EXE page
** - offset of program image in EXE file
**
** Note that if the IP is nonzero, we will skip the first
** IP bytes of the program image, and copy IP bytes fewer
** than the actual size.
*/
code_start = ((unsigned long) xh.hdr_size) << 4;
code_size = (unsigned long) (xh.pages-1) * 512
+ (xh.excess ? xh.excess : 512) /* fixed 11/19/87 - CJB */
- code_start;
/* Don't check anything else if /I requested */
if (info) return;
/* Check header; to be convertible, must have:
** -- no relocatable items
** -- no stack segment
** -- no code segment
** -- IP == 0 or 100
** -- code size < 65536
*/
// exe2fbin: ignore most checks
/* if (xh.relo_ct) {
if (relo_map) print_relo_map();
err_xit (HASRELO);
}
if (xh.ss || xh.sp)
err_xit (HAS_SS);
if (xh.cs)
err_xit (HAS_CS);
if (xh.ip != 0 && xh.ip != 0x100)
err_xit (BAD_IP); */
if (code_size > 65536L)
err_xit (TOO_BIG);
/* Issue a warning if COM file and IP != 0x100 */
if (!strcmp (strchr (fon, '.'), ".com") && xh.ip != 0x100)
fprintf (stderr, "exe2com warning: COM file, initial IP not 100H\n");
}
/*
** /i output: display EXE file info
*/
void disp_info (void)
{
char *cp;
unsigned long k;
cp = strrchr (fin, '\\');
if (!cp) cp = strchr (fin, ':');
cp = cp ? cp++ : fin;
printf ("\n%-20s (hex) (dec)\n",cp);
k = (unsigned long) (xh.pages-1) * 512 + (xh.excess ? xh.excess : 512);
printf (" EXE file size %5lX %7lu\n", k, k);
printf (" EXE header size (para) %4X %7u\n", xh.hdr_size, xh.hdr_size);
putchar (code_size > 65536L ? '*' : ' ');
printf (" Program image size (bytes) %5lX %7lu\n", code_size, code_size);
k = (unsigned long) xh.min_mem * 16 + code_size;
printf (" Minimum load size (bytes) %5lX %7lu\n", k, k);
printf (" Min allocation (para) %4X %7u\n", xh.min_mem, xh.min_mem);
printf (" Max allocation (para) %4X %7u\n", xh.max_mem, xh.max_mem);
putchar (xh.cs || (xh.ip != 0x100) ? '*' : ' ');
printf (" Initial CS:IP %04X:%04X\n", xh.cs, xh.ip);
putchar (xh.ss || xh.sp ? '*' : ' ');
printf (" Initial SS:SP %04X:%04X %7u (stack size)\n", xh.ss, xh.sp, xh.sp);
putchar (xh.relo_ct ? '*' : ' ');
printf (" Relocation count %4X %7u\n", xh.relo_ct, xh.relo_ct);
printf (" Relo table start %04X %7u\n", xh.relo_start, xh.relo_start);
printf (" EXE file checksum %04X %7u\n", xh.cksum, xh.cksum);
printf (" Overlay number %4X %7u\n", xh.ovl_num, xh.ovl_num);
printf ("* = this item prevents conversion to BIN/COM\n");
}
/*
** Convert the file. Nothing to do, really, other than
** reading the image (which follows the header), and
** dumping it back out to disk.
*/
void convert (void)
{
#define BUFSIZE 16384
static char buffer[BUFSIZE]; /* Forces buffer out of program stack */
unsigned bsize;
/* Seek to start of program image, skipping IP bytes */
if (fseek (fi, code_start+xh.ip, 0))
err_xit (BADREAD);
/* Read blocks and copy to output */
for (code_size -= xh.ip; code_size; code_size -= bsize) {
/* Set count of bytes to read/write */
bsize = code_size > BUFSIZE ? BUFSIZE : code_size;
/* Read and write block */
if (!fread (buffer, bsize, 1, fi))
err_xit (BADREAD);
if (!fwrite (buffer, bsize, 1, fo))
err_xit (BADWRITE);
}
/* All done, close the two files */
fclose (fi);
fclose (fo);
}
/*
** Display a map of relocatable items. When we start, the input file is
** is still open (fi). We'll seek to the start of the relo table and
** just read dwords from there.
**
*/
void print_relo_map (void)
{
static char emsg[] = "exe2com: error reading relocation table\n";
unsigned short relo_ptr[2];
int i;
if (fseek (fi, (long) xh.relo_start, SEEK_SET)) {
fprintf (stderr, emsg);
return;
}
printf ("relocation table:\n");
for (i = 1; i <= xh.relo_ct; i++) {
if (!fread (relo_ptr, 4, 1, fi)) {
fprintf (stderr, emsg);
return;
}
printf (" %04X:%04X", relo_ptr[1], relo_ptr[0]);
if (!(i % 6))
putchar ('\n');
}
if (xh.relo_ct % 6)
putchar ('\n');
}
/*
** Display an error message, delete output file, exit.
*/
void err_xit (unsigned code)
{
static char *msg[UNKNOWN+1] = {
"error reading EXE header",
"error writing output file",
"invalid EXE file signature",
"EXE has relocatable items",
"EXE has stack segment",
"EXE has nonzero CS",
"IP not 0 or 100H",
"program exceeds 64K",
"unknown internal error"
};
if (code > UNKNOWN) code = UNKNOWN;
fprintf (stderr, "exe2com: %s, can't convert\n", msg[code]);
/* Close two files and delete partial output */
fclose (fi);
fclose (fo);
unlink (fon);
/* Exit with errorlevel 1 */
exit (1);
}