89f9350d9e
- Fix dmraid issue bnc#905746 A dracut_dmraid_use_udev.patch - Taken over from SLE12 A fips_add_aesni-intel.patch - Do not touch /run vs /var/run bnc#922676 D 0106-dracut-Enable-converting-of-directory-var-run-var-lo.patch - Update dracut to version 042 Remove these already included or unneeded patches: D dracut_v041_to_HEAD.patch D 0011-Correct-paths-for-openSUSE.patch D 0068-95fcoe-uefi-Test-for-EFI-firmware.patch D 0170-enable-logitech-hidpp.patch Adjust/refresh: M 0015-40network-replace-dhclient-with-wickedd-dhcp-supplic.patch M 0016-Add-new-s390x-specific-rule-files.patch M 0017-45ifcfg-use-distro-specific-scripts.patch M 0019-40network-Fix-race-condition-when-wait-for-networks.patch M 0020-00warpclock-Set-correct-timezone.patch M 0021-95dcssblk-Add-new-module-for-DCSS-block-devices.patch M 0048-40network-Only-enable-network-interfaces-if-explicit.patch M 0053-01fips-fixup-loading-issues.patch M 0056-81cio_ignore-handle-cio_ignore-commandline.patch M 0057-01fips-Include-some-more-hmacs.patch M 0058-dracut-add-warning-when-including-unsupported-module.patch M 0059-99suse-Add-SUSE-specific-initrd-parsing.patch M 0060-45ifcfg-Add-SUSE-specific-write-ifcfg-file.patch M 0061-45ifcfg-Fixup-error-message-in-write-ifcfg-suse.patch M 0066-40network-always-start-netroot-in-ifup.sh.patch M 0075-95dasd_rules-enable-parsing-of-rd.dasd-commandline-p.patch M 0076-Correctly-set-cio_ignore-for-dynamic-s390-rules.patch OBS-URL: https://build.opensuse.org/request/show/314510 OBS-URL: https://build.opensuse.org/package/show/Base:System/dracut?expand=0&rev=219
168 lines
6.3 KiB
Diff
168 lines
6.3 KiB
Diff
From 50f59d60577283b71da5424e30d0c5981fb74f71 Mon Sep 17 00:00:00 2001
|
|
From: Hannes Reinecke <hare@suse.de>
|
|
Date: Fri, 18 Jul 2014 10:28:00 +0200
|
|
Subject: 40network: separate 'mask' and 'prefix'
|
|
|
|
The 'mask' parameter is used for both, the (IPv4) netmask and
|
|
the prefix length. As both are in different format separate them
|
|
out into 'mask' for the netmask and 'prefix' for the prefix length.
|
|
And also prefer the use of 'prefix' where possible to ease
|
|
calculation and better IPv6 support.
|
|
|
|
References: bnc#887542
|
|
|
|
Signed-off-by: Hannes Reinecke <hare@suse.de>
|
|
---
|
|
modules.d/40network/ifup.sh | 9 ++++----
|
|
modules.d/40network/net-lib.sh | 42 +++++++++++++++++++++++++++++++++---
|
|
modules.d/40network/parse-ip-opts.sh | 2 +-
|
|
3 files changed, 45 insertions(+), 8 deletions(-)
|
|
|
|
Index: dracut-042/modules.d/40network/ifup.sh
|
|
===================================================================
|
|
--- dracut-042.orig/modules.d/40network/ifup.sh 2015-06-24 18:02:13.849627528 +0200
|
|
+++ dracut-042/modules.d/40network/ifup.sh 2015-06-24 18:02:23.090153581 +0200
|
|
@@ -222,13 +222,14 @@ do_static() {
|
|
linkup $netif
|
|
[ -n "$macaddr" ] && ip link set address $macaddr dev $netif
|
|
[ -n "$mtu" ] && ip link set mtu $mtu dev $netif
|
|
+ [ -n "$mask" -a -z "$prefix" ] && prefix=$(mask_to_prefix $mask)
|
|
if strglobin $ip '*:*:*'; then
|
|
# note no ip addr flush for ipv6
|
|
- ip addr add $ip/$mask ${srv:+peer $srv} dev $netif
|
|
+ ip addr add $ip/$prefix ${srv:+peer $srv} dev $netif
|
|
wait_for_ipv6_dad $netif
|
|
else
|
|
ip addr flush dev $netif
|
|
- ip addr add $ip/$mask ${srv:+peer $srv} brd + dev $netif
|
|
+ ip addr add $ip/$prefix ${srv:+peer $srv} brd + dev $netif
|
|
fi
|
|
|
|
[ -n "$gw" ] && echo ip route replace default via $gw dev $netif > /tmp/net.$netif.gw
|
|
@@ -404,7 +405,7 @@ for p in $(getargs ip=); do
|
|
# Pull in existing static configuration
|
|
. /etc/sysconfig/network/ifcfg-${netif}
|
|
ip=${IPADDR}
|
|
- mask=${PREFIXLEN}
|
|
+ prefix=${PREFIXLEN}
|
|
mtu=${MTU}
|
|
server=${REMOTE_IPADDR}
|
|
gw=${GATEWAY}
|
|
@@ -418,7 +419,7 @@ for p in $(getargs ip=); do
|
|
done
|
|
|
|
# Store config for later use
|
|
- for i in ip srv gw mask hostname macaddr dns1 dns2; do
|
|
+ for i in ip srv gw mask prefix hostname macaddr dns1 dns2; do
|
|
eval '[ "$'$i'" ] && echo '$i'="$'$i'"'
|
|
done > /tmp/net.$netif.override
|
|
|
|
Index: dracut-042/modules.d/40network/net-lib.sh
|
|
===================================================================
|
|
--- dracut-042.orig/modules.d/40network/net-lib.sh 2015-06-24 18:02:22.802137185 +0200
|
|
+++ dracut-042/modules.d/40network/net-lib.sh 2015-06-24 18:02:23.090153581 +0200
|
|
@@ -7,6 +7,35 @@ get_ip() {
|
|
ip=${ip##* }
|
|
}
|
|
|
|
+mask_to_prefix() {
|
|
+ local mask="$1"
|
|
+ local prefix=0
|
|
+ local OLDIFS="$IFS"
|
|
+
|
|
+ IFS=:
|
|
+ set -- $mask
|
|
+ IFS="$OLDIFS"
|
|
+ for mask in $@ ; do
|
|
+ if [ "$mask" -eq 255 ] ; then
|
|
+ prefix=$(($prefix + 8))
|
|
+ elif [ "$mask" -eq 254 ] ; then
|
|
+ prefix=$(($prefix + 7))
|
|
+ elif [ "$mask" -eq 252 ] ; then
|
|
+ prefix=$(($prefix + 6))
|
|
+ elif [ "$mask" -eq 248 ] ; then
|
|
+ prefix=$(($prefix + 5))
|
|
+ elif [ "$mask" -eq 240 ] ; then
|
|
+ prefix=$(($prefix + 4))
|
|
+ elif [ "$mask" -eq 224 ] ; then
|
|
+ prefix=$(($prefix + 3))
|
|
+ elif [ "$mask" -eq 192 ] ; then
|
|
+ prefix=$(($prefix + 2))
|
|
+ elif [ "$mask" -eq 128 ] ; then
|
|
+ prefix=$(($prefix + 1))
|
|
+ fi
|
|
+ done
|
|
+}
|
|
+
|
|
iface_for_remote_addr() {
|
|
set -- $(ip -o route get to $1)
|
|
echo $5
|
|
@@ -204,7 +233,7 @@ ibft_to_cmdline() {
|
|
for iface in /sys/firmware/ibft/ethernet*; do
|
|
local mac="" dev=""
|
|
local dhcp="" ip="" gw="" mask="" hostname=""
|
|
- local dns1 dns2
|
|
+ local dns1 dns2 prefix
|
|
|
|
[ -e ${iface}/mac ] || continue
|
|
mac=$(read a < ${iface}/mac; echo $a)
|
|
@@ -249,6 +278,7 @@ ibft_to_cmdline() {
|
|
[ -e ${iface}/hostname ] && hostname=$(read a < ${iface}/hostname; echo $a)
|
|
if [ "$family" = "ipv6" ] ; then
|
|
if [ -n "$ip" ] ; then
|
|
+ # Prefix defaults to 64 for IPv6
|
|
[ -n "$prefix" ] || prefix=64
|
|
ip="[${ip}/${prefix}]"
|
|
mask=
|
|
@@ -256,6 +286,11 @@ ibft_to_cmdline() {
|
|
if [ -n "$gw" ] ; then
|
|
gw="[${gw}]"
|
|
fi
|
|
+ else
|
|
+ if [ -n "$prefix" ] ; then
|
|
+ ip="$ip/$prefix"
|
|
+ mask=
|
|
+ fi
|
|
fi
|
|
if [ -n "$ip" ] && [ -n "$mask" -o -n "$prefix" ]; then
|
|
echo "ip=$ip::$gw:$mask:$hostname:$dev:none${dns1:+:$dns1}${dns2:+:$dns2}"
|
|
@@ -264,6 +299,7 @@ ibft_to_cmdline() {
|
|
warn "ip-addr=$ip"
|
|
warn "gateway=$gw"
|
|
warn "subnet-mask=$mask"
|
|
+ warn "prefix-len=$prefix"
|
|
warn "hostname=$hostname"
|
|
fi
|
|
else
|
|
@@ -411,7 +447,7 @@ ip_to_var() {
|
|
fi
|
|
done
|
|
|
|
- unset ip srv gw mask hostname dev autoconf macaddr mtu dns1 dns2
|
|
+ unset ip srv gw mask prefix hostname dev autoconf macaddr mtu dns1 dns2
|
|
case $# in
|
|
0) autoconf="error" ;;
|
|
1) autoconf=$1 ;;
|
|
@@ -439,7 +475,7 @@ ip_to_var() {
|
|
# Extract prefix length from CIDR notation
|
|
case $ip in
|
|
*/*)
|
|
- mask=${ip##*/}
|
|
+ prefix=${ip##*/}
|
|
ip=${ip%/*}
|
|
;;
|
|
esac
|
|
Index: dracut-042/modules.d/40network/parse-ip-opts.sh
|
|
===================================================================
|
|
--- dracut-042.orig/modules.d/40network/parse-ip-opts.sh 2015-06-24 18:02:13.849627528 +0200
|
|
+++ dracut-042/modules.d/40network/parse-ip-opts.sh 2015-06-24 18:02:23.090153581 +0200
|
|
@@ -77,7 +77,7 @@ for p in $(getargs ip=); do
|
|
none|off)
|
|
[ -z "$ip" ] && \
|
|
die "For argument 'ip=$p'\nValue '$autoopt' without static configuration does not make sense"
|
|
- [ -z "$mask" ] && \
|
|
+ [ -z "$mask" -a -z "$prefix" ] && \
|
|
die "Sorry, automatic calculation of netmask is not yet supported"
|
|
;;
|
|
auto6);;
|