From: Alexandre Derumier via pve-devel <pve-devel@lists.proxmox.com>
To: pve-devel@lists.proxmox.com
Cc: Alexandre Derumier <alexandre.derumier@groupe-cyllene.com>
Subject: [pve-devel] [PATCH qemu-server 1/1] qemu: add offline migration from dead node
Date: Mon, 24 Mar 2025 12:15:29 +0100 [thread overview]
Message-ID: <mailman.127.1742814976.359.pve-devel@lists.proxmox.com> (raw)
In-Reply-To: <20250324111529.338025-1-alexandre.derumier@groupe-cyllene.com>
[-- Attachment #1: Type: message/rfc822, Size: 6888 bytes --]
From: Alexandre Derumier <alexandre.derumier@groupe-cyllene.com>
To: pve-devel@lists.proxmox.com
Subject: [PATCH qemu-server 1/1] qemu: add offline migration from dead node
Date: Mon, 24 Mar 2025 12:15:29 +0100
Message-ID: <20250324111529.338025-3-alexandre.derumier@groupe-cyllene.com>
verify that node is dead from corosync && ssh
and move config file from /etc/pve directly
Signed-off-by: Alexandre Derumier <alexandre.derumier@groupe-cyllene.com>
---
PVE/API2/Qemu.pm | 56 ++++++++++++++++++++++++++++++++++++++++++++----
1 file changed, 52 insertions(+), 4 deletions(-)
diff --git a/PVE/API2/Qemu.pm b/PVE/API2/Qemu.pm
index 156b1c7b..58c454a6 100644
--- a/PVE/API2/Qemu.pm
+++ b/PVE/API2/Qemu.pm
@@ -4764,6 +4764,9 @@ __PACKAGE__->register_method({
description => "Target node.",
completion => \&PVE::Cluster::complete_migration_target,
}),
+ deadnode => get_standard_option('pve-node', {
+ description => "Dead source node.",
+ }),
online => {
type => 'boolean',
description => "Use online/live migration if VM is running. Ignored if VM is stopped.",
@@ -4813,8 +4816,9 @@ __PACKAGE__->register_method({
my $authuser = $rpcenv->get_user();
my $target = extract_param($param, 'target');
+ my $deadnode = extract_param($param, 'deadnode');
- my $localnode = PVE::INotify::nodename();
+ my $localnode = $deadnode ? $deadnode : PVE::INotify::nodename();
raise_param_exc({ target => "target is local node."}) if $target eq $localnode;
PVE::Cluster::check_cfs_quorum();
@@ -4835,14 +4839,43 @@ __PACKAGE__->register_method({
raise_param_exc({ migration_network => "Only root may use this option." })
if $param->{migration_network} && $authuser ne 'root@pam';
+ raise_param_exc({ deadnode => "Only root may use this option." })
+ if $param->{deadnode} && $authuser ne 'root@pam';
+
# test if VM exists
- my $conf = PVE::QemuConfig->load_config($vmid);
+ my $conf = $deadnode ? PVE::QemuConfig->load_config($vmid, $deadnode) : PVE::QemuConfig->load_config($vmid);
# try to detect errors early
PVE::QemuConfig->check_lock($conf);
- if (PVE::QemuServer::check_running($vmid)) {
+ if ($deadnode) {
+ die "Can't do online migration of a dead node.\n" if $param->{online};
+ my $members = PVE::Cluster::get_members();
+ die "The deadnode $deadnode seem to be alive" if $members->{$deadnode} && $members->{$deadnode}->{online};
+
+ print "test if deadnode $deadnode respond to ping\n";
+ eval {
+ PVE::Tools::run_command("/usr/bin/ping -c 1 $members->{$deadnode}->{ip}");
+ };
+ if(!$@){
+ die "error: ping to target $deadnode is still working. Node seem to be alive.";
+ }
+
+ #make an extra ssh connection to double check that it's not just a corosync crash
+ my $sshinfo = PVE::SSHInfo::get_ssh_info($deadnode);
+ my $sshcmd = PVE::SSHInfo::ssh_info_to_command($sshinfo);
+ push @$sshcmd, 'hostname';
+ print "test if deadnode $deadnode respond to ssh\n";
+ eval {
+ PVE::Tools::run_command($sshcmd, timeout => 1);
+ };
+ if(!$@){
+ die "error: ssh connection to target $deadnode is still working. Node seem to be alive.";
+ }
+
+
+ } elsif (PVE::QemuServer::check_running($vmid)) {
die "can't migrate running VM without --online\n" if !$param->{online};
my $repl_conf = PVE::ReplicationConfig->new();
@@ -4881,7 +4914,22 @@ __PACKAGE__->register_method({
PVE::QemuServer::check_storage_availability($storecfg, $conf, $target);
}
- if (PVE::HA::Config::vm_is_ha_managed($vmid) && $rpcenv->{type} ne 'ha') {
+ if ($deadnode) {
+ my $realcmd = sub {
+ my $config_fn = PVE::QemuConfig->config_file($vmid, $deadnode);
+ my $new_config_fn = PVE::QemuConfig->config_file($vmid, $target);
+
+ rename($config_fn, $new_config_fn)
+ or die "failed to move config file to node '$target': $!\n";
+ };
+
+ my $worker = sub {
+ return PVE::GuestHelpers::guest_migration_lock($vmid, 10, $realcmd);
+ };
+
+ return $rpcenv->fork_worker('qmigrate', $vmid, $authuser, $worker);
+
+ } elsif (PVE::HA::Config::vm_is_ha_managed($vmid) && $rpcenv->{type} ne 'ha') {
my $hacmd = sub {
my $upid = shift;
--
2.39.5
[-- Attachment #2: Type: text/plain, Size: 160 bytes --]
_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
next prev parent reply other threads:[~2025-03-24 11:16 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20250324111529.338025-1-alexandre.derumier@groupe-cyllene.com>
2025-03-24 11:15 ` [pve-devel] [PATCH pve-manager 1/1] migrate: allow " Alexandre Derumier via pve-devel
2025-03-24 11:15 ` Alexandre Derumier via pve-devel [this message]
2025-04-01 9:52 ` [pve-devel] [PATCH qemu-server 1/1] qemu: add offline " Fabian Grünbichler
2025-04-01 9:57 ` Thomas Lamprecht
2025-04-01 10:19 ` Dominik Csapak
2025-04-01 10:46 ` Thomas Lamprecht
2025-04-01 11:13 ` Fabian Grünbichler
2025-04-01 12:38 ` Thomas Lamprecht
2025-04-01 11:37 ` Dominik Csapak
2025-04-01 12:54 ` Thomas Lamprecht
2025-04-01 13:20 ` Dominik Csapak
2025-04-01 15:08 ` Thomas Lamprecht
2025-04-01 16:13 ` DERUMIER, Alexandre via pve-devel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=mailman.127.1742814976.359.pve-devel@lists.proxmox.com \
--to=pve-devel@lists.proxmox.com \
--cc=alexandre.derumier@groupe-cyllene.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal