public inbox for pve-devel@lists.proxmox.com
 help / color / mirror / Atom feed
* [pve-devel] [PATCH container] setup/debian: use cidr for buster and newer
@ 2020-07-10 16:43 Stoiko Ivanov
  2020-07-11 15:25 ` [pve-devel] applied: " Thomas Lamprecht
  0 siblings, 1 reply; 2+ messages in thread
From: Stoiko Ivanov @ 2020-07-10 16:43 UTC (permalink / raw)
  To: pve-devel

starting with version 0.8.35 of ifupdown (shipped currently with buster)
the configuration using a separate 'netmask' line instead of providing the
cidr in the 'address' line of a interface stanza of /etc/network/interfaces
is deprecated.

This means that some software installed on newer debian versions, which
parses /etc/network/interfaces may not support the format currently written
by PVE::LXC::Setup::Debian::setup_network.

This patch changes the content of the generated file to use the newer format
only for newer versions of debian (alpine, older ubuntu versions and devuan
also rely on the sub to generate the network config)

caught by installing proxmox-backup-server on a debian buster container and
getting a parse-error in the network configuration tab in the GUI.

tested by creating a ubuntu-14.04, debian-6, debian-8 and a debian-10
container and checking the resulting /etc/network/interfaces.

[0] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=912220

Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
---
 src/PVE/LXC/Setup/Debian.pm | 19 ++++++++++++++-----
 1 file changed, 14 insertions(+), 5 deletions(-)

diff --git a/src/PVE/LXC/Setup/Debian.pm b/src/PVE/LXC/Setup/Debian.pm
index 1d14606..13a2d55 100644
--- a/src/PVE/LXC/Setup/Debian.pm
+++ b/src/PVE/LXC/Setup/Debian.pm
@@ -157,6 +157,7 @@ sub setup_network {
 		    my $ipinfo = PVE::LXC::parse_ipv4_cidr($d->{ip});
 		    $net->{address} = $ipinfo->{address};
 		    $net->{netmask} = $ipinfo->{netmask};
+		    $net->{cidr} = $d->{ip};
 		    $cidr = $d->{ip};
 		}
 	    }
@@ -176,6 +177,7 @@ sub setup_network {
 		} else {
 		    $net->{address6} = $1;
 		    $net->{netmask6} = $2;
+		    $net->{cidr6} = $d->{ip6};
 		    $cidr = $d->{ip6};
 		}
 	    }
@@ -222,9 +224,12 @@ sub setup_network {
 		$interfaces .= "iface $ifname inet $1\n\n";
 	    } else {
 		$interfaces .= "iface $ifname inet static\n";
-		$interfaces .= "\taddress $net->{address}\n" if defined($net->{address});
-		$interfaces .= "\tnetmask $net->{netmask}\n" if defined($net->{netmask});
-
+		if ($conf->{ostype} eq "debian" && $self->{version} >= 10) {
+		    $interfaces .= "\taddress $net->{cidr}\n" if defined($net->{cidr});
+		} else {
+		    $interfaces .= "\taddress $net->{address}\n" if defined($net->{address});
+		    $interfaces .= "\tnetmask $net->{netmask}\n" if defined($net->{netmask});
+		}
 		remove_gateway_scripts($section->{attr});
 		if (defined(my $gw = $net->{gateway})) {
 		    if ($net->{needsroute}) {
@@ -247,8 +252,12 @@ sub setup_network {
 		$interfaces .= "iface $ifname inet6 $1\n\n";
 	    } else {
 		$interfaces .= "iface $ifname inet6 static\n";
-		$interfaces .= "\taddress $net->{address6}\n" if defined($net->{address6});
-		$interfaces .= "\tnetmask $net->{netmask6}\n" if defined($net->{netmask6});
+		if ($conf->{ostype} eq "debian" && $self->{version} >= 10) {
+		    $interfaces .= "\taddress $net->{cidr6}\n" if defined($net->{cidr6});
+		} else {
+		    $interfaces .= "\taddress $net->{address6}\n" if defined($net->{address6});
+		    $interfaces .= "\tnetmask $net->{netmask6}\n" if defined($net->{netmask6});
+		}
 		remove_gateway_scripts($section->{attr});
 		if (defined(my $gw = $net->{gateway6})) {
 		    if ($net->{needsroute6}) {
-- 
2.20.1





^ permalink raw reply	[flat|nested] 2+ messages in thread

* [pve-devel] applied: Re: [PATCH container] setup/debian: use cidr for buster and newer
  2020-07-10 16:43 [pve-devel] [PATCH container] setup/debian: use cidr for buster and newer Stoiko Ivanov
@ 2020-07-11 15:25 ` Thomas Lamprecht
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Lamprecht @ 2020-07-11 15:25 UTC (permalink / raw)
  To: Proxmox VE development discussion, Stoiko Ivanov

On 10.07.20 18:43, Stoiko Ivanov wrote:
> starting with version 0.8.35 of ifupdown (shipped currently with buster)
> the configuration using a separate 'netmask' line instead of providing the
> cidr in the 'address' line of a interface stanza of /etc/network/interfaces
> is deprecated.
> 
> This means that some software installed on newer debian versions, which
> parses /etc/network/interfaces may not support the format currently written
> by PVE::LXC::Setup::Debian::setup_network.
> 
> This patch changes the content of the generated file to use the newer format
> only for newer versions of debian (alpine, older ubuntu versions and devuan
> also rely on the sub to generate the network config)
> 
> caught by installing proxmox-backup-server on a debian buster container and
> getting a parse-error in the network configuration tab in the GUI.
> 
> tested by creating a ubuntu-14.04, debian-6, debian-8 and a debian-10
> container and checking the resulting /etc/network/interfaces.
> 
> [0] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=912220
> 
> Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
> ---
>  src/PVE/LXC/Setup/Debian.pm | 19 ++++++++++++++-----
>  1 file changed, 14 insertions(+), 5 deletions(-)
> 
>

applied, thanks! 




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-07-11 15:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-10 16:43 [pve-devel] [PATCH container] setup/debian: use cidr for buster and newer Stoiko Ivanov
2020-07-11 15:25 ` [pve-devel] applied: " Thomas Lamprecht

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal