]> git.proxmox.com Git - pve-container.git/blame - src/lxc-pve-prestart-hook
Fix pct skiplock
[pve-container.git] / src / lxc-pve-prestart-hook
CommitLineData
deaf7667
AD
1#!/usr/bin/perl
2
b056d074
DM
3package lxc_pve_prestart_hook;
4
deaf7667
AD
5use strict;
6use warnings;
4ed2b825 7
d6811d3f 8exit 0 if $ENV{LXC_NAME} && $ENV{LXC_NAME} !~ /^\d+$/;
4ed2b825 9
deaf7667
AD
10use POSIX;
11use File::Path;
c9a5774b 12use Fcntl ':mode';
deaf7667
AD
13
14use PVE::SafeSyslog;
15use PVE::Tools;
16use PVE::Cluster;
17use PVE::INotify;
18use PVE::RPCEnvironment;
19use PVE::JSONSchema qw(get_standard_option);
20use PVE::CLIHandler;
21use PVE::Storage;
22use PVE::LXC;
c9a5774b 23use PVE::LXC::Setup;
deaf7667
AD
24use Data::Dumper;
25
26use base qw(PVE::CLIHandler);
27
deaf7667
AD
28__PACKAGE__->register_method ({
29 name => 'lxc-pve-prestart-hook',
30 path => 'lxc-pve-prestart-hook',
31 method => 'GET',
32 description => "Create a new container root directory.",
33 parameters => {
34 additionalProperties => 0,
35 properties => {
36 name => {
c0c77476 37 description => "The container name. This hook is only active for containers using numeric IDs, where configuration is stored on /etc/pve/lxc/<name>.conf (else it is just a NOP).",
deaf7667
AD
38 type => 'string',
39 pattern => '\S+',
40 maxLength => 64,
41 },
42 path => {
43 description => "The path to the container configuration directory (LXC internal argument - do not pass manually!).",
44 type => 'string',
45 },
46 rootfs => {
47 description => "The path to the container's rootfs (LXC internal argument - do not pass manually!)",
48 type => 'string',
49 },
50 },
51 },
52 returns => { type => 'null' },
53
54 code => sub {
55 my ($param) = @_;
56
57 return undef if $param->{name} !~ m/^\d+$/;
58
9459f07d 59 my $vmid = $param->{name};
2e64f057
AA
60 my $skiplock_flag_fn = "/run/lxc/skiplock-$vmid";
61 my $skiplock = 1 if -e $skiplock_flag_fn;
62 unlink $skiplock_flag_fn if $skiplock;
d886a5f9
DM
63
64 PVE::Cluster::check_cfs_quorum(); # only start if we have quorum
65
67afe46e 66 return undef if ! -f PVE::LXC::Config->config_file($vmid);
d886a5f9 67
67afe46e 68 my $conf = PVE::LXC::Config->load_config($vmid);
2e64f057 69 if (!$skiplock && !PVE::LXC::Config->has_lock($conf, 'mounted')) {
67afe46e 70 PVE::LXC::Config->check_lock($conf);
6da1f91b 71 }
deaf7667 72
9459f07d 73 my $storage_cfg = PVE::Storage::config();
deaf7667 74
d250604f
FG
75 my $vollist = PVE::LXC::Config->get_vm_volumes($conf);
76 my $loopdevlist = PVE::LXC::Config->get_vm_volumes($conf, 'rootfs');
deaf7667 77
571b33da 78 PVE::Storage::activate_volumes($storage_cfg, $vollist);
c9a5774b
WB
79
80 my $rootdir = $param->{rootfs};
81
1e1fad99
WB
82 # Delete any leftover reboot-trigger file
83 unlink("/var/lib/lxc/$vmid/reboot");
84
50df544c
WB
85 my $devlist_file = "/var/lib/lxc/$vmid/devices";
86 unlink $devlist_file;
87 my $devices = [];
88
c9a5774b
WB
89 my $setup_mountpoint = sub {
90 my ($ms, $mountpoint) = @_;
91
92 #return if $ms eq 'rootfs';
50df544c
WB
93 my (undef, undef, $dev) = PVE::LXC::mountpoint_mount($mountpoint, $rootdir, $storage_cfg);
94 push @$devices, $dev if $dev && $mountpoint->{quota};
c9a5774b
WB
95 };
96
d250604f 97 PVE::LXC::Config->foreach_mountpoint($conf, $setup_mountpoint);
c9a5774b 98
c9a5774b
WB
99 my $lxc_setup = PVE::LXC::Setup->new($conf, $rootdir);
100 $lxc_setup->pre_start_hook();
50df544c
WB
101
102 if (@$devices) {
1e678370 103 my $devlist = '';
50df544c
WB
104 foreach my $dev (@$devices) {
105 my ($mode, $rdev) = (stat($dev))[2,6];
106 next if !$mode || !S_ISBLK($mode) || !$rdev;
107 my $major = int($rdev / 0x100);
108 my $minor = $rdev % 0x100;
1e678370 109 $devlist .= "b:$major:$minor:$dev\n";
50df544c 110 }
1e678370 111 PVE::Tools::file_set_contents($devlist_file, $devlist);
50df544c 112 }
deaf7667
AD
113 return undef;
114 }});
115
116
117push @ARGV, 'help' if !scalar(@ARGV);
118
119my $param = {};
120
b056d074 121if ((scalar(@ARGV) == 3) && ($ARGV[1] eq 'lxc') && ($ARGV[2] eq 'pre-start')) {
deaf7667
AD
122 $param->{name} = $ENV{'LXC_NAME'};
123 die "got wrong name" if $param->{name} ne $ARGV[0];
124
125 $param->{path} = $ENV{'LXC_CONFIG_FILE'};
126 $param->{rootfs} = $ENV{'LXC_ROOTFS_PATH'};
127 @ARGV = ();
128} else {
129 @ARGV = ('help');
130}
131
b056d074 132our $cmddef = [ __PACKAGE__, 'lxc-pve-prestart-hook', [], $param];
deaf7667 133
b056d074 134__PACKAGE__->run_cli_handler();