1 /*- 2 * Copyright (c) 2003 3 * Bill Paul <wpaul@windriver.com>. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 3. All advertising materials mentioning features or use of this software 14 * must display the following acknowledgement: 15 * This product includes software developed by Bill Paul. 16 * 4. Neither the name of the author nor the names of any co-contributors 17 * may be used to endorse or promote products derived from this software 18 * without specific prior written permission. 19 * 20 * THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND 21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR THE VOICES IN HIS HEAD 24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 30 * THE POSSIBILITY OF SUCH DAMAGE. 31 * 32 * $FreeBSD$ 33 */ 34 35 #ifndef _PE_VAR_H_ 36 #define _PE_VAR_H_ 37 38 /* 39 * Image Format 40 */ 41 42 #define IMAGE_DOS_SIGNATURE 0x5A4D /* MZ */ 43 #define IMAGE_OS2_SIGNATURE 0x454E /* NE */ 44 #define IMAGE_OS2_SIGNATURE_LE 0x454C /* LE */ 45 #define IMAGE_VXD_SIGNATURE 0x454C /* LE */ 46 #define IMAGE_NT_SIGNATURE 0x00004550 /* PE00 */ 47 48 /* 49 * All PE files have one of these, just so if you attempt to 50 * run them, they'll print out a message telling you they can 51 * only be run in Windows. 52 */ 53 54 struct image_dos_header { 55 uint16_t idh_magic; /* Magic number */ 56 uint16_t idh_cblp; /* Bytes on last page of file */ 57 uint16_t idh_cp; /* Pages in file */ 58 uint16_t idh_crlc; /* Relocations */ 59 uint16_t idh_cparhdr; /* Size of header in paragraphs */ 60 uint16_t idh_minalloc; /* Minimum extra paragraphs needed */ 61 uint16_t idh_maxalloc; /* Maximum extra paragraphs needed */ 62 uint16_t idh_ss; /* Initial (relative) SS value */ 63 uint16_t idh_sp; /* Initial SP value */ 64 uint16_t idh_csum; /* Checksum */ 65 uint16_t idh_ip; /* Initial IP value */ 66 uint16_t idh_cs; /* Initial (relative) CS value */ 67 uint16_t idh_lfarlc; /* File address of relocation table */ 68 uint16_t idh_ovno; /* Overlay number */ 69 uint16_t idh_rsvd1[4]; /* Reserved words */ 70 uint16_t idh_oemid; /* OEM identifier (for idh_oeminfo) */ 71 uint16_t idh_oeminfo; /* OEM information; oemid specific */ 72 uint16_t idh_rsvd2[10]; /* Reserved words */ 73 uint32_t idh_lfanew; /* File address of new exe header */ 74 }; 75 76 typedef struct image_dos_header image_dos_header; 77 78 /* 79 * File header format. 80 */ 81 82 struct image_file_header { 83 uint16_t ifh_machine; /* Machine type */ 84 uint16_t ifh_numsections; /* # of sections */ 85 uint32_t ifh_timestamp; /* Date/time stamp */ 86 uint32_t ifh_symtblptr; /* Offset to symbol table */ 87 uint32_t ifh_numsyms; /* # of symbols */ 88 uint16_t ifh_optionalhdrlen; /* Size of optional header */ 89 uint16_t ifh_characteristics; /* Characteristics */ 90 }; 91 92 typedef struct image_file_header image_file_header; 93 94 /* Machine types */ 95 96 #define IMAGE_FILE_MACHINE_UNKNOWN 0 97 #define IMAGE_FILE_MACHINE_I860 0x014d 98 #define IMAGE_FILE_MACHINE_I386 0x014c 99 #define IMAGE_FILE_MACHINE_R3000 0x0162 100 #define IMAGE_FILE_MACHINE_R4000 0x0166 101 #define IMAGE_FILE_MACHINE_R10000 0x0168 102 #define IMAGE_FILE_MACHINE_WCEMIPSV2 0x0169 103 #define IMAGE_FILE_MACHINE_ALPHA 0x0184 104 #define IMAGE_FILE_MACHINE_SH3 0x01a2 105 #define IMAGE_FILE_MACHINE_SH3DSP 0x01a3 106 #define IMAGE_FILE_MACHINE_SH3E 0x01a4 107 #define IMAGE_FILE_MACHINE_SH4 0x01a6 108 #define IMAGE_FILE_MACHINE_SH5 0x01a8 109 #define IMAGE_FILE_MACHINE_ARM 0x01c0 110 #define IMAGE_FILE_MACHINE_THUMB 0x01c2 111 #define IMAGE_FILE_MACHINE_AM33 0x01d3 112 #define IMAGE_FILE_MACHINE_POWERPC 0x01f0 113 #define IMAGE_FILE_MACHINE_POWERPCFP 0x01f1 114 #define IMAGE_FILE_MACHINE_MIPS16 0x0266 115 #define IMAGE_FILE_MACHINE_ALPHA64 0x0284 116 #define IMAGE_FILE_MACHINE_MIPSFPU 0x0366 117 #define IMAGE_FILE_MACHINE_MIPSFPU16 0x0466 118 #define IMAGE_FILE_MACHINE_AXP64 IMAGE_FILE_MACHINE_ALPHA64 119 #define IMAGE_FILE_MACHINE_TRICORE 0x0520 120 #define IMAGE_FILE_MACHINE_CEF 0x0cef 121 #define IMAGE_FILE_MACHINE_EBC 0x0ebc 122 #define IMAGE_FILE_MACHINE_AMD64 0x8664 123 #define IMAGE_FILE_MACHINE_M32R 0x9041 124 #define IMAGE_FILE_MACHINE_CEE 0xc0ee 125 126 /* Characteristics */ 127 128 #define IMAGE_FILE_RELOCS_STRIPPED 0x0001 /* No relocation info */ 129 #define IMAGE_FILE_EXECUTABLE_IMAGE 0x0002 130 #define IMAGE_FILE_LINE_NUMS_STRIPPED 0x0004 131 #define IMAGE_FILE_LOCAL_SYMS_STRIPPED 0x0008 132 #define IMAGE_FILE_AGGRESIVE_WS_TRIM 0x0010 133 #define IMAGE_FILE_LARGE_ADDRESS_AWARE 0x0020 134 #define IMAGE_FILE_16BIT_MACHINE 0x0040 135 #define IMAGE_FILE_BYTES_REVERSED_LO 0x0080 136 #define IMAGE_FILE_32BIT_MACHINE 0x0100 137 #define IMAGE_FILE_DEBUG_STRIPPED 0x0200 138 #define IMAGE_FILE_REMOVABLE_RUN_FROM_SWAP 0x0400 139 #define IMAGE_FILE_NET_RUN_FROM_SWAP 0x0800 140 #define IMAGE_FILE_SYSTEM 0x1000 141 #define IMAGE_FILE_DLL 0x2000 142 #define IMAGE_FILE_UP_SYSTEM_ONLY 0x4000 143 #define IMAGE_FILE_BYTES_REVERSED_HI 0x8000 144 145 #define IMAGE_SIZEOF_FILE_HEADER 20 146 147 /* 148 * Directory format. 149 */ 150 151 struct image_data_directory { 152 uint32_t idd_vaddr; /* virtual address */ 153 uint32_t idd_size; /* size */ 154 }; 155 156 typedef struct image_data_directory image_data_directory; 157 158 #define IMAGE_DIRECTORY_ENTRIES_MAX 16 159 160 /* 161 * Optional header format. 162 */ 163 164 struct image_optional_header { 165 166 /* Standard fields */ 167 168 uint16_t ioh_magic; 169 uint8_t ioh_linkerver_major; 170 uint8_t ioh_linkerver_minor; 171 uint32_t ioh_codesize; 172 uint32_t ioh_datasize; 173 uint32_t ioh_bsssize; 174 uint32_t ioh_entryaddr; 175 uint32_t ioh_codebaseaddr; 176 #ifndef __amd64__ 177 uint32_t ioh_databaseaddr; 178 #endif 179 180 /* NT-specific fields */ 181 182 uintptr_t ioh_imagebase; 183 uint32_t ioh_sectalign; 184 uint32_t ioh_filealign; 185 uint16_t ioh_osver_major; 186 uint16_t ioh_osver_minor; 187 uint16_t ioh_imagever_major; 188 uint16_t ioh_imagever_minor; 189 uint16_t ioh_subsys_major; 190 uint16_t ioh_subsys_minor; 191 uint32_t ioh_win32ver; 192 uint32_t ioh_imagesize; 193 uint32_t ioh_headersize; 194 uint32_t ioh_csum; 195 uint16_t ioh_subsys; 196 uint16_t ioh_dll_characteristics; 197 uintptr_t ioh_stackreservesize; 198 uintptr_t ioh_stackcommitsize; 199 uintptr_t ioh_heapreservesize; 200 uintptr_t ioh_heapcommitsize; 201 uint16_t ioh_loaderflags; 202 uint32_t ioh_rva_size_cnt; 203 image_data_directory ioh_datadir[IMAGE_DIRECTORY_ENTRIES_MAX]; 204 }; 205 206 typedef struct image_optional_header image_optional_header; 207 208 struct image_nt_header { 209 uint32_t inh_signature; 210 image_file_header inh_filehdr; 211 image_optional_header inh_optionalhdr; 212 }; 213 214 typedef struct image_nt_header image_nt_header; 215 216 #define IMAGE_SIZEOF_NT_HEADER(nthdr) \ 217 (offsetof(image_nt_header, inh_optionalhdr) + \ 218 ((image_nt_header *)(nthdr))->inh_filehdr.ifh_optionalhdrlen) 219 220 /* Directory Entries */ 221 222 #define IMAGE_DIRECTORY_ENTRY_EXPORT 0 /* Export Directory */ 223 #define IMAGE_DIRECTORY_ENTRY_IMPORT 1 /* Import Directory */ 224 #define IMAGE_DIRECTORY_ENTRY_RESOURCE 2 /* Resource Directory */ 225 #define IMAGE_DIRECTORY_ENTRY_EXCEPTION 3 /* Exception Directory */ 226 #define IMAGE_DIRECTORY_ENTRY_SECURITY 4 /* Security Directory */ 227 #define IMAGE_DIRECTORY_ENTRY_BASERELOC 5 /* Base Relocation Table */ 228 #define IMAGE_DIRECTORY_ENTRY_DEBUG 6 /* Debug Directory */ 229 #define IMAGE_DIRECTORY_ENTRY_COPYRIGHT 7 /* Description String */ 230 #define IMAGE_DIRECTORY_ENTRY_GLOBALPTR 8 /* Machine Value (MIPS GP) */ 231 #define IMAGE_DIRECTORY_ENTRY_TLS 9 /* TLS Directory */ 232 #define IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG 10 /* Load Configuration Directory */ 233 #define IMAGE_DIRECTORY_ENTRY_BOUND_IMPORT 11 /* Bound Import Directory in headers */ 234 #define IMAGE_DIRECTORY_ENTRY_IAT 12 /* Import Address Table */ 235 #define IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT 13 236 #define IMAGE_DIRECTORY_ENTRY_COM_DESCRIPTOR 14 237 238 /* Resource types */ 239 240 #define RT_CURSOR 1 241 #define RT_BITMAP 2 242 #define RT_ICON 3 243 #define RT_MENU 4 244 #define RT_DIALOG 5 245 #define RT_STRING 6 246 #define RT_FONTDIR 7 247 #define RT_FONT 8 248 #define RT_ACCELERATOR 9 249 #define RT_RCDATA 10 250 #define RT_MESSAGETABLE 11 251 #define RT_GROUP_CURSOR 12 252 #define RT_GROUP_ICON 14 253 #define RT_VERSION 16 254 #define RT_DLGINCLUDE 17 255 #define RT_PLUGPLAY 19 256 #define RT_VXD 20 257 #define RT_ANICURSOR 21 258 #define RT_ANIICON 22 259 #define RT_HTML 23 260 261 /* 262 * Section header format. 263 */ 264 265 #define IMAGE_SHORT_NAME_LEN 8 266 267 struct image_section_header { 268 uint8_t ish_name[IMAGE_SHORT_NAME_LEN]; 269 union { 270 uint32_t ish_paddr; 271 uint32_t ish_vsize; 272 } ish_misc; 273 uint32_t ish_vaddr; 274 uint32_t ish_rawdatasize; 275 uint32_t ish_rawdataaddr; 276 uint32_t ish_relocaddr; 277 uint32_t ish_linenumaddr; 278 uint16_t ish_numrelocs; 279 uint16_t ish_numlinenums; 280 uint32_t ish_characteristics; 281 }; 282 283 typedef struct image_section_header image_section_header; 284 285 #define IMAGE_SIZEOF_SECTION_HEADER 40 286 287 #define IMAGE_FIRST_SECTION(nthdr) \ 288 ((image_section_header *)((vm_offset_t)(nthdr) + \ 289 offsetof(image_nt_header, inh_optionalhdr) + \ 290 ((image_nt_header *)(nthdr))->inh_filehdr.ifh_optionalhdrlen)) 291 292 /* 293 * Import format 294 */ 295 296 struct image_import_by_name { 297 uint16_t iibn_hint; 298 uint8_t iibn_name[1]; 299 }; 300 301 #define IMAGE_ORDINAL_FLAG 0x80000000 302 #define IMAGE_ORDINAL(Ordinal) (Ordinal & 0xffff) 303 304 struct image_import_descriptor { 305 uint32_t iid_import_name_table_addr; 306 uint32_t iid_timestamp; 307 uint32_t iid_forwardchain; 308 uint32_t iid_nameaddr; 309 uint32_t iid_import_address_table_addr; 310 }; 311 312 typedef struct image_import_descriptor image_import_descriptor; 313 314 struct image_base_reloc { 315 uint32_t ibr_vaddr; 316 uint32_t ibr_blocksize; 317 uint16_t ibr_rel[1]; 318 }; 319 320 typedef struct image_base_reloc image_base_reloc; 321 322 #define IMR_RELTYPE(x) ((x >> 12) & 0xF) 323 #define IMR_RELOFFSET(x) (x & 0xFFF) 324 325 /* generic relocation types */ 326 #define IMAGE_REL_BASED_ABSOLUTE 0 327 #define IMAGE_REL_BASED_HIGH 1 328 #define IMAGE_REL_BASED_LOW 2 329 #define IMAGE_REL_BASED_HIGHLOW 3 330 #define IMAGE_REL_BASED_HIGHADJ 4 331 #define IMAGE_REL_BASED_MIPS_JMPADDR 5 332 #define IMAGE_REL_BASED_SECTION 6 333 #define IMAGE_REL_BASED_REL 7 334 #define IMAGE_REL_BASED_MIPS_JMPADDR16 9 335 #define IMAGE_REL_BASED_DIR64 10 336 #define IMAGE_REL_BASED_HIGH3ADJ 11 337 338 struct image_resource_directory_entry { 339 uint32_t irde_name; 340 uint32_t irde_dataoff; 341 }; 342 343 typedef struct image_resource_directory_entry image_resource_directory_entry; 344 345 #define RESOURCE_NAME_STR 0x80000000 346 #define RESOURCE_DIR_FLAG 0x80000000 347 348 struct image_resource_directory { 349 uint32_t ird_characteristics; 350 uint32_t ird_timestamp; 351 uint16_t ird_majorver; 352 uint16_t ird_minorver; 353 uint16_t ird_named_entries; 354 uint16_t ird_id_entries; 355 #ifdef notdef 356 image_resource_directory_entry ird_entries[1]; 357 #endif 358 }; 359 360 typedef struct image_resource_directory image_resource_directory; 361 362 struct image_resource_directory_string { 363 uint16_t irds_len; 364 char irds_name[1]; 365 }; 366 367 typedef struct image_resource_directory_string image_resource_directory_string; 368 369 struct image_resource_directory_string_u { 370 uint16_t irds_len; 371 char irds_name[1]; 372 }; 373 374 typedef struct image_resource_directory_string_u 375 image_resource_directory_string_u; 376 377 struct image_resource_data_entry { 378 uint32_t irde_offset; 379 uint32_t irde_size; 380 uint32_t irde_codepage; 381 uint32_t irde_rsvd; 382 }; 383 384 typedef struct image_resource_data_entry image_resource_data_entry; 385 386 struct message_resource_data { 387 uint32_t mrd_numblocks; 388 #ifdef notdef 389 message_resource_block mrd_blocks[1]; 390 #endif 391 }; 392 393 typedef struct message_resource_data message_resource_data; 394 395 struct message_resource_block { 396 uint32_t mrb_lowid; 397 uint32_t mrb_highid; 398 uint32_t mrb_entryoff; 399 }; 400 401 typedef struct message_resource_block message_resource_block; 402 403 struct message_resource_entry { 404 uint16_t mre_len; 405 uint16_t mre_flags; 406 char mre_text[]; 407 }; 408 409 typedef struct message_resource_entry message_resource_entry; 410 411 #define MESSAGE_RESOURCE_UNICODE 0x0001 412 413 struct image_patch_table { 414 char *ipt_name; 415 void (*ipt_func)(void); 416 void (*ipt_wrap)(void); 417 int ipt_argcnt; 418 int ipt_ftype; 419 }; 420 421 typedef struct image_patch_table image_patch_table; 422 423 /* 424 * AMD64 support. Microsoft uses a different calling convention 425 * than everyone else on the amd64 platform. Sadly, gcc has no 426 * built-in support for it (yet). 427 * 428 * The three major differences we're concerned with are: 429 * 430 * - The first 4 register-sized arguments are passed in the 431 * %rcx, %rdx, %r8 and %r9 registers, and the rest are pushed 432 * onto the stack. (The ELF ABI uses 6 registers, not 4). 433 * 434 * - The caller must reserve space on the stack for the 4 435 * register arguments in case the callee has to spill them. 436 * 437 * - The stack myst be 16-byte aligned by the time the callee 438 * executes. A call instruction implicitly pushes an 8 byte 439 * return address onto the stack. We have to make sure that 440 * the amount of space we consume, plus the return address, 441 * is a multiple of 16 bytes in size. This means that in 442 * some cases, we may need to chew up an extra 8 bytes on 443 * the stack that will be unused. 444 * 445 * On the bright side, Microsoft seems to be using just the one 446 * calling convention for all functions on amd64, unlike x86 where 447 * they use a mix of _stdcall, _fastcall and _cdecl. 448 */ 449 450 #ifdef __amd64__ 451 452 extern uint64_t x86_64_call1(void *, uint64_t); 453 extern uint64_t x86_64_call2(void *, uint64_t, uint64_t); 454 extern uint64_t x86_64_call3(void *, uint64_t, uint64_t, uint64_t); 455 extern uint64_t x86_64_call4(void *, uint64_t, uint64_t, uint64_t, uint64_t); 456 extern uint64_t x86_64_call5(void *, uint64_t, uint64_t, uint64_t, uint64_t, 457 uint64_t); 458 extern uint64_t x86_64_call6(void *, uint64_t, uint64_t, uint64_t, uint64_t, 459 uint64_t, uint64_t); 460 461 462 #define MSCALL1(fn, a) \ 463 x86_64_call1((fn), (uint64_t)(a)) 464 #define MSCALL2(fn, a, b) \ 465 x86_64_call2((fn), (uint64_t)(a), (uint64_t)(b)) 466 #define MSCALL3(fn, a, b, c) \ 467 x86_64_call3((fn), (uint64_t)(a), (uint64_t)(b), \ 468 (uint64_t)(c)) 469 #define MSCALL4(fn, a, b, c, d) \ 470 x86_64_call4((fn), (uint64_t)(a), (uint64_t)(b), \ 471 (uint64_t)(c), (uint64_t)(d)) 472 #define MSCALL5(fn, a, b, c, d, e) \ 473 x86_64_call5((fn), (uint64_t)(a), (uint64_t)(b), \ 474 (uint64_t)(c), (uint64_t)(d), (uint64_t)(e)) 475 #define MSCALL6(fn, a, b, c, d, e, f) \ 476 x86_64_call6((fn), (uint64_t)(a), (uint64_t)(b), \ 477 (uint64_t)(c), (uint64_t)(d), (uint64_t)(e), (uint64_t)(f)) 478 479 #endif /* __amd64__ */ 480 481 #ifdef __i386__ 482 483 extern uint32_t x86_stdcall_call(void *, int, ...); 484 485 #define MSCALL1(fn, a) x86_stdcall_call(fn, 1, (a)) 486 #define MSCALL2(fn, a, b) x86_stdcall_call(fn, 2, (a), (b)) 487 #define MSCALL3(fn, a, b, c) x86_stdcall_call(fn, 3, (a), (b), (c)) 488 #define MSCALL4(fn, a, b, c, d) x86_stdcall_call(fn, 4, (a), (b), (c), (d)) 489 #define MSCALL5(fn, a, b, c, d, e) \ 490 x86_stdcall_call(fn, 5, (a), (b), (c), (d), (e)) 491 #define MSCALL6(fn, a, b, c, d, e, f) \ 492 x86_stdcall_call(fn, 6, (a), (b), (c), (d), (e), (f)) 493 494 #endif /* __i386__ */ 495 496 497 #define FUNC void(*)(void) 498 499 #ifdef __i386__ 500 #define IMPORT_SFUNC(x, y) { #x, (FUNC)x, NULL, y, WINDRV_WRAP_STDCALL } 501 #define IMPORT_SFUNC_MAP(x, y, z) \ 502 { #x, (FUNC)y, NULL, z, WINDRV_WRAP_STDCALL } 503 #define IMPORT_FFUNC(x, y) { #x, (FUNC)x, NULL, y, WINDRV_WRAP_FASTCALL } 504 #define IMPORT_FFUNC_MAP(x, y, z) \ 505 { #x, (FUNC)y, NULL, z, WINDRV_WRAP_FASTCALL } 506 #define IMPORT_RFUNC(x, y) { #x, (FUNC)x, NULL, y, WINDRV_WRAP_REGPARM } 507 #define IMPORT_RFUNC_MAP(x, y, z) \ 508 { #x, (FUNC)y, NULL, z, WINDRV_WRAP_REGPARM } 509 #define IMPORT_CFUNC(x, y) { #x, (FUNC)x, NULL, y, WINDRV_WRAP_CDECL } 510 #define IMPORT_CFUNC_MAP(x, y, z) \ 511 { #x, (FUNC)y, NULL, z, WINDRV_WRAP_CDECL } 512 #endif /* __i386__ */ 513 514 #ifdef __amd64__ 515 #define IMPORT_SFUNC(x, y) { #x, (FUNC)x, NULL, y, WINDRV_WRAP_AMD64 } 516 #define IMPORT_SFUNC_MAP(x, y, z) \ 517 { #x, (FUNC)y, NULL, z, WINDRV_WRAP_AMD64 } 518 #define IMPORT_FFUNC(x, y) { #x, (FUNC)x, NULL, y, WINDRV_WRAP_AMD64 } 519 #define IMPORT_FFUNC_MAP(x, y, z) \ 520 { #x, (FUNC)y, NULL, z, WINDRV_WRAP_AMD64 } 521 #define IMPORT_RFUNC(x, y) { #x, (FUNC)x, NULL, y, WINDRV_WRAP_AMD64 } 522 #define IMPORT_RFUNC_MAP(x, y, z) \ 523 { #x, (FUNC)y, NULL, z, WINDRV_WRAP_AMD64 } 524 #define IMPORT_CFUNC(x, y) { #x, (FUNC)x, NULL, y, WINDRV_WRAP_AMD64 } 525 #define IMPORT_CFUNC_MAP(x, y, z) \ 526 { #x, (FUNC)y, NULL, z, WINDRV_WRAP_AMD64 } 527 #endif /* __amd64__ */ 528 529 __BEGIN_DECLS 530 extern int pe_get_dos_header(vm_offset_t, image_dos_header *); 531 extern int pe_is_nt_image(vm_offset_t); 532 extern int pe_get_optional_header(vm_offset_t, image_optional_header *); 533 extern int pe_get_file_header(vm_offset_t, image_file_header *); 534 extern int pe_get_section_header(vm_offset_t, image_section_header *); 535 extern int pe_numsections(vm_offset_t); 536 extern vm_offset_t pe_imagebase(vm_offset_t); 537 extern vm_offset_t pe_directory_offset(vm_offset_t, uint32_t); 538 extern vm_offset_t pe_translate_addr (vm_offset_t, vm_offset_t); 539 extern int pe_get_section(vm_offset_t, image_section_header *, const char *); 540 extern int pe_relocate(vm_offset_t); 541 extern int pe_get_import_descriptor(vm_offset_t, image_import_descriptor *, char *); 542 extern int pe_patch_imports(vm_offset_t, char *, image_patch_table *); 543 extern int pe_get_messagetable(vm_offset_t, message_resource_data **); 544 extern int pe_get_message(vm_offset_t, uint32_t, char **, int *, uint16_t *); 545 __END_DECLS 546 547 #endif /* _PE_VAR_H_ */ 548