* [pmg-devel] [PATCH pmg-api] config: add ips/nets uniquely to the template variables
@ 2022-05-31 11:52 Dominik Csapak
2022-06-14 7:56 ` [pmg-devel] applied: " Wolfgang Bumiller
0 siblings, 1 reply; 2+ messages in thread
From: Dominik Csapak @ 2022-05-31 11:52 UTC (permalink / raw)
To: pmg-devel
otherwise a config with many entries such as:
domain1: ip1
domain2: ip1
domain3: ip1
etc.
unnecessarily adds 'ip1' multiple times to the 'mynetworks' variable
to keep the output sorted (so it's stable) move the sort to the 'join'
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
---
src/PMG/Config.pm | 40 +++++++++++++++++++++-------------------
1 file changed, 21 insertions(+), 19 deletions(-)
diff --git a/src/PMG/Config.pm b/src/PMG/Config.pm
index 31f9c6f..9ba5c76 100755
--- a/src/PMG/Config.pm
+++ b/src/PMG/Config.pm
@@ -1297,63 +1297,65 @@ sub get_template_vars {
my $int_ip = PMG::Cluster::remote_node_ip($dnsinfo->{hostname});
$vars->{ipconfig}->{int_ip} = $int_ip;
- my $transportnets = [];
+ my $transportnets = {};
+ my $mynetworks = {
+ '127.0.0.0/8' => 1,
+ '[::1]/128', => 1,
+ };
if (my $tmap = PVE::INotify::read_file('transport')) {
- foreach my $domain (sort keys %$tmap) {
+ foreach my $domain (keys %$tmap) {
my $data = $tmap->{$domain};
my $host = $data->{host};
if ($host =~ m/^$IPV4RE$/) {
- push @$transportnets, "$host/32";
+ $transportnets->{"$host/32"} = 1;
+ $mynetworks->{"$host/32"} = 1;
} elsif ($host =~ m/^(?:ipv6:)?($IPV6RE)$/i) {
- push @$transportnets, "[$1]/128";
+ $transportnets->{"[$1]/128"} = 1;
+ $mynetworks->{"[$1]/128"} = 1;
}
}
}
- $vars->{postfix}->{transportnets} = join(' ', @$transportnets);
-
- my $mynetworks = [ '127.0.0.0/8', '[::1]/128' ];
+ $vars->{postfix}->{transportnets} = join(' ', sort keys %$transportnets);
if (defined($int_ip)) { # we cannot really do anything and the loopback nets are already added
if (my $int_net_cidr = PMG::Utils::find_local_network_for_ip($int_ip, 1)) {
if ($int_net_cidr =~ m/^($IPV6RE)\/(\d+)$/) {
- push @$mynetworks, "[$1]/$2";
+ $mynetworks->{"[$1]/$2"} = 1;
} else {
- push @$mynetworks, $int_net_cidr;
+ $mynetworks->{$int_net_cidr} = 1;
}
} else {
if ($int_ip =~ m/^$IPV6RE$/) {
- push @$mynetworks, "[$int_ip]/128";
+ $mynetworks->{"[$int_ip]/128"} = 1;
} else {
- push @$mynetworks, "$int_ip/32";
+ $mynetworks->{"$int_ip/32"} = 1;
}
}
}
my $netlist = PVE::INotify::read_file('mynetworks');
- foreach my $cidr (sort keys %$netlist) {
+ foreach my $cidr (keys %$netlist) {
if ($cidr =~ m/^($IPV6RE)\/(\d+)$/) {
- push @$mynetworks, "[$1]/$2";
+ $mynetworks->{"[$1]/$2"} = 1;
} else {
- push @$mynetworks, $cidr;
+ $mynetworks->{$cidr} = 1;
}
}
- push @$mynetworks, @$transportnets;
-
# add default relay to mynetworks
if (my $relay = $self->get('mail', 'relay')) {
if ($relay =~ m/^$IPV4RE$/) {
- push @$mynetworks, "$relay/32";
+ $mynetworks->{"$relay/32"} = 1;
} elsif ($relay =~ m/^$IPV6RE$/) {
- push @$mynetworks, "[$relay]/128";
+ $mynetworks->{"[$relay]/128"} = 1;
} else {
# DNS name - do nothing ?
}
}
- $vars->{postfix}->{mynetworks} = join(' ', @$mynetworks);
+ $vars->{postfix}->{mynetworks} = join(' ', sort keys %$mynetworks);
# normalize dnsbl_sites
my @dnsbl_sites = PVE::Tools::split_list($vars->{pmg}->{mail}->{dnsbl_sites});
--
2.30.2
^ permalink raw reply [flat|nested] 2+ messages in thread
* [pmg-devel] applied: [PATCH pmg-api] config: add ips/nets uniquely to the template variables
2022-05-31 11:52 [pmg-devel] [PATCH pmg-api] config: add ips/nets uniquely to the template variables Dominik Csapak
@ 2022-06-14 7:56 ` Wolfgang Bumiller
0 siblings, 0 replies; 2+ messages in thread
From: Wolfgang Bumiller @ 2022-06-14 7:56 UTC (permalink / raw)
To: Dominik Csapak; +Cc: pmg-devel
could have probably gone with a single hash but it's clearer this way
given the function's length
applied
On Tue, May 31, 2022 at 01:52:53PM +0200, Dominik Csapak wrote:
> otherwise a config with many entries such as:
> domain1: ip1
> domain2: ip1
> domain3: ip1
> etc.
>
> unnecessarily adds 'ip1' multiple times to the 'mynetworks' variable
>
> to keep the output sorted (so it's stable) move the sort to the 'join'
>
> Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
> ---
> src/PMG/Config.pm | 40 +++++++++++++++++++++-------------------
> 1 file changed, 21 insertions(+), 19 deletions(-)
>
> diff --git a/src/PMG/Config.pm b/src/PMG/Config.pm
> index 31f9c6f..9ba5c76 100755
> --- a/src/PMG/Config.pm
> +++ b/src/PMG/Config.pm
> @@ -1297,63 +1297,65 @@ sub get_template_vars {
> my $int_ip = PMG::Cluster::remote_node_ip($dnsinfo->{hostname});
> $vars->{ipconfig}->{int_ip} = $int_ip;
>
> - my $transportnets = [];
> + my $transportnets = {};
> + my $mynetworks = {
> + '127.0.0.0/8' => 1,
> + '[::1]/128', => 1,
> + };
>
> if (my $tmap = PVE::INotify::read_file('transport')) {
> - foreach my $domain (sort keys %$tmap) {
> + foreach my $domain (keys %$tmap) {
> my $data = $tmap->{$domain};
> my $host = $data->{host};
> if ($host =~ m/^$IPV4RE$/) {
> - push @$transportnets, "$host/32";
> + $transportnets->{"$host/32"} = 1;
> + $mynetworks->{"$host/32"} = 1;
(...)
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-06-14 7:56 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-31 11:52 [pmg-devel] [PATCH pmg-api] config: add ips/nets uniquely to the template variables Dominik Csapak
2022-06-14 7:56 ` [pmg-devel] applied: " Wolfgang Bumiller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox