In the PE format we have Import Table Directory (accessed by IMAGE_DIRECTORY_ENTRY_IMPORT
) and IAT Directory (accessed by IMAGE_DIRECTORY_ENTRY_IAT
)
both are part of the Optional Header Data Directory.
Using the Import Table, the loader dynamically loads and resolves necessary libraries and functions. This is done by iterating through the Import Address Table RVA (Thunk Table) which is part of the Import Table.
So, if we use the import directory for import resolution what do we need IAT Directory for ?
I've been reading the Microsoft PE specification but couldn't find an answer. Also, there are some questions in SO but most of them use IAT to refer to the Thunk Table and not the IAT Directory.
Thanks
EDIT
I think that there is a confusion between Import Address Table which is a field in the Import Table Directory and the Import Address Table which is called IAT Directory. My question is regarding the IAT Directory.
Thanks again
The following article and it's first part is a good source for information on PE executable files:
From the March 2002 issue of MSDN Magazine: Inside Windows
An In-Depth Look into the Win32 Portable Executable File Format, Part 2