1 | #!/bin/sh
|
---|
2 | # $Id: makepackage.sh 69500 2017-10-28 15:14:05Z vboxsync $
|
---|
3 | ## @file
|
---|
4 | # VirtualBox package creation script, Solaris hosts.
|
---|
5 | #
|
---|
6 |
|
---|
7 | #
|
---|
8 | # Copyright (C) 2007-2017 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 |
|
---|
19 | #
|
---|
20 | # Usage:
|
---|
21 | # makepackage.sh [--hardened] $(PATH_TARGET)/install packagename {$(KBUILD_TARGET_ARCH)|neutral} $(VBOX_SVN_REV) [VBIPackageName]
|
---|
22 |
|
---|
23 |
|
---|
24 | # Parse options.
|
---|
25 | HARDENED=""
|
---|
26 | while test $# -ge 1;
|
---|
27 | do
|
---|
28 | case "$1" in
|
---|
29 | --hardened)
|
---|
30 | HARDENED=1
|
---|
31 | ;;
|
---|
32 | *)
|
---|
33 | break
|
---|
34 | ;;
|
---|
35 | esac
|
---|
36 | shift
|
---|
37 | done
|
---|
38 |
|
---|
39 | if [ -z "$4" ]; then
|
---|
40 | echo "Usage: $0 installdir packagename x86|amd64 svnrev [VBIPackage]"
|
---|
41 | echo "-- packagename must not have any extension (e.g. VirtualBox-SunOS-amd64-r28899)"
|
---|
42 | exit 1
|
---|
43 | fi
|
---|
44 |
|
---|
45 | PKG_BASE_DIR=$1
|
---|
46 | VBOX_INSTALLED_DIR=$1/opt/VirtualBox
|
---|
47 | VBOX_PKGFILE=$2.pkg
|
---|
48 | VBOX_ARCHIVE=$2.tar.gz
|
---|
49 | # VBOX_PKG_ARCH is currently unused.
|
---|
50 | VBOX_PKG_ARCH=$3
|
---|
51 | VBOX_SVN_REV=$4
|
---|
52 |
|
---|
53 | VBOX_PKGNAME=SUNWvbox
|
---|
54 | VBOX_GGREP=/usr/sfw/bin/ggrep
|
---|
55 | VBOX_AWK=/usr/bin/awk
|
---|
56 | #VBOX_GTAR=/usr/sfw/bin/gtar
|
---|
57 |
|
---|
58 | # check for GNU grep we use which might not ship with all Solaris
|
---|
59 | if test ! -f "$VBOX_GGREP" && test ! -h "$VBOX_GGREP"; then
|
---|
60 | echo "## GNU grep not found in $VBOX_GGREP."
|
---|
61 | exit 1
|
---|
62 | fi
|
---|
63 |
|
---|
64 | # check for GNU tar we use which might not ship with all Solaris
|
---|
65 | #if test ! -f "$VBOX_GTAR" && test ! -h "$VBOX_GTAR"; then
|
---|
66 | # echo "## GNU tar not found in $VBOX_GTAR."
|
---|
67 | # exit 1
|
---|
68 | #fi
|
---|
69 |
|
---|
70 | # bail out on non-zero exit status
|
---|
71 | set -e
|
---|
72 |
|
---|
73 | # Fixup filelist using awk, the parameters must be in awk syntax
|
---|
74 | # params: filename condition action
|
---|
75 | filelist_fixup()
|
---|
76 | {
|
---|
77 | "$VBOX_AWK" 'NF == 6 && '"$2"' { '"$3"' } { print }' "$1" > "tmp-$1"
|
---|
78 | mv -f "tmp-$1" "$1"
|
---|
79 | }
|
---|
80 |
|
---|
81 | dirlist_fixup()
|
---|
82 | {
|
---|
83 | "$VBOX_AWK" 'NF == 6 && $1 == "d" && '"$2"' { '"$3"' } { print }' "$1" > "tmp-$1"
|
---|
84 | mv -f "tmp-$1" "$1"
|
---|
85 | }
|
---|
86 |
|
---|
87 | hardlink_fixup()
|
---|
88 | {
|
---|
89 | "$VBOX_AWK" 'NF == 3 && $1=="l" && '"$2"' { '"$3"' } { print }' "$1" > "tmp-$1"
|
---|
90 | mv -f "tmp-$1" "$1"
|
---|
91 | }
|
---|
92 |
|
---|
93 | symlink_fixup()
|
---|
94 | {
|
---|
95 | "$VBOX_AWK" 'NF == 3 && $1=="s" && '"$2"' { '"$3"' } { print }' "$1" > "tmp-$1"
|
---|
96 | mv -f "tmp-$1" "$1"
|
---|
97 | }
|
---|
98 |
|
---|
99 | create_hardlink()
|
---|
100 | {
|
---|
101 | if test -f "$VBOX_INSTALLED_DIR/amd64/$1" || test -f "$VBOX_INSTALLED_DIR/i386/$1"; then
|
---|
102 | ln -f ./VBoxISAExec "$VBOX_INSTALLED_DIR/$1"
|
---|
103 | fi
|
---|
104 | }
|
---|
105 |
|
---|
106 | # Prepare file list
|
---|
107 | cd "$PKG_BASE_DIR"
|
---|
108 | echo 'i pkginfo=./vbox.pkginfo' > prototype
|
---|
109 | echo 'i checkinstall=./checkinstall.sh' >> prototype
|
---|
110 | echo 'i postinstall=./postinstall.sh' >> prototype
|
---|
111 | echo 'i preremove=./preremove.sh' >> prototype
|
---|
112 | echo 'i space=./vbox.space' >> prototype
|
---|
113 | if test -f "./vbox.copyright"; then
|
---|
114 | echo 'i copyright=./vbox.copyright' >> prototype
|
---|
115 | fi
|
---|
116 |
|
---|
117 | # Create relative hardlinks for executables to either the 32-bit or 64-bit subfolders
|
---|
118 | cd "$VBOX_INSTALLED_DIR"
|
---|
119 | create_hardlink VBoxManage
|
---|
120 | create_hardlink VBoxSDL
|
---|
121 | create_hardlink VBoxAutostart
|
---|
122 | create_hardlink vboxwebsrv
|
---|
123 | create_hardlink VBoxZoneAccess
|
---|
124 | create_hardlink VBoxSVC
|
---|
125 | create_hardlink VBoxBugReport
|
---|
126 | create_hardlink VBoxBalloonCtrl
|
---|
127 | create_hardlink VBoxTestOGL
|
---|
128 | create_hardlink VirtualBox
|
---|
129 | create_hardlink vbox-img
|
---|
130 | create_hardlink VBoxHeadless
|
---|
131 |
|
---|
132 | # Exclude directories to not cause install-time conflicts with existing system directories
|
---|
133 | cd "$PKG_BASE_DIR"
|
---|
134 | find . ! -type d | $VBOX_GGREP -v -E 'prototype|makepackage.sh|vbox.pkginfo|postinstall.sh|checkinstall.sh|preremove.sh|ReadMe.txt|vbox.space|vbox.depend|vbox.copyright|VirtualBoxKern' | pkgproto >> prototype
|
---|
135 |
|
---|
136 | # Include opt/VirtualBox and subdirectories as we want uninstall to clean up directory structure.
|
---|
137 | # Include var/svc for manifest class action script does not create them.
|
---|
138 | find . -type d | $VBOX_GGREP -E 'opt/VirtualBox|var/svc/manifest/application/virtualbox' | pkgproto >> prototype
|
---|
139 |
|
---|
140 | # fix up file permissions (owner/group)
|
---|
141 | # don't grok for class-specific files (like sed, if any)
|
---|
142 | filelist_fixup prototype '$2 == "none"' '$5 = "root"; $6 = "bin"'
|
---|
143 |
|
---|
144 | # don't include autoresponse and LICENSE from the base folder into / of
|
---|
145 | # the package, it goes into .tar.gz and another one already exists
|
---|
146 | # in /opt/VirtualBox
|
---|
147 | sed '/f none autoresponse/d' prototype > prototype2
|
---|
148 | mv -f prototype2 prototype
|
---|
149 | sed '/f none LICENSE/d' prototype > prototype2
|
---|
150 | mv -f prototype2 prototype
|
---|
151 |
|
---|
152 | # HostDriver vboxdrv
|
---|
153 | filelist_fixup prototype '$3 == "platform/i86pc/kernel/drv/vboxdrv"' '$6 = "sys"'
|
---|
154 | filelist_fixup prototype '$3 == "platform/i86pc/kernel/drv/amd64/vboxdrv"' '$6 = "sys"'
|
---|
155 |
|
---|
156 | # NetFilter vboxflt
|
---|
157 | filelist_fixup prototype '$3 == "platform/i86pc/kernel/drv/vboxflt"' '$6 = "sys"'
|
---|
158 | filelist_fixup prototype '$3 == "platform/i86pc/kernel/drv/amd64/vboxflt"' '$6 = "sys"'
|
---|
159 |
|
---|
160 | # NetFilter vboxbow
|
---|
161 | filelist_fixup prototype '$3 == "platform/i86pc/kernel/drv/vboxbow"' '$6 = "sys"'
|
---|
162 | filelist_fixup prototype '$3 == "platform/i86pc/kernel/drv/amd64/vboxbow"' '$6 = "sys"'
|
---|
163 |
|
---|
164 | # NetAdapter vboxnet
|
---|
165 | filelist_fixup prototype '$3 == "platform/i86pc/kernel/drv/vboxnet"' '$6 = "sys"'
|
---|
166 | filelist_fixup prototype '$3 == "platform/i86pc/kernel/drv/amd64/vboxnet"' '$6 = "sys"'
|
---|
167 |
|
---|
168 | # USBMonitor vboxusbmon
|
---|
169 | filelist_fixup prototype '$3 == "platform/i86pc/kernel/drv/vboxusbmon"' '$6 = "sys"'
|
---|
170 | filelist_fixup prototype '$3 == "platform/i86pc/kernel/drv/amd64/vboxusbmon"' '$6 = "sys"'
|
---|
171 |
|
---|
172 | # USB Client vboxusb
|
---|
173 | filelist_fixup prototype '$3 == "platform/i86pc/kernel/drv/vboxusb"' '$6 = "sys"'
|
---|
174 | filelist_fixup prototype '$3 == "platform/i86pc/kernel/drv/amd64/vboxusb"' '$6 = "sys"'
|
---|
175 |
|
---|
176 | # Manifest class action scripts
|
---|
177 | filelist_fixup prototype '$3 == "var/svc/manifest/application/virtualbox/virtualbox-webservice.xml"' '$2 = "manifest";$6 = "sys"'
|
---|
178 | filelist_fixup prototype '$3 == "var/svc/manifest/application/virtualbox/virtualbox-balloonctrl.xml"' '$2 = "manifest";$6 = "sys"'
|
---|
179 | filelist_fixup prototype '$3 == "var/svc/manifest/application/virtualbox/virtualbox-zoneaccess.xml"' '$2 = "manifest";$6 = "sys"'
|
---|
180 |
|
---|
181 | # Use 'root' as group so as to match attributes with the previous installation and prevent a conflict. Otherwise pkgadd bails out thinking
|
---|
182 | # we're violating directory attributes of another (non existing) package
|
---|
183 | dirlist_fixup prototype '$3 == "var/svc/manifest/application/virtualbox"' '$6 = "root"'
|
---|
184 |
|
---|
185 | # Hardening requires some executables to be marked setuid.
|
---|
186 | if test -n "$HARDENED"; then
|
---|
187 | $VBOX_AWK 'NF == 6 \
|
---|
188 | && ( $3 == "opt/VirtualBox/amd64/VirtualBox" \
|
---|
189 | || $3 == "opt/VirtualBox/amd64/VirtualBox3" \
|
---|
190 | || $3 == "opt/VirtualBox/amd64/VBoxHeadless" \
|
---|
191 | || $3 == "opt/VirtualBox/amd64/VBoxSDL" \
|
---|
192 | || $3 == "opt/VirtualBox/i386/VirtualBox" \
|
---|
193 | || $3 == "opt/VirtualBox/i386/VirtualBox3" \
|
---|
194 | || $3 == "opt/VirtualBox/i386/VBoxHeadless" \
|
---|
195 | || $3 == "opt/VirtualBox/i386/VBoxSDL" \
|
---|
196 | ) \
|
---|
197 | { $4 = "4755" } { print }' prototype > prototype2
|
---|
198 | mv -f prototype2 prototype
|
---|
199 | fi
|
---|
200 |
|
---|
201 | # Other executables that need setuid root (hardened or otherwise)
|
---|
202 | $VBOX_AWK 'NF == 6 \
|
---|
203 | && ( $3 == "opt/VirtualBox/amd64/VBoxNetAdpCtl" \
|
---|
204 | || $3 == "opt/VirtualBox/i386/VBoxNetAdpCtl" \
|
---|
205 | || $3 == "opt/VirtualBox/amd64/VBoxNetDHCP" \
|
---|
206 | || $3 == "opt/VirtualBox/i386/VBoxNetDHCP" \
|
---|
207 | || $3 == "opt/VirtualBox/amd64/VBoxNetNAT" \
|
---|
208 | || $3 == "opt/VirtualBox/i386/VBoxNetNAT" \
|
---|
209 | ) \
|
---|
210 | { $4 = "4755" } { print }' prototype > prototype2
|
---|
211 | mv -f prototype2 prototype
|
---|
212 |
|
---|
213 | # Our package is a non-relocatable package. pkgadd will take care of "relocating" them when they are used for
|
---|
214 | # remote installations using $PKG_INSTALL_ROOT and not $BASEDIR. Seems this little subtlety led to it's own page:
|
---|
215 | # http://docs.sun.com/app/docs/doc/820-4042/package-2?a=view
|
---|
216 | filelist_fixup prototype '$2 == "none"' '$3="/"$3'
|
---|
217 | filelist_fixup prototype '$2 == "manifest"' '$3="/"$3'
|
---|
218 | symlink_fixup prototype '$2 == "none"' '$3="/"$3'
|
---|
219 | hardlink_fixup prototype '$2 == "none"' '$3="/"$3'
|
---|
220 |
|
---|
221 | echo " --- start of prototype ---"
|
---|
222 | cat prototype
|
---|
223 | echo " --- end of prototype --- "
|
---|
224 |
|
---|
225 | # Explicitly set timestamp to shutup warning
|
---|
226 | VBOXPKG_TIMESTAMP=vbox`date '+%Y%m%d%H%M%S'`_r$VBOX_SVN_REV
|
---|
227 |
|
---|
228 | # Create the package instance
|
---|
229 | pkgmk -p $VBOXPKG_TIMESTAMP -o -r .
|
---|
230 |
|
---|
231 | # Translate into package datastream
|
---|
232 | pkgtrans -s -o /var/spool/pkg "`pwd`/$VBOX_PKGFILE" "$VBOX_PKGNAME"
|
---|
233 |
|
---|
234 | # $5 if exists would contain the path to the VBI package to include in the .tar.gz
|
---|
235 | #if [ -f LICENSE ]; then
|
---|
236 | # VBOX_LICENSEFILE=LICENSE
|
---|
237 | #fi
|
---|
238 | #if test -f "$5"; then
|
---|
239 | # $VBOX_GTAR zcvf "$VBOX_ARCHIVE" $VBOX_LICENSEFILE "$VBOX_PKGFILE" "$5" autoresponse ReadMe.txt
|
---|
240 | #else
|
---|
241 | # $VBOX_GTAR zcvf "$VBOX_ARCHIVE" $VBOX_LICENSEFILE "$VBOX_PKGFILE" autoresponse ReadMe.txt
|
---|
242 | #fi
|
---|
243 |
|
---|
244 | echo "## Package file created successfully!"
|
---|
245 | rm -rf "/var/spool/pkg/$VBOX_PKGNAME"
|
---|
246 |
|
---|
247 | exit $?
|
---|
248 |
|
---|