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 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742
|
/**
* @namespace biew_plugins_auto
* @file plugins/bin/nlm386.c
* @brief This file contains implementation of NLM-32 (Novell Loadable
* Module) file format decoder.
* @version -
* @remark this source file is part of Binary vIEW project (BIEW).
* The Binary vIEW (BIEW) is copyright (C) 1995 Nick Kurshev.
* All rights reserved. This software is redistributable under the
* licence given in the file "Licence.en" ("Licence.ru" in russian
* translation) distributed in the BIEW archive.
* @note Requires POSIX compatible development system
*
* @author Nick Kurshev
* @since 1995
* @note Development, fixes and improvements
**/
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <limits.h>
#include "colorset.h"
#include "bin_util.h"
#include "plugins/disasm.h"
#include "plugins/bin/nlm386.h"
#include "codeguid.h"
#include "bmfile.h"
#include "bconsole.h"
#include "reg_form.h"
#include "tstrings.h"
#include "biewutil.h"
#include "biewhelp.h"
#include "biewlib/pmalloc.h"
#include "biewlib/biewlib.h"
#include "biewlib/kbd_code.h"
static Nlm_Internal_Fixed_Header nlm;
static tBool __NEAR__ __FASTCALL__ FindPubName(char *buff,unsigned cb_buff,unsigned long pa);
static void __FASTCALL__ nlm_ReadPubNameList(BGLOBAL handle,void (__FASTCALL__ *mem_out)(const char *));
static unsigned long __FASTCALL__ NLMPA2VA(unsigned long pa);
static BGLOBAL nlm_cache = &bNull;
static tBool __FASTCALL__ nlmLowMemFunc( unsigned long need_mem )
{
UNUSED(need_mem);
if(!fmtActiveState)
{
if(PubNames)
{
la_Destroy(PubNames);
PubNames = NULL;
return True;
}
}
return False;
}
static unsigned long __FASTCALL__ ShowNLMHeader( void )
{
unsigned long fpos;
char modName[NLM_MODULE_NAME_SIZE];
TWindow * w;
unsigned keycode;
fpos = BMGetCurrFilePos();
w = CrtDlgWndnls(" NetWare Loadable Module ",59,23);
twGotoXY(1,1);
strncpy(modName,(char *)&nlm.nlm_moduleName[1],(int)nlm.nlm_moduleName[0]);
modName[(unsigned)nlm.nlm_moduleName[0]] = 0;
twPrintF("Module (Version) = %s (%02hu.%02hu)\n"
"Code image offset = %08lXH\n"
"Code image size = %08lXH\n"
"Data image offset = %08lXH\n"
"Data image size = %08lXH\n"
"Uninitialized data size = %08lXH\n"
"Custom data offset = %08lXH\n"
"Custom data size = %08lXH\n"
"Module dependency offset = %08lXH\n"
"Number of Module dependencies = %08lXH\n"
"Relocation fixup offset = %08lXH\n"
"Number of relocations fixup = %08lXH\n"
"External reference offset = %08lXH\n"
"Number of external references = %08lXH\n"
"Public offset = %08lXH\n"
"Number of public = %08lXH\n"
"Debug info offset = %08lXH\n"
"Number of debug records = %08lXH\n"
,modName
,(unsigned short)nlm.nlm_version
,(unsigned short)(nlm.nlm_version >> 16)
,nlm.nlm_codeImageOffset
,nlm.nlm_codeImageSize
,nlm.nlm_dataImageOffset
,nlm.nlm_dataImageSize
,nlm.nlm_uninitializedDataSize
,nlm.nlm_customDataOffset
,nlm.nlm_customDataSize
,nlm.nlm_moduleDependencyOffset
,nlm.nlm_numberOfModuleDependencies
,nlm.nlm_relocationFixupOffset
,nlm.nlm_numberOfRelocationFixups
,nlm.nlm_externalReferencesOffset
,nlm.nlm_numberOfExternalReferences
,nlm.nlm_publicsOffset
,nlm.nlm_numberOfPublics
,nlm.nlm_debugInfoOffset
,nlm.nlm_numberOfDebugRecords);
twSetColorAttr(dialog_cset.entry);
twPrintF("Code start offset = %08lXH [Enter]",nlm.nlm_codeStartOffset);
twClrEOL();
twSetColorAttr(dialog_cset.altentry);
twPrintF("\nExit procedure offset = %08lXH [Ctrl+Enter | F5]",nlm.nlm_exitProcedureOffset);
twClrEOL();
twSetColorAttr(dialog_cset.main);
twPrintF("\nCheck unload procedure offset = %08lXH\n"
"Module type = %08lXH\n"
"Flags = %08lXH"
,nlm.nlm_checkUnloadProcedureOffset
,nlm.nlm_moduleType
,nlm.nlm_flags);
do
{
keycode = GetEvent(drawEmptyPrompt,NULL,w);
if(keycode == KE_ENTER)
{
fpos = nlm.nlm_codeImageOffset + nlm.nlm_codeStartOffset;
break;
}
else
if(keycode == KE_CTL_ENTER || keycode == KE_F(5))
{
fpos = nlm.nlm_codeImageOffset + nlm.nlm_exitProcedureOffset;
break;
}
}while(!(keycode == KE_ESCAPE || keycode == KE_F(10)));
CloseWnd(w);
return fpos;
}
static unsigned long __FASTCALL__ ShowNewNLM( void )
{
unsigned long fpos,ssize,m,d,sharedEntry,sharedExit;
char modName[256];
unsigned char len;
TWindow *w;
unsigned keycode;
sharedEntry = sharedExit = 0;
fpos = BMGetCurrFilePos();
w = CrtDlgWndnls(" NetWare Loadable Module ",74,23);
twGotoXY(1,1);
bmSeek(sizeof(Nlm_Internal_Fixed_Header),BM_SEEK_SET);
len = bmReadByte();
bmReadBuffer(modName,len + 1);
ssize = bmReadDWord();
bmSeek(4,BM_SEEK_CUR); /** skip reserved */
twPrintF("%s\n"
"Stack size = %08lXH\n"
,modName
,ssize);
bmReadBuffer(modName,5);
modName[5] = 0;
twPrintF("Old thread name = %s\n",modName);
len = bmReadByte();
bmReadBuffer(modName,len + 1);
twPrintF("Screen name = %s\n",modName);
len = bmReadByte();
bmReadBuffer(modName,len + 1);
twPrintF("Thread name = %s",modName);
while(1)
{
bmReadBuffer(modName,9);
if(bmEOF()) break;
modName[9] = 0;
if(memcmp(modName,"VeRsIoN#",8) == 0)
{
bmSeek(-1,BM_SEEK_CUR);
ssize = bmReadDWord();
d = bmReadDWord();
m = bmReadDWord();
twPrintF("\nVersion ( Revision ) = %lu.%lu ( %08lXH )\n",ssize,d,m);
ssize = bmReadDWord();
m = bmReadDWord();
d = bmReadDWord();
twPrintF("Date (DD.MM.YY) = %lu.%lu.%lu",d,m,ssize);
}
else
if(memcmp(modName,"CoPyRiGhT",9) == 0)
{
bmSeek(1,BM_SEEK_CUR);
len = bmReadByte();
bmReadBuffer(modName,len + 1);
twPrintF("\nCopyright = %s",modName);
}
else
if(memcmp(modName,"MeSsAgEs",8) == 0)
{
bmSeek(-1,BM_SEEK_CUR);
ssize = bmReadDWord();
twPrintF("\nLanguage = %08lXH\n",ssize);
ssize = bmReadDWord();
m = bmReadDWord();
d = bmReadDWord();
twPrintF("Messages (offset/length/count)= %08lXH/%08lXH/%08lXH\n",ssize,m,d);
ssize = bmReadDWord();
m = bmReadDWord();
d = bmReadDWord();
twPrintF("Help (offset/length/dataOff) = %08lXH/%08lXH/%08lXH\n",ssize,m,d);
ssize = bmReadDWord();
m = bmReadDWord();
twPrintF("SharedCode (offset/length) = %08lXH/%08lXH\n",ssize,m);
ssize = bmReadDWord();
m = bmReadDWord();
twPrintF("SharedData (offset/length) = %08lXH/%08lXH\n",ssize,m);
ssize = bmReadDWord();
m = bmReadDWord();
twPrintF("SharedReloc (offset/count) = %08lXH/%08lXH\n",ssize,m);
ssize = bmReadDWord();
m = bmReadDWord();
twPrintF("SharedExtRef (offset/count) = %08lXH/%08lXH\n",ssize,m);
ssize = bmReadDWord();
m = bmReadDWord();
twPrintF("SharedPublics (offset/count) = %08lXH/%08lXH\n",ssize,m);
ssize = bmReadDWord();
m = bmReadDWord();
twPrintF("SharedDebugRec (offset/count) = %08lXH/%08lXH\n",ssize,m);
sharedEntry = bmReadDWord();
twSetColorAttr(dialog_cset.entry);
twPrintF("Shared initialization offset = %08lXH [Enter]",sharedEntry);
twClrEOL(); twPrintF("\n");
sharedExit = bmReadDWord();
twSetColorAttr(dialog_cset.altentry);
twPrintF("Shared exit procedure offset = %08lXH [Ctrl+Enter | F5]",sharedExit);
twClrEOL(); twPrintF("\n");
twSetColorAttr(dialog_cset.main);
ssize = bmReadDWord();
twPrintF("Product ID = %08lXH",ssize);
}
else
if(memcmp(modName,"CuStHeAd",8) == 0)
{
unsigned long hdr;
bmSeek(-1,BM_SEEK_CUR);
ssize = bmReadDWord();
d = bmReadDWord();
m = bmReadDWord();
bmReadBuffer(modName,8);
modName[8] = 0;
hdr = bmReadDWord();
twPrintF("\nCustHead (name/hdrOff/hdrLen/dataOff/dataLen) = %s/%08lXH/%08lXH/%08lXH/%08lHX",modName,hdr,ssize,d,m);
}
else
if(memcmp(modName,"CyGnUsEx",8) == 0)
{
bmSeek(-1,BM_SEEK_CUR);
d = bmReadDWord();
m = bmReadDWord();
twPrintF("\nCygnus (offset/length) = %08lXH/%08lXH",d,m);
}
else break;
}
do
{
keycode = GetEvent(drawEmptyPrompt,NULL,w);
if(keycode == KE_ENTER)
{
if(sharedEntry) fpos = sharedEntry + nlm.nlm_codeImageOffset;
break;
}
else
if((keycode == KE_CTL_ENTER || keycode == KE_F(5)) && sharedExit)
{
fpos = sharedExit + nlm.nlm_codeImageOffset;
break;
}
}while(!(keycode == KE_ESCAPE || keycode == KE_F(10)));
CloseWnd(w);
return fpos;
}
static unsigned __FASTCALL__ NLMExtRefNumItems(BGLOBAL handle)
{
UNUSED(handle);
return (unsigned)nlm.nlm_numberOfExternalReferences;
}
static tBool __FASTCALL__ __ReadExtRefNamesNLM(BGLOBAL handle,memArray * obj,unsigned n)
{
unsigned i;
bioSeek(handle,nlm.nlm_externalReferencesOffset,SEEKF_START);
for(i = 0;i < n;i++)
{
char stmp[256];
unsigned char length;
unsigned long nrefs;
length = bioReadByte(handle);
if(IsKbdTerminate() || bioEOF(handle)) break;
bioReadBuffer(handle,stmp,length);
stmp[length] = 0;
nrefs = bioReadDWord(handle);
bioSeek(handle,nrefs*4,SEEKF_CUR);
if(!ma_AddString(obj,stmp,True)) break;
}
return True;
}
static unsigned long __NEAR__ __FASTCALL__ CalcEntryNLM(unsigned ord,tBool dispmsg)
{
unsigned char length;
unsigned i;
unsigned long ret,fpos,cpos;
fpos = BMGetCurrFilePos();
cpos = nlm.nlm_publicsOffset;
for(i = 0;i < ord;i++)
{
length = bmReadByteEx(cpos,SEEKF_START); cpos+=length + 5;
}
length = bmReadByteEx(cpos,SEEKF_START); cpos+=length + 1;
ret = bmReadDWordEx(cpos,SEEKF_START);
ret &= 0x00FFFFFFL;
ret += nlm.nlm_codeImageOffset;
bmSeek(fpos,SEEKF_START);
if(ret > bmGetFLength())
{
ret = fpos;
if(dispmsg) ErrMessageBox(NO_ENTRY,NULL);
}
return ret;
}
static unsigned __FASTCALL__ NLMNamesNumItems(BGLOBAL handle)
{
UNUSED(handle);
return (unsigned)nlm.nlm_numberOfPublics;
}
static tBool __FASTCALL__ NLMNamesReadItems(BGLOBAL handle,memArray * obj,unsigned nnames)
{
unsigned char length;
unsigned i;
bioSeek(handle,nlm.nlm_publicsOffset,SEEKF_START);
for(i = 0;i < nnames;i++)
{
char stmp[256];
length = bioReadByte(handle);
if(IsKbdTerminate() || bioEOF(handle)) break;
if(length > 66)
{
bioReadBuffer(handle,stmp,66);
bioSeek(handle,length - 66,SEEKF_CUR);
strcat(stmp,">>>");
}
else { bioReadBuffer(handle,stmp,length); stmp[length] = 0; }
bioSeek(handle,4L,SEEKF_CUR);
if(!ma_AddString(obj,stmp,True)) break;
}
return True;
}
static unsigned long __FASTCALL__ ShowExtRefNLM( void )
{
fmtShowList(NLMExtRefNumItems,
__ReadExtRefNamesNLM,
EXT_REFER,
LB_SORTABLE,
NULL);
return BMGetCurrFilePos();
}
static unsigned __FASTCALL__ NLMModRefNumItems(BGLOBAL handle)
{
UNUSED(handle);
return (unsigned)nlm.nlm_numberOfModuleDependencies;
}
static tBool __FASTCALL__ __ReadModRefNamesNLM(BGLOBAL handle,memArray * obj,unsigned nnames)
{
unsigned char length;
unsigned i;
bioSeek(handle,nlm.nlm_moduleDependencyOffset,SEEKF_START);
for(i = 0;i < nnames;i++)
{
char stmp[256];
length = bioReadByte(handle);
if(IsKbdTerminate() || bioEOF(handle)) break;
if(length > 66)
{
bioReadBuffer(handle,stmp,66);
bioSeek(handle,length - 66,SEEKF_CUR);
strcat(stmp,">>>");
}
else { bioReadBuffer(handle,stmp,length); stmp[length] = 0; }
if(!ma_AddString(obj,stmp,True)) break;
}
return True;
}
static unsigned long __FASTCALL__ ShowModRefNLM( void )
{
fmtShowList(NLMModRefNumItems,
__ReadModRefNamesNLM,
MOD_REFER,
LB_SORTABLE,
NULL);
return BMGetCurrFilePos();
}
static unsigned long __FASTCALL__ ShowPubNamNLM( void )
{
unsigned long fpos = BMGetCurrFilePos();
int ret;
ret = fmtShowList(NLMNamesNumItems,NLMNamesReadItems,
EXP_TABLE,
LB_SELECTIVE,NULL);
if(ret != -1)
{
fpos = CalcEntryNLM(ret,True);
}
return fpos;
}
/***************************************************************************/
/************************ FOR NLM ****************************************/
/***************************************************************************/
static char __codelen;
typedef struct tagRELOC_NLM
{
unsigned long offset;
unsigned long nameoff; /** if refnum == -1 then internal */
}RELOC_NLM;
static linearArray *RelocNlm = NULL;
static tCompare __FASTCALL__ nlm_compare_s(const void __HUGE__ *e1,const void __HUGE__ *e2)
{
const RELOC_NLM __HUGE__ *r1,__HUGE__ *r2;
r1 = e1;
r2 = e2;
return __CmpLong__(r1->offset,r2->offset);
}
static tCompare __FASTCALL__ nlm_compare_f(const void __HUGE__ *e1,const void __HUGE__ *e2)
{
const RELOC_NLM __HUGE__ *r1,__HUGE__ *r2;
r1 = e1;
r2 = e2;
return __CmpLong__(r1->offset,r2->offset);
}
static void __NEAR__ __FASTCALL__ BuildRelocNlm( void )
{
unsigned i,j;
unsigned long cpos,val,niter,noff;
unsigned char len;
TWindow * w,*usd;
RELOC_NLM rel;
usd = twUsedWin();
if(!(RelocNlm = la_Build(0,sizeof(RELOC_NLM),MemOutBox))) return;
w = CrtDlgWndnls(SYSTEM_BUSY,49,1);
if(!PubNames) nlm_ReadPubNameList(bmbioHandle(),MemOutBox);
twUseWin(w);
twGotoXY(1,1);
twPutS(BUILD_REFS);
twUseWin(usd);
/** -- for external references */
cpos = nlm.nlm_externalReferencesOffset;
for(j = 0;j < (unsigned)nlm.nlm_numberOfExternalReferences;j++)
{
tBool is_eof;
noff = cpos;
is_eof = False;
len = bmReadByteEx(cpos,SEEKF_START); cpos += len + 1;
niter = bmReadDWordEx(cpos,SEEKF_START); cpos += 4;
for(i = 0;i < niter;i++)
{
val = bmReadDWordEx(cpos,SEEKF_START); cpos += 4;
if((is_eof = bmEOF()) != 0) break;
rel.offset = (val&0x00FFFFFFL) + nlm.nlm_codeImageOffset;
rel.nameoff = noff;
if(!la_AddData(RelocNlm,&rel,MemOutBox)) goto next;
}
if(is_eof) break;
}
/** -- for internal references */
cpos = nlm.nlm_relocationFixupOffset;
for(j = 0;j < (unsigned)nlm.nlm_numberOfRelocationFixups;j++)
{
val = bmReadDWord();
if(bmEOF()) break;
rel.offset = (val&0x00FFFFFFL) + nlm.nlm_codeImageOffset;
rel.nameoff = -1;
if(!la_AddData(RelocNlm,&rel,MemOutBox)) break;
}
next:
la_Sort(RelocNlm,nlm_compare_s);
CloseWnd(w);
}
static unsigned long __NEAR__ __FASTCALL__ BuildReferStrNLM(char *str,RELOC_NLM*rne,int flags)
{
unsigned long val;
unsigned long retrf;
char name[256];
BGLOBAL b_cache;
unsigned char len;
b_cache = nlm_cache;
bioSeek(b_cache,rne->nameoff,BM_SEEK_SET);
retrf = RAPREF_DONE;
if(rne->nameoff != 0xFFFFFFFFUL)
{
len = bioReadByte(b_cache);
bioReadBuffer(b_cache,name,len);
name[len] = 0;
strcat(str,name);
}
else
{
val = bmReadDWordEx(rne->offset,SEEKF_START);
if(FindPubName(name,sizeof(name),val))
{
strcat(str,name);
}
else
if(!(flags & APREF_SAVE_VIRT))
{
strcat(str,"(*this)+");
strcat(str,Get8Digit(val));
retrf = val;
}
else retrf = RAPREF_NONE;
}
return retrf;
}
static unsigned long __FASTCALL__ AppendNLMRef(char *str,unsigned long ulShift,int flags,int codelen,unsigned long r_sh)
{
RELOC_NLM *rnlm,key;
unsigned long retrf;
char buff[400];
if(flags & APREF_TRY_PIC) return RAPREF_NONE;
if(!nlm.nlm_numberOfExternalReferences || nlm.nlm_externalReferencesOffset >= bmGetFLength()) retrf = RAPREF_NONE;
else
{
if(!RelocNlm) BuildRelocNlm();
key.offset = ulShift;
__codelen = codelen;
rnlm = la_Find(RelocNlm,&key,nlm_compare_f);
retrf = rnlm ? BuildReferStrNLM(str,rnlm,flags) : RAPREF_NONE;
}
if(!retrf && (flags & APREF_TRY_LABEL))
{
if(!PubNames) nlm_ReadPubNameList(bmbioHandle(),MemOutBox);
if(FindPubName(buff,sizeof(buff),r_sh))
{
strcat(str,buff);
if(!DumpMode && !EditMode) GidAddGoAddress(str,r_sh);
retrf = RAPREF_DONE;
}
}
return retrf;
}
static tBool __FASTCALL__ IsNLM( void )
{
char ctrl[NLM_SIGNATURE_SIZE];
bmReadBufferEx(ctrl,NLM_SIGNATURE_SIZE,0,BM_SEEK_SET);
return memcmp(ctrl,NLM_SIGNATURE,NLM_SIGNATURE_SIZE) == 0;
}
static void __FASTCALL__ NLMinit( void )
{
BGLOBAL main_handle;
PMRegLowMemCallBack(nlmLowMemFunc);
bmReadBufferEx(&nlm,sizeof(Nlm_Internal_Fixed_Header),0,SEEKF_START);
main_handle = bmbioHandle();
if((nlm_cache = bioDupEx(main_handle,BBIO_SMALL_CACHE_SIZE)) == &bNull) nlm_cache = main_handle;
}
static void __FASTCALL__ NLMdestroy( void )
{
BGLOBAL main_handle;
main_handle = bmbioHandle();
if(nlm_cache != &bNull && nlm_cache != main_handle) bioClose(nlm_cache);
PMUnregLowMemCallBack(nlmLowMemFunc);
}
static int __FASTCALL__ NLMbitness(unsigned long off)
{
UNUSED(off);
return DAB_USE32;
}
static tBool __FASTCALL__ NLMAddrResolv(char *addr,unsigned long cfpos)
{
/* Since this function is used in references resolving of disassembler
it must be seriously optimized for speed. */
tBool bret = True;
tUInt32 res;
if(cfpos < sizeof(Nlm_Internal_Fixed_Header))
{
strcpy(addr,"nlm32h:");
strcpy(&addr[7],Get2Digit(cfpos));
}
else
if((res=NLMPA2VA(cfpos)) != 0)
{
addr[0] = '.';
strcpy(&addr[1],Get8Digit(res));
}
else bret = False;
return bret;
}
static unsigned long __FASTCALL__ HelpNLM( void )
{
hlpDisplay(10007);
return BMGetCurrFilePos();
}
static void __FASTCALL__ nlm_ReadPubName(BGLOBAL b_cache,const struct PubName *it,
char *buff,unsigned cb_buff)
{
unsigned char length;
bioSeek(b_cache,it->nameoff,SEEK_SET);
length = bioReadByte(b_cache);
length = min(length,cb_buff);
bioReadBuffer(b_cache,buff,length);
buff[length] = 0;
}
static tBool __NEAR__ __FASTCALL__ FindPubName(char *buff,unsigned cb_buff,unsigned long pa)
{
return fmtFindPubName(nlm_cache,buff,cb_buff,pa,
nlm_ReadPubNameList,
nlm_ReadPubName);
}
static void __FASTCALL__ nlm_ReadPubNameList(BGLOBAL handle,void (__FASTCALL__ *mem_out)(const char *))
{
unsigned char length;
unsigned i;
unsigned nnames = (unsigned)nlm.nlm_numberOfPublics;
if(!PubNames)
if(!(PubNames = la_Build(0,sizeof(struct PubName),mem_out))) return;
bioSeek(handle,nlm.nlm_publicsOffset,SEEKF_START);
for(i = 0;i < nnames;i++)
{
struct PubName nlm_pn;
nlm_pn.nameoff = bioTell(handle);
length = bioReadByte(handle);
bioSeek(handle,length,SEEK_CUR);
nlm_pn.pa = (bioReadDWord(handle) & 0x00FFFFFFL) + nlm.nlm_codeImageOffset;
nlm_pn.attr = SC_GLOBAL;
if(!la_AddData(PubNames,&nlm_pn,mem_out)) break;
if(bioEOF(handle)) break;
}
if(PubNames->nItems) la_Sort(PubNames,fmtComparePubNames);
}
static unsigned long __FASTCALL__ NLMGetPubSym(char *str,unsigned cb_str,unsigned *func_class,
unsigned long pa,tBool as_prev)
{
return fmtGetPubSym(nlm_cache,str,cb_str,func_class,pa,as_prev,
nlm_ReadPubNameList,
nlm_ReadPubName);
}
static unsigned __FASTCALL__ NLMGetObjAttr(unsigned long pa,char *name,unsigned cb_name,
unsigned long *start,unsigned long *end,int *_class,int *bitness)
{
unsigned ret;
UNUSED(cb_name);
*start = 0;
*end = bmGetFLength();
*_class = OC_NOOBJECT;
*bitness = NLMbitness(pa);
name[0] = 0;
if(pa < nlm.nlm_codeImageOffset)
{
*end = nlm.nlm_codeImageOffset;
ret = 0;
}
else
if(pa >= nlm.nlm_codeImageOffset && pa < nlm.nlm_codeImageOffset + nlm.nlm_codeImageSize)
{
*start = nlm.nlm_codeImageOffset;
*_class = OC_CODE;
*end = nlm.nlm_codeImageOffset + nlm.nlm_codeImageSize;
ret = 1;
}
else
if(pa >= nlm.nlm_dataImageOffset && pa < nlm.nlm_dataImageOffset + nlm.nlm_dataImageSize)
{
*_class = OC_DATA;
*start = nlm.nlm_dataImageOffset;
*end = *start + nlm.nlm_dataImageSize;
ret = 2;
}
else
{
*_class = OC_NOOBJECT;
*start = nlm.nlm_dataImageOffset + nlm.nlm_dataImageSize;
ret = 3;
}
return ret;
}
static unsigned long __FASTCALL__ NLMVA2PA(unsigned long va)
{
return va + min(nlm.nlm_codeImageOffset,nlm.nlm_dataImageOffset);
}
static unsigned long __FASTCALL__ NLMPA2VA(unsigned long pa)
{
unsigned long base = min(nlm.nlm_codeImageOffset,nlm.nlm_dataImageOffset);
return pa > base ? pa - base : 0L;
}
static int __FASTCALL__ NLMPlatform( void ) { return DISASM_CPU_IX86; }
REGISTRY_BIN nlm386Table =
{
"nlm-i386 (Novell Loadable Module)",
{ "NlmHlp", "ModRef", "PubDef", NULL, "ExtNam", NULL, NULL, "NlmHdr", NULL, NULL },
{ HelpNLM, ShowModRefNLM, ShowPubNamNLM, NULL, ShowExtRefNLM, NULL, NULL, ShowNewNLM, NULL, NULL },
IsNLM, NLMinit, NLMdestroy,
ShowNLMHeader,
AppendNLMRef,
fmtSetState,
NLMPlatform,
NLMbitness,
NLMAddrResolv,
NLMVA2PA,
NLMPA2VA,
NLMGetPubSym,
NLMGetObjAttr,
NULL,
NULL
};
|