summaryrefslogtreecommitdiffstats
path: root/sys/conf/options.amd64
diff options
context:
space:
mode:
authorwpaul <wpaul@FreeBSD.org>2005-02-16 05:41:18 +0000
committerwpaul <wpaul@FreeBSD.org>2005-02-16 05:41:18 +0000
commit07b632956a99a773db5488fdd2ffd5f209d38dea (patch)
treef3934335c485d66f4991e7d9fc75b2e17460984c /sys/conf/options.amd64
parent41238cc6d19537d94771e20dbde35067d8d8f618 (diff)
downloadFreeBSD-src-07b632956a99a773db5488fdd2ffd5f209d38dea.zip
FreeBSD-src-07b632956a99a773db5488fdd2ffd5f209d38dea.tar.gz
Add support for Windows/x86-64 binaries to Project Evil.
Ville-Pertti Keinonen (will at exomi dot comohmygodnospampleasekthx) deserves a big thanks for submitting initial patches to make it work. I have mangled his contributions appropriately. The main gotcha with Windows/x86-64 is that Microsoft uses a different calling convention than everyone else. The standard ABI requires using 6 registers for argument passing, with other arguments on the stack. Microsoft uses only 4 registers, and requires the caller to leave room on the stack for the register arguments incase the callee needs to spill them. Unlike x86, where Microsoft uses a mix of _cdecl, _stdcall and _fastcall, all routines on Windows/x86-64 uses the same convention. This unfortunately means that all the functions we export to the driver require an intermediate translation wrapper. Similarly, we have to wrap all calls back into the driver binary itself. The original patches provided macros to wrap every single routine at compile time, providing a secondary jump table with a customized wrapper for each exported routine. I decided to use a different approach: the call wrapper for each function is created from a template at runtime, and the routine to jump to is patched into the wrapper as it is created. The subr_pe module has been modified to patch in the wrapped function instead of the original. (On x86, the wrapping routine is a no-op.) There are some minor API differences that had to be accounted for: - KeAcquireSpinLock() is a real function on amd64, not a macro wrapper around KfAcquireSpinLock() - NdisFreeBuffer() is actually IoFreeMdl(). I had to change the whole NDIS_BUFFER API a bit to accomodate this. Bugs fixed along the way: - IoAllocateMdl() always returned NULL - kern_windrv.c:windrv_unload() wasn't releasing private driver object extensions correctly (found thanks to memguard) This has only been tested with the driver for the Broadcom 802.11g chipset, which was the only Windows/x86-64 driver I could find.
Diffstat (limited to 'sys/conf/options.amd64')
-rw-r--r--sys/conf/options.amd642
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/conf/options.amd64 b/sys/conf/options.amd64
index 8da2f89..7839541 100644
--- a/sys/conf/options.amd64
+++ b/sys/conf/options.amd64
@@ -17,7 +17,7 @@ COMPAT_IA32 opt_compat.h
COMPAT_LINUX32 opt_compat.h
#COMPAT_SVR4 opt_dontuse.h
#DEBUG_SVR4 opt_svr4.h
-#NDISAPI opt_dontuse.h
+NDISAPI opt_dontuse.h
CLK_CALIBRATION_LOOP opt_clock.h
CLK_USE_I8254_CALIBRATION opt_clock.h
OpenPOWER on IntegriCloud