]> git.proxmox.com Git - pve-installer.git/blame - proxinstall
gtk: FQDN parsing: fix fallback from error to generic message
[pve-installer.git] / proxinstall
CommitLineData
6981164e 1#!/usr/bin/perl
89a12446
DM
2
3use strict;
6981164e
DM
4use warnings;
5
62824106 6use Encode;
89a12446 7use Getopt::Long;
89a12446 8use IO::File;
dfc02f3c 9use Glib;
0387544f 10use Gtk3;
ed0e6aea 11use Gtk3::WebKit2;
0e631479 12use POSIX ":sys_wait_h";
2630cca4 13use JSON;
89a12446 14
84dc3d6f 15use Proxmox::Log;
8d479e26
TL
16Proxmox::Log::init("/tmp/install.log");
17
ea3b7cae
TL
18{ # NOTE: order is important here
19 my $test_image;
20 GetOptions(
21 'test-image|t=s' => \$test_image
22 ) or die "usage error\n";
23
24 Proxmox::Install::ISOEnv::set_test_image($test_image) if $test_image;
25}
26
8d479e26 27use Proxmox::Install::ISOEnv;
b91f9cad 28use Proxmox::Install::RunEnv;
ea3b7cae 29
afa3b40f 30# init singletons TODO: avoid all global initialization, use single "main" method
ea3b7cae 31my $iso_env = Proxmox::Install::ISOEnv::get();
ea3b7cae 32
a677c773 33use Proxmox::Install;
390889ab 34use Proxmox::Install::Config;
09480a9a 35
059e9650
TL
36use Proxmox::Sys::Block qw(get_cached_disks);
37use Proxmox::Sys::Command qw(syscmd);
38use Proxmox::Sys::File qw(file_read_all file_write_all);
625e8f60 39use Proxmox::Sys::Net qw(parse_ip_address parse_ip_mask);
5f031868 40use Proxmox::UI;
b9075af2 41
7becc472
DM
42if (!$ENV{G_SLICE} || $ENV{G_SLICE} ne "always-malloc") {
43 die "do not use slice allocator (run with 'G_SLICE=always-malloc ./proxinstall ...')\n";
44}
45
201a5120
OB
46my $step_number = 0; # Init number for global function list
47
48my @steps = (
49 {
50 step => 'intro',
51 html => 'license.htm',
52 next_button => 'I a_gree',
53 function => \&create_intro_view,
54 },
55 {
56 step => 'intro',
57 html => 'page1.htm',
58 function => \&create_hdsel_view,
59 },
60 {
61 step => 'country',
62 html => 'country.htm',
63 function => \&create_country_view,
64 },
65 {
66 step => 'password',
67 html => 'passwd.htm',
68 function => \&create_password_view,
69 },
70 {
71 step => 'ipconf',
201a5120
OB
72 html => 'ipconf.htm',
73 function => \&create_ipconf_view,
74 },
2e33c3f0
OB
75 {
76 step => 'ack',
77 html => 'ack.htm',
78 next_button => '_Install',
79 function => \&create_ack_view,
80 },
201a5120
OB
81 {
82 step => 'extract',
83 next_button => '_Reboot',
84 function => \&create_extract_view,
85 },
86);
87
88# GUI global variables
2266526b
TL
89my $gtk_state = {};
90
5bcefda0 91my $target_hds; # only for the summary view
89a12446 92
fd09e893
MS
93sub app_quit {
94 my ($exit_code) = @_;
95
96 Gtk3->main_quit() if Gtk3->main_level() > 0;
97
98 # reap left over zombie processes
99 while ((my $child = waitpid(-1, POSIX::WNOHANG)) > 0) {
5b43e82d 100 print STDERR "reaped child $child\n";
fd09e893
MS
101 }
102 exit($exit_code);
103}
104
201a5120 105sub prev_function {
201a5120
OB
106 my ($text, $fctn) = @_;
107
108 $fctn = $step_number if !$fctn;
109 $text = "_Previous" if !$text;
2266526b 110 $gtk_state->{prev_btn}->set_label($text);
201a5120
OB
111
112 $step_number--;
113 $steps[$step_number]->{function}();
114
2266526b 115 $gtk_state->{prev_btn}->grab_focus();
201a5120
OB
116}
117
89a12446
DM
118sub set_next {
119 my ($text, $fctn) = @_;
120
2266526b 121 $gtk_state->{next_btn_callback} = $fctn;
201a5120
OB
122 my $step = $steps[$step_number];
123 $text //= $steps[$step_number]->{next_button} // '_Next';
2266526b 124 $gtk_state->{next_btn}->set_label($text);
968fa90b 125
2266526b 126 $gtk_state->{next_btn}->grab_focus();
89a12446 127}
89a12446
DM
128
129sub create_main_window {
130
2266526b 131 my $window = Gtk3::Window->new();
71590b6a 132 $window->set_default_size(1024, 768);
f9bc57c4 133 $window->signal_connect(map => sub { $window->set_resizable(0); });
09362211
TL
134 $window->fullscreen() if !is_test_mode();
135 $window->set_decorated(0) if !is_test_mode();
ddc887bc 136 $window->signal_connect(destroy => sub { Gtk3->main_quit(); });
89a12446 137
d6efed19 138 my $vbox = Gtk3::Box->new('vertical', 0);
89a12446 139
84f90cbb 140 my $logofn = "$iso_env->{product}-banner.png";
a677c773 141 my $proxmox_libdir = $iso_env->{locations}->{lib};
782b4acd 142 my $image = Gtk3::Image->new_from_file("${proxmox_libdir}/$logofn");
7cf64825
TL
143
144 my $provider = Gtk3::CssProvider->new();
145 my $theming = "* {\nbackground: #171717;\n}";
146 $provider->load_from_data ([map ord, split //, $theming]);
147 my $context = $image->get_style_context();
148 $context->add_provider($provider, 600);
149
71590b6a 150 $vbox->pack_start($image, 0, 0, 0);
89a12446 151
d6efed19 152 my $hbox = Gtk3::Box->new('horizontal', 0);
71590b6a 153 $vbox->pack_start($hbox, 1, 1, 0);
89a12446 154
7becc472
DM
155 # my $f1 = Gtk3::Frame->new ('test');
156 # $f1->set_shadow_type ('none');
157 # $hbox->pack_start ($f1, 1, 1, 0);
89a12446 158
bbf51225 159 my $sep1 = Gtk3::Separator->new('horizontal');
71590b6a 160 $vbox->pack_start($sep1, 0, 0, 0);
89a12446 161
2266526b 162 my $cmdbox = Gtk3::Box->new('horizontal', 0);
71590b6a 163 $vbox->pack_start($cmdbox, 0, 0, 10);
89a12446 164
2266526b 165 my $next_btn = Gtk3::Button->new('_Next');
a677c773
TL
166 $next_btn->signal_connect(clicked => sub {
167 Proxmox::Install::reset_last_display_change();
168 $gtk_state->{next_btn_callback}->();
169 });
2266526b 170 $cmdbox->pack_end($next_btn, 0, 0, 10);
201a5120 171
2266526b 172 my $prev_btn = Gtk3::Button->new('_Previous');
a677c773
TL
173 $prev_btn->signal_connect(clicked => sub {
174 Proxmox::Install::reset_last_display_change();
175 prev_function();
176 });
71590b6a 177 $cmdbox->pack_end($prev_btn, 0, 0, 10);
201a5120
OB
178
179
71590b6a
OB
180 my $abort = Gtk3::Button->new('_Abort');
181 $abort->set_can_focus(0);
182 $cmdbox->pack_start($abort, 0, 0, 10);
df19222d
MS
183 $abort->signal_connect(clicked => sub {
184 my $msg = 'Abort Installation';
185 my $secondary_text = 'Are you sure you want to abort the installation?';
186 my $dialog = Gtk3::MessageDialog->new($window, 'modal', 'question', 'yes-no', $msg);
187 $dialog->format_secondary_text($secondary_text);
188 $dialog->signal_connect(response => sub {
189 my ($dialog, $response) = @_;
190
191 $dialog->close();
192 app_quit(-1) if $response eq 'yes';
193 });
194 $dialog->present();
195 });
89a12446 196
d6efed19 197 my $vbox2 = Gtk3::Box->new('vertical', 0);
71590b6a 198 $hbox->add($vbox2);
89a12446 199
2266526b
TL
200 my $html_view = Gtk3::WebKit2::WebView->new();
201 $html_view->set_hexpand(1);
7becc472 202 my $scrolls = Gtk3::ScrolledWindow->new();
2266526b 203 $scrolls->add($html_view);
1464c7c9 204
d6efed19 205 my $hbox2 = Gtk3::Box->new('horizontal', 0);
71590b6a 206 $hbox2->pack_start($scrolls, 1, 1, 0);
89a12446 207
71590b6a 208 $vbox2->pack_start($hbox2, 1, 1, 0);
89a12446 209
d6efed19 210 my $vbox3 = Gtk3::Box->new('vertical', 0);
71590b6a 211 $vbox2->pack_start($vbox3, 0, 0, 0);
89a12446 212
bbf51225 213 my $sep2 = Gtk3::Separator->new('horizontal');
71590b6a 214 $vbox3->pack_start($sep2, 0, 0, 0);
89a12446 215
2266526b 216 my $inbox = Gtk3::Box->new('horizontal', 0);
71590b6a 217 $vbox3->pack_start($inbox, 0, 0, 0);
89a12446 218
71590b6a 219 $window->add($vbox);
89a12446 220
2266526b
TL
221 $gtk_state->{window} = $window;
222 $gtk_state->{html_view} = $html_view;
223 $gtk_state->{inbox} = $inbox;
224 $gtk_state->{prev_btn} = $prev_btn;
225 $gtk_state->{next_btn} = $next_btn;
226 $gtk_state->{progress_bar} = Gtk3::ProgressBar->new();
227 $gtk_state->{progress_status} = Gtk3::Label->new('');
85249554 228 $gtk_state->{abort_btn} = $abort;
0632d479 229 $gtk_state->{disk_selection} = {};
2266526b 230
84f90cbb 231 Proxmox::UI::init_gtk($gtk_state, $iso_env);
5f031868 232
89a12446 233 $window->show_all;
f9bc57c4 234 $window->present();
89a12446
DM
235}
236
1464c7c9 237sub cleanup_view {
2266526b 238 $gtk_state->{inbox}->foreach(sub {
d2120e51 239 my $child = shift;
2266526b 240 $gtk_state->{inbox}->remove ($child);
d2120e51 241 });
89a12446
DM
242}
243
aed81ff0
DM
244# fixme: newer GTK3 has special properties to handle numbers with Entry
245# only allow floating point numbers with Gtk3::Entry
e73c5fcf 246
aed81ff0
DM
247sub check_float {
248 my ($entry, $event) = @_;
249
e73c5fcf
FG
250 return check_number($entry, $event, 1);
251}
252
253sub check_int {
254 my ($entry, $event) = @_;
255
256 return check_number($entry, $event, 0);
257}
258
259sub check_number {
260 my ($entry, $event, $float) = @_;
aed81ff0
DM
261
262 my $val = $event->get_keyval;
263
e73c5fcf 264 if (($float && $val == ord '.') ||
aed81ff0
DM
265 $val == Gtk3::Gdk::KEY_ISO_Left_Tab ||
266 $val == Gtk3::Gdk::KEY_Shift_L ||
267 $val == Gtk3::Gdk::KEY_Tab ||
268 $val == Gtk3::Gdk::KEY_Left ||
269 $val == Gtk3::Gdk::KEY_Right ||
270 $val == Gtk3::Gdk::KEY_BackSpace ||
271 $val == Gtk3::Gdk::KEY_Delete ||
272 ($val >= ord '0' && $val <= ord '9') ||
273 ($val >= Gtk3::Gdk::KEY_KP_0 &&
274 $val <= Gtk3::Gdk::KEY_KP_9)) {
275 return undef;
276 }
277
278 return 1;
279}
280
d2120e51 281sub create_text_input {
89a12446
DM
282 my ($default, $text) = @_;
283
71590b6a
OB
284 my $label = Gtk3::Label->new($text);
285 $label->set_size_request(150, -1);
9f91507b 286 $label->set_xalign(1.0);
71590b6a 287 my $e1 = Gtk3::Entry->new();
cc120d79 288 $e1->set_width_chars(35);
71590b6a 289 $e1->set_text($default);
89a12446 290
9102da79 291 return ($label, $e1);
89a12446 292}
cc120d79 293sub create_cidr_inputs {
7f3941d1
TL
294 my ($cidr) = @_;
295
296 my ($default_ip, $default_mask) = split('/', $cidr);
cc120d79
TL
297
298 my $hbox = Gtk3::Box->new('horizontal', 0);
299
300 my $label = Gtk3::Label->new('IP Address (CIDR)');
301 $label->set_size_request(150, -1);
9f91507b 302 $label->set_xalign(1.0);
cc120d79
TL
303
304 my $ip_el = Gtk3::Entry->new();
305 $ip_el->set_width_chars(28);
cebd8aee 306 $hbox->pack_start($ip_el, 1, 1, 0);
cc120d79
TL
307 $ip_el->set_text($default_ip);
308
9102da79
MS
309 my $dash_label = Gtk3::Label->new('/');
310 $dash_label->set_size_request(10, -1);
311 $hbox->pack_start($dash_label, 0, 0, 2);
cc120d79
TL
312
313 my $cidr_el = Gtk3::Entry->new();
314 $cidr_el->set_width_chars(3);
315 $hbox->pack_start($cidr_el, 0, 0, 0);
316 $cidr_el->set_text($default_mask);
317
9102da79 318 return ($label, $hbox, $ip_el, $cidr_el);
cc120d79 319}
89a12446 320
fe44bd92
FG
321my $ipconf_first_view = 1;
322
bc59382d
MS
323my $create_basic_grid = sub {
324 my $grid = Gtk3::Grid->new();
325 $grid->set_visible(1);
326 $grid->set_column_spacing(10);
327 $grid->set_row_spacing(10);
328 $grid->set_hexpand(1);
329
0cc6d5ff 330 $grid->set_margin_start(20);
bc59382d 331 $grid->set_margin_end(20);
0cc6d5ff
MS
332 $grid->set_margin_top(10);
333 $grid->set_margin_bottom(10);
bc59382d
MS
334
335 return $grid;
336};
337
89a12446
DM
338sub create_ipconf_view {
339
201a5120 340 cleanup_view();
efc7a8be 341 Proxmox::UI::display_html('ipconf.htm');
89a12446 342
9102da79
MS
343 my $grid = &$create_basic_grid();
344 $grid->set_row_spacing(10);
345 $grid->set_column_spacing(10);
346
347 $gtk_state->{inbox}->pack_start($grid, 0, 0, 0);
89a12446 348
7f3941d1
TL
349 my $cidr = Proxmox::Install::Config::get_cidr() // '192.168.100.2/24';
350
9102da79 351 my ($cidr_label, $cidr_box, $ipconf_entry_addr, $ipconf_entry_mask) = create_cidr_inputs($cidr);
fe44bd92 352
124ca33f
MS
353 my $device_model = Gtk3::ListStore->new('Glib::String', 'Glib::String');
354 my $device_cb = Gtk3::ComboBox->new_with_model($device_model);
fe44bd92
FG
355 $device_cb->set_active(0);
356 $device_cb->set_visible(1);
357
124ca33f
MS
358 my $icon_cell = Gtk3::CellRendererText->new();
359 $device_cb->pack_start($icon_cell, 0);
360 $device_cb->add_attribute($icon_cell, 'text', 0);
361 $icon_cell->set_property('foreground', 'green');
362
363 my $cell = Gtk3::CellRendererText->new();
364 $device_cb->pack_start($cell, 0);
365 $device_cb->add_attribute($cell, 'text', 1);
366
fe44bd92
FG
367 my $get_device_desc = sub {
368 my $iface = shift;
369 return "$iface->{name} - $iface->{mac} ($iface->{driver})";
370 };
371
f9edca42 372 my $run_env = Proxmox::Install::RunEnv::get();
fe06d7e9
TL
373 my $ipconf = $run_env->{ipconf};
374
375 my ($device_active_map, $device_active_reverse_map) = ({}, {});
5b6ba737
FG
376
377 my $device_change_handler = sub {
378 my $current = shift;
d6524c52
TL
379
380 my $new = $device_active_map->{$current->get_active()};
8a7e31ce
TL
381 my $selected = Proxmox::Install::Config::get_mngmt_nic_id();
382 return if defined($selected) && $new eq $selected;
d6524c52 383
8a7e31ce
TL
384 Proxmox::Install::Config::set_mngmt_nic_id($new);
385 my $iface = $ipconf->{ifaces}->{$new};
386 Proxmox::Install::Config::set_mngmt_nic($iface->{name});
5b6ba737
FG
387 $ipconf_entry_addr->set_text($iface->{inet}->{addr} || $iface->{inet6}->{addr})
388 if $iface->{inet}->{addr} || $iface->{inet6}->{addr};
cc120d79
TL
389 $ipconf_entry_mask->set_text($iface->{inet}->{prefix} || $iface->{inet6}->{prefix})
390 if $iface->{inet}->{prefix} || $iface->{inet6}->{prefix};
5b6ba737
FG
391 };
392
fe44bd92 393 my $i = 0;
fe06d7e9
TL
394 for my $index (sort keys $ipconf->{ifaces}->%*) {
395 my $iface = $ipconf->{ifaces}->{$index};
124ca33f
MS
396 my $iter = $device_model->append();
397 my $symbol = "$iface->{state}" eq "UP" ? "\x{25CF}" : ' ';
398 $device_model->set($iter,
399 0 => $symbol,
400 1 => $get_device_desc->($iface),
401 );
ebc4f76f 402 $device_active_map->{$i} = $index;
fe06d7e9 403 $device_active_reverse_map->{$iface->{name}} = $i;
fe44bd92
FG
404 if ($ipconf_first_view && $index == $ipconf->{default}) {
405 $device_cb->set_active($i);
5b6ba737 406 &$device_change_handler($device_cb);
fe44bd92
FG
407 $ipconf_first_view = 0;
408 }
71590b6a 409 $device_cb->signal_connect('changed' => $device_change_handler);
fe44bd92
FG
410 $i++;
411 }
412
8a7e31ce 413 if (my $nic = Proxmox::Install::Config::get_mngmt_nic()) {
ebc4f76f
TL
414 $device_cb->set_active($device_active_reverse_map->{$nic} // 0);
415 } else {
416 $device_cb->set_active(0);
417 }
5b6ba737 418
d445c4c5 419 my $label = Gtk3::Label->new("Management Interface");
71590b6a 420 $label->set_size_request(150, -1);
9f91507b 421 $label->set_xalign(1.0);
fe44bd92 422
9102da79
MS
423 $grid->attach($label, 0, 0, 1, 1);
424 $grid->attach($device_cb, 1, 0, 1, 1);
968fa90b 425
e02f38dc 426 my $fqdn = Proxmox::Install::Config::get_fqdn();
8268b2e5
CH
427 my $hostname = $run_env->{network}->{hostname} || $iso_env->{product};
428 my $domain = $ipconf->{domain} || "example.invalid";
429 $fqdn //= "$hostname.$domain";
1464c7c9 430
d445c4c5 431 my ($host_label, $hostentry) = create_text_input($fqdn, 'Hostname (FQDN)');
9102da79
MS
432 $grid->attach($host_label, 0, 1, 1, 1);
433 $grid->attach($hostentry, 1, 1, 1, 1);
89a12446 434
9102da79
MS
435 $grid->attach($cidr_label, 0, 2, 1, 1);
436 $grid->attach($cidr_box, 1, 2, 1, 1);
89a12446 437
7f3941d1
TL
438 my $cfg_gateway = Proxmox::Install::Config::get_gateway();
439 my $gateway = $cfg_gateway // $ipconf->{gateway} || '192.168.100.1';
89a12446 440
d445c4c5 441 my ($gw_label, $ipconf_entry_gw) = create_text_input($gateway, 'Gateway');
9102da79
MS
442 $grid->attach($gw_label, 0, 3, 1, 1);
443 $grid->attach($ipconf_entry_gw, 1, 3, 1, 1);
89a12446 444
7f3941d1
TL
445 my $cfg_dns = Proxmox::Install::Config::get_dns();
446 my $dnsserver = $cfg_dns // $ipconf->{dnsserver} || $gateway;
89a12446 447
d445c4c5 448 my ($dns_label, $ipconf_entry_dns) = create_text_input($dnsserver, 'DNS Server');
89a12446 449
9102da79
MS
450 $grid->attach($dns_label, 0, 4, 1, 1);
451 $grid->attach($ipconf_entry_dns, 1, 4, 1, 1);
89a12446 452
2266526b 453 $gtk_state->{inbox}->show_all;
71590b6a 454 set_next(undef, sub {
d2120e51 455 # verify hostname
89a12446 456 my $text = $hostentry->get_text();
89a12446
DM
457 $text =~ s/^\s+//;
458 $text =~ s/\s+$//;
459
93892c01
CH
460 my ($hostname, $domainname) = eval { Proxmox::Sys::Net::parse_fqdn($text) };
461 my $err = $@;
24973868 462
93892c01 463 if ($err || $text =~ m/.example.invalid$/) {
29443e5b 464 Proxmox::UI::message($err || 'Hostname does not look like a valid fully qualified domain name');
d2120e51 465 $hostentry->grab_focus();
89a12446 466 return;
93892c01
CH
467 } else {
468 Proxmox::Install::Config::set_hostname($hostname);
469 Proxmox::Install::Config::set_domain($domainname);
89a12446 470 }
d2120e51
DM
471
472 # verify ip address
d2120e51 473 $text = $ipconf_entry_addr->get_text();
7f3941d1 474 my ($ipaddress, $ipversion) = parse_ip_address($text);
625e8f60 475 if (!defined($ipaddress)) {
72bea995 476 Proxmox::UI::message("IP address is not valid.");
d2120e51
DM
477 $ipconf_entry_addr->grab_focus();
478 return;
479 }
480
481 $text = $ipconf_entry_mask->get_text();
7f3941d1 482 my $netmask = parse_ip_mask($text, $ipversion);
625e8f60 483 if (!defined($netmask)) {
72bea995 484 Proxmox::UI::message("Netmask is not valid.");
d2120e51
DM
485 $ipconf_entry_mask->grab_focus();
486 return;
487 }
7f3941d1 488 Proxmox::Install::Config::set_cidr("$ipaddress/$netmask");
d2120e51
DM
489
490 $text = $ipconf_entry_gw->get_text();
625e8f60
TL
491 my ($gateway_ip, $gateway_ip_version) = parse_ip_address($text);
492 if (!defined($gateway_ip) || $gateway_ip_version != $ipversion) {
493 my $msg = defined($gateway_ip)
494 ? "Gateway and host IP version must not differ (IPv$gateway_ip_version != IPv$ipversion)."
495 : "Gateway is not valid.";
72bea995 496 Proxmox::UI::message($msg);
d2120e51
DM
497 $ipconf_entry_gw->grab_focus();
498 return;
499 }
7f3941d1 500 Proxmox::Install::Config::set_gateway($gateway_ip);
1464c7c9 501
d2120e51 502 $text = $ipconf_entry_dns->get_text();
625e8f60
TL
503 my ($dns_ip, $dns_ip_version) = parse_ip_address($text);
504 if (!defined($dns_ip) || $dns_ip_version != $ipversion) {
d54381c7
FS
505 my $msg = defined($dns_ip)
506 ? "DNS and host IP version must not differ (IPv$dns_ip_version != IPv$ipversion)."
625e8f60 507 : "DNS IP is not valid.";
72bea995 508 Proxmox::UI::message($msg);
d2120e51
DM
509 $ipconf_entry_dns->grab_focus();
510 return;
511 }
7f3941d1 512 Proxmox::Install::Config::set_dns($dns_ip);
1464c7c9 513
7f3941d1 514 #print STDERR "TEST $ipaddress/$netmask $gateway_ip $dns_ip\n";
1464c7c9 515
201a5120 516 $step_number++;
2e33c3f0 517 create_ack_view();
89a12446
DM
518 });
519
520 $hostentry->grab_focus();
521}
522
2e33c3f0
OB
523sub create_ack_view {
524
525 cleanup_view();
526
d6efed19 527 my $vbox = Gtk3::Box->new('vertical', 0);
2266526b 528 $gtk_state->{inbox}->pack_start($vbox, 1, 0, 0);
dfc02f3c
TL
529
530 my $reboot_checkbox = Gtk3::CheckButton->new('Automatically reboot after successful installation');
531 $reboot_checkbox->set_active(1);
532 $reboot_checkbox->signal_connect ("toggled" => sub {
533 my $cb = shift;
0a3ac982 534 Proxmox::Install::Config::set_autoreboot(!!$cb->get_active());
dfc02f3c
TL
535 });
536 $vbox->pack_start($reboot_checkbox, 0, 0, 2);
537
a677c773 538 my $proxmox_libdir = $iso_env->{locations}->{lib};
029fde30 539 my $ack_template = "${proxmox_libdir}/html/ack_template.htm";
84f90cbb 540 my $ack_html = "${proxmox_libdir}/html/$iso_env->{product}/$steps[$step_number]->{html}";
a28c08e9 541 my $html_data = file_read_all($ack_template);
2e33c3f0 542
74041d68
TL
543 my $country = Proxmox::Install::Config::get_country();
544
2e33c3f0 545 my %config_values = (
5bcefda0 546 __target_hd__ => join(' | ', $target_hds->@*),
cd1a45ad 547 __target_fs__ => Proxmox::Install::Config::get_filesys(),
84f90cbb 548 __country__ => $iso_env->{locales}->{country}->{$country}->{name},
2959225b 549 __timezone__ => Proxmox::Install::Config::get_timezone(),
b3bcf70e 550 __keymap__ => Proxmox::Install::Config::get_keymap(),
8924c145 551 __mailto__ => Proxmox::Install::Config::get_mailto(),
8a7e31ce 552 __interface__ => Proxmox::Install::Config::get_mngmt_nic(),
e02f38dc 553 __hostname__ => Proxmox::Install::Config::get_hostname(),
7f3941d1
TL
554 __cidr__ => Proxmox::Install::Config::get_cidr(),
555 __gateway__ => Proxmox::Install::Config::get_gateway(),
556 __dnsserver__ => Proxmox::Install::Config::get_dns(),
2e33c3f0
OB
557 );
558
029fde30 559 while (my ($k, $v) = each %config_values) {
2e33c3f0
OB
560 $html_data =~ s/$k/$v/g;
561 }
562
2630cca4
TL
563 eval {
564 my $config = Proxmox::Install::Config::get();
565 file_write_all(
566 "$iso_env->{locations}->{run}/config-ack.json",
567 to_json($config, { utf8 => 1, canonical => 1 }) ."\n",
568 );
569 };
570 warn "failed to write config-for-ack - $@" if $@;
571
a28c08e9 572 file_write_all($ack_html, $html_data);
2e33c3f0 573
efc7a8be 574 Proxmox::UI::display_html('ack.htm');
2e33c3f0 575
2266526b 576 $gtk_state->{inbox}->show_all;
dfc02f3c 577
2e33c3f0
OB
578 set_next(undef, sub {
579 $step_number++;
580 create_extract_view();
581 });
582}
583
89a12446
DM
584sub get_device_desc {
585 my ($devname, $size, $model) = @_;
586
d2120e51 587 if ($size && ($size > 0)) {
b04864ec 588 $size = int($size/2048); # size in MiB, from 512B "sectors"
89a12446 589
d2120e51 590 my $text = "$devname (";
89a12446 591 if ($size >= 1024) {
b04864ec 592 $size = $size/1024; # size in GiB
ceabb291 593 if ($size >= 1024) {
b04864ec
SI
594 $size = $size/1024; # size in TiB
595 $text .= sprintf("%.2f", $size) . "TiB";
ceabb291 596 } else {
b04864ec 597 $text .= sprintf("%.2f", $size) . "GiB";
ceabb291 598 }
89a12446 599 } else {
ceabb291 600 $text .= "${size}MiB";
89a12446
DM
601 }
602
d2120e51
DM
603 $text .= ", $model" if $model;
604 $text .= ")";
b04864ec 605 return $text;
d2120e51 606
89a12446
DM
607 } else {
608 return $devname;
609 }
610}
611
d92ada4e
SI
612my $last_layout;
613my $country_layout;
89a12446
DM
614sub update_layout {
615 my ($cb, $kmap) = @_;
616
617 my $ind;
618 my $def;
619 my $i = 0;
84f90cbb 620 my $kmaphash = $iso_env->{locales}->{kmaphash};
89a12446
DM
621 foreach my $layout (sort keys %$kmaphash) {
622 $def = $i if $kmaphash->{$layout} eq 'en-us';
623 $ind = $i if $kmap && $kmaphash->{$layout} eq $kmap;
624 $i++;
625 }
626
d92ada4e
SI
627 my $val = $ind || $def || 0;
628
629 if (!defined($kmap)) {
630 $last_layout //= $val;
631 } elsif (!defined($country_layout) || $country_layout != $val) {
632 $last_layout = $country_layout = $val;
633 }
634 $cb->set_active($last_layout);
89a12446
DM
635}
636
637my $lastzonecb;
638sub update_zonelist {
1fbce9ba 639 my ($grid, $cc) = @_;
89a12446 640
2959225b 641 my $sel = Proxmox::Install::Config::get_timezone(); # initial default
89a12446
DM
642 if ($lastzonecb) {
643 $sel = $lastzonecb->get_active_text();
1fbce9ba 644 $grid->remove($lastzonecb);
89a12446
DM
645 }
646
bcbfab6b 647 my $cb = $lastzonecb = Gtk3::ComboBoxText->new();
71590b6a 648 $cb->set_size_request(200, -1);
71590b6a 649 $cb->signal_connect('changed' => sub {
2959225b
TL
650 my $timezone = $cb->get_active_text();
651 Proxmox::Install::Config::set_timezone($timezone);
89a12446
DM
652 });
653
84f90cbb 654 my ($cczones, $zones) = $iso_env->{locales}->@{'cczones', 'zones'};
2c757f5e
TL
655 my @available_zones = $cc && defined($cczones->{$cc}) ? keys %{$cczones->{$cc}} : keys %$zones;
656
657 my ($i, $selected_index) = (0, undef);
658 for my $zone (sort @available_zones) {
659 $selected_index = $i if $sel && $zone eq $sel;
71590b6a 660 $cb->append_text($zone);
89a12446
DM
661 $i++;
662 }
663
6bbe42ef
TL
664 # Append UTC here, so it is always the last item and never the default for any country.
665 $cb->append_text('UTC');
c5be8337 666
2c757f5e 667 $cb->set_active($selected_index || 0);
89a12446
DM
668
669 $cb->show;
1fbce9ba 670 $grid->attach($cb, 1, 1, 1, 1);
89a12446
DM
671}
672
673sub create_password_view {
674
71590b6a 675 cleanup_view();
89a12446 676
a024147b
TL
677 my $password = Proxmox::Install::Config::get_password();
678
55c22949
MS
679 my $grid = &$create_basic_grid();
680 $gtk_state->{inbox}->pack_start($grid, 0, 0, 0);
71590b6a 681
71590b6a
OB
682 my $label = Gtk3::Label->new("Password");
683 $label->set_size_request(150, -1);
9f91507b 684 $label->set_xalign(1.0);
55c22949 685 $grid->attach($label, 0, 0, 1, 1);
71590b6a
OB
686 my $pwe1 = Gtk3::Entry->new();
687 $pwe1->set_visibility(0);
201a5120 688 $pwe1->set_text($password) if $password;
71590b6a 689 $pwe1->set_size_request(200, -1);
55c22949 690 $grid->attach($pwe1, 1, 0, 1, 1);
71590b6a 691
71590b6a
OB
692 $label = Gtk3::Label->new("Confirm");
693 $label->set_size_request(150, -1);
9f91507b 694 $label->set_xalign(1.0);
55c22949 695 $grid->attach($label, 0, 1, 1, 1);
71590b6a
OB
696 my $pwe2 = Gtk3::Entry->new();
697 $pwe2->set_visibility(0);
201a5120 698 $pwe2->set_text($password) if $password;
71590b6a 699 $pwe2->set_size_request(200, -1);
55c22949 700 $grid->attach($pwe2, 1, 1, 1, 1);
71590b6a 701
b11c55ff 702 $label = Gtk3::Label->new("Email");
71590b6a 703 $label->set_size_request(150, -1);
9f91507b 704 $label->set_xalign(1.0);
55c22949
MS
705 $label->set_margin_top(10);
706 $grid->attach($label, 0, 2, 1, 1);
707
71590b6a
OB
708 my $eme = Gtk3::Entry->new();
709 $eme->set_size_request(200, -1);
8924c145 710 $eme->set_text(Proxmox::Install::Config::get_mailto());
55c22949
MS
711 $eme->set_margin_top(10);
712 $grid->attach($eme, 1, 2, 1, 1);
89a12446 713
2266526b 714 $gtk_state->{inbox}->show_all;
89a12446 715
efc7a8be 716 Proxmox::UI::display_html('passwd.htm');
89a12446
DM
717
718 set_next (undef, sub {
719
720 my $t1 = $pwe1->get_text;
721 my $t2 = $pwe2->get_text;
722
723 if (length ($t1) < 5) {
72bea995 724 Proxmox::UI::message("Password is too short.");
89a12446
DM
725 $pwe1->grab_focus();
726 return;
727 }
728
729 if ($t1 ne $t2) {
72bea995 730 Proxmox::UI::message("Password does not match.");
89a12446
DM
731 $pwe1->grab_focus();
732 return;
733 }
734
735 my $t3 = $eme->get_text;
c82fffd8 736 if ($t3 !~ m/^[\w\+\-\~]+(\.[\w\+\-\~]+)*@[a-zA-Z0-9\-]+(\.[a-zA-Z0-9\-]+)*$/) {
8924c145 737 Proxmox::UI::message("Email does not look like a valid address (user\@domain.tld)");
89a12446
DM
738 $eme->grab_focus();
739 return;
a39bc1f2 740 }
89a12446 741
a39bc1f2 742 if ($t3 eq 'mail@example.invalid') {
72bea995 743 Proxmox::UI::message("Please enter a valid Email address");
a39bc1f2
FG
744 $eme->grab_focus();
745 return;
89a12446
DM
746 }
747
a024147b 748 Proxmox::Install::Config::set_password($t1);
8924c145 749 Proxmox::Install::Config::set_mailto($t3);
89a12446 750
201a5120 751 $step_number++;
89a12446
DM
752 create_ipconf_view();
753 });
754
755 $pwe1->grab_focus();
756
757}
758
d92ada4e 759my $installer_kmap;
89a12446
DM
760sub create_country_view {
761
71590b6a 762 cleanup_view();
89a12446 763
84f90cbb 764 my $locales = $iso_env->{locales};
89a12446 765
1fbce9ba
MS
766 my $grid = &$create_basic_grid();
767 $gtk_state->{inbox}->pack_start($grid, 0, 0, 0);
89a12446 768
71590b6a
OB
769 my $w = Gtk3::Entry->new();
770 $w->set_size_request(200, -1);
89a12446 771
71590b6a
OB
772 my $c = Gtk3::EntryCompletion->new();
773 $c->set_text_column(0);
89a12446 774 $c->set_minimum_key_length(0);
71590b6a
OB
775 $c->set_popup_set_width(1);
776 $c->set_inline_completion(1);
777
71590b6a
OB
778 my $label = Gtk3::Label->new("Time zone");
779 $label->set_size_request(150, -1);
9f91507b 780 $label->set_xalign(1.0);
1fbce9ba
MS
781 $grid->attach($label, 0, 1, 1, 1);
782 update_zonelist ($grid);
89a12446 783
71590b6a
OB
784 $label = Gtk3::Label->new("Keyboard Layout");
785 $label->set_size_request(150, -1);
9f91507b 786 $label->set_xalign(1.0);
1fbce9ba 787 $grid->attach($label, 0, 2, 1, 1);
89a12446 788
bcbfab6b 789 my $kmapcb = Gtk3::ComboBoxText->new();
89a12446 790 $kmapcb->set_size_request (200, -1);
2c757f5e
TL
791 for my $layout (sort keys %{$locales->{kmaphash}}) {
792 $kmapcb->append_text($layout);
89a12446
DM
793 }
794
71590b6a 795 update_layout($kmapcb);
1fbce9ba 796 $grid->attach($kmapcb, 1, 2, 1, 1);
89a12446
DM
797
798 $kmapcb->signal_connect ('changed' => sub {
799 my $sel = $kmapcb->get_active_text();
d92ada4e 800 $last_layout = $kmapcb->get_active();
2c757f5e
TL
801 if (my $kmap = $locales->{kmaphash}->{$sel}) {
802 my $xkmap = $locales->{kmap}->{$kmap}->{x11};
803 my $xvar = $locales->{kmap}->{$kmap}->{x11var};
07ec6825 804
b3bcf70e 805 Proxmox::Install::Config::set_keymap($kmap);
d92ada4e 806
b3bcf70e
TL
807 return if (defined($installer_kmap) && $installer_kmap eq $kmap);
808 $installer_kmap = $kmap;
d92ada4e 809
09362211 810 if (!is_test_mode()) {
059e9650 811 syscmd("setxkbmap $xkmap $xvar");
2663e171
SI
812
813 my $kbd_config = qq{
814 XKBLAYOUT="$xkmap"
815 XKBVARIANT="$xvar"
816 BACKSPACE="guess"
817 };
818 $kbd_config =~ s/^\s+//gm;
819
d9ba239d 820 Proxmox::Sys::Command::run_in_background(sub {
a28c08e9 821 file_write_all('/etc/default/keyboard', $kbd_config);
2663e171
SI
822 system("setupcon");
823 });
07ec6825 824 }
89a12446
DM
825 }
826 });
827
828 $w->signal_connect ('changed' => sub {
829 my ($entry, $event) = @_;
830 my $text = $entry->get_text;
831
2c757f5e 832 if (my $cc = $locales->{countryhash}->{lc($text)}) {
1fbce9ba 833 update_zonelist($grid, $cc);
2c757f5e 834 my $kmap = $locales->{country}->{$cc}->{kmap} || 'en-us';
71590b6a 835 update_layout($kmapcb, $kmap);
89a12446
DM
836 }
837 });
838
839 $w->signal_connect (key_press_event => sub {
840 my ($entry, $event) = @_;
841 my $text = $entry->get_text;
842
7becc472
DM
843 my $val = $event->get_keyval;
844
845 if ($val == Gtk3::Gdk::KEY_Tab) {
2c757f5e 846 my $cc = $locales->{countryhash}->{lc($text)};
1464c7c9 847
89a12446
DM
848 my $found = 0;
849 my $compl;
7becc472 850
4443aa27
DM
851 if ($cc) {
852 $found = 1;
2c757f5e 853 $compl = $locales->{country}->{$cc}->{name};
4443aa27 854 } else {
2c757f5e
TL
855 for my $country (values $locales->{country}->%*) {
856 if ($country->{name} =~ m/^\Q$text\E.*$/i) {
4443aa27 857 $found++;
2c757f5e 858 $compl = $country->{name};
4443aa27
DM
859 }
860 last if $found > 1;
89a12446 861 }
89a12446 862 }
4443aa27 863
89a12446 864 if ($found == 1) {
7becc472 865 $entry->set_text($compl);
3df718ea 866 $c->complete();
89a12446
DM
867 return undef;
868 } else {
5b43e82d 869 # beep ?
89a12446
DM
870 }
871
3df718ea
DM
872 $c->complete();
873
7becc472
DM
874 my $buf = $w->get_buffer();
875 $buf->insert_text(-1, '', -1); # popup selection
876
89a12446
DM
877 return 1;
878 }
879
880 return undef;
881 });
1464c7c9 882
2c757f5e
TL
883 my $country_store = Gtk3::ListStore->new('Glib::String');
884 my $countries = $locales->{country};
885 for my $cc (sort { $countries->{$a}->{name} cmp $countries->{$b}->{name} } keys %$countries) {
886 my $iter = $country_store->append();
887 $country_store->set($iter, 0, $countries->{$cc}->{name});
89a12446 888 }
2c757f5e 889 $c->set_model($country_store);
89a12446 890
968fa90b 891 $w->set_completion ($c);
89a12446 892
71590b6a 893 $label = Gtk3::Label->new("Country");
9f91507b 894 $label->set_xalign(1.0);
71590b6a 895 $label->set_size_request(150, -1);
1fbce9ba
MS
896 $grid->attach($label, 0, 0, 1, 1);
897 $grid->attach($w, 1, 0, 1, 1);
89a12446 898
74041d68 899 my $country = Proxmox::Install::Config::get_country();
2c757f5e
TL
900 if ($country && (my $entry = $locales->{country}->{$country})) {
901 $w->set_text($entry->{name});
89a12446
DM
902 }
903
2266526b 904 $gtk_state->{inbox}->show_all;
89a12446 905
efc7a8be 906 Proxmox::UI::display_html('country.htm');
89a12446
DM
907 set_next (undef, sub {
908
909 my $text = $w->get_text;
910
2c757f5e 911 if (my $cc = $locales->{countryhash}->{lc($text)}) {
74041d68 912 Proxmox::Install::Config::set_country($cc);
201a5120 913 $step_number++;
89a12446
DM
914 create_password_view();
915 return;
916 } else {
72bea995 917 Proxmox::UI::message("Please select a country first.");
89a12446
DM
918 $w->grab_focus();
919 }
920 });
921
922 $w->grab_focus();
923}
924
c6ed3b24
DM
925my $target_hd_combo;
926my $target_hd_label;
927
bd3a2e26 928my $hdoption_first_setup = 1;
c6ed3b24 929
0bdb7ddb
TL
930# takes an array ref of rows with [$label_text, $widget, $suffix_label] array refs as columns
931# $suffix_label is optional
c7779156
FG
932my $create_label_widget_grid = sub {
933 my ($labeled_widgets) = @_;
934
935 my $grid = &$create_basic_grid();
c7779156 936
bf0c8b17 937 for (my $row = 0; $row < scalar($labeled_widgets->@*); $row++) {
0bdb7ddb 938 my ($label_text, $widget, $suffix_label) = $labeled_widgets->[$row]->@*;
bf0c8b17
TL
939
940 my $label = Gtk3::Label->new($label_text);
c7779156 941 $label->set_visible(1);
9f91507b 942 $label->set_xalign(1.0);
c7779156 943 $grid->attach($label, 0, $row, 1, 1);
bf0c8b17 944
c7779156
FG
945 $widget->set_visible(1);
946 $grid->attach($widget, 1, $row, 1, 1);
0bdb7ddb
TL
947
948 if ($suffix_label) {
949 my $suffix_label = Gtk3::Label->new($suffix_label);
950 $suffix_label->set_visible(1);
951 $suffix_label->set_xalign(1.0);
952 $grid->attach($suffix_label, 2, $row, 1, 1);
953 }
c7779156
FG
954 }
955
956 return $grid;
957};
958
329a65a5 959# only relevant for raid with its multipl diskX to diskY mappings.
ebf1e983 960my $get_selected_hdsize = sub {
c07739f4 961 my $hdsize = shift;
329a65a5
TL
962 return $hdsize if defined($hdsize);
963
964 # compute the smallest disk size of the actually selected disks
40fbf8e6
TL
965 my $cached_disks = get_cached_disks();
966 my $disk_count = scalar(@$cached_disks);
967 for (my $i = 0; $i < $disk_count; $i++) {
0632d479 968 my $cur_hd = $gtk_state->{disk_selection}->{$i} // next;
329a65a5
TL
969 my $disksize = int(@$cur_hd[2] / (2 * 1024 * 1024.0)); # size in GB
970 $hdsize //= $disksize;
971 $hdsize = $disksize if $disksize < $hdsize;
c07739f4 972 }
3bcf46e2 973
a8a14c4d 974 if (my $cfg_hdsize = Proxmox::Install::Config::get_hdsize()) {
3bcf46e2
TL
975 # had the dialog open previously and set an even lower size than the disk selection allows
976 $hdsize = $cfg_hdsize if $cfg_hdsize < $hdsize;
977 }
ebf1e983
TL
978 return $hdsize // 0; # fall back to zero, e.g., if none is selected hdsize cannot be any size
979};
980
981my sub update_hdsize_adjustment {
982 my ($adjustment, $hdsize) = @_;
983
984 $hdsize = $get_selected_hdsize->($hdsize);
985 # expect that lower = 0 and step increments = 1 still are valid
986 $adjustment->set_upper($hdsize + 1);
987 $adjustment->set_value($hdsize);
988}
c07739f4 989
ebf1e983
TL
990my sub create_hdsize_adjustment {
991 my ($hdsize) = @_;
992 $hdsize = $get_selected_hdsize->($hdsize);
a8a14c4d 993 my $cfg_hdsize = Proxmox::Install::Config::get_hdsize();
ebf1e983 994 # params are: initial value, lower, upper, step increment, page increment, page size
a8a14c4d 995 return Gtk3::Adjustment->new($cfg_hdsize || $hdsize, 0, $hdsize+1, 1, 1, 1);
ebf1e983 996}
c07739f4 997
e2b003a6 998my sub get_hdsize_spin_button {
c07739f4
SI
999 my $hdsize = shift;
1000
1001 my $hdsize_entry_buffer = Gtk3::EntryBuffer->new(undef, 1);
ebf1e983 1002 my $hdsize_size_adj = create_hdsize_adjustment($hdsize);
c07739f4
SI
1003
1004 my $spinbutton_hdsize = Gtk3::SpinButton->new($hdsize_size_adj, 1, 1);
1005 $spinbutton_hdsize->set_buffer($hdsize_entry_buffer);
1006 $spinbutton_hdsize->set_adjustment($hdsize_size_adj);
0fcfff4f 1007 $spinbutton_hdsize->set_tooltip_text("only use specified size of the harddisk (rest left unpartitioned)");
c07739f4
SI
1008 return $spinbutton_hdsize;
1009};
1010
c7779156 1011my $create_raid_disk_grid = sub {
679c813c 1012 my ($hdsize_buttons) = @_;
c2ca8ba8 1013
40fbf8e6
TL
1014 my $cached_disks = get_cached_disks();
1015 my $disk_count = scalar(@$cached_disks);
c7779156 1016 my $disk_labeled_widgets = [];
40fbf8e6 1017 for (my $i = 0; $i < $disk_count; $i++) {
c7779156
FG
1018 my $disk_selector = Gtk3::ComboBoxText->new();
1019 $disk_selector->append_text("-- do not use --");
1020 $disk_selector->set_active(0);
1021 $disk_selector->set_visible(1);
c2ca8ba8 1022
40fbf8e6 1023 for my $hd (@$cached_disks) {
17fd908e 1024 my ($disk, $devname, $size, $model, $logical_bsize) = @$hd;
40fbf8e6 1025 $disk_selector->append_text(get_device_desc($devname, $size, $model));
c7779156
FG
1026 }
1027
8d1ca71a
TL
1028 $disk_selector->{pve_disk_id} = $i;
1029 $disk_selector->signal_connect(changed => sub {
1030 my $w = shift;
1031 my $diskid = $w->{pve_disk_id};
1032 my $a = $w->get_active - 1;
0632d479 1033 $gtk_state->{disk_selection}->{$diskid} = ($a >= 0) ? $cached_disks->[$a] : undef;
8d1ca71a 1034 for my $btn (@$hdsize_buttons) {
ebf1e983 1035 update_hdsize_adjustment($btn->get_adjustment());
8d1ca71a
TL
1036 }
1037 });
1038
bd3a2e26 1039 if ($hdoption_first_setup) {
40fbf8e6 1040 $disk_selector->set_active ($i+1) if $cached_disks->[$i];
c7779156
FG
1041 } else {
1042 my $hdind = 0;
0632d479 1043 if (my $cur_hd = $gtk_state->{disk_selection}->{$i}) {
40fbf8e6 1044 foreach my $hd (@$cached_disks) {
c7779156
FG
1045 if (@$hd[1] eq @$cur_hd[1]) {
1046 $disk_selector->set_active($hdind+1);
1047 last;
1048 }
1049 $hdind++;
1050 }
1051 }
1052 }
1053
bf0c8b17 1054 push @$disk_labeled_widgets, ["Harddisk $i", $disk_selector];
c7779156
FG
1055 }
1056
3235f39b 1057 my $clear_all_button = Gtk3::Button->new('_Deselect All');
40fbf8e6 1058 if ($disk_count > 3) {
3235f39b
TL
1059 $clear_all_button->signal_connect('clicked', sub {
1060 my $is_widget = 0;
1061 for my $disk_selector (@$disk_labeled_widgets) {
bf0c8b17 1062 $disk_selector->[1]->set_active(0);
3235f39b
TL
1063 }
1064 });
1065 $clear_all_button->set_visible(1);
1066 }
1067
c7779156
FG
1068 my $scrolled_window = Gtk3::ScrolledWindow->new();
1069 $scrolled_window->set_hexpand(1);
40fbf8e6 1070 $scrolled_window->set_propagate_natural_height(1) if $disk_count > 4;
3235f39b
TL
1071
1072 my $diskgrid = $create_label_widget_grid->($disk_labeled_widgets);
1073
1074 $scrolled_window->add($diskgrid);
c7779156 1075 $scrolled_window->set_policy('never', 'automatic');
3235f39b 1076 $scrolled_window->set_visible(1);
0bc39c50 1077 $scrolled_window->set_min_content_height(190);
3235f39b
TL
1078
1079 my $vbox = Gtk3::Box->new('vertical', 0);
1080 $vbox->pack_start($scrolled_window, 1, 1, 10);
1081
1082 my $hbox = Gtk3::Box->new('horizontal', 0);
1083 $hbox->pack_end($clear_all_button, 0, 0, 20);
1084 $hbox->set_visible(1);
1085 $vbox->pack_end($hbox, 0, 0, 0);
c7779156 1086
3235f39b 1087 return $vbox;
c7779156
FG
1088};
1089
1090my $create_raid_advanced_grid = sub {
c07739f4 1091 my ($hdsize_btn) = @_;
c7779156 1092 my $labeled_widgets = [];
2cdba397 1093 my $spinbutton_ashift = Gtk3::SpinButton->new_with_range(9, 13, 1);
6c99667a
FG
1094 $spinbutton_ashift->set_tooltip_text("zpool ashift property (pool sector size, default 2^12)");
1095 $spinbutton_ashift->signal_connect ("value-changed" => sub {
1096 my $w = shift;
6edd095a 1097 Proxmox::Install::Config::set_zfs_opt('ashift', $w->get_value_as_int());
c7779156 1098 });
6edd095a
TL
1099 my $ashift = Proxmox::Install::Config::get_zfs_opt('ashift') // 12;
1100 $spinbutton_ashift->set_value($ashift);
bf0c8b17 1101 push @$labeled_widgets, ['ashift', $spinbutton_ashift ];
c7779156
FG
1102
1103 my $combo_compress = Gtk3::ComboBoxText->new();
1104 $combo_compress->set_tooltip_text("zfs compression algorithm for rpool dataset");
59cea7a7 1105 my $comp_opts = ["on","off","lzjb","lz4", "zle", "gzip", "zstd"];
c7779156
FG
1106 foreach my $opt (@$comp_opts) {
1107 $combo_compress->append($opt, $opt);
1108 }
6edd095a
TL
1109 my $compress = Proxmox::Install::Config::get_zfs_opt('compress') // 'on';
1110 $combo_compress->set_active_id($compress);
c7779156
FG
1111 $combo_compress->signal_connect (changed => sub {
1112 my $w = shift;
6edd095a 1113 Proxmox::Install::Config::set_zfs_opt('compress', $w->get_active_text());
c7779156 1114 });
bf0c8b17 1115 push @$labeled_widgets, ['compress', $combo_compress];
c7779156
FG
1116
1117 my $combo_checksum = Gtk3::ComboBoxText->new();
1118 $combo_checksum->set_tooltip_text("zfs checksum algorithm for rpool dataset");
2716d68f 1119 my $csum_opts = ["on", "fletcher4", "sha256"];
c7779156
FG
1120 foreach my $opt (@$csum_opts) {
1121 $combo_checksum->append($opt, $opt);
1122 }
6edd095a
TL
1123 my $checksum = Proxmox::Install::Config::get_zfs_opt('checksum') // 'on';
1124 $combo_checksum->set_active_id($checksum);
c7779156
FG
1125 $combo_checksum->signal_connect (changed => sub {
1126 my $w = shift;
6edd095a 1127 Proxmox::Install::Config::set_zfs_opt('checksum', $w->get_active_text());
c7779156 1128 });
bf0c8b17 1129 push @$labeled_widgets, ['checksum', $combo_checksum];
c7779156
FG
1130
1131 my $spinbutton_copies = Gtk3::SpinButton->new_with_range(1,3,1);
1132 $spinbutton_copies->set_tooltip_text("zfs copies property for rpool dataset (in addition to RAID redundancy!)");
1133 $spinbutton_copies->signal_connect ("value-changed" => sub {
1134 my $w = shift;
6edd095a 1135 Proxmox::Install::Config::set_zfs_opt('copies', $w->get_value_as_int());
c7779156 1136 });
6edd095a
TL
1137 my $copies = Proxmox::Install::Config::get_zfs_opt('copies') // 1;
1138 $spinbutton_copies->set_value($copies);
bf0c8b17 1139 push @$labeled_widgets, ['copies', $spinbutton_copies];
c7779156 1140
4c25372e
CH
1141 if ($iso_env->{product} eq 'pve') {
1142 my $total_memory = Proxmox::Install::RunEnv::get('total_memory');
1143
1144 my $spinbutton_arc_max = Gtk3::SpinButton->new_with_range(
1145 $Proxmox::Install::RunEnv::ZFS_ARC_MIN_SIZE_MIB, $total_memory, 1);
1146 $spinbutton_arc_max->set_tooltip_text('Maximum ARC size in megabytes');
1147 $spinbutton_arc_max->signal_connect('value-changed' => sub {
1148 my $w = shift;
1149 Proxmox::Install::Config::set_zfs_opt('arc_max', $w->get_value_as_int());
1150 });
1151 my $arc_max = Proxmox::Install::Config::get_zfs_opt('arc_max');
1152 $spinbutton_arc_max->set_value($arc_max);
0fcfff4f 1153 push @$labeled_widgets, ['ARC max size', $spinbutton_arc_max, 'MiB'];
4c25372e
CH
1154 }
1155
0fcfff4f 1156 push @$labeled_widgets, ['hdsize', $hdsize_btn, 'GB'];
2cdba397 1157 return $create_label_widget_grid->($labeled_widgets);;
c7779156
FG
1158};
1159
679c813c
SI
1160my $create_btrfs_raid_advanced_grid = sub {
1161 my ($hdsize_btn) = @_;
1162 my $labeled_widgets = [];
0fcfff4f 1163 push @$labeled_widgets, ['hdsize', $hdsize_btn, 'GB'];
679c813c
SI
1164 return $create_label_widget_grid->($labeled_widgets);;
1165};
1166
aed81ff0 1167sub create_hdoption_view {
aed81ff0
DM
1168 my $dialog = Gtk3::Dialog->new();
1169
1170 $dialog->set_title("Harddisk options");
1171
1172 $dialog->add_button("_OK", 1);
1173
1174 my $contarea = $dialog->get_content_area();
1175
1176 my $hbox2 = Gtk3::Box->new('horizontal', 0);
6d8b8564 1177 $contarea->pack_start($hbox2, 1, 1, 5);
aed81ff0
DM
1178
1179 my $grid = Gtk3::Grid->new();
1180 $grid->set_column_spacing(10);
1181 $grid->set_row_spacing(10);
1464c7c9 1182
6d8b8564 1183 $hbox2->pack_start($grid, 1, 0, 5);
c6ed3b24
DM
1184
1185 my $row = 0;
1186
aed81ff0 1187 # Filesystem type
71590b6a 1188 my $label0 = Gtk3::Label->new("Filesystem");
9f91507b 1189 $label0->set_xalign(1.0);
c6ed3b24 1190 $grid->attach($label0, 0, $row, 1, 1);
1464c7c9 1191
bcbfab6b 1192 my $fstypecb = Gtk3::ComboBoxText->new();
2cdba397
TL
1193 my $fstype = [
1194 'ext4',
1195 'xfs',
1196 'zfs (RAID0)',
1197 'zfs (RAID1)',
1198 'zfs (RAID10)',
1199 'zfs (RAIDZ-1)',
1200 'zfs (RAIDZ-2)',
1201 'zfs (RAIDZ-3)',
1202 ];
6f52fc3d 1203 push @$fstype, 'btrfs (RAID0)', 'btrfs (RAID1)', 'btrfs (RAID10)'
84f90cbb 1204 if $iso_env->{cfg}->{enable_btrfs};
aed81ff0 1205
cd1a45ad 1206 my $filesys = Proxmox::Install::Config::get_filesys();
c6ed3b24
DM
1207 my $tcount = 0;
1208 foreach my $tmp (@$fstype) {
1209 $fstypecb->append_text($tmp);
cd1a45ad 1210 $fstypecb->set_active ($tcount) if $filesys eq $tmp;
c6ed3b24
DM
1211 $tcount++;
1212 }
1213
1214 $grid->attach($fstypecb, 1, $row, 1, 1);
1215
1216 $hbox2->show_all();
1217
1218 $row++;
1219
bbf51225 1220 my $sep = Gtk3::Separator->new('horizontal');
c7779156
FG
1221 $sep->set_visible(1);
1222 $grid->attach($sep, 0, $row, 2, 1);
1223 $row++;
aed81ff0 1224
af35966c 1225 my $hw_raid_note = Gtk3::Label->new(""); # text will be set below, before making it visible
f0a0d90b
TL
1226 $hw_raid_note->set_line_wrap(1);
1227 $hw_raid_note->set_max_width_chars(30);
f0a0d90b
TL
1228 $hw_raid_note->set_visible(0);
1229 $grid->attach($hw_raid_note, 0, $row++, 2, 1);
1230
c7779156 1231 my $hdsize_labeled_widgets = [];
aed81ff0 1232
5bcefda0
TL
1233 my $target_hd = Proxmox::Install::Config::get_target_hd();
1234 my $hdsize = 0; # size compute
aed81ff0 1235 if ( -b $target_hd) {
c2d5b241 1236 $hdsize = int(Proxmox::Sys::Block::hd_size($target_hd) / (1024 * 1024.0)); # size in GB
c6ed3b24 1237 } elsif ($target_hd) {
c2ca8ba8 1238 $hdsize = int((-s $target_hd) / (1024 * 1024 * 1024.0));
aed81ff0
DM
1239 }
1240
e2b003a6 1241 my $spinbutton_hdsize_nonraid = get_hdsize_spin_button($hdsize);
0fcfff4f 1242 push @$hdsize_labeled_widgets, ['hdsize', $spinbutton_hdsize_nonraid, 'GB'];
c07739f4 1243 my $spinbutton_hdsize = $spinbutton_hdsize_nonraid;
aed81ff0
DM
1244
1245 my $entry_swapsize = Gtk3::Entry->new();
0fcfff4f 1246 $entry_swapsize->set_tooltip_text("maximum SWAP size");
aed81ff0 1247 $entry_swapsize->signal_connect (key_press_event => \&check_float);
ef41b049
TL
1248 my $swapsize = Proxmox::Install::Config::get_swapsize();
1249 $entry_swapsize->set_text($swapsize) if defined($swapsize);
0fcfff4f 1250 push @$hdsize_labeled_widgets, ['swapsize', $entry_swapsize, 'GB'];
aed81ff0
DM
1251
1252 my $entry_maxroot = Gtk3::Entry->new();
84f90cbb 1253 if ($iso_env->{product} eq 'pve') {
0fcfff4f 1254 $entry_maxroot->set_tooltip_text("maximum size for LVM root volume");
0adc7ca0 1255 $entry_maxroot->signal_connect (key_press_event => \&check_float);
b4ab3f19
TL
1256 if (my $maxroot = Proxmox::Install::Config::get_maxroot()) {
1257 $entry_maxroot->set_text($maxroot);
1258 }
0fcfff4f 1259 push @$hdsize_labeled_widgets, ['maxroot', $entry_maxroot, 'GB'];
0adc7ca0 1260 }
aed81ff0
DM
1261
1262 my $entry_minfree = Gtk3::Entry->new();
0fcfff4f 1263 $entry_minfree->set_tooltip_text("minimum free LVM space (required for LVM snapshots)");
aed81ff0 1264 $entry_minfree->signal_connect (key_press_event => \&check_float);
35e7bf16
TL
1265 if (defined(my $minfree = Proxmox::Install::Config::get_minfree())) {
1266 $entry_minfree->set_text($minfree);
1267 }
0fcfff4f 1268 push @$hdsize_labeled_widgets, ['minfree', $entry_minfree, 'GB'];
aed81ff0 1269
b6e875ca 1270 my $entry_maxvz;
84f90cbb 1271 if ($iso_env->{product} eq 'pve') {
b6e875ca 1272 $entry_maxvz = Gtk3::Entry->new();
0fcfff4f 1273 $entry_maxvz->set_tooltip_text("maximum size for LVM data volume");
b6e875ca 1274 $entry_maxvz->signal_connect (key_press_event => \&check_float);
140f2e85
TL
1275 if (defined(my $maxvz = Proxmox::Install::Config::get_maxvz())) {
1276 $entry_maxvz->set_text($maxvz);
1277 }
0fcfff4f 1278 push @$hdsize_labeled_widgets, ['maxvz', $entry_maxvz, 'GB'];
b6e875ca 1279 }
c7779156 1280
e2b003a6
TL
1281 my $spinbutton_hdsize_zfs = get_hdsize_spin_button($hdsize);
1282 my $spinbutton_hdsize_btrfs = get_hdsize_spin_button($hdsize);
679c813c 1283 my $hdsize_buttons = [ $spinbutton_hdsize_zfs, $spinbutton_hdsize_btrfs ];
c7779156
FG
1284 my $options_stack = Gtk3::Stack->new();
1285 $options_stack->set_visible(1);
1286 $options_stack->set_hexpand(1);
1287 $options_stack->set_vexpand(1);
679c813c 1288 $options_stack->add_titled(&$create_raid_disk_grid($hdsize_buttons), "raiddisk", "Disk Setup");
c7779156 1289 $options_stack->add_titled(&$create_label_widget_grid($hdsize_labeled_widgets), "hdsize", "Size Options");
c07739f4 1290 $options_stack->add_titled(&$create_raid_advanced_grid($spinbutton_hdsize_zfs), "raidzfsadvanced", "Advanced Options");
679c813c 1291 $options_stack->add_titled(&$create_btrfs_raid_advanced_grid($spinbutton_hdsize_btrfs), "raidbtrfsadvanced", "Advanced Options");
c7779156
FG
1292 $options_stack->set_visible_child_name("raiddisk");
1293 my $options_stack_switcher = Gtk3::StackSwitcher->new();
1294 $options_stack_switcher->set_halign('center');
1295 $options_stack_switcher->set_stack($options_stack);
1296 $grid->attach($options_stack_switcher, 0, $row, 2, 1);
1297 $row++;
1298 $grid->attach($options_stack, 0, $row, 2, 1);
c6ed3b24 1299 $row++;
aed81ff0 1300
bd3a2e26 1301 $hdoption_first_setup = 0;
c7779156
FG
1302
1303 my $switch_view = sub {
cd1a45ad
TL
1304 my $filesys = Proxmox::Install::Config::get_filesys();
1305 my $raid = $filesys =~ m/zfs|btrfs/;
1306 my $is_zfs = $filesys =~ m/zfs/;
c6ed3b24 1307
c7779156
FG
1308 $target_hd_combo->set_visible(!$raid);
1309 $options_stack->get_child_by_name("hdsize")->set_visible(!$raid);
1310 $options_stack->get_child_by_name("raiddisk")->set_visible($raid);
af35966c
TL
1311
1312 if ($raid) {
1313 my $msg = "<b>Note</b>: " . ($is_zfs
1314 ? "ZFS is not compatible with hardware RAID controllers, for details see the documentation."
84f90cbb 1315 : "BTRFS integration in $iso_env->{cfg}->{fullname} is a technology preview!"
af35966c
TL
1316 );
1317 $hw_raid_note->set_markup($msg);
1318 }
f0a0d90b 1319 $hw_raid_note->set_visible($raid);
679c813c 1320 $options_stack_switcher->set_visible($raid);
af35966c 1321 $options_stack->get_child_by_name("raidzfsadvanced")->set_visible($is_zfs);
679c813c 1322 $options_stack->get_child_by_name("raidbtrfsadvanced")->set_visible(!$is_zfs);
c7779156 1323 if ($raid) {
cd1a45ad 1324 $target_hd_label->set_text("Target: $filesys ");
c7779156 1325 $options_stack->set_visible_child_name("raiddisk");
c6ed3b24 1326 } else {
d445c4c5 1327 $target_hd_label->set_text("Target Harddisk");
c6ed3b24 1328 }
c07739f4
SI
1329
1330 if ($raid) {
679c813c 1331 $spinbutton_hdsize = $is_zfs ? $spinbutton_hdsize_zfs : $spinbutton_hdsize_btrfs;
c07739f4
SI
1332 } else {
1333 $spinbutton_hdsize = $spinbutton_hdsize_nonraid;
1334 }
1335
c7779156
FG
1336 my (undef, $pref_width) = $dialog->get_preferred_width();
1337 my (undef, $pref_height) = $dialog->get_preferred_height();
650a9aab 1338 $pref_height = 750 if $pref_height > 750;
c7779156 1339 $dialog->resize($pref_width, $pref_height);
f7b853d1
DM
1340 };
1341
c7779156 1342 &$switch_view();
f7b853d1
DM
1343
1344 $fstypecb->signal_connect (changed => sub {
cd1a45ad
TL
1345 my $new_filesys = $fstypecb->get_active_text();
1346 Proxmox::Install::Config::set_filesys($new_filesys);
c7779156 1347 &$switch_view();
f7b853d1
DM
1348 });
1349
bbf51225 1350 my $sep2 = Gtk3::Separator->new('horizontal');
95844cc6
TL
1351 $sep2->set_visible(1);
1352 $contarea->pack_end($sep2, 1, 1, 10);
1353
c6ed3b24 1354 $dialog->show();
aed81ff0
DM
1355
1356 $dialog->run();
1357
1358 my $get_float = sub {
1359 my ($entry) = @_;
1360
1361 my $text = $entry->get_text();
1362 return undef if !defined($text);
1363
1364 $text =~ s/^\s+//;
1365 $text =~ s/\s+$//;
1366
1367 return undef if $text !~ m/^\d+(\.\d+)?$/;
1368
1369 return $text;
1370 };
1371
1372 my $tmp;
1373
1374 if (($tmp = &$get_float($spinbutton_hdsize)) && ($tmp != $hdsize)) {
a8a14c4d 1375 Proxmox::Install::Config::set_hdsize($tmp);
aed81ff0 1376 } else {
a8a14c4d 1377 Proxmox::Install::Config::set_hdsize(undef);
aed81ff0
DM
1378 }
1379
1380 if (defined($tmp = &$get_float($entry_swapsize))) {
ef41b049 1381 Proxmox::Install::Config::set_swapsize($tmp);
aed81ff0 1382 } else {
ef41b049 1383 Proxmox::Install::Config::set_swapsize(undef);
aed81ff0
DM
1384 }
1385
1386 if (defined($tmp = &$get_float($entry_maxroot))) {
b4ab3f19 1387 Proxmox::Install::Config::set_maxroot($tmp);
aed81ff0 1388 } else {
b4ab3f19 1389 Proxmox::Install::Config::set_maxroot(undef);
aed81ff0
DM
1390 }
1391
1392 if (defined($tmp = &$get_float($entry_minfree))) {
35e7bf16 1393 Proxmox::Install::Config::set_minfree($tmp);
aed81ff0 1394 } else {
35e7bf16 1395 Proxmox::Install::Config::set_minfree(undef);
aed81ff0
DM
1396 }
1397
b6e875ca 1398 if ($entry_maxvz && defined($tmp = &$get_float($entry_maxvz))) {
140f2e85 1399 Proxmox::Install::Config::set_maxvz($tmp);
aed81ff0 1400 } else {
140f2e85 1401 Proxmox::Install::Config::set_maxvz(undef);
aed81ff0
DM
1402 }
1403
1404 $dialog->destroy();
1405}
1406
0632d479
TL
1407sub apply_raid_disk_selection {
1408 Proxmox::Install::Config::set_key('disk_selection', {}); # reset
c9482d0e
TL
1409 for my $order (sort keys $gtk_state->{disk_selection}->%*) {
1410 my $disk = $gtk_state->{disk_selection}->{$order} // next;
1411 Proxmox::Install::Config::set_disk_selection($order, $disk->[0]);
0632d479
TL
1412 }
1413}
1414
218a4b6b 1415my $last_hd_selected = 0;
89a12446
DM
1416sub create_hdsel_view {
1417
2266526b 1418 $gtk_state->{prev_btn}->set_sensitive(1); # enable previous button at this point
201a5120 1419
71590b6a 1420 cleanup_view();
89a12446 1421
d6efed19 1422 my $vbox = Gtk3::Box->new('vertical', 0);
2266526b 1423 $gtk_state->{inbox}->pack_start($vbox, 1, 0, 0);
d6efed19 1424 my $hbox = Gtk3::Box->new('horizontal', 0);
71590b6a 1425 $vbox->pack_start($hbox, 0, 0, 10);
968fa90b 1426
40fbf8e6
TL
1427 my $cached_disks = get_cached_disks();
1428 my ($disk, $devname, $size, $model, $logical_bsize) = $cached_disks->[0]->@*;
5bcefda0
TL
1429 if (!defined(Proxmox::Install::Config::get_target_hd())) {
1430 Proxmox::Install::Config::set_target_hd($devname);
1431 }
89a12446 1432
d445c4c5 1433 $target_hd_label = Gtk3::Label->new("Target Harddisk");
71590b6a 1434 $hbox->pack_start($target_hd_label, 0, 0, 0);
89a12446 1435
bcbfab6b 1436 $target_hd_combo = Gtk3::ComboBoxText->new();
89a12446 1437
40fbf8e6 1438 foreach my $hd ($cached_disks->@*) {
17fd908e 1439 ($disk, $devname, $size, $model, $logical_bsize) = @$hd;
c2ca8ba8 1440 $target_hd_combo->append_text(get_device_desc($devname, $size, $model));
1aa5bd02 1441 }
89a12446 1442
cd1a45ad 1443 my $raid = Proxmox::Install::Config::get_filesys() =~ m/zfs|btrfs/;
90af1603 1444 if ($raid) {
cd1a45ad
TL
1445 my $filesys = Proxmox::Install::Config::get_filesys();
1446 $target_hd_label->set_text("Target: $filesys ");
90af1603
OB
1447 $target_hd_combo->set_visible(0);
1448 $target_hd_combo->set_no_show_all(1);
1449 }
218a4b6b 1450 $target_hd_combo->set_active($last_hd_selected);
71590b6a 1451 $target_hd_combo->signal_connect(changed => sub {
1aa5bd02 1452 $a = shift->get_active;
40fbf8e6 1453 my ($disk, $devname) = @{@$cached_disks[$a]};
3b959bef 1454 $last_hd_selected = $a;
5bcefda0 1455 Proxmox::Install::Config::set_target_hd($devname);
1aa5bd02 1456 });
1464c7c9 1457
71590b6a 1458 $hbox->pack_start($target_hd_combo, 0, 0, 10);
aed81ff0 1459
71590b6a 1460 my $options = Gtk3::Button->new('_Options');
aed81ff0
DM
1461 $options->signal_connect (clicked => \&create_hdoption_view);
1462 $hbox->pack_start ($options, 0, 0, 0);
1463
89a12446 1464
2266526b 1465 $gtk_state->{inbox}->show_all;
89a12446 1466
efc7a8be 1467 Proxmox::UI::display_html('page1.htm');
c6ed3b24 1468
71590b6a 1469 set_next(undef, sub {
cd1a45ad
TL
1470 my $filesys = Proxmox::Install::Config::get_filesys();
1471 if ($filesys =~ m/zfs/) {
0632d479 1472 apply_raid_disk_selection();
f9edca42 1473 my ($devlist) = eval { Proxmox::Install::get_zfs_raid_setup() };
c6ed3b24 1474 if (my $err = $@) {
72bea995 1475 Proxmox::UI::message("Warning: $err\nPlease fix ZFS setup first.");
303dfb2c 1476 return;
c6ed3b24 1477 }
5bcefda0 1478 $target_hds = [ map { $_->[1] } @$devlist ];
cd1a45ad 1479 } elsif ($filesys =~ m/btrfs/) {
0632d479 1480 apply_raid_disk_selection();
f9edca42 1481 my ($devlist) = eval { Proxmox::Install::get_btrfs_raid_setup() };
121ebc59 1482 if (my $err = $@) {
72bea995 1483 Proxmox::UI::message("Warning: $err\nPlease fix BTRFS setup first.");
303dfb2c 1484 return;
121ebc59 1485 }
5bcefda0 1486 $target_hds = [ map { $_->[1] } @$devlist ];
c6ed3b24 1487 } else {
5bcefda0 1488 my $target_hd = Proxmox::Install::Config::get_target_hd();
5cfca6d7 1489 eval {
40fbf8e6 1490 my $target_block_size = Proxmox::Sys::Block::logical_blocksize($target_hd);
f9edca42 1491 Proxmox::Install::legacy_bios_4k_check($target_block_size);
5cfca6d7 1492 };
5ea943cf 1493 if (my $err = $@) {
72bea995 1494 Proxmox::UI::message("Warning: $err\n");
5ea943cf
SI
1495 return;
1496 }
5bcefda0 1497 $target_hds = [ $target_hd ];
c6ed3b24 1498 }
303dfb2c
TL
1499
1500 $step_number++;
1501 create_country_view();
c6ed3b24 1502 });
89a12446
DM
1503}
1504
1505sub create_extract_view {
71590b6a 1506 cleanup_view();
89a12446 1507
efc7a8be 1508 Proxmox::Install::display_info();
550958aa 1509
2266526b
TL
1510 $gtk_state->{next_btn}->set_sensitive(0);
1511 $gtk_state->{prev_btn}->set_sensitive(0);
1512 $gtk_state->{prev_btn}->hide();
89a12446 1513
d6efed19 1514 my $vbox = Gtk3::Box->new('vertical', 0);
2266526b 1515 $gtk_state->{inbox}->pack_start ($vbox, 1, 0, 0);
d6efed19 1516 my $hbox = Gtk3::Box->new('horizontal', 0);
53986d77 1517 $vbox->pack_start ($hbox, 0, 0, 10);
89a12446 1518
d6efed19 1519 my $vbox2 = Gtk3::Box->new('vertical', 0);
89a12446
DM
1520 $hbox->pack_start ($vbox2, 0, 0, 0);
1521
2266526b 1522 $vbox2->pack_start($gtk_state->{progress_status}, 1, 1, 0);
968fa90b 1523
2266526b
TL
1524 $gtk_state->{progress_bar}->set_show_text(1);
1525 $gtk_state->{progress_bar}->set_size_request (600, -1);
89a12446 1526
2266526b 1527 $vbox2->pack_start($gtk_state->{progress_bar}, 0, 0, 0);
89a12446 1528
2266526b 1529 $gtk_state->{inbox}->show_all();
89a12446 1530
a677c773 1531 eval { Proxmox::Install::extract_data() };
89a12446
DM
1532 my $err = $@;
1533
2266526b 1534 $gtk_state->{next_btn}->set_sensitive(1);
89a12446 1535
fd09e893 1536 set_next("_Reboot", sub { app_quit(0); } );
89a12446 1537
0a3ac982 1538 my $autoreboot = Proxmox::Install::Config::get_autoreboot();
afa3b40f 1539 my $autoreboot_seconds = 5;
0903eb5c 1540 my $success_transform = sub {
84f90cbb 1541 my ($raw_html, $iso_env) = @_;
0903eb5c 1542
7f3941d1
TL
1543 my $ip_addr = Proxmox::Install::Config::get_ip_addr();
1544 my $ip_version = Proxmox::Install::Config::get_ip_version();
1545
1546 my $addr = $ip_version == 6 ? "[${ip_addr}]" : "$ip_addr";
0903eb5c 1547 $raw_html =~ s/__IPADDR__/$addr/g;
84f90cbb 1548 $raw_html =~ s/__PORT__/$iso_env->{cfg}->{port}/g;
0903eb5c 1549
0a3ac982 1550 my $autoreboot_msg = $autoreboot ? "Automatic reboot scheduled in $autoreboot_seconds seconds." : '';
0903eb5c
TL
1551 $raw_html =~ s/__AUTOREBOOT_MSG__/$autoreboot_msg/;
1552
1553 return $raw_html;
1554 };
1555
85249554
MS
1556 # It does not make sense to Abort the install at this point, whether it
1557 # succeded or failed makes no difference.
1558 $gtk_state->{abort_btn}->set_sensitive(0);
1559
296cf41f 1560 if ($err) {
693c5d4b
TL
1561 Proxmox::UI::display_html("fail.htm");
1562 # suppress "empty" error as we got some case where the user choose to abort on a prompt,
1563 # there it doesn't make sense to show them an error again, they "caused" it after all.
1564 Proxmox::UI::error($err) if $err ne "\n";
296cf41f 1565 } else {
201a5120 1566 cleanup_view();
efc7a8be 1567 Proxmox::UI::display_html("success.htm", $success_transform);
dfc02f3c 1568
0a3ac982 1569 if ($autoreboot) {
dfc02f3c
TL
1570 Glib::Timeout->add(1000, sub {
1571 if ($autoreboot_seconds > 0) {
1572 $autoreboot_seconds--;
efc7a8be 1573 Proxmox::UI::display_html("success.htm", $success_transform);
78a02c11 1574 return 1; # re-schedule, undef isn't enough anymore since Bookworm
dfc02f3c 1575 } else {
fd09e893 1576 app_quit(0);
dfc02f3c
TL
1577 }
1578 });
1579 }
296cf41f 1580 }
89a12446
DM
1581}
1582
89a12446
DM
1583sub create_intro_view {
1584
2266526b 1585 $gtk_state->{prev_btn}->set_sensitive(0);
201a5120
OB
1586
1587 cleanup_view();
89a12446 1588
f9edca42 1589 my $run_env = Proxmox::Install::RunEnv::get();
b91f9cad 1590 if (int($run_env->{total_memory}) < 1024) {
72bea995 1591 Proxmox::UI::error("Less than 1 GiB of usable memory detected, installation will probably fail.\n\n".
84f90cbb 1592 "See 'System Requirements' in the $iso_env->{cfg}->{fullname} documentation.");
2b85ee1b
OB
1593 }
1594
0efa2eed
CH
1595 if ($iso_env->{product} eq 'pve' && !$run_env->{hvm_supported}) {
1596 Proxmox::UI::error(
1597 "No support for hardware-accelerated KVM virtualization detected.\n\n"
1598 ."Check BIOS settings for Intel VT / AMD-V / SVM."
1599 );
bdeca872 1600 }
7fff0d85 1601
efc7a8be 1602 Proxmox::UI::display_html('license.htm', sub {
84f90cbb 1603 my ($raw_html, $iso_env) = @_;
0903eb5c 1604
a677c773 1605 my $proxmox_cddir = $iso_env->{locations}->{iso};
0903eb5c
TL
1606 my $license = eval { decode('utf8', file_read_all("${proxmox_cddir}/EULA")) };
1607 if (my $err = $@) {
1608 die $err if !is_test_mode();
1609 $license = "TESTMODE: Ignore non existent EULA...\n";
1610 }
1611 my $title = "END USER LICENSE AGREEMENT (EULA)";
1612 $raw_html =~ s/__LICENSE__/$license/;
1613 $raw_html =~ s/__LICENSE_TITLE__/$title/;
1614
1615 return $raw_html;
1616 });
89a12446 1617
201a5120 1618 $step_number++;
71590b6a 1619 set_next("I a_gree", \&create_hdsel_view);
89a12446
DM
1620}
1621
a467ec47 1622log_info("initializing GTK and creating main window...");
0387544f
TL
1623Gtk3::init();
1624
a467ec47 1625create_main_window();
89a12446 1626
ff2ce71c
FG
1627my $initial_error = 0;
1628
40fbf8e6
TL
1629{
1630 my $cached_disks = get_cached_disks();
1631 if (!defined($cached_disks) || (scalar (@$cached_disks) <= 0)) {
5b43e82d 1632 print STDERR "no harddisks found\n";
40fbf8e6 1633 $initial_error = 1;
efc7a8be 1634 Proxmox::UI::display_html("nohds.htm");
fd09e893 1635 set_next("Reboot", sub { app_quit(0); } );
40fbf8e6
TL
1636 } else {
1637 foreach my $hd (@$cached_disks) {
1638 my ($disk, $devname) = @$hd;
1639 next if $devname =~ m|^/dev/md\d+$|;
5b43e82d 1640 print STDERR "found Disk$disk N:$devname\n";
40fbf8e6 1641 }
89a12446 1642 }
89a12446
DM
1643}
1644
f9edca42 1645my $run_env = Proxmox::Install::RunEnv::get();
fe06d7e9 1646if (!$initial_error && (scalar keys $run_env->{ipconf}->{ifaces}->%* == 0)) {
5b43e82d 1647 print STDERR "no network interfaces found\n";
72836708 1648 $initial_error = 1;
efc7a8be 1649 Proxmox::UI::display_html("nonics.htm");
fd09e893 1650 set_next("Reboot", sub { app_quit(0); } );
72836708
FG
1651}
1652
ff2ce71c
FG
1653create_intro_view () if !$initial_error;
1654
7becc472 1655Gtk3->main;
89a12446 1656
fd09e893 1657app_quit(0);