VirtualBox

source: vbox/trunk/src/VBox/HostDrivers/linux/export_modules.sh@ 85523

Last change on this file since 85523 was 85386, checked in by vboxsync, 4 years ago

HostDrivers/export_modules.sh: Corrected VBOX_WITH_PCI_PASSTHROUGH extraction from Config.kmk and tests on the result.

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
File size: 9.5 KB
Line 
1#!/bin/sh
2# $Id$
3## @file
4# Create a tar archive containing the sources of the vboxdrv kernel module.
5#
6
7#
8# Copyright (C) 2007-2020 Oracle Corporation
9#
10# This file is part of VirtualBox Open Source Edition (OSE), as
11# available from http://www.virtualbox.org. This file is free software;
12# you can redistribute it and/or modify it under the terms of the GNU
13# General Public License (GPL) as published by the Free Software
14# Foundation, in version 2 as it comes in the "COPYING" file of the
15# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17#
18# The contents of this file may alternatively be used under the terms
19# of the Common Development and Distribution License Version 1.0
20# (CDDL) only, as it comes in the "COPYING.CDDL" file of the
21# VirtualBox OSE distribution, in which case the provisions of the
22# CDDL are applicable instead of those of the GPL.
23#
24# You may elect to license modified versions of this file under the
25# terms and conditions of either the GPL or the CDDL or both.
26#
27
28# The below is GNU-specific. See VBox.sh for the longer Solaris/OS X version.
29TARGET=`readlink -e -- "${0}"` || exit 1
30MY_DIR="${TARGET%/[!/]*}"
31
32# What this script does:
33usage_msg="\
34Usage: `basename ${0}` --file <path>|--folder <path> [--without-hardening]
35
36Exports the VirtualBox host kernel modules to the tar.gz archive or folder in \
37<path>, optionally adjusting the Make files to build them without hardening.
38
39Examples:
40 `basename ${0}` --file /tmp/vboxhost.tar.gz
41 `basename ${0}` --folder /tmp/tmpdir --without-hardening"
42
43usage()
44{
45 case "${1}" in
46 0)
47 echo "${usage_msg}" | fold -s -w80 ;;
48 *)
49 echo "${usage_msg}" | fold -s -w80 >&2 ;;
50 esac
51 exit "${1}"
52}
53
54fail()
55{
56 echo "${1}" | fold -s -w80 >&2
57 exit 1
58}
59
60unset FILE FOLDER
61VBOX_WITH_HARDENING=1
62while test -n "${1}"; do
63 case "${1}" in
64 --file)
65 FILE="${2}"
66 shift 2 ;;
67 --folder)
68 FOLDER="${2}"
69 shift 2 ;;
70 --without-hardening)
71 unset VBOX_WITH_HARDENING
72 shift ;;
73 -h|--help)
74 usage 0 ;;
75 *)
76 echo "Unknown parameter ${1}" >&2
77 usage 1 ;;
78 esac
79done
80test -z "$FILE" || test -z "$FOLDER" ||
81 fail "Only one of --file and --folder may be used"
82test -n "$FILE" || test -n "$FOLDER" || usage 1
83
84if test -n "$FOLDER"; then
85 PATH_TMP="$FOLDER"
86else
87 PATH_TMP="`cd \`dirname $FILE\`; pwd`/.vbox_modules"
88 FILE_OUT="`cd \`dirname $FILE\`; pwd`/`basename $FILE`"
89fi
90PATH_OUT=$PATH_TMP
91PATH_ROOT="`cd ${MY_DIR}/../../../..; pwd`"
92PATH_LOG=/tmp/vbox-export-host.log
93PATH_LINUX="$PATH_ROOT/src/VBox/HostDrivers/linux"
94PATH_VBOXDRV="$PATH_ROOT/src/VBox/HostDrivers/Support"
95PATH_VBOXNET="$PATH_ROOT/src/VBox/HostDrivers/VBoxNetFlt"
96PATH_VBOXADP="$PATH_ROOT/src/VBox/HostDrivers/VBoxNetAdp"
97PATH_VBOXPCI="$PATH_ROOT/src/VBox/HostDrivers/VBoxPci"
98
99VBOX_VERSION_MAJOR=`sed -e "s/^ *VBOX_VERSION_MAJOR *= \+\([0-9]\+\)/\1/;t;d" $PATH_ROOT/Version.kmk`
100VBOX_VERSION_MINOR=`sed -e "s/^ *VBOX_VERSION_MINOR *= \+\([0-9]\+\)/\1/;t;d" $PATH_ROOT/Version.kmk`
101VBOX_VERSION_BUILD=`sed -e "s/^ *VBOX_VERSION_BUILD *= \+\([0-9]\+\)/\1/;t;d" $PATH_ROOT/Version.kmk`
102VBOX_VERSION_STRING=$VBOX_VERSION_MAJOR.$VBOX_VERSION_MINOR.$VBOX_VERSION_BUILD
103VBOX_VERSION_BUILD=`sed -e "s/^ *VBOX_VERSION_BUILD *= \+\([0-9]\+\)/\1/;t;d" $PATH_ROOT/Version.kmk`
104VBOX_SVN_CONFIG_REV=`sed -e 's/^ *VBOX_SVN_REV_CONFIG_FALLBACK *:= \+\$(patsubst *%:,, *\$Rev: *\([0-9]\+\) *\$ *) */\1/;t;d' $PATH_ROOT/Config.kmk`
105VBOX_SVN_VERSION_REV=`sed -e 's/^ *VBOX_SVN_REV_VERSION_FALLBACK *:= \+\$(patsubst *%:,, *\$Rev: *\([0-9]\+\) *\$ *) */\1/;t;d' $PATH_ROOT/Version.kmk`
106if [ "$VBOX_SVN_CONFIG_REV" -gt "$VBOX_SVN_VERSION_REV" ]; then
107 VBOX_SVN_REV=$VBOX_SVN_CONFIG_REV
108else
109 VBOX_SVN_REV=$VBOX_SVN_VERSION_REV
110fi
111VBOX_VENDOR=`sed -e 's/^ *VBOX_VENDOR *= \+\(.\+\)/\1/;t;d' $PATH_ROOT/Config.kmk`
112VBOX_VENDOR_SHORT=`sed -e 's/^ *VBOX_VENDOR_SHORT *= \+\(.\+\)/\1/;t;d' $PATH_ROOT/Config.kmk`
113VBOX_PRODUCT=`sed -e 's/^ *VBOX_PRODUCT *= \+\(.\+\)/\1/;t;d' $PATH_ROOT/Config.kmk`
114VBOX_C_YEAR=`date +%Y`
115VBOX_WITH_PCI_PASSTHROUGH=`sed -e '/^ *VBOX_WITH_PCI_PASSTHROUGH *[:]\?= */!d' -e 's/ *#.*$//' -e 's/^.*= *//' $PATH_ROOT/Config.kmk`
116
117. $PATH_VBOXDRV/linux/files_vboxdrv
118. $PATH_VBOXNET/linux/files_vboxnetflt
119. $PATH_VBOXADP/linux/files_vboxnetadp
120if [ "${VBOX_WITH_PCI_PASSTHROUGH}" = "1" ]; then
121 . $PATH_VBOXPCI/linux/files_vboxpci
122fi
123
124# Temporary path for creating the modules, will be removed later
125rm -rf "$PATH_TMP"
126mkdir $PATH_TMP || exit 1
127
128# Create auto-generated version file, needed by all modules
129echo "#ifndef ___version_generated_h___" > $PATH_TMP/version-generated.h
130echo "#define ___version_generated_h___" >> $PATH_TMP/version-generated.h
131echo "" >> $PATH_TMP/version-generated.h
132echo "#define VBOX_VERSION_MAJOR $VBOX_VERSION_MAJOR" >> $PATH_TMP/version-generated.h
133echo "#define VBOX_VERSION_MINOR $VBOX_VERSION_MINOR" >> $PATH_TMP/version-generated.h
134echo "#define VBOX_VERSION_BUILD $VBOX_VERSION_BUILD" >> $PATH_TMP/version-generated.h
135echo "#define VBOX_VERSION_STRING_RAW \"$VBOX_VERSION_MAJOR.$VBOX_VERSION_MINOR.$VBOX_VERSION_BUILD\"" >> $PATH_TMP/version-generated.h
136echo "#define VBOX_VERSION_STRING \"$VBOX_VERSION_STRING\"" >> $PATH_TMP/version-generated.h
137echo "#define VBOX_API_VERSION_STRING \"${VBOX_VERSION_MAJOR}_${VBOX_VERSION_MINOR}\"" >> $PATH_TMP/version-generated.h
138echo "#define VBOX_PRIVATE_BUILD_DESC \"Private build with export_modules\"" >> $PATH_TMP/version-generated.h
139echo "" >> $PATH_TMP/version-generated.h
140echo "#endif" >> $PATH_TMP/version-generated.h
141
142# Create auto-generated revision file, needed by all modules
143echo "#ifndef __revision_generated_h__" > $PATH_TMP/revision-generated.h
144echo "#define __revision_generated_h__" >> $PATH_TMP/revision-generated.h
145echo "" >> $PATH_TMP/revision-generated.h
146echo "#define VBOX_SVN_REV $VBOX_SVN_REV" >> $PATH_TMP/revision-generated.h
147echo "" >> $PATH_TMP/revision-generated.h
148echo "#endif" >> $PATH_TMP/revision-generated.h
149
150# Create auto-generated product file, needed by all modules
151echo "#ifndef ___product_generated_h___" > $PATH_TMP/product-generated.h
152echo "#define ___product_generated_h___" >> $PATH_TMP/product-generated.h
153echo "" >> $PATH_TMP/product-generated.h
154echo "#define VBOX_VENDOR \"$VBOX_VENDOR\"" >> $PATH_TMP/product-generated.h
155echo "#define VBOX_VENDOR_SHORT \"$VBOX_VENDOR_SHORT\"" >> $PATH_TMP/product-generated.h
156echo "" >> $PATH_TMP/product-generated.h
157echo "#define VBOX_PRODUCT \"$VBOX_PRODUCT\"" >> $PATH_TMP/product-generated.h
158echo "#define VBOX_C_YEAR \"$VBOX_C_YEAR\"" >> $PATH_TMP/product-generated.h
159echo "" >> $PATH_TMP/product-generated.h
160echo "#endif" >> $PATH_TMP/product-generated.h
161
162# vboxdrv (VirtualBox host kernel module)
163mkdir $PATH_TMP/vboxdrv || exit 1
164for f in $FILES_VBOXDRV_NOBIN; do
165 install -D -m 0644 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxdrv/`echo $f|cut -d'>' -f2`"
166done
167for f in $FILES_VBOXDRV_BIN; do
168 install -D -m 0755 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxdrv/`echo $f|cut -d'>' -f2`"
169done
170if [ -n "$VBOX_WITH_HARDENING" ]; then
171 sed -e "s;VBOX_WITH_EFLAGS_AC_SET_IN_VBOXDRV;;g" \
172 -e "s;IPRT_WITH_EFLAGS_AC_PRESERVING;;g" \
173 < $PATH_VBOXDRV/linux/Makefile > $PATH_TMP/vboxdrv/Makefile
174else
175 sed -e "s;VBOX_WITH_HARDENING;;g" \
176 -e "s;VBOX_WITH_EFLAGS_AC_SET_IN_VBOXDRV;;g" \
177 -e "s;IPRT_WITH_EFLAGS_AC_PRESERVING;;g" \
178 < $PATH_VBOXDRV/linux/Makefile > $PATH_TMP/vboxdrv/Makefile
179fi
180
181# vboxnetflt (VirtualBox netfilter kernel module)
182mkdir $PATH_TMP/vboxnetflt || exit 1
183for f in $VBOX_VBOXNETFLT_SOURCES; do
184 install -D -m 0644 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxnetflt/`echo $f|cut -d'>' -f2`"
185done
186if [ -n "$VBOX_WITH_HARDENING" ]; then
187 cat $PATH_VBOXNET/linux/Makefile > $PATH_TMP/vboxnetflt/Makefile
188else
189 sed -e "s;VBOX_WITH_HARDENING;;g" < $PATH_VBOXNET/linux/Makefile > $PATH_TMP/vboxnetflt/Makefile
190fi
191
192# vboxnetadp (VirtualBox network adapter kernel module)
193mkdir $PATH_TMP/vboxnetadp || exit 1
194for f in $VBOX_VBOXNETADP_SOURCES; do
195 install -D -m 0644 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxnetadp/`echo $f|cut -d'>' -f2`"
196done
197if [ -n "$VBOX_WITH_HARDENING" ]; then
198 cat $PATH_VBOXADP/linux/Makefile > $PATH_TMP/vboxnetadp/Makefile
199else
200 sed -e "s;VBOX_WITH_HARDENING;;g" < $PATH_VBOXADP/linux/Makefile > $PATH_TMP/vboxnetadp/Makefile
201fi
202
203# vboxpci (VirtualBox host PCI access kernel module)
204if [ "${VBOX_WITH_PCI_PASSTHROUGH}" = "1" ]; then
205 mkdir $PATH_TMP/vboxpci || exit 1
206 for f in $VBOX_VBOXPCI_SOURCES; do
207 install -D -m 0644 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxpci/`echo $f|cut -d'>' -f2`"
208 done
209 if [ -n "$VBOX_WITH_HARDENING" ]; then
210 cat $PATH_VBOXPCI/linux/Makefile > $PATH_TMP/vboxpci/Makefile
211 else
212 sed -e "s;VBOX_WITH_HARDENING;;g" < $PATH_VBOXPCI/linux/Makefile > $PATH_TMP/vboxpci/Makefile
213 fi
214fi
215
216install -D -m 0644 $PATH_LINUX/Makefile $PATH_TMP/Makefile
217install -D -m 0755 $PATH_LINUX/build_in_tmp $PATH_TMP/build_in_tmp
218
219# Only temporary, omit from archive
220rm $PATH_TMP/version-generated.h
221rm $PATH_TMP/revision-generated.h
222rm $PATH_TMP/product-generated.h
223
224# If we are exporting to a folder then stop now.
225test -z "$FOLDER" || exit 0
226
227# Do a test build
228echo Doing a test build, this may take a while.
229make -C $PATH_TMP > $PATH_LOG 2>&1 &&
230 make -C $PATH_TMP clean >> $PATH_LOG 2>&1 ||
231 echo "Warning: test build failed. Please check $PATH_LOG"
232
233# Create the archive
234tar -czf $FILE_OUT -C $PATH_TMP . || exit 1
235
236# Remove the temporary directory
237rm -r $PATH_TMP
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