vote up 0 vote down star

If a Windows executable makes use of SYSENTER and is executed on a processor implementing AMD64 ISA, what happens? I am both new and newbie to this topic (OSes, hardware/software interaction) but from what I've read I have understood that SYSCALL is the AMD64 equivalent to Intel's SYSENTER. Hopefully this question makes sense.

flag
it is not that trivial...what do you mean by "what happens?". Do you want to know how it is handled or simply if it is working. Additional Information would be nice – bastianneu Oct 29 at 13:55
Mainly I wanted to know if it works. But wouldn't hurt to also know what actually happens? The wiki-article provided in one of the answers states "AMD64 lacks SYSENTER and SYSEXIT in both sub-modes of long mode." If I had three x86-64 PEs, one making use of INT 0x2E, one SYSENTER and one SYSCALL, will they all work on x86-64 implementing processor for jumping to kernel space? – qp Oct 29 at 15:44
nynaeve.net/?p=48 This blog post at least answered me how the system call dispatcher in Windows chooses the entry method. – qp Oct 30 at 11:09

2 Answers

vote up 0 vote down check

If you try to use SYSENTER where it is not supported, you'll probably get an "invalid opcode" exception. Note that this situation is unusual - generally, Windows executables do not directly contain instructions to enter kernel mode.

link|flag
Yeah, the usual thing on Windows is to call into a DLL which has the code to call the kernel. – Zan Lynx Nov 3 at 3:05
In fact, doing direct system calls will often get your exe detected as a virus. – Zan Lynx Nov 3 at 3:06
vote up 0 vote down

As far as i know AM64 processors using different type of modes to handle such issues.

SYSENTER works fine but is not that fast.

A very useful site to get started about the different modes: Wikipedia

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.