forked from keylime/keylime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
installer.sh
executable file
·444 lines (397 loc) · 16 KB
/
installer.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
#!/bin/bash
################################################################################
# SPDX-License-Identifier: Apache-2.0
# Copyright 2017 Massachusetts Institute of Technology.
################################################################################
# Configure the installer here
KEYLIME_GIT=https://github.com/keylime/keylime.git
TPM2TSS_GIT=https://github.com/tpm2-software/tpm2-tss.git
TPM2TOOLS_GIT=https://github.com/tpm2-software/tpm2-tools.git
KEYLIME_VER="master"
TPM2TSS_VER="3.2.x"
TPM2TOOLS_VER="5.5"
# Minimum version requirements
MIN_PYTHON_VERSION="3.6.7"
MIN_PYSETUPTOOLS_VERSION="0.7"
MIN_PYTORNADO_VERSION="4.3"
MIN_PYZMQ_VERSION="14.4"
MIN_PYCRYPTOGRAPHY_VERSION="2.1.4"
# default variables
CENTOS7_TSS_FLAGS=
NEED_BUILD_TOOLS=0
NEED_PYTHON_DIR=0
PYTHON_PIPS=
TPM2_TOOLS_PKGS=
NEED_EPEL=0
POWERTOOLS=
# Check to ensure version is at least minversion
version_checker () {
newest=$( printf "$1\n$2" | sort -V | tail -n1 )
[[ "$1" == "$2" || "$1" != "$newest" ]]
}
confirm_force_install () {
echo $1
read -r -p "This may introduce security issues, instability or an incomplete install! Continue? [y/N] " resp
case "$resp" in
[yY]) return 0 ;;
*) return 1 ;;
esac
}
# Determine distibution (using systemd standard `os-release`):
if [ -f /etc/os-release ]; then
. /etc/os-release
else
echo "Not able to determine your OS or Distribution"
exit 1
fi
case "$ID" in
debian | ubuntu)
echo "${ID} selected."
PACKAGE_MGR=$(command -v apt-get)
PYTHON_PREIN="git patch"
PYTHON_DEPS="python3 python3-pip python3-dev python3-setuptools python3-zmq python3-tornado python3-cryptography python3-requests python3-psutil gcc g++ libssl-dev swig python3-yaml python3-gpg python3-lark wget python3-alembic"
if [ "$(uname -m)" = "x86_64" ]; then
PYTHON_DEPS+=" libefivar-dev"
fi
BUILD_TOOLS="build-essential libtool automake pkg-config m4 libgcrypt20-dev uthash-dev autoconf autoconf-archive libcurl4-gnutls-dev gnulib doxygen libdbus-1-dev uuid-dev libjson-c-dev"
$PACKAGE_MGR update
case "${VERSION_ID}" in
# Ubuntu 18.04, Debian 9 and 10 don't ship with a new enough version of tpm2-tools/tpm2-tss
18.04 | 9 | 10 )
NEED_BUILD_TOOLS=1
;;
*)
TPM2_TOOLS_PKGS="tpm2-tools tss2"
NEED_BUILD_TOOLS=0
;;
esac
;;
rhel | centos)
case "${VERSION_ID}" in
7*)
echo "${ID} ${VERSION_ID} selected."
PACKAGE_MGR=$(command -v yum)
NEED_EPEL=1
PYTHON_PREIN="python36 python36-devel python36-setuptools python36-pip git wget patch openssl"
PYTHON_DEPS="gcc gcc-c++ openssl-devel swig python36-PyYAML python36-tornado python36-cryptography python36-requests python36-zmq yaml-cpp-devel python3-psutil python3-alembic"
if [ "$(uname -m)" = "x86_64" ]; then
PYTHON_DEPS+=" efivar-libs"
fi
BUILD_TOOLS="openssl-devel file libtool make automake m4 libgcrypt-devel autoconf autoconf-archive libcurl-devel libstdc++-devel uriparser-devel dbus-devel gnulib-devel doxygen libuuid-devel json-c-devel"
NEED_BUILD_TOOLS=1
CENTOS7_TSS_FLAGS="--enable-esapi=no --disable-doxygen-doc"
;;
8*|9*)
echo "${ID} ${VERSION_ID} selected."
PACKAGE_MGR=$(command -v dnf)
NEED_EPEL=1
PYTHON_PREIN="python3 python3-devel python3-setuptools python3-pip"
PYTHON_DEPS="gcc gcc-c++ openssl-devel python3-yaml python3-requests python3-cryptography wget git python3-tornado python3-zmq python3-gpg python3-psutil"
if [ "$(uname -m)" = "x86_64" ]; then
PYTHON_DEPS+=" efivar-libs"
fi
case "${VERSION_ID}" in
8*)
PYTHON_DEPS+=" swig"
;;
esac
BUILD_TOOLS="git wget patch libyaml openssl-devel libtool make automake m4 libgcrypt-devel autoconf libcurl-devel libstdc++-devel dbus-devel libuuid-devel json-c-devel autoconf-archive"
case "${VERSION_ID}" in
8*)
NEED_BUILD_TOOLS=1
NEED_PYTHON_DIR=1
;;
9*)
NEED_BUILD_TOOLS=0
NEED_PYTHON_DIR=0
TPM2_TOOLS_PKGS="tpm2-tools"
;;
esac
if test "$ID" = centos; then
POWERTOOLS="--enablerepo=PowerTools"
else
POWERTOOLS="config-manager --set-enabled rhui-codeready-builder-for-rhel-8-x86_64-rhui-source-rpms"
fi
;;
*)
echo "Version ${VERSION_ID} of ${ID} not supported"
exit 1
esac
;;
fedora)
echo "${ID} selected."
PACKAGE_MGR=$(command -v dnf)
PYTHON_PREIN="python3 python3-devel python3-setuptools git wget patch"
PYTHON_DEPS="python3-pip gcc gcc-c++ openssl-devel swig python3-pyyaml python3-zmq python3-cryptography python3-tornado python3-requests python3-gpg yaml-cpp-devel procps-ng python3-psutil python3-lark-parser python3-alembic"
if [ "$(uname -m)" = "x86_64" ]; then
PYTHON_DEPS+=" efivar-devel"
fi
BUILD_TOOLS="openssl-devel libtool make automake pkg-config m4 libgcrypt-devel autoconf autoconf-archive libcurl-devel libstdc++-devel uriparser-devel dbus-devel gnulib-devel doxygen libuuid-devel json-c-devel"
if [[ ${VERSION_ID} -ge 30 ]] ; then
# if fedora 30 or greater, then using TPM2 tool packages
TPM2_TOOLS_PKGS="tpm2-tools tpm2-tss tss2"
NEED_BUILD_TOOLS=0
else
NEED_BUILD_TOOLS=1
fi
;;
# Alibaba Cloud Linux
alinux)
case "${VERSION_ID}" in
3*)
echo "${ID} selected."
PACKAGE_MGR=$(command -v dnf)
PYTHON_PREIN="python3 python3-devel python3-setuptools git wget patch rust cargo"
PYTHON_DEPS="python3-pip gcc gcc-c++ openssl-devel swig python3-pyyaml python3-zmq python3-cryptography python3-tornado python3-requests python3-gpg yaml-cpp-devel procps-ng python3-psutil python3-lark-parser python3-alembic python3-setuptools"
if [ "$(uname -m)" = "x86_64" ]; then
PYTHON_DEPS+=" efivar-libs"
fi
pip3 install setuptools_rust
TPM2_TOOLS_PKGS="tpm2-tools tpm2-tss"
;;
*)
echo "Version ${VERSION_ID} of ${ID} not supported"
exit 1
esac
;;
*)
echo "${ID} is not currently supported."
exit 1
esac
# Command line params
STUB=0
KEYLIME_DIR=
while getopts ":shckmp:" opt; do
case $opt in
k) STUB=1 ;;
p)
KEYLIME_DIR=$OPTARG
# Ensure absolute path
if [[ "$KEYLIME_DIR" != "/"* ]] ; then
KEYLIME_DIR=`pwd`"/$KEYLIME_DIR"
fi
;;
m) ;;
h)
echo "Usage: $0 [option...]"
echo "Options:"
echo $'-k \t\t\t\t Download Keylime (stub installer mode)'
echo $'-m \t\t\t\t Use modern TPM 2.0 libraries; this is the default'
echo $'-p PATH \t\t\t Use PATH as Keylime path'
echo $'-h \t\t\t\t This help info'
exit
;;
esac
done
if [[ $EUID -ne 0 ]]; then
echo -e "This script must be run as root in order to install keylime and its dependencies" 1>&2
exit 1
fi
# Keylime python-related dependencies
echo
echo "=================================================================================="
echo $'\t\t\tInstalling python & crypto libs'
echo "=================================================================================="
if [[ "$NEED_EPEL" -eq "1" ]] ; then
$PACKAGE_MGR -y install epel-release
if [[ $? > 0 ]] ; then
echo "ERROR: EPEL package failed to install properly!"
exit 1
fi
fi
$PACKAGE_MGR install -y $PYTHON_PREIN
if [[ $? > 0 ]] ; then
echo "ERROR: Package(s) failed to install properly!"
exit 1
fi
$PACKAGE_MGR install -y $PYTHON_DEPS
if [[ $? > 0 ]] ; then
echo "ERROR: Package(s) failed to install properly!"
exit 1
fi
if [[ ! -z $PYTHON_PIPS ]] ; then
pip3 install $PYTHON_PIPS
fi
# Ensure Python is installed
if [[ ! `command -v python3` ]] ; then
echo "ERROR: Python failed to install properly!"
exit 1
else
# Ensure Python installed meets min requirements
py_ver=$(python3 -c 'import platform; print(platform.python_version())')
if ! $(version_checker "$MIN_PYTHON_VERSION" "$py_ver"); then
confirm_force_install "ERROR: Minimum Python version is $MIN_PYTHON_VERSION, but $py_ver is installed!" || exit 1
fi
# Ensure Python setuptools installed meets min requirements
pyset_ver=$(python3 -c 'import setuptools; print(setuptools.__version__)')
if ! $(version_checker "$MIN_PYSETUPTOOLS_VERSION" "$pyset_ver"); then
confirm_force_install "ERROR: Minimum python-setuptools version is $MIN_PYSETUPTOOLS_VERSION, but $pyset_ver is installed!" || exit 1
fi
# Ensure Python tornado installed meets min requirements
pynado_ver=$(python3 -c 'import tornado; print(tornado.version)')
if ! $(version_checker "$MIN_PYTORNADO_VERSION" "$pynado_ver"); then
confirm_force_install "ERROR: Minimum python-tornado version is $MIN_PYTORNADO_VERSION, but $pynado_ver is installed!" || exit 1
fi
# Ensure Python ZeroMQ installed meets min requirements
pyzmq_ver=$(python3 -c 'import zmq; print(zmq.__version__)')
if ! $(version_checker "$MIN_PYZMQ_VERSION" "$pyzmq_ver"); then
confirm_force_install "ERROR: Minimum python-zmq version is $MIN_PYZMQ_VERSION, but $pyzmq_ver is installed!" || exit 1
fi
# Ensure Python cryptography installed meets min requirements
pycrypto_ver=$(python3 -c 'import cryptography; print(cryptography.__version__)')
if ! $(version_checker "$MIN_PYCRYPTOGRAPHY_VERSION" "$pycrypto_ver"); then
confirm_force_install "ERROR: Minimum python-cryptography version is $MIN_PYCRYPTOGRAPHY_VERSION, but $pycrypto_ver is installed!" || exit 1
fi
fi
# Download Keylime (if necessary)
if [[ "$STUB" -eq "1" ]] ; then
if [[ -z "$KEYLIME_DIR" ]] ; then
KEYLIME_DIR=`pwd`
KEYLIME_DIR+="/keylime"
if [[ ! -d "$KEYLIME_DIR" ]] ; then
mkdir -p $KEYLIME_DIR
fi
fi
echo
echo "=================================================================================="
echo $'\t\t\t\tDownloading Keylime'
echo "=================================================================================="
git clone $KEYLIME_GIT $KEYLIME_DIR
pushd $KEYLIME_DIR
git checkout $KEYLIME_VER
popd
fi
# If all else fails, assume they already have Keylime (we're in it!)
if [[ -z "$KEYLIME_DIR" ]] ; then
KEYLIME_DIR=`pwd`
fi
# Sanity check
if [[ ! -d "$KEYLIME_DIR/scripts" || ! -d "$KEYLIME_DIR/keylime" ]] ; then
echo "ERROR: Invalid keylime directory at $KEYLIME_DIR"
exit 1
fi
echo "INFO: Using Keylime directory: $KEYLIME_DIR"
# Prepare to build TPM libraries
if [[ "$NEED_BUILD_TOOLS" -eq "1" ]] ; then
echo
echo "=================================================================================="
echo $'\t\t\tInstalling TPM libraries and build tools'
echo "=================================================================================="
# Create temp dir for building tpm
TMPDIR=`mktemp -d` || exit 1
echo "INFO: Using temp tpm directory: $TMPDIR"
if [[ -n "${POWERTOOLS}" ]] ; then
$PACKAGE_MGR -y $POWERTOOLS
if [[ $? > 0 ]] ; then
echo "ERROR: Package(s) failed to install properly!"
exit 1
fi
fi
$PACKAGE_MGR -y install $BUILD_TOOLS
if [[ $? > 0 ]] ; then
echo "ERROR: Package(s) failed to install properly!"
exit 1
fi
mkdir -p $TMPDIR/tpm
cd $TMPDIR/tpm
fi
if [[ ! -z $TPM2_TOOLS_PKGS ]] ; then
echo
echo "=================================================================================="
echo $'\t\t\t\tInstall tpm2-tools packages'
echo "=================================================================================="
$PACKAGE_MGR install -y $TPM2_TOOLS_PKGS
if [[ $? > 0 ]] ; then
echo "ERROR: Package(s) failed to install properly!"
exit 1
fi
else
echo
echo "=================================================================================="
echo $'\t\t\t\tBuild and install tpm2-tss'
echo "=================================================================================="
git clone $TPM2TSS_GIT tpm2-tss
pushd tpm2-tss
git checkout $TPM2TSS_VER
./bootstrap
if [[ -n $CENTOS7_TSS_FLAGS ]] ; then
export PKG_CONFIG_PATH=/usr/lib/pkgconfig/
fi
./configure --prefix=/usr $CENTOS7_TSS_FLAGS
make
make install
ldconfig
popd # tpm
# if [[ ! -f /usr/lib/libtss.so ]] ; then
# echo "ERROR: tpm2-tss failed to build and install properly!"
# exit 1
# fi
echo
echo "=================================================================================="
echo $'\t\t\t\tBuild and install tpm2-tools'
echo "=================================================================================="
git clone $TPM2TOOLS_GIT tpm2-tools
pushd tpm2-tools
git checkout $TPM2TOOLS_VER
# cherry-pick tpm2-software/tpm2-tools@9735dc3 and tpm2-software/tpm2-tools@576a31b to cover parsing for most newer logs.
git cherry-pick -n 9735dc3 576a31b
./bootstrap
if [[ -n $CENTOS7_TSS_FLAGS ]] ; then
export SAPI_CFLAGS=' '
export SAPI_LIBS='-ltss2-sys -L/usr/lib/'
fi
./configure --prefix=/usr/local
make
make install
popd # tpm
fi
if [[ -z "$(command -v tpm2_getrandom)" ]] ; then
echo "ERROR: Failed to build tpm2_tss/tools!"
exit 1
fi
# Install keylime
echo
echo "=================================================================================="
echo $'\t\t\t\tInstall Keylime'
echo "=================================================================================="
cd $KEYLIME_DIR
if [[ "$NEED_PYTHON_DIR" -eq "1" ]] ; then
mkdir -p /usr/local/lib/python3.6/site-packages/
fi
python3 -m pip install . -r requirements.txt
echo
echo "=================================================================================="
echo $'\t\t\t\tBuild and install configuration'
echo "=================================================================================="
mkdir -p /etc/keylime
mkdir -p config
python3 -m keylime.cmd.convert_config --defaults --out config --templates templates
for comp in "agent" "verifier" "tenant" "registrar" "ca" "logging"; do
mkdir -p /etc/keylime/$comp.conf.d
if [[ -f "/etc/keylime/$comp.conf" ]] ; then
if [[ $(diff -N "/etc/keylime/$comp.conf" "config/$comp.conf") ]] ; then
echo "Modified $comp.conf found in /etc/keylime, creating /etc/keylime/$comp.conf.new instead"
cp "config/$comp.conf" "/etc/keylime/$comp.conf.new"
chmod 600 /etc/keylime/$comp.conf.new
fi
else
echo "Installing $comp.conf to /etc/keylime"
cp -n "config/$comp.conf" "/etc/keylime/"
chmod 600 "/etc/keylime/$comp.conf"
fi
done
# Install templates for configuration upgrades
mkdir -p /usr/share/keylime/
cp -r templates /usr/share/keylime/templates
echo
echo "=================================================================================="
echo $'\t\t\t\tCheck for tpm_cert_store'
echo "=================================================================================="
if [ ! -d "/var/lib/keylime/tpm_cert_store" ]; then
echo "Creating new tpm_cert_store"
mkdir -p /var/lib/keylime
cp -r $KEYLIME_DIR/tpm_cert_store /var/lib/keylime/tpm_cert_store
else
echo "Updating existing cert store"
cp -n $KEYLIME_DIR/tpm_cert_store/* /var/lib/keylime/tpm_cert_store/
fi