VirtualBox

source: vbox/trunk/src/VBox/HostDrivers/Support/Makefile.kmk@ 52403

Last change on this file since 52403 was 52403, checked in by vboxsync, 11 years ago

SUP,IPRT: Extended RTLdrQueryPropEx with a pvBits parameter, RTLDRPROP_IMPORT_COUNT and RTLDRPROP_IMPORT_MODULE. Hook LdrLoadDll to validate DLLs before they get to NtCreateSection and the loader code/data can be messed up (windows 7 / 32-bit crash). Allow the kernel to buffer the log file, no real need that each write hits the disk.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 26.8 KB
Line 
1# $Id: Makefile.kmk 52403 2014-08-18 20:35:32Z vboxsync $
2## @file
3# Sub-Makefile for the support library and the drivers/modules/kexts it uses.
4#
5
6#
7# Copyright (C) 2006-2012 Oracle Corporation
8#
9# This file is part of VirtualBox Open Source Edition (OSE), as
10# available from http://www.virtualbox.org. This file is free software;
11# you can redistribute it and/or modify it under the terms of the GNU
12# General Public License (GPL) as published by the Free Software
13# Foundation, in version 2 as it comes in the "COPYING" file of the
14# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16#
17# The contents of this file may alternatively be used under the terms
18# of the Common Development and Distribution License Version 1.0
19# (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20# VirtualBox OSE distribution, in which case the provisions of the
21# CDDL are applicable instead of those of the GPL.
22#
23# You may elect to license modified versions of this file under the
24# terms and conditions of either the GPL or the CDDL or both.
25#
26
27SUB_DEPTH = ../../../..
28include $(KBUILD_PATH)/subheader.kmk
29
30#
31# Targets
32#
33LIBRARIES += SUPR3 SUPR3Static
34ifdef VBOX_WITH_HARDENING
35 LIBRARIES += SUPR3HardenedStatic
36endif
37DLLS.win += VBoxSupLib
38ifdef VBOX_WITH_32_ON_64_MAIN_API
39 LIBRARIES += SUPR3-x86
40endif
41ifndef VBOX_ONLY_DOCS
42 if1of ($(VBOX_LDR_FMT), pe lx)
43 LIBRARIES += SUPR0
44 endif
45endif
46if !defined(VBOX_ONLY_DOCS) \
47 && !defined(VBOX_ONLY_EXTPACKS) \
48 && !defined(VBOX_ONLY_VALIDATIONKIT)
49 ifdef VBOX_WITH_SUPSVC
50 PROGRAMS += VBoxSupSvc
51 endif
52 ifdef VBOX_WITH_VBOXDRV
53 LIBRARIES += SUPR0IdcClient
54 SYSMODS.freebsd += vboxdrv
55 SYSMODS.os2 += VBoxDrv
56 endif
57 INSTALLS.linux += vboxdrv-mod
58 INSTALLS.freebsd += vboxdrv-mod
59
60 #
61 # Include sub-makefile(s).
62 #
63 include $(PATH_SUB_CURRENT)/testcase/Makefile.kmk
64
65 #
66 # Populate FILES_VBOXDRV_NOBIN and FILES_VBOXDRV_BIN
67 #
68 ifeq ($(KBUILD_TARGET),linux)
69 include $(PATH_SUB_CURRENT)/linux/files_vboxdrv
70 endif
71 ifeq ($(KBUILD_TARGET),freebsd)
72 include $(PATH_SUB_CURRENT)/freebsd/files_vboxdrv
73 endif
74endif # !VBOX_ONLY_DOCS && !VBOX_ONLY_EXTPACKS && !VBOX_ONLY_VALIDATIONKIT
75
76#
77# Authenticode related trust anchors and certificates -> .cpp
78#
79VBOX_SUP_WIN_CERTS_FILE = $(SUPR3_0_OUTDIR)/TrustAnchorsAndCerts.cpp
80VBOX_SUP_WIN_CERTS := \
81 SpcRootMicrosoft0=SpcRoot-MicrosoftAuthenticodeTmRootAuthority-01.taf \
82 SpcRootMicrosoft1=SpcRoot-MicrosoftRootAuthority-00c1008b3c3c8811d13ef663ecdf40.taf \
83 SpcRootMicrosoft2=SpcRoot-MicrosoftRootCertificateAuthority-79ad16a14aa0a5ad4c7358f407132e65.taf \
84 SpcRootMicrosoft3=SpcRoot-MicrosoftRootCertificateAuthority2010-28cc3a25bfba44ac449a9b586b4339aa.taf \
85 SpcRootMicrosoft4=SpcRoot-MicrosoftRootCertificateAuthority2011-3f8bc8b5fc9fb29643b569d66c42e144.taf \
86 SpcRootMicrosoft5=SpcRoot-MicrosoftDigitalMediaAuthority2005-6eff330eb6e7569740680870104baaba.taf \
87 NtRootMicrosoft6=NtRoot-MicrosoftCodeVerificationRoot-729404101f3e0ca347837fca175a8438.taf \
88 TimeRootMicrosoft0=Timestamp-CopyrightC1997MicrosoftCorp-01.taf \
89 TrustedCertVBox0=Trusted-OracleCorporationVirtualBox-51ca009816fdbd80f120e015ee75823e.taf
90VBOX_SUP_WIN_CERT_NAMES := $(foreach cert,$(VBOX_SUP_WIN_CERTS),$(firstword $(subst =,$(SPACE) ,$(cert))))
91VBOX_PATH_SUPR3_CERTIFICATES := $(PATH_SUB_CURRENT)/win/Certificates
92
93# 1=name, 2=filter, 3=buildcert?.
94if "$(KBUILD_TARGET)" == "win" && defined(VBOX_WITH_HARDENING)
95 VBOX_SUP_GEN_CERT_MACRO = 'SUPTAENTRY const g_aSUP$(1)TAs[] =' '{' \
96 $(if-expr "$(3)" == "",,' SUPTAENTRY_GEN(g_abSUPBuildCert),') \
97 $(foreach certnm,$(filter $(2),$(VBOX_SUP_WIN_CERT_NAMES)), ' SUPTAENTRY_GEN(g_abSUP$(certnm)),') \
98 '};' 'unsigned const g_cSUP$(1)TAs = RT_ELEMENTS(g_aSUP$(1)TAs);' '' ''
99else
100 VBOX_SUP_GEN_CERT_MACRO = 'SUPTAENTRY const g_aSUP$(1)TAs[] =' '{' \
101 $(foreach certnm,$(filter $(2),$(VBOX_SUP_WIN_CERT_NAMES)), ' SUPTAENTRY_GEN(g_abSUP$(certnm)),') \
102 '};' 'unsigned const g_cSUP$(1)TAs = RT_ELEMENTS(g_aSUP$(1)TAs);' '' ''
103endif
104
105$$(VBOX_SUP_WIN_CERTS_FILE): $(MAKEFILE_CURRENT) \
106 $(foreach cert,$(VBOX_SUP_WIN_CERTS),$(VBOX_PATH_SUPR3_CERTIFICATES)/$(lastword $(subst =,$(SPACE) ,$(cert)))) \
107 $(VBOX_BIN2C) \
108 $(if-expr "$(KBUILD_TARGET)" == "win" && defined(VBOX_WITH_HARDENING),$(VBOX_RTSIGNTOOL)) \
109 | $$(dir $$@)
110 $(QUIET)$(RM) -f -- $@ [email protected]
111 $(QUIET)$(APPEND) -n "$@" \
112 '' \
113 '#include <VBox/sup.h>' \
114 ''
115 $(foreach cert,$(VBOX_SUP_WIN_CERTS), $(NLTAB)$(VBOX_BIN2C) -ascii --append \
116 "SUP$(firstword $(subst =,$(SP) ,$(cert)))" \
117 "$(VBOX_PATH_SUPR3_CERTIFICATES)/$(lastword $(subst =,$(SP) ,$(cert)))" \
118 "$@")
119# The build certificate.
120if "$(KBUILD_TARGET)" == "win" && defined(VBOX_WITH_HARDENING)
121 $(VBOX_RTSIGNTOOL) extract-exe-signer-cert --exe $(VBOX_RTSIGNTOOL) --output "[email protected]" --der
122 $(VBOX_BIN2C) -ascii --append SUPBuildCert "[email protected]" $@
123 $(QUIET)$(RM) -f -- [email protected]
124endif
125# Generate certificate lists.
126 $(QUIET)$(APPEND) -n "$@" '' \
127 $(call VBOX_SUP_GEN_CERT_MACRO,All,%,build) \
128 $(call VBOX_SUP_GEN_CERT_MACRO,SpcRoot,SpcRoot%) \
129 $(call VBOX_SUP_GEN_CERT_MACRO,NtKernelRoot,NtRoot%) \
130 $(call VBOX_SUP_GEN_CERT_MACRO,Timestamp,TimeRoot%) \
131 $(call VBOX_SUP_GEN_CERT_MACRO,Trusted,TrustedCert%,build)
132
133tst: $(VBOX_SUP_WIN_CERTS_FILE)
134
135
136#
137# The Ring-3 Support Library (this is linked into the IPRT dll, VBoxRT).
138#
139SUPR3_TEMPLATE = VBOXR3
140SUPR3_DEFS = \
141 IN_SUP_R3 IN_RT_R3 \
142 $(if $(VBOX_WITH_SUPSVC),VBOX_WITH_SUPSVC) \
143 $(if $(VBOX_WITH_MAIN),VBOX_WITH_MAIN,) \
144 $(if $(VBOX_WITH_RAW_MODE),VBOX_WITH_RAW_MODE,) \
145 VBOX_PERMIT_MORE
146SUPR3_INCS := $(PATH_SUB_CURRENT)
147SUPR3_SOURCES = \
148 SUPLib.cpp \
149 SUPLibLdr.cpp \
150 SUPLibSem.cpp \
151 SUPLibTracerA.asm \
152 SUPR3HardenedIPRT.cpp \
153 SUPR3HardenedVerify.cpp \
154 $(KBUILD_TARGET)/SUPLib-$(KBUILD_TARGET).cpp \
155 $(VBOX_SUP_WIN_CERTS_FILE)
156ifdef VBOX_WITH_HARDENING
157 SUPR3_SOURCES.win = \
158 win/SUPHardenedVerifyImage-win.cpp
159endif
160
161SUPR3-x86_TEMPLATE = VBoxR3Dll-x86
162SUPR3-x86_EXTENDS = SUPR3
163
164
165#
166# Static version of SUPR3. This is more of a stub than anything else in a
167# hardened build, at least on windows.
168#
169SUPR3Static_TEMPLATE = VBOXR3STATIC
170SUPR3Static_EXTENDS = SUPR3
171SUPR3Static_DEFS = $(SUPR3_DEFS) IN_SUP_R3_STATIC
172SUPR3Static_SOURCES.win = $(filter-out win/SUPHardenedVerifyImage-win.cpp, $(SUPR3_SOURCES.win))
173
174
175#
176# The static part of the hardened support library (ring-3).
177#
178VBOX_PATH_RUNTIME_SRC ?= $(PATH_ROOT)/src/VBox/Runtime
179SUPR3HardenedStatic_TEMPLATE = VBOXR3HARDENEDLIB
180SUPR3HardenedStatic_DEFS = IN_SUP_HARDENED_R3
181SUPR3HardenedStatic_DEFS += \
182 $(if $(VBOX_WITH_SUPSVC),VBOX_WITH_SUPSVC,) \
183 $(if $(VBOX_WITH_MAIN),VBOX_WITH_MAIN,) \
184 $(if $(VBOX_WITH_RAW_MODE),VBOX_WITH_RAW_MODE,) \
185 $(if $(VBOX_WITHOUT_DEBUGGER_CHECKS),VBOX_WITHOUT_DEBUGGER_CHECKS,) \
186 $(if $(VBOX_PERMIT_VISUAL_STUDIO_PROFILING),VBOX_PERMIT_VISUAL_STUDIO_PROFILING,) \
187 VBOX_PERMIT_MORE
188ifdef VBOX_WITH_VISTA_NO_SP
189 SUPR3HardenedStatic_DEFS.win += VBOX_WITH_VISTA_NO_SP
190endif
191SUPR3HardenedStatic_INCS = .
192SUPR3HardenedStatic_SOURCES = \
193 SUPR3HardenedMain.cpp \
194 SUPR3HardenedVerify.cpp \
195 SUPR3HardenedNoCrt.cpp \
196 $(KBUILD_TARGET)/SUPLib-$(KBUILD_TARGET).cpp
197SUPR3HardenedStatic_SOURCES.win = \
198 win/SUPR3HardenedMain-win.cpp \
199 win/SUPR3HardenedMainA-win.asm \
200 win/SUPR3HardenedMainImports-win.cpp \
201 win/SUPHardenedVerifyProcess-win.cpp \
202 win/SUPHardenedVerifyImage-win.cpp \
203 $(VBOX_SUP_WIN_CERTS_FILE)
204
205if "$(KBUILD_TARGET)" == "win" && defined(VBOX_WITH_HARDENING) ## @todo some of this move up.
206 SUPR3HardenedStatic_DEFS += \
207 IN_RT \
208 IN_RT_R3 \
209 IN_RT_STATIC \
210 IN_DIS \
211 DIS_CORE_ONLY \
212 IPRT_NO_CRT \
213 RT_WITH_NOCRT_ALIASES \
214 LOG_DISABLED \
215 IPRT_NO_ERROR_DATA
216 SUPR3HardenedStatic_DEFS.win += LDR_ONLY_PE __STRALIGN_H_
217
218 SUPR3HardenedStatic_INCS += $(PATH_ROOT)/include/iprt/nocrt $(VBOX_PATH_RUNTIME_SRC)/include
219
220 SUPR3HardenedStatic_SOURCES += \
221 $(VBOX_PATH_RUNTIME_SRC)/common/ldr/ldr.cpp \
222 $(VBOX_PATH_RUNTIME_SRC)/common/ldr/ldrEx.cpp \
223 $(VBOX_PATH_RUNTIME_SRC)/common/ldr/ldrPE.cpp \
224 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/asn1-basics.cpp \
225 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/asn1-cursor.cpp \
226 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/asn1-default-allocator.cpp \
227 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/asn1-dump.cpp \
228 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/asn1-encode.cpp \
229 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/asn1-ut-bitstring.cpp \
230 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/asn1-ut-bitstring-decode.cpp \
231 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/asn1-ut-boolean.cpp \
232 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/asn1-ut-boolean-decode.cpp \
233 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/asn1-ut-core.cpp \
234 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/asn1-ut-core-decode.cpp \
235 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/asn1-ut-dyntype.cpp \
236 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/asn1-ut-dyntype-decode.cpp \
237 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/asn1-ut-integer.cpp \
238 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/asn1-ut-integer-decode.cpp \
239 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/asn1-ut-null.cpp \
240 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/asn1-ut-null-decode.cpp \
241 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/asn1-ut-objid.cpp \
242 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/asn1-ut-objid-decode.cpp \
243 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/asn1-ut-octetstring.cpp \
244 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/asn1-ut-octetstring-decode.cpp \
245 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/asn1-ut-string.cpp \
246 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/asn1-ut-string-decode.cpp \
247 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/asn1-ut-time.cpp \
248 $(VBOX_PATH_RUNTIME_SRC)/common/asn1/asn1-ut-time-decode.cpp \
249 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/digest-core.cpp \
250 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/digest-builtin.cpp \
251 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/pkcs7-asn1-decoder.cpp \
252 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/pkcs7-core.cpp \
253 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/pkcs7-init.cpp \
254 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/pkcs7-sanity.cpp \
255 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/pkcs7-verify.cpp \
256 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/pkix-signature-builtin.cpp \
257 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/pkix-signature-core.cpp \
258 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/pkix-signature-rsa.cpp \
259 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/pkix-verify.cpp \
260 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/pkix-util.cpp \
261 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/rsa-asn1-decoder.cpp \
262 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/rsa-core.cpp \
263 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/rsa-init.cpp \
264 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/rsa-sanity.cpp \
265 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/spc-asn1-decoder.cpp \
266 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/spc-core.cpp \
267 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/spc-init.cpp \
268 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/spc-sanity.cpp \
269 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/x509-asn1-decoder.cpp \
270 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/x509-certpaths.cpp \
271 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/x509-core.cpp \
272 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/x509-init.cpp \
273 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/x509-sanity.cpp \
274 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/x509-verify.cpp \
275 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/store.cpp \
276 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/store-inmem.cpp \
277 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/taf-asn1-decoder.cpp \
278 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/taf-core.cpp \
279 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/taf-init.cpp \
280 $(VBOX_PATH_RUNTIME_SRC)/common/crypto/taf-sanity.cpp \
281 $(VBOX_PATH_RUNTIME_SRC)/common/checksum/alt-md2.cpp \
282 $(VBOX_PATH_RUNTIME_SRC)/common/checksum/alt-md5.cpp \
283 $(VBOX_PATH_RUNTIME_SRC)/common/checksum/alt-sha1.cpp \
284 $(VBOX_PATH_RUNTIME_SRC)/common/checksum/alt-sha256.cpp \
285 $(VBOX_PATH_RUNTIME_SRC)/common/checksum/alt-sha512.cpp \
286 $(VBOX_PATH_RUNTIME_SRC)/common/checksum/md2str.cpp \
287 $(VBOX_PATH_RUNTIME_SRC)/common/checksum/md5str.cpp \
288 $(VBOX_PATH_RUNTIME_SRC)/common/checksum/sha1str.cpp \
289 $(VBOX_PATH_RUNTIME_SRC)/common/checksum/sha256str.cpp \
290 $(VBOX_PATH_RUNTIME_SRC)/common/checksum/sha512str.cpp \
291 $(VBOX_PATH_RUNTIME_SRC)/common/err/errinfo.cpp \
292 $(VBOX_PATH_RUNTIME_SRC)/common/path/RTPathChangeToUnixSlashes.cpp \
293 $(VBOX_PATH_RUNTIME_SRC)/common/path/RTPathExt.cpp \
294 $(VBOX_PATH_RUNTIME_SRC)/common/string/RTStrPrintHexBytes.cpp \
295 $(VBOX_PATH_RUNTIME_SRC)/common/string/RTUtf16PrintHexBytes.cpp \
296 $(VBOX_PATH_RUNTIME_SRC)/common/string/RTUtf16ICmpAscii.cpp \
297 $(VBOX_PATH_RUNTIME_SRC)/common/string/RTUtf16CatAscii.cpp \
298 $(VBOX_PATH_RUNTIME_SRC)/common/string/RTUtf16CopyAscii.cpp \
299 $(VBOX_PATH_RUNTIME_SRC)/common/string/RTUtf16End.cpp \
300 $(VBOX_PATH_RUNTIME_SRC)/common/string/strstrip.cpp \
301 \
302 $(VBOX_PATH_RUNTIME_SRC)/common/err/errmsg.cpp \
303 $(VBOX_PATH_RUNTIME_SRC)/common/math/bignum.cpp \
304 $(VBOX_PATH_RUNTIME_SRC)/common/math/bignum-amd64-x86.asm \
305 $(VBOX_PATH_RUNTIME_SRC)/common/misc/RTAssertMsg1Weak.cpp \
306 $(VBOX_PATH_RUNTIME_SRC)/common/misc/RTAssertMsg2Weak.cpp \
307 $(VBOX_PATH_RUNTIME_SRC)/common/misc/RTAssertMsg2WeakV.cpp \
308 $(VBOX_PATH_RUNTIME_SRC)/common/misc/zero.asm \
309 $(VBOX_PATH_RUNTIME_SRC)/common/path/RTPathFilename.cpp \
310 $(VBOX_PATH_RUNTIME_SRC)/common/string/memchr.asm \
311 $(VBOX_PATH_RUNTIME_SRC)/common/string/memcmp.asm \
312 $(VBOX_PATH_RUNTIME_SRC)/common/string/memcpy.asm \
313 $(VBOX_PATH_RUNTIME_SRC)/common/string/memmove.asm \
314 $(VBOX_PATH_RUNTIME_SRC)/common/string/mempcpy.asm \
315 $(VBOX_PATH_RUNTIME_SRC)/common/string/memset.asm \
316 $(VBOX_PATH_RUNTIME_SRC)/common/string/RTStrCat.cpp \
317 $(VBOX_PATH_RUNTIME_SRC)/common/string/RTStrCmp.cpp \
318 $(VBOX_PATH_RUNTIME_SRC)/common/string/RTStrCopy.cpp \
319 $(VBOX_PATH_RUNTIME_SRC)/common/string/RTStrNCmp.cpp \
320 $(VBOX_PATH_RUNTIME_SRC)/common/string/RTStrNLen.cpp \
321 $(VBOX_PATH_RUNTIME_SRC)/common/string/strchr.asm \
322 $(VBOX_PATH_RUNTIME_SRC)/common/string/strcmp.asm \
323 $(VBOX_PATH_RUNTIME_SRC)/common/string/strcpy.asm \
324 $(VBOX_PATH_RUNTIME_SRC)/common/string/strformat.cpp \
325 $(VBOX_PATH_RUNTIME_SRC)/common/string/strformatrt.cpp \
326 $(VBOX_PATH_RUNTIME_SRC)/common/string/strformattype.cpp \
327 $(VBOX_PATH_RUNTIME_SRC)/common/string/stringalloc.cpp \
328 $(VBOX_PATH_RUNTIME_SRC)/common/string/strlen.asm \
329 $(VBOX_PATH_RUNTIME_SRC)/common/string/strncmp.asm \
330 $(VBOX_PATH_RUNTIME_SRC)/common/string/strncpy.asm \
331 $(VBOX_PATH_RUNTIME_SRC)/common/string/strprintf.cpp \
332 $(VBOX_PATH_RUNTIME_SRC)/common/string/strtonum.cpp \
333 $(VBOX_PATH_RUNTIME_SRC)/common/string/utf-16.cpp \
334 $(VBOX_PATH_RUNTIME_SRC)/common/string/utf-8.cpp \
335 $(VBOX_PATH_RUNTIME_SRC)/common/string/utf-8-case.cpp \
336 $(VBOX_PATH_RUNTIME_SRC)/common/string/unidata-upper.cpp \
337 $(VBOX_PATH_RUNTIME_SRC)/common/string/unidata-lower.cpp \
338 $(VBOX_PATH_RUNTIME_SRC)/common/time/time.cpp \
339 $(VBOX_PATH_RUNTIME_SRC)/generic/RTAssertShouldPanic-generic.cpp \
340 $(VBOX_PATH_RUNTIME_SRC)/generic/memsafer-generic.cpp \
341 $(VBOX_PATH_RUNTIME_SRC)/generic/uuid-generic.cpp \
342 \
343 ../../Disassembler/DisasmCore.cpp \
344 ../../Disassembler/DisasmTables.cpp \
345 ../../Disassembler/DisasmTablesX64.cpp \
346 ../../Disassembler/DisasmReg.cpp
347
348 SUPR3HardenedStatic_SOURCES.amd64 += \
349 $(VBOX_PATH_RUNTIME_SRC)/common/math/RTUInt128MulByU64.asm
350
351 SUPR3HardenedStatic_SOURCES.win += \
352 win/SUPR3HardenedNoCrt-win.cpp \
353 $(VBOX_PATH_RUNTIME_SRC)/nt/RTErrConvertFromNtStatus.cpp \
354 $(VBOX_PATH_RUNTIME_SRC)/win/RTErrConvertFromWin32.cpp \
355 $(VBOX_PATH_RUNTIME_SRC)/win/errmsgwin.cpp
356
357 # Add necessary compiler specific files from libcmt.lib and the lib dir.
358 ifeq ($(KBUILD_TARGET),win)
359 SUPR3HardenedStatic_VBOX_LIBC_OBJS = chkstk.obj
360 ifeq ($(KBUILD_TARGET_ARCH),x86)
361 SUPR3HardenedStatic_VBOX_LIBC_OBJS += \
362 alloca16.obj \
363 ulldiv.obj \
364 ulldvrm.obj \
365 ullrem.obj \
366 ullshr.obj \
367 lldiv.obj \
368 lldvrm.obj \
369 llmul.obj \
370 llrem.obj \
371 llshl.obj \
372 llshr.obj \
373 rotl.obj \
374 rotr.obj
375 endif
376 SUPR3HardenedStatic_SOURCES.win += $(addprefix $(SUPR3HardenedStatic_0_OUTDIR)/,$(SUPR3HardenedStatic_VBOX_LIBC_OBJS))
377
378 $(addprefix $$(SUPR3HardenedStatic_0_OUTDIR)/,$(SUPR3HardenedStatic_VBOX_LIBC_OBJS)): \
379 $$(PATH_TOOL_$(TEMPLATE_VBOXR3EXE_TOOL.win.$(KBUILD_TARGET_ARCH))_LIB)/libcmt.lib | $$(dir $$@)
380 $(TOOL_$(TEMPLATE_VBOXR3HARDENEDEXE_TOOL.win.$(KBUILD_TARGET_ARCH))_AR) "$<" \
381 /EXTRACT:`$(TOOL_$(TEMPLATE_VBOXR3HARDENEDEXE_TOOL.win.$(KBUILD_TARGET_ARCH))_AR) "$<" /LIST \
382 | $(SED_EXT) -n -e '/[\\/:]$(notdir $@)/p'` \
383 "/OUT:$@"
384 endif
385endif
386
387SUPR3HardenedMain.cpp_DEFS = VBOX_SVN_REV=$(VBOX_SVN_REV)
388
389
390#
391# VBoxSupLib - Windows DLL for catching thread creation and termination.
392#
393VBoxSupLib_TEMPLATE = $(if-expr "$(KBUILD_TARGET)" == "win" && defined(VBOX_WITH_HARDENING),VBOXR3HARDENEDLIB,VBOXR3)
394VBoxSupLib_LDFLAGS.win.amd64 = -Entry:DllMainEntrypoint
395VBoxSupLib_LDFLAGS.win.x86 = -Entry:DllMainEntrypoint
396VBoxSupLib_DEFS = \
397 $(if $(VBOX_WITHOUT_DEBUGGER_CHECKS),VBOX_WITHOUT_DEBUGGER_CHECKS,)
398VBoxSupLib_SOURCES = \
399 $(KBUILD_TARGET)/VBoxSupLib-$(KBUILD_TARGET).cpp
400VBoxSupLib_LIBS.win.x86 = \
401 $(PATH_TOOL_$(TEMPLATE_VBOXR3STATIC_TOOL.win.x86)_LIB)/libcmt$(VBOX_VCC_CRT_TYPE).lib # for __chkstk
402VBoxSupLib_LIBS.win.amd64 = \
403 $(PATH_TOOL_$(TEMPLATE_VBOXR3STATIC_TOOL.win.amd64)_LIB)/libcmt$(VBOX_VCC_CRT_TYPE).lib # for __chkstk
404
405
406#
407# VBoxSupSvc - The system wide service/daemon.
408#
409VBoxSupSvc_TEMPLATE = VBOXR3EXE
410VBoxSupSvc_SOURCES = \
411 SUPSvc.cpp \
412 SUPSvcGlobal.cpp \
413 $(KBUILD_TARGET)/SUPSvc-$(KBUILD_TARGET).cpp
414if1of ($(KBUILD_TARGET), win)
415 VBoxSupSvc_SOURCES += \
416 SUPSvcGrant.cpp
417endif
418ifn1of ($(KBUILD_TARGET), win)
419 VBoxSupSvc_SOURCES += \
420 SUPSvcMain-posix.cpp
421endif
422VBoxSupSvc_LIBS = \
423 $(LIB_RUNTIME)
424
425
426#
427# SUPR0 - The Ring-0 Import library.
428#
429SUPR0_TEMPLATE = VBoxR0
430if1of ($(VBOX_LDR_FMT), pe lx)
431 SUPR0_SOURCES = $(SUPR0_0_OUTDIR)/SUPR0.def
432 SUPR0_CLEAN = $(SUPR0_0_OUTDIR)/SUPR0.def
433$$(SUPR0_0_OUTDIR)/SUPR0.def: \
434 $(PATH_SUB_CURRENT)/SUPDrv.c \
435 $(PATH_SUB_CURRENT)/SUPR0-def-$(VBOX_LDR_FMT).sed \
436 | $$(dir $$@)
437 $(SED) \
438 -f $(dir $<)/SUPR0-def-$(VBOX_LDR_FMT).sed \
439 --output $@ \
440 $<
441endif
442
443
444#
445# SUPR0IdcClient - The Ring-0 IDC client driver library.
446#
447SUPR0IdcClient_TEMPLATE = VBoxR0DrvLib
448SUPR0IdcClient_DEFS = IN_RT_R0 IN_SUP_R0 IN_SUP_STATIC
449SUPR0IdcClient_SDKS.win = ReorderCompilerIncs $(VBOX_WINDDK) $(VBOX_WINPSDK)INCS
450SUPR0IdcClient_SOURCES.$(KBUILD_TARGET) = \
451 $(KBUILD_TARGET)/SUPR0IdcClient-$(KBUILD_TARGET).c
452SUPR0IdcClient_SOURCES = \
453 SUPR0IdcClient.c \
454 SUPR0IdcClientComponent.c \
455 SUPR0IdcClientStubs.c
456
457
458
459if !defined(VBOX_ONLY_DOCS) \
460 && !defined(VBOX_ONLY_EXTPACKS) \
461 && !defined(VBOX_ONLY_VALIDATIONKIT)
462
463ifeq ($(KBUILD_TARGET),os2)
464
465#
466# VBoxDrv.sys - The OS/2 driver.
467#
468VBoxDrv_TEMPLATE = VBOXR0DRV
469VBoxDrv_DEFS = IN_RT_R0 IN_SUP_R0
470VBoxDrv_INCS := $(PATH_SUB_CURRENT)
471#VBoxDrv_LDFLAGS = -s -t -v
472VBoxDrv_SOURCES = \
473 os2/SUPDrvA-os2.asm \
474 os2/SUPDrv-os2.def
475VBoxDrv_LIBS = \
476 $(VBoxDrvLib_1_TARGET) \
477 $(PATH_STAGE_LIB)/RuntimeR0Drv$(VBOX_SUFF_LIB) \
478 $(VBOX_GCC_LIBGCC) \
479 end
480
481# temp hack to ensure that SUPDrvA-os2.asm is first in the link.
482LIBRARIES += VBoxDrvLib
483VBoxDrvLib_TEMPLATE = VBOXR0DRV
484VBoxDrvLib_INSTTYPE = none
485VBoxDrvLib_DEFS = IN_RT_R0 IN_SUP_R0
486VBoxDrvLib_INCS := \
487 . \
488 $(PATH_ROOT)/src/VBox/Runtime/include
489VBoxDrvLib_SOURCES = \
490 os2/SUPDrv-os2.cpp \
491 SUPDrv.c \
492 SUPDrvSem.c
493
494endif # os2
495ifeq ($(KBUILD_TARGET),freebsd)
496
497#
498# vboxdrv.ko - The FreeBSD Kernel Module.
499#
500vboxdrv_TEMPLATE = VBOXR0DRV
501vboxdrv_DEFS = IN_RT_R0 IN_SUP_R0 SUPDRV_WITH_RELEASE_LOGGER VBOX_SVN_REV=$(VBOX_SVN_REV)
502vboxdrv_INCS := $(PATH_SUB_CURRENT)
503vboxdrv_LIBS = $(PATH_STAGE_LIB)/RuntimeR0Drv$(VBOX_SUFF_LIB)
504vboxdrv_SOURCES := \
505 $(KBUILD_TARGET)/SUPDrv-$(KBUILD_TARGET).c \
506 $(PATH_SUB_CURRENT)/$(KBUILD_TARGET)/SUPDrv-$(KBUILD_TARGET).def \
507 SUPDrv.c \
508 SUPDrvSem.c
509## @todo the SUPDrv-freebsd.def is most probably gonna break it and require build system hacking...
510
511#
512# Targets for installing the freebsd sources.
513#
514vboxdrv-mod_INST = bin/src/vboxdrv/
515vboxdrv-mod_SOURCES = \
516 $(subst $(DQUOTE),,$(FILES_VBOXDRV_NOBIN)) \
517 $(vboxdrv-mod_0_OUTDIR)/Makefile
518vboxdrv-mod_CLEAN = \
519 $(vboxdrv-mod_0_OUTDIR)/Makefile
520
521$$(vboxdrv-mod_0_OUTDIR)/Makefile: \
522 $(PATH_SUB_CURRENT)/freebsd/Makefile \
523 $$(if $$(eq $$(Support/freebsd/Makefile_VBOX_HARDENED),$$(VBOX_WITH_HARDENING)),,FORCE) \
524 | $$(dir $$@)
525 $(call MSG_TOOL,Creating,,$@)
526 $(QUIET)$(RM) -f -- $@
527 ifndef VBOX_WITH_HARDENING
528 $(QUIET)$(SED) -e "s;-DVBOX_WITH_HARDENING;;g" --output $@ $<
529 else
530 $(QUIET)$(CP) -f $< $@
531 endif
532
533endif # freebsd
534
535
536#
537# New VBoxDrv target. TODO: Convert all the above to use this!
538#
539if1of ($(KBUILD_TARGET), darwin linux solaris win)
540 ifdef VBOX_WITH_VBOXDRV
541 SYSMODS += VBoxDrv
542 endif
543 VBoxDrv_TEMPLATE = VBOXR0DRV
544 VBoxDrv_NAME.freebsd = vboxdrv
545 VBoxDrv_NAME.linux = vboxdrv
546 VBoxDrv_NAME.solaris = vboxdrv
547 ifdef VBOX_SIGNING_MODE
548 VBoxDrv_INSTTYPE.win = none
549 VBoxDrv_DEBUG_INSTTYPE.win = both
550 endif
551 VBoxDrv_INST.darwin = $(INST_VBOXDRV)Contents/MacOS/
552 VBoxDrv_DEBUG_INST.darwin= $(patsubst %/,%,$(INST_VBOXDRV))
553 VBoxDrv_SDKS.win = ReorderCompilerIncs $(VBOX_WINDDK) $(VBOX_WINPSDK)INCS
554
555 VBoxDrv_DEFS := IN_RT_R0 IN_SUP_R0 SUPDRV_WITH_RELEASE_LOGGER VBOX_SVN_REV=$(VBOX_SVN_REV)
556 ifdef VBOX_WITH_DTRACE_R0DRV
557 VBoxDrv_DEFS += VBOX_WITH_DTRACE VBOX_WITH_DTRACE_R0DRV
558 endif
559 ifdef VBOX_WITHOUT_DEBUGGER_CHECKS
560 VBoxDrv_DEFS += VBOX_WITHOUT_DEBUGGER_CHECKS
561 endif
562 ifdef VBOX_PERMIT_VISUAL_STUDIO_PROFILING
563 VBoxDrv_DEFS += VBOX_PERMIT_VISUAL_STUDIO_PROFILING
564 endif
565 VBoxDrv_DEFS += VBOX_PERMIT_MORE
566 #VBoxDrv_DEFS.debug += DEBUG_DARWIN_GIP
567 VBoxDrv_DEFS.darwin := VBOX_WITH_HOST_VMX
568 VBoxDrv_DEFS.linux := \
569 KBUILD_MODNAME=KBUILD_STR\(vboxdrv\) KBUILD_BASENAME=KBUILD_STR\(vboxdrv\) MODULE CONFIG_VBOXDRV_AS_MISC
570 ifdef VBOX_LINUX_VERSION_2_4
571 VBoxDrv_DEFS.linux += EXPORT_SYMTAB
572 endif
573 ifdef VBOX_WITH_NETFLT
574 VBoxDrv_DEFS.solaris += VBOX_WITH_NETFLT
575 endif
576 ifdef VBOX_WITH_NATIVE_SOLARIS_LOADING
577 VBoxDrv_DEFS.solaris += VBOX_WITH_NATIVE_SOLARIS_LOADING
578 endif
579 ifdef VBOX_WITHOUT_NATIVE_R0_LOADER
580 VBoxDrv_DEFS.win += VBOX_WITHOUT_NATIVE_R0_LOADER
581 endif
582 ifdef VBOX_WITH_VISTA_NO_SP
583 VBoxDrv_DEFS.win += VBOX_WITH_VISTA_NO_SP
584 endif
585 ifdef VBOX_WITH_HARDENING
586 VBoxDrv_ASDEFS += VBOX_WITH_HARDENING
587 endif
588
589 VBoxDrv_INCS = . $(VBoxDrv_0_OUTDIR)
590 VBoxDrv_INCS.darwin = ./darwin
591 VBoxDrv_INCS.linux = $(PATH_ROOT)/src/VBox/Runtime/r0drv/linux
592
593 VBoxDrv_LIBS = $(PATH_STAGE_LIB)/RuntimeR0Drv$(VBOX_SUFF_LIB)
594 VBoxDrv_LIBS.linux.debug = $(VBoxDrv_LIBS) $(VBOX_GCC_LIBGCC)
595 VBoxDrv_LIBS.win = \
596 $(PATH_STAGE_LIB)/RuntimeR0Drv$(VBOX_SUFF_LIB) \
597 $(PATH_SDK_$(VBOX_WINDDK)_LIB)/ntoskrnl.lib \
598 $(PATH_SDK_$(VBOX_WINDDK)_LIB)/hal.lib
599
600 #VBoxDrv_LDFLAGS.darwin = -v -Wl,-whyload -Wl,-v -Wl,-whatsloaded
601 VBoxDrv_LDFLAGS.solaris += -N misc/ctf
602 ifdef VBOX_WITH_NATIVE_DTRACE
603 VBoxDrv_LDFLAGS.solaris += -N drv/dtrace
604 endif
605 VBoxDrv_LDFLAGS.win.x86 = -Entry:DriverEntry@8
606 VBoxDrv_LDFLAGS.win.amd64= -Entry:DriverEntry
607
608 VBoxDrv_SOURCES.darwin = \
609 darwin/SUPDrv-darwin.cpp
610 VBoxDrv_SOURCES.linux = \
611 linux/SUPDrv-linux.c
612 VBoxDrv_SOURCES.solaris = \
613 solaris/SUPDrv-solaris.c
614 VBoxDrv_SOURCES.win = \
615 win/SUPDrv-win.cpp \
616 win/SUPDrvA-win.asm \
617 win/VBoxDrv.rc
618 ifdef VBOX_WITH_HARDENING
619 VBoxDrv_SOURCES.win += \
620 win/SUPHardenedVerifyImage-win.cpp \
621 win/SUPHardenedVerifyProcess-win.cpp \
622 $(VBOX_SUP_WIN_CERTS_FILE)
623 endif
624 VBoxDrv_SOURCES = \
625 SUPDrv.d \
626 SUPDrv.c \
627 SUPDrvSem.c \
628 SUPDrvTracer.cpp
629 ifdef VBOX_WITH_NATIVE_DTRACE
630 VBoxDrv_SOURCES += \
631 SUPDrv-dtrace.cpp
632 SUPDrv-dtrace.cpp_DEFS.darwin += VBOX_PATH_MACOSX_DTRACE_H=\"$(VBOX_PATH_MACOSX_SDK)/usr/include/sys/dtrace.h\"
633 endif
634 ifn1of ($(KBUILD_TARGET), linux freebsd)
635 VBoxDrv_SOURCES += \
636 SUPDrvTracerA.asm
637 endif
638 ifndef VBOX_LINUX_VERSION_2_4
639 VBoxDrv_SOURCES.linux += \
640 linux/SUPDrv-linux.mod.c
641 endif
642
643endif
644
645
646
647if1of ($(KBUILD_TARGET), darwin)
648 # Files necessary to make a darwin kernel extension bundle.
649 INSTALLS.darwin += VBoxDrv.kext
650 VBoxDrv.kext_INST = $(INST_VBOXDRV)Contents/
651 VBoxDrv.kext_SOURCES = $(VBoxDrv.kext_0_OUTDIR)/Info.plist
652 VBoxDrv.kext_CLEAN = $(VBoxDrv.kext_0_OUTDIR)/Info.plist
653
654$$(VBoxDrv.kext_0_OUTDIR)/Info.plist: \
655 $(PATH_SUB_CURRENT)/darwin/Info.plist \
656 $(VBOX_VERSION_MK) | $$(dir $$@)
657 $(call MSG_GENERATE,VBoxDrv,$@,$<)
658 $(QUIET)$(RM) -f $@
659 $(QUIET)$(SED) \
660 -e 's/@VBOX_VERSION_STRING@/$(VBOX_VERSION_STRING)/g' \
661 -e 's/@VBOX_VERSION_MAJOR@/$(VBOX_VERSION_MAJOR)/g' \
662 -e 's/@VBOX_VERSION_MINOR@/$(VBOX_VERSION_MINOR)/g' \
663 -e 's/@VBOX_VERSION_BUILD@/$(VBOX_VERSION_BUILD)/g' \
664 -e 's/@VBOX_VENDOR@/$(VBOX_VENDOR)/g' \
665 -e 's/@VBOX_PRODUCT@/$(VBOX_PRODUCT)/g' \
666 -e 's/@VBOX_C_YEAR@/$(VBOX_C_YEAR)/g' \
667 --output $@ \
668 $<
669endif
670
671
672if1of ($(KBUILD_TARGET), darwin solaris)
673 # Common manual loader script.
674 INSTALLS += SUPDrvScripts
675 SUPDrvScripts_INST = $(INST_DIST)
676 SUPDrvScripts_EXEC_SOURCES = \
677 $(KBUILD_TARGET)/load.sh
678endif
679
680
681if1of ($(KBUILD_TARGET), linux)
682 #
683 # Targets for installing the linux sources.
684 #
685 vboxdrv-mod_INST = bin/src/vboxdrv/
686 vboxdrv-mod_SOURCES = \
687 $(subst $(DQUOTE),,$(FILES_VBOXDRV_NOBIN)) \
688 $(vboxdrv-mod_0_OUTDIR)/Makefile
689 vboxdrv-mod_EXEC_SOURCES = \
690 $(subst $(DQUOTE),,$(FILES_VBOXDRV_BIN)) \
691 $(PATH_ROOT)/src/VBox/HostDrivers/linux/do_Module.symvers
692 vboxdrv-mod_CLEAN = \
693 $(vboxdrv-mod_0_OUTDIR)/Makefile \
694 $(PATH_TARGET)/vboxdrv-mod-1.dep \
695
696 # Scripts needed for building the kernel modules
697 includedep $(PATH_TARGET)/vboxdrv-mod-1.dep
698 $$(vboxdrv-mod_0_OUTDIR)/Makefile: \
699 $(PATH_SUB_CURRENT)/linux/Makefile \
700 $$(if $$(eq $$(Support/linux/Makefile_VBOX_HARDENED),$$(VBOX_WITH_HARDENING)),,FORCE) \
701 | $$(dir $$@)
702 $(call MSG_TOOL,Creating,,$@)
703 ifndef VBOX_WITH_HARDENING
704 $(QUIET)$(SED) -e "s;-DVBOX_WITH_HARDENING;;g" --output $@ $<
705 else
706 $(QUIET)$(CP) -f $< $@
707 endif
708 %$(QUIET2)$(APPEND) -t '$(PATH_TARGET)/vboxdrv-mod-1.dep' 'Support/linux/Makefile_VBOX_HARDENED=$(VBOX_WITH_HARDENING)'
709endif # real linux
710
711
712ifeq ($(KBUILD_TARGET), win)
713 INSTALLS.win += VBoxDrv-inf
714 VBoxDrv-inf_INST = $(INST_BIN)
715 VBoxDrv-inf_MODE = a+r,u+w
716 VBoxDrv-inf_SOURCES = \
717 $(PATH_TARGET)/VBoxDrvCat.dir/VBoxDrv.inf
718 VBoxDrv-inf_CLEAN = $(VBoxDrv-inf_SOURCES)
719 VBoxDrv-inf_BLDDIRS = $(PATH_TARGET)/VBoxDrvCat.dir
720
721 $(PATH_TARGET)/VBoxDrvCat.dir/VBoxDrv.inf: $(PATH_SUB_CURRENT)/win/VBoxDrv.inf $(MAKEFILE_CURRENT) | $$(dir $$@)
722 $(call MSG_GENERATE,VBoxDrv-inf,$@,$<)
723 $(call VBOX_EDIT_INF_FN,$<,$@)
724
725 ifdef VBOX_SIGNING_MODE
726 VBoxDrv-inf_SOURCES += \
727 $(PATH_TARGET)/VBoxDrvCat.dir/VBoxDrv.sys \
728 $(PATH_TARGET)/VBoxDrvCat.dir/VBoxDrv.cat
729
730 $(PATH_TARGET)/VBoxDrvCat.dir/VBoxDrv.sys: $$(VBoxDrv_1_TARGET) | $$(dir $$@)
731 $(INSTALL) -m 644 $< $(@D)
732
733 $(PATH_TARGET)/VBoxDrvCat.dir/VBoxDrv.cat: \
734 $(PATH_TARGET)/VBoxDrvCat.dir/VBoxDrv.inf \
735 $(PATH_TARGET)/VBoxDrvCat.dir/VBoxDrv.sys
736 $(call MSG_TOOL,Inf2Cat,VBoxDrv-inf,$@,$<)
737 $(call VBOX_MAKE_CAT_FN, $(@D),$@)
738 endif # signing
739endif # win
740
741
742endif # !VBOX_ONLY_DOCS && !VBOX_ONLY_EXTPACKS && !VBOX_ONLY_VALIDATIONKIT
743include $(FILE_KBUILD_SUB_FOOTER)
744
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette