VirtualBox

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

Last change on this file since 77807 was 76553, checked in by vboxsync, 6 years ago

scm --update-copyright-year

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
File size: 9.0 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-2019 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_SVN_REV=`sed -e 's/^ *VBOX_SVN_REV_FALLBACK *:= \+\$(patsubst *%:,, *\$Rev: *\([0-9]\+\) *\$ *) */\1/;t;d' $PATH_ROOT/Config.kmk` VBOX_VENDOR=`sed -e 's/^ *VBOX_VENDOR *= \+\(.\+\)/\1/;t;d' $PATH_ROOT/Config.kmk` VBOX_VENDOR_SHORT=`sed -e 's/^ *VBOX_VENDOR_SHORT *= \+\(.\+\)/\1/;t;d' $PATH_ROOT/Config.kmk` VBOX_PRODUCT=`sed -e 's/^ *VBOX_PRODUCT *= \+\(.\+\)/\1/;t;d' $PATH_ROOT/Config.kmk` VBOX_C_YEAR=`date +%Y`
104
105. $PATH_VBOXDRV/linux/files_vboxdrv
106. $PATH_VBOXNET/linux/files_vboxnetflt
107. $PATH_VBOXADP/linux/files_vboxnetadp
108. $PATH_VBOXPCI/linux/files_vboxpci
109
110# Temporary path for creating the modules, will be removed later
111rm -rf "$PATH_TMP"
112mkdir $PATH_TMP || exit 1
113
114# Create auto-generated version file, needed by all modules
115echo "#ifndef ___version_generated_h___" > $PATH_TMP/version-generated.h
116echo "#define ___version_generated_h___" >> $PATH_TMP/version-generated.h
117echo "" >> $PATH_TMP/version-generated.h
118echo "#define VBOX_VERSION_MAJOR $VBOX_VERSION_MAJOR" >> $PATH_TMP/version-generated.h
119echo "#define VBOX_VERSION_MINOR $VBOX_VERSION_MINOR" >> $PATH_TMP/version-generated.h
120echo "#define VBOX_VERSION_BUILD $VBOX_VERSION_BUILD" >> $PATH_TMP/version-generated.h
121echo "#define VBOX_VERSION_STRING_RAW \"$VBOX_VERSION_MAJOR.$VBOX_VERSION_MINOR.$VBOX_VERSION_BUILD\"" >> $PATH_TMP/version-generated.h
122echo "#define VBOX_VERSION_STRING \"$VBOX_VERSION_STRING\"" >> $PATH_TMP/version-generated.h
123echo "#define VBOX_API_VERSION_STRING \"${VBOX_VERSION_MAJOR}_${VBOX_VERSION_MINOR}\"" >> $PATH_TMP/version-generated.h
124echo "#define VBOX_PRIVATE_BUILD_DESC \"Private build with export_modules\"" >> $PATH_TMP/version-generated.h
125echo "" >> $PATH_TMP/version-generated.h
126echo "#endif" >> $PATH_TMP/version-generated.h
127
128# Create auto-generated revision file, needed by all modules
129echo "#ifndef __revision_generated_h__" > $PATH_TMP/revision-generated.h
130echo "#define __revision_generated_h__" >> $PATH_TMP/revision-generated.h
131echo "" >> $PATH_TMP/revision-generated.h
132echo "#define VBOX_SVN_REV $VBOX_SVN_REV" >> $PATH_TMP/revision-generated.h
133echo "" >> $PATH_TMP/revision-generated.h
134echo "#endif" >> $PATH_TMP/revision-generated.h
135
136# Create auto-generated product file, needed by all modules
137echo "#ifndef ___product_generated_h___" > $PATH_TMP/product-generated.h
138echo "#define ___product_generated_h___" >> $PATH_TMP/product-generated.h
139echo "" >> $PATH_TMP/product-generated.h
140echo "#define VBOX_VENDOR \"$VBOX_VENDOR\"" >> $PATH_TMP/product-generated.h
141echo "#define VBOX_VENDOR_SHORT \"$VBOX_VENDOR_SHORT\"" >> $PATH_TMP/product-generated.h
142echo "" >> $PATH_TMP/product-generated.h
143echo "#define VBOX_PRODUCT \"$VBOX_PRODUCT\"" >> $PATH_TMP/product-generated.h
144echo "#define VBOX_C_YEAR \"$VBOX_C_YEAR\"" >> $PATH_TMP/product-generated.h
145echo "" >> $PATH_TMP/product-generated.h
146echo "#endif" >> $PATH_TMP/product-generated.h
147
148# vboxdrv (VirtualBox host kernel module)
149mkdir $PATH_TMP/vboxdrv || exit 1
150for f in $FILES_VBOXDRV_NOBIN; do
151 install -D -m 0644 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxdrv/`echo $f|cut -d'>' -f2`"
152done
153for f in $FILES_VBOXDRV_BIN; do
154 install -D -m 0755 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxdrv/`echo $f|cut -d'>' -f2`"
155done
156if [ -n "$VBOX_WITH_HARDENING" ]; then
157 sed -e "s;-DVBOX_WITH_EFLAGS_AC_SET_IN_VBOXDRV;;g" \
158 -e "s;-DIPRT_WITH_EFLAGS_AC_PRESERVING;;g" \
159 < $PATH_VBOXDRV/linux/Makefile > $PATH_TMP/vboxdrv/Makefile
160else
161 sed -e "s;-DVBOX_WITH_HARDENING;;g" \
162 -e "s;-DVBOX_WITH_EFLAGS_AC_SET_IN_VBOXDRV;;g" \
163 -e "s;-DIPRT_WITH_EFLAGS_AC_PRESERVING;;g" \
164 < $PATH_VBOXDRV/linux/Makefile > $PATH_TMP/vboxdrv/Makefile
165fi
166
167# vboxnetflt (VirtualBox netfilter kernel module)
168mkdir $PATH_TMP/vboxnetflt || exit 1
169for f in $VBOX_VBOXNETFLT_SOURCES; do
170 install -D -m 0644 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxnetflt/`echo $f|cut -d'>' -f2`"
171done
172if [ -n "$VBOX_WITH_HARDENING" ]; then
173 cat $PATH_VBOXNET/linux/Makefile > $PATH_TMP/vboxnetflt/Makefile
174else
175 sed -e "s;-DVBOX_WITH_HARDENING;;g" < $PATH_VBOXNET/linux/Makefile > $PATH_TMP/vboxnetflt/Makefile
176fi
177
178# vboxnetadp (VirtualBox network adapter kernel module)
179mkdir $PATH_TMP/vboxnetadp || exit 1
180for f in $VBOX_VBOXNETADP_SOURCES; do
181 install -D -m 0644 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxnetadp/`echo $f|cut -d'>' -f2`"
182done
183if [ -n "$VBOX_WITH_HARDENING" ]; then
184 cat $PATH_VBOXADP/linux/Makefile > $PATH_TMP/vboxnetadp/Makefile
185else
186 sed -e "s;-DVBOX_WITH_HARDENING;;g" < $PATH_VBOXADP/linux/Makefile > $PATH_TMP/vboxnetadp/Makefile
187fi
188
189# vboxpci (VirtualBox host PCI access kernel module)
190mkdir $PATH_TMP/vboxpci || exit 1
191for f in $VBOX_VBOXPCI_SOURCES; do
192 install -D -m 0644 `echo $f|cut -d'=' -f1` "$PATH_TMP/vboxpci/`echo $f|cut -d'>' -f2`"
193done
194if [ -n "$VBOX_WITH_HARDENING" ]; then
195 cat $PATH_VBOXPCI/linux/Makefile > $PATH_TMP/vboxpci/Makefile
196else
197 sed -e "s;-DVBOX_WITH_HARDENING;;g" < $PATH_VBOXPCI/linux/Makefile > $PATH_TMP/vboxpci/Makefile
198fi
199
200install -D -m 0644 $PATH_LINUX/Makefile $PATH_TMP/Makefile
201install -D -m 0755 $PATH_LINUX/build_in_tmp $PATH_TMP/build_in_tmp
202
203# Only temporary, omit from archive
204rm $PATH_TMP/version-generated.h
205rm $PATH_TMP/revision-generated.h
206rm $PATH_TMP/product-generated.h
207
208# If we are exporting to a folder then stop now.
209test -z "$FOLDER" || exit 0
210
211# Do a test build
212echo Doing a test build, this may take a while.
213make -C $PATH_TMP > $PATH_LOG 2>&1 &&
214 make -C $PATH_TMP clean >> $PATH_LOG 2>&1 ||
215 echo "Warning: test build failed. Please check $PATH_LOG"
216
217# Create the archive
218tar -czf $FILE_OUT -C $PATH_TMP . || exit 1
219
220# Remove the temporary directory
221rm -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