test-functions revision 898720b7e9cf3bdf7a93e435cbed5dd6942ecf9b
0N/A#!/bin/bash
0N/A# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
0N/A# ex: ts=8 sw=4 sts=4 et filetype=sh
0N/APATH=/sbin:/bin:/usr/sbin:/usr/bin
0N/Aexport PATH
0N/A
0N/Asetup_basic_dirs() {
0N/A for d in usr/bin usr/sbin bin etc lib "$libdir" sbin tmp usr var var/log; do
0N/A [[ -e "${initdir}${prefix}/$d" ]] && continue
0N/A if [ -L "/$d" ]; then
0N/A inst_symlink "/$d" "${prefix}/$d"
0N/A else
0N/A mkdir -m 0755 -p "${initdir}${prefix}/$d"
0N/A fi
0N/A done
0N/A
0N/A for d in dev proc sys sysroot root run run/lock run/initramfs; do
0N/A if [ -L "/$d" ]; then
873N/A inst_symlink "/$d"
0N/A else
0N/A mkdir -m 0755 -p "$initdir/$d"
0N/A fi
0N/A done
0N/A
3215N/A ln -sfn /run "$initdir/var/run"
0N/A ln -sfn /run/lock "$initdir/var/lock"
0N/A}
2086N/A
0N/Ainst_libs() {
1774N/A local _bin=$1
1774N/A local _so_regex='([^ ]*/lib[^/]*/[^ ]*\.so[^ ]*)'
1280N/A local _file _line
1400N/A
2086N/A LC_ALL=C ldd "$_bin" 2>/dev/null | while read _line; do
835N/A [[ $_line = 'not a dynamic executable' ]] && break
0N/A
0N/A if [[ $_line =~ $_so_regex ]]; then
1130N/A _file=${BASH_REMATCH[1]}
0N/A [[ -e ${initdir}/$_file ]] && continue
1787N/A inst_library "$_file"
835N/A continue
1130N/A fi
0N/A
0N/A if [[ $_line =~ not\ found ]]; then
1130N/A dfatal "Missing a shared library required by $_bin."
1130N/A dfatal "Run \"ldd $_bin\" to find out what it is."
1130N/A dfatal "$_line"
1130N/A dfatal "dracut cannot create an initrd."
1130N/A exit 1
1130N/A fi
0N/A done
835N/A}
0N/A
1774N/Aimport_testdir() {
0N/A STATEFILE=".testdir"
1774N/A [[ -e $STATEFILE ]] && . $STATEFILE
0N/A if [[ -z "$TESTDIR" ]] || [[ ! -d "$TESTDIR" ]]; then
338N/A TESTDIR=$(mktemp --tmpdir=/var/tmp -d -t systemd-test.XXXXXX)
0N/A echo "TESTDIR=\"$TESTDIR\"" > $STATEFILE
0N/A export TESTDIR
1774N/A fi
1774N/A}
0N/A
0N/A## @brief Converts numeric logging level to the first letter of level name.
0N/A#
0N/A# @param lvl Numeric logging level in range from 1 to 6.
1774N/A# @retval 1 if @a lvl is out of range.
1774N/A# @retval 0 if @a lvl is correct.
0N/A# @result Echoes first letter of level name.
835N/A_lvl2char() {
1774N/A case "$1" in
1774N/A 1) echo F;;
835N/A 2) echo E;;
1400N/A 3) echo W;;
1400N/A 4) echo I;;
1400N/A 5) echo D;;
1400N/A 6) echo T;;
1400N/A *) return 1;;
868N/A esac
0N/A}
0N/A
0N/A## @brief Internal helper function for _do_dlog()
0N/A#
0N/A# @param lvl Numeric logging level.
0N/A# @param msg Message.
0N/A# @retval 0 It's always returned, even if logging failed.
1774N/A#
0N/A# @note This function is not supposed to be called manually. Please use
0N/A# dtrace(), ddebug(), or others instead which wrap this one.
1774N/A#
1774N/A# This function calls _do_dlog() either with parameter msg, or if
1774N/A# none is given, it will read standard input and will use every line as
1774N/A# a message.
1774N/A#
1774N/A# This enables:
1774N/A# dwarn "This is a warning"
1774N/A# echo "This is a warning" | dwarn
1774N/ALOG_LEVEL=4
1774N/A
1774N/Adlog() {
1774N/A [ -z "$LOG_LEVEL" ] && return 0
1774N/A [ $1 -le $LOG_LEVEL ] || return 0
1774N/A local lvl="$1"; shift
1774N/A local lvlc=$(_lvl2char "$lvl") || return 0
1774N/A
0N/A if [ $# -ge 1 ]; then
0N/A echo "$lvlc: $*"
0N/A else
0N/A while read line; do
0N/A echo "$lvlc: " "$line"
0N/A done
1774N/A fi
1774N/A}
1774N/A
1774N/A## @brief Logs message at TRACE level (6)
0N/A#
0N/A# @param msg Message.
1774N/A# @retval 0 It's always returned, even if logging failed.
0N/Adtrace() {
0N/A set +x
0N/A dlog 6 "$@"
1774N/A [ -n "$debug" ] && set -x || :
1774N/A}
0N/A
0N/A## @brief Logs message at DEBUG level (5)
0N/A#
0N/A# @param msg Message.
1774N/A# @retval 0 It's always returned, even if logging failed.
1774N/Addebug() {
0N/A set +x
1774N/A dlog 5 "$@"
1774N/A [ -n "$debug" ] && set -x || :
0N/A}
0N/A
0N/A## @brief Logs message at INFO level (4)
1774N/A#
1774N/A# @param msg Message.
0N/A# @retval 0 It's always returned, even if logging failed.
0N/Adinfo() {
0N/A set +x
1774N/A dlog 4 "$@"
1774N/A [ -n "$debug" ] && set -x || :
0N/A}
1774N/A
0N/A## @brief Logs message at WARN level (3)
3888N/A#
1774N/A# @param msg Message.
1774N/A# @retval 0 It's always returned, even if logging failed.
0N/Adwarn() {
0N/A set +x
1774N/A dlog 3 "$@"
1774N/A [ -n "$debug" ] && set -x || :
0N/A}
0N/A
0N/A## @brief Logs message at ERROR level (2)
0N/A#
0N/A# @param msg Message.
0N/A# @retval 0 It's always returned, even if logging failed.
0N/Aderror() {
0N/A set +x
0N/A dlog 2 "$@"
0N/A [ -n "$debug" ] && set -x || :
0N/A}
0N/A
0N/A## @brief Logs message at FATAL level (1)
0N/A#
1774N/A# @param msg Message.
1774N/A# @retval 0 It's always returned, even if logging failed.
1774N/Adfatal() {
1130N/A set +x
1130N/A dlog 1 "$@"
1130N/A [ -n "$debug" ] && set -x || :
1130N/A}
1130N/A
0N/A
1130N/A# Generic substring function. If $2 is in $1, return 0.
1130N/Astrstr() { [ "${1#*$2*}" != "$1" ]; }
0N/A
1130N/A# normalize_path <path>
1130N/A# Prints the normalized path, where it removes any duplicated
1130N/A# and trailing slashes.
0N/A# Example:
0N/A# $ normalize_path ///test/test//
0N/A# /test/test
1774N/Anormalize_path() {
0N/A shopt -q -s extglob
2999N/A set -- "${1//+(\/)//}"
2999N/A shopt -q -u extglob
2999N/A echo "${1%/}"
0N/A}
1774N/A
0N/A# convert_abs_rel <from> <to>
0N/A# Prints the relative path, when creating a symlink to <to> from <from>.
0N/A# Example:
0N/A# $ convert_abs_rel /usr/bin/test /bin/test-2
0N/A# ../../bin/test-2
0N/A# $ ln -s $(convert_abs_rel /usr/bin/test /bin/test-2) /usr/bin/test
0N/Aconvert_abs_rel() {
0N/A local __current __absolute __abssize __cursize __newpath
1774N/A local -i __i __level
1774N/A
1774N/A set -- "$(normalize_path "$1")" "$(normalize_path "$2")"
1774N/A
1774N/A # corner case #1 - self looping link
1774N/A [[ "$1" == "$2" ]] && { echo "${1##*/}"; return; }
0N/A
2999N/A # corner case #2 - own dir link
1774N/A [[ "${1%/*}" == "$2" ]] && { echo "."; return; }
1774N/A
1774N/A IFS="/" __current=($1)
1774N/A IFS="/" __absolute=($2)
2999N/A
0N/A __abssize=${#__absolute[@]}
1774N/A __cursize=${#__current[@]}
1774N/A
0N/A while [[ ${__absolute[__level]} == ${__current[__level]} ]]
2999N/A do
1774N/A (( __level++ ))
2624N/A if (( __level > __abssize || __level > __cursize ))
0N/A then
1774N/A break
1774N/A fi
1774N/A done
1774N/A
2999N/A for ((__i = __level; __i < __cursize-1; __i++))
2999N/A do
2999N/A if ((__i > __level))
2999N/A then
2999N/A __newpath=$__newpath"/"
2999N/A fi
2999N/A __newpath=$__newpath".."
2999N/A done
2624N/A
2999N/A for ((__i = __level; __i < __abssize; __i++))
2999N/A do
2999N/A if [[ -n $__newpath ]]
2999N/A then
2999N/A __newpath=$__newpath"/"
3001N/A fi
3001N/A __newpath=$__newpath${__absolute[__i]}
2999N/A done
2999N/A
2999N/A echo "$__newpath"
2999N/A}
2999N/A
2999N/A
2999N/A# Install a directory, keeping symlinks as on the original system.
2999N/A# Example: if /lib points to /lib64 on the host, "inst_dir /lib/file"
2999N/A# will create ${initdir}/lib64, ${initdir}/lib64/file,
2999N/A# and a symlink ${initdir}/lib -> lib64.
2999N/Ainst_dir() {
2999N/A [[ -e ${initdir}/"$1" ]] && return 0 # already there
2999N/A
2999N/A local _dir="$1" _part="${1%/*}" _file
2999N/A while [[ "$_part" != "${_part%/*}" ]] && ! [[ -e "${initdir}/${_part}" ]]; do
2999N/A _dir="$_part $_dir"
2999N/A _part=${_part%/*}
1774N/A done
2999N/A
2999N/A # iterate over parent directories
2999N/A for _file in $_dir; do
2999N/A [[ -e "${initdir}/$_file" ]] && continue
0N/A if [[ -L $_file ]]; then
0N/A inst_symlink "$_file"
0N/A else
0N/A # create directory
0N/A mkdir -m 0755 -p "${initdir}/$_file" || return 1
0N/A [[ -e "$_file" ]] && chmod --reference="$_file" "${initdir}/$_file"
2999N/A chmod u+w "${initdir}/$_file"
2999N/A fi
2999N/A done
2999N/A}
2999N/A
2999N/A# $1 = file to copy to ramdisk
2999N/A# $2 (optional) Name for the file on the ramdisk
2999N/A# Location of the image dir is assumed to be $initdir
2999N/A# We never overwrite the target if it exists.
2999N/Ainst_simple() {
2999N/A [[ -f "$1" ]] || return 1
2999N/A strstr "$1" "/" || return 1
2999N/A
2999N/A local _src=$1 target="${2:-$1}"
2999N/A if ! [[ -d ${initdir}/$target ]]; then
2999N/A [[ -e ${initdir}/$target ]] && return 0
2999N/A [[ -L ${initdir}/$target ]] && return 0
2999N/A [[ -d "${initdir}/${target%/*}" ]] || inst_dir "${target%/*}"
2999N/A fi
2999N/A # install checksum files also
2999N/A if [[ -e "${_src%/*}/.${_src##*/}.hmac" ]]; then
2999N/A inst "${_src%/*}/.${_src##*/}.hmac" "${target%/*}/.${target##*/}.hmac"
2999N/A fi
2999N/A ddebug "Installing $_src"
2999N/A cp --sparse=always -pfL "$_src" "${initdir}/$target"
2999N/A}
2999N/A
2999N/A# find symlinks linked to given library file
2999N/A# $1 = library file
2999N/A# Function searches for symlinks by stripping version numbers appended to
2999N/A# library filename, checks if it points to the same target and finally
2999N/A# prints the list of symlinks to stdout.
2999N/A#
2999N/A# Example:
2999N/A# rev_lib_symlinks libfoo.so.8.1
2999N/A# output: libfoo.so.8 libfoo.so
2999N/A# (Only if libfoo.so.8 and libfoo.so exists on host system.)
2999N/Arev_lib_symlinks() {
2999N/A [[ ! $1 ]] && return 0
2999N/A
2999N/A local fn="$1" orig="$(readlink -f "$1")" links=''
2999N/A
2999N/A [[ ${fn} =~ .*\.so\..* ]] || return 1
2999N/A
2999N/A until [[ ${fn##*.} == so ]]; do
2999N/A fn="${fn%.*}"
2999N/A [[ -L ${fn} && $(readlink -f "${fn}") == ${orig} ]] && links+=" ${fn}"
2999N/A done
2999N/A
2999N/A echo "${links}"
2999N/A}
2999N/A
2999N/A# Same as above, but specialized to handle dynamic libraries.
2999N/A# It handles making symlinks according to how the original library
0N/A# is referenced.
0N/Ainst_library() {
0N/A local _src="$1" _dest=${2:-$1} _lib _reallib _symlink
1774N/A strstr "$1" "/" || return 1
0N/A [[ -e $initdir/$_dest ]] && return 0
1774N/A if [[ -L $_src ]]; then
1774N/A # install checksum files also
2086N/A if [[ -e "${_src%/*}/.${_src##*/}.hmac" ]]; then
1774N/A inst "${_src%/*}/.${_src##*/}.hmac" "${_dest%/*}/.${_dest##*/}.hmac"
1774N/A fi
1774N/A _reallib=$(readlink -f "$_src")
1774N/A inst_simple "$_reallib" "$_reallib"
1774N/A inst_dir "${_dest%/*}"
1774N/A [[ -d "${_dest%/*}" ]] && _dest=$(readlink -f "${_dest%/*}")/${_dest##*/}
1774N/A ln -sfn $(convert_abs_rel "${_dest}" "${_reallib}") "${initdir}/${_dest}"
1774N/A else
2624N/A inst_simple "$_src" "$_dest"
0N/A fi
1774N/A
1774N/A # Create additional symlinks. See rev_symlinks description.
1774N/A for _symlink in $(rev_lib_symlinks $_src) $(rev_lib_symlinks $_reallib); do
2086N/A [[ ! -e $initdir/$_symlink ]] && {
1774N/A ddebug "Creating extra symlink: $_symlink"
0N/A inst_symlink $_symlink
0N/A }
1774N/A done
0N/A}
835N/A
835N/A# find a binary. If we were not passed the full path directly,
835N/A# search in the usual places to find the binary.
835N/Afind_binary() {
1774N/A if [[ -z ${1##/*} ]]; then
835N/A if [[ -x $1 ]] || { strstr "$1" ".so" && ldd $1 &>/dev/null; }; then
1774N/A echo $1
1774N/A return 0
835N/A fi
1774N/A fi
2086N/A
1774N/A type -P $1
1774N/A}
1774N/A
1774N/A# Same as above, but specialized to install binary executables.
1774N/A# Install binary executable, and all shared library dependencies, if any.
1774N/Ainst_binary() {
1774N/A local _bin _target
1774N/A _bin=$(find_binary "$1") || return 1
2086N/A _target=${2:-$_bin}
1774N/A [[ -e $initdir/$_target ]] && return 0
1774N/A [[ -L $_bin ]] && inst_symlink $_bin $_target && return 0
1774N/A local _file _line
1774N/A local _so_regex='([^ ]*/lib[^/]*/[^ ]*\.so[^ ]*)'
2086N/A # I love bash!
1774N/A LC_ALL=C ldd "$_bin" 2>/dev/null | while read _line; do
1774N/A [[ $_line = 'not a dynamic executable' ]] && break
1774N/A
1774N/A if [[ $_line =~ $_so_regex ]]; then
835N/A _file=${BASH_REMATCH[1]}
835N/A [[ -e ${initdir}/$_file ]] && continue
835N/A inst_library "$_file"
835N/A continue
835N/A fi
1774N/A
1774N/A if [[ $_line =~ not\ found ]]; then
1774N/A dfatal "Missing a shared library required by $_bin."
1774N/A dfatal "Run \"ldd $_bin\" to find out what it is."
1774N/A dfatal "$_line"
1774N/A dfatal "dracut cannot create an initrd."
1774N/A exit 1
1774N/A fi
1774N/A done
1774N/A inst_simple "$_bin" "$_target"
1774N/A}
835N/A
835N/A# same as above, except for shell scripts.
835N/A# If your shell script does not start with shebang, it is not a shell script.
835N/Ainst_script() {
835N/A local _bin
835N/A _bin=$(find_binary "$1") || return 1
835N/A shift
835N/A local _line _shebang_regex
835N/A read -r -n 80 _line <"$_bin"
1774N/A # If debug is set, clean unprintable chars to prevent messing up the term
835N/A [[ $debug ]] && _line=$(echo -n "$_line" | tr -c -d '[:print:][:space:]')
835N/A _shebang_regex='(#! *)(/[^ ]+).*'
835N/A [[ $_line =~ $_shebang_regex ]] || return 1
835N/A inst "${BASH_REMATCH[2]}" && inst_simple "$_bin" "$@"
835N/A}
835N/A
835N/A# same as above, but specialized for symlinks
835N/Ainst_symlink() {
835N/A local _src=$1 _target=${2:-$1} _realsrc
835N/A strstr "$1" "/" || return 1
835N/A [[ -L $1 ]] || return 1
835N/A [[ -L $initdir/$_target ]] && return 0
1130N/A _realsrc=$(readlink -f "$_src")
1774N/A if ! [[ -e $initdir/$_realsrc ]]; then
1774N/A if [[ -d $_realsrc ]]; then
1130N/A inst_dir "$_realsrc"
1787N/A else
1130N/A inst "$_realsrc"
1130N/A fi
1130N/A fi
1130N/A [[ ! -e $initdir/${_target%/*} ]] && inst_dir "${_target%/*}"
1130N/A [[ -d ${_target%/*} ]] && _target=$(readlink -f ${_target%/*})/${_target##*/}
1787N/A ln -sfn $(convert_abs_rel "${_target}" "${_realsrc}") "$initdir/$_target"
1787N/A}
1787N/A
1787N/A# attempt to install any programs specified in a udev rule
1130N/Ainst_rule_programs() {
1787N/A local _prog _bin
1130N/A
1130N/A if grep -qE 'PROGRAM==?"[^ "]+' "$1"; then
1787N/A for _prog in $(grep -E 'PROGRAM==?"[^ "]+' "$1" | sed -r 's/.*PROGRAM==?"([^ "]+).*/\1/'); do
1130N/A if [ -x /lib/udev/$_prog ]; then
1774N/A _bin=/lib/udev/$_prog
1774N/A else
1787N/A _bin=$(find_binary "$_prog") || {
1787N/A dinfo "Skipping program $_prog using in udev rule $(basename $1) as it cannot be found"
1130N/A continue;
1130N/A }
1130N/A fi
1130N/A
1130N/A #dinfo "Installing $_bin due to it's use in the udev rule $(basename $1)"
1774N/A dracut_install "$_bin"
1130N/A done
2624N/A fi
1774N/A}
1774N/A
1774N/A# udev rules always get installed in the same place, so
1774N/A# create a function to install them to make life simpler.
1130N/Ainst_rules() {
1130N/A local _target=/etc/udev/rules.d _rule _found
1130N/A
1130N/A inst_dir "/lib/udev/rules.d"
3065N/A inst_dir "$_target"
3065N/A for _rule in "$@"; do
3065N/A if [ "${rule#/}" = "$rule" ]; then
2999N/A for r in /lib/udev/rules.d /etc/udev/rules.d; do
2999N/A if [[ -f $r/$_rule ]]; then
2999N/A _found="$r/$_rule"
1130N/A inst_simple "$_found"
1787N/A inst_rule_programs "$_found"
1787N/A fi
1787N/A done
1787N/A fi
1787N/A for r in '' ./ $dracutbasedir/rules.d/; do
1787N/A if [[ -f ${r}$_rule ]]; then
1787N/A _found="${r}$_rule"
2086N/A inst_simple "$_found" "$_target/${_found##*/}"
1787N/A inst_rule_programs "$_found"
1787N/A fi
1787N/A done
1787N/A [[ $_found ]] || dinfo "Skipping udev rule: $_rule"
1787N/A done
1787N/A}
1787N/A
2086N/A# general purpose installation function
1787N/A# Same args as above.
1787N/Ainst() {
1787N/A local _x
1787N/A
1787N/A case $# in
1787N/A 1) ;;
1787N/A 2) [[ ! $initdir && -d $2 ]] && export initdir=$2
1787N/A [[ $initdir = $2 ]] && set $1;;
2086N/A 3) [[ -z $initdir ]] && export initdir=$2
3798N/A set $1 $3;;
3798N/A *) dfatal "inst only takes 1 or 2 or 3 arguments"
3798N/A exit 1;;
3798N/A esac
3798N/A for _x in inst_symlink inst_script inst_binary inst_simple; do
2086N/A $_x "$@" && return 0
1787N/A done
1787N/A return 1
1130N/A}
1130N/A
1130N/A# install any of listed files
1130N/A#
1130N/A# If first argument is '-d' and second some destination path, first accessible
2086N/A# source is installed into this path, otherwise it will installed in the same
2086N/A# path as source. If none of listed files was installed, function return 1.
2086N/A# On first successful installation it returns with 0 status.
2086N/A#
1130N/A# Example:
1130N/A#
0N/A# inst_any -d /bin/foo /bin/bar /bin/baz
835N/A#
# Lets assume that /bin/baz exists, so it will be installed as /bin/foo in
# initramfs.
inst_any() {
local to f
[[ $1 = '-d' ]] && to="$2" && shift 2
for f in "$@"; do
if [[ -e $f ]]; then
[[ $to ]] && inst "$f" "$to" && return 0
inst "$f" && return 0
fi
done
return 1
}
# dracut_install [-o ] <file> [<file> ... ]
# Install <file> to the initramfs image
# -o optionally install the <file> and don't fail, if it is not there
dracut_install() {
local _optional=no
if [[ $1 = '-o' ]]; then
_optional=yes
shift
fi
while (($# > 0)); do
if ! inst "$1" ; then
if [[ $_optional = yes ]]; then
dinfo "Skipping program $1 as it cannot be found and is" \
"flagged to be optional"
else
dfatal "Failed to install $1"
exit 1
fi
fi
shift
done
}
# inst_libdir_file [-n <pattern>] <file> [<file>...]
# Install a <file> located on a lib directory to the initramfs image
# -n <pattern> install non-matching files
inst_libdir_file() {
if [[ "$1" == "-n" ]]; then
local _pattern=$1
shift 2
for _dir in $libdirs; do
for _i in "$@"; do
for _f in "$_dir"/$_i; do
[[ "$_i" =~ $_pattern ]] || continue
[[ -e "$_i" ]] && dracut_install "$_i"
done
done
done
else
for _dir in $libdirs; do
for _i in "$@"; do
for _f in "$_dir"/$_i; do
[[ -e "$_f" ]] && dracut_install "$_f"
done
done
done
fi
}
do_test() {
[[ $UID != "0" ]] && exit 0
command -v qemu-kvm &>/dev/null || exit 0
# Detect lib paths
[[ $libdir ]] || for libdir in /lib64 /lib; do
[[ -d $libdir ]] && libdirs+=" $libdir" && break
done
[[ $usrlibdir ]] || for usrlibdir in /usr/lib64 /usr/lib; do
[[ -d $usrlibdir ]] && libdirs+=" $usrlibdir" && break
done
import_testdir
while (($# > 0)); do
case $1 in
--run)
echo "TEST RUN: $TEST_DESCRIPTION"
test_run
ret=$?
if [ $ret -eq 0 ]; then
echo "TEST RUN: $TEST_DESCRIPTION [OK]"
else
echo "TEST RUN: $TEST_DESCRIPTION [FAILED]"
fi
exit $ret;;
--setup)
echo "TEST SETUP: $TEST_DESCRIPTION"
test_setup
exit $?;;
--clean)
echo "TEST CLEANUP: $TEST_DESCRIPTION"
test_cleanup
rm -fr "$TESTDIR"
rm -f .testdir
exit $?;;
--all)
echo -n "TEST: $TEST_DESCRIPTION ";
(
test_setup && test_run
ret=$?
test_cleanup
rm -fr "$TESTDIR"
rm -f .testdir
exit $ret
) </dev/null >test.log 2>&1
ret=$?
if [ $ret -eq 0 ]; then
rm test.log
echo "[OK]"
else
echo "[FAILED]"
echo "see $(pwd)/test.log"
fi
exit $ret;;
*) break ;;
esac
shift
done
}