2020-10-15 12:45:57 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-01-22 08:12:00 +00:00
|
|
|
kdump_module_init() {
|
|
|
|
if ! [[ -d "${initdir}/tmp" ]]; then
|
|
|
|
mkdir -p "${initdir}/tmp"
|
|
|
|
fi
|
2020-10-15 12:45:57 +00:00
|
|
|
|
2021-01-22 08:12:00 +00:00
|
|
|
. /lib/kdump/kdump-lib.sh
|
|
|
|
}
|
2020-10-15 12:45:57 +00:00
|
|
|
|
|
|
|
check() {
|
|
|
|
[[ $debug ]] && set -x
|
|
|
|
#kdumpctl sets this explicitly
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ -z $IN_KDUMP ]] || [[ ! -f /etc/kdump.conf ]]; then
|
2020-10-15 12:45:57 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
depends() {
|
|
|
|
local _dep="base shutdown"
|
|
|
|
|
2021-01-22 08:12:00 +00:00
|
|
|
kdump_module_init
|
|
|
|
|
2020-11-20 12:35:49 +00:00
|
|
|
add_opt_module() {
|
|
|
|
[[ " $omit_dracutmodules " != *\ $1\ * ]] && _dep="$_dep $1"
|
|
|
|
}
|
|
|
|
|
2021-07-12 08:07:05 +00:00
|
|
|
if is_squash_available; then
|
2020-11-20 12:35:49 +00:00
|
|
|
add_opt_module squash
|
2020-10-15 12:45:57 +00:00
|
|
|
else
|
|
|
|
dwarning "Required modules to build a squashed kdump image is missing!"
|
|
|
|
fi
|
|
|
|
|
2020-11-20 12:35:49 +00:00
|
|
|
if is_wdt_active; then
|
|
|
|
add_opt_module watchdog
|
|
|
|
fi
|
|
|
|
|
|
|
|
if is_ssh_dump_target; then
|
|
|
|
_dep="$_dep ssh-client"
|
|
|
|
fi
|
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ "$(uname -m)" == "s390x" ]]; then
|
2020-11-20 12:35:49 +00:00
|
|
|
_dep="$_dep znet"
|
|
|
|
fi
|
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ -n "$(ls -A /sys/class/drm 2> /dev/null)" ]] || [[ -d /sys/module/hyperv_fb ]]; then
|
2020-11-20 12:35:49 +00:00
|
|
|
add_opt_module drm
|
2020-10-15 12:45:57 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if is_generic_fence_kdump || is_pcs_fence_kdump; then
|
|
|
|
_dep="$_dep network"
|
|
|
|
fi
|
|
|
|
|
2021-11-09 13:27:55 +00:00
|
|
|
echo "$_dep"
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
kdump_is_bridge() {
|
2021-11-09 13:42:45 +00:00
|
|
|
[[ -d /sys/class/net/"$1"/bridge ]]
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
kdump_is_bond() {
|
2021-11-09 13:42:45 +00:00
|
|
|
[[ -d /sys/class/net/"$1"/bonding ]]
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
kdump_is_team() {
|
2021-11-09 13:42:45 +00:00
|
|
|
[[ -f /usr/bin/teamnl ]] && teamnl "$1" ports &> /dev/null
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
kdump_is_vlan() {
|
2021-11-09 13:42:45 +00:00
|
|
|
[[ -f /proc/net/vlan/"$1" ]]
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# $1: netdev name
|
|
|
|
source_ifcfg_file() {
|
|
|
|
local ifcfg_file
|
|
|
|
|
2021-05-14 01:30:08 +00:00
|
|
|
dwarning "Network Scripts are deprecated. You are encouraged to set up network by NetworkManager."
|
2021-11-09 13:27:55 +00:00
|
|
|
ifcfg_file=$(get_ifcfg_filename "$1")
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ -f ${ifcfg_file} ]]; then
|
2021-11-09 13:27:55 +00:00
|
|
|
. "${ifcfg_file}"
|
2020-10-15 12:45:57 +00:00
|
|
|
else
|
|
|
|
dwarning "The ifcfg file of $1 is not found!"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2021-05-14 01:30:08 +00:00
|
|
|
# $1: nmcli connection show output
|
2020-10-15 12:45:57 +00:00
|
|
|
kdump_setup_dns() {
|
2021-05-14 01:30:08 +00:00
|
|
|
local _netdev="$1"
|
|
|
|
local _nm_show_cmd="$2"
|
|
|
|
local _nameserver _dns _tmp array
|
2020-10-15 12:45:57 +00:00
|
|
|
local _dnsfile=${initdir}/etc/cmdline.d/42dns.conf
|
|
|
|
|
2021-05-14 01:30:08 +00:00
|
|
|
_tmp=$(get_nmcli_value_by_field "$_nm_show_cmd" "IP4.DNS")
|
2021-11-09 13:27:55 +00:00
|
|
|
# shellcheck disable=SC2206
|
2021-11-09 13:42:45 +00:00
|
|
|
array=(${_tmp//|/ })
|
2021-11-03 07:44:30 +00:00
|
|
|
if [[ ${array[*]} ]]; then
|
2021-11-09 13:42:45 +00:00
|
|
|
for _dns in "${array[@]}"; do
|
2021-05-14 01:30:08 +00:00
|
|
|
echo "nameserver=$_dns" >> "$_dnsfile"
|
|
|
|
done
|
|
|
|
else
|
|
|
|
dwarning "Failed to get DNS info via nmcli output. Now try sourcing ifcfg script"
|
|
|
|
source_ifcfg_file "$_netdev"
|
2021-11-09 13:42:45 +00:00
|
|
|
[[ -n $DNS1 ]] && echo "nameserver=$DNS1" > "$_dnsfile"
|
|
|
|
[[ -n $DNS2 ]] && echo "nameserver=$DNS2" >> "$_dnsfile"
|
2021-05-14 01:30:08 +00:00
|
|
|
fi
|
2020-10-15 12:45:57 +00:00
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
while read -r content; do
|
2021-11-09 13:27:55 +00:00
|
|
|
_nameserver=$(echo "$content" | grep ^nameserver)
|
2021-11-09 13:42:45 +00:00
|
|
|
[[ -z $_nameserver ]] && continue
|
2020-10-15 12:45:57 +00:00
|
|
|
|
2021-11-09 13:27:55 +00:00
|
|
|
_dns=$(echo "$_nameserver" | awk '{print $2}')
|
2021-11-09 13:42:45 +00:00
|
|
|
[[ -z $_dns ]] && continue
|
2020-10-15 12:45:57 +00:00
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ ! -f $_dnsfile ]] || ! grep -q "$_dns" "$_dnsfile"; then
|
2020-10-15 12:45:57 +00:00
|
|
|
echo "nameserver=$_dns" >> "$_dnsfile"
|
|
|
|
fi
|
|
|
|
done < "/etc/resolv.conf"
|
|
|
|
}
|
|
|
|
|
2021-05-11 05:18:43 +00:00
|
|
|
# $1: repeat times
|
|
|
|
# $2: string to be repeated
|
|
|
|
# $3: separator
|
|
|
|
repeatedly_join_str() {
|
|
|
|
local _count="$1"
|
|
|
|
local _str="$2"
|
|
|
|
local _separator="$3"
|
|
|
|
local i _res
|
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ $_count -le 0 ]]; then
|
2021-05-11 05:18:43 +00:00
|
|
|
echo -n ""
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
i=0
|
|
|
|
_res="$_str"
|
|
|
|
((_count--))
|
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
while [[ $i -lt $_count ]]; do
|
2021-05-11 05:18:43 +00:00
|
|
|
((i++))
|
|
|
|
_res="${_res}${_separator}${_str}"
|
|
|
|
done
|
|
|
|
echo -n "$_res"
|
|
|
|
}
|
|
|
|
|
|
|
|
# $1: prefix
|
|
|
|
# $2: ipv6_flag="-6" indicates it's IPv6
|
|
|
|
# Given a prefix, calculate the netmask (equivalent of "ipcalc -m")
|
|
|
|
# by concatenating three parts,
|
|
|
|
# 1) the groups with all bits set 1
|
|
|
|
# 2) a group with partial bits set to 0
|
|
|
|
# 3) the groups with all bits set to 0
|
|
|
|
cal_netmask_by_prefix() {
|
|
|
|
local _prefix="$1"
|
|
|
|
local _ipv6_flag="$2" _ipv6
|
|
|
|
local _bits_per_octet=8
|
|
|
|
local _count _res _octets_per_group _octets_total _seperator _total_groups
|
|
|
|
local _max_group_value _max_group_value_repr _bits_per_group _tmp _zero_bits
|
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ $_ipv6_flag == "-6" ]]; then
|
2021-05-11 05:18:43 +00:00
|
|
|
_ipv6=1
|
|
|
|
else
|
|
|
|
_ipv6=0
|
|
|
|
fi
|
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ $_prefix -lt 0 || $_prefix -gt 128 ]] \
|
|
|
|
|| ( ((!_ipv6)) && [[ $_prefix -gt 32 ]]); then
|
2021-05-11 05:18:43 +00:00
|
|
|
derror "Bad prefix:$_prefix for calculating netmask"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ((_ipv6)); then
|
|
|
|
_octets_per_group=2
|
|
|
|
_octets_total=16
|
|
|
|
_seperator=":"
|
|
|
|
else
|
|
|
|
_octets_per_group=1
|
|
|
|
_octets_total=4
|
|
|
|
_seperator="."
|
|
|
|
fi
|
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
_total_groups=$((_octets_total / _octets_per_group))
|
2021-05-11 05:18:43 +00:00
|
|
|
_bits_per_group=$((_octets_per_group * _bits_per_octet))
|
|
|
|
_max_group_value=$(((1 << _bits_per_group) - 1))
|
|
|
|
|
|
|
|
if ((_ipv6)); then
|
|
|
|
_max_group_value_repr=$(printf "%x" $_max_group_value)
|
|
|
|
else
|
|
|
|
_max_group_value_repr="$_max_group_value"
|
|
|
|
fi
|
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
_count=$((_prefix / _octets_per_group / _bits_per_octet))
|
2021-05-11 05:18:43 +00:00
|
|
|
_first_part=$(repeatedly_join_str "$_count" "$_max_group_value_repr" "$_seperator")
|
|
|
|
_res="$_first_part"
|
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
_tmp=$((_octets_total * _bits_per_octet - _prefix))
|
2021-11-03 08:19:07 +00:00
|
|
|
_zero_bits=$((_tmp % _bits_per_group))
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ $_zero_bits -ne 0 ]]; then
|
2021-05-11 05:18:43 +00:00
|
|
|
_second_part=$((_max_group_value >> _zero_bits << _zero_bits))
|
|
|
|
if ((_ipv6)); then
|
|
|
|
_second_part=$(printf "%x" $_second_part)
|
|
|
|
fi
|
|
|
|
((_count++))
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ -z $_first_part ]]; then
|
2021-05-11 05:18:43 +00:00
|
|
|
_res="$_second_part"
|
|
|
|
else
|
|
|
|
_res="${_first_part}${_seperator}${_second_part}"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
_count=$((_total_groups - _count))
|
|
|
|
if [[ $_count -eq 0 ]]; then
|
2021-05-11 05:18:43 +00:00
|
|
|
echo -n "$_res"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
if ((_ipv6)) && [[ $_count -gt 1 ]]; then
|
2021-05-11 05:18:43 +00:00
|
|
|
# use condensed notion for IPv6
|
|
|
|
_third_part=":"
|
|
|
|
else
|
|
|
|
_third_part=$(repeatedly_join_str "$_count" "0" "$_seperator")
|
|
|
|
fi
|
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ -z $_res ]] && ((!_ipv6)); then
|
2021-05-11 05:18:43 +00:00
|
|
|
echo -n "${_third_part}"
|
|
|
|
else
|
|
|
|
echo -n "${_res}${_seperator}${_third_part}"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2020-10-15 12:45:57 +00:00
|
|
|
#$1: netdev name
|
|
|
|
#$2: srcaddr
|
|
|
|
#if it use static ip echo it, or echo null
|
|
|
|
kdump_static_ip() {
|
rd.route should use the name from kdump_setup_ifname
Resolves: bz1950932
Upstream: Fedora
Conflict: None
commit 8a33ffffbcaab4d1baabed889c2a063649dcbab8
Author: Coiby Xu <coxu@redhat.com>
Date: Thu May 6 09:20:27 2021 +0800
rd.route should use the name from kdump_setup_ifname
This fixes bz1854037 which happens because kexec-tools generates rd.route for
eth0 instead of for kdump-eth0,
1. "rd.route=168.63.129.16:10.0.0.1:eth0 rd.route=169.254.169.254:10.0.0.1:eth0" is passed to the dracut cmdline by kexec-tools
2. In the 2rd kernel, dracut/modules.d/35network-manager/nm-config.sh calls
/usr/libexec/nm-initrd-generator to generate two .nmconnection files
based on the dracut cmdline, i.e. kdump-eth0.nmconnection and eth0.nmconnection,
- /run/NetworkManager/system-connections/kdump-eth0.nmconnection
[connection]
id=kdump-eth0
uuid=3ef53b1b-3908-437e-a15f-cf1f3ea2678b
type=ethernet
autoconnect-retries=1
interface-name=kdump-eth0
multi-connect=1
permissions=
wait-device-timeout=60000
[ethernet]
mac-address-blacklist=
[ipv4]
address1=10.0.0.4/24,10.0.0.1
dhcp-timeout=90
dns=168.63.129.16;
dns-search=
may-fail=false
method=manual
[ipv6]
addr-gen-mode=eui64
dhcp-timeout=90
dns-search=
method=disabled
[proxy]
- /run/NetworkManager/system-connections/eth0.nmconnection
[connection]
id=eth0
uuid=f224dc22-2891-4d7b-8f66-745029df4b53
type=ethernet
autoconnect-retries=1
interface-name=eth0
multi-connect=1
permissions=
[ethernet]
mac-address-blacklist=
[ipv4]
dhcp-timeout=90
dns=168.63.129.16;
dns-search=
method=auto
route1=168.63.129.16/32,10.0.0.1
route2=169.254.169.254/32,10.0.0.1
[ipv6]
addr-gen-mode=eui64
dhcp-timeout=90
dns-search=
method=auto
[proxy]
3. Since there's eth0.nmconnection, NetworkManager will try to get an IP for eth0 regardless of the fact it's a slave NIC and time out
```
$ ip link show
2: kdump-eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DEFAULT group default qlen 1000
link/ether 00:0d:3a:11:86:8b brd ff:ff:ff:ff:ff:ff
3: eth0: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master kdump-eth0 state UP mode DEFAULT group default qlen 1000
```
Reported-by: Huijing Hei <hhei@redhat.com>
Signed-off-by: Coiby Xu <coxu@redhat.com>
Acked-by: Kairui Song <kasong@redhat.com>
Signed-off-by: Coiby Xu <coxu@redhat.com>
2021-05-13 07:37:03 +00:00
|
|
|
local _netdev="$1" _srcaddr="$2" kdumpnic="$3" _ipv6_flag
|
2021-05-11 05:18:43 +00:00
|
|
|
local _netmask _gateway _ipaddr _target _nexthop _prefix
|
2020-10-15 12:45:57 +00:00
|
|
|
|
2021-11-09 13:27:55 +00:00
|
|
|
_ipaddr=$(ip addr show dev "$_netdev" permanent | awk "/ $_srcaddr\/.* /{print \$2}")
|
2020-10-15 12:45:57 +00:00
|
|
|
|
2021-11-09 13:27:55 +00:00
|
|
|
if is_ipv6_address "$_srcaddr"; then
|
2020-10-15 12:45:57 +00:00
|
|
|
_ipv6_flag="-6"
|
|
|
|
fi
|
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ -n $_ipaddr ]]; then
|
|
|
|
_gateway=$(ip $_ipv6_flag route list dev "$_netdev" \
|
|
|
|
| awk '/^default /{print $3}' | head -n 1)
|
2020-10-15 12:45:57 +00:00
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ "x" != "x"$_ipv6_flag ]]; then
|
2020-10-15 12:45:57 +00:00
|
|
|
# _ipaddr="2002::56ff:feb6:56d5/64", _netmask is the number after "/"
|
|
|
|
_netmask=${_ipaddr#*\/}
|
|
|
|
_srcaddr="[$_srcaddr]"
|
|
|
|
_gateway="[$_gateway]"
|
|
|
|
else
|
2021-05-11 05:18:43 +00:00
|
|
|
_prefix=$(cut -d'/' -f2 <<< "$_ipaddr")
|
2021-11-09 13:35:45 +00:00
|
|
|
if ! _netmask=$(cal_netmask_by_prefix "$_prefix" "$_ipv6_flag"); then
|
2021-05-11 05:18:43 +00:00
|
|
|
derror "Failed to calculate netmask for $_ipaddr"
|
|
|
|
exit 1
|
|
|
|
fi
|
2020-10-15 12:45:57 +00:00
|
|
|
fi
|
|
|
|
echo -n "${_srcaddr}::${_gateway}:${_netmask}::"
|
|
|
|
fi
|
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
/sbin/ip $_ipv6_flag route show | grep -v default \
|
|
|
|
| grep ".*via.* $_netdev " | grep -v "^[[:space:]]*nexthop" \
|
|
|
|
| while read -r _route; do
|
|
|
|
_target=$(echo "$_route" | awk '{print $1}')
|
|
|
|
_nexthop=$(echo "$_route" | awk '{print $3}')
|
|
|
|
if [[ "x" != "x"$_ipv6_flag ]]; then
|
|
|
|
_target="[$_target]"
|
|
|
|
_nexthop="[$_nexthop]"
|
|
|
|
fi
|
|
|
|
echo "rd.route=$_target:$_nexthop:$kdumpnic"
|
|
|
|
done >> "${initdir}/etc/cmdline.d/45route-static.conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
|
2021-11-09 13:27:55 +00:00
|
|
|
kdump_handle_mulitpath_route "$_netdev" "$_srcaddr" "$kdumpnic"
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
kdump_handle_mulitpath_route() {
|
rd.route should use the name from kdump_setup_ifname
Resolves: bz1950932
Upstream: Fedora
Conflict: None
commit 8a33ffffbcaab4d1baabed889c2a063649dcbab8
Author: Coiby Xu <coxu@redhat.com>
Date: Thu May 6 09:20:27 2021 +0800
rd.route should use the name from kdump_setup_ifname
This fixes bz1854037 which happens because kexec-tools generates rd.route for
eth0 instead of for kdump-eth0,
1. "rd.route=168.63.129.16:10.0.0.1:eth0 rd.route=169.254.169.254:10.0.0.1:eth0" is passed to the dracut cmdline by kexec-tools
2. In the 2rd kernel, dracut/modules.d/35network-manager/nm-config.sh calls
/usr/libexec/nm-initrd-generator to generate two .nmconnection files
based on the dracut cmdline, i.e. kdump-eth0.nmconnection and eth0.nmconnection,
- /run/NetworkManager/system-connections/kdump-eth0.nmconnection
[connection]
id=kdump-eth0
uuid=3ef53b1b-3908-437e-a15f-cf1f3ea2678b
type=ethernet
autoconnect-retries=1
interface-name=kdump-eth0
multi-connect=1
permissions=
wait-device-timeout=60000
[ethernet]
mac-address-blacklist=
[ipv4]
address1=10.0.0.4/24,10.0.0.1
dhcp-timeout=90
dns=168.63.129.16;
dns-search=
may-fail=false
method=manual
[ipv6]
addr-gen-mode=eui64
dhcp-timeout=90
dns-search=
method=disabled
[proxy]
- /run/NetworkManager/system-connections/eth0.nmconnection
[connection]
id=eth0
uuid=f224dc22-2891-4d7b-8f66-745029df4b53
type=ethernet
autoconnect-retries=1
interface-name=eth0
multi-connect=1
permissions=
[ethernet]
mac-address-blacklist=
[ipv4]
dhcp-timeout=90
dns=168.63.129.16;
dns-search=
method=auto
route1=168.63.129.16/32,10.0.0.1
route2=169.254.169.254/32,10.0.0.1
[ipv6]
addr-gen-mode=eui64
dhcp-timeout=90
dns-search=
method=auto
[proxy]
3. Since there's eth0.nmconnection, NetworkManager will try to get an IP for eth0 regardless of the fact it's a slave NIC and time out
```
$ ip link show
2: kdump-eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DEFAULT group default qlen 1000
link/ether 00:0d:3a:11:86:8b brd ff:ff:ff:ff:ff:ff
3: eth0: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master kdump-eth0 state UP mode DEFAULT group default qlen 1000
```
Reported-by: Huijing Hei <hhei@redhat.com>
Signed-off-by: Coiby Xu <coxu@redhat.com>
Acked-by: Kairui Song <kasong@redhat.com>
Signed-off-by: Coiby Xu <coxu@redhat.com>
2021-05-13 07:37:03 +00:00
|
|
|
local _netdev="$1" _srcaddr="$2" kdumpnic="$3" _ipv6_flag
|
2020-10-15 12:45:57 +00:00
|
|
|
local _target _nexthop _route _weight _max_weight _rule
|
|
|
|
|
2021-11-09 13:27:55 +00:00
|
|
|
if is_ipv6_address "$_srcaddr"; then
|
2020-10-15 12:45:57 +00:00
|
|
|
_ipv6_flag="-6"
|
|
|
|
fi
|
|
|
|
|
2021-11-03 08:22:51 +00:00
|
|
|
while IFS="" read -r _route; do
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ $_route =~ [[:space:]]+nexthop ]]; then
|
2021-11-03 08:21:06 +00:00
|
|
|
_route=${_route##[[:space:]]}
|
2020-10-15 12:45:57 +00:00
|
|
|
# Parse multipath route, using previous _target
|
2021-11-09 13:42:45 +00:00
|
|
|
[[ $_target == 'default' ]] && continue
|
|
|
|
[[ $_route =~ .*via.*\ $_netdev ]] || continue
|
2020-10-15 12:45:57 +00:00
|
|
|
|
2021-11-03 08:24:01 +00:00
|
|
|
_weight=$(echo "$_route" | cut -d ' ' -f7)
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ $_weight -gt $_max_weight ]]; then
|
2021-11-03 08:24:01 +00:00
|
|
|
_nexthop=$(echo "$_route" | cut -d ' ' -f3)
|
2020-10-15 12:45:57 +00:00
|
|
|
_max_weight=$_weight
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ "x" != "x"$_ipv6_flag ]]; then
|
rd.route should use the name from kdump_setup_ifname
Resolves: bz1950932
Upstream: Fedora
Conflict: None
commit 8a33ffffbcaab4d1baabed889c2a063649dcbab8
Author: Coiby Xu <coxu@redhat.com>
Date: Thu May 6 09:20:27 2021 +0800
rd.route should use the name from kdump_setup_ifname
This fixes bz1854037 which happens because kexec-tools generates rd.route for
eth0 instead of for kdump-eth0,
1. "rd.route=168.63.129.16:10.0.0.1:eth0 rd.route=169.254.169.254:10.0.0.1:eth0" is passed to the dracut cmdline by kexec-tools
2. In the 2rd kernel, dracut/modules.d/35network-manager/nm-config.sh calls
/usr/libexec/nm-initrd-generator to generate two .nmconnection files
based on the dracut cmdline, i.e. kdump-eth0.nmconnection and eth0.nmconnection,
- /run/NetworkManager/system-connections/kdump-eth0.nmconnection
[connection]
id=kdump-eth0
uuid=3ef53b1b-3908-437e-a15f-cf1f3ea2678b
type=ethernet
autoconnect-retries=1
interface-name=kdump-eth0
multi-connect=1
permissions=
wait-device-timeout=60000
[ethernet]
mac-address-blacklist=
[ipv4]
address1=10.0.0.4/24,10.0.0.1
dhcp-timeout=90
dns=168.63.129.16;
dns-search=
may-fail=false
method=manual
[ipv6]
addr-gen-mode=eui64
dhcp-timeout=90
dns-search=
method=disabled
[proxy]
- /run/NetworkManager/system-connections/eth0.nmconnection
[connection]
id=eth0
uuid=f224dc22-2891-4d7b-8f66-745029df4b53
type=ethernet
autoconnect-retries=1
interface-name=eth0
multi-connect=1
permissions=
[ethernet]
mac-address-blacklist=
[ipv4]
dhcp-timeout=90
dns=168.63.129.16;
dns-search=
method=auto
route1=168.63.129.16/32,10.0.0.1
route2=169.254.169.254/32,10.0.0.1
[ipv6]
addr-gen-mode=eui64
dhcp-timeout=90
dns-search=
method=auto
[proxy]
3. Since there's eth0.nmconnection, NetworkManager will try to get an IP for eth0 regardless of the fact it's a slave NIC and time out
```
$ ip link show
2: kdump-eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DEFAULT group default qlen 1000
link/ether 00:0d:3a:11:86:8b brd ff:ff:ff:ff:ff:ff
3: eth0: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master kdump-eth0 state UP mode DEFAULT group default qlen 1000
```
Reported-by: Huijing Hei <hhei@redhat.com>
Signed-off-by: Coiby Xu <coxu@redhat.com>
Acked-by: Kairui Song <kasong@redhat.com>
Signed-off-by: Coiby Xu <coxu@redhat.com>
2021-05-13 07:37:03 +00:00
|
|
|
_rule="rd.route=[$_target]:[$_nexthop]:$kdumpnic"
|
2020-10-15 12:45:57 +00:00
|
|
|
else
|
rd.route should use the name from kdump_setup_ifname
Resolves: bz1950932
Upstream: Fedora
Conflict: None
commit 8a33ffffbcaab4d1baabed889c2a063649dcbab8
Author: Coiby Xu <coxu@redhat.com>
Date: Thu May 6 09:20:27 2021 +0800
rd.route should use the name from kdump_setup_ifname
This fixes bz1854037 which happens because kexec-tools generates rd.route for
eth0 instead of for kdump-eth0,
1. "rd.route=168.63.129.16:10.0.0.1:eth0 rd.route=169.254.169.254:10.0.0.1:eth0" is passed to the dracut cmdline by kexec-tools
2. In the 2rd kernel, dracut/modules.d/35network-manager/nm-config.sh calls
/usr/libexec/nm-initrd-generator to generate two .nmconnection files
based on the dracut cmdline, i.e. kdump-eth0.nmconnection and eth0.nmconnection,
- /run/NetworkManager/system-connections/kdump-eth0.nmconnection
[connection]
id=kdump-eth0
uuid=3ef53b1b-3908-437e-a15f-cf1f3ea2678b
type=ethernet
autoconnect-retries=1
interface-name=kdump-eth0
multi-connect=1
permissions=
wait-device-timeout=60000
[ethernet]
mac-address-blacklist=
[ipv4]
address1=10.0.0.4/24,10.0.0.1
dhcp-timeout=90
dns=168.63.129.16;
dns-search=
may-fail=false
method=manual
[ipv6]
addr-gen-mode=eui64
dhcp-timeout=90
dns-search=
method=disabled
[proxy]
- /run/NetworkManager/system-connections/eth0.nmconnection
[connection]
id=eth0
uuid=f224dc22-2891-4d7b-8f66-745029df4b53
type=ethernet
autoconnect-retries=1
interface-name=eth0
multi-connect=1
permissions=
[ethernet]
mac-address-blacklist=
[ipv4]
dhcp-timeout=90
dns=168.63.129.16;
dns-search=
method=auto
route1=168.63.129.16/32,10.0.0.1
route2=169.254.169.254/32,10.0.0.1
[ipv6]
addr-gen-mode=eui64
dhcp-timeout=90
dns-search=
method=auto
[proxy]
3. Since there's eth0.nmconnection, NetworkManager will try to get an IP for eth0 regardless of the fact it's a slave NIC and time out
```
$ ip link show
2: kdump-eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DEFAULT group default qlen 1000
link/ether 00:0d:3a:11:86:8b brd ff:ff:ff:ff:ff:ff
3: eth0: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master kdump-eth0 state UP mode DEFAULT group default qlen 1000
```
Reported-by: Huijing Hei <hhei@redhat.com>
Signed-off-by: Coiby Xu <coxu@redhat.com>
Acked-by: Kairui Song <kasong@redhat.com>
Signed-off-by: Coiby Xu <coxu@redhat.com>
2021-05-13 07:37:03 +00:00
|
|
|
_rule="rd.route=$_target:$_nexthop:$kdumpnic"
|
2020-10-15 12:45:57 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
else
|
2021-11-09 13:42:45 +00:00
|
|
|
[[ -n $_rule ]] && echo "$_rule"
|
2021-11-03 08:24:01 +00:00
|
|
|
_target=$(echo "$_route" | cut -d ' ' -f1)
|
2020-10-15 12:45:57 +00:00
|
|
|
_rule="" _max_weight=0 _weight=0
|
|
|
|
fi
|
2021-11-09 13:42:45 +00:00
|
|
|
done >> "${initdir}/etc/cmdline.d/45route-static.conf" \
|
2020-10-15 12:45:57 +00:00
|
|
|
<<< "$(/sbin/ip $_ipv6_flag route show)"
|
|
|
|
|
2021-11-09 13:27:55 +00:00
|
|
|
[[ -n $_rule ]] && echo "$_rule" >> "${initdir}/etc/cmdline.d/45route-static.conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
kdump_get_mac_addr() {
|
2021-11-09 13:27:55 +00:00
|
|
|
cat "/sys/class/net/$1/address"
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#Bonding or team master modifies the mac address
|
|
|
|
#of its slaves, we should use perm address
|
|
|
|
kdump_get_perm_addr() {
|
2021-11-03 09:30:56 +00:00
|
|
|
local addr
|
|
|
|
addr=$(ethtool -P "$1" | sed -e 's/Permanent address: //')
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ -z $addr ]] || [[ $addr == "00:00:00:00:00:00" ]]; then
|
2020-10-15 12:45:57 +00:00
|
|
|
derror "Can't get the permanent address of $1"
|
|
|
|
else
|
|
|
|
echo "$addr"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Prefix kernel assigned names with "kdump-". EX: eth0 -> kdump-eth0
|
|
|
|
# Because kernel assigned names are not persistent between 1st and 2nd
|
|
|
|
# kernel. We could probably end up with eth0 being eth1, eth0 being
|
|
|
|
# eth1, and naming conflict happens.
|
|
|
|
kdump_setup_ifname() {
|
|
|
|
local _ifname
|
|
|
|
|
|
|
|
# If ifname already has 'kdump-' prefix, we must be switching from
|
|
|
|
# fadump to kdump. Skip prefixing 'kdump-' in this case as adding
|
|
|
|
# another prefix may truncate the ifname. Since an ifname with
|
|
|
|
# 'kdump-' is already persistent, this should be fine.
|
|
|
|
if [[ $1 =~ eth* ]] && [[ ! $1 =~ ^kdump-* ]]; then
|
|
|
|
_ifname="kdump-$1"
|
|
|
|
else
|
|
|
|
_ifname="$1"
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "$_ifname"
|
|
|
|
}
|
|
|
|
|
|
|
|
kdump_setup_bridge() {
|
|
|
|
local _netdev=$1
|
|
|
|
local _brif _dev _mac _kdumpdev
|
2021-11-03 07:46:32 +00:00
|
|
|
for _dev in "/sys/class/net/$_netdev/brif/"*; do
|
|
|
|
[[ -e $_dev ]] || continue
|
|
|
|
_dev=${_dev##*/}
|
2020-10-15 12:45:57 +00:00
|
|
|
_kdumpdev=$_dev
|
|
|
|
if kdump_is_bond "$_dev"; then
|
2021-11-09 13:35:45 +00:00
|
|
|
(kdump_setup_bond "$_dev" "$(get_nmcli_connection_show_cmd_by_ifname "$_dev")") || exit 1
|
2020-10-15 12:45:57 +00:00
|
|
|
elif kdump_is_team "$_dev"; then
|
|
|
|
kdump_setup_team "$_dev"
|
|
|
|
elif kdump_is_vlan "$_dev"; then
|
|
|
|
kdump_setup_vlan "$_dev"
|
|
|
|
else
|
2021-11-09 13:27:55 +00:00
|
|
|
_mac=$(kdump_get_mac_addr "$_dev")
|
|
|
|
_kdumpdev=$(kdump_setup_ifname "$_dev")
|
|
|
|
echo -n " ifname=$_kdumpdev:$_mac" >> "${initdir}/etc/cmdline.d/41bridge.conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
fi
|
|
|
|
_brif+="$_kdumpdev,"
|
|
|
|
done
|
2021-11-03 08:21:06 +00:00
|
|
|
echo " bridge=$_netdev:${_brif%,}" >> "${initdir}/etc/cmdline.d/41bridge.conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|
|
|
|
|
2021-05-14 01:30:08 +00:00
|
|
|
# drauct takes bond=<bondname>[:<bondslaves>:[:<options>]] syntax to parse
|
|
|
|
# bond. For example:
|
|
|
|
# bond=bond0:eth0,eth1:mode=balance-rr
|
2020-10-15 12:45:57 +00:00
|
|
|
kdump_setup_bond() {
|
2021-05-14 01:30:08 +00:00
|
|
|
local _netdev="$1"
|
|
|
|
local _nm_show_cmd="$2"
|
|
|
|
local _dev _mac _slaves _kdumpdev _bondoptions
|
2021-11-09 13:27:55 +00:00
|
|
|
for _dev in $(cat "/sys/class/net/$_netdev/bonding/slaves"); do
|
|
|
|
_mac=$(kdump_get_perm_addr "$_dev")
|
|
|
|
_kdumpdev=$(kdump_setup_ifname "$_dev")
|
|
|
|
echo -n " ifname=$_kdumpdev:$_mac" >> "${initdir}/etc/cmdline.d/42bond.conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
_slaves+="$_kdumpdev,"
|
|
|
|
done
|
2021-11-03 08:21:06 +00:00
|
|
|
echo -n " bond=$_netdev:${_slaves%,}" >> "${initdir}/etc/cmdline.d/42bond.conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
|
2021-05-14 01:30:08 +00:00
|
|
|
_bondoptions=$(get_nmcli_value_by_field "$_nm_show_cmd" "bond.options")
|
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ -z $_bondoptions ]]; then
|
2021-05-14 01:30:08 +00:00
|
|
|
dwarning "Failed to get bond configuration via nmlci output. Now try sourcing ifcfg script."
|
2021-11-09 13:27:55 +00:00
|
|
|
source_ifcfg_file "$_netdev"
|
|
|
|
_bondoptions="$(echo "$BONDING_OPTS" | xargs echo | tr " " ",")"
|
2021-05-14 01:30:08 +00:00
|
|
|
fi
|
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ -z $_bondoptions ]]; then
|
2021-05-14 01:30:08 +00:00
|
|
|
derror "Get empty bond options"
|
|
|
|
exit 1
|
|
|
|
fi
|
2020-10-15 12:45:57 +00:00
|
|
|
|
2021-11-09 13:27:55 +00:00
|
|
|
echo ":$_bondoptions" >> "${initdir}/etc/cmdline.d/42bond.conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
kdump_setup_team() {
|
|
|
|
local _netdev=$1
|
|
|
|
local _dev _mac _slaves _kdumpdev
|
2021-11-09 13:27:55 +00:00
|
|
|
for _dev in $(teamnl "$_netdev" ports | awk -F':' '{print $2}'); do
|
|
|
|
_mac=$(kdump_get_perm_addr "$_dev")
|
|
|
|
_kdumpdev=$(kdump_setup_ifname "$_dev")
|
|
|
|
echo -n " ifname=$_kdumpdev:$_mac" >> "${initdir}/etc/cmdline.d/44team.conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
_slaves+="$_kdumpdev,"
|
|
|
|
done
|
2021-11-03 08:21:06 +00:00
|
|
|
echo " team=$_netdev:${_slaves%,}" >> "${initdir}/etc/cmdline.d/44team.conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
#Buggy version teamdctl outputs to stderr!
|
|
|
|
#Try to use the latest version of teamd.
|
2021-11-09 13:35:45 +00:00
|
|
|
if ! teamdctl "$_netdev" config dump > "${initdir}/tmp/$$-$_netdev.conf"; then
|
2020-10-15 12:45:57 +00:00
|
|
|
derror "teamdctl failed."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
inst_dir /etc/teamd
|
2021-11-09 13:27:55 +00:00
|
|
|
inst_simple "${initdir}/tmp/$$-$_netdev.conf" "/etc/teamd/$_netdev.conf"
|
|
|
|
rm -f "${initdir}/tmp/$$-$_netdev.conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
kdump_setup_vlan() {
|
|
|
|
local _netdev=$1
|
2021-11-03 09:30:56 +00:00
|
|
|
local _phydev
|
|
|
|
local _netmac
|
2020-10-15 12:45:57 +00:00
|
|
|
local _kdumpdev
|
|
|
|
|
2021-11-03 09:30:56 +00:00
|
|
|
_phydev="$(awk '/^Device:/{print $2}' /proc/net/vlan/"$_netdev")"
|
|
|
|
_netmac="$(kdump_get_mac_addr "$_phydev")"
|
|
|
|
|
2020-11-30 11:50:38 +00:00
|
|
|
#Just support vlan over bond and team
|
2020-10-15 12:45:57 +00:00
|
|
|
if kdump_is_bridge "$_phydev"; then
|
|
|
|
derror "Vlan over bridge is not supported!"
|
|
|
|
exit 1
|
|
|
|
elif kdump_is_bond "$_phydev"; then
|
2021-11-09 13:35:45 +00:00
|
|
|
(kdump_setup_bond "$_phydev" "$(get_nmcli_connection_show_cmd_by_ifname "$_phydev")") || exit 1
|
2021-11-09 13:27:55 +00:00
|
|
|
echo " vlan=$(kdump_setup_ifname "$_netdev"):$_phydev" > "${initdir}/etc/cmdline.d/43vlan.conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
else
|
2021-11-09 13:27:55 +00:00
|
|
|
_kdumpdev="$(kdump_setup_ifname "$_phydev")"
|
|
|
|
echo " vlan=$(kdump_setup_ifname "$_netdev"):$_kdumpdev ifname=$_kdumpdev:$_netmac" > "${initdir}/etc/cmdline.d/43vlan.conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2021-06-08 05:27:04 +00:00
|
|
|
# find online znet device
|
|
|
|
# return ifname (_netdev)
|
|
|
|
# code reaped from the list_configured function of
|
|
|
|
# https://github.com/hreinecke/s390-tools/blob/master/zconf/znetconf
|
|
|
|
find_online_znet_device() {
|
2021-11-09 13:42:45 +00:00
|
|
|
local CCWGROUPBUS_DEVICEDIR="/sys/bus/ccwgroup/devices"
|
|
|
|
local NETWORK_DEVICES d ifname ONLINE
|
|
|
|
|
|
|
|
[[ ! -d $CCWGROUPBUS_DEVICEDIR ]] && return
|
|
|
|
NETWORK_DEVICES=$(find $CCWGROUPBUS_DEVICEDIR)
|
|
|
|
for d in $NETWORK_DEVICES; do
|
|
|
|
[[ ! -f "$d/online" ]] && continue
|
|
|
|
read -r ONLINE < "$d/online"
|
|
|
|
if [[ $ONLINE -ne 1 ]]; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
# determine interface name, if there (only for qeth and if
|
|
|
|
# device is online)
|
|
|
|
if [[ -f $d/if_name ]]; then
|
|
|
|
read -r ifname < "$d/if_name"
|
|
|
|
elif [[ -d $d/net ]]; then
|
|
|
|
ifname=$(ls "$d/net/")
|
|
|
|
fi
|
|
|
|
[[ -n $ifname ]] && break
|
|
|
|
done
|
|
|
|
echo -n "$ifname"
|
2021-06-08 05:27:04 +00:00
|
|
|
}
|
|
|
|
|
2020-10-15 12:45:57 +00:00
|
|
|
# setup s390 znet cmdline
|
2021-05-14 01:30:08 +00:00
|
|
|
# $1: netdev (ifname)
|
|
|
|
# $2: nmcli connection show output
|
2020-10-15 12:45:57 +00:00
|
|
|
kdump_setup_znet() {
|
2021-05-14 01:30:08 +00:00
|
|
|
local _netdev="$1"
|
|
|
|
local _nmcli_cmd="$2"
|
|
|
|
local s390_prefix="802-3-ethernet.s390-"
|
2020-10-15 12:45:57 +00:00
|
|
|
local _options=""
|
2021-05-14 01:30:08 +00:00
|
|
|
local NETTYPE
|
|
|
|
local SUBCHANNELS
|
|
|
|
|
|
|
|
NETTYPE=$(get_nmcli_value_by_field "$_nmcli_cmd" "${s390_prefix}nettype")
|
|
|
|
SUBCHANNELS=$(get_nmcli_value_by_field "$_nmcli_cmd" "${s390_prefix}subchannels")
|
|
|
|
_options=$(get_nmcli_value_by_field "$_nmcli_cmd" "${s390_prefix}options")
|
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ -z $NETTYPE || -z $SUBCHANNELS || -z $_options ]]; then
|
2021-05-14 01:30:08 +00:00
|
|
|
dwarning "Failed to get znet configuration via nmlci output. Now try sourcing ifcfg script."
|
2021-11-09 13:27:55 +00:00
|
|
|
source_ifcfg_file "$_netdev"
|
2021-05-14 01:30:08 +00:00
|
|
|
for i in $OPTIONS; do
|
|
|
|
_options=${_options},$i
|
|
|
|
done
|
|
|
|
fi
|
2020-10-15 12:45:57 +00:00
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ -z $NETTYPE || -z $SUBCHANNELS || -z $_options ]]; then
|
2021-05-14 01:30:08 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2020-10-15 12:45:57 +00:00
|
|
|
|
2021-11-09 13:27:55 +00:00
|
|
|
echo "rd.znet=${NETTYPE},${SUBCHANNELS},${_options} rd.znet_ifname=$_netdev:${SUBCHANNELS}" > "${initdir}/etc/cmdline.d/30znet.conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
kdump_get_ip_route() {
|
2021-11-09 13:35:45 +00:00
|
|
|
local _route
|
|
|
|
if ! _route=$(/sbin/ip -o route get to "$1" 2>&1); then
|
2021-11-03 09:03:30 +00:00
|
|
|
derror "Bad kdump network destination: $1"
|
|
|
|
exit 1
|
|
|
|
fi
|
2021-11-09 13:27:55 +00:00
|
|
|
echo "$_route"
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
kdump_get_ip_route_field() {
|
2021-11-03 07:41:35 +00:00
|
|
|
echo "$1" | sed -n -e "s/^.*\<$2\>\s\+\(\S\+\).*$/\1/p"
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
kdump_get_remote_ip() {
|
2021-11-03 09:30:56 +00:00
|
|
|
local _remote _remote_temp
|
|
|
|
_remote=$(get_remote_host "$1")
|
2021-11-09 13:27:55 +00:00
|
|
|
if is_hostname "$_remote"; then
|
|
|
|
_remote_temp=$(getent ahosts "$_remote" | grep -v : | head -n 1)
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ -z $_remote_temp ]]; then
|
2021-11-09 13:27:55 +00:00
|
|
|
_remote_temp=$(getent ahosts "$_remote" | head -n 1)
|
2020-10-15 12:45:57 +00:00
|
|
|
fi
|
2021-11-09 13:27:55 +00:00
|
|
|
_remote=$(echo "$_remote_temp" | awk '{print $1}')
|
2020-10-15 12:45:57 +00:00
|
|
|
fi
|
2021-11-09 13:27:55 +00:00
|
|
|
echo "$_remote"
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Setup dracut to bring up network interface that enable
|
|
|
|
# initramfs accessing giving destination
|
|
|
|
# $1: destination host
|
|
|
|
kdump_install_net() {
|
2021-05-14 01:30:08 +00:00
|
|
|
local _destaddr _srcaddr _route _netdev _nm_show_cmd kdumpnic
|
2020-10-15 12:45:57 +00:00
|
|
|
local _static _proto _ip_conf _ip_opts _ifname_opts
|
2021-06-08 05:27:04 +00:00
|
|
|
local _znet_netdev _nm_show_cmd_znet
|
2020-10-15 12:45:57 +00:00
|
|
|
|
2021-11-09 13:27:55 +00:00
|
|
|
_destaddr=$(kdump_get_remote_ip "$1")
|
|
|
|
_route=$(kdump_get_ip_route "$_destaddr")
|
2020-10-15 12:45:57 +00:00
|
|
|
_srcaddr=$(kdump_get_ip_route_field "$_route" "src")
|
|
|
|
_netdev=$(kdump_get_ip_route_field "$_route" "dev")
|
2021-05-14 01:30:08 +00:00
|
|
|
_nm_show_cmd=$(get_nmcli_connection_show_cmd_by_ifname "$_netdev")
|
2021-11-09 13:27:55 +00:00
|
|
|
_netmac=$(kdump_get_mac_addr "$_netdev")
|
|
|
|
kdumpnic=$(kdump_setup_ifname "$_netdev")
|
2020-10-15 12:45:57 +00:00
|
|
|
|
2021-06-08 05:27:04 +00:00
|
|
|
_znet_netdev=$(find_online_znet_device)
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ -n $_znet_netdev ]]; then
|
2021-06-08 05:27:04 +00:00
|
|
|
_nm_show_cmd_znet=$(get_nmcli_connection_show_cmd_by_ifname "$_znet_netdev")
|
2021-11-09 13:35:45 +00:00
|
|
|
if ! (kdump_setup_znet "$_znet_netdev" "$_nm_show_cmd_znet"); then
|
2021-05-14 01:30:08 +00:00
|
|
|
derror "Failed to set up znet"
|
|
|
|
exit 1
|
|
|
|
fi
|
2020-10-15 12:45:57 +00:00
|
|
|
fi
|
|
|
|
|
2021-11-09 13:27:55 +00:00
|
|
|
_static=$(kdump_static_ip "$_netdev" "$_srcaddr" "$kdumpnic")
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ -n $_static ]]; then
|
2020-10-15 12:45:57 +00:00
|
|
|
_proto=none
|
2021-11-09 13:27:55 +00:00
|
|
|
elif is_ipv6_address "$_srcaddr"; then
|
2020-12-23 10:00:07 +00:00
|
|
|
_proto=auto6
|
2020-10-15 12:45:57 +00:00
|
|
|
else
|
|
|
|
_proto=dhcp
|
|
|
|
fi
|
|
|
|
|
|
|
|
_ip_conf="${initdir}/etc/cmdline.d/40ip.conf"
|
2021-05-13 06:55:20 +00:00
|
|
|
_ip_opts=" ip=${_static}$kdumpnic:${_proto}"
|
2020-10-15 12:45:57 +00:00
|
|
|
|
|
|
|
# dracut doesn't allow duplicated configuration for same NIC, even they're exactly the same.
|
|
|
|
# so we have to avoid adding duplicates
|
|
|
|
# We should also check /proc/cmdline for existing ip=xx arg.
|
|
|
|
# For example, iscsi boot will specify ip=xxx arg in cmdline.
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ ! -f $_ip_conf ]] || ! grep -q "$_ip_opts" "$_ip_conf" \
|
|
|
|
&& ! grep -q "ip=[^[:space:]]*$_netdev" /proc/cmdline; then
|
2021-11-09 13:27:55 +00:00
|
|
|
echo "$_ip_opts" >> "$_ip_conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if kdump_is_bridge "$_netdev"; then
|
|
|
|
kdump_setup_bridge "$_netdev"
|
|
|
|
elif kdump_is_bond "$_netdev"; then
|
2021-11-09 13:35:45 +00:00
|
|
|
(kdump_setup_bond "$_netdev" "$_nm_show_cmd") || exit 1
|
2020-10-15 12:45:57 +00:00
|
|
|
elif kdump_is_team "$_netdev"; then
|
|
|
|
kdump_setup_team "$_netdev"
|
|
|
|
elif kdump_is_vlan "$_netdev"; then
|
|
|
|
kdump_setup_vlan "$_netdev"
|
|
|
|
else
|
2021-05-13 06:55:20 +00:00
|
|
|
_ifname_opts=" ifname=$kdumpnic:$_netmac"
|
2021-11-09 13:27:55 +00:00
|
|
|
echo "$_ifname_opts" >> "$_ip_conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
fi
|
|
|
|
|
2021-05-14 01:30:08 +00:00
|
|
|
kdump_setup_dns "$_netdev" "$_nm_show_cmd"
|
2020-10-15 12:45:57 +00:00
|
|
|
|
bash scripts: replace '[ ]' with '[[ ]]' for bash scripts
upstream: fedora
resolves: bz2003832
conflict:
function load_kdump_kernel_key() not presented in rhel9,
so related patch hunk are removed.
commit 70978c00e5a573f0901ac404067eaea2c6536370
Author: Kairui Song <kasong@redhat.com>
Date: Wed Sep 8 17:20:51 2021 +0800
bash scripts: replace '[ ]' with '[[ ]]' for bash scripts
kdumpctl, mkdumprd, *-module-setup.sh only target bash, since they
only run in first kernel and depend on dracut, and dracut depends
on bash. So use '[[ ]]' to replace '[ ]'.
This is a batch update done with following command:
`sed -i -e 's/\(\s\)\[\s\([^]]*\)\s\]/\1\[\[\ \2 \]\]/g' kdumpctl, mkdumprd, *-module-setup.sh`
and replaced [ ... -a ... ] with [[ ... ]] && [[ ... ]] manually.
See https://tldp.org/LDP/abs/html/testconstructs.html for more details
on '[[ ]]', it's more versatile, safer, and slightly faster than '[ ]'.
This will also help shfmt to clean up the code in later commits.
Signed-off-by: Kairui Song <kasong@redhat.com>
Acked-by: Philipp Rudo <prudo@redhat.com>
Signed-off-by: Tao Liu <ltao@redhat.com>
2021-11-09 13:13:59 +00:00
|
|
|
if [[ ! -f ${initdir}/etc/cmdline.d/50neednet.conf ]]; then
|
2020-10-15 12:45:57 +00:00
|
|
|
# network-manager module needs this parameter
|
2021-11-09 13:27:55 +00:00
|
|
|
echo "rd.neednet" >> "${initdir}/etc/cmdline.d/50neednet.conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Save netdev used for kdump as cmdline
|
|
|
|
# Whoever calling kdump_install_net() is setting up the default gateway,
|
|
|
|
# ie. bootdev/kdumpnic. So don't override the setting if calling
|
|
|
|
# kdump_install_net() for another time. For example, after setting eth0 as
|
|
|
|
# the default gate way for network dump, eth1 in the fence kdump path will
|
|
|
|
# call kdump_install_net again and we don't want eth1 to be the default
|
|
|
|
# gateway.
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ ! -f ${initdir}/etc/cmdline.d/60kdumpnic.conf ]] \
|
|
|
|
&& [[ ! -f ${initdir}/etc/cmdline.d/70bootdev.conf ]]; then
|
2021-11-09 13:27:55 +00:00
|
|
|
echo "kdumpnic=$kdumpnic" > "${initdir}/etc/cmdline.d/60kdumpnic.conf"
|
|
|
|
echo "bootdev=$kdumpnic" > "${initdir}/etc/cmdline.d/70bootdev.conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# install etc/kdump/pre.d and /etc/kdump/post.d
|
|
|
|
kdump_install_pre_post_conf() {
|
bash scripts: replace '[ ]' with '[[ ]]' for bash scripts
upstream: fedora
resolves: bz2003832
conflict:
function load_kdump_kernel_key() not presented in rhel9,
so related patch hunk are removed.
commit 70978c00e5a573f0901ac404067eaea2c6536370
Author: Kairui Song <kasong@redhat.com>
Date: Wed Sep 8 17:20:51 2021 +0800
bash scripts: replace '[ ]' with '[[ ]]' for bash scripts
kdumpctl, mkdumprd, *-module-setup.sh only target bash, since they
only run in first kernel and depend on dracut, and dracut depends
on bash. So use '[[ ]]' to replace '[ ]'.
This is a batch update done with following command:
`sed -i -e 's/\(\s\)\[\s\([^]]*\)\s\]/\1\[\[\ \2 \]\]/g' kdumpctl, mkdumprd, *-module-setup.sh`
and replaced [ ... -a ... ] with [[ ... ]] && [[ ... ]] manually.
See https://tldp.org/LDP/abs/html/testconstructs.html for more details
on '[[ ]]', it's more versatile, safer, and slightly faster than '[ ]'.
This will also help shfmt to clean up the code in later commits.
Signed-off-by: Kairui Song <kasong@redhat.com>
Acked-by: Philipp Rudo <prudo@redhat.com>
Signed-off-by: Tao Liu <ltao@redhat.com>
2021-11-09 13:13:59 +00:00
|
|
|
if [[ -d /etc/kdump/pre.d ]]; then
|
2020-10-15 12:45:57 +00:00
|
|
|
for file in /etc/kdump/pre.d/*; do
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ -x $file ]]; then
|
2021-11-09 13:27:55 +00:00
|
|
|
dracut_install "$file"
|
bash scripts: replace '[ ]' with '[[ ]]' for bash scripts
upstream: fedora
resolves: bz2003832
conflict:
function load_kdump_kernel_key() not presented in rhel9,
so related patch hunk are removed.
commit 70978c00e5a573f0901ac404067eaea2c6536370
Author: Kairui Song <kasong@redhat.com>
Date: Wed Sep 8 17:20:51 2021 +0800
bash scripts: replace '[ ]' with '[[ ]]' for bash scripts
kdumpctl, mkdumprd, *-module-setup.sh only target bash, since they
only run in first kernel and depend on dracut, and dracut depends
on bash. So use '[[ ]]' to replace '[ ]'.
This is a batch update done with following command:
`sed -i -e 's/\(\s\)\[\s\([^]]*\)\s\]/\1\[\[\ \2 \]\]/g' kdumpctl, mkdumprd, *-module-setup.sh`
and replaced [ ... -a ... ] with [[ ... ]] && [[ ... ]] manually.
See https://tldp.org/LDP/abs/html/testconstructs.html for more details
on '[[ ]]', it's more versatile, safer, and slightly faster than '[ ]'.
This will also help shfmt to clean up the code in later commits.
Signed-off-by: Kairui Song <kasong@redhat.com>
Acked-by: Philipp Rudo <prudo@redhat.com>
Signed-off-by: Tao Liu <ltao@redhat.com>
2021-11-09 13:13:59 +00:00
|
|
|
elif [[ $file != "/etc/kdump/pre.d/*" ]]; then
|
2021-11-09 13:42:45 +00:00
|
|
|
echo "$file is not executable"
|
2020-10-15 12:45:57 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
bash scripts: replace '[ ]' with '[[ ]]' for bash scripts
upstream: fedora
resolves: bz2003832
conflict:
function load_kdump_kernel_key() not presented in rhel9,
so related patch hunk are removed.
commit 70978c00e5a573f0901ac404067eaea2c6536370
Author: Kairui Song <kasong@redhat.com>
Date: Wed Sep 8 17:20:51 2021 +0800
bash scripts: replace '[ ]' with '[[ ]]' for bash scripts
kdumpctl, mkdumprd, *-module-setup.sh only target bash, since they
only run in first kernel and depend on dracut, and dracut depends
on bash. So use '[[ ]]' to replace '[ ]'.
This is a batch update done with following command:
`sed -i -e 's/\(\s\)\[\s\([^]]*\)\s\]/\1\[\[\ \2 \]\]/g' kdumpctl, mkdumprd, *-module-setup.sh`
and replaced [ ... -a ... ] with [[ ... ]] && [[ ... ]] manually.
See https://tldp.org/LDP/abs/html/testconstructs.html for more details
on '[[ ]]', it's more versatile, safer, and slightly faster than '[ ]'.
This will also help shfmt to clean up the code in later commits.
Signed-off-by: Kairui Song <kasong@redhat.com>
Acked-by: Philipp Rudo <prudo@redhat.com>
Signed-off-by: Tao Liu <ltao@redhat.com>
2021-11-09 13:13:59 +00:00
|
|
|
if [[ -d /etc/kdump/post.d ]]; then
|
2020-10-15 12:45:57 +00:00
|
|
|
for file in /etc/kdump/post.d/*; do
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ -x $file ]]; then
|
2021-11-09 13:27:55 +00:00
|
|
|
dracut_install "$file"
|
bash scripts: replace '[ ]' with '[[ ]]' for bash scripts
upstream: fedora
resolves: bz2003832
conflict:
function load_kdump_kernel_key() not presented in rhel9,
so related patch hunk are removed.
commit 70978c00e5a573f0901ac404067eaea2c6536370
Author: Kairui Song <kasong@redhat.com>
Date: Wed Sep 8 17:20:51 2021 +0800
bash scripts: replace '[ ]' with '[[ ]]' for bash scripts
kdumpctl, mkdumprd, *-module-setup.sh only target bash, since they
only run in first kernel and depend on dracut, and dracut depends
on bash. So use '[[ ]]' to replace '[ ]'.
This is a batch update done with following command:
`sed -i -e 's/\(\s\)\[\s\([^]]*\)\s\]/\1\[\[\ \2 \]\]/g' kdumpctl, mkdumprd, *-module-setup.sh`
and replaced [ ... -a ... ] with [[ ... ]] && [[ ... ]] manually.
See https://tldp.org/LDP/abs/html/testconstructs.html for more details
on '[[ ]]', it's more versatile, safer, and slightly faster than '[ ]'.
This will also help shfmt to clean up the code in later commits.
Signed-off-by: Kairui Song <kasong@redhat.com>
Acked-by: Philipp Rudo <prudo@redhat.com>
Signed-off-by: Tao Liu <ltao@redhat.com>
2021-11-09 13:13:59 +00:00
|
|
|
elif [[ $file != "/etc/kdump/post.d/*" ]]; then
|
2020-10-15 12:45:57 +00:00
|
|
|
echo "$file is not executable"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
default_dump_target_install_conf() {
|
2020-10-15 12:45:57 +00:00
|
|
|
local _target _fstype
|
|
|
|
local _mntpoint _save_path
|
|
|
|
|
|
|
|
is_user_configured_dump_target && return
|
|
|
|
|
2021-11-09 13:27:55 +00:00
|
|
|
_save_path=$(get_bind_mount_source "$(get_save_path)")
|
|
|
|
_target=$(get_target_from_path "$_save_path")
|
|
|
|
_mntpoint=$(get_mntpoint_from_target "$_target")
|
2020-10-15 12:45:57 +00:00
|
|
|
|
2021-11-09 13:27:55 +00:00
|
|
|
_fstype=$(get_fs_type_from_target "$_target")
|
|
|
|
if is_fs_type_nfs "$_fstype"; then
|
2020-10-15 12:45:57 +00:00
|
|
|
kdump_install_net "$_target"
|
|
|
|
_fstype="nfs"
|
|
|
|
else
|
2021-11-09 13:27:55 +00:00
|
|
|
_target=$(kdump_get_persistent_dev "$_target")
|
2020-10-15 12:45:57 +00:00
|
|
|
fi
|
|
|
|
|
2021-11-09 13:27:55 +00:00
|
|
|
echo "$_fstype $_target" >> "${initdir}/tmp/$$-kdump.conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
|
|
|
|
# don't touch the path under root mount
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ $_mntpoint != "/" ]]; then
|
2020-10-15 12:45:57 +00:00
|
|
|
_save_path=${_save_path##"$_mntpoint"}
|
|
|
|
fi
|
|
|
|
|
|
|
|
#erase the old path line, then insert the parsed path
|
2021-11-09 13:27:55 +00:00
|
|
|
sed -i "/^path/d" "${initdir}/tmp/$$-kdump.conf"
|
|
|
|
echo "path $_save_path" >> "${initdir}/tmp/$$-kdump.conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#install kdump.conf and what user specifies in kdump.conf
|
|
|
|
kdump_install_conf() {
|
|
|
|
local _opt _val _pdev
|
2021-11-03 07:12:31 +00:00
|
|
|
|
|
|
|
kdump_read_conf > "${initdir}/tmp/$$-kdump.conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
while read -r _opt _val; do
|
2020-10-15 12:45:57 +00:00
|
|
|
# remove inline comments after the end of a directive.
|
|
|
|
case "$_opt" in
|
2021-11-09 13:42:45 +00:00
|
|
|
raw)
|
|
|
|
_pdev=$(persistent_policy="by-id" kdump_get_persistent_dev "$_val")
|
|
|
|
sed -i -e "s#^${_opt}[[:space:]]\+$_val#$_opt $_pdev#" "${initdir}/tmp/$$-kdump.conf"
|
|
|
|
;;
|
|
|
|
ext[234] | xfs | btrfs | minix)
|
|
|
|
_pdev=$(kdump_get_persistent_dev "$_val")
|
|
|
|
sed -i -e "s#^${_opt}[[:space:]]\+$_val#$_opt $_pdev#" "${initdir}/tmp/$$-kdump.conf"
|
|
|
|
;;
|
|
|
|
ssh | nfs)
|
|
|
|
kdump_install_net "$_val"
|
|
|
|
;;
|
|
|
|
dracut_args)
|
|
|
|
if [[ $(get_dracut_args_fstype "$_val") == nfs* ]]; then
|
|
|
|
kdump_install_net "$(get_dracut_args_target "$_val")"
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
kdump_pre | kdump_post | extra_bins)
|
|
|
|
dracut_install "$_val"
|
|
|
|
;;
|
|
|
|
core_collector)
|
|
|
|
dracut_install "${_val%%[[:blank:]]*}"
|
|
|
|
;;
|
2020-10-15 12:45:57 +00:00
|
|
|
esac
|
2021-11-03 07:12:31 +00:00
|
|
|
done <<< "$(kdump_read_conf)"
|
2020-10-15 12:45:57 +00:00
|
|
|
|
|
|
|
kdump_install_pre_post_conf
|
|
|
|
|
|
|
|
default_dump_target_install_conf
|
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
kdump_configure_fence_kdump "${initdir}/tmp/$$-kdump.conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
inst "${initdir}/tmp/$$-kdump.conf" "/etc/kdump.conf"
|
2021-11-09 13:27:55 +00:00
|
|
|
rm -f "${initdir}/tmp/$$-kdump.conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|
|
|
|
|
2021-04-19 15:00:10 +00:00
|
|
|
# Default sysctl parameters should suffice for kdump kernel.
|
|
|
|
# Remove custom configurations sysctl.conf & sysctl.d/*
|
|
|
|
remove_sysctl_conf() {
|
|
|
|
|
2020-10-15 12:45:57 +00:00
|
|
|
# As custom configurations like vm.min_free_kbytes can lead
|
|
|
|
# to OOM issues in kdump kernel, avoid them
|
|
|
|
rm -f "${initdir}/etc/sysctl.conf"
|
|
|
|
rm -rf "${initdir}/etc/sysctl.d"
|
|
|
|
rm -rf "${initdir}/run/sysctl.d"
|
|
|
|
rm -rf "${initdir}/usr/lib/sysctl.d"
|
|
|
|
}
|
|
|
|
|
|
|
|
kdump_iscsi_get_rec_val() {
|
|
|
|
|
|
|
|
local result
|
|
|
|
|
|
|
|
# The open-iscsi 742 release changed to using flat files in
|
|
|
|
# /var/lib/iscsi.
|
|
|
|
|
2021-11-09 13:27:55 +00:00
|
|
|
result=$(/sbin/iscsiadm --show -m session -r "$1" | grep "^${2} = ")
|
2020-10-15 12:45:57 +00:00
|
|
|
result=${result##* = }
|
2021-11-09 13:27:55 +00:00
|
|
|
echo "$result"
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
kdump_get_iscsi_initiator() {
|
|
|
|
local _initiator
|
|
|
|
local initiator_conf="/etc/iscsi/initiatorname.iscsi"
|
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
[[ -f $initiator_conf ]] || return 1
|
2020-10-15 12:45:57 +00:00
|
|
|
|
2021-11-03 08:22:51 +00:00
|
|
|
while read -r _initiator; do
|
2021-11-09 13:42:45 +00:00
|
|
|
[[ -z ${_initiator%%#*} ]] && continue # Skip comment lines
|
2020-10-15 12:45:57 +00:00
|
|
|
|
|
|
|
case $_initiator in
|
|
|
|
InitiatorName=*)
|
|
|
|
initiator=${_initiator#InitiatorName=}
|
|
|
|
echo "rd.iscsi.initiator=${initiator}"
|
2021-11-09 13:42:45 +00:00
|
|
|
return 0
|
|
|
|
;;
|
2020-10-15 12:45:57 +00:00
|
|
|
*) ;;
|
|
|
|
esac
|
|
|
|
done < ${initiator_conf}
|
|
|
|
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
# Figure out iBFT session according to session type
|
|
|
|
is_ibft() {
|
2021-11-09 13:42:45 +00:00
|
|
|
[[ "$(kdump_iscsi_get_rec_val "$1" "node.discovery_type")" == fw ]]
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
kdump_setup_iscsi_device() {
|
|
|
|
local path=$1
|
2021-11-09 13:42:45 +00:00
|
|
|
local tgt_name
|
|
|
|
local tgt_ipaddr
|
|
|
|
local username
|
|
|
|
local password
|
|
|
|
local userpwd_str
|
|
|
|
local username_in
|
|
|
|
local password_in
|
|
|
|
local userpwd_in_str
|
|
|
|
local netroot_str
|
|
|
|
local initiator_str
|
2020-10-15 12:45:57 +00:00
|
|
|
local netroot_conf="${initdir}/etc/cmdline.d/50iscsi.conf"
|
|
|
|
local initiator_conf="/etc/iscsi/initiatorname.iscsi"
|
|
|
|
|
|
|
|
dinfo "Found iscsi component $1"
|
|
|
|
|
|
|
|
# Check once before getting explicit values, so we can bail out early,
|
|
|
|
# e.g. in case of pure-hardware(all-offload) iscsi.
|
2021-11-09 13:42:45 +00:00
|
|
|
if ! /sbin/iscsiadm -m session -r "$path" &> /dev/null; then
|
2020-10-15 12:45:57 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
2021-11-09 13:27:55 +00:00
|
|
|
if is_ibft "$path"; then
|
2020-10-15 12:45:57 +00:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Remove software iscsi cmdline generated by 95iscsi,
|
|
|
|
# and let kdump regenerate here.
|
2021-11-09 13:27:55 +00:00
|
|
|
rm -f "${initdir}/etc/cmdline.d/95iscsi.conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
|
2021-11-09 13:27:55 +00:00
|
|
|
tgt_name=$(kdump_iscsi_get_rec_val "$path" "node.name")
|
|
|
|
tgt_ipaddr=$(kdump_iscsi_get_rec_val "$path" "node.conn\[0\].address")
|
2020-10-15 12:45:57 +00:00
|
|
|
|
|
|
|
# get and set username and password details
|
2021-11-09 13:27:55 +00:00
|
|
|
username=$(kdump_iscsi_get_rec_val "$path" "node.session.auth.username")
|
2021-11-09 13:42:45 +00:00
|
|
|
[[ $username == "<empty>" ]] && username=""
|
2021-11-09 13:27:55 +00:00
|
|
|
password=$(kdump_iscsi_get_rec_val "$path" "node.session.auth.password")
|
2021-11-09 13:42:45 +00:00
|
|
|
[[ $password == "<empty>" ]] && password=""
|
2021-11-09 13:27:55 +00:00
|
|
|
username_in=$(kdump_iscsi_get_rec_val "$path" "node.session.auth.username_in")
|
2021-11-09 13:42:45 +00:00
|
|
|
[[ -n $username ]] && userpwd_str="$username:$password"
|
2020-10-15 12:45:57 +00:00
|
|
|
|
|
|
|
# get and set incoming username and password details
|
2021-11-09 13:42:45 +00:00
|
|
|
[[ $username_in == "<empty>" ]] && username_in=""
|
2021-11-09 13:27:55 +00:00
|
|
|
password_in=$(kdump_iscsi_get_rec_val "$path" "node.session.auth.password_in")
|
2021-11-09 13:42:45 +00:00
|
|
|
[[ $password_in == "<empty>" ]] && password_in=""
|
2020-10-15 12:45:57 +00:00
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
[[ -n $username_in ]] && userpwd_in_str=":$username_in:$password_in"
|
2020-10-15 12:45:57 +00:00
|
|
|
|
|
|
|
kdump_install_net "$tgt_ipaddr"
|
|
|
|
|
|
|
|
# prepare netroot= command line
|
|
|
|
# FIXME: Do we need to parse and set other parameters like protocol, port
|
|
|
|
# iscsi_iface_name, netdev_name, LUN etc.
|
|
|
|
|
2021-11-09 13:27:55 +00:00
|
|
|
if is_ipv6_address "$tgt_ipaddr"; then
|
2020-10-15 12:45:57 +00:00
|
|
|
tgt_ipaddr="[$tgt_ipaddr]"
|
|
|
|
fi
|
|
|
|
netroot_str="netroot=iscsi:${userpwd_str}${userpwd_in_str}@$tgt_ipaddr::::$tgt_name"
|
|
|
|
|
2021-11-09 13:27:55 +00:00
|
|
|
[[ -f $netroot_conf ]] || touch "$netroot_conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
|
|
|
|
# If netroot target does not exist already, append.
|
2021-11-09 13:27:55 +00:00
|
|
|
if ! grep -q "$netroot_str" "$netroot_conf"; then
|
2021-11-09 13:42:45 +00:00
|
|
|
echo "$netroot_str" >> "$netroot_conf"
|
|
|
|
dinfo "Appended $netroot_str to $netroot_conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
# Setup initator
|
2021-11-09 13:35:45 +00:00
|
|
|
if ! initiator_str=$(kdump_get_iscsi_initiator); then
|
|
|
|
derror "Failed to get initiator name"
|
|
|
|
return 1
|
|
|
|
fi
|
2020-10-15 12:45:57 +00:00
|
|
|
|
|
|
|
# If initiator details do not exist already, append.
|
2021-11-09 13:27:55 +00:00
|
|
|
if ! grep -q "$initiator_str" "$netroot_conf"; then
|
2021-11-09 13:42:45 +00:00
|
|
|
echo "$initiator_str" >> "$netroot_conf"
|
|
|
|
dinfo "Appended $initiator_str to $netroot_conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
kdump_check_iscsi_targets() {
|
2020-10-15 12:45:57 +00:00
|
|
|
# If our prerequisites are not met, fail anyways.
|
2021-11-09 13:42:45 +00:00
|
|
|
type -P iscsistart > /dev/null || return 1
|
2020-10-15 12:45:57 +00:00
|
|
|
|
|
|
|
kdump_check_setup_iscsi() (
|
|
|
|
local _dev
|
|
|
|
_dev=$1
|
|
|
|
|
|
|
|
[[ -L /sys/dev/block/$_dev ]] || return
|
2021-11-03 07:47:34 +00:00
|
|
|
cd "$(readlink -f "/sys/dev/block/$_dev")" || return 1
|
2020-10-15 12:45:57 +00:00
|
|
|
until [[ -d sys || -d iscsi_session ]]; do
|
|
|
|
cd ..
|
|
|
|
done
|
|
|
|
[[ -d iscsi_session ]] && kdump_setup_iscsi_device "$PWD"
|
|
|
|
)
|
|
|
|
|
|
|
|
[[ $hostonly ]] || [[ $mount_needs ]] && {
|
|
|
|
for_each_host_dev_and_slaves_all kdump_check_setup_iscsi
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# hostname -a is deprecated, do it by ourself
|
|
|
|
get_alias() {
|
|
|
|
local ips
|
|
|
|
local entries
|
|
|
|
local alias_set
|
|
|
|
|
|
|
|
ips=$(hostname -I)
|
2021-11-09 13:42:45 +00:00
|
|
|
for ip in $ips; do
|
|
|
|
# in /etc/hosts, alias can come at the 2nd column
|
|
|
|
if entries=$(grep "$ip" /etc/hosts | awk '{ $1=""; print $0 }'); then
|
|
|
|
alias_set="$alias_set $entries"
|
|
|
|
fi
|
2020-10-15 12:45:57 +00:00
|
|
|
done
|
|
|
|
|
2021-11-09 13:27:55 +00:00
|
|
|
echo "$alias_set"
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
is_localhost() {
|
2021-11-03 09:30:56 +00:00
|
|
|
local hostnames
|
|
|
|
local shortnames
|
|
|
|
local aliasname
|
2020-10-15 12:45:57 +00:00
|
|
|
local nodename=$1
|
|
|
|
|
2021-11-03 09:30:56 +00:00
|
|
|
hostnames=$(hostname -A)
|
|
|
|
shortnames=$(hostname -A -s)
|
|
|
|
aliasname=$(get_alias)
|
2020-10-15 12:45:57 +00:00
|
|
|
hostnames="$hostnames $shortnames $aliasname"
|
|
|
|
|
|
|
|
for name in ${hostnames}; do
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ $name == "$nodename" ]]; then
|
2020-10-15 12:45:57 +00:00
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
# retrieves fence_kdump nodes from Pacemaker cluster configuration
|
|
|
|
get_pcs_fence_kdump_nodes() {
|
|
|
|
local nodes
|
|
|
|
|
|
|
|
pcs cluster sync > /dev/null 2>&1 && pcs cluster cib-upgrade > /dev/null 2>&1
|
|
|
|
# get cluster nodes from cluster cib, get interface and ip address
|
2021-11-03 08:24:01 +00:00
|
|
|
nodelist=$(pcs cluster cib | xmllint --xpath "/cib/status/node_state/@uname" -)
|
2020-10-15 12:45:57 +00:00
|
|
|
|
|
|
|
# nodelist is formed as 'uname="node1" uname="node2" ... uname="nodeX"'
|
|
|
|
# we need to convert each to node1, node2 ... nodeX in each iteration
|
|
|
|
for node in ${nodelist}; do
|
|
|
|
# convert $node from 'uname="nodeX"' to 'nodeX'
|
2021-11-09 13:27:55 +00:00
|
|
|
eval "$node"
|
|
|
|
nodename="$uname"
|
2020-10-15 12:45:57 +00:00
|
|
|
# Skip its own node name
|
2021-11-09 13:27:55 +00:00
|
|
|
if is_localhost "$nodename"; then
|
2020-10-15 12:45:57 +00:00
|
|
|
continue
|
|
|
|
fi
|
|
|
|
nodes="$nodes $nodename"
|
|
|
|
done
|
|
|
|
|
2021-11-09 13:27:55 +00:00
|
|
|
echo "$nodes"
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# retrieves fence_kdump args from config file
|
|
|
|
get_pcs_fence_kdump_args() {
|
bash scripts: replace '[ ]' with '[[ ]]' for bash scripts
upstream: fedora
resolves: bz2003832
conflict:
function load_kdump_kernel_key() not presented in rhel9,
so related patch hunk are removed.
commit 70978c00e5a573f0901ac404067eaea2c6536370
Author: Kairui Song <kasong@redhat.com>
Date: Wed Sep 8 17:20:51 2021 +0800
bash scripts: replace '[ ]' with '[[ ]]' for bash scripts
kdumpctl, mkdumprd, *-module-setup.sh only target bash, since they
only run in first kernel and depend on dracut, and dracut depends
on bash. So use '[[ ]]' to replace '[ ]'.
This is a batch update done with following command:
`sed -i -e 's/\(\s\)\[\s\([^]]*\)\s\]/\1\[\[\ \2 \]\]/g' kdumpctl, mkdumprd, *-module-setup.sh`
and replaced [ ... -a ... ] with [[ ... ]] && [[ ... ]] manually.
See https://tldp.org/LDP/abs/html/testconstructs.html for more details
on '[[ ]]', it's more versatile, safer, and slightly faster than '[ ]'.
This will also help shfmt to clean up the code in later commits.
Signed-off-by: Kairui Song <kasong@redhat.com>
Acked-by: Philipp Rudo <prudo@redhat.com>
Signed-off-by: Tao Liu <ltao@redhat.com>
2021-11-09 13:13:59 +00:00
|
|
|
if [[ -f $FENCE_KDUMP_CONFIG_FILE ]]; then
|
2021-11-09 13:27:55 +00:00
|
|
|
. "$FENCE_KDUMP_CONFIG_FILE"
|
|
|
|
echo "$FENCE_KDUMP_OPTS"
|
2020-10-15 12:45:57 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
get_generic_fence_kdump_nodes() {
|
|
|
|
local filtered
|
|
|
|
local nodes
|
|
|
|
|
kdump-lib.sh: add a config value retrive helper
upstream: fedora
resolves: bz2003832
conflict: none
commit 09ccf88405793220af640c5317cbadb71cf03d36
Author: Kairui Song <kasong@redhat.com>
Date: Mon Aug 16 23:25:14 2021 +0800
kdump-lib.sh: add a config value retrive helper
Add a helper kdump_get_conf_val to replace get_option_value.
It can help cover more corner cases in the code, like when there are
multiple spaces in config file, config value separated by a tab,
heading spaces, or trailing comments.
And this uses "sed group command" and "sed hold buffer", make it much
faster than previous `grep <config> | tail -1`.
This helper is supposed to provide a universal way for kexec-tools
scripts to read in config value. Currently, different scripts are
reading the config in many different fragile ways.
For example, following codes are found in kexec-tools script code base:
1. grep ^force_rebuild $KDUMP_CONFIG_FILE
echo $_force_rebuild | cut -d' ' -f2
2. grep ^kdump_post $KDUMP_CONFIG_FILE | cut -d\ -f2
3. awk '/^sshkey/ {print $2}' $conf_file
4. grep ^path $KDUMP_CONFIG_FILE | cut -d' ' -f2-
1, 2, and 4 will fail if the space is replaced by, e.g. a tab
1 and 2 might fail if there are multiple spaces between config name
and config value:
"kdump_post /var/crash/scripts/kdump-post.sh"
A space will be read instead of config value.
1, 2, 3 will fail if there are space in file path, like:
"kdump_post /var/crash/scripts dir/kdump-post.sh"
4 will fail if there are trailing comments:
"path /var/crash # some comment here"
And all will fail if there are heading space,
" path /var/crash"
And all will most likely cause problems if the config file contains
the same option more than once.
And all of them are slower than the new sed call. Old get_option_value
is also very slow and doesn't handle heading space.
Although we never claim to support heading space or tailing comments
before, it's harmless to be more robust on config reading, and many
conf files in /etc support heading spaces. And have a faster and
safer config reading helper makes it easier to clean up the code.
Signed-off-by: Kairui Song <kasong@redhat.com>
Acked-by: Philipp Rudo <prudo@redhat.com>
Signed-off-by: Tao Liu <ltao@redhat.com>
2021-11-03 07:19:50 +00:00
|
|
|
nodes=$(kdump_get_conf_val "fence_kdump_nodes")
|
2020-10-15 12:45:57 +00:00
|
|
|
for node in ${nodes}; do
|
|
|
|
# Skip its own node name
|
2021-11-09 13:27:55 +00:00
|
|
|
if is_localhost "$node"; then
|
2020-10-15 12:45:57 +00:00
|
|
|
continue
|
|
|
|
fi
|
|
|
|
filtered="$filtered $node"
|
|
|
|
done
|
2021-11-09 13:27:55 +00:00
|
|
|
echo "$filtered"
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# setup fence_kdump in cluster
|
|
|
|
# setup proper network and install needed files
|
2021-11-09 13:42:45 +00:00
|
|
|
kdump_configure_fence_kdump() {
|
2020-10-15 12:45:57 +00:00
|
|
|
local kdump_cfg_file=$1
|
|
|
|
local nodes
|
|
|
|
local args
|
|
|
|
|
|
|
|
if is_generic_fence_kdump; then
|
|
|
|
nodes=$(get_generic_fence_kdump_nodes)
|
|
|
|
|
|
|
|
elif is_pcs_fence_kdump; then
|
|
|
|
nodes=$(get_pcs_fence_kdump_nodes)
|
|
|
|
|
|
|
|
# set appropriate options in kdump.conf
|
2021-11-09 13:27:55 +00:00
|
|
|
echo "fence_kdump_nodes $nodes" >> "${kdump_cfg_file}"
|
2020-10-15 12:45:57 +00:00
|
|
|
|
|
|
|
args=$(get_pcs_fence_kdump_args)
|
2021-11-09 13:42:45 +00:00
|
|
|
if [[ -n $args ]]; then
|
2021-11-09 13:27:55 +00:00
|
|
|
echo "fence_kdump_args $args" >> "${kdump_cfg_file}"
|
2020-10-15 12:45:57 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
else
|
|
|
|
# fence_kdump not configured
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# setup network for each node
|
|
|
|
for node in ${nodes}; do
|
2021-11-09 13:27:55 +00:00
|
|
|
kdump_install_net "$node"
|
2020-10-15 12:45:57 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
dracut_install /etc/hosts
|
|
|
|
dracut_install /etc/nsswitch.conf
|
2021-11-09 13:27:55 +00:00
|
|
|
dracut_install "$FENCE_KDUMP_SEND"
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Install a random seed used to feed /dev/urandom
|
|
|
|
# By the time kdump service starts, /dev/uramdom is already fed by systemd
|
|
|
|
kdump_install_random_seed() {
|
2021-11-03 07:51:02 +00:00
|
|
|
local poolsize
|
|
|
|
|
2021-11-09 13:42:45 +00:00
|
|
|
poolsize=$(< /proc/sys/kernel/random/poolsize)
|
2020-10-15 12:45:57 +00:00
|
|
|
|
2021-11-09 13:27:55 +00:00
|
|
|
if [[ ! -d "${initdir}/var/lib/" ]]; then
|
|
|
|
mkdir -p "${initdir}/var/lib/"
|
2020-10-15 12:45:57 +00:00
|
|
|
fi
|
|
|
|
|
2021-11-09 13:27:55 +00:00
|
|
|
dd if=/dev/urandom of="${initdir}/var/lib/random-seed" \
|
2021-11-09 13:42:45 +00:00
|
|
|
bs="$poolsize" count=1 2> /dev/null
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
kdump_install_systemd_conf() {
|
|
|
|
# Kdump turns out to require longer default systemd mount timeout
|
|
|
|
# than 1st kernel(90s by default), we use default 300s for kdump.
|
2021-11-09 13:35:45 +00:00
|
|
|
if ! grep -q -r "^[[:space:]]*DefaultTimeoutStartSec=" "${initdir}/etc/systemd/system.conf"*; then
|
2021-11-09 13:27:55 +00:00
|
|
|
mkdir -p "${initdir}/etc/systemd/system.conf.d"
|
|
|
|
echo "[Manager]" > "${initdir}/etc/systemd/system.conf.d/kdump.conf"
|
|
|
|
echo "DefaultTimeoutStartSec=300s" >> "${initdir}/etc/systemd/system.conf.d/kdump.conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
fi
|
|
|
|
|
2020-11-05 05:34:29 +00:00
|
|
|
# Forward logs to console directly, and don't read Kmsg, this avoids
|
|
|
|
# unneccessary memory consumption and make console output more useful.
|
2020-10-15 12:45:57 +00:00
|
|
|
# Only do so for non fadump image.
|
2021-11-09 13:27:55 +00:00
|
|
|
mkdir -p "${initdir}/etc/systemd/journald.conf.d"
|
|
|
|
echo "[Journal]" > "${initdir}/etc/systemd/journald.conf.d/kdump.conf"
|
|
|
|
echo "Storage=volatile" >> "${initdir}/etc/systemd/journald.conf.d/kdump.conf"
|
|
|
|
echo "ReadKMsg=no" >> "${initdir}/etc/systemd/journald.conf.d/kdump.conf"
|
|
|
|
echo "ForwardToConsole=yes" >> "${initdir}/etc/systemd/journald.conf.d/kdump.conf"
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
install() {
|
2021-01-22 08:12:00 +00:00
|
|
|
kdump_module_init
|
2020-10-15 12:45:57 +00:00
|
|
|
kdump_install_conf
|
2021-04-19 15:00:10 +00:00
|
|
|
remove_sysctl_conf
|
2020-10-15 12:45:57 +00:00
|
|
|
|
|
|
|
if is_ssh_dump_target; then
|
|
|
|
kdump_install_random_seed
|
|
|
|
fi
|
|
|
|
dracut_install -o /etc/adjtime /etc/localtime
|
|
|
|
inst "$moddir/monitor_dd_progress" "/kdumpscripts/monitor_dd_progress"
|
2021-11-09 13:27:55 +00:00
|
|
|
chmod +x "${initdir}/kdumpscripts/monitor_dd_progress"
|
2020-10-15 12:45:57 +00:00
|
|
|
inst "/bin/dd" "/bin/dd"
|
|
|
|
inst "/bin/tail" "/bin/tail"
|
|
|
|
inst "/bin/date" "/bin/date"
|
|
|
|
inst "/bin/sync" "/bin/sync"
|
|
|
|
inst "/bin/cut" "/bin/cut"
|
|
|
|
inst "/bin/head" "/bin/head"
|
|
|
|
inst "/bin/awk" "/bin/awk"
|
|
|
|
inst "/bin/sed" "/bin/sed"
|
|
|
|
inst "/sbin/makedumpfile" "/sbin/makedumpfile"
|
|
|
|
inst "/sbin/vmcore-dmesg" "/sbin/vmcore-dmesg"
|
2020-11-05 05:34:29 +00:00
|
|
|
inst "/usr/bin/printf" "/sbin/printf"
|
|
|
|
inst "/usr/bin/logger" "/sbin/logger"
|
2021-04-20 07:56:16 +00:00
|
|
|
inst "/usr/bin/chmod" "/sbin/chmod"
|
2020-10-15 12:45:57 +00:00
|
|
|
inst "/lib/kdump/kdump-lib.sh" "/lib/kdump-lib.sh"
|
|
|
|
inst "/lib/kdump/kdump-lib-initramfs.sh" "/lib/kdump-lib-initramfs.sh"
|
2020-11-05 05:34:29 +00:00
|
|
|
inst "/lib/kdump/kdump-logger.sh" "/lib/kdump-logger.sh"
|
2020-10-15 12:45:57 +00:00
|
|
|
inst "$moddir/kdump.sh" "/usr/bin/kdump.sh"
|
|
|
|
inst "$moddir/kdump-capture.service" "$systemdsystemunitdir/kdump-capture.service"
|
2020-12-23 10:00:07 +00:00
|
|
|
systemctl -q --root "$initdir" add-wants initrd.target kdump-capture.service
|
2020-10-15 12:45:57 +00:00
|
|
|
inst "$moddir/kdump-error-handler.sh" "/usr/bin/kdump-error-handler.sh"
|
|
|
|
# Replace existing emergency service and emergency target
|
|
|
|
cp "$moddir/kdump-emergency.service" "$initdir/$systemdsystemunitdir/emergency.service"
|
|
|
|
cp "$moddir/kdump-emergency.target" "$initdir/$systemdsystemunitdir/emergency.target"
|
|
|
|
# Also redirect dracut-emergency to kdump error handler
|
|
|
|
ln_r "$systemdsystemunitdir/emergency.service" "$systemdsystemunitdir/dracut-emergency.service"
|
|
|
|
|
|
|
|
# Check for all the devices and if any device is iscsi, bring up iscsi
|
|
|
|
# target. Ideally all this should be pushed into dracut iscsi module
|
|
|
|
# at some point of time.
|
|
|
|
kdump_check_iscsi_targets
|
|
|
|
|
|
|
|
kdump_install_systemd_conf
|
|
|
|
|
|
|
|
# nfs/ssh dump will need to get host ip in second kernel and need to call 'ip' tool, see get_host_ip for more detail
|
|
|
|
if is_nfs_dump_target || is_ssh_dump_target; then
|
|
|
|
inst "ip"
|
|
|
|
fi
|
|
|
|
|
|
|
|
# For the lvm type target under kdump, in /etc/lvm/lvm.conf we can
|
|
|
|
# safely replace "reserved_memory=XXXX"(default value is 8192) with
|
|
|
|
# "reserved_memory=1024" to lower memory pressure under kdump. We do
|
|
|
|
# it unconditionally here, if "/etc/lvm/lvm.conf" doesn't exist, it
|
|
|
|
# actually does nothing.
|
|
|
|
sed -i -e \
|
2021-11-09 13:42:45 +00:00
|
|
|
's/\(^[[:space:]]*reserved_memory[[:space:]]*=\)[[:space:]]*[[:digit:]]*/\1 1024/' \
|
|
|
|
"${initdir}/etc/lvm/lvm.conf" &> /dev/null
|
2020-10-15 12:45:57 +00:00
|
|
|
|
|
|
|
# Save more memory by dropping switch root capability
|
2021-07-12 08:07:05 +00:00
|
|
|
dracut_no_switch_root
|
2020-10-15 12:45:57 +00:00
|
|
|
}
|