Skip to content

Commit

Permalink
Add component to manage port 1022 for do-release-upgrade
Browse files Browse the repository at this point in the history
Case RE-943: When performing an elevation from u20->u22, we rely on the
do-release-upgrade script to perform the OS upgrade.  do-release-upgrade
will create a secondary SSH connection on port 1022 as a fallback
mechanism in the event that the primary SSH connection is disrupted
during the upgrade process. This change ensures that port 1022 is open
before executing do-release-upgrade so that the fallback method will
work if it is required during the upgrade.  It also ensures that port
1022 is closed once the upgrade is complete if it was closed before the
upgrade started.

Changelog: Add component to manage port 1022 for ELevations that rely on
 the do-release-upgrade script to perform the OS upgrade
  • Loading branch information
Travis Holloway committed Dec 10, 2024
1 parent d1491a9 commit b6003b6
Show file tree
Hide file tree
Showing 5 changed files with 427 additions and 4 deletions.
86 changes: 84 additions & 2 deletions elevate-cpanel
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ BEGIN { # Suppress load of all of these at earliest point.
$INC{'Elevate/Components/RpmDB.pm'} = 'script/elevate-cpanel.PL.static';
$INC{'Elevate/Components/SSH.pm'} = 'script/elevate-cpanel.PL.static';
$INC{'Elevate/Components/Softaculous.pm'} = 'script/elevate-cpanel.PL.static';
$INC{'Elevate/Components/Ufw.pm'} = 'script/elevate-cpanel.PL.static';
$INC{'Elevate/Components/UnconvertedModules.pm'} = 'script/elevate-cpanel.PL.static';
$INC{'Elevate/Components/UpdateReleaseUpgrades.pm'} = 'script/elevate-cpanel.PL.static';
$INC{'Elevate/Components/UpdateSystem.pm'} = 'script/elevate-cpanel.PL.static';
Expand Down Expand Up @@ -338,6 +339,7 @@ BEGIN { # Suppress load of all of these at earliest point.
use Elevate::Components::RpmDB ();
use Elevate::Components::SSH ();
use Elevate::Components::Softaculous ();
use Elevate::Components::Ufw ();
use Elevate::Components::UnconvertedModules ();
use Elevate::Components::UpdateReleaseUpgrades ();
use Elevate::Components::UpdateSystem ();
Expand Down Expand Up @@ -403,6 +405,7 @@ BEGIN { # Suppress load of all of these at earliest point.
RmMod
RpmDB
Softaculous
Ufw
UnconvertedModules
UpdateReleaseUpgrades
UpdateSystem
Expand Down Expand Up @@ -6386,6 +6389,79 @@ EOS

} # --- END lib/Elevate/Components/Softaculous.pm

{ # --- BEGIN lib/Elevate/Components/Ufw.pm

package Elevate::Components::Ufw;

use cPstrict;

use Elevate::OS ();
use Elevate::StageFile ();

# use Log::Log4perl qw(:easy);
INIT { Log::Log4perl->import(qw{:easy}); }

# use Elevate::Components::Base();
our @ISA;
BEGIN { push @ISA, qw(Elevate::Components::Base); }

use constant UFW => '/usr/sbin/ufw';

sub pre_distro_upgrade ($self) {
return unless $self->upgrade_distro_manually(); # skip when --upgrade-distro-manually is provided
return unless Elevate::OS::needs_do_release_upgrade();

if ( !-x UFW ) {
my $ufw = UFW;
WARN( <<~"EOS" );
'$ufw' is either missing or not executable on this server. Unable to
ensure that port 1022 is open as a secondary ssh option for
do-release-upgrade.
EOS

return;
}

my $current_status = $self->ssystem_capture_output( UFW, 'status' );
my $is_active = grep { $_ =~ m/^Status:\sactive$/ } @{ $current_status->{stdout} };
my $is_open = grep { $_ =~ m{^1022/tcp.*ALLOW.*Anywhere} } @{ $current_status->{stdout} };

my $data = {
is_active => $is_active,
is_open => $is_open,
};

Elevate::StageFile::update_stage_file( { ufw => $data } );

return if $is_active && $is_open;

$self->ssystem_and_die( UFW, 'allow', '1022/tcp' );

$is_active ? $self->ssystem_and_die( UFW, 'reload' ) : $self->ssystem_and_die( UFW, '--force', 'enable' );

return;
}

sub post_distro_upgrade ($self) {
my $ufw_data = Elevate::StageFile::read_stage_file( 'ufw', '' );

return unless ref $ufw_data && ref $ufw_data eq 'HASH';

return if $ufw_data->{is_active} && $ufw_data->{is_open};

$self->ssystem_and_die( UFW, 'delete', 'allow', '1022/tcp' );

return if $ufw_data->{is_active};

$self->ssystem_and_die( UFW, 'disable' );

return;
}

1;

} # --- END lib/Elevate/Components/Ufw.pm

{ # --- BEGIN lib/Elevate/Components/UnconvertedModules.pm

package Elevate::Components::UnconvertedModules;
Expand Down Expand Up @@ -10188,6 +10264,7 @@ use Elevate::Components::RmMod ();
use Elevate::Components::RpmDB ();
use Elevate::Components::SSH ();
use Elevate::Components::Softaculous ();
use Elevate::Components::Ufw ();
use Elevate::Components::UnconvertedModules ();
use Elevate::Components::UpdateReleaseUpgrades ();
use Elevate::Components::UpdateSystem ();
Expand Down Expand Up @@ -10928,6 +11005,10 @@ sub run_stage_3 ($self) {

$self->run_once('run_final_components_pre_distro_upgrade');

# The server should not reboot between executing this
# and executing do-release-upgrade
$self->run_component_once( 'Ufw' => 'pre_distro_upgrade' );

if ( !$self->upgrade_distro_manually() ) {
return $self->_request_to_upgrade_distro_manually();
}
Expand Down Expand Up @@ -11040,8 +11121,9 @@ sub run_stage_4 ($self) {

$stash->{stage4} //= {}; # run once each blocks

$self->run_component_once( 'Lists', => 'post_distro_upgrade' );
$self->run_component_once( 'RpmDB', => 'post_distro_upgrade' );
$self->run_component_once( 'Ufw' => 'post_distro_upgrade' );
$self->run_component_once( 'Lists' => 'post_distro_upgrade' );
$self->run_component_once( 'RpmDB' => 'post_distro_upgrade' );

$self->run_once(
restore_cpanel_services => sub {
Expand Down
2 changes: 2 additions & 0 deletions lib/Elevate/Components.pm
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ use Elevate::Components::RmMod ();
use Elevate::Components::RpmDB ();
use Elevate::Components::SSH ();
use Elevate::Components::Softaculous ();
use Elevate::Components::Ufw ();
use Elevate::Components::UnconvertedModules ();
use Elevate::Components::UpdateReleaseUpgrades ();
use Elevate::Components::UpdateSystem ();
Expand Down Expand Up @@ -128,6 +129,7 @@ our @NOOP_CHECKS = qw{
RmMod
RpmDB
Softaculous
Ufw
UnconvertedModules
UpdateReleaseUpgrades
UpdateSystem
Expand Down
85 changes: 85 additions & 0 deletions lib/Elevate/Components/Ufw.pm
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
package Elevate::Components::Ufw;

=encoding utf-8
=head1 NAME
Elevate::Components::Ufw
=head2 check
noop
=head2 pre_distro_upgrade
Open port 1022 for upgrades using do-release-upgrade
=head2 post_distro_upgrade
Close port 1022 for upgrades using do-release-upgrade
=cut

use cPstrict;

use Elevate::OS ();
use Elevate::StageFile ();

use Log::Log4perl qw(:easy);

use parent qw{Elevate::Components::Base};

use constant UFW => '/usr/sbin/ufw';

sub pre_distro_upgrade ($self) {
return unless $self->upgrade_distro_manually(); # skip when --upgrade-distro-manually is provided
return unless Elevate::OS::needs_do_release_upgrade();

if ( !-x UFW ) {
my $ufw = UFW;
WARN( <<~"EOS" );
'$ufw' is either missing or not executable on this server. Unable to
ensure that port 1022 is open as a secondary ssh option for
do-release-upgrade.
EOS

return;
}

my $current_status = $self->ssystem_capture_output( UFW, 'status' );
my $is_active = grep { $_ =~ m/^Status:\sactive$/ } @{ $current_status->{stdout} };
my $is_open = grep { $_ =~ m{^1022/tcp.*ALLOW.*Anywhere} } @{ $current_status->{stdout} };

my $data = {
is_active => $is_active,
is_open => $is_open,
};

Elevate::StageFile::update_stage_file( { ufw => $data } );

return if $is_active && $is_open;

$self->ssystem_and_die( UFW, 'allow', '1022/tcp' );

$is_active ? $self->ssystem_and_die( UFW, 'reload' ) : $self->ssystem_and_die( UFW, '--force', 'enable' );

return;
}

sub post_distro_upgrade ($self) {
my $ufw_data = Elevate::StageFile::read_stage_file( 'ufw', '' );

return unless ref $ufw_data && ref $ufw_data eq 'HASH';

return if $ufw_data->{is_active} && $ufw_data->{is_open};

$self->ssystem_and_die( UFW, 'delete', 'allow', '1022/tcp' );

return if $ufw_data->{is_active};

$self->ssystem_and_die( UFW, 'disable' );

return;
}

1;
10 changes: 8 additions & 2 deletions script/elevate-cpanel.PL
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,7 @@ use Elevate::Components::RmMod ();
use Elevate::Components::RpmDB ();
use Elevate::Components::SSH ();
use Elevate::Components::Softaculous ();
use Elevate::Components::Ufw ();
use Elevate::Components::UnconvertedModules ();
use Elevate::Components::UpdateReleaseUpgrades ();
use Elevate::Components::UpdateSystem ();
Expand Down Expand Up @@ -1020,6 +1021,10 @@ sub run_stage_3 ($self) {

$self->run_once('run_final_components_pre_distro_upgrade');

# The server should not reboot between executing this
# and executing do-release-upgrade
$self->run_component_once( 'Ufw' => 'pre_distro_upgrade' );

if ( !$self->upgrade_distro_manually() ) {
return $self->_request_to_upgrade_distro_manually();
}
Expand Down Expand Up @@ -1132,8 +1137,9 @@ sub run_stage_4 ($self) {

$stash->{stage4} //= {}; # run once each blocks

$self->run_component_once( 'Lists', => 'post_distro_upgrade' );
$self->run_component_once( 'RpmDB', => 'post_distro_upgrade' );
$self->run_component_once( 'Ufw' => 'post_distro_upgrade' );
$self->run_component_once( 'Lists' => 'post_distro_upgrade' );
$self->run_component_once( 'RpmDB' => 'post_distro_upgrade' );

$self->run_once(
restore_cpanel_services => sub {
Expand Down
Loading

0 comments on commit b6003b6

Please sign in to comment.