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