| Server IP : 88.99.149.37 / Your IP : 216.73.216.141 Web Server : nginx/1.31.2 System : Linux server-88-99-149-37 6.12.0-124.56.5.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Fri May 15 06:12:08 EDT 2026 x86_64 User : muralimurth ( 1015) PHP Version : 8.4.23 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/1/cwd/usr/lib/dracut/modules.d/97masterkey/ |
Upload File : |
#!/usr/bin/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
# shellcheck disable=SC1090
[ -f "${MASTERKEYSCONFIG}" ] \
&& . "${MASTERKEYSCONFIG}"
# override the kernel master key path name from the 'masterkey=' parameter
# in the kernel command line
MASTERKEYARG=$(getarg masterkey=) && MASTERKEY=${MASTERKEYARG}
# override the kernel master key type from the 'masterkeytype=' parameter
# in the kernel command line
MASTERKEYTYPEARG=$(getarg masterkeytype=) && 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
read -r KEYBLOB < "${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