blob: 0cd009a8359a9c9ebbcd5deb765077b82e4637b3 (
plain)
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
|
#!/bin/sh
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
# ex: ts=8 sw=4 sts=4 et filetype=sh
# Licensed under the GPLv2
#
# Copyright (C) 2011 Politecnico di Torino, Italy
# TORSEC group -- http://security.polito.it
# Roberto Sassu <roberto.sassu@polito.it>
MASTERKEYSCONFIG="${NEWROOT}/etc/sysconfig/masterkey"
MULTIKERNELMODE="NO"
PCRLOCKNUM=11
load_masterkey()
{
# read the configuration from the config file
[ -f "${MASTERKEYSCONFIG}" ] && \
. ${MASTERKEYSCONFIG}
# override the kernel master key path name from the 'masterkey=' parameter
# in the kernel command line
MASTERKEYARG=$(getarg masterkey=)
[ $? -eq 0 ] && \
MASTERKEY=${MASTERKEYARG}
# override the kernel master key type from the 'masterkeytype=' parameter
# in the kernel command line
MASTERKEYTYPEARG=$(getarg masterkeytype=)
[ $? -eq 0 ] && \
MASTERKEYTYPE=${MASTERKEYTYPEARG}
# set default values
[ -z "${MASTERKEYTYPE}" ] && \
MASTERKEYTYPE="trusted"
if [ -z "${MASTERKEY}" ]; then
# append the kernel version to the default masterkey path name
# if MULTIKERNELMODE is set to YES
if [ "${MULTIKERNELMODE}" = "YES" ]; then
MASTERKEY="/etc/keys/kmk-${MASTERKEYTYPE}-$(uname -r).blob"
else
MASTERKEY="/etc/keys/kmk-${MASTERKEYTYPE}.blob"
fi
fi
# set the kernel master key path name
MASTERKEYPATH="${NEWROOT}${MASTERKEY}"
# check for kernel master key's existence
if [ ! -f "${MASTERKEYPATH}" ]; then
if [ "${RD_DEBUG}" = "yes" ]; then
info "masterkey: kernel master key file not found: ${MASTERKEYPATH}"
fi
return 1
fi
# read the kernel master key blob
KEYBLOB=$(cat ${MASTERKEYPATH})
# add the 'load' prefix if the key type is 'trusted'
[ "${MASTERKEYTYPE}" = "trusted" ] && \
KEYBLOB="load ${KEYBLOB} pcrlock=${PCRLOCKNUM}"
# load the kernel master key
info "Loading the kernel master key"
keyctl add "${MASTERKEYTYPE}" "kmk-${MASTERKEYTYPE}" "${KEYBLOB}" @u >/dev/null || {
info "masterkey: failed to load the kernel master key: kmk-${MASTERKEYTYPE}";
return 1;
}
return 0
}
load_masterkey
|