]> git.proxmox.com Git - pve-container.git/commitdiff
fix #4474: lxc api: add overrule-shutdown parameter to stop endpoint
authorFriedrich Weber <f.weber@proxmox.com>
Fri, 12 Apr 2024 14:15:50 +0000 (16:15 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Wed, 17 Apr 2024 15:40:56 +0000 (17:40 +0200)
The new `overrule-shutdown` parameter is boolean and defaults to 0. If
it is 1, all active `vzshutdown` tasks for the same CT (which are
visible to the user/token) are aborted before attempting to stop the
CT.

Passing `overrule-shutdown=1` is forbidden for HA resources.

Signed-off-by: Friedrich Weber <f.weber@proxmox.com>
src/PVE/API2/LXC/Status.pm

index 77413748dc4e7f317f61ed52870350cefea2f709..08e23b6f419d338d6e273a2c33718387ba8a64ea 100644 (file)
@@ -220,6 +220,12 @@ __PACKAGE__->register_method({
            node => get_standard_option('pve-node'),
            vmid => get_standard_option('pve-vmid', { completion => \&PVE::LXC::complete_ctid_running }),
            skiplock => get_standard_option('skiplock'),
+           'overrule-shutdown' => {
+               description => "Abort any active and visible 'vzshutdown' tasks before stopping",
+               optional => 1,
+               type => 'boolean',
+               default => 0,
+           }
        },
     },
     returns => {
@@ -237,10 +243,15 @@ __PACKAGE__->register_method({
        raise_param_exc({ skiplock => "Only root may use this option." })
            if $skiplock && $authuser ne 'root@pam';
 
+       my $overrule_shutdown = extract_param($param, 'overrule-shutdown');
+
        die "CT $vmid not running\n" if !PVE::LXC::check_running($vmid);
 
        if (PVE::HA::Config::vm_is_ha_managed($vmid) && $rpcenv->{type} ne 'ha') {
 
+           raise_param_exc({ 'overrule-shutdown' => "Not applicable for HA resources." })
+               if $overrule_shutdown;
+
            my $hacmd = sub {
                my $upid = shift;
 
@@ -257,6 +268,14 @@ __PACKAGE__->register_method({
            my $realcmd = sub {
                my $upid = shift;
 
+               if ($overrule_shutdown) {
+                   my $overruled_tasks = PVE::GuestHelpers::abort_guest_tasks(
+                       $rpcenv, 'vzshutdown', $vmid);
+                   my $overruled_tasks_list = join(", ", $overruled_tasks->@*);
+                   print "overruled vzshutdown tasks: $overruled_tasks_list\n"
+                       if @$overruled_tasks;
+               };
+
                PVE::LXC::Config->lock_config($vmid, sub {
                    syslog('info', "stopping CT $vmid: $upid\n");