proxinstall: avoid open-coding FQDN sanity check

.. by moving it into its own subroutine. Makes the whole thing quite a
bit neater and easier to maintain.

No functional changes.

Signed-off-by: Christoph Heiss <c.heiss@proxmox.com>
This commit is contained in:
Christoph Heiss 2024-02-15 13:39:36 +01:00 committed by Thomas Lamprecht
parent 5ee2afa71e
commit 93892c0188
4 changed files with 83 additions and 17 deletions

View File

@ -4,7 +4,7 @@ use strict;
use warnings;
use base qw(Exporter);
our @EXPORT_OK = qw(parse_ip_address parse_ip_mask);
our @EXPORT_OK = qw(parse_ip_address parse_ip_mask parse_fqdn);
our $HOSTNAME_RE = "(?:[a-zA-Z0-9](?:[a-zA-Z0-9\-]*[a-zA-Z0-9])?)";
our $FQDN_RE = "(?:${HOSTNAME_RE}\.)*${HOSTNAME_RE}";
@ -214,4 +214,24 @@ sub get_dhcp_fqdn : prototype() {
return $name if defined($name) && $name =~ m/^([^\.]+)(?:\.(?:\S+))?$/;
}
# Follows the rules as laid out by proxmox_installer_common::utils::Fqdn
sub parse_fqdn : prototype($) {
my ($text) = @_;
die "FQDN cannot be empty\n"
if !$text || length($text) == 0;
die "Purely numeric hostnames are not allowed\n"
if $text =~ /^[0-9]+(?:\.|$)/;
die "FQDN must only consist of alphanumeric characters and dashes\n"
if $text !~ m/^${Proxmox::Sys::Net::FQDN_RE}$/;
if ($text =~ m/^([^\.]+)\.(\S+)$/) {
return ($1, $2);
}
die "Hostname does not look like a fully qualified domain name\n";
}
1;

View File

@ -457,24 +457,16 @@ sub create_ipconf_view {
$text =~ s/^\s+//;
$text =~ s/\s+$//;
# Debian does not support purely numeric hostnames
if ($text && $text =~ /^[0-9]+(?:\.|$)/) {
Proxmox::UI::message("Purely numeric hostnames are not allowed.");
$hostentry->grab_focus();
return;
}
my ($hostname, $domainname) = eval { Proxmox::Sys::Net::parse_fqdn($text) };
my $err = $@;
if ($text
&& $text =~ m/^${Proxmox::Sys::Net::FQDN_RE}$/
&& $text !~ m/.example.invalid$/
&& $text =~ m/^([^\.]+)\.(\S+)$/
) {
Proxmox::Install::Config::set_hostname($1);
Proxmox::Install::Config::set_domain($2);
} else {
Proxmox::UI::message("Hostname does not look like a fully qualified domain name.");
if ($err || $text =~ m/.example.invalid$/) {
Proxmox::UI::message($err // 'Hostname does not look like a valid fully qualified domain name');
$hostentry->grab_focus();
return;
} else {
Proxmox::Install::Config::set_hostname($hostname);
Proxmox::Install::Config::set_domain($domainname);
}
# verify ip address

View File

@ -3,7 +3,7 @@ all:
export PERLLIB=..
.PHONY: check
check: test-zfs-arc-max test-run-command
check: test-zfs-arc-max test-run-command test-parse-fqdn
.PHONY: test-zfs-arc-max
test-zfs-arc-max:
@ -11,3 +11,7 @@ test-zfs-arc-max:
test-run-command:
./run-command.pl
.PHONY: test-parse-fqdn
test-parse-fqdn:
./parse-fqdn.pl

50
test/parse-fqdn.pl Executable file
View File

@ -0,0 +1,50 @@
#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Proxmox::Sys::Net qw(parse_fqdn);
# some constants just to avoid repeating ourselves
use constant ERR_INVALID => "Hostname does not look like a fully qualified domain name\n";
use constant ERR_ALPHANUM => "FQDN must only consist of alphanumeric characters and dashes\n";
use constant ERR_NUMERIC => "Purely numeric hostnames are not allowed\n";
use constant ERR_TOOLONG => "FQDN too long\n";
use constant ERR_EMPTY => "FQDN cannot be empty\n";
sub is_parsed {
my ($fqdn, $expected) = @_;
my @parsed = parse_fqdn($fqdn);
is_deeply(\@parsed, $expected, "FQDN is valid and compared successfully: $fqdn");
}
sub is_invalid {
my ($fqdn, $expected_err) = @_;
my $parsed = eval { parse_fqdn($fqdn) };
is($parsed, undef, "invalid FQDN did fail parsing: $fqdn");
is($@, $expected_err, "invalid FQDN threw correct error: $fqdn");
}
is_invalid(undef, ERR_EMPTY);
is_invalid('', ERR_EMPTY);
is_parsed('foo.example.com', ['foo', 'example.com']);
is_parsed('foo-bar.com', ['foo-bar', 'com']);
is_parsed('a-b.com', ['a-b', 'com']);
is_invalid('foo', ERR_INVALID);
is_invalid('-foo.com', ERR_ALPHANUM);
is_invalid('foo-.com', ERR_ALPHANUM);
is_invalid('foo.com-', ERR_ALPHANUM);
is_invalid('-o-.com', ERR_ALPHANUM);
# https://bugzilla.proxmox.com/show_bug.cgi?id=1054
is_invalid('123.com', ERR_NUMERIC);
is_parsed('foo123.com', ['foo123', 'com']);
is_parsed('123foo.com', ['123foo', 'com']);
done_testing();