summaryrefslogtreecommitdiff
path: root/scripts/vyatta-poweroff.pl
blob: 91039000a807a4a3be619715b13753604e489382 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
#!/usr/bin/perl
#
# Module: vyatta-poweroff.pl
# 
# **** License ****
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
# 
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
# 
# This code was originally developed by Vyatta, Inc.
# Portions created by Vyatta are Copyright (C) 2007 Vyatta, Inc.
# All Rights Reserved.
# 
# Based on the original vyatta-reboot script by Stig Thormodsrud
# 
# Author: Alex Harpin
# Date: Jan 2015
# Description: Script to shutdown or schedule a shutdown
# 
# **** End License ****
#

use lib "/opt/vyatta/share/perl5/";
use Getopt::Long;
use POSIX;
use IO::Prompt;
use Sys::Syslog qw(:standard :macros);

use strict;
use warnings;

my $poweroff_job_file = '/var/run/poweroff.job';

sub parse_at_output {
    my @lines = @_;
    
    foreach my $line (@lines) {
        if ($line =~ /error/) {
            return (1, '', '');
        } elsif ($line =~ /job (\d+) (.*)$/) {
            return (0, $1, $2);
        } 
    }
    return (1, '', '');
}

sub is_poweroff_pending {
    if ( ! -f $poweroff_job_file) {
        return (0, '');
    }
    my $job = `cat $poweroff_job_file`;
    chomp $job;
    my $line = `atq $job`;
    if ($line =~ /\d+\s+(.*)\sa root$/) {
        return (1, $1);
    } else {
        return (0, '');
    }
}

sub do_poweroff {
    my $login = shift;

    syslog("warning", "Poweroff now requested by $login");
    if (!system("sudo /sbin/shutdown -h now")) {
        exec("sudo /usr/bin/killall sshd");
    }
}

sub cancel_poweroff {
    my ($login, $time) = @_;

    my $job = `cat $poweroff_job_file`;
    chomp $job;
    system("atrm $job");
    system("rm $poweroff_job_file");
    syslog("warning", "Poweroff scheduled for [$time] - CANCELED by $login");
}

my ($action, $at_time, $now);
GetOptions("action=s"  => \$action,
           "at_time=s" => \$at_time,
           "now!"      => \$now,
);

if (! defined $action) {
    die "no action specified";
} 

openlog($0, "", LOG_USER);
my $login = getlogin() || getpwuid($<) || "unknown";

if ($action eq "poweroff") {

    my ($rc, $time) = is_poweroff_pending();
    if ($rc) {
        if (defined $now) {
            cancel_poweroff($login, $time);
            do_poweroff($login);
        } else {
            print "Poweroff already scheduled for [$time]\n";
            exit 1;
        }
    }

    if (defined $now) {
        do_poweroff($login);
    } else {
        if (prompt("Proceed with poweroff? (Yes/No) [No] ", -ynd=>"n")) {
            do_poweroff($login);
        } else {
            print "Poweroff canceled\n";
            exit 1;
        }
    }
}

if ($action eq "poweroff_at") {
    if (! -f '/usr/bin/at') {
        die "Package [at] not installed";
    }

    if (! defined $at_time) {
        die "no at_time specified";
    }

    my ($rc, $rtime) = is_poweroff_pending();
    if ($rc) {
        print "Poweroff already scheduled for [$rtime]\n";
        exit 1;
    }

    my @lines = `echo true | at $at_time 2>&1`;
    my ($err, $job, $time) = parse_at_output(@lines);
    if ($err) {
        print "Invalid time format [$at_time]\n";
        exit 1;
    }
    system("atrm $job");

    print "\nPoweroff scheduled for $time\n\n";
    if (!prompt("Proceed with poweroff schedule? [confirm] ", -y1d=>"y")) {
        print "Poweroff canceled\n";
        exit 1;
    }

    @lines = `echo "sudo /sbin/shutdown -h now && sudo /usr/bin/killall sshd" | at $at_time 2>&1`;
    ($err, $job, $time) = parse_at_output(@lines);
    if ($err) {
        print "Error: unable to schedule poweroff\n";
        exit 1;
    }
    system("echo $job > $poweroff_job_file");
    print "\nPoweroff scheduled for $time\n";
    syslog("warning", "Poweroff scheduled for [$time] by $login");

    exit 0;
}

if ($action eq "poweroff_cancel") {

    my ($rc, $time) = is_poweroff_pending();
    if (! $rc) {
        print "No poweroff currently scheduled\n";
        exit 1;
    }
    cancel_poweroff($login, $time);
    print "Poweroff canceled\n";
    exit 0;
}

if ($action eq "show_poweroff") {

    my ($rc, $time) = is_poweroff_pending();
    if ($rc) {
        print "Poweroff scheduled for [$time]\n";
        exit 0;
    } else {
        print "No poweroff currently scheduled\n";
    }
    exit 1;
}

exit 1;