]> git.proxmox.com Git - pve-container.git/blame - src/PVE/LXC/Setup/Base.pm
setup getty: drop now obsolete setup_systemd_console
[pve-container.git] / src / PVE / LXC / Setup / Base.pm
CommitLineData
7af97ad5 1package PVE::LXC::Setup::Base;
1c7f4f65
DM
2
3use strict;
4use warnings;
5
168d6b07
DM
6use File::stat;
7use Digest::SHA;
8use IO::File;
9use Encode;
f08b2779 10use Fcntl;
2063d380 11use File::Path;
f08b2779 12use File::Spec;
bd1dc8d1 13use File::Basename;
168d6b07 14
b9cd9975 15use PVE::INotify;
55fa4e09 16use PVE::Tools;
4401b7d4 17use PVE::Network;
55fa4e09 18
633a7bd8 19sub new {
153747ff 20 my ($class, $conf, $rootdir, $os_release) = @_;
633a7bd8 21
153747ff 22 return bless { conf => $conf, rootdir => $rootdir, os_release => $os_release }, $class;
633a7bd8 23}
b9cd9975 24
c0eae401 25sub lookup_dns_conf {
23d928a1 26 my ($self, $conf) = @_;
b9cd9975 27
27916659
DM
28 my $nameserver = $conf->{nameserver};
29 my $searchdomains = $conf->{searchdomain};
b9cd9975 30
ffc468ee
DC
31 if ($conf->{'testmode'}) {
32 return ('proxmox.com', '8.8.8.8 8.8.8.9');
33 }
b9cd9975 34
ffc468ee 35 my $host_resolv_conf = $self->{host_resolv_conf};
b9cd9975 36
ffc468ee
DC
37 if (!defined($nameserver)) {
38 my @list = ();
39 foreach my $k ("dns1", "dns2", "dns3") {
40 if (my $ns = $host_resolv_conf->{$k}) {
41 push @list, $ns;
b9cd9975 42 }
b9cd9975 43 }
ffc468ee
DC
44 $nameserver = join(' ', @list);
45 }
46
47 if (!defined($searchdomains)) {
48 $searchdomains = $host_resolv_conf->{search};
b9cd9975
DM
49 }
50
51 return ($searchdomains, $nameserver);
c0eae401 52}
b9cd9975 53
c0eae401 54sub update_etc_hosts {
9096a91d 55 my ($self, $hostip, $oldname, $newname, $searchdomains) = @_;
1c7f4f65 56
1b3cffda
WB
57 my $hosts_fn = '/etc/hosts';
58 return if $self->ct_is_file_ignored($hosts_fn);
59
ce289e3c
WB
60 my $namepart = ($newname =~ s/\..*$//r);
61
005f91ad 62 my $all_names = '';
ce289e3c 63 if ($newname =~ /\./) {
005f91ad 64 $all_names .= "$newname $namepart";
ce289e3c
WB
65 } else {
66 foreach my $domain (PVE::Tools::split_list($searchdomains)) {
005f91ad
WB
67 $all_names .= ' ' if $all_names;
68 $all_names .= "$newname.$domain";
ce289e3c 69 }
005f91ad
WB
70 $all_names .= ' ' if $all_names;
71 $all_names .= $newname;
e4929e97 72 }
1c7f4f65 73
9096a91d
WB
74 # Prepare section:
75 my $section = '';
c325b32f 76
9096a91d
WB
77 my $lo4 = "127.0.0.1 localhost.localnet localhost\n";
78 my $lo6 = "::1 localhost.localnet localhost\n";
79 if ($self->ct_file_exists($hosts_fn)) {
80 my $data = $self->ct_file_get_contents($hosts_fn);
81 # don't take localhost entries within our hosts sections into account
82 $data = remove_pve_sections($data);
1c7f4f65 83
9096a91d
WB
84 # check for existing localhost entries
85 $section .= $lo4 if $data !~ /^\h*127\.0\.0\.1\h+/m;
86 $section .= $lo6 if $data !~ /^\h*::1\h+/m;
87 } else {
88 $section .= $lo4 . $lo6;
1c7f4f65
DM
89 }
90
9096a91d
WB
91 if (defined($hostip)) {
92 $section .= "$hostip $all_names\n";
63ec4b3b
DC
93 } elsif ($namepart ne 'localhost') {
94 $section .= "127.0.1.1 $all_names\n";
9096a91d
WB
95 } else {
96 $section .= "127.0.1.1 $namepart\n";
1e180f97
DM
97 }
98
9096a91d 99 $self->ct_modify_file($hosts_fn, $section);
c0eae401 100}
1c7f4f65 101
142444d5
DM
102sub template_fixup {
103 my ($self, $conf) = @_;
104
105 # do nothing by default
106}
107
c325b32f 108sub set_dns {
633a7bd8 109 my ($self, $conf) = @_;
c325b32f 110
23d928a1 111 my ($searchdomains, $nameserver) = $self->lookup_dns_conf($conf);
c325b32f 112
c325b32f
DM
113 my $data = '';
114
115 $data .= "search " . join(' ', PVE::Tools::split_list($searchdomains)) . "\n"
116 if $searchdomains;
117
118 foreach my $ns ( PVE::Tools::split_list($nameserver)) {
119 $data .= "nameserver $ns\n";
120 }
121
2edb50e5 122 $self->ct_modify_file("/etc/resolv.conf", $data, replace => 1);
c325b32f
DM
123}
124
1c7f4f65 125sub set_hostname {
633a7bd8 126 my ($self, $conf) = @_;
1c7f4f65 127
27916659 128 my $hostname = $conf->{hostname} || 'localhost';
1c7f4f65 129
ce289e3c 130 my $namepart = ($hostname =~ s/\..*$//r);
1c7f4f65 131
f08b2779 132 my $hostname_fn = "/etc/hostname";
1c7f4f65 133
f08b2779 134 my $oldname = $self->ct_file_read_firstline($hostname_fn) || 'localhost';
1c7f4f65 135
c325b32f
DM
136 my ($ipv4, $ipv6) = PVE::LXC::get_primary_ips($conf);
137 my $hostip = $ipv4 || $ipv6;
b9cd9975 138
23d928a1 139 my ($searchdomains) = $self->lookup_dns_conf($conf);
b9cd9975 140
9096a91d 141 $self->update_etc_hosts($hostip, $oldname, $hostname, $searchdomains);
b9cd9975 142
ce289e3c 143 $self->ct_file_set_contents($hostname_fn, "$namepart\n");
1c7f4f65
DM
144}
145
55fa4e09 146sub setup_network {
633a7bd8 147 my ($self, $conf) = @_;
55fa4e09
DM
148
149 die "please implement this inside subclass"
150}
151
d66768a2 152sub setup_init {
633a7bd8 153 my ($self, $conf) = @_;
1c7f4f65 154
d66768a2
DM
155 die "please implement this inside subclass"
156}
157
5e84bdc8
DM
158# A few distros as well as unprivileged containers cannot deal with the
159# /dev/lxc/ tty subdirectory.
160sub devttydir {
161 my ($self, $conf) = @_;
162 return $conf->{unprivileged} ? '' : 'lxc/';
163}
164
dd7a436b
TL
165sub fixup_old_getty {
166 my ($self) = @_;
167
168 my $sd_dir_rel = $self->ct_is_executable("/lib/systemd/systemd") ?
169 "/lib/systemd/system" : "/usr/lib/systemd/system";
170
171 my $sd_getty_service_rel = "$sd_dir_rel/getty\@.service";
172 return if !$self->ct_file_exists($sd_getty_service_rel);
173
174 my $raw = $self->ct_file_get_contents($sd_getty_service_rel);
175
176 my $sd_container_getty_service_rel = "$sd_dir_rel/container-getty\@.service";
177 # systemd on CenoOS 7.1 is too old (version 205), so there is no
178 # container-getty service
179 if (!$self->ct_file_exists($sd_container_getty_service_rel)) {
180 if ($raw =~ s!^ConditionPathExists=/dev/tty0$!ConditionPathExists=/dev/tty!m) {
181 $self->ct_file_set_contents($sd_getty_service_rel, $raw);
182 }
183 } else {
184 # undo above change (in case someone updated systemd)
185 if ($raw =~ s!^ConditionPathExists=/dev/tty$!ConditionPathExists=/dev/tty0!m) {
186 $self->ct_file_set_contents($sd_getty_service_rel, $raw);
187 }
188 }
189}
190
90b21cdc 191sub setup_container_getty_service {
5e84bdc8
DM
192 my ($self, $conf) = @_;
193
bfe63c1a 194 my $sd_dir = $self->ct_is_executable("/lib/systemd/systemd") ?
8f115f7c 195 "/lib/systemd/system" : "/usr/lib/systemd/system";
bfe63c1a
TL
196
197 # prefer container-getty.service shipped by newer systemd versions
198 # fallback to getty.service and just return if that doesn't exists either..
199 my $template_base = "container-getty\@";
200 my $template_path = "${sd_dir}/${template_base}.service";
201 my $instance_base = $template_base;
202
203 if (!$self->ct_file_exists($template_path)) {
204 $template_base = "getty\@";
205 $template_path = "${template_base}.service";
206 $instance_base = "{$template_base}tty";
207 return if !$self->ct_file_exists($template_path);
208 }
209
210 my $raw = $self->ct_file_get_contents($template_path);
5e84bdc8 211 my $ttyname = $self->devttydir($conf) . 'tty%I';
418ec240 212 if ($raw =~ s@pts/%I|lxc/tty%I@$ttyname@g) {
bfe63c1a 213 $self->ct_file_set_contents($template_path, $raw);
90b21cdc 214 }
73aa033d 215
bfe63c1a 216 my $getty_target_fn = "/etc/systemd/system/getty.target.wants/";
73aa033d 217 my $ttycount = PVE::LXC::Config->get_tty_count($conf);
73aa033d 218
bfe63c1a 219 for (my $i = 1; $i < 7; $i++) {
73aa033d
TL
220 # ensure that not two gettys are using the same tty!
221 $self->ct_unlink("$getty_target_fn/getty\@tty$i.service");
bfe63c1a 222 $self->ct_unlink("$getty_target_fn/container-getty\@$i.service");
73aa033d 223
bfe63c1a 224 # re-enable only those requested
73aa033d 225 if ($i <= $ttycount) {
bfe63c1a
TL
226 my $tty_service = "${instance_base}${i}.service";
227
228 $self->ct_symlink($template_path, "$getty_target_fn/$tty_service");
73aa033d
TL
229 }
230 }
90b21cdc
WB
231}
232
c1d32b55
WB
233sub setup_systemd_networkd {
234 my ($self, $conf) = @_;
235
c1d32b55
WB
236 foreach my $k (keys %$conf) {
237 next if $k !~ m/^net(\d+)$/;
1b4cf758 238 my $d = PVE::LXC::Config->parse_lxc_network($conf->{$k});
c1d32b55
WB
239 next if !$d->{name};
240
f08b2779 241 my $filename = "/etc/systemd/network/$d->{name}.network";
c1d32b55
WB
242
243 my $data = <<"DATA";
244[Match]
245Name = $d->{name}
246
247[Network]
248Description = Interface $d->{name} autoconfigured by PVE
249DATA
4401b7d4
WB
250
251 my $routes = '';
252 my ($has_ipv4, $has_ipv6);
253
c1d32b55
WB
254 # DHCP bitflags:
255 my @DHCPMODES = ('none', 'v4', 'v6', 'both');
256 my ($NONE, $DHCP4, $DHCP6, $BOTH) = (0, 1, 2, 3);
257 my $dhcp = $NONE;
bb7f06ef 258 my $accept_ra = 'false';
c1d32b55
WB
259
260 if (defined(my $ip = $d->{ip})) {
261 if ($ip eq 'dhcp') {
262 $dhcp |= $DHCP4;
263 } elsif ($ip ne 'manual') {
4401b7d4 264 $has_ipv4 = 1;
c1d32b55
WB
265 $data .= "Address = $ip\n";
266 }
267 }
268 if (defined(my $gw = $d->{gw})) {
269 $data .= "Gateway = $gw\n";
4401b7d4
WB
270 if ($has_ipv4 && !PVE::Network::is_ip_in_cidr($gw, $d->{ip}, 4)) {
271 $routes .= "\n[Route]\nDestination = $gw/32\nScope = link\n";
272 }
c1d32b55
WB
273 }
274
275 if (defined(my $ip = $d->{ip6})) {
276 if ($ip eq 'dhcp') {
277 $dhcp |= $DHCP6;
bb7f06ef
WB
278 } elsif ($ip eq 'auto') {
279 $accept_ra = 'true';
c1d32b55 280 } elsif ($ip ne 'manual') {
4401b7d4 281 $has_ipv6 = 1;
c1d32b55
WB
282 $data .= "Address = $ip\n";
283 }
284 }
285 if (defined(my $gw = $d->{gw6})) {
bb7f06ef 286 $accept_ra = 'false';
c1d32b55 287 $data .= "Gateway = $gw\n";
d13fd23a
WB
288 if ($has_ipv6 && !PVE::Network::is_ip_in_cidr($gw, $d->{ip6}, 6) &&
289 !PVE::Network::is_ip_in_cidr($gw, 'fe80::/10', 6)) {
4401b7d4
WB
290 $routes .= "\n[Route]\nDestination = $gw/128\nScope = link\n";
291 }
c1d32b55
WB
292 }
293
294 $data .= "DHCP = $DHCPMODES[$dhcp]\n";
bb7f06ef 295 $data .= "IPv6AcceptRA = $accept_ra\n";
4401b7d4 296 $data .= $routes if $routes;
c1d32b55 297
f08b2779 298 $self->ct_file_set_contents($filename, $data);
c1d32b55 299 }
b7cd927f
WB
300}
301
302sub setup_securetty {
303 my ($self, $conf, @add) = @_;
c1d32b55 304
f08b2779 305 my $filename = "/etc/securetty";
bd3093ef
TL
306 # root login is already allowed on every device if no securetty present
307 return if !$self->ct_file_exists($filename);
308
5e84bdc8
DM
309 if (!scalar(@add)) {
310 @add = qw(console tty1 tty2 tty3 tty4);
311 if (my $dir = $self->devttydir($conf)) {
312 @add = map { "${dir}$_" } @add;
313 }
314 }
315
f08b2779 316 my $data = $self->ct_file_get_contents($filename);
b7cd927f
WB
317 chomp $data; $data .= "\n";
318 foreach my $dev (@add) {
319 if ($data !~ m!^\Q$dev\E\s*$!m) {
320 $data .= "$dev\n";
321 }
322 }
f08b2779 323 $self->ct_file_set_contents($filename, $data);
c1d32b55
WB
324}
325
168d6b07 326my $replacepw = sub {
f08b2779 327 my ($self, $file, $user, $epw, $shadow) = @_;
168d6b07
DM
328
329 my $tmpfile = "$file.$$";
330
331 eval {
f08b2779 332 my $src = $self->ct_open_file_read($file) ||
168d6b07
DM
333 die "unable to open file '$file' - $!";
334
f08b2779 335 my $st = $self->ct_stat($src) ||
168d6b07
DM
336 die "unable to stat file - $!";
337
f08b2779 338 my $dst = $self->ct_open_file_write($tmpfile) ||
168d6b07
DM
339 die "unable to open file '$tmpfile' - $!";
340
341 # copy owner and permissions
342 chmod $st->mode, $dst;
343 chown $st->uid, $st->gid, $dst;
367a7c18
DM
344
345 my $last_change = int(time()/(60*60*24));
346
168d6b07 347 while (defined (my $line = <$src>)) {
367a7c18
DM
348 if ($shadow) {
349 $line =~ s/^${user}:[^:]*:[^:]*:/${user}:${epw}:${last_change}:/;
350 } else {
351 $line =~ s/^${user}:[^:]*:/${user}:${epw}:/;
352 }
168d6b07
DM
353 print $dst $line;
354 }
355
356 $src->close() || die "close '$file' failed - $!\n";
357 $dst->close() || die "close '$tmpfile' failed - $!\n";
358 };
359 if (my $err = $@) {
f08b2779 360 $self->ct_unlink($tmpfile);
168d6b07 361 } else {
f08b2779
WB
362 $self->ct_rename($tmpfile, $file);
363 $self->ct_unlink($tmpfile); # in case rename fails
168d6b07
DM
364 }
365};
366
367sub set_user_password {
633a7bd8 368 my ($self, $conf, $user, $opt_password) = @_;
168d6b07 369
f08b2779 370 my $pwfile = "/etc/passwd";
168d6b07 371
f08b2779 372 return if !$self->ct_file_exists($pwfile);
168d6b07 373
f08b2779 374 my $shadow = "/etc/shadow";
168d6b07
DM
375
376 if (defined($opt_password)) {
a46b2fb3 377 if ($opt_password !~ m/^\$(?:1|2[axy]?|5|6)\$[a-zA-Z0-9.\/]{1,16}\$[a-zA-Z0-9.\/]+$/) {
168d6b07 378 my $time = substr (Digest::SHA::sha1_base64 (time), 0, 8);
f55589da 379 $opt_password = crypt(encode("utf8", $opt_password), "\$6\$$time\$");
168d6b07
DM
380 };
381 } else {
382 $opt_password = '*';
383 }
384
f08b2779
WB
385 if ($self->ct_file_exists($shadow)) {
386 &$replacepw ($self, $shadow, $user, $opt_password, 1);
387 &$replacepw ($self, $pwfile, $user, 'x');
168d6b07 388 } else {
f08b2779 389 &$replacepw ($self, $pwfile, $user, $opt_password);
168d6b07
DM
390 }
391}
392
f36ce482
FG
393my $parse_home_dir = sub {
394 my ($self, $passwdfile, $user) = @_;
395
396 my $fh = $self->ct_open_file_read($passwdfile);
397 while (defined (my $line = <$fh>)) {
398 return $2
399 if $line =~ m/^${user}:([^:]*:){4}([^:]*):/;
400 }
401};
402
403sub set_user_authorized_ssh_keys {
404 my ($self, $conf, $user, $ssh_keys) = @_;
405
406 my $passwd = "/etc/passwd";
407 my $home = $user eq "root" ? "/root/" : "/home/$user/";
408
409 $home = &$parse_home_dir($self, $passwd, $user)
410 if $self->ct_file_exists($passwd);
411
412 die "home directory '$home' of $user does not exist!"
413 if ! ($self->ct_is_directory($home) || $self->ct_is_symlink($home));
414
415 $self->ct_mkdir("$home/.ssh", 0700)
416 if ! $self->ct_is_directory("$home/.ssh");
417
418 $self->ct_modify_file("$home/.ssh/authorized_keys", $ssh_keys, perms => 0700);
419}
420
4727bd09
DM
421my $randomize_crontab = sub {
422 my ($self, $conf) = @_;
423
b5e62cd0
DM
424 my @files;
425 # Note: dir_glob_foreach() untaints filenames!
f08b2779 426 PVE::Tools::dir_glob_foreach("/etc/cron.d", qr/[A-Z\-\_a-z0-9]+/, sub {
b5e62cd0 427 my ($name) = @_;
f08b2779 428 push @files, "/etc/cron.d/$name";
b5e62cd0 429 });
4727bd09 430
f08b2779
WB
431 my $crontab_fn = "/etc/crontab";
432 unshift @files, $crontab_fn if $self->ct_file_exists($crontab_fn);
4727bd09
DM
433
434 foreach my $filename (@files) {
f08b2779 435 my $data = $self->ct_file_get_contents($filename);
4727bd09
DM
436 my $new = '';
437 foreach my $line (split(/\n/, $data)) {
438 # we only randomize minutes for root crontab entries
439 if ($line =~ m/^\d+(\s+\S+\s+\S+\s+\S+\s+\S+\s+root\s+\S.*)$/) {
440 my $rest = $1;
441 my $min = int(rand()*59);
442 $new .= "$min$rest\n";
443 } else {
444 $new .= "$line\n";
445 }
446 }
f08b2779 447 $self->ct_file_set_contents($filename, $new);
4727bd09
DM
448 }
449};
450
d66768a2 451sub pre_start_hook {
633a7bd8 452 my ($self, $conf) = @_;
d66768a2 453
633a7bd8
DM
454 $self->setup_init($conf);
455 $self->setup_network($conf);
456 $self->set_hostname($conf);
457 $self->set_dns($conf);
d66768a2
DM
458
459 # fixme: what else ?
460}
461
462sub post_create_hook {
f36ce482 463 my ($self, $conf, $root_password, $ssh_keys) = @_;
d66768a2 464
142444d5 465 $self->template_fixup($conf);
4727bd09
DM
466
467 &$randomize_crontab($self, $conf);
468
633a7bd8 469 $self->set_user_password($conf, 'root', $root_password);
f36ce482 470 $self->set_user_authorized_ssh_keys($conf, 'root', $ssh_keys) if $ssh_keys;
633a7bd8
DM
471 $self->setup_init($conf);
472 $self->setup_network($conf);
473 $self->set_hostname($conf);
474 $self->set_dns($conf);
168d6b07 475
55fa4e09 476 # fixme: what else ?
1c7f4f65
DM
477}
478
f08b2779
WB
479# File access wrappers for container setup code.
480# For user-namespace support these might need to take uid and gid maps into account.
481
bd1dc8d1
WB
482sub ct_is_file_ignored {
483 my ($self, $file) = @_;
484 my ($name, $path) = fileparse($file);
485 return -f "$path/.pve-ignore.$name";
486}
487
c6a605f9
WB
488sub ct_reset_ownership {
489 my ($self, @files) = @_;
490 my $conf = $self->{conf};
491 return if !$self->{id_map};
bd1dc8d1
WB
492
493 @files = grep { !$self->ct_is_file_ignored($_) } @files;
494 return if !@files;
495
c6a605f9
WB
496 my $uid = $self->{rootuid};
497 my $gid = $self->{rootgid};
498 chown($uid, $gid, @files);
499}
500
2063d380
WB
501sub ct_mkdir {
502 my ($self, $file, $mask) = @_;
f08b2779 503 # mkdir goes by parameter count - an `undef' mode acts like a mode of 0000
c6a605f9
WB
504 if (defined($mask)) {
505 return CORE::mkdir($file, $mask) && $self->ct_reset_ownership($file);
506 } else {
507 return CORE::mkdir($file) && $self->ct_reset_ownership($file);
508 }
2063d380
WB
509}
510
511sub ct_unlink {
f08b2779
WB
512 my ($self, @files) = @_;
513 foreach my $file (@files) {
bd1dc8d1 514 next if $self->ct_is_file_ignored($file);
f08b2779
WB
515 CORE::unlink($file);
516 }
517}
518
519sub ct_rename {
520 my ($self, $old, $new) = @_;
bd1dc8d1 521 return if $self->ct_is_file_ignored($new);
f08b2779 522 CORE::rename($old, $new);
2063d380
WB
523}
524
f08b2779 525sub ct_open_file_read {
2063d380 526 my $self = shift;
f08b2779
WB
527 my $file = shift;
528 return IO::File->new($file, O_RDONLY, @_);
2063d380
WB
529}
530
f08b2779 531sub ct_open_file_write {
2063d380 532 my $self = shift;
f08b2779 533 my $file = shift;
bd1dc8d1 534 $file = '/dev/null' if $self->ct_is_file_ignored($file);
c6a605f9
WB
535 my $fh = IO::File->new($file, O_WRONLY | O_CREAT, @_);
536 $self->ct_reset_ownership($fh);
537 return $fh;
2063d380
WB
538}
539
f08b2779 540sub ct_make_path {
2063d380 541 my $self = shift;
c6a605f9
WB
542 if ($self->{id_map}) {
543 my $opts = pop;
544 if (ref($opts) eq 'HASH') {
545 $opts->{owner} = $self->{rootuid} if !defined($self->{owner});
546 $opts->{group} = $self->{rootgid} if !defined($self->{group});
547 }
548 File::Path::make_path(@_, $opts);
549 } else {
550 File::Path::make_path(@_);
551 }
2063d380
WB
552}
553
554sub ct_symlink {
555 my ($self, $old, $new) = @_;
bd1dc8d1 556 return if $self->ct_is_file_ignored($new);
f08b2779 557 return CORE::symlink($old, $new);
2063d380
WB
558}
559
8f115f7c
WB
560sub ct_readlink {
561 my ($self, $name) = @_;
562 return CORE::readlink($name);
563}
564
2063d380
WB
565sub ct_file_exists {
566 my ($self, $file) = @_;
f08b2779
WB
567 return -f $file;
568}
569
570sub ct_is_directory {
571 my ($self, $file) = @_;
572 return -d $file;
573}
574
575sub ct_is_symlink {
576 my ($self, $file) = @_;
577 return -l $file;
578}
579
e7deac01
WB
580sub ct_is_executable {
581 my ($self, $file) = @_;
582 return -x $file
583}
584
f08b2779
WB
585sub ct_stat {
586 my ($self, $file) = @_;
587 return File::stat::stat($file);
2063d380
WB
588}
589
590sub ct_file_read_firstline {
591 my ($self, $file) = @_;
f08b2779 592 return PVE::Tools::file_read_firstline($file);
2063d380
WB
593}
594
595sub ct_file_get_contents {
596 my ($self, $file) = @_;
f08b2779 597 return PVE::Tools::file_get_contents($file);
2063d380
WB
598}
599
600sub ct_file_set_contents {
39243220 601 my ($self, $file, $data, $perms) = @_;
bd1dc8d1 602 return if $self->ct_is_file_ignored($file);
c6a605f9
WB
603 PVE::Tools::file_set_contents($file, $data, $perms);
604 $self->ct_reset_ownership($file);
2063d380
WB
605}
606
2edb50e5
WB
607# Modify a marked portion of a file.
608# Optionally if the file becomes empty it will be deleted.
609sub ct_modify_file {
610 my ($self, $file, $data, %options) = @_;
bd1dc8d1 611 return if $self->ct_is_file_ignored($file);
2edb50e5
WB
612
613 my $head = "# --- BEGIN PVE ---\n";
614 my $tail = "# --- END PVE ---\n";
be7ee97a 615 my $perms = $options{perms};
a5a4b5aa 616 $data .= "\n" if $data && $data !~ /\n$/;
2edb50e5
WB
617
618 if (!$self->ct_file_exists($file)) {
be7ee97a 619 $self->ct_file_set_contents($file, $head.$data.$tail, $perms) if $data;
2edb50e5
WB
620 return;
621 }
622
623 my $old = $self->ct_file_get_contents($file);
624 my @lines = split(/\n/, $old);
625
626 my ($beg, $end);
627 foreach my $i (0..(@lines-1)) {
628 my $line = $lines[$i];
629 $beg = $i if !defined($beg) &&
630 $line =~ /^#\s*---\s*BEGIN\s*PVE\s*/;
631 $end = $i if !defined($end) && defined($beg) &&
632 $line =~ /^#\s*---\s*END\s*PVE\s*/i;
633 last if defined($beg) && defined($end);
634 }
635
636 if (defined($beg) && defined($end)) {
637 # Found a section
638 if ($data) {
639 chomp $tail;
640 splice @lines, $beg, $end-$beg+1, $head.$data.$tail;
fa7cb12b 641 } else {
2edb50e5
WB
642 if ($beg == 0 && $end == (@lines-1)) {
643 $self->ct_unlink($file) if $options{delete};
644 return;
645 }
646 splice @lines, $beg, $end-$beg+1, $head.$data.$tail;
647 }
648 $self->ct_file_set_contents($file, join("\n", @lines) . "\n");
649 } elsif ($data) {
650 # No section found
651 my $content = join("\n", @lines);
652 chomp $content;
653 if (!$content && !$data && $options{delete}) {
fa7cb12b 654 $self->ct_unlink($file);
2edb50e5
WB
655 return;
656 }
657 $content .= "\n";
658 $data = $head.$data.$tail;
659 if ($options{replace}) {
be7ee97a 660 $self->ct_file_set_contents($file, $data, $perms);
2edb50e5 661 } elsif ($options{prepend}) {
be7ee97a 662 $self->ct_file_set_contents($file, $data . $content, $perms);
2edb50e5 663 } else { # append
be7ee97a 664 $self->ct_file_set_contents($file, $content . $data, $perms);
fa7cb12b 665 }
fa7cb12b
WB
666 }
667}
668
9096a91d
WB
669sub remove_pve_sections {
670 my ($data) = @_;
671
672 my $head = "# --- BEGIN PVE ---";
673 my $tail = "# --- END PVE ---";
674
675 # Remove the sections enclosed with the above headers and footers.
676 # from a line (^) starting with '\h*$head'
677 # to a line (the other ^) starting with '\h*$tail' up to including that
678 # line's end (.*?$).
679 return $data =~ s/^\h*\Q$head\E.*^\h*\Q$tail\E.*?$//rgms;
680}
681
1c7f4f65 6821;