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
|
/*
* HT Editor
* htpeimp.cc
*
* Copyright (C) 1999-2002 Stefan Weyergraf
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "formats.h"
#include "htanaly.h"
#include "htctrl.h"
#include "data.h"
#include "endianess.h"
#include "htiobox.h"
#include "htnewexe.h"
#include "htpal.h"
#include "htpe.h"
#include "htpeimp.h"
#include "stream.h"
#include "strtools.h"
#include "httag.h"
#include "log.h"
#include "pe_analy.h"
#include "snprintf.h"
#include "tools.h"
#include <stdlib.h>
#include <string.h>
static ht_view *htpeimports_init(Bounds *b, File *file, ht_format_group *group)
{
ht_pe_shared_data *pe_shared=(ht_pe_shared_data *)group->get_shared_data();
if (pe_shared->opt_magic!=COFF_OPTMAGIC_PE32 && pe_shared->opt_magic!=COFF_OPTMAGIC_PE64) return NULL;
bool pe32 = (pe_shared->opt_magic==COFF_OPTMAGIC_PE32);
uint32 sec_rva, sec_size;
if (pe32) {
sec_rva = pe_shared->pe32.header_nt.directory[PE_DIRECTORY_ENTRY_IMPORT].address;
sec_size = pe_shared->pe32.header_nt.directory[PE_DIRECTORY_ENTRY_IMPORT].size;
} else {
sec_rva = pe_shared->pe64.header_nt.directory[PE_DIRECTORY_ENTRY_IMPORT].address;
sec_size = pe_shared->pe64.header_nt.directory[PE_DIRECTORY_ENTRY_IMPORT].size;
}
if (!sec_rva || !sec_size) return NULL;
int h0=new_timer();
start_timer(h0);
ht_group *g;
Bounds c;
String fn, s, dllname;
c=*b;
g=new ht_group();
g->init(&c, VO_RESIZE, DESC_PE_IMPORTS"-g");
ht_statictext *head;
int dll_count=0;
int function_count=0;
c.y++;
c.h--;
ht_pe_import_viewer *v=new ht_pe_import_viewer();
v->init(&c, DESC_PE_IMPORTS, group);
c.y--;
c.h=1;
PE_IMPORT_DESCRIPTOR import;
FileOfs dofs;
uint dll_index;
char iline[256];
/* get import directory offset */
/* 1. get import directory rva */
FileOfs iofs;
RVA irva;
uint isize;
if (pe32) {
irva = pe_shared->pe32.header_nt.directory[PE_DIRECTORY_ENTRY_IMPORT].address;
isize = pe_shared->pe32.header_nt.directory[PE_DIRECTORY_ENTRY_IMPORT].size;
} else {
irva = pe_shared->pe64.header_nt.directory[PE_DIRECTORY_ENTRY_IMPORT].address;
isize = pe_shared->pe64.header_nt.directory[PE_DIRECTORY_ENTRY_IMPORT].size;
}
/* 2. transform it into an offset */
if (!pe_rva_to_ofs(&pe_shared->sections, irva, &iofs)) goto pe_read_error;
LOG("%y: PE: reading import directory at offset 0x%08qx, rva 0x%08x, size 0x%08x...", &file->getFilename(fn), iofs, irva, isize);
/* make a memfile out of the whole file */
/* doesn't work because import information is NOT contained into
the import directory !!! only the import dir header. (I !love M$) */
/*** read import directory ***/
dofs = iofs;
dll_index = 0;
while (1) {
file->seek(dofs);
file->readx(&import, sizeof import);
createHostStruct(&import, PE_IMPORT_DESCRIPTOR_struct, little_endian);
if ((!import.characteristics) && (!import.name)) break;
dofs = file->tell();
/* get name of dll */
FileOfs iname_ofs;
if (!pe_rva_to_ofs(&pe_shared->sections, import.name, &iname_ofs)) {
if (import.name >= file->getSize()) goto pe_read_error;
file->seek(import.name);
} else {
if (iname_ofs >= file->getSize()) goto pe_read_error;
file->seek(iname_ofs);
}
file->readStringz(dllname);
dll_count++;
/*** imported functions by name or by ordinal ***/
/*
* First thunk (FT)
* The first thunk table will be overwritten by the system/loader with
* the function entry-points. So the program will treat this table
* as if it contained just imported addresses.
*/
RVA fthunk_rva = import.first_thunk;
FileOfs fthunk_ofs;
if (!pe_rva_to_ofs(&pe_shared->sections, fthunk_rva, &fthunk_ofs)) goto pe_read_error;
/*
* ...and Original First Thunk (OFT)
* I saw executables that have the OFT ptr set to 0 and seem to
* use the FT ptr instead, but also some that have both !=0 and use
* the original one (bound executables).
*/
RVA thunk_rva;
FileOfs thunk_ofs;
if (import.original_first_thunk) {
thunk_rva = import.original_first_thunk;
if (!pe_rva_to_ofs(&pe_shared->sections, thunk_rva, &thunk_ofs)) goto pe_read_error;
} else {
thunk_rva = fthunk_rva;
thunk_ofs = fthunk_ofs;
}
ht_pe_import_library *lib=new ht_pe_import_library(dllname.contentChar());
pe_shared->imports.libs->insert(lib);
PE_THUNK_DATA thunk;
PE_THUNK_DATA_64 thunk64;
uint thunk_count = 0;
file->seek(thunk_ofs);
while (1) {
if (pe32) {
file->readx(&thunk, sizeof thunk);
createHostStruct(&thunk, PE_THUNK_DATA_struct, little_endian);
if (!thunk.ordinal) break;
} else {
file->readx(&thunk64, sizeof thunk64);
createHostStruct(&thunk64, PE_THUNK_DATA_64_struct, little_endian);
if (!thunk64.ordinal) break;
}
thunk_count++;
}
PE_THUNK_DATA *thunk_table = NULL;
PE_THUNK_DATA_64 *thunk_table64 = NULL;
file->seek(thunk_ofs);
if (thunk_count) {
if (pe32) {
thunk_table = ht_malloc(sizeof *thunk_table * thunk_count);
file->readx(thunk_table, sizeof *thunk_table * thunk_count);
// FIXME: ?
for (uint i=0; i<thunk_count; i++) {
createHostStruct(thunk_table+i, PE_THUNK_DATA_struct, little_endian);
}
} else {
thunk_table64 = ht_malloc(sizeof *thunk_table64 * thunk_count);
file->readx(thunk_table64, sizeof *thunk_table64 * thunk_count);
// FIXME: ?
for (uint i=0; i<thunk_count; i++) {
createHostStruct(thunk_table64+i, PE_THUNK_DATA_64_struct, little_endian);
}
}
}
for (uint32 i=0; i<thunk_count; i++) {
function_count++;
ht_pe_import_function *func;
/* follow (original) first thunk */
if (pe32) {
thunk = thunk_table[i];
if (thunk.ordinal & 0x80000000) {
/* by ordinal */
func = new ht_pe_import_function(dll_index, fthunk_rva, thunk.ordinal&0xffff);
} else {
/* by name */
FileOfs function_desc_ofs;
uint16 hint = 0;
if (pe_rva_to_ofs(&pe_shared->sections, thunk.function_desc_address, &function_desc_ofs)) {
if (function_desc_ofs >= file->getSize()) goto pe_read_error;
file->seek(function_desc_ofs);
} else {
if (thunk.function_desc_address >= file->getSize()) goto pe_read_error;
file->seek(thunk.function_desc_address);
}
file->readx(&hint, 2);
hint = createHostInt(&hint, 2, little_endian);
file->readStringz(s);
func = new ht_pe_import_function(dll_index, fthunk_rva, s.contentChar(), hint);
}
} else {
thunk64 = thunk_table64[i];
// FIXME: is this correct ?
if (thunk64.ordinal & 0x8000000000000000ULL) {
/* by ordinal */
func = new ht_pe_import_function(dll_index, fthunk_rva, thunk64.ordinal & 0xffff);
} else {
/* by name */
FileOfs function_desc_ofs;
uint16 hint = 0;
if (!pe_rva_to_ofs(&pe_shared->sections, thunk64.function_desc_address, &function_desc_ofs)) goto pe_read_error;
file->seek(function_desc_ofs);
file->readx(&hint, 2);
hint = createHostInt(&hint, 2, little_endian);
file->readStringz(s);
func = new ht_pe_import_function(dll_index, fthunk_rva, s.contentChar(), hint);
}
}
pe_shared->imports.funcs->insert(func);
if (pe32) {
thunk_ofs+=4;
thunk_rva+=4;
fthunk_ofs+=4;
fthunk_rva+=4;
} else {
thunk_ofs+=8;
thunk_rva+=8;
fthunk_ofs+=8;
fthunk_rva+=8;
}
}
dll_index++;
if (pe32) {
free(thunk_table);
} else {
free(thunk_table64);
}
}
stop_timer(h0);
// LOG("%y: PE: %d ticks (%d msec) to read imports", file->get_name(), get_timer_tick(h0), get_timer_msec(h0));
delete_timer(h0);
ht_snprintf(iline, sizeof iline, "* PE import directory at offset %08qx (%d functions from %d libraries)", iofs, function_count, dll_count);
head=new ht_statictext();
head->init(&c, iline, align_left);
g->insert(head);
g->insert(v);
//
for (uint i=0; i<pe_shared->imports.funcs->count(); i++) {
ht_pe_import_function *func = (ht_pe_import_function*)(*pe_shared->imports.funcs)[i];
assert(func);
ht_pe_import_library *lib = (ht_pe_import_library*)(*pe_shared->imports.libs)[func->libidx];
assert(lib);
char addr[32], name[256];
ht_snprintf(addr, sizeof addr, "%08x", func->address);
if (func->byname) {
ht_snprintf(name, sizeof name, "%s", func->name.name);
} else {
ht_snprintf(name, sizeof name, "%04x (by ordinal)", func->ordinal);
}
v->insert_str(i, lib->name, addr, name);
}
//
v->update();
g->setpalette(palkey_generic_window_default);
pe_shared->v_imports=v;
return g;
pe_read_error:
delete_timer(h0);
errorbox("%y: PE import section seems to be corrupted.", &file->getFilename(fn));
g->done();
delete g;
v->done();
delete v;
return NULL;
}
format_viewer_if htpeimports_if = {
htpeimports_init,
NULL
};
/*
* class ht_pe_import_library
*/
ht_pe_import_library::ht_pe_import_library(const char *n)
{
name = ht_strdup(n);
}
ht_pe_import_library::~ht_pe_import_library()
{
free(name);
}
/*
* class ht_pe_import_function
*/
ht_pe_import_function::ht_pe_import_function(uint li, RVA a, uint o)
{
libidx = li;
ordinal = o;
address = a;
byname = false;
}
ht_pe_import_function::ht_pe_import_function(uint li, RVA a, const char *n, uint h)
{
libidx= li;
name.name = ht_strdup(n);
name.hint = h;
address = a;
byname = true;
}
ht_pe_import_function::~ht_pe_import_function()
{
if (byname) free(name.name);
}
/*
* CLASS ht_pe_import_viewer
*/
void ht_pe_import_viewer::init(Bounds *b, const char *Desc, ht_format_group *fg)
{
ht_text_listbox::init(b, 3, 2, LISTBOX_QUICKFIND);
options |= VO_BROWSABLE;
desc = strdup(Desc);
format_group = fg;
grouplib = false;
sortby = 1;
dosort();
}
void ht_pe_import_viewer::done()
{
ht_text_listbox::done();
}
void ht_pe_import_viewer::dosort()
{
ht_text_listbox_sort_order sortord[2];
uint l, s;
if (grouplib) {
l = 0;
s = 1;
} else {
l = 1;
s = 0;
}
sortord[l].col = 0;
sortord[l].compare_func = strcmp;
sortord[s].col = sortby;
sortord[s].compare_func = strcmp;
sort(2, sortord);
}
const char *ht_pe_import_viewer::func(uint i, bool execute)
{
switch (i) {
case 2:
if (execute) {
grouplib = !grouplib;
dosort();
}
return grouplib ? (char*)"nbylib" : (char*)"bylib";
case 4:
if (execute) {
if (sortby != 1) {
sortby = 1;
dosort();
}
}
return "byaddr";
case 5:
if (execute) {
if (sortby != 2) {
sortby = 2;
dosort();
}
}
return "byname";
}
return NULL;
}
void ht_pe_import_viewer::handlemsg(htmsg *msg)
{
switch (msg->msg) {
case msg_funcexec:
if (func(msg->data1.integer, 1)) {
clearmsg(msg);
return;
}
break;
case msg_funcquery: {
const char *s=func(msg->data1.integer, 0);
if (s) {
msg->msg=msg_retval;
msg->data1.cstr=s;
}
break;
}
case msg_keypressed: {
if (msg->data1.integer == K_Return) {
select_entry(e_cursor);
clearmsg(msg);
}
break;
}
}
ht_text_listbox::handlemsg(msg);
}
bool ht_pe_import_viewer::select_entry(void *entry)
{
ht_text_listbox_item *i = (ht_text_listbox_item *)entry;
ht_pe_shared_data *pe_shared=(ht_pe_shared_data *)format_group->get_shared_data();
ht_pe_import_function *e = (ht_pe_import_function*)(*pe_shared->imports.funcs)[i->id];
if (!e) return true;
if (pe_shared->v_image) {
ht_aviewer *av = (ht_aviewer*)pe_shared->v_image;
PEAnalyser *a = (PEAnalyser*)av->analy;
Address *addr;
if (pe_shared->opt_magic == COFF_OPTMAGIC_PE32) {
addr = a->createAddress32(e->address+pe_shared->pe32.header_nt.image_base);
} else {
addr = a->createAddress64(e->address+pe_shared->pe64.header_nt.image_base);
}
if (av->gotoAddress(addr, NULL)) {
app->focus(av);
vstate_save();
} else {
global_analyser_address_string_format = ADDRESS_STRING_FORMAT_COMPACT | ADDRESS_STRING_FORMAT_ADD_0X;
errorbox("can't follow: %s %y is not valid!", "import address", addr);
}
delete addr;
} else errorbox("can't follow: no image viewer");
return true;
}
|