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