PE file structure (3) PE export table

Source: Internet
Author: User

The PE file structure in the previous article (2) a large array appears at the end of the executable file header, and each item in this array is a specific structure, you can use the rtlimagedirectoryentrytodata function to obtain the items in the array through the function. Each item in datadirectory can be obtained using this function. The function prototype is as follows:

Pvoid ntapi rtlimagedirectoryentrytodata (pvoid base, Boolean mappedasimage, ushort directory, Pulong size );

Base: The base address of the module.

Mappedasimage: whether to map to an image.

Directory: The index of the Data Directory item.

 

[CPP]View plaincopy
  1. # Define image_directory_entry_export 0 // export directory
  2. # Define image_directory_entry_import 1 // import directory
  3. # Define image_directory_entry_resource 2 // Resource Directory
  4. # Define image_directory_entry_exception 3 // exception directory
  5. # Define image_directory_entry_security 4 // security directory
  6. # Define image_directory_entry_basereloc 5 // base relocation table
  7. # Define image_directory_entry_debug 6 // DEBUG directory
  8. // Image_directory_entry_copyright 7 // (x86 usage)
  9. # Define image_directory_entry_architecture 7 // architecture specific data
  10. # Define image_directory_entry_globalptr 8 // RVA of GP
  11. # Define image_directory_entry_tls 9 // TLS directory
  12. # Define image_directory_entry_load_config 10 // load configuration directory
  13. # Define image_directory_entry_bound_import 11 // bound import directory in Headers
  14. # Define image_directory_entry_iat 12 // import Address Table
  15. # Define image_directory_entry_delay_import 13 // delay load import Descriptors
  16. # Define image_directory_entry_com_descriptor 14 // com runtime Descriptor


Size: the size of the Data Directory item. For example, if directory is 0, it indicates the size of the exported table.

The return value indicates the starting address of the data directory.

This time, let's take a look at the first item: export the table.

The export table is used to describe the structure of the export function in the module. If a module exports a function, this function will be recorded in the export table, in this way, the address of the function can be dynamically obtained through the getprocaddress function. You can export functions by name or by serial number. The two export methods have different descriptions in the export table. The module export function can be viewed using the dependency Walker tool:

In the red box, the exported function of the module is displayed. Sometimes, the exported function name contains symbols, such as [email protected] @ [email protected] @ Z, this is the function name that exports C ++, And the compiler modifies the name.

Let's take a look at the definition of the exported table:

 

[CPP]View plaincopy
  1. Typedef struct _ image_export_directory {
  2. DWORD characteristics;
  3. DWORD timedatestamp;
  4. Word majorversion;
  5. Word minorversion;
  6. DWORD name;
  7. DWORD base;
  8. DWORD numberoffunctions;
  9. DWORD numberofnames;
  10. DWORD addressoffunctions; // RVA from base of Image
  11. DWORD addressofnames; // RVA from base of Image
  12. DWORD addressofnameordinals; // RVA from base of Image
  13. } Image_export_directory, * pimage_export_directory;


The structure is relatively simple. The meaning of each item is as follows:

Characteristics: currently unavailable, generally 0.

Timedatestamp: The timestamp generated by the export table, which is generated by the connector.

Majorversion, minorversion: The name is version, which does not actually seem to be used, and all are 0.

Name: the name of the module.

Base: The base number of the sequence number. The sequence number of the function exported by the sequence number increases from base.

Numberoffunctions: Number of all export functions.

Numberofnames: number of functions exported by name.

Addressoffunctions: An RVA pointing to a DWORD array. Each item in the array is the RVA of an export function. The order is the same as the export sequence number.

Addressofnames: An RVA still points to a DWORD array. Each item in the array is still an RVA and points to a function name.

Addressofnameordinals: An RVA still points to a Word Array. Each item in the array corresponds to each item in addressofnames, indicating the number of the function in addressoffunctions.

The first child shoes that came into contact with this structure were fainted by the five following items. Understanding this structure is more complicated than the structure itself. The text description is obscure in any case, no picture, no truth, direct:


In, addressofnames points to an array, which stores a group of RVA. Each RVA points to a string, which is the name of the exported function, corresponding to this function name is the corresponding item in addressofnameordinals. When getting the export function address, first find the corresponding name in addressofnames, such as func2, which is the second item in addressofnames, and then retrieve the value of the second item from addressofnameordinals. Here is 2, the function entry is saved in the item marked as 2 in the addressoffunctions array, that is, the third item. The value is taken out, and the base address of the module is the address of the export function. If the function is exported by serial number, use the serial number to subtract the base. The obtained value is the subscript of the function in addressoffunctions.

The Code is as follows:

 

[CPP]View plaincopy
    1. DWORD * CEAT: searcheat (const char * szname)
    2. {
    3. If (is_valid_ptr (m_ptable ))
    4. {
    5. Bool bbyordinal = hiword (szname) = 0;
    6. DWORD * pprocs = (DWORD *) (char *) rva2va (m_ptable-> addressoffunctions ));
    7. If (bbyordinal)
    8. {
    9. DWORD dwordinal = (DWORD) szname;
    10. If (dwordinal <m_ptable-> numberoffunctions & dwordinal> = m_ptable-> Base)
    11. {
    12. Return & pprocs [dwOrdinal-m_pTable-> base];
    13. }
    14. }
    15. Else
    16. {
    17. Word * pordinals = (word *) (char *) rva2va (m_ptable-> addressofnameordinals ));
    18. DWORD * pnames = (DWORD *) (char *) rva2va (m_ptable-> addressofnames ));
    19. For (unsigned int I = 0; I <m_ptable-> numberofnames; ++ I)
    20. {
    21. Char * pnameva = (char *) rva2va (pnames [I]);
    22. If (strcmp (szname, pnameva )! = 0)
    23. {
    24. Continue;
    25. }
    26. Return & pprocs [pordinals [I];
    27. }
    28. }
    29. }
    30. Return NULL;
    31. }

PE file structure (3) PE export table

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.