Blame SOURCES/check_caveats

c59b13
#! /bin/bash -eu
c59b13
c59b13
# Script for checking various microcode caveats
c59b13
#
c59b13
#
c59b13
# SPDX-License-Identifier: CC0-1.0
c59b13
c59b13
: ${MC_CAVEATS_DATA_DIR=/usr/share/microcode_ctl/ucode_with_caveats}
c59b13
: ${FW_DIR=/lib/firmware}
c59b13
: ${CFG_DIR=/etc/microcode_ctl/ucode_with_caveats}
c59b13
c59b13
usage() {
078ac8
	echo 'Usage: check_caveats [-d] [-e] [-k TARGET_KVER] [-c CONFIG]'
078ac8
	echo '                     [-m] [-v]'
c59b13
	echo
078ac8
	echo '   -d - enables disclaimer printing mode'
c59b13
	echo '   -e - check for early microcode load possibility (instead of'
c59b13
	echo '        late microcode load)'
c59b13
	echo '   -k - target version to check against, $(uname -r) is used'
c59b13
	echo '        otherwise'
c59b13
	echo '   -c - caveat config(s) to check, all configs are checked'
c59b13
	echo '        otherwise'
c59b13
	echo '   -m - check that caveats actually apply to the current model'
c59b13
	echo '   -v - verbose output'
c59b13
	echo
c59b13
	echo 'Environment:'
c59b13
	echo '  MC_CAVEATS_DATA_DIR - directory that contains caveats'
c59b13
	echo '                        configuration data'
c59b13
}
c59b13
c59b13
debug() { [ 0 = "$verbose" ] || echo "$*" >&2; }
c59b13
c59b13
# A simplified RPM version comparison that takes into account knowledge about
c59b13
# Y- and Z-streams (so it compares versions inside Y-stram or Z-stream if
c59b13
# the version against which comparison is performed has appropriate versioning
c59b13
# scheme).
c59b13
#
c59b13
# $1 - kernel version to check
c59b13
# $* - list of kernel versions to check against
c59b13
check_kver()
c59b13
{
c59b13
	local t_major= t_minor= t_patch= t_y= t_z1= t_z2= t_rest=
c59b13
	local m_major= m_minor= m_patch= m_y= m_z1= m_z2= m_rest=
c59b13
	local cmp_type=
c59b13
c59b13
	# IFS=.- read -r t_major t_minor t_patch t_y t_z1 t_z2 t_rest <<<"$1"
c59b13
	# "cannot create temp file for here-document: Read-only file system"
c59b13
	# that's why we can't have nice things.
c59b13
	t_major=${1%%.*}
c59b13
	t_rest=${1#${t_major}}
c59b13
	t_rest=${t_rest#.}
c59b13
	t_minor=${t_rest%%.*}
c59b13
	t_rest=${t_rest#${t_minor}}
c59b13
	t_rest=${t_rest#.}
c59b13
	t_patch=${t_rest%%-*}
c59b13
	t_rest=${t_rest#${t_patch}}
c59b13
	t_rest=${t_rest#-}
c59b13
	t_y=${t_rest%%.*}
c59b13
	t_rest=${t_rest#${t_y}}
c59b13
	t_rest=${t_rest#.}
c59b13
	t_z1=${t_rest%%.*}
c59b13
	t_rest=${t_rest#${t_z1}}
c59b13
	t_rest=${t_rest#.}
c59b13
	t_z2=${t_rest%%.*}
c59b13
c59b13
	# minor/major/patch/y should be numeric
c59b13
	[ -n "${t_major##*[!0-9]*}" ] || return 1
c59b13
	[ -n "${t_minor##*[!0-9]*}" ] || return 1
c59b13
	[ -n "${t_patch##*[!0-9]*}" ] || return 1
c59b13
	[ -n "${t_y##*[!0-9]*}" ] || return 1
c59b13
	# reset z1/z2 to zero if non-numeric
c59b13
	[ -n "${t_z1##*[!0-9]*}" ] || t_z1=0
c59b13
	[ -n "${t_z2##*[!0-9]*}" ] || t_z2=0
c59b13
c59b13
	while [ 1 -lt "$#" ]; do
c59b13
		cmp_type=upstream
c59b13
c59b13
		shift
c59b13
		m_major=${1%%.*}
c59b13
		m_rest=${1#${m_major}}
c59b13
		m_rest=${m_rest#.}
c59b13
		m_minor=${m_rest%%.*}
c59b13
		m_rest=${m_rest#${m_minor}}
c59b13
		m_rest=${m_rest#.}
c59b13
		m_patch=${m_rest%%-*}
c59b13
		m_rest=${m_rest#${m_patch}}
c59b13
		m_rest=${m_rest#-}
c59b13
		m_y=${m_rest%%.*}
c59b13
		m_rest=${m_rest#${m_y}}
c59b13
		m_rest=${m_rest#.}
c59b13
		m_z1=${m_rest%%.*}
c59b13
		m_rest=${m_rest#${m_z1}}
c59b13
		m_rest=${m_rest#.}
c59b13
		m_z2=${m_rest%%.*}
c59b13
c59b13
		# minor/major/patch should be numeric
c59b13
		[ -n "${m_major##*[!0-9]*}" ] || continue
c59b13
		[ -n "${m_minor##*[!0-9]*}" ] || continue
c59b13
		[ -n "${m_patch##*[!0-9]*}" ] || continue
c59b13
		# reset z1/z2 to zero if non-numeric
c59b13
		[ -n "${m_y##*[!0-9]*}" ] && cmp_type=y || m_y=0
c59b13
		[ -n "${m_z1##*[!0-9]*}" ] && cmp_type=z || m_z1=0
c59b13
		[ -n "${m_z2##*[!0-9]*}" ] && cmp_type=z || m_z2=0
c59b13
c59b13
		# Comparing versions
c59b13
		case "$cmp_type" in
c59b13
		upstream)
c59b13
			[ "$t_major" -ge "$m_major" ] || continue
c59b13
			[ "$t_minor" -ge "$m_minor" ] || continue
c59b13
			[ "$t_patch" -ge "$m_patch" ] || continue
c59b13
			return 0
c59b13
			;;
c59b13
		y)
c59b13
			[ "$t_major" -eq "$m_major" ] || continue
c59b13
			[ "$t_minor" -eq "$m_minor" ] || continue
c59b13
			[ "$t_patch" -eq "$m_patch" ] || continue
c59b13
			[ "$t_y" -ge "$m_y" ] || continue
c59b13
			return 0
c59b13
			;;
c59b13
		z)
c59b13
			[ "$t_major" -eq "$m_major" ] || continue
c59b13
			[ "$t_minor" -eq "$m_minor" ] || continue
c59b13
			[ "$t_patch" -eq "$m_patch" ] || continue
c59b13
			[ "$t_y" -eq "$m_y" ] || continue
c59b13
			[ "$t_z1" -ge "$m_z1" ] || continue
c59b13
			[ "$t_z2" -ge "$m_z2" ] || continue
c59b13
			return 0
c59b13
			;;
c59b13
		esac
c59b13
	done
c59b13
c59b13
	return 1
c59b13
}
c59b13
3a6b56
# It is needed for SKX[1] for which different product segments
3a6b56
# are differentiated by a value in the CAPID0 field of PCU registers
3a6b56
# device[2].
3a6b56
# [1] https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/issues/21
3a6b56
# [2] https://www.intel.com/content/dam/www/public/us/en/documents/specification-updates/xeon-scalable-spec-update.pdf#page=13
3a6b56
#
6e6257
# $1 - params in config file, space-separated, in key=value form:
3a6b56
#   domain=* - PCI domain, '*' or number
3a6b56
#   bus=* - PCI bus, '*' or number
3a6b56
#   device=* - PCI device, '*' or number
3a6b56
#   function=* - PCI function, '*' or number
3a6b56
#   vid= - PCI vendor ID, empty or number
3a6b56
#   did= - PCI device ID, empty or number
3a6b56
#   offset=0 - offset in configuration space
3a6b56
#   size=4 - field size
3a6b56
#   mask=0 - mask applied to the data read
3a6b56
#   val=0 - comma-separated list of possible values
3a6b56
#   mode=success-any [ success-ail, fail-any, fail-all ] - matching mode:
3a6b56
#     success-any: Returns 0 if there was at least one match, otherwise 1.
3a6b56
#     success-all: Returns 0 if there was at least one device checked and all
3a6b56
#                  the checked devices have matches, otherwise 1.
3a6b56
#     fail-any:    Returns 1 if there was at least one match, otherwise 0.
3a6b56
#     fail-all:    Returns 1 if there was at least one device checked and all
3a6b56
#                  the checked devices have matches, otherwise 0.
3a6b56
# $2 - whether model filter is engaged (if it is not '1', just return the result
3a6b56
#      based on "mode" value that assumes that there were 0 checks/0 matches).
3a6b56
check_pci_config_val()
3a6b56
{
3a6b56
	local domain='*' bus='*' device='*' func='*' vid= did=
3a6b56
	local offset=0 size=4 mask=0 val=0 mode=success-any
3a6b56
	local checked=0 matched=0 path=''
3a6b56
	local dev_path dev_vid dev_did dev_val
3a6b56
	local opts="${1:-}"
3a6b56
	local match_model="${2:0}"
3a6b56
3a6b56
	set -- $1
3a6b56
	while [ "$#" -gt 0 ]; do
3a6b56
		[ "x${1#domain=}" = "x${1}" ] || domain="${1#domain=}"
3a6b56
		[ "x${1#bus=}" = "x${1}" ] || bus="${1#bus=}"
3a6b56
		[ "x${1#device=}" = "x${1}" ] || device="${1#device=}"
3a6b56
		[ "x${1#function=}" = "x${1}" ] || func="${1#function=}"
3a6b56
		[ "x${1#vid=}" = "x${1}" ] || vid="${1#vid=}"
3a6b56
		[ "x${1#did=}" = "x${1}" ] || did="${1#did=}"
3a6b56
		[ "x${1#offset=}" = "x${1}" ] || offset="${1#offset=}"
3a6b56
		[ "x${1#size=}" = "x${1}" ] || size="${1#size=}"
3a6b56
		[ "x${1#mask=}" = "x${1}" ] || mask="${1#mask=}"
3a6b56
		[ "x${1#val=}" = "x${1}" ] || val="${1#val=}"
3a6b56
		[ "x${1#mode=}" = "x${1}" ] || mode="${1#mode=}"
3a6b56
3a6b56
		shift
3a6b56
	done
3a6b56
3a6b56
	path="$domain"
3a6b56
	if [ "x$bus" = 'x*' ]; then
3a6b56
		path="$path:$bus";
3a6b56
	else
3a6b56
		path=$(printf '%s:%02x' "$path" "$bus")
3a6b56
	fi
3a6b56
	if [ "x$device" = 'x*' ]; then
3a6b56
		path="$path:$device";
3a6b56
	else
3a6b56
		path=$(printf '%s:%02x' "$path" "$device")
3a6b56
	fi
3a6b56
	if [ "x$func" = 'x*' ]; then
3a6b56
		path="$path.$func";
3a6b56
	else
3a6b56
		path=$(printf '%s.%01x' "$path" "$func")
3a6b56
	fi
3a6b56
3a6b56
	# Normalise VID, DID
3a6b56
	[ -n "$vid" ] || vid="$(printf '0x%04x' "$vid")"
3a6b56
	[ -n "$did" ] || did="$(printf '0x%04x' "$did")"
3a6b56
3a6b56
	( [ 1 != "$match_model" ] \
3a6b56
	  || /usr/bin/find /sys/bus/pci/devices/ -maxdepth 1 -name "$path" \
3a6b56
	  || : ) | (
3a6b56
		while read -r dev_path; do
3a6b56
			# Filter VID, DID
3a6b56
			if [ -n "$vid" ]; then
3a6b56
				dev_vid=$(/bin/cat "$dev_path/vendor")
3a6b56
				[ "x$vid" = "x$dev_vid" ] || continue
3a6b56
			fi
3a6b56
			if [ -n "$did" ]; then
3a6b56
				dev_did=$(/bin/cat "$dev_path/device")
3a6b56
				[ "x$did" = "x$dev_did" ] || continue
3a6b56
			fi
3a6b56
3a6b56
			checked="$((checked + 1))"
3a6b56
3a6b56
			dev_val="$(/usr/bin/od -j "$offset" -N "$size" -A n \
3a6b56
					       -t "u$size" "$dev_path/config")"
3a6b56
3a6b56
			val_rest="${val}"
3a6b56
			while :; do
3a6b56
				cur_val="${val_rest%%,*}"
3a6b56
				if [ "$((dev_val & mask))" = "$((cur_val & mask))" ]
3a6b56
				then
3a6b56
					matched="$((matched + 1))"
3a6b56
					break
3a6b56
				fi
3a6b56
				[ "x${val_rest}" != "x${val_rest#*,}" ] || break
3a6b56
				val_rest="${val_rest#*,}"
3a6b56
			done
3a6b56
3a6b56
			case "$mode" in
3a6b56
			success-any) [ "$matched" -eq 0 ] || { echo 0; exit; } ;;
3a6b56
			success-all) [ "$matched" -eq "$checked" ] || { echo 1; exit; } ;;
3a6b56
			fail-any)    [ "$matched" -eq 0 ] || { echo 1; exit; } ;;
3a6b56
			fail-all)    [ "$matched" -eq "$checked" ] || { echo 0; exit; } ;;
3a6b56
			*)           echo 2; exit;;
3a6b56
			esac
3a6b56
		done
3a6b56
3a6b56
		debug "PCI config value check ($opts): checked $checked," \
3a6b56
		      "matched $matched (model check is set to $match_model)"
3a6b56
3a6b56
		case "$mode" in
3a6b56
		success-any) if [ "$matched" -eq 0 ]; then echo 1; else echo 0; fi ;;
3a6b56
		success-all) if [ "$matched" -gt 0 -a "$matched" -eq "$checked" ]; then echo 0; else echo 1; fi ;;
3a6b56
		fail-any)    if [ "$matched" -eq 0 ]; then echo 0; else echo 1; fi  ;;
3a6b56
		fail-all)    if [ "$matched" -gt 0 -a "$matched" -eq "$checked" ]; then echo 1; else echo 0; fi ;;
3a6b56
		*)           echo 2; exit;;
3a6b56
		esac
3a6b56
	)
3a6b56
}
3a6b56
6e6257
# It is needed for filtering by BIOS vendor name that is available in DMI data
6e6257
#
6e6257
# $1 - params in config file, space-separated, in key=value form:
6e6257
#   key= - DMI value to check. Can be one of the following: bios_date,
6e6257
#          bios_vendor, bios_version, board_asset_tag, board_name, board_serial,
6e6257
#          board_vendor, board_version, chassis_asset_tag, chassis_serial,
6e6257
#          chassis_type, chassis_vendor, chassis_version, product_family,
6e6257
#          product_name, product_serial, product_uuid, product_version,
6e6257
#          sys_vendor.
6e6257
#   val= - a string to match DMI data against.  Can be enclosed in single
6e6257
#          or double quotes.
6e6257
#   mode=success-equal [ success-equal, fail-equal ] - matching mode:
6e6257
#     success-equal: Returns 0 if the value present in the corresponding file
6e6257
#                    under /sys/devices/virtual/dmi/id/<key> is equal
6e6257
#                    to the value supplied as a value of "val" parameter,
6e6257
#                    otherwise 1.
6e6257
#     fail-equal:    Returns 1 if the value present in the corresponding file
6e6257
#                    under /sys/devices/virtual/dmi/id/<key> is equal
6e6257
#                    to the value supplied as a value of "val" parameter,
6e6257
#                    otherwise 0.
6e6257
#   no-model-mode=success [ success, fail ] - return value if model filter
6e6257
#                                             is not enabled:
6e6257
#     success: Return 0.
6e6257
#     fail:    Return 1.
6e6257
# $2 - whether model filter is engaged (if it is not '1', just return the result
6e6257
#      based on "mode" value that assumes that the check has failed).
6e6257
check_dmi_val()
6e6257
{
6e6257
	local key= val= mode='success-equal' nm_mode='success'
6e6257
	local opts="${1:-}" opt= opt_=
6e6257
	local match_model="${2:0}"
6e6257
6e6257
	local valid_keys=" bios_date bios_vendor bios_version board_asset_tag board_name board_serial board_vendor board_version chassis_asset_tag chassis_serial chassis_type chassis_vendor chassis_version product_family product_name product_serial product_uuid product_version sys_vendor "
6e6257
	local success=1
6e6257
6e6257
	while [ -n "$opts" ]; do
6e6257
		opt="${opts%%[ 	]*}"
6e6257
		[ -n "${opt}" ] || { opts="${opts#[ 	]}"; continue; }
6e6257
6e6257
		[ "x${opt#key=}" = "x${opt}" ] || key="${opt#key=}"
6e6257
		[ "x${opt#mode=}" = "x${opt}" ] || mode="${opt#mode=}"
6e6257
		[ "x${opt#no-model-mode=}" = "x${opt}" ] || \
6e6257
			nm_mode="${opt#no-model-mode=}"
6e6257
6e6257
		# Handle possible quoting
6e6257
		[ "x${opt#val=}" = "x${opt}" ] || {
6e6257
			case "${opt#val=}" in
6e6257
			[']*) opt_="${opts#val=\'}"; val="${opt_%%\'*}"; opt="val=\'${val}\'" ;;
6e6257
			["]*) opt_="${opts#val=\"}"; val="${opt_%%\"*}"; opt="val=\"${val}\"" ;;
6e6257
			*)    val="${opt#val=}" ;;
6e6257
			esac
6e6257
		}
6e6257
6e6257
		opts="${opts#"${opt}"}"
6e6257
		continue
6e6257
	done
6e6257
6e6257
	# Check key for validity
6e6257
	[ "x${valid_keys#* ${key} *}" != "x${valid_keys}" ] || {
6e6257
		debug "Invalid \"key\" parameter value: \"${key}\""
6e6257
		echo 2
6e6257
		exit
6e6257
	}
6e6257
6e6257
	[ 1 = "$match_model" ] || {
6e6257
		case "$nm_mode" in
6e6257
		success) echo 0 ;;
6e6257
		fail)    echo 1 ;;
6e6257
		*)
6e6257
			debug "Invalid no-model-mode value: \"${nm_mode}\""
6e6257
			echo 2
6e6257
			;;
6e6257
		esac
6e6257
6e6257
		exit
6e6257
	}
6e6257
6e6257
	[ -r "/sys/devices/virtual/dmi/id/${key}" ] || {
6e6257
		debug "Can't access /sys/devices/virtual/dmi/id/${key}"
6e6257
		echo 3
6e6257
		exit
6e6257
	}
6e6257
6e6257
	file_val="$(cat "/sys/devices/virtual/dmi/id/${key}")"
6e6257
6e6257
	[ "x${val}" = "x${file_val}" ] || success=0
6e6257
6e6257
	case "$mode" in
6e6257
	success-equal) echo "$((1 - $success))" ;;
6e6257
	fail-equal)    echo "${success}" ;;
6e6257
	*)             debug "Invalid mode value: \"${nm_mode}\""; echo 2 ;;
6e6257
	esac
6e6257
}
6e6257
c59b13
# Provides model in format "VENDOR_ID FAMILY-MODEL-STEPPING"
c59b13
#
c59b13
# We check only the first processor as we don't expect non-symmetrical setups
c59b13
# with CPUs with caveats
c59b13
get_model_string()
c59b13
{
c59b13
	/usr/bin/printf "%s %02x-%02x-%02x" \
c59b13
		$(/bin/sed -rn '1,/^$/{
c59b13
			s/^vendor_id[[:space:]]*: (.*)$/\1/p;
c59b13
			s/^cpu family[[:space:]]*: (.*)$/\1/p;
c59b13
			s/^model[[:space:]]*: (.*)$/\1/p;
c59b13
			s/^stepping[[:space:]]*: (.*)$/\1/p;
c59b13
		}' /proc/cpuinfo)
c59b13
}
c59b13
c59b13
get_model_name()
c59b13
{
c59b13
	/bin/sed -rn '1,/^$/s/^model name[[:space:]]*: (.*)$/\1/p' /proc/cpuinfo
c59b13
}
c59b13
c59b13
get_vendor_id()
c59b13
{
c59b13
	/bin/sed -rn '1,/^$/s/^vendor_id[[:space:]]*: (.*)$/\1/p' /proc/cpuinfo
c59b13
}
c59b13
c59b13
get_mc_path()
c59b13
{
c59b13
	case "$1" in
c59b13
	GenuineIntel)
c59b13
		echo "intel-ucode/$2"
c59b13
		;;
c59b13
	AuthenticAMD)
c59b13
		echo "amd-ucode/$2"
c59b13
		;;
c59b13
	esac
c59b13
}
c59b13
c59b13
get_mc_ver()
c59b13
{
c59b13
	/bin/sed -rn '1,/^$/s/^microcode[[:space:]]*: (.*)$/\1/p' /proc/cpuinfo
c59b13
}
c59b13
c59b13
fail()
c59b13
{
c59b13
	ret=1
c59b13
c59b13
	fail_cfgs="$fail_cfgs $cfg"
c59b13
	fail_paths="$fail_paths $cfg_path"
078ac8
078ac8
	[ 0 -eq "$print_disclaimers" ] || [ ! -e "${dir}/disclaimer" ] \
3a6b56
		|| /bin/cat "${dir}/disclaimer"
c59b13
}
c59b13
c59b13
#check_kver "$@"
c59b13
#get_model_name
c59b13
c59b13
match_model=0
c59b13
configs=
c59b13
kver=$(/bin/uname -r)
c59b13
verbose=0
c59b13
early_check=0
078ac8
print_disclaimers=0
c59b13
c59b13
ret=0
c59b13
078ac8
while getopts "dek:c:mv" opt; do
c59b13
	case "${opt}" in
078ac8
	d)
078ac8
		print_disclaimers=1
078ac8
		early_check=2
078ac8
		;;
c59b13
	e)
c59b13
		early_check=1
c59b13
		;;
c59b13
	k)
c59b13
		kver="$OPTARG"
c59b13
		;;
c59b13
	c)
c59b13
		configs="$configs $OPTARG"
c59b13
		;;
c59b13
	m)
c59b13
		match_model=1
c59b13
		;;
c59b13
	v)
c59b13
		verbose=1
c59b13
		;;
c59b13
	*)
c59b13
		usage
c59b13
		exit 1;
c59b13
		;;
c59b13
	esac
c59b13
done
c59b13
3a6b56
: "${configs:=$(find "${MC_CAVEATS_DATA_DIR}" -maxdepth 1 -mindepth 1 -type d -printf "%f\n")}"
c59b13
c59b13
cpu_model=$(get_model_string)
c59b13
cpu_model_name=$(get_model_name)
c59b13
cpu_vendor=$(get_vendor_id)
c59b13
c59b13
ret_paths=""
c59b13
ok_paths=""
c59b13
fail_paths=""
c59b13
c59b13
ret_cfgs=""
c59b13
ok_cfgs=""
c59b13
fail_cfgs=""
c59b13
c59b13
skip_cfgs=""
c59b13
c59b13
if [ 1 -eq "$early_check" ]; then
c59b13
	stage="early"
c59b13
else
c59b13
	stage="late"
c59b13
fi
c59b13
c59b13
c59b13
for cfg in $(echo "${configs}"); do
c59b13
	dir="$MC_CAVEATS_DATA_DIR/$cfg"
c59b13
c59b13
	# We add cfg to the skip list first and then, if we do not skip it,
c59b13
	# we remove the configuration from the list.
c59b13
	skip_cfgs="$skip_cfgs $cfg"
c59b13
c59b13
	[ -r "${dir}/readme" ] || {
c59b13
		debug "File 'readme' in ${dir} is not found, skipping"
c59b13
		continue
c59b13
	}
c59b13
c59b13
	[ -r "${dir}/config" ] || {
c59b13
		debug "File 'config' in ${dir} is not found, skipping"
c59b13
		continue
c59b13
	}
c59b13
c59b13
	cfg_model=
c59b13
	cfg_vendor=
c59b13
	cfg_path=
c59b13
	cfg_kvers=
c59b13
	cfg_kvers_early=
c59b13
	cfg_blacklist=
c59b13
	cfg_mc_min_ver_late=
c59b13
	cfg_disable=
3a6b56
	cfg_pci=
6e6257
	cfg_dmi=
c59b13
c59b13
	while read -r key value; do
c59b13
		case "$key" in
c59b13
		model)
c59b13
			cfg_model="$value"
c59b13
			;;
c59b13
		vendor)
c59b13
			cfg_vendor="$value"
c59b13
			;;
c59b13
		path)
c59b13
			cfg_path="$cfg_path $value"
c59b13
			;;
c59b13
		kernel)
c59b13
			cfg_kvers="$cfg_kvers $value"
c59b13
			;;
c59b13
		kernel_early)
c59b13
			cfg_kvers_early="$cfg_kvers_early $value"
c59b13
			;;
c59b13
		mc_min_ver_late)
c59b13
			cfg_mc_min_ver_late="$value"
c59b13
			;;
c59b13
		disable)
c59b13
			cfg_disable="$cfg_disable $value "
c59b13
			;;
c59b13
		blacklist)
c59b13
			cfg_blacklist=1
6e6257
			# "blacklist" is special: it stops entity parsing,
6e6257
			# and the rest of file is a list of blacklisted model
6e6257
			# names.
6e6257
			break
3a6b56
			;;
3a6b56
		pci_config_val)
3a6b56
			cfg_pci="$cfg_pci
3a6b56
				$value"
3a6b56
			;;
6e6257
		dmi)
6e6257
			cfg_dmi="$cfg_dmi
6e6257
				$value"
6e6257
			;;
3a6b56
		'#'*|'')
3a6b56
			continue
3a6b56
			;;
3a6b56
		*)
3a6b56
			debug "Unknown key '$key' (value '$value') in config" \
3a6b56
			      "'$cfg'"
c59b13
			;;
c59b13
		esac
c59b13
	done < "${dir}/config"
c59b13
c59b13
	[ -z "${cfg_blacklist}" ] || \
c59b13
		cfg_blacklist=$(/bin/sed -n '/^blacklist$/,$p' "${dir}/config" |
c59b13
					/usr/bin/tail -n +2)
c59b13
c59b13
	debug "${cfg}: model '$cfg_model', path '$cfg_path', kvers '$cfg_kvers'"
c59b13
	debug "${cfg}: blacklist '$cfg_blacklist'"
c59b13
c59b13
	# Check for override files in the following order:
c59b13
	#  - disallow early/late specific caveat for specific kernel
c59b13
	#  - force early/late specific caveat for specific kernel
c59b13
	#  - disallow specific caveat for specific kernel
c59b13
	#  - force specific caveat for specific kernel
c59b13
	#
c59b13
	#  - disallow early/late specific caveat for any kernel
c59b13
	#  - disallow early/late any caveat for specific kernel
c59b13
	#  - force early/late specific caveat for any kernel
c59b13
	#  - force early/late any caveat for specific kernel
c59b13
	#  - disallow specific caveat for any kernel
c59b13
	#  - disallow any caveat for specific kernel
c59b13
	#  - force specific caveat for any kernel
c59b13
	#  - force any caveat for specific kernel
c59b13
	#
c59b13
	#  - disallow early/late everything
c59b13
	#  - force early/late everyhting
c59b13
	#  - disallow everything
c59b13
	#  - force everyhting
c59b13
	ignore_cfg=0
c59b13
	force_cfg=0
c59b13
	override_file=""
c59b13
	overrides="
c59b13
	0:$FW_DIR/$kver/disallow-$stage-$cfg
c59b13
	1:$FW_DIR/$kver/force-$stage-$cfg
c59b13
	0:$FW_DIR/$kver/disallow-$cfg
c59b13
	1:$FW_DIR/$kver/force-$cfg
c59b13
	0:$FW_DIR/$kver/disallow-$stage
c59b13
	0:$CFG_DIR/disallow-$stage-$cfg
c59b13
	1:$FW_DIR/$kver/force-$stage
c59b13
	1:$CFG_DIR/force-$stage-$cfg
c59b13
	0:$FW_DIR/$kver/disallow
c59b13
	0:$CFG_DIR/disallow-$cfg
c59b13
	1:$FW_DIR/$kver/force
c59b13
	1:$CFG_DIR/force-$cfg
c59b13
	0:$CFG_DIR/disallow-$stage
c59b13
	1:$CFG_DIR/force-$stage
c59b13
	0:$CFG_DIR/disallow
c59b13
	1:$CFG_DIR/force"
c59b13
	for o in $(echo "$overrides"); do
c59b13
		o_force=${o%%:*}
c59b13
		override_file=${o#$o_force:}
c59b13
c59b13
		[ -e "$override_file" ] || continue
c59b13
c59b13
		if [ 0 -eq "$o_force" ]; then
c59b13
			ignore_cfg=1
c59b13
		else
c59b13
			force_cfg=1
c59b13
		fi
c59b13
c59b13
		break
c59b13
	done
c59b13
c59b13
	[ 0 -eq "$ignore_cfg" ] || {
c59b13
		debug "Configuration \"$cfg\" is ignored due to presence of" \
c59b13
		      "\"$override_file\"."
c59b13
		continue
c59b13
	}
c59b13
c59b13
	# Check model if model filter is enabled
c59b13
	if [ 1 -eq "$match_model" -a  -n "$cfg_model" ]; then
c59b13
		[ "x$cpu_model" = "x$cfg_model" ] || {
c59b13
			debug "Current CPU model '$cpu_model' doesn't" \
c59b13
			      "match configuration CPU model '$cfg_model'," \
c59b13
			      "skipping"
c59b13
			continue
c59b13
		}
c59b13
	fi
c59b13
c59b13
	# Check paths if model filter is enabled
c59b13
	if [ 1 -eq "$match_model" -a  -n "$cfg_path" ]; then
c59b13
		cpu_mc_path="$MC_CAVEATS_DATA_DIR/$cfg/$(get_mc_path \
c59b13
			"$cpu_vendor" "${cpu_model#* }")"
c59b13
		cfg_mc_present=0
c59b13
c59b13
		for p in $(printf "%s" "$cfg_path"); do
3a6b56
			{ /usr/bin/find "$MC_CAVEATS_DATA_DIR/$cfg" \
3a6b56
				-path "$MC_CAVEATS_DATA_DIR/$cfg/$p" -print0;
3a6b56
			  /bin/true; } \
3a6b56
			    | /bin/grep -zFxq "$cpu_mc_path" \
c59b13
			    || continue
c59b13
c59b13
			cfg_mc_present=1
3a6b56
			break
c59b13
		done
c59b13
c59b13
		[ 1 = "$cfg_mc_present" ] || {
c59b13
			debug "No matching microcode files in '$cfg_path'" \
c59b13
			      "for CPU model '$cpu_model', skipping"
c59b13
			continue
c59b13
		}
c59b13
	fi
c59b13
c59b13
	# Check vendor if model filter is enabled
c59b13
	if [ 1 -eq "$match_model" -a  -n "$cfg_vendor" ]; then
c59b13
		[ "x$cpu_vendor" = "x$cfg_vendor" ] || {
c59b13
			debug "Current CPU vendor '$cpu_vendor' doesn't" \
c59b13
			      "match configuration CPU vendor '$cfg_vendor'," \
c59b13
			      "skipping"
c59b13
			continue
c59b13
		}
c59b13
	fi
c59b13
c59b13
	# Check configuration files
c59b13
c59b13
	ret_cfgs="$ret_cfgs $cfg"
c59b13
	ret_paths="$ret_paths $cfg_path"
c59b13
	skip_cfgs="${skip_cfgs% $cfg}"
c59b13
c59b13
	[ 0 -eq "$force_cfg" ] || {
c59b13
		debug "Checks for configuration \"$cfg\" are ignored due to" \
c59b13
		      "presence of \"$override_file\"."
c59b13
c59b13
		ok_cfgs="$ok_cfgs $cfg"
c59b13
		ok_paths="$ok_paths $cfg_path"
c59b13
c59b13
		continue
c59b13
	}
c59b13
c59b13
	[ "x${cfg_disable%%* $stage *}" = "x$cfg_disable" ] || {
c59b13
		debug "${cfg}: caveat is disabled in configuration"
c59b13
		fail
c59b13
		continue
c59b13
	}
c59b13
c59b13
	# Check late load kernel version
c59b13
	if [ 1 -ne "$early_check" -a -n "$cfg_kvers" ]; then
c59b13
		check_kver "$kver" $cfg_kvers || {
c59b13
			debug "${cfg}: late load kernel version check for" \
c59b13
			      " '$kver' against '$cfg_kvers' failed"
c59b13
			fail
c59b13
			continue
c59b13
		}
c59b13
	fi
c59b13
c59b13
	# Check early load kernel version
c59b13
	if [ 0 -ne "$early_check" -a -n "$cfg_kvers_early" ]; then
c59b13
		check_kver "$kver" $cfg_kvers_early || {
c59b13
			debug "${cfg}: early load kernel version check for" \
c59b13
			      "'$kver' against '$cfg_kvers_early' failed"
c59b13
			fail
c59b13
			continue
c59b13
		}
c59b13
	fi
c59b13
c59b13
	# Check model blacklist
c59b13
	if [ -n "$cfg_blacklist" ]; then
c59b13
		echo "$cfg_blacklist" | /bin/grep -vqFx "${cpu_model_name}" || {
c59b13
			debug "${cfg}: model '${cpu_model_name}' is blacklisted"
c59b13
			fail
c59b13
			continue
c59b13
		}
c59b13
	fi
c59b13
c59b13
	# Check current microcode version for the late update
c59b13
	if [ -n "$cfg_mc_min_ver_late" -a 1 -ne "$early_check" -a \
c59b13
	   "x$cpu_model" = "x$cfg_model" ]; then
c59b13
		cpu_mc_ver="$(get_mc_ver)"
c59b13
c59b13
		[ 1 -eq $((cpu_mc_ver >= cfg_mc_min_ver_late)) ] || {
c59b13
			debug "${cfg}: CPU microcode version $cpu_mc_ver" \
c59b13
			      "failed check (should be at least" \
c59b13
			      "${cfg_mc_min_ver_late})"
c59b13
			fail
c59b13
			continue
c59b13
		}
c59b13
	fi
c59b13
3a6b56
	# Check PCI devices if model filter is enabled
3a6b56
	# Note that the model filter check is done inside check_pci_config_val
3a6b56
	# based on the 'mode=' parameter.
3a6b56
	if [ -n "$cfg_pci" ]; then
ebb8cf
		pci_line="$(printf "%s\n" "$cfg_pci" | while read -r pci_line; do
ebb8cf
				[ -n "$pci_line" ] || continue
ebb8cf
				pci_res=$(check_pci_config_val "$pci_line" \
ebb8cf
							       "$match_model")
ebb8cf
				[ 0 != "$pci_res" ] || continue
ebb8cf
				echo "$pci_res $pci_line"
ebb8cf
				break
ebb8cf
			done
ebb8cf
			echo "0 ")"
ebb8cf
ebb8cf
		[ -z "${pci_line#* }" ] || {
ebb8cf
			debug "PCI configuration word check '${pci_line#* }'" \
ebb8cf
			      "failed (with return code ${pci_line%% *})"
3a6b56
			fail
3a6b56
			continue
3a6b56
		}
3a6b56
	fi
3a6b56
6e6257
	# Check DMI data if model filter is enabled
6e6257
	# Note that the model filter check is done inside check_pci_config_val
6e6257
	# based on the 'mode=' parameter.
6e6257
	if [ -n "$cfg_dmi" ]; then
6e6257
		dmi_line="$(printf "%s\n" "$cfg_dmi" | while read -r dmi_line
6e6257
			do
6e6257
				[ -n "$dmi_line" ] || continue
6e6257
				dmi_res=$(check_dmi_val "$dmi_line" \
6e6257
							"$match_model")
6e6257
				[ 0 != "$dmi_res" ] || continue
6e6257
				echo "$dmi_res $dmi_line"
6e6257
				break
6e6257
			done
6e6257
			echo "0 ")"
6e6257
6e6257
		[ -z "${dmi_line#* }" ] || {
6e6257
			debug "DMI data check '${dmi_line#* }'" \
6e6257
			      "failed (with return code ${dmi_line%% *})"
6e6257
			fail
6e6257
			continue
6e6257
		}
6e6257
	fi
6e6257
c59b13
	ok_cfgs="$ok_cfgs $cfg"
c59b13
	ok_paths="$ok_paths $cfg_path"
c59b13
done
c59b13
078ac8
[ 0 -eq "$print_disclaimers" ] || exit 0
078ac8
c59b13
echo "cfgs$ret_cfgs"
c59b13
echo "skip_cfgs$skip_cfgs"
c59b13
echo "paths$ret_paths"
c59b13
echo "ok_cfgs$ok_cfgs"
c59b13
echo "ok_paths$ok_paths"
c59b13
echo "fail_cfgs$fail_cfgs"
c59b13
echo "fail_paths$fail_paths"
c59b13
c59b13
exit $ret