mirror of
https://github.com/ksherlock/mpw-tools.git
synced 2024-10-31 12:04:29 +00:00
add -m/md5 option for LSegIIgs
This commit is contained in:
parent
92e8467736
commit
a6e0b2d0c3
117
LSegIIgs.c
117
LSegIIgs.c
@ -29,6 +29,8 @@
|
|||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
#include <sysexits.h>
|
||||||
|
#include <tomcrypt.h>
|
||||||
|
|
||||||
/* [v1.1] Use library routine rather than macro, so that program */
|
/* [v1.1] Use library routine rather than macro, so that program */
|
||||||
/* code is less complicated and can be optimized by ORCA/C */
|
/* code is less complicated and can be optimized by ORCA/C */
|
||||||
@ -78,10 +80,59 @@ char *segTypes[] = { /* [v1.1] Omit "unknown" for undefined segment types */
|
|||||||
"Direct-page/Stack "};
|
"Direct-page/Stack "};
|
||||||
|
|
||||||
|
|
||||||
|
const char *unhash(const unsigned char *hash) {
|
||||||
|
static char buffer[33];
|
||||||
|
static char table[] = "0123456789abcdef";
|
||||||
|
|
||||||
|
unsigned i, j;
|
||||||
|
|
||||||
|
for (i = 0, j = 0; i < 16; ++i) {
|
||||||
|
unsigned char c = hash[i];
|
||||||
|
buffer[j++] = table[c >> 4];
|
||||||
|
buffer[j++] = table[c & 0x0f];
|
||||||
|
}
|
||||||
|
buffer[j] = 0;
|
||||||
|
return buffer;
|
||||||
|
}
|
||||||
|
|
||||||
|
const char *md5(int fd, uint32_t length) {
|
||||||
|
hash_state md;
|
||||||
|
static uint8_t buffer[4096];
|
||||||
|
uint8_t hash[16];
|
||||||
|
|
||||||
|
|
||||||
|
md5_init(&md);
|
||||||
|
|
||||||
|
while (length) {
|
||||||
|
long l;
|
||||||
|
uint32_t count = sizeof(buffer);
|
||||||
|
if (count > length) count = length;
|
||||||
|
l = read(fd, buffer, count);
|
||||||
|
|
||||||
|
if (l < 0) {
|
||||||
|
if (errno == EINTR) continue;
|
||||||
|
err(EX_IOERR, "Error reading file");
|
||||||
|
}
|
||||||
|
if (l == 0) break;
|
||||||
|
|
||||||
|
md5_process(&md, buffer, l);
|
||||||
|
|
||||||
|
length -= l;
|
||||||
|
}
|
||||||
|
if (length) {
|
||||||
|
errx(EX_DATAERR, "Unexpected EOF");
|
||||||
|
}
|
||||||
|
md5_done(&md, hash);
|
||||||
|
return unhash(hash);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* --- Start of new code [v1.1] --- */
|
/* --- Start of new code [v1.1] --- */
|
||||||
|
|
||||||
/* Option for decimal rather than hex output */
|
/* Option for decimal rather than hex output */
|
||||||
int decimal_output=false;
|
int decimal_output=false;
|
||||||
|
int mflag = false;
|
||||||
|
|
||||||
/* Snippit of code to be analyzed for allocated stack size */
|
/* Snippit of code to be analyzed for allocated stack size */
|
||||||
static char code[8];
|
static char code[8];
|
||||||
@ -315,7 +366,20 @@ char *bname;
|
|||||||
default:
|
default:
|
||||||
printf(" unknown (0x%02X) ", kind);
|
printf(" unknown (0x%02X) ", kind);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (mflag) {
|
||||||
|
off_t size;
|
||||||
|
size = header.BYTECNT;
|
||||||
|
if (header.VERSION == 1) size *= 512;
|
||||||
|
size -= header.DISPDATA;
|
||||||
|
|
||||||
|
lseek(fd, off+header.DISPDATA, SEEK_SET);
|
||||||
|
fputs(md5(fd, size), stdout);
|
||||||
|
putchar(' ');
|
||||||
|
}
|
||||||
|
|
||||||
prntAscii(name+1,name[0]);
|
prntAscii(name+1,name[0]);
|
||||||
|
|
||||||
putchar('\n');
|
putchar('\n');
|
||||||
/* In OMF version 1, the first field is a block count */
|
/* In OMF version 1, the first field is a block count */
|
||||||
if (header.VERSION == 1)
|
if (header.VERSION == 1)
|
||||||
@ -329,7 +393,7 @@ char *bname;
|
|||||||
|
|
||||||
void usage(void)
|
void usage(void)
|
||||||
{
|
{
|
||||||
fprintf(stderr,"usage: LSegIIgs [-d] filename...\n");
|
fprintf(stderr,"### Usage: LSegIIgs [-d] [-m] filename...\n");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -358,11 +422,14 @@ int ch;
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Get option, if present */
|
/* Get option, if present */
|
||||||
while ((ch = getopt(argc, argv, "d")) != EOF) {
|
while ((ch = getopt(argc, argv, "dm")) != EOF) {
|
||||||
switch(ch) {
|
switch(ch) {
|
||||||
case 'd':
|
case 'd':
|
||||||
decimal_output = true;
|
decimal_output = true;
|
||||||
break;
|
break;
|
||||||
|
case 'm':
|
||||||
|
mflag = true;
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
usage();
|
usage();
|
||||||
}
|
}
|
||||||
@ -374,10 +441,48 @@ int ch;
|
|||||||
if (argc < 1) usage();
|
if (argc < 1) usage();
|
||||||
|
|
||||||
/* Print header [v1.1] */
|
/* Print header [v1.1] */
|
||||||
printf(
|
|
||||||
"File Type Size Stack Name\n");
|
|
||||||
printf(
|
if (mflag) {
|
||||||
"-------------------- ------------------ -------- ------ ----------------\n");
|
|
||||||
|
fputs(
|
||||||
|
"File "
|
||||||
|
"Type "
|
||||||
|
"Size "
|
||||||
|
"Stack "
|
||||||
|
"MD5 "
|
||||||
|
"Name\n",
|
||||||
|
stdout);
|
||||||
|
|
||||||
|
fputs(
|
||||||
|
"-------------------- "
|
||||||
|
"------------------ "
|
||||||
|
"-------- "
|
||||||
|
"------ "
|
||||||
|
"-------------------------------- "
|
||||||
|
"----------------\n",
|
||||||
|
stdout
|
||||||
|
);
|
||||||
|
|
||||||
|
} else {
|
||||||
|
fputs(
|
||||||
|
"File "
|
||||||
|
"Type "
|
||||||
|
"Size "
|
||||||
|
"Stack "
|
||||||
|
"Name\n",
|
||||||
|
stdout);
|
||||||
|
|
||||||
|
fputs(
|
||||||
|
"-------------------- "
|
||||||
|
"------------------ "
|
||||||
|
"-------- "
|
||||||
|
"------ "
|
||||||
|
"----------------\n",
|
||||||
|
stdout
|
||||||
|
);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
while (argc-- > 0) {
|
while (argc-- > 0) {
|
||||||
if ((fd = open(*argv, O_RDONLY)) < 0) {
|
if ((fd = open(*argv, O_RDONLY)) < 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user