The MASM Forum

General => The Campus => Topic started by: Mikl__ on April 05, 2017, 11:26:07 AM

Title: Import by ordinals
Post by: Mikl__ on April 05, 2017, 11:26:07 AM
There are four types of imports: /DELAYLOAD:COMCTL32.DLL it is delay import

a. How should I change the command line so that I can import by ordinals?
For example, I see the exported functions from user32.dllBin\dumpbin /EXPORTS %WINSYS32%\user32.dll /OUT:user32.txtb. I know  MessageBoxA function ordinal is 2043. How do I call the MesageBox function in the program using an ordinal? call user32.#2043
Title: Re: Import by ordinals
Post by: TWell on April 05, 2017, 06:08:04 PM
user32.dll ordinals are not constant.

normal use of ordinals needs import library created for ordinals.

example defLIBRARY USER32.dll
EXPORTS
MessageBoxA @2097
Title: Re: Import by ordinals
Post by: Mikl__ on April 05, 2017, 06:47:19 PM
Hi, TWell!
Quoteuser32.dll ordinals are not constant
I know about it -- Information is of a fact-finding nature
If I created my def-file in which the ordinal MessageBox = 1023 then how should I issue the def-file so as not to specify the function name so that the linker created import from user32.dll by ordinal? And how do I call such a function? call user32.1023 or call user32:1023?
Title: Re: Import by ordinals
Post by: TWell on April 05, 2017, 07:27:17 PM
just call MessageBoxA and linker find that ordinal from import library.
Title: Re: Import by ordinals
Post by: Mikl__ on April 05, 2017, 07:37:17 PM
Thank you very much, Tim!
Title: Re: Import by ordinals
Post by: Vortex on April 06, 2017, 06:09:15 AM
Hi Mikl__,

Attached is an example for you.
Title: Re: Import by ordinals
Post by: Vortex on April 08, 2017, 07:09:19 AM
The same example using the corresponding import library.
Title: Re: Import by ordinals
Post by: ragdog on April 08, 2017, 05:53:49 PM
Hello

Quoteuser32.dll ordinals are not constant.

Correct.

My user32.dll version
6.1.76.01.23594


Ordinal 2039  MessageBoxA

I have read import by ordinal is not safe by system dlls.
but i have not tested.

Donkey
QuoteI should note that imports by ordinal are pretty dangerous, most DLL's in Windows use a sequentially generated ordinal number and from one version to another the values are pretty much the same for named exports and always the same for ordinal only exports. However this tends to break down once a function is deprecated or a new function is inserted, for example in Common Controls, version 5.8 has the function CreatePropertySheetPageA at ordinal location 18, in version 6.1 it is an unnamed ordinal (CreatePropertySheetPageA is at ordinal 19 in that version). However calling GetProcAddress for ordinal 18 will succeed in both cases but give 2 different functions and will likely crash your program or lead to some pretty bizarre behaviour. If you need a list of static Windows API exports by ordinal you can check my header project which has a pretty extensive list of them in various header files (mostly in Commctrl.h and shellapi.h).

I guess the lesson is to always use named exports whenever possible and only use ordinal exports that you are fairly certain are static but avoid them if you can