]> git.proxmox.com Git - pve-installer.git/blobdiff - proxinstall
factor out storage config generation and handling
[pve-installer.git] / proxinstall
index 77bc140a73a68d8bb9160b9169773222a9d5471a..908b719299608dd370050bba0d3fe8da9f29452f 100755 (executable)
 use strict;
 use warnings;
 
-$ENV{DEBIAN_FRONTEND} = 'noninteractive';
-$ENV{LC_ALL} = 'C';
-
 use Getopt::Long;
 use IPC::Open2;
-use IPC::Open3;
 use IO::File;
-use IO::Select;
 use Cwd 'abs_path';
 use Glib;
-use Gtk3 '-init';
+use Gtk3;
 use Gtk3::WebKit2;
 use Encode;
-use String::ShellQuote;
-use Data::Dumper;
 use File::Basename;
 use File::Path;
 use Time::HiRes;
 use POSIX ":sys_wait_h";
 
-use ProxmoxInstallerSetup;
+use Proxmox::Log;
+Proxmox::Log::init("/tmp/install.log");
+
+use Proxmox::Install::ISOEnv;
+use Proxmox::Install::RunEnv;
+use Proxmox::Install::StorageConfig;
+
+use Proxmox::Sys::Block qw(get_cached_disks wipe_disk partition_bootable_disk);
+use Proxmox::Sys::Command qw(run_command syscmd);
+use Proxmox::Sys::File qw(file_read_firstline file_read_all file_write_all);
+use Proxmox::Sys::Net qw(parse_ip_address parse_ip_mask);
+use Proxmox::UI;
 
 if (!$ENV{G_SLICE} ||  $ENV{G_SLICE} ne "always-malloc") {
     die "do not use slice allocator (run with 'G_SLICE=always-malloc ./proxinstall ...')\n";
 }
 
-my $opt_testmode;
-if (!GetOptions('testmode=s' => \$opt_testmode)) {
-    die "usage error\n";
-    exit (-1);
-}
+{
+    my $test_image;
+    GetOptions(
+       'test-image|t=s' => \$test_image
+    ) or die "usage error\n";
 
-$ENV{'LVM_SUPPRESS_FD_WARNINGS'} = '1';
-
-my ($setup, $cd_info) = ProxmoxInstallerSetup::setup();
-
-my $zfstestpool = "test_rpool";
-my $zfspoolname = $opt_testmode ? $zfstestpool : 'rpool';
-my $zfsrootvolname = "$setup->{product}-1";
-
-my $storage_cfg_zfs = <<__EOD__;
-dir: local
-       path /var/lib/vz
-       content iso,vztmpl,backup
-
-zfspool: local-zfs
-       pool $zfspoolname/data
-       sparse
-       content images,rootdir
-__EOD__
-
-my $storage_cfg_btrfs = <<__EOD__;
-dir: local
-       path /var/lib/vz
-       content iso,vztmpl,backup
-       disable
-
-btrfs: local-btrfs
-       path /var/lib/pve/local-btrfs
-       content iso,vztmpl,backup,images,rootdir
-__EOD__
-
-my $storage_cfg_lvmthin = <<__EOD__;
-dir: local
-       path /var/lib/vz
-       content iso,vztmpl,backup
-
-lvmthin: local-lvm
-       thinpool data
-       vgname pve
-       content rootdir,images
-__EOD__
-
-my $storage_cfg_local = <<__EOD__;
-dir: local
-       path /var/lib/vz
-       content iso,vztmpl,backup,rootdir,images
-__EOD__
-
-sub file_read_firstline {
-    my ($filename) = @_;
-
-    my $fh = IO::File->new ($filename, "r");
-    return undef if !$fh;
-    my $res = <$fh>;
-    chomp $res if $res;
-    $fh->close;
-    return $res;
+    Proxmox::Install::ISOEnv::set_test_image($test_image) if $test_image;
 }
 
-my $logfd = IO::File->new(">/tmp/install.log");
+my $iso_env = Proxmox::Install::ISOEnv::get(); # init singleton
+my $run_env = Proxmox::Install::RunEnv::query_installation_environment();
 
-my $proxmox_libdir = $opt_testmode
-    ? Cwd::cwd() . "/testdir/var/lib/proxmox-installer"
-    : "/var/lib/proxmox-installer"
-    ;
-my $proxmox_cddir = $opt_testmode ? "../pve-cd-builder/tmp/data-gz/" : "/cdrom";
+my $proxmox_libdir = $iso_env->{locations}->{lib};
+my $proxmox_cddir = $iso_env->{locations}->{iso};
 my $proxmox_pkgdir = "${proxmox_cddir}/proxmox/packages/";
 
-my $boot_type = -d '/sys/firmware/efi' ? 'efi' : 'bios';
-
-my $IPV4OCTET = "(?:25[0-5]|(?:2[0-4]|1[0-9]|[1-9])?[0-9])";
-my $IPV4RE = "(?:(?:$IPV4OCTET\\.){3}$IPV4OCTET)";
-my $IPV6H16 = "(?:[0-9a-fA-F]{1,4})";
-my $IPV6LS32 = "(?:(?:$IPV4RE|$IPV6H16:$IPV6H16))";
-
-my $IPV6RE = "(?:" .
-    "(?:(?:" .                             "(?:$IPV6H16:){6})$IPV6LS32)|" .
-    "(?:(?:" .                           "::(?:$IPV6H16:){5})$IPV6LS32)|" .
-    "(?:(?:(?:" .              "$IPV6H16)?::(?:$IPV6H16:){4})$IPV6LS32)|" .
-    "(?:(?:(?:(?:$IPV6H16:){0,1}$IPV6H16)?::(?:$IPV6H16:){3})$IPV6LS32)|" .
-    "(?:(?:(?:(?:$IPV6H16:){0,2}$IPV6H16)?::(?:$IPV6H16:){2})$IPV6LS32)|" .
-    "(?:(?:(?:(?:$IPV6H16:){0,3}$IPV6H16)?::(?:$IPV6H16:){1})$IPV6LS32)|" .
-    "(?:(?:(?:(?:$IPV6H16:){0,4}$IPV6H16)?::" .           ")$IPV6LS32)|" .
-    "(?:(?:(?:(?:$IPV6H16:){0,5}$IPV6H16)?::" .            ")$IPV6H16)|" .
-    "(?:(?:(?:(?:$IPV6H16:){0,6}$IPV6H16)?::" .                    ")))";
-
-my $IPRE = "(?:$IPV4RE|$IPV6RE)";
-
-
-my $ipv4_mask_hash = {
-    '128.0.0.0' => 1,
-    '192.0.0.0' => 2,
-    '224.0.0.0' => 3,
-    '240.0.0.0' => 4,
-    '248.0.0.0' => 5,
-    '252.0.0.0' => 6,
-    '254.0.0.0' => 7,
-    '255.0.0.0' => 8,
-    '255.128.0.0' => 9,
-    '255.192.0.0' => 10,
-    '255.224.0.0' => 11,
-    '255.240.0.0' => 12,
-    '255.248.0.0' => 13,
-    '255.252.0.0' => 14,
-    '255.254.0.0' => 15,
-    '255.255.0.0' => 16,
-    '255.255.128.0' => 17,
-    '255.255.192.0' => 18,
-    '255.255.224.0' => 19,
-    '255.255.240.0' => 20,
-    '255.255.248.0' => 21,
-    '255.255.252.0' => 22,
-    '255.255.254.0' => 23,
-    '255.255.255.0' => 24,
-    '255.255.255.128' => 25,
-    '255.255.255.192' => 26,
-    '255.255.255.224' => 27,
-    '255.255.255.240' => 28,
-    '255.255.255.248' => 29,
-    '255.255.255.252' => 30,
-    '255.255.255.254' => 31,
-    '255.255.255.255' => 32
-};
-
-my $ipv4_reverse_mask = [
-    '0.0.0.0',
-    '128.0.0.0',
-    '192.0.0.0',
-    '224.0.0.0',
-    '240.0.0.0',
-    '248.0.0.0',
-    '252.0.0.0',
-    '254.0.0.0',
-    '255.0.0.0',
-    '255.128.0.0',
-    '255.192.0.0',
-    '255.224.0.0',
-    '255.240.0.0',
-    '255.248.0.0',
-    '255.252.0.0',
-    '255.254.0.0',
-    '255.255.0.0',
-    '255.255.128.0',
-    '255.255.192.0',
-    '255.255.224.0',
-    '255.255.240.0',
-    '255.255.248.0',
-    '255.255.252.0',
-    '255.255.254.0',
-    '255.255.255.0',
-    '255.255.255.128',
-    '255.255.255.192',
-    '255.255.255.224',
-    '255.255.255.240',
-    '255.255.255.248',
-    '255.255.255.252',
-    '255.255.255.254',
-    '255.255.255.255',
-];
-
 my $step_number = 0; # Init number for global function list
 
 my @steps = (
@@ -237,10 +92,9 @@ my @steps = (
 );
 
 # GUI global variables
-my ($window, $cmdbox, $inbox, $htmlview);
-my $prev_btn;
-my ($next, $next_fctn, $target_hd);
-my ($progress, $progress_status);
+my $gtk_state = {};
+
+my $target_hd;
 
 my ($ipversion, $ipaddress, $cidr, $ipconf_entry_addr);
 my ($netmask, $ipconf_entry_mask);
@@ -250,12 +104,11 @@ my $hostname = 'proxmox';
 my $domain = 'domain.tld';
 my $cmdline = file_read_firstline("/proc/cmdline");
 my $ipconf;
-my $country;
+my $country = $run_env->{country};
 my $timezone = 'Europe/Vienna';
 my $keymap = 'en-us';
 my $password;
 my $mailto = 'mail@example.invalid';
-my $cmap;
 my $autoreboot_seconds = 5;
 
 my $config = {
@@ -303,7 +156,7 @@ if ($cmdline =~ m/minfree=(\d+(\.\d+)?)[\s\n]/i) {
     $config_options->{minfree} = $1;
 }
 
-if ($setup->{product} eq 'pve') {
+if ($iso_env->{product} eq 'pve') {
     if ($cmdline =~ m/maxvz=(\d+(\.\d+)?)[\s\n]/i) {
        $config_options->{maxvz} = $1;
     }
@@ -335,458 +188,27 @@ compatibility_level = 2
 
 _EOD
 
-sub shellquote {
-    my $str = shift;
-
-    return String::ShellQuote::shell_quote($str);
-}
-
-sub cmd2string {
-    my ($cmd) = @_;
-
-    die "no arguments" if !$cmd;
-
-    return $cmd if !ref($cmd);
-
-    my @qa = ();
-    foreach my $arg (@$cmd) { push @qa, shellquote($arg); }
-
-    return join (' ', @qa);
-}
-
-sub syscmd {
-    my ($cmd) = @_;
-
-    return run_command($cmd, undef, undef, 1);
-}
-
-sub run_command {
-    my ($cmd, $func, $input, $noout) = @_;
-
-    my $cmdstr;
-    if (!ref($cmd)) {
-       $cmdstr = $cmd;
-       if ($cmd =~ m/|/) {
-           # see 'man bash' for option pipefail
-           $cmd = [ '/bin/bash', '-c', "set -o pipefail && $cmd" ];
-       } else {
-           $cmd = [ $cmd ];
-       }
-    } else {
-       $cmdstr = cmd2string($cmd);
-    }
-
-    my $cmdtxt;
-    if ($input && ($cmdstr !~ m/chpasswd/)) {
-       $cmdtxt = "# $cmdstr <<EOD\n$input";
-       chomp $cmdtxt;
-       $cmdtxt .= "\nEOD\n";
-    } else {
-       $cmdtxt = "# $cmdstr\n";
-    }
-
-    if ($opt_testmode) {
-       print $cmdtxt;
-       STDOUT->flush();
-    }
-
-    print $logfd $cmdtxt;
-
-    my $reader = IO::File->new();
-    my $writer = IO::File->new();
-    my $error  = IO::File->new();
-
-    my $orig_pid = $$;
-
-    my $pid = eval { open3($writer, $reader, $error, @$cmd) || die $!; };
-    my $err = $@;
-
-    # catch exec errors
-    if ($orig_pid != $$) {
-       POSIX::_exit (1);
-       kill ('KILL', $$);
-    }
-
-    die $err if $err;
-
-    print $writer $input if defined $input;
-    close $writer;
-
-    my $select = IO::Select->new();
-    $select->add($reader);
-    $select->add($error);
-
-    my ($ostream, $logout) = ('', '', '');
-
-    while ($select->count) {
-       my @handles = $select->can_read (0.2);
-
-       Gtk3::main_iteration() while Gtk3::events_pending();
-
-       next if !scalar (@handles); # timeout
-
-       foreach my $h (@handles) {
-           my $buf = '';
-           my $count = sysread ($h, $buf, 4096);
-           if (!defined ($count)) {
-               my $err = $!;
-               kill (9, $pid);
-               waitpid ($pid, 0);
-               die "command '$cmd' failed: $err";
-           }
-           $select->remove($h) if !$count;
-           if ($h eq $reader) {
-               $ostream .= $buf if !($noout || $func);
-               $logout .= $buf;
-               while ($logout =~ s/^([^\010\r\n]*)(\r|\n|(\010)+|\r\n)//s) {
-                   my $line = $1;
-                   &$func($line) if $func;
-               }
-
-           } elsif ($h eq $error) {
-               $ostream .= $buf if !($noout || $func);
-           }
-           print $buf;
-           STDOUT->flush();
-           print $logfd $buf;
-       }
-    }
-
-    &$func($logout) if $func;
-
-    my $rv = waitpid ($pid, 0);
-
-    return $? if $noout; # behave like standard system();
-
-    if ($? == -1) {
-       die "command '$cmdstr' failed to execute\n";
-    } elsif (my $sig = ($? & 127)) {
-       die "command '$cmdstr' failed - got signal $sig\n";
-    } elsif (my $exitcode = ($? >> 8)) {
-       die "command '$cmdstr' failed with exit code $exitcode";
-    }
-
-    return $ostream;
-}
-
-# forks and runs the provided coderef in the child
-# do not use syscmd or run_command as both confuse the GTK mainloop if
-# run from a child process
-sub run_in_background {
-    my ($cmd) = @_;
-
-    my $pid = fork() // die "fork failed: $!\n";
-    if (!$pid) {
-       eval { $cmd->(); };
-       if (my $err = $@) {
-           warn "run_in_background error: $err\n";
-           POSIX::_exit(1);
-       }
-       POSIX::_exit(0);
-    }
-}
-
-sub detect_country {
-
-    print "trying to detect country...\n";
-    my $cpid = open2(\*TMP, undef, "traceroute -N 1 -q 1 -n 8.8.8.8");
-    return undef if !$cpid;
-
-    my $country;
-
-    my $previous_alarm = alarm (10);
-    eval  {
-       local $SIG{ALRM} = sub { die "timed out!\n" };
-       my $line;
-       while (defined ($line = <TMP>)) {
-           print $logfd "DC TRACEROUTE: $line";
-           if ($line =~ m/\s*\d+\s+(\d+\.\d+\.\d+\.\d+)\s/) {
-               my $geoip = `geoiplookup $1`;
-               print $logfd "DC GEOIP: $geoip";
-               if ($geoip =~ m/GeoIP Country Edition:\s*([A-Z]+),/) {
-                   $country = lc ($1);
-                   print $logfd "DC FOUND: $country\n";
-                   last;
-               }
-           }
-       }
-    };
-
-    my $err = $@;
-
-    alarm ($previous_alarm);
-
-    close (TMP);
-
-    if ($err) {
-       print "unable to detect country - $err\n";
-    } elsif ($country) {
-       print "detected country: " . uc($country) . "\n";
-    } else {
-       print "unable to detect country\n";
-    }
-
-    return $country;
-}
-
-sub get_memtotal {
-
-    open (my $MEMINFO, '<', '/proc/meminfo');
 
-    my $res = 512; # default to 512 if something goes wrong
-    while (my $line = <$MEMINFO>) {
-       if ($line =~ m/^MemTotal:\s+(\d+)\s*kB/i) {
-           $res = int ($1 / 1024);
-       }
-    }
-
-    close($MEMINFO);
-
-    return $res;
-}
-
-my $total_memory = get_memtotal();
-
-sub link_points_to {
-    my ($src, $dest) = @_;
-
-    my ($dev1,$ino1) = stat ($src);
-    my ($dev2,$ino2) = stat ($dest);
-
-    return 0 if !($dev1 && $dev2 && $ino1 && $ino2);
-
-    return $ino1 == $ino2 && $dev1 == $dev2;
-}
-
-sub find_stable_path {
-    my ($stabledir, $bdev) = @_;
-
-    foreach my $path (<$stabledir/*>) {
-       if (link_points_to($path, $bdev)) {
-           return wantarray ? ($path, basename($path)) : $path;
-       }
-    }
-}
-
-sub find_dev_by_uuid {
-    my $bdev = shift;
-
-    my ($full_path, $name) = find_stable_path("/dev/disk/by-uuid", $bdev);
-
-    return $name;
-}
-
-sub hd_list {
-
-    my $res = ();
-
-    if ($opt_testmode) {
-       my @disks = split /,/, $opt_testmode;
-
-       for my $disk (@disks) {
-           push @$res, [-1, $disk, int((-s $disk)/512), "TESTDISK", 512];
-       }
-       return $res;
-    }
-
-    my $count = 0;
-
-    foreach my $bd (</sys/block/*>) {
-       next if $bd =~ m|^/sys/block/ram\d+$|;
-       next if $bd =~ m|^/sys/block/loop\d+$|;
-       next if $bd =~ m|^/sys/block/md\d+$|;
-       next if $bd =~ m|^/sys/block/dm-.*$|;
-       next if $bd =~ m|^/sys/block/fd\d+$|;
-       next if $bd =~ m|^/sys/block/sr\d+$|;
-
-       my $dev = file_read_firstline("$bd/dev");
-       chomp $dev;
-
-       next if !$dev;
-
-       my $info = `udevadm info --path $bd --query all`;
-       next if !$info;
-
-       next if $info !~ m/^E: DEVTYPE=disk$/m;
-
-       next if $info =~ m/^E: ID_CDROM/m;
-       next if $info =~ m/^E: ID_FS_TYPE=iso9660/m;
-
-       my ($name) = $info =~ m/^N: (\S+)$/m;
-
-       if ($name) {
-           my $real_name = "/dev/$name";
-
-           my $size = file_read_firstline("$bd/size");
-           chomp $size;
-           $size = undef if !($size && $size =~ m/^\d+$/);
-
-           my $model = file_read_firstline("$bd/device/model") || '';
-           $model =~ s/^\s+//;
-           $model =~ s/\s+$//;
-           if (length ($model) > 30) {
-               $model = substr ($model, 0, 30);
-           }
-
-           my $logical_bsize = file_read_firstline("$bd/queue/logical_block_size") // '';
-           chomp $logical_bsize;
-           $logical_bsize = undef if !($logical_bsize && $logical_bsize =~ m/^\d+$/);
-
-           push @$res, [$count++, $real_name, $size, $model, $logical_bsize] if $size;
-       } else {
-           print STDERR "ERROR: unable to map device $dev ($bd)\n";
-       }
-    }
-
-    return $res;
-}
-
-sub read_cmap {
-    my $countryfn = "${proxmox_libdir}/country.dat";
-    open (my $TMP, "<:encoding(utf8)", "$countryfn") || die "unable to open '$countryfn' - $!\n";
-    my $line;
-    my $country = {};
-    my $countryhash = {};
-    my $kmap = {};
-    my $kmaphash = {};
-    while (defined ($line = <$TMP>)) {
-       if ($line =~ m|^map:([^\s:]+):([^:]+):([^:]+):([^:]+):([^:]+):([^:]*):$|) {
-           $kmap->{$1} = {
-               name => $2,
-               kvm => $3,
-               console => $4,
-               x11 => $5,
-               x11var => $6,
-           };
-           $kmaphash->{$2} = $1;
-       } elsif ($line =~ m|^([a-z]{2}):([^:]+):([^:]*):([^:]*):$|) {
-           $country->{$1} = {
-               name => $2,
-               kmap => $3,
-               mirror => $4,
-           };
-           $countryhash->{lc($2)} = $1;
-       } else {
-           warn "unable to parse 'country.dat' line: $line";
-       }
-    }
-    close ($TMP);
-    $TMP = undef;
-
-    my $zones = {};
-    my $cczones = {};
-    my $zonefn = "/usr/share/zoneinfo/zone.tab";
-    open ($TMP, '<', "$zonefn") || die "unable to open '$zonefn' - $!\n";
-    while (defined ($line = <$TMP>)) {
-       next if $line =~ m/^\#/;
-       next if $line =~ m/^\s*$/;
-       if ($line =~ m|^([A-Z][A-Z])\s+\S+\s+(([^/]+)/\S+)\s|) {
-           my $cc = lc($1);
-           $cczones->{$cc}->{$2} = 1;
-           $country->{$cc}->{zone} = $2 if !defined ($country->{$cc}->{zone});
-           $zones->{$2} = 1;
-
-       }
-    }
-    close ($TMP);
-
-    return {
-       zones => $zones,
-       cczones => $cczones,
-       country => $country,
-       countryhash => $countryhash,
-       kmap => $kmap,
-       kmaphash => $kmaphash,
-    }
-}
-
-# search for Harddisks
-my $hds = hd_list();
-
-sub hd_size {
-    my ($dev) = @_;
-
-    foreach my $hd (@$hds) {
-       my ($disk, $devname, $size, $model, $logical_bsize) = @$hd;
-       # size is always (also for 4kn disks) in 512B "sectors"! convert to KB
-       return int($size/2) if $devname eq $dev;
-    }
-
-    die "no such device '$dev'\n";
-}
+sub app_quit {
+    my ($exit_code) = @_;
 
-sub logical_blocksize {
-    my ($dev) = @_;
+    Gtk3->main_quit() if Gtk3->main_level() > 0;
 
-    foreach my $hd (@$hds) {
-       my ($disk, $devname, $size, $model, $logical_bsize) = @$hd;
-       return $logical_bsize if $devname eq $dev;
+    # reap left over zombie processes
+    while ((my $child = waitpid(-1, POSIX::WNOHANG)) > 0) {
+       print STDERR "reaped child $child\n";
     }
-
-    die "no such device '$dev'\n";
-}
-
-sub get_partition_dev {
-    my ($dev, $partnum) = @_;
-
-    if ($dev =~ m|^/dev/sd([a-h]?[a-z]\|i[a-v])$|) {
-       return "${dev}$partnum";
-    } elsif ($dev =~ m|^/dev/xvd[a-z]$|) {
-       # Citrix Hypervisor blockdev
-       return "${dev}$partnum";
-    } elsif ($dev =~ m|^/dev/[hxev]d[a-z]$|) {
-       return "${dev}$partnum";
-    } elsif ($dev =~ m|^/dev/[^/]+/c\d+d\d+$|) {
-       return "${dev}p$partnum";
-    } elsif ($dev =~ m|^/dev/[^/]+/d\d+$|) {
-       return "${dev}p$partnum";
-    } elsif ($dev =~ m|^/dev/[^/]+/hd[a-z]$|) {
-       return "${dev}$partnum";
-    } elsif ($dev =~ m|^/dev/nvme\d+n\d+$|) {
-       return "${dev}p$partnum";
-    } else {
-       die "unable to get device for partition $partnum on device $dev\n";
-    }
-
-}
-
-sub file_get_contents {
-    my ($filename, $max) = @_;
-
-    my $fh = IO::File->new($filename, "r") ||
-       die "can't open '$filename' - $!\n";
-
-    local $/; # slurp mode
-
-    my $content = <$fh>;
-
-    close $fh;
-
-    return $content;
-}
-
-sub write_config {
-    my ($text, $filename) = @_;
-
-    my $fd = IO::File->new(">$filename") ||
-       die "unable to open file '$filename' - $!\n";
-    print $fd $text;
-    $fd->close();
+    exit($exit_code);
 }
 
 sub update_progress {
     my ($frac, $start, $end, $text) = @_;
 
-    my $part = $end - $start;
-    my $res = $start + $frac * $part;
-
-    $progress->set_fraction ($res);
-    $progress->set_text (sprintf ("%d%%", int ($res*100)));
-    $progress_status->set_text ($text) if defined ($text);
+    my $res = Proxmox::UI::progress($frac, $start, $end, $text);
 
     display_info() if $res < 0.9;
 
-    Gtk3::main_iteration() while Gtk3::events_pending();
+    Proxmox::UI::process_events();
 }
 
 my $fssetup = {
@@ -836,7 +258,7 @@ sub debconfig_set {
     my ($targetdir, $dcdata) = @_;
 
     my $cfgfile = "/tmp/debconf.txt";
-    write_config($dcdata, "$targetdir/$cfgfile");
+    file_write_all("$targetdir/$cfgfile", $dcdata);
     syscmd("chroot $targetdir debconf-set-selections $cfgfile");
     unlink "$targetdir/$cfgfile";
 }
@@ -844,30 +266,28 @@ sub debconfig_set {
 sub diversion_add {
     my ($targetdir, $cmd, $new_cmd) = @_;
 
-    syscmd("chroot $targetdir dpkg-divert --package proxmox " .
-          "--add --rename $cmd") == 0 ||
-          die "unable to exec dpkg-divert\n";
+    syscmd("chroot $targetdir dpkg-divert --package proxmox --add --rename $cmd") == 0
+        || die "unable to exec dpkg-divert\n";
 
-    syscmd("ln -sf ${new_cmd} $targetdir/$cmd") == 0 ||
-       die "unable to link diversion to ${new_cmd}\n";
+    syscmd("ln -sf ${new_cmd} $targetdir/$cmd") == 0
+        || die "unable to link diversion to ${new_cmd}\n";
 }
 
 sub diversion_remove {
     my  ($targetdir, $cmd) = @_;
 
-    syscmd("mv $targetdir/${cmd}.distrib $targetdir/${cmd};") == 0 ||
-       die "unable to remove $cmd diversion\n";
+    syscmd("mv $targetdir/${cmd}.distrib $targetdir/${cmd};") == 0
+        || die "unable to remove $cmd diversion\n";
 
-    syscmd("chroot $targetdir dpkg-divert --remove $cmd") == 0 ||
-       die "unable to remove $cmd diversion\n";
+    syscmd("chroot $targetdir dpkg-divert --remove $cmd") == 0
+        || die "unable to remove $cmd diversion\n";
 }
 
 sub btrfs_create {
     my ($partitions, $mode) = @_;
 
     die "unknown btrfs mode '$mode'"
-       if !($mode eq 'single' || $mode eq 'raid0' ||
-            $mode eq 'raid1' || $mode eq 'raid10');
+       if !($mode eq 'single' || $mode eq 'raid0' || $mode eq 'raid1' || $mode eq 'raid10');
 
     my $cmd = ['mkfs.btrfs', '-f'];
 
@@ -879,154 +299,44 @@ sub btrfs_create {
 }
 
 sub zfs_create_rpool {
-    my ($vdev) = @_;
+    my ($vdev, $pool_name, $root_volume_name) = @_;
 
     my $cmd = "zpool create -f -o cachefile=none";
 
     $cmd .= " -o ashift=$config_options->{ashift}"
         if defined($config_options->{ashift});
 
-    syscmd("$cmd $zfspoolname $vdev") == 0 ||
+    syscmd("$cmd $pool_name $vdev") == 0 ||
        die "unable to create zfs root pool\n";
 
-    syscmd("zfs create $zfspoolname/ROOT")  == 0 ||
-        die "unable to create zfs $zfspoolname/ROOT volume\n";
+    syscmd("zfs create $pool_name/ROOT")  == 0 ||
+        die "unable to create zfs $pool_name/ROOT volume\n";
 
-    if ($setup->{product} eq 'pve') {
-       syscmd("zfs create $zfspoolname/data")  == 0 ||
-           die "unable to create zfs $zfspoolname/data volume\n";
+    if ($iso_env->{product} eq 'pve') {
+       syscmd("zfs create $pool_name/data")  == 0 ||
+           die "unable to create zfs $pool_name/data volume\n";
     }
 
-    syscmd("zfs create $zfspoolname/ROOT/$zfsrootvolname")  == 0 ||
-       die "unable to create zfs $zfspoolname/ROOT/$zfsrootvolname volume\n";
+    syscmd("zfs create $pool_name/ROOT/$root_volume_name")  == 0 ||
+       die "unable to create zfs $pool_name/ROOT/$root_volume_name volume\n";
 
     # default to `relatime` on, fast enough for the installer and production
-    syscmd("zfs set atime=on relatime=on $zfspoolname") == 0 ||
+    syscmd("zfs set atime=on relatime=on $pool_name") == 0 ||
        die "unable to set zfs properties\n";
 
     my $value = $config_options->{compress};
-    syscmd("zfs set compression=$value $zfspoolname")
+    syscmd("zfs set compression=$value $pool_name")
         if defined($value) && $value ne 'off';
 
     $value = $config_options->{checksum};
-    syscmd("zfs set checksum=$value $zfspoolname")
+    syscmd("zfs set checksum=$value $pool_name")
         if defined($value) && $value ne 'on';
 
     $value = $config_options->{copies};
-    syscmd("zfs set copies=$value $zfspoolname")
+    syscmd("zfs set copies=$value $pool_name")
         if defined($value) && $value != 1;
 }
 
-my $udevadm_trigger_block = sub {
-    my ($nowait) = @_;
-
-    sleep(1) if !$nowait; # give kernel time to reread part table
-
-    # trigger udev to create /dev/disk/by-uuid
-    syscmd("udevadm trigger --subsystem-match block");
-    syscmd("udevadm settle --timeout 10");
-};
-
-my $clean_disk = sub {
-    my ($disk) = @_;
-
-    # sort longest first as we need to cleanup depth-first
-    my @partitions = sort { length($b) <=> length($a) }
-       split("\n", `lsblk --output kname --noheadings --path --list $disk`);
-
-    for my $part (@partitions) {
-       next if $part eq $disk;
-       next if $part !~ /^\Q$disk\E/;
-       eval { syscmd("pvremove -ff -y $part"); };
-       eval { syscmd("zpool labelclear -f $part"); };
-       eval { syscmd("dd if=/dev/zero of=$part bs=1M count=16"); };
-    }
-    eval { syscmd("wipefs -a " . cmd2string(\@partitions)) };
-    warn "$@" if $@;
-};
-
-sub partition_bootable_disk {
-    my ($target_dev, $maxhdsizegb, $ptype) = @_;
-
-    die "too dangerous" if $opt_testmode;
-
-    die "unknown partition type '$ptype'"
-       if !($ptype eq '8E00' || $ptype eq '8300' || $ptype eq 'BF01');
-
-    my $hdsize = hd_size($target_dev); # size in KB (1024 bytes)
-
-    # For bigger disks default to generous ESP size to allow users having multiple kernels/UKI's
-    my $esp_size = $hdsize > 100 * 1024 * 1024 ? 1024 : 512; # MB
-    my $esp_end = $esp_size + 1;
-
-    my $restricted_hdsize_mb = 0; # 0 ==> end of partition
-    if ($maxhdsizegb) {
-       my $maxhdsize = $maxhdsizegb * 1024 * 1024;
-       if ($maxhdsize < $hdsize) {
-           $hdsize = $maxhdsize;
-           $restricted_hdsize_mb = int($hdsize/1024) . 'M';
-       }
-    }
-
-    my $hdgb = int($hdsize/(1024*1024));
-
-    my ($hard_limit, $soft_limit) = (2, 8);
-
-    die "root disk '$target_dev' too small (${hdgb} GB < $hard_limit GB)\n" if $hdgb < $hard_limit;
-    if ($hdgb < $soft_limit) {
-       my $response = display_prompt(
-           "Root disk space ${hdgb} GB is below recommended minimum space of $soft_limit GB,"
-           ." installation might not be successful! Continue?"
-       );
-       die "root disk '$target_dev' too small (${hdgb} GB < $soft_limit GB), and warning not accepted.\n"
-           if $response ne 'ok';
-    }
-
-
-    syscmd("sgdisk -Z ${target_dev}");
-
-    # 1 - BIOS boot partition (Grub Stage2): first free 1 MB
-    # 2 - EFI ESP: next free 512 or 1024 MB
-    # 3 - OS/Data partition: rest, up to $maxhdsize in MB
-
-    my $grubbootdev = get_partition_dev($target_dev, 1);
-    my $efibootdev = get_partition_dev($target_dev, 2);
-    my $osdev = get_partition_dev ($target_dev, 3);
-
-    my $pcmd = ['sgdisk'];
-
-    my $pnum = 2;
-    push @$pcmd, "-n${pnum}:1M:+${esp_size}M", "-t$pnum:EF00";
-
-    $pnum = 3;
-    push @$pcmd, "-n${pnum}:${esp_end}M:${restricted_hdsize_mb}", "-t$pnum:$ptype";
-
-    push @$pcmd, $target_dev;
-
-    my $os_size = $hdsize - $esp_end * 1024; # efi + 1M bios_boot + 1M alignment
-
-    syscmd($pcmd) == 0 ||
-       die "unable to partition harddisk '${target_dev}'\n";
-
-    my $blocksize = logical_blocksize($target_dev);
-
-    if ($blocksize != 4096) {
-       $pnum = 1;
-       $pcmd = ['sgdisk', '-a1', "-n$pnum:34:2047", "-t$pnum:EF02" , $target_dev];
-
-       syscmd($pcmd) == 0 ||
-           die "unable to create bios_boot partition '${target_dev}'\n";
-    }
-
-    &$udevadm_trigger_block();
-
-    foreach my $part ($efibootdev, $osdev) {
-       syscmd("dd if=/dev/zero of=$part bs=1M count=256") if -b $part;
-    }
-
-    return ($os_size, $osdev, $efibootdev);
-}
-
 sub get_pv_list_from_vgname {
     my ($vgname) = @_;
 
@@ -1073,7 +383,7 @@ sub ask_existing_vg_rename_or_abort {
     }
     $message .= "or cancel the installation?";
 
-    my $response = display_prompt($message);
+    my $response = Proxmox::UI::prompt($message);
 
     if ($response eq 'ok') {
        for my $vg_uuid (keys %$duplicate_vgs) {
@@ -1084,16 +394,15 @@ sub ask_existing_vg_rename_or_abort {
                die "could not rename VG from '$vg->{pvs}' ($vg_uuid) to '$new_vgname'!\n";
        }
     } else {
-       set_next("_Reboot", sub { exit (0); } );
-       display_html("fail.htm");
-       die "Cancled installation by user, due to already existing volume group '$vgname'\n";
+       warn "Canceled installation by user, due to already existing volume group '$vgname'\n";
+       die "\n"; # causes abort without re-showing an error dialogue
     }
 }
 
 sub create_lvm_volumes {
     my ($lvmdev, $os_size, $swap_size) = @_;
 
-    my $vgname = $setup->{product};
+    my $vgname = $iso_env->{product};
 
     ask_existing_vg_rename_or_abort($vgname);
 
@@ -1117,7 +426,7 @@ sub create_lvm_volumes {
     my $rootsize;
     my $datasize = 0;
 
-    if ($setup->{product} eq 'pve') {
+    if ($iso_env->{product} eq 'pve') {
 
        my $maxroot_mb;
        if ($config_options->{maxroot}) {
@@ -1191,8 +500,8 @@ sub create_lvm_volumes {
        syscmd("/sbin/lvconvert --yes --type thin-pool --poolmetadatasize ${metadatasize}K $vgname/data") == 0 ||
            die "unable to create data thin-pool\n";
     } else {
-       if  ($setup->{product} eq 'pve' && !defined($config_options->{maxvz})) {
-           display_message("Skipping auto-creation of LVM thinpool for guest data due to low space.");
+       if ($iso_env->{product} eq 'pve' && !defined($config_options->{maxvz})) {
+           Proxmox::UI::message("Skipping auto-creation of LVM thinpool for guest data due to low space.");
        }
        $datadev = undef;
     }
@@ -1212,7 +521,7 @@ sub compute_swapsize {
     if (defined($config_options->{swapsize})) {
        $swapsize_kb = $config_options->{swapsize} * 1024 * 1024;
     } else {
-       my $ss = int($total_memory);
+       my $ss = int($run_env->{total_memory});
        $ss = 4096 if $ss < 4096 && $hdgb >= 64;
        $ss = 2048 if $ss < 2048 && $hdgb >= 32;
        $ss = 1024 if $ss >= 2048 && $hdgb <= 16;
@@ -1264,7 +573,7 @@ sub prepare_grub_efi_boot_esp {
     eval {
        my $rc = syscmd("chroot $targetdir /usr/sbin/grub-install --target x86_64-efi --no-floppy --bootloader-id='proxmox' $dev");
        if ($rc != 0) {
-           if ($boot_type eq 'efi') {
+           if ($run_env->{boot_type} eq 'efi') {
                die "unable to install the EFI boot loader on '$dev'\n";
            } else {
                warn "unable to install the EFI boot loader on '$dev', ignoring (not booted using UEFI)\n";
@@ -1295,19 +604,18 @@ sub extract_data {
 
     my $bootdevinfo = [];
 
-    my $swapfile;
-    my $rootdev;
-    my $datadev;
-
-    my $use_zfs = 0;
-    my $use_btrfs = 0;
+    my ($swapfile, $rootdev, $datadev);
+    my ($use_zfs, $use_btrfs) = (0, 0);
 
     my $filesys = $config_options->{filesys};
 
+    my $zfs_pool_name = Proxmox::Install::StorageConfig::get_zfs_pool_name();
+    my $zfs_root_volume_name = Proxmox::Install::StorageConfig::get_zfs_root_volume_name();
+
     if ($filesys =~ m/zfs/) {
        $target_hd = undef; # do not use this config
        $use_zfs = 1;
-       $targetdir = "/$zfspoolname/ROOT/$zfsrootvolname";
+       $targetdir = "/$zfs_pool_name/ROOT/$zfs_root_volume_name";
     } elsif ($filesys =~ m/btrfs/) {
        $target_hd = undef; # do not use this config
        $use_btrfs = 1;
@@ -1331,11 +639,12 @@ sub extract_data {
 
        update_progress(0, 0, $maxper, "cleanup root-disks");
 
-       syscmd("vgchange -an") if !$opt_testmode; # deactivate all detected VGs
+       syscmd("vgchange -an") if !is_test_mode(); # deactivate all detected VGs
 
-       if ($opt_testmode) {
+       if (is_test_mode()) {
 
-           $rootdev = abs_path($opt_testmode);
+           my $test_images = Proxmox::Install::ISOEnv::get_test_images();
+           $rootdev = abs_path($test_images->[0]); # FIXME: use all selected for test too!
            syscmd("umount $rootdev");
 
            if ($use_btrfs) {
@@ -1350,9 +659,9 @@ sub extract_data {
                die "unsupported zfs mode (for testing environment)\n"
                    if $filesys ne 'zfs (RAID0)';
 
-               syscmd("zpool destroy $zfstestpool");
+               syscmd("zpool destroy $zfs_pool_name");
 
-               zfs_create_rpool($rootdev);
+               zfs_create_rpool($rootdev, $zfs_pool_name, $zfs_root_volume_name);
 
            } else {
 
@@ -1364,7 +673,7 @@ sub extract_data {
            my ($devlist, $btrfs_mode) = get_btrfs_raid_setup();
 
            foreach my $hd (@$devlist) {
-               $clean_disk->(@$hd[1]);
+               wipe_disk(@$hd[1]);
            }
 
            update_progress(0, 0.02, $maxper, "create partitions");
@@ -1374,10 +683,10 @@ sub extract_data {
                my $devname = @$hd[1];
                my $logical_bsize = @$hd[4];
 
-               my ($size, $osdev, $efidev) =
-                   partition_bootable_disk($devname, $config_options->{hdsize}, '8300');
+               my ($size, $osdev, $efidev) = partition_bootable_disk(
+                   $devname, $config_options->{hdsize}, '8300');
                $rootdev = $osdev if !defined($rootdev); # simply point to first disk
-               my $by_id = find_stable_path("/dev/disk/by-id", $devname);
+               my $by_id = Proxmox::Sys::Block::get_disk_by_id_path($devname);
                push @$bootdevinfo, {
                    esp => $efidev,
                    devname => $devname,
@@ -1388,7 +697,7 @@ sub extract_data {
                push @$btrfs_partitions, $osdev;
            }
 
-           $udevadm_trigger_block->();
+           Proxmox::Sys::Block::udevadm_trigger_block();
 
            update_progress(0, 0.03, $maxper, "create btrfs");
 
@@ -1399,7 +708,7 @@ sub extract_data {
            my ($devlist, $vdev) = get_zfs_raid_setup();
 
            foreach my $hd (@$devlist) {
-               $clean_disk->(@$hd[1]);
+               wipe_disk(@$hd[1]);
            }
 
            update_progress(0, 0.02, $maxper, "create partitions");
@@ -1420,44 +729,44 @@ sub extract_data {
                };
            }
 
-           $udevadm_trigger_block->();
+           Proxmox::Sys::Block::udevadm_trigger_block();
 
            foreach my $di (@$bootdevinfo) {
                my $devname = $di->{devname};
-               $di->{by_id} = find_stable_path ("/dev/disk/by-id", $devname);
+               $di->{by_id} = Proxmox::Sys::Block::get_disk_by_id_path($devname);
 
-               my $osdev = find_stable_path ("/dev/disk/by-id", $di->{osdev}) || $di->{osdev};
+               my $osdev = Proxmox::Sys::Block::get_disk_by_id_path($di->{osdev}) || $di->{osdev};
 
                $vdev =~ s/ $devname/ $osdev/;
            }
 
            foreach my $hd (@$devlist) {
                my $devname = @$hd[1];
-               my $by_id = find_stable_path ("/dev/disk/by-id", $devname);
+               my $by_id = Proxmox::Sys::Block::get_disk_by_id_path($devname);
 
                $vdev =~ s/ $devname/ $by_id/ if $by_id;
            }
 
            update_progress(0, 0.03, $maxper, "create rpool");
 
-           zfs_create_rpool($vdev);
+           zfs_create_rpool($vdev, $zfs_pool_name);
 
        } else {
 
            die "target '$target_hd' is not a valid block device\n" if ! -b $target_hd;
 
-           $clean_disk->($target_hd);
+           wipe_disk($target_hd);
 
            update_progress(0, 0.02, $maxper, "create partitions");
 
-           my $logical_bsize = logical_blocksize($target_hd);
+           my $logical_bsize = Proxmox::Sys::Block::logical_blocksize($target_hd);
 
            my ($os_size, $osdev, $efidev) =
                partition_bootable_disk($target_hd, $config_options->{hdsize}, '8E00');
 
-           &$udevadm_trigger_block();
+           Proxmox::Sys::Block::udevadm_trigger_block();
 
-           my $by_id = find_stable_path ("/dev/disk/by-id", $target_hd);
+           my $by_id = Proxmox::Sys::Block::get_disk_by_id_path($target_hd);
            push @$bootdevinfo, {
                esp => $efidev,
                devname => $target_hd,
@@ -1473,12 +782,12 @@ sub extract_data {
                create_lvm_volumes($osdev, $os_size, $swap_size);
 
            # trigger udev to create /dev/disk/by-uuid
-           &$udevadm_trigger_block(1);
+           Proxmox::Sys::Block::udevadm_trigger_block(1);
        }
 
        if ($use_zfs) {
            # to be fast during installation
-           syscmd("zfs set sync=disabled $zfspoolname") == 0 ||
+           syscmd("zfs set sync=disabled $zfs_pool_name") == 0 ||
                die "unable to set zfs properties\n";
        }
 
@@ -1525,7 +834,7 @@ sub extract_data {
        mkdir "$targetdir/var";
        mkdir "$targetdir/var/lib";
 
-       if ($setup->{product} eq 'pve') {
+       if ($iso_env->{product} eq 'pve') {
            mkdir "$targetdir/var/lib/vz";
            mkdir "$targetdir/var/lib/pve";
 
@@ -1545,7 +854,7 @@ sub extract_data {
        my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size) = stat ($basefile);
        $ino || die "unable to open file '$basefile' - $!\n";
 
-       my $files = file_read_firstline("${proxmox_cddir}/proxmox/$setup->{product}-base.cnt") ||
+       my $files = file_read_firstline("${proxmox_cddir}/proxmox/$iso_env->{product}-base.cnt") ||
            die "unable to read base file count\n";
 
        my $per = 0;
@@ -1570,7 +879,7 @@ sub extract_data {
            || die "unable to bind-mount packages on $targetdir/tmp/pkg\n";
        syscmd("mount -n -t proc proc $targetdir/proc") == 0 || die "unable to mount proc on $targetdir/proc\n";
        syscmd("mount -n -t sysfs sysfs $targetdir/sys") == 0 || die "unable to mount sysfs on $targetdir/sys\n";
-       if ($boot_type eq 'efi') {
+       if ($run_env->{boot_type} eq 'efi') {
            syscmd("mount -n -t efivarfs efivarfs $targetdir/sys/firmware/efi/efivars") == 0 ||
                die "unable to mount efivarfs on $targetdir/sys/firmware/efi/efivars: $!\n";
        }
@@ -1592,11 +901,11 @@ sub extract_data {
            "ff02::2 ip6-allrouters\n" .
            "ff02::3 ip6-allhosts\n";
 
-       write_config($hosts, "$targetdir/etc/hosts");
+       file_write_all("$targetdir/etc/hosts", $hosts);
 
-       write_config("$hostname\n", "$targetdir/etc/hostname");
+       file_write_all("$targetdir/etc/hostname", "$hostname\n");
 
-       syscmd("/bin/hostname $hostname") if !$opt_testmode;
+       syscmd("/bin/hostname $hostname") if !is_test_mode();
 
        # configure interfaces
 
@@ -1606,7 +915,7 @@ sub extract_data {
 
        my $ethdev = $ipconf->{ifaces}->{$ipconf->{selected}}->{name};
 
-       if ($setup->{bridged_network}) {
+       if ($iso_env->{cfg}->{bridged_network}) {
            $ifaces .= "iface $ethdev $ntype manual\n";
 
            $ifaces .=
@@ -1630,12 +939,12 @@ sub extract_data {
            $ifaces .= "\niface $name $ntype manual\n";
        }
 
-       write_config($ifaces, "$targetdir/etc/network/interfaces");
+       file_write_all("$targetdir/etc/network/interfaces", $ifaces);
 
        # configure dns
 
        my $resolvconf = "search $domain\nnameserver $dnsserver\n";
-       write_config($resolvconf, "$targetdir/etc/resolv.conf");
+       file_write_all("$targetdir/etc/resolv.conf", $resolvconf);
 
        # configure fstab
 
@@ -1666,13 +975,13 @@ sub extract_data {
        # Note: this is required by current grub, but really dangerous, because
        # vfat does not have journaling, so it triggers manual fsck after each crash
        # so we only mount /boot/efi if really required (efi systems).
-       if ($boot_type eq 'efi' && !$use_zfs) {
+       if ($run_env->{boot_type} eq 'efi' && !$use_zfs) {
            if (scalar(@$bootdevinfo)) {
                my $di = @$bootdevinfo[0]; # simply use first disk
 
                if ($di->{esp}) {
                    my $efi_boot_uuid = $di->{esp};
-                   if (my $uuid = find_dev_by_uuid ($di->{esp})) {
+                   if (my $uuid = Proxmox::Sys::Block::get_dev_uuid($di->{esp})) {
                        $efi_boot_uuid = "UUID=$uuid";
                    }
 
@@ -1686,14 +995,12 @@ sub extract_data {
 
        $fstab .= "proc /proc proc defaults 0 0\n";
 
-       write_config($fstab, "$targetdir/etc/fstab");
-       write_config("", "$targetdir/etc/mtab");
+       file_write_all("$targetdir/etc/fstab", $fstab);
+       file_write_all("$targetdir/etc/mtab", "");
 
-       syscmd("cp ${proxmox_libdir}/policy-disable-rc.d " .
-               "$targetdir/usr/sbin/policy-rc.d") == 0 ||
+       syscmd("cp ${proxmox_libdir}/policy-disable-rc.d $targetdir/usr/sbin/policy-rc.d") == 0 ||
                die "unable to copy policy-rc.d\n";
-       syscmd("cp ${proxmox_libdir}/fake-start-stop-daemon " .
-               "$targetdir/sbin/") == 0 ||
+       syscmd("cp ${proxmox_libdir}/fake-start-stop-daemon $targetdir/sbin/") == 0 ||
                die "unable to copy start-stop-daemon\n";
 
        diversion_add($targetdir, "/sbin/start-stop-daemon", "/sbin/fake-start-stop-daemon");
@@ -1702,7 +1009,7 @@ sub extract_data {
 
        my $machine_id = run_command("systemd-id128 new");
        die "unable to create a new machine-id\n" if ! $machine_id;
-       write_config($machine_id, "$targetdir/etc/machine-id");
+       file_write_all("$targetdir/etc/machine-id", $machine_id);
 
        syscmd("cp /etc/hostid $targetdir/etc/") == 0 ||
            die "unable to copy hostid\n";
@@ -1716,7 +1023,7 @@ sub extract_data {
        }
 
        # Note: keyboard-configuration/xbkb-keymap is used by console-setup
-       my $xkmap = $cmap->{kmap}->{$keymap}->{x11} // 'us';
+       my $xkmap = $iso_env->{locales}->{kmap}->{$keymap}->{x11} // 'us';
 
        debconfig_set ($targetdir, <<_EOD);
 locales locales/default_environment_locale select en_US.UTF-8
@@ -1741,7 +1048,7 @@ _EOD
            my $path = $_;
            my ($deb) = $path =~ m/${proxmox_pkgdir}\/(.*\.deb)/;
            update_progress($count/$pkg_count, 0.5, 0.75, "extracting $deb");
-           print "extracting: $deb\n";
+           print STDERR "extracting: $deb\n";
            syscmd("chroot $targetdir dpkg $dpkg_opts --force-depends --no-triggers --unpack /tmp/pkg/$deb") == 0
                || die "installation of package $deb failed\n";
            update_progress((++$count)/$pkg_count, 0.5, 0.75);
@@ -1761,7 +1068,7 @@ _EOD
 
        unlink "$targetdir/etc/mailname";
        $postfix_main_cf =~ s/__FQDN__/${hostname}.${domain}/;
-       write_config($postfix_main_cf, "$targetdir/etc/postfix/main.cf");
+       file_write_all("$targetdir/etc/postfix/main.cf", $postfix_main_cf);
 
        # make sure we have all postfix directories
        syscmd("chroot $targetdir /usr/sbin/postfix check");
@@ -1775,22 +1082,22 @@ _EOD
        # set timezone
        unlink ("$targetdir/etc/localtime");
        symlink ("/usr/share/zoneinfo/$timezone", "$targetdir/etc/localtime");
-       write_config("$timezone\n", "$targetdir/etc/timezone");
+       file_write_all("$targetdir/etc/timezone", "$timezone\n");
 
        # set apt mirror
-       if (my $mirror = $cmap->{country}->{$country}->{mirror}) {
+       if (my $mirror = $iso_env->{locales}->{country}->{$country}->{mirror}) {
            my $fn = "$targetdir/etc/apt/sources.list";
            syscmd("sed -i 's/ftp\\.debian\\.org/$mirror/' '$fn'");
        }
 
        # create extended_states for apt (avoid cron job warning if that
        # file does not exist)
-       write_config('', "$targetdir/var/lib/apt/extended_states");
+       file_write_all("$targetdir/var/lib/apt/extended_states", '');
 
        # allow ssh root login
        syscmd(['sed', '-i', 's/^#\?PermitRootLogin.*/PermitRootLogin yes/', "$targetdir/etc/ssh/sshd_config"]);
 
-       if ($setup->{product} eq 'pmg') {
+       if ($iso_env->{product} eq 'pmg') {
            # install initial clamav DB
            my $srcdir = "${proxmox_cddir}/proxmox/clamav";
            foreach my $fn ("main.cvd", "bytecode.cvd", "daily.cvd", "safebrowsing.cvd") {
@@ -1801,7 +1108,7 @@ _EOD
                die "unable to set owner for clamav database files\n";
        }
 
-       if ($setup->{product} eq 'pve') {
+       if ($iso_env->{product} eq 'pve') {
            # save installer settings
            my $ucc = uc ($country);
            debconfig_set($targetdir, "pve-manager pve-manager/country string $ucc\n");
@@ -1811,10 +1118,10 @@ _EOD
 
        if ($use_zfs) {
            # add ZFS options while preserving existing kernel cmdline
-           my $zfs_snippet = "GRUB_CMDLINE_LINUX=\"\$GRUB_CMDLINE_LINUX root=ZFS=$zfspoolname/ROOT/$zfsrootvolname boot=zfs\"";
-           write_config($zfs_snippet, "$targetdir/etc/default/grub.d/zfs.cfg");
+           my $zfs_snippet = "GRUB_CMDLINE_LINUX=\"\$GRUB_CMDLINE_LINUX root=ZFS=$zfs_pool_name/ROOT/$zfs_root_volume_name boot=zfs\"";
+           file_write_all("$targetdir/etc/default/grub.d/zfs.cfg", $zfs_snippet);
 
-           write_config("root=ZFS=$zfspoolname/ROOT/$zfsrootvolname boot=zfs\n", "$targetdir/etc/kernel/cmdline");
+           file_write_all("$targetdir/etc/kernel/cmdline", "root=ZFS=$zfs_pool_name/ROOT/$zfs_root_volume_name boot=zfs\n");
 
        }
 
@@ -1830,7 +1137,7 @@ _EOD
        }
        die "unable to detect kernel version\n" if !defined($kapi);
 
-       if (!$opt_testmode) {
+       if (!is_test_mode()) {
 
            unlink ("$targetdir/etc/mtab");
            symlink ("/proc/mounts", "$targetdir/etc/mtab");
@@ -1859,13 +1166,11 @@ _EOD
                            push @$bootloader_err_list, $@ if $@;
                        }
 
-                   eval {
                        if (my $esp = $di->{esp}) {
-                               prepare_grub_efi_boot_esp($dev, $esp, $targetdir);
-                           }
+                           eval { prepare_grub_efi_boot_esp($dev, $esp, $targetdir) };
+                           push @$bootloader_err_list, $@ if $@;
                        }
-                   };
-                   push @$bootloader_err_list, $@ if $@;
+                   }
                }
 
                syscmd("chroot $targetdir /usr/sbin/update-grub") == 0 ||
@@ -1893,12 +1198,11 @@ _EOD
        run_command("chroot $targetdir /usr/sbin/chpasswd", undef,
                    "root:$octets\n");
 
-       if ($setup->{product} eq 'pmg') {
+       if ($iso_env->{product} eq 'pmg') {
            # save admin email
-           write_config("section: admin\n\temail ${mailto}\n",
-                        "$targetdir/etc/pmg/pmg.conf");
+           file_write_all("$targetdir/etc/pmg/pmg.conf", "section: admin\n\temail ${mailto}\n");
 
-       } elsif ($setup->{product} eq 'pve') {
+       } elsif ($iso_env->{product} eq 'pve') {
 
            # create pmxcfs DB
 
@@ -1906,29 +1210,29 @@ _EOD
            mkdir $tmpdir;
 
            # write vnc keymap to datacenter.cfg
-           my $vnckmap = $cmap->{kmap}->{$keymap}->{kvm} || 'en-us';
-           write_config("keyboard: $vnckmap\n",
-                        "$tmpdir/datacenter.cfg");
+           my $vnckmap = $iso_env->{locales}->{kmap}->{$keymap}->{kvm} || 'en-us';
+           file_write_all("$tmpdir/datacenter.cfg", "keyboard: $vnckmap\n");
 
            # save admin email
-           write_config("user:root\@pam:1:0:::${mailto}::\n", "$tmpdir/user.cfg");
+           file_write_all("$tmpdir/user.cfg", "user:root\@pam:1:0:::${mailto}::\n");
 
            # write storage.cfg
-           my $storage_cfg_fn = "$tmpdir/storage.cfg";
+           my $storage_cfg;
            if ($use_zfs) {
-               write_config($storage_cfg_zfs, $storage_cfg_fn);
+               $storage_cfg = Proxmox::Install::StorageConfig::get_zfs_config($iso_env);
            } elsif ($use_btrfs) {
-               write_config($storage_cfg_btrfs, $storage_cfg_fn);
+               $storage_cfg = Proxmox::Install::StorageConfig::get_btrfs_config();
            } elsif ($datadev) {
-               write_config($storage_cfg_lvmthin, $storage_cfg_fn);
+               $storage_cfg = Proxmox::Install::StorageConfig::get_lvm_thin_config();
            } else {
-               write_config($storage_cfg_local, $storage_cfg_fn);
+               $storage_cfg = Proxmox::Install::StorageConfig::get_local_config();
            }
+           file_write_all("$tmpdir/storage.cfg", $storage_cfg);
 
            run_command("chroot $targetdir /usr/bin/create_pmxcfs_db /tmp/pve /var/lib/pve-cluster/config.db");
 
            syscmd("rm -rf $tmpdir");
-       } elsif ($setup->{product} eq 'pbs') {
+       } elsif ($iso_env->{product} eq 'pbs') {
            my $base_cfg_path = "/etc/proxmox-backup";
            mkdir "$targetdir/$base_cfg_path";
 
@@ -1936,7 +1240,7 @@ _EOD
            chroot_chmod($targetdir, $base_cfg_path, mode => '0700');
 
            my $user_cfg_fn = "$base_cfg_path/user.cfg";
-           write_config("user: root\@pam\n\temail ${mailto}\n", "$targetdir/$user_cfg_fn");
+           file_write_all("$targetdir/$user_cfg_fn", "user: root\@pam\n\temail ${mailto}\n");
            chroot_chown($targetdir, $user_cfg_fn, user => 'root', group => 'backup');
            chroot_chmod($targetdir, $user_cfg_fn, mode => '0640');
        }
@@ -1946,11 +1250,11 @@ _EOD
 
     update_progress(1, 0, 1, "");
 
-    print $err if $err;
+    print STDERR $err if $err && $err ne "\n";
 
-    if ($opt_testmode) {
+    if (is_test_mode()) {
        my $elapsed = Time::HiRes::tv_interval($starttime);
-       print "Elapsed extract time: $elapsed\n";
+       print STDERR "Elapsed extract time: $elapsed\n";
 
        syscmd("chroot $targetdir /usr/bin/dpkg-query -W --showformat='\${package}\n'> final.pkglist");
     }
@@ -1972,19 +1276,19 @@ _EOD
     }
 
     if (!$err && $use_zfs) {
-       syscmd("zfs set sync=standard $zfspoolname") == 0 ||
+       syscmd("zfs set sync=standard $zfs_pool_name") == 0 ||
            die "unable to set zfs properties\n";
 
-       syscmd("zfs set mountpoint=/ $zfspoolname/ROOT/$zfsrootvolname") == 0 ||
+       syscmd("zfs set mountpoint=/ $zfs_pool_name/ROOT/$zfs_root_volume_name") == 0 ||
            die "zfs set mountpoint failed\n";
 
-       syscmd("zpool set bootfs=$zfspoolname/ROOT/$zfsrootvolname $zfspoolname") == 0 ||
+       syscmd("zpool set bootfs=$zfs_pool_name/ROOT/$zfs_root_volume_name $zfs_pool_name") == 0 ||
            die "zpool set bootfs failed\n";
-       syscmd("zpool export $zfspoolname");
+       syscmd("zpool export $zfs_pool_name");
     }
 
     if ($bootloader_err) {
-       $err = $err ? "$err\n$bootloader_err" : $bootloader_err;
+       $err = $err && $err ne "\n" ? "$err\n$bootloader_err" : $bootloader_err;
     }
 
     die $err if $err;
@@ -1999,7 +1303,7 @@ my $display_info_items = [
     "extract2-rulesystem.htm",
     "extract3-spam.htm",
     "extract4-virus.htm",
-    ];
+];
 
 sub display_info {
 
@@ -2012,49 +1316,7 @@ sub display_info {
     my $page = $display_info_items->[$display_info_counter % scalar(@$display_info_items)];
 
     $display_info_counter++;
-
-    display_html($page);
-}
-
-sub display_html {
-    my ($filename) = @_;
-
-    $filename = $steps[$step_number]->{html} if !$filename;
-
-    my $htmldir = "${proxmox_libdir}/html";
-    my $path;
-    if (-f "$htmldir/$setup->{product}/$filename") {
-       $path = "$htmldir/$setup->{product}/$filename";
-    } else {
-       $path = "$htmldir/$filename";
-    }
-
-    my $data = file_get_contents($path);
-
-    if ($filename eq 'license.htm') {
-       my $license = eval { decode('utf8', file_get_contents("${proxmox_cddir}/EULA")) };
-       if (my $err = $@) {
-           die $err if !$opt_testmode;
-           $license = "TESTMODE: Ignore non existent EULA...\n";
-       }
-       my $title = "END USER LICENSE AGREEMENT (EULA)";
-       $data =~ s/__LICENSE__/$license/;
-       $data =~ s/__LICENSE_TITLE__/$title/;
-    } elsif ($filename eq 'success.htm') {
-       my $addr = $ipversion == 6 ? "[${ipaddress}]" : "$ipaddress";
-       $data =~ s/__IPADDR__/$addr/g;
-       $data =~ s/__PORT__/$setup->{port}/g;
-
-       my $autoreboot_msg = $config_options->{autoreboot}
-           ? "Automatic reboot scheduled in $autoreboot_seconds seconds."
-           : '';
-       $data =~ s/__AUTOREBOOT_MSG__/$autoreboot_msg/;
-    }
-    $data =~ s/__FULL_PRODUCT_NAME__/$setup->{fullname}/g;
-
-    # always set base-path to common path, all resources are accesible from there.
-    $htmlview->load_html($data,  "file://$htmldir/");
-
+    Proxmox::UI::display_html($page);
     $last_display_change = time();
 }
 
@@ -2064,58 +1326,65 @@ sub prev_function {
 
     $fctn = $step_number if !$fctn;
     $text = "_Previous" if !$text;
-    $prev_btn->set_label ($text);
+    $gtk_state->{prev_btn}->set_label($text);
 
     $step_number--;
     $steps[$step_number]->{function}();
 
-    $prev_btn->grab_focus();
+    $gtk_state->{prev_btn}->grab_focus();
 }
 
 sub set_next {
     my ($text, $fctn) = @_;
 
-    $next_fctn = $fctn;
+    $gtk_state->{next_btn_callback} = $fctn;
     my $step = $steps[$step_number];
     $text //= $steps[$step_number]->{next_button} // '_Next';
-    $next->set_label($text);
+    $gtk_state->{next_btn}->set_label($text);
 
-    $next->grab_focus();
+    $gtk_state->{next_btn}->grab_focus();
 }
 
 sub create_main_window {
 
-    $window = Gtk3::Window->new();
+    my $window = Gtk3::Window->new();
     $window->set_default_size(1024, 768);
-    $window->set_has_resize_grip(0);
-    $window->fullscreen() if !$opt_testmode;
-    $window->set_decorated(0) if !$opt_testmode;
+    $window->signal_connect(map => sub { $window->set_resizable(0); });
+    $window->fullscreen() if !is_test_mode();
+    $window->set_decorated(0) if !is_test_mode();
+    $window->signal_connect(destroy => sub { Gtk3->main_quit(); });
 
-    my $vbox = Gtk3::VBox->new(0, 0);
+    my $vbox = Gtk3::Box->new('vertical', 0);
 
-    my $logofn = "$setup->{product}-banner.png";
+    my $logofn = "$iso_env->{product}-banner.png";
     my $image = Gtk3::Image->new_from_file("${proxmox_libdir}/$logofn");
+
+    my $provider = Gtk3::CssProvider->new();
+    my $theming = "* {\nbackground: #171717;\n}";
+    $provider->load_from_data ([map ord, split //, $theming]);
+    my $context = $image->get_style_context();
+    $context->add_provider($provider, 600);
+
     $vbox->pack_start($image, 0, 0, 0);
 
-    my $hbox = Gtk3::HBox->new(0, 0);
+    my $hbox = Gtk3::Box->new('horizontal', 0);
     $vbox->pack_start($hbox, 1, 1, 0);
 
  #  my $f1 = Gtk3::Frame->new ('test');
  #  $f1->set_shadow_type ('none');
  #  $hbox->pack_start ($f1, 1, 1, 0);
 
-    my $sep1 = Gtk3::HSeparator->new();
+    my $sep1 = Gtk3::Separator->new('horizontal');
     $vbox->pack_start($sep1, 0, 0, 0);
 
-    $cmdbox = Gtk3::HBox->new();
+    my $cmdbox = Gtk3::Box->new('horizontal', 0);
     $vbox->pack_start($cmdbox, 0, 0, 10);
 
-    $next = Gtk3::Button->new('_Next');
-    $next->signal_connect(clicked => sub { $last_display_change = 0; &$next_fctn (); });
-    $cmdbox->pack_end($next, 0, 0, 10);
-
+    my $next_btn = Gtk3::Button->new('_Next');
+    $next_btn->signal_connect(clicked => sub { $last_display_change = 0; $gtk_state->{next_btn_callback}->(); });
+    $cmdbox->pack_end($next_btn, 0, 0, 10);
 
-    $prev_btn = Gtk3::Button->new('_Previous');
+    my $prev_btn = Gtk3::Button->new('_Previous');
     $prev_btn->signal_connect(clicked => sub { $last_display_change = 0; &prev_function (); });
     $cmdbox->pack_end($prev_btn, 0, 0, 10);
 
@@ -2123,39 +1392,50 @@ sub create_main_window {
     my $abort = Gtk3::Button->new('_Abort');
     $abort->set_can_focus(0);
     $cmdbox->pack_start($abort, 0, 0, 10);
-    $abort->signal_connect(clicked => sub { exit (-1); });
+    $abort->signal_connect(clicked => sub { app_quit(-1); });
 
-    my $vbox2 = Gtk3::VBox->new(0, 0);
+    my $vbox2 = Gtk3::Box->new('vertical', 0);
     $hbox->add($vbox2);
 
-    $htmlview = Gtk3::WebKit2::WebView->new();
+    my $html_view = Gtk3::WebKit2::WebView->new();
+    $html_view->set_hexpand(1);
     my $scrolls = Gtk3::ScrolledWindow->new();
-    $scrolls->add($htmlview);
+    $scrolls->add($html_view);
 
-    my $hbox2 = Gtk3::HBox->new(0, 0);
+    my $hbox2 = Gtk3::Box->new('horizontal', 0);
     $hbox2->pack_start($scrolls, 1, 1, 0);
 
     $vbox2->pack_start($hbox2, 1, 1, 0);
 
-    my $vbox3 = Gtk3::VBox->new(0, 0);
+    my $vbox3 = Gtk3::Box->new('vertical', 0);
     $vbox2->pack_start($vbox3, 0, 0, 0);
 
-    my $sep2 = Gtk3::HSeparator->new;
+    my $sep2 = Gtk3::Separator->new('horizontal');
     $vbox3->pack_start($sep2, 0, 0, 0);
 
-    $inbox = Gtk3::HBox->new(0, 0);
+    my $inbox = Gtk3::Box->new('horizontal', 0);
     $vbox3->pack_start($inbox, 0, 0, 0);
 
     $window->add($vbox);
 
+    $gtk_state->{window} = $window;
+    $gtk_state->{html_view} = $html_view;
+    $gtk_state->{inbox} = $inbox;
+    $gtk_state->{prev_btn} = $prev_btn;
+    $gtk_state->{next_btn} = $next_btn;
+    $gtk_state->{progress_bar} = Gtk3::ProgressBar->new();
+    $gtk_state->{progress_status} = Gtk3::Label->new('');
+
+    Proxmox::UI::init_gtk($gtk_state, $iso_env);
+
     $window->show_all;
-    $window->realize();
+    $window->present();
 }
 
 sub cleanup_view {
-    $inbox->foreach(sub {
+    $gtk_state->{inbox}->foreach(sub {
        my $child = shift;
-       $inbox->remove ($child);
+       $gtk_state->{inbox}->remove ($child);
     });
 }
 
@@ -2203,7 +1483,7 @@ sub create_text_input {
 
     my $label = Gtk3::Label->new($text);
     $label->set_size_request(150, -1);
-    $label->set_alignment(1, 0.5);
+    $label->set_xalign(1.0);
     $hbox->pack_start($label, 0, 0, 10);
     my $e1 = Gtk3::Entry->new();
     $e1->set_width_chars(35);
@@ -2219,7 +1499,7 @@ sub create_cidr_inputs {
 
     my $label = Gtk3::Label->new('IP Address (CIDR)');
     $label->set_size_request(150, -1);
-    $label->set_alignment(1, 0.5);
+    $label->set_xalign(1.0);
     $hbox->pack_start($label, 0, 0, 10);
 
     my $ip_el = Gtk3::Entry->new();
@@ -2229,7 +1509,6 @@ sub create_cidr_inputs {
 
     $label = Gtk3::Label->new('/');
     $label->set_size_request(10, -1);
-    $label->set_alignment(0.5, 0.5);
     $hbox->pack_start($label, 0, 0, 2);
 
     my $cidr_el = Gtk3::Entry->new();
@@ -2240,105 +1519,15 @@ sub create_cidr_inputs {
     return ($hbox, $ip_el, $cidr_el);
 }
 
-sub get_ip_config {
-
-    my $ifaces = {};
-    my $default;
-
-    my $links = `ip -o l`;
-    foreach my $l (split /\n/,$links) {
-       my ($index, $name, $flags, $state, $mac) = $l =~ m/^(\d+):\s+(\S+):\s+<(\S+)>.*\s+state\s+(\S+)\s+.*\s+link\/ether\s+(\S+)\s+/;
-       next if !$name || $name eq 'lo';
-
-       my $driver = readlink "/sys/class/net/$name/device/driver" || 'unknown';
-       $driver =~ s!^.*/!!;
-
-       $ifaces->{"$index"} = {
-           name => $name,
-           driver => $driver,
-           flags => $flags,
-           state => $state,
-           mac => $mac,
-       };
-
-       my $addresses = `ip -o a s $name`;
-       foreach my $a (split /\n/,$addresses) {
-           my ($family, $ip, $prefix) = $a =~ m/^\Q$index\E:\s+\Q$name\E\s+(inet|inet6)\s+($IPRE)\/(\d+)\s+/;
-           next if !$ip;
-           next if $a =~ /scope\s+link/; # ignore link local
-
-           my $mask = $prefix;
-
-           if ($family eq 'inet') {
-               next if !$ip =~ /$IPV4RE/;
-               next if $prefix < 8 || $prefix > 32;
-               $mask = @$ipv4_reverse_mask[$prefix];
-           } else {
-               next if !$ip =~ /$IPV6RE/;
-           }
-
-           $default = $index if !$default;
-
-           $ifaces->{"$index"}->{"$family"} = {
-               prefix => $prefix,
-               mask => $mask,
-               addr => $ip,
-           };
-       }
-    }
-
-
-    my $route = `ip route`;
-    my ($gateway) = $route =~ m/^default\s+via\s+(\S+)\s+/m;
-
-    my $resolvconf = `cat /etc/resolv.conf`;
-    my ($dnsserver) = $resolvconf =~ m/^nameserver\s+(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})$/m;
-    my ($domain) = $resolvconf =~ m/^domain\s+(\S+)$/m;
-
-    return {
-       default => $default,
-       ifaces => $ifaces,
-       gateway => $gateway,
-       dnsserver => $dnsserver,
-       domain => $domain,
-    }
-}
-
-sub display_message {
-    my ($msg) = @_;
-
-    my $dialog = Gtk3::MessageDialog->new($window, 'modal', 'info', 'ok', $msg);
-    $dialog->run();
-    $dialog->destroy();
-}
-
-sub display_error {
-    my ($msg) = @_;
-
-    my $dialog = Gtk3::MessageDialog->new($window, 'modal', 'error', 'ok', $msg);
-    $dialog->run();
-    $dialog->destroy();
-}
-
-sub display_prompt {
-    my ($query) = @_;
-
-    my $dialog = Gtk3::MessageDialog->new($window, 'modal', 'question', 'ok-cancel', $query);
-    my $response = $dialog->run();
-    $dialog->destroy();
-
-    return $response;
-}
-
 my $ipconf_first_view = 1;
 
 sub create_ipconf_view {
 
     cleanup_view();
-    display_html();
+    Proxmox::UI::display_html('ipconf.htm');
 
     my $vcontainer = Gtk3::Box->new('vertical', 0);
-    $inbox->pack_start($vcontainer, 1, 0, 0);
+    $gtk_state->{inbox}->pack_start($vcontainer, 1, 0, 0);
     my $hcontainer =  Gtk3::Box->new('horizontal', 0);
     $vcontainer->pack_start($hcontainer, 0, 0, 10);
     my $vbox =  Gtk3::Box->new('vertical', 0);
@@ -2397,16 +1586,16 @@ sub create_ipconf_view {
        $device_cb->set_active(0);
     }
 
-    my $devicebox = Gtk3::HBox->new(0, 0);
+    my $devicebox = Gtk3::Box->new('horizontal', 0);
     my $label = Gtk3::Label->new("Management Interface:");
     $label->set_size_request(150, -1);
-    $label->set_alignment(1, 0.5);
+    $label->set_xalign(1.0);
     $devicebox->pack_start($label, 0, 0, 10);
     $devicebox->pack_start($device_cb, 0, 0, 0);
 
     $vbox->pack_start($devicebox, 0, 0, 2);
 
-    my $hn = $config->{fqdn} //  "$setup->{product}." . ($ipconf->{domain} // "example.invalid");
+    my $hn = $config->{fqdn} // "$iso_env->{product}." . ($ipconf->{domain} // "example.invalid");
 
     my ($hostbox, $hostentry) = create_text_input($hn, 'Hostname (FQDN):');
     $vbox->pack_start($hostbox, 0, 0, 2);
@@ -2429,7 +1618,7 @@ sub create_ipconf_view {
 
     $vbox->pack_start($dnsbox, 0, 0, 0);
 
-    $inbox->show_all;
+    $gtk_state->{inbox}->show_all;
     set_next(undef, sub {
 
        # verify hostname
@@ -2445,7 +1634,7 @@ sub create_ipconf_view {
 
        # Debian does not support purely numeric hostnames
        if ($text && $text =~ /^[0-9]+(?:\.|$)/) {
-           display_message("Purely numeric hostnames are not allowed.");
+           Proxmox::UI::message("Purely numeric hostnames are not allowed.");
            $hostentry->grab_focus();
            return;
        }
@@ -2455,41 +1644,25 @@ sub create_ipconf_view {
            $hostname = $1;
            $domain = $2;
        } else {
-           display_message("Hostname does not look like a fully qualified domain name.");
+           Proxmox::UI::message("Hostname does not look like a fully qualified domain name.");
            $hostentry->grab_focus();
            return;
        }
 
        # verify ip address
-
        $text = $ipconf_entry_addr->get_text();
-       $text =~ s/^\s+//;
-       $text =~ s/\s+$//;
-       if ($text =~ m!^($IPV4RE)$!) {
-           $ipaddress = $text;
-           $ipversion = 4;
-       } elsif ($text =~ m!^($IPV6RE)$!) {
-           $ipaddress = $text;
-           $ipversion = 6;
-       } else {
-           display_message("IP address is not valid.");
+       ($ipaddress, $ipversion) = parse_ip_address($text);
+       if (!defined($ipaddress)) {
+           Proxmox::UI::message("IP address is not valid.");
            $ipconf_entry_addr->grab_focus();
            return;
        }
        $config->{ipaddress} = $ipaddress;
 
        $text = $ipconf_entry_mask->get_text();
-       $text =~ s/^\s+//;
-       $text =~ s/\s+$//;
-       if ($ipversion == 6 && ($text =~ m/^(\d+)$/) && $1 >= 8 && $1 <= 126) {
-           $netmask = $text;
-       } elsif ($ipversion == 4 && ($text =~ m/^(\d+)$/) && $1 >= 8 && $1 <= 32) {
-           $netmask = $text;
-       } elsif ($ipversion == 4 && defined($ipv4_mask_hash->{$text})) {
-           # costs nothing to handle 255.x.y.z style masks, so continue to allow it
-           $netmask = $ipv4_mask_hash->{$text};
-       } else {
-           display_message("Netmask is not valid.");
+       $netmask = parse_ip_mask($text, $ipversion);
+       if (!defined($netmask)) {
+           Proxmox::UI::message("Netmask is not valid.");
            $ipconf_entry_mask->grab_focus();
            return;
        }
@@ -2497,34 +1670,30 @@ sub create_ipconf_view {
        $config->{netmask} = $netmask;
 
        $text = $ipconf_entry_gw->get_text();
-       $text =~ s/^\s+//;
-       $text =~ s/\s+$//;
-       if (($ipversion == 4) && ($text =~ m!^($IPV4RE)$!)) {
-           $gateway = $text;
-       } elsif (($ipversion == 6) && ($text =~ m!^($IPV6RE)$!)) {
-           $gateway = $text;
-       } else {
-           display_message("Gateway is not valid.");
+       my ($gateway_ip, $gateway_ip_version) = parse_ip_address($text);
+       if (!defined($gateway_ip) || $gateway_ip_version != $ipversion) {
+           my $msg = defined($gateway_ip)
+               ? "Gateway and host IP version must not differ (IPv$gateway_ip_version != IPv$ipversion)."
+               : "Gateway is not valid.";
+           Proxmox::UI::message($msg);
            $ipconf_entry_gw->grab_focus();
            return;
        }
-       $config->{gateway} = $gateway;
+       $config->{gateway} = $gateway = $gateway_ip;
 
        $text = $ipconf_entry_dns->get_text();
-       $text =~ s/^\s+//;
-       $text =~ s/\s+$//;
-       if (($ipversion == 4) && ($text =~ m!^($IPV4RE)$!)) {
-           $dnsserver = $text;
-       } elsif (($ipversion == 6) && ($text =~ m!^($IPV6RE)$!)) {
-           $dnsserver = $text;
-       } else {
-           display_message("DNS server is not valid.");
+       my ($dns_ip, $dns_ip_version) = parse_ip_address($text);
+       if (!defined($dns_ip) || $dns_ip_version != $ipversion) {
+           my $msg = defined($gateway_ip)
+               ? "DNS and host IP version must not differ (IPv$gateway_ip_version != IPv$ipversion)."
+               : "DNS IP is not valid.";
+           Proxmox::UI::message($msg);
            $ipconf_entry_dns->grab_focus();
            return;
        }
-       $config->{dnsserver} = $dnsserver;
+       $config->{dnsserver} = $dnsserver = $dns_ip;
 
-       #print "TEST $ipaddress $netmask $gateway $dnsserver\n";
+       #print STDERR "TEST $ipaddress $netmask $gateway $dnsserver\n";
 
        $step_number++;
        create_ack_view();
@@ -2537,8 +1706,8 @@ sub create_ack_view {
 
     cleanup_view();
 
-    my $vbox =  Gtk3::VBox->new(0, 0);
-    $inbox->pack_start($vbox, 1, 0, 0);
+    my $vbox =  Gtk3::Box->new('vertical', 0);
+    $gtk_state->{inbox}->pack_start($vbox, 1, 0, 0);
 
     my $reboot_checkbox = Gtk3::CheckButton->new('Automatically reboot after successful installation');
     $reboot_checkbox->set_active(1);
@@ -2549,13 +1718,13 @@ sub create_ack_view {
     $vbox->pack_start($reboot_checkbox, 0, 0, 2);
 
     my $ack_template = "${proxmox_libdir}/html/ack_template.htm";
-    my $ack_html = "${proxmox_libdir}/html/$setup->{product}/$steps[$step_number]->{html}";
-    my $html_data = file_get_contents($ack_template);
+    my $ack_html = "${proxmox_libdir}/html/$iso_env->{product}/$steps[$step_number]->{html}";
+    my $html_data = file_read_all($ack_template);
 
     my %config_values = (
        __target_hd__ => join(' | ', @{$config_options->{target_hds}}),
        __target_fs__ => $config_options->{filesys},
-       __country__ => $cmap->{country}->{$country}->{name},
+       __country__ => $iso_env->{locales}->{country}->{$country}->{name},
        __timezone__ => $timezone,
        __keymap__ => $keymap,
        __mailto__ => $mailto,
@@ -2572,11 +1741,11 @@ sub create_ack_view {
        $html_data =~ s/$k/$v/g;
     }
 
-    write_config($html_data, $ack_html);
+    file_write_all($ack_html, $html_data);
 
-    display_html();
+    Proxmox::UI::display_html('ack.htm');
 
-    $inbox->show_all;
+    $gtk_state->{inbox}->show_all;
 
     set_next(undef, sub {
        $step_number++;
@@ -2620,7 +1789,7 @@ sub update_layout {
     my $ind;
     my $def;
     my $i = 0;
-    my $kmaphash = $cmap->{kmaphash};
+    my $kmaphash = $iso_env->{locales}->{kmaphash};
     foreach my $layout (sort keys %$kmaphash) {
        $def = $i if $kmaphash->{$layout} eq 'en-us';
        $ind = $i if $kmap && $kmaphash->{$layout} eq $kmap;
@@ -2641,39 +1810,32 @@ my $lastzonecb;
 sub update_zonelist {
     my ($box, $cc) = @_;
 
-    my $cczones = $cmap->{cczones};
-    my $zones = $cmap->{zones};
-
-    my $sel;
+    my $sel = $timezone; # initial default
     if ($lastzonecb) {
        $sel = $lastzonecb->get_active_text();
-       $box->remove ($lastzonecb);
-    } else {
-       $sel = $timezone; # used once to select default
+       $box->remove($lastzonecb);
     }
 
     my $cb = $lastzonecb = Gtk3::ComboBoxText->new();
     $cb->set_size_request(200, -1);
-
     $cb->signal_connect('changed' => sub {
        $timezone = $cb->get_active_text();
     });
 
-    my @za;
-    if ($cc && defined ($cczones->{$cc})) {
-       @za = keys %{$cczones->{$cc}};
-    } else {
-       @za = keys %$zones;
-    }
-    my $ind;
-    my $i = 0;
-    foreach my $zone (sort @za) {
-       $ind = $i if $sel && $zone eq $sel;
+    my ($cczones, $zones) = $iso_env->{locales}->@{'cczones', 'zones'};
+    my @available_zones = $cc && defined($cczones->{$cc}) ? keys %{$cczones->{$cc}} : keys %$zones;
+
+    my ($i, $selected_index) = (0, undef);
+    for my $zone (sort @available_zones) {
+       $selected_index = $i if $sel && $zone eq $sel;
        $cb->append_text($zone);
        $i++;
     }
 
-    $cb->set_active($ind || 0);
+    # Append UTC here, so it is always the last item and never the default for any country.
+    $cb->append_text('UTC');
+
+    $cb->set_active($selected_index || 0);
 
     $cb->show;
     $box->pack_start($cb, 0, 0, 0);
@@ -2683,15 +1845,15 @@ sub create_password_view {
 
     cleanup_view();
 
-    my $vbox2 =  Gtk3::VBox->new(0, 0);
-    $inbox->pack_start($vbox2, 1, 0, 0);
-    my $vbox =  Gtk3::VBox->new(0, 0);
+    my $vbox2 =  Gtk3::Box->new('vertical', 0);
+    $gtk_state->{inbox}->pack_start($vbox2, 1, 0, 0);
+    my $vbox =  Gtk3::Box->new('vertical', 0);
     $vbox2->pack_start($vbox, 0, 0, 10);
 
-    my $hbox1 = Gtk3::HBox->new(0, 0);
+    my $hbox1 = Gtk3::Box->new('horizontal', 0);
     my $label = Gtk3::Label->new("Password");
     $label->set_size_request(150, -1);
-    $label->set_alignment(1, 0.5);
+    $label->set_xalign(1.0);
     $hbox1->pack_start($label, 0, 0, 10);
     my $pwe1 = Gtk3::Entry->new();
     $pwe1->set_visibility(0);
@@ -2699,10 +1861,10 @@ sub create_password_view {
     $pwe1->set_size_request(200, -1);
     $hbox1->pack_start($pwe1, 0, 0, 0);
 
-    my $hbox2 = Gtk3::HBox->new(0, 0);
+    my $hbox2 = Gtk3::Box->new('horizontal', 0);
     $label = Gtk3::Label->new("Confirm");
     $label->set_size_request(150, -1);
-    $label->set_alignment(1, 0.5);
+    $label->set_xalign(1.0);
     $hbox2->pack_start($label, 0, 0, 10);
     my $pwe2 = Gtk3::Entry->new();
     $pwe2->set_visibility(0);
@@ -2710,10 +1872,10 @@ sub create_password_view {
     $pwe2->set_size_request(200, -1);
     $hbox2->pack_start($pwe2, 0, 0, 0);
 
-    my $hbox3 = Gtk3::HBox->new(0, 0);
+    my $hbox3 = Gtk3::Box->new('horizontal', 0);
     $label = Gtk3::Label->new("Email");
     $label->set_size_request(150, -1);
-    $label->set_alignment(1, 0.5);
+    $label->set_xalign(1.0);
     $hbox3->pack_start($label, 0, 0, 10);
     my $eme = Gtk3::Entry->new();
     $eme->set_size_request(200, -1);
@@ -2725,9 +1887,9 @@ sub create_password_view {
     $vbox->pack_start($hbox2, 0, 0, 5);
     $vbox->pack_start($hbox3, 0, 0, 15);
 
-    $inbox->show_all;
+    $gtk_state->{inbox}->show_all;
 
-    display_html();
+    Proxmox::UI::display_html('passwd.htm');
 
     set_next (undef,  sub {
 
@@ -2735,27 +1897,27 @@ sub create_password_view {
        my $t2 = $pwe2->get_text;
 
        if (length ($t1) < 5) {
-           display_message("Password is too short.");
+           Proxmox::UI::message("Password is too short.");
            $pwe1->grab_focus();
            return;
        }
 
        if ($t1 ne $t2) {
-           display_message("Password does not match.");
+           Proxmox::UI::message("Password does not match.");
            $pwe1->grab_focus();
            return;
        }
 
        my $t3 = $eme->get_text;
        if ($t3 !~ m/^[\w\+\-\~]+(\.[\w\+\-\~]+)*@[a-zA-Z0-9\-]+(\.[a-zA-Z0-9\-]+)*$/) {
-           display_message("Email does not look like a valid address" .
+           Proxmox::UI::message("Email does not look like a valid address" .
                             " (user\@domain.tld)");
            $eme->grab_focus();
            return;
        }
 
        if ($t3 eq 'mail@example.invalid') {
-           display_message("Please enter a valid Email address");
+           Proxmox::UI::message("Please enter a valid Email address");
            $eme->grab_focus();
            return;
        }
@@ -2776,12 +1938,11 @@ sub create_country_view {
 
     cleanup_view();
 
-    my $countryhash = $cmap->{countryhash};
-    my $ctr = $cmap->{country};
+    my $locales = $iso_env->{locales};
 
-    my $vbox2 =  Gtk3::VBox->new(0, 0);
-    $inbox->pack_start($vbox2, 1, 0, 0);
-    my $vbox =  Gtk3::VBox->new(0, 0);
+    my $vbox2 =  Gtk3::Box->new('vertical', 0);
+    $gtk_state->{inbox}->pack_start($vbox2, 1, 0, 0);
+    my $vbox =  Gtk3::Box->new('vertical', 0);
     $vbox2->pack_start($vbox, 0, 0, 10);
 
     my $w = Gtk3::Entry->new();
@@ -2793,23 +1954,23 @@ sub create_country_view {
     $c->set_popup_set_width(1);
     $c->set_inline_completion(1);
 
-    my $hbox2 = Gtk3::HBox->new(0, 0);
+    my $hbox2 = Gtk3::Box->new('horizontal', 0);
     my $label = Gtk3::Label->new("Time zone");
     $label->set_size_request(150, -1);
-    $label->set_alignment(1, 0.5);
+    $label->set_xalign(1.0);
     $hbox2->pack_start($label, 0, 0, 10);
     update_zonelist ($hbox2);
 
-    my $hbox3 = Gtk3::HBox->new(0, 0);
+    my $hbox3 = Gtk3::Box->new('horizontal', 0);
     $label = Gtk3::Label->new("Keyboard Layout");
     $label->set_size_request(150, -1);
-    $label->set_alignment(1, 0.5);
+    $label->set_xalign(1.0);
     $hbox3->pack_start($label, 0, 0, 10);
 
     my $kmapcb = Gtk3::ComboBoxText->new();
     $kmapcb->set_size_request (200, -1);
-    foreach my $layout (sort keys %{$cmap->{kmaphash}}) {
-       $kmapcb->append_text ($layout);
+    for my $layout (sort keys %{$locales->{kmaphash}}) {
+       $kmapcb->append_text($layout);
     }
 
     update_layout($kmapcb);
@@ -2818,16 +1979,16 @@ sub create_country_view {
     $kmapcb->signal_connect ('changed' => sub {
        my $sel = $kmapcb->get_active_text();
        $last_layout = $kmapcb->get_active();
-       if (my $kmap = $cmap->{kmaphash}->{$sel}) {
-           my $xkmap = $cmap->{kmap}->{$kmap}->{x11};
-           my $xvar = $cmap->{kmap}->{$kmap}->{x11var};
+       if (my $kmap = $locales->{kmaphash}->{$sel}) {
+           my $xkmap = $locales->{kmap}->{$kmap}->{x11};
+           my $xvar = $locales->{kmap}->{$kmap}->{x11var};
            $keymap = $kmap;
 
            return if (defined($installer_kmap) && $installer_kmap eq $kmap);
 
            $installer_kmap = $keymap;
 
-           if (! $opt_testmode) {
+           if (!is_test_mode()) {
                syscmd ("setxkbmap $xkmap $xvar");
 
                my $kbd_config = qq{
@@ -2837,8 +1998,8 @@ sub create_country_view {
                };
                $kbd_config =~ s/^\s+//gm;
 
-               run_in_background( sub {
-                   write_config($kbd_config, '/etc/default/keyboard');
+               Proxmox::Sys::Command::run_in_background(sub {
+                   file_write_all('/etc/default/keyboard', $kbd_config);
                    system("setupcon");
                });
            }
@@ -2849,9 +2010,9 @@ sub create_country_view {
        my ($entry, $event) = @_;
        my $text = $entry->get_text;
 
-       if (my $cc = $countryhash->{lc($text)}) {
+       if (my $cc = $locales->{countryhash}->{lc($text)}) {
            update_zonelist($hbox2, $cc);
-           my $kmap = $ctr->{$cc}->{kmap} || 'en-us';
+           my $kmap = $locales->{country}->{$cc}->{kmap} || 'en-us';
            update_layout($kmapcb, $kmap);
        }
     });
@@ -2863,20 +2024,19 @@ sub create_country_view {
        my $val = $event->get_keyval;
 
        if ($val == Gtk3::Gdk::KEY_Tab) {
-           my $cc = $countryhash->{lc($text)};
+           my $cc = $locales->{countryhash}->{lc($text)};
 
            my $found = 0;
            my $compl;
 
            if ($cc) {
                $found = 1;
-               $compl = $ctr->{$cc}->{name};
+               $compl = $locales->{country}->{$cc}->{name};
            } else {
-               foreach my $cc (keys %$ctr) {
-                   my $ct = $ctr->{$cc}->{name};
-                   if ($ct =~ m/^\Q$text\E.*$/i) {
+               for my $country (values $locales->{country}->%*) {
+                   if ($country->{name} =~ m/^\Q$text\E.*$/i) {
                        $found++;
-                       $compl = $ct;
+                       $compl = $country->{name};
                    }
                    last if $found > 1;
                }
@@ -2887,8 +2047,7 @@ sub create_country_view {
                $c->complete();
                return undef;
            } else {
-               #Gtk3::Gdk::beep();
-               print chr(7); # beep ?
+               # beep ?
            }
 
            $c->complete();
@@ -2902,19 +2061,20 @@ sub create_country_view {
        return undef;
     });
 
-    my $ls = Gtk3::ListStore->new('Glib::String');
-    foreach my $cc (sort {$ctr->{$a}->{name} cmp $ctr->{$b}->{name} } keys %$ctr) {
-       my $iter = $ls->append();
-       $ls->set ($iter, 0, $ctr->{$cc}->{name});
+    my $country_store = Gtk3::ListStore->new('Glib::String');
+    my $countries = $locales->{country};
+    for my $cc (sort { $countries->{$a}->{name} cmp $countries->{$b}->{name} } keys %$countries) {
+       my $iter = $country_store->append();
+       $country_store->set($iter, 0, $countries->{$cc}->{name});
     }
-    $c->set_model ($ls);
+    $c->set_model($country_store);
 
     $w->set_completion ($c);
 
-    my $hbox =  Gtk3::HBox->new(0, 0);
+    my $hbox =  Gtk3::Box->new('horizontal', 0);
 
     $label = Gtk3::Label->new("Country");
-    $label->set_alignment(1, 0.5);
+    $label->set_xalign(1.0);
     $label->set_size_request(150, -1);
     $hbox->pack_start($label, 0, 0, 10);
     $hbox->pack_start($w, 0, 0, 0);
@@ -2923,24 +2083,24 @@ sub create_country_view {
     $vbox->pack_start($hbox2, 0, 0, 5);
     $vbox->pack_start($hbox3, 0, 0, 5);
 
-    if ($country && $ctr->{$country}) {
-       $w->set_text ($ctr->{$country}->{name});
+    if ($country && (my $entry = $locales->{country}->{$country})) {
+       $w->set_text($entry->{name});
     }
 
-    $inbox->show_all;
+    $gtk_state->{inbox}->show_all;
 
-    display_html();
+    Proxmox::UI::display_html('country.htm');
     set_next (undef,  sub {
 
        my $text = $w->get_text;
 
-       if (my $cc = $countryhash->{lc($text)}) {
+       if (my $cc = $locales->{countryhash}->{lc($text)}) {
            $country = $cc;
            $step_number++;
            create_password_view();
            return;
        } else {
-           display_message("Please select a country first.");
+           Proxmox::UI::message("Please select a country first.");
            $w->grab_focus();
        }
     });
@@ -2978,7 +2138,7 @@ my $create_label_widget_grid = sub {
        my $widget = @$labeled_widgets[$i+1];
        my $label = Gtk3::Label->new(@$labeled_widgets[$i]);
        $label->set_visible(1);
-       $label->set_alignment (1, 0.5);
+       $label->set_xalign(1.0);
        $grid->attach($label, 0, $row, 1, 1);
        $widget->set_visible(1);
        $grid->attach($widget, 1, $row, 1, 1);
@@ -2994,8 +2154,9 @@ my $get_selected_hdsize = sub {
     return $hdsize if defined($hdsize);
 
     # compute the smallest disk size of the actually selected disks
-    my $hd_count = scalar(@$hds);
-    for (my $i = 0; $i < $hd_count; $i++) {
+    my $cached_disks = get_cached_disks();
+    my $disk_count = scalar(@$cached_disks);
+    for (my $i = 0; $i < $disk_count; $i++) {
        my $cur_hd = $config_options->{"disksel$i"} // next;
        my $disksize = int(@$cur_hd[2] / (2 * 1024 * 1024.0)); # size in GB
        $hdsize //= $disksize;
@@ -3041,17 +2202,18 @@ my sub get_hdsize_spin_button {
 my $create_raid_disk_grid = sub {
     my ($hdsize_buttons) = @_;
 
-    my $hd_count = scalar(@$hds);
+    my $cached_disks = get_cached_disks();
+    my $disk_count = scalar(@$cached_disks);
     my $disk_labeled_widgets = [];
-    for (my $i = 0; $i < $hd_count; $i++) {
+    for (my $i = 0; $i < $disk_count; $i++) {
        my $disk_selector = Gtk3::ComboBoxText->new();
        $disk_selector->append_text("-- do not use --");
        $disk_selector->set_active(0);
        $disk_selector->set_visible(1);
 
-       foreach my $hd (@$hds) {
+       for my $hd (@$cached_disks) {
            my ($disk, $devname, $size, $model, $logical_bsize) = @$hd;
-           $disk_selector->append_text(get_device_desc ($devname, $size, $model));
+           $disk_selector->append_text(get_device_desc($devname, $size, $model));
        }
 
        $disk_selector->{pve_disk_id} = $i;
@@ -3059,18 +2221,18 @@ my $create_raid_disk_grid = sub {
            my $w = shift;
            my $diskid = $w->{pve_disk_id};
            my $a = $w->get_active - 1;
-           $config_options->{"disksel${diskid}"} = ($a >= 0) ? $hds->[$a] : undef;
+           $config_options->{"disksel${diskid}"} = ($a >= 0) ? $cached_disks->[$a] : undef;
            for my $btn (@$hdsize_buttons) {
                update_hdsize_adjustment($btn->get_adjustment());
            }
        });
 
        if ($hdoption_first_setup) {
-           $disk_selector->set_active ($i+1) if $hds->[$i];
+           $disk_selector->set_active ($i+1) if $cached_disks->[$i];
        } else {
            my $hdind = 0;
            if (my $cur_hd = $config_options->{"disksel$i"}) {
-               foreach my $hd (@$hds) {
+               foreach my $hd (@$cached_disks) {
                    if (@$hd[1] eq @$cur_hd[1]) {
                        $disk_selector->set_active($hdind+1);
                        last;
@@ -3084,7 +2246,7 @@ my $create_raid_disk_grid = sub {
     }
 
     my $clear_all_button = Gtk3::Button->new('_Deselect All');
-    if ($hd_count > 3) {
+    if ($disk_count > 3) {
        $clear_all_button->signal_connect('clicked', sub {
            my $is_widget = 0;
            for my $disk_selector (@$disk_labeled_widgets) {
@@ -3097,7 +2259,7 @@ my $create_raid_disk_grid = sub {
 
     my $scrolled_window = Gtk3::ScrolledWindow->new();
     $scrolled_window->set_hexpand(1);
-    $scrolled_window->set_propagate_natural_height(1) if $hd_count > 4;
+    $scrolled_window->set_propagate_natural_height(1) if $disk_count > 4;
 
     my $diskgrid = $create_label_widget_grid->($disk_labeled_widgets);
 
@@ -3204,7 +2366,7 @@ sub create_hdoption_view {
 
     # Filesystem type
     my $label0 = Gtk3::Label->new("Filesystem");
-    $label0->set_alignment (1, 0.5);
+    $label0->set_xalign(1.0);
     $grid->attach($label0, 0, $row, 1, 1);
 
     my $fstypecb = Gtk3::ComboBoxText->new();
@@ -3219,7 +2381,7 @@ sub create_hdoption_view {
        'zfs (RAIDZ-3)',
     ];
     push @$fstype, 'btrfs (RAID0)', 'btrfs (RAID1)', 'btrfs (RAID10)'
-       if $setup->{enable_btrfs};
+       if $iso_env->{cfg}->{enable_btrfs};
 
     my $tcount = 0;
     foreach my $tmp (@$fstype) {
@@ -3234,7 +2396,7 @@ sub create_hdoption_view {
 
     $row++;
 
-    my $sep = Gtk3::HSeparator->new();
+    my $sep = Gtk3::Separator->new('horizontal');
     $sep->set_visible(1);
     $grid->attach($sep, 0, $row, 2, 1);
     $row++;
@@ -3250,7 +2412,7 @@ sub create_hdoption_view {
     # size compute
     my $hdsize = 0;
     if ( -b $target_hd) {
-       $hdsize = int(hd_size ($target_hd) / (1024 * 1024.0)); # size in GB
+       $hdsize = int(Proxmox::Sys::Block::hd_size($target_hd) / (1024 * 1024.0)); # size in GB
     } elsif ($target_hd) {
        $hdsize = int((-s $target_hd) / (1024 * 1024 * 1024.0));
     }
@@ -3266,7 +2428,7 @@ sub create_hdoption_view {
     push @$hdsize_labeled_widgets, "swapsize", $entry_swapsize;
 
     my $entry_maxroot = Gtk3::Entry->new();
-    if ($setup->{product} eq 'pve') {
+    if ($iso_env->{product} eq 'pve') {
        $entry_maxroot->set_tooltip_text("maximum size (GB) for LVM root volume");
        $entry_maxroot->signal_connect (key_press_event => \&check_float);
        $entry_maxroot->set_text($config_options->{maxroot}) if $config_options->{maxroot};
@@ -3280,7 +2442,7 @@ sub create_hdoption_view {
     push @$hdsize_labeled_widgets, "minfree", $entry_minfree;
 
     my $entry_maxvz;
-    if ($setup->{product} eq 'pve') {
+    if ($iso_env->{product} eq 'pve') {
        $entry_maxvz = Gtk3::Entry->new();
        $entry_maxvz->set_tooltip_text("maximum size (GB) for LVM data volume");
        $entry_maxvz->signal_connect (key_press_event => \&check_float);
@@ -3321,7 +2483,7 @@ sub create_hdoption_view {
        if ($raid) {
            my $msg = "<b>Note</b>: " . ($is_zfs
                ? "ZFS is not compatible with hardware RAID controllers, for details see the documentation."
-               : "BTRFS integration in $setup->{fullname} is a technology preview!"
+               : "BTRFS integration in $iso_env->{cfg}->{fullname} is a technology preview!"
            );
            $hw_raid_note->set_markup($msg);
        }
@@ -3355,7 +2517,7 @@ sub create_hdoption_view {
        &$switch_view();
     });
 
-    my $sep2 = Gtk3::HSeparator->new();
+    my $sep2 = Gtk3::Separator->new('horizontal');
     $sep2->set_visible(1);
     $contarea->pack_end($sep2, 1, 1, 10);
 
@@ -3416,8 +2578,9 @@ my $get_raid_devlist = sub {
 
     my $dev_name_hash = {};
 
+    my $cached_disks = get_cached_disks();
     my $devlist = [];
-    for (my $i = 0; $i < @$hds; $i++) {
+    for (my $i = 0; $i < @$cached_disks; $i++) {
        if (my $hd = $config_options->{"disksel$i"}) {
            my ($disk, $devname, $size, $model, $logical_bsize) = @$hd;
            die "device '$devname' is used more than once\n"
@@ -3440,7 +2603,7 @@ sub zfs_mirror_size_check {
 sub legacy_bios_4k_check {
     my ($lbs) = @_;
     die "Booting from 4kn drive in legacy BIOS mode is not supported.\n"
-       if (($boot_type ne 'efi') && ($lbs == 4096));
+       if $run_env->{boot_type} ne 'efi' && $lbs == 4096;
 }
 
 sub get_zfs_raid_setup {
@@ -3532,16 +2695,17 @@ sub get_btrfs_raid_setup {
 my $last_hd_selected = 0;
 sub create_hdsel_view {
 
-    $prev_btn->set_sensitive(1); # enable previous button at this point
+    $gtk_state->{prev_btn}->set_sensitive(1); # enable previous button at this point
 
     cleanup_view();
 
-    my $vbox =  Gtk3::VBox->new(0, 0);
-    $inbox->pack_start($vbox, 1, 0, 0);
-    my $hbox =  Gtk3::HBox->new(0, 0);
+    my $vbox =  Gtk3::Box->new('vertical', 0);
+    $gtk_state->{inbox}->pack_start($vbox, 1, 0, 0);
+    my $hbox =  Gtk3::Box->new('horizontal', 0);
     $vbox->pack_start($hbox, 0, 0, 10);
 
-    my ($disk, $devname, $size, $model, $logical_bsize) = @{@$hds[0]};
+    my $cached_disks = get_cached_disks();
+    my ($disk, $devname, $size, $model, $logical_bsize) = $cached_disks->[0]->@*;
     $target_hd = $devname if !defined($target_hd);
 
     $target_hd_label = Gtk3::Label->new("Target Harddisk: ");
@@ -3549,7 +2713,7 @@ sub create_hdsel_view {
 
     $target_hd_combo = Gtk3::ComboBoxText->new();
 
-    foreach my $hd (@$hds) {
+    foreach my $hd ($cached_disks->@*) {
        ($disk, $devname, $size, $model, $logical_bsize) = @$hd;
        $target_hd_combo->append_text(get_device_desc($devname, $size, $model));
     }
@@ -3563,7 +2727,7 @@ sub create_hdsel_view {
     $target_hd_combo->set_active($last_hd_selected);
     $target_hd_combo->signal_connect(changed => sub {
        $a = shift->get_active;
-       my ($disk, $devname) = @{@$hds[$a]};
+       my ($disk, $devname) = @{@$cached_disks[$a]};
        $last_hd_selected = $a;
        $target_hd = $devname;
     });
@@ -3575,30 +2739,33 @@ sub create_hdsel_view {
     $hbox->pack_start ($options, 0, 0, 0);
 
 
-    $inbox->show_all;
+    $gtk_state->{inbox}->show_all;
 
-    display_html();
+    Proxmox::UI::display_html('page1.htm');
 
     set_next(undef, sub {
 
        if ($config_options->{filesys} =~ m/zfs/) {
            my ($devlist) = eval { get_zfs_raid_setup() };
            if (my $err = $@) {
-               display_message("Warning: $err\nPlease fix ZFS setup first.");
+               Proxmox::UI::message("Warning: $err\nPlease fix ZFS setup first.");
                return;
            }
            $config_options->{target_hds} = [ map { $_->[1] } @$devlist ];
        } elsif ($config_options->{filesys} =~ m/btrfs/) {
            my ($devlist) = eval { get_btrfs_raid_setup() };
            if (my $err = $@) {
-               display_message("Warning: $err\nPlease fix BTRFS setup first.");
+               Proxmox::UI::message("Warning: $err\nPlease fix BTRFS setup first.");
                return;
            }
            $config_options->{target_hds} = [ map { $_->[1] } @$devlist ];
        } else {
-           eval { legacy_bios_4k_check(logical_blocksize($target_hd)) };
+           eval {
+               my $target_block_size = Proxmox::Sys::Block::logical_blocksize($target_hd);
+               legacy_bios_4k_check($target_block_size);
+           };
            if (my $err = $@) {
-               display_message("Warning: $err\n");
+               Proxmox::UI::message("Warning: $err\n");
                return;
            }
            $config_options->{target_hds} = [ $target_hd ];
@@ -3613,56 +2780,71 @@ sub create_extract_view {
 
     cleanup_view();
 
-    display_info();
+    Proxmox::Install::display_info();
 
-    $next->set_sensitive(0);
-    $prev_btn->set_sensitive(0);
-    $prev_btn->hide();
+    $gtk_state->{next_btn}->set_sensitive(0);
+    $gtk_state->{prev_btn}->set_sensitive(0);
+    $gtk_state->{prev_btn}->hide();
 
-    my $vbox =  Gtk3::VBox->new(0, 0);
-    $inbox->pack_start ($vbox, 1, 0, 0);
-    my $hbox =  Gtk3::HBox->new(0, 0);
+    my $vbox =  Gtk3::Box->new('vertical', 0);
+    $gtk_state->{inbox}->pack_start ($vbox, 1, 0, 0);
+    my $hbox =  Gtk3::Box->new('horizontal', 0);
     $vbox->pack_start ($hbox, 0, 0, 10);
 
-    my $vbox2 =  Gtk3::VBox->new(0, 0);
+    my $vbox2 =  Gtk3::Box->new('vertical', 0);
     $hbox->pack_start ($vbox2, 0, 0, 0);
 
-    $progress_status = Gtk3::Label->new('');
-    $vbox2->pack_start ($progress_status, 1, 1, 0);
+    $vbox2->pack_start($gtk_state->{progress_status}, 1, 1, 0);
 
-    $progress = Gtk3::ProgressBar->new;
-    $progress->set_show_text(1);
-    $progress->set_size_request (600, -1);
+    $gtk_state->{progress_bar}->set_show_text(1);
+    $gtk_state->{progress_bar}->set_size_request (600, -1);
 
-    $vbox2->pack_start($progress, 0, 0, 0);
+    $vbox2->pack_start($gtk_state->{progress_bar}, 0, 0, 0);
 
-    $inbox->show_all();
+    $gtk_state->{inbox}->show_all();
 
-    my $tdir = $opt_testmode ? "target" : "/target";
+    my $tdir = is_test_mode() ? "target" : "/target";
     mkdir $tdir;
-    my $base = "${proxmox_cddir}/$setup->{product}-base.squashfs";
+    my $base = "${proxmox_cddir}/$iso_env->{product}-base.squashfs";
 
     eval  { extract_data($base, $tdir); };
     my $err = $@;
 
-    $next->set_sensitive(1);
+    $gtk_state->{next_btn}->set_sensitive(1);
+
+    set_next("_Reboot", sub { app_quit(0); } );
+
+    my $success_transform = sub {
+       my ($raw_html, $iso_env) = @_;
+
+       my $addr = $ipversion == 6 ? "[${ipaddress}]" : "$ipaddress";
+       $raw_html =~ s/__IPADDR__/$addr/g;
+       $raw_html =~ s/__PORT__/$iso_env->{cfg}->{port}/g;
 
-    set_next("_Reboot", sub { exit (0); } );
+       my $autoreboot_msg = $config_options->{autoreboot}
+           ? "Automatic reboot scheduled in $autoreboot_seconds seconds."
+           : '';
+       $raw_html =~ s/__AUTOREBOOT_MSG__/$autoreboot_msg/;
+
+       return $raw_html;
+    };
 
     if ($err) {
-       display_html("fail.htm");
-       display_error($err);
+       Proxmox::UI::display_html("fail.htm");
+       # suppress "empty" error as we got some case where the user choose to abort on a prompt,
+       # there it doesn't make sense to show them an error again, they "caused" it after all.
+       Proxmox::UI::error($err) if $err ne "\n";
     } else {
        cleanup_view();
-       display_html("success.htm");
+       Proxmox::UI::display_html("success.htm", $success_transform);
 
         if ($config_options->{autoreboot}) {
            Glib::Timeout->add(1000, sub {
                if ($autoreboot_seconds > 0) {
                    $autoreboot_seconds--;
-                   display_html("success.htm");
+                   Proxmox::UI::display_html("success.htm", $success_transform);
                } else {
-                   exit(0);
+                   app_quit(0);
                }
            });
        }
@@ -3671,74 +2853,82 @@ sub create_extract_view {
 
 sub create_intro_view {
 
-    $prev_btn->set_sensitive(0);
+    $gtk_state->{prev_btn}->set_sensitive(0);
 
     cleanup_view();
 
-    if (int($total_memory) < 1024) {
-       display_error("Less than 1 GiB of usable memory detected, installation will probably fail.\n\n".
-           "See 'System Requirements' in the $setup->{fullname} documentation.");
+    if (int($run_env->{total_memory}) < 1024) {
+       Proxmox::UI::error("Less than 1 GiB of usable memory detected, installation will probably fail.\n\n".
+           "See 'System Requirements' in the $iso_env->{cfg}->{fullname} documentation.");
     }
 
-    if ($setup->{product} eq 'pve') {
-       eval {
-           my $cpuinfo = file_get_contents('/proc/cpuinfo');
-           if ($cpuinfo && !($cpuinfo =~ /^flags\s*:.*(vmx|svm)/m)) {
-               display_error("No support for KVM virtualization detected.\n\n" .
-                             "Check BIOS settings for Intel VT / AMD-V / SVM.")
-           }
-       };
+    if ($iso_env->{product} eq 'pve') {
+       my $cpuinfo = eval { file_read_all('/proc/cpuinfo') };
+       if (!$cpuinfo || $cpuinfo !~ /^flags\s*:.*(vmx|svm)/m) {
+           Proxmox::UI::error(
+               "No support for hardware-accelerated KVM virtualization detected.\n\n"
+               ."Check BIOS settings for Intel VT / AMD-V / SVM."
+           );
+       }
     }
 
-    display_html();
+    Proxmox::UI::display_html('license.htm', sub {
+       my ($raw_html, $iso_env) = @_;
+
+       my $license = eval { decode('utf8', file_read_all("${proxmox_cddir}/EULA")) };
+       if (my $err = $@) {
+           die $err if !is_test_mode();
+           $license = "TESTMODE: Ignore non existent EULA...\n";
+       }
+       my $title = "END USER LICENSE AGREEMENT (EULA)";
+       $raw_html =~ s/__LICENSE__/$license/;
+       $raw_html =~ s/__LICENSE_TITLE__/$title/;
+
+       return $raw_html;
+    });
 
     $step_number++;
     set_next("I a_gree", \&create_hdsel_view);
 }
 
-$ipconf = get_ip_config();
-
-$country = detect_country() if $ipconf->{default} || $opt_testmode;
-
-# read country, kmap and timezone infos
-$cmap = read_cmap();
+$ipconf = Proxmox::Sys::Net::get_ip_config();
 
-if (!defined($cmap->{country}->{$country})) {
-    print $logfd "ignoring detected country '$country', invalid or unknown\n";
+if (!defined($iso_env->{locales}->{country}->{$country})) {
+    log_warn("ignoring detected country '$country', invalid or unknown\n");
     $country = undef;
 }
 
+Gtk3::init();
+
 create_main_window ();
 
 my $initial_error = 0;
 
-if (!defined ($hds) || (scalar (@$hds) <= 0)) {
-    print "no hardisks found\n";
-    $initial_error = 1;
-    display_html("nohds.htm");
-    set_next("Reboot", sub { exit(0); } );
-} else {
-    foreach my $hd (@$hds) {
-       my ($disk, $devname) = @$hd;
-       next if $devname =~ m|^/dev/md\d+$|;
-       print "found Disk$disk N:$devname\n";
+{
+    my $cached_disks = get_cached_disks();
+    if (!defined($cached_disks) || (scalar (@$cached_disks) <= 0)) {
+       print STDERR "no harddisks found\n";
+       $initial_error = 1;
+       Proxmox::UI::display_html("nohds.htm");
+       set_next("Reboot", sub { app_quit(0); } );
+    } else {
+       foreach my $hd (@$cached_disks) {
+           my ($disk, $devname) = @$hd;
+           next if $devname =~ m|^/dev/md\d+$|;
+           print STDERR "found Disk$disk N:$devname\n";
+       }
     }
 }
 
 if (!$initial_error && (scalar keys %{ $ipconf->{ifaces} } == 0)) {
-    print "no network interfaces found\n";
+    print STDERR "no network interfaces found\n";
     $initial_error = 1;
-    display_html("nonics.htm");
-    set_next("Reboot", sub { exit(0); } );
+    Proxmox::UI::display_html("nonics.htm");
+    set_next("Reboot", sub { app_quit(0); } );
 }
 
 create_intro_view () if !$initial_error;
 
 Gtk3->main;
 
-# reap left over zombie processes
-while ((my $child = waitpid(-1, POSIX::WNOHANG)) > 0) {
-    print "reaped child $child\n";
-}
-
-exit 0;
+app_quit(0);