Update README.
[ksplice.git] / ksplice-undo.in
blob8e33366ba47844caf642becf0f9bb1a781a97df9
1 #!/usr/bin/perl
3 # Copyright (C) 2007-2008 Ksplice, Inc.
4 # Authors: Jeff Arnold, Anders Kaseorg, Tim Abbott
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License, version 2.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
17 # 02110-1301, USA.
19 use strict;
20 use warnings;
21 use lib 'KSPLICE_DATA_DIR';
22 use Ksplice;
23 use Time::HiRes qw(usleep);
25 my $debug;
26 my $debugon = 0;
27 GetOptions(@common_options,
28 "debug" => \$debugon,
29 "debugfile=s" => \$debug) or pod2usage(1);
31 pod2usage(1) if($help || scalar(@ARGV) != 1);
32 $debugon = 1 if (defined($debug));
33 $debug = abs_path($debug) if (defined $debug);
35 my $kid = $ARGV[0];
36 $kid =~ s/^ksplice[-_]//;
37 $kid =~ s/[-_].*$//;
38 my $update = "ksplice_$kid";
39 my $nounload = runstr("lsmod") =~ m/- $/m;
41 if (!update_loaded($kid)) {
42 print "Ksplice id $kid is not present in the kernel\n";
43 exit(1);
46 chdir("/sys/module/");
47 set_debug_level($kid, $debugon);
48 my $stage = get_stage($kid);
49 if ($stage ne 'applied') {
50 print "Ksplice id $kid is not applied\n";
52 else {
53 set_stage($kid, "reversed");
56 $stage = get_stage($kid);
57 my $failed = 0;
58 $failed = 1 if ($stage ne 'reversed');
59 foreach my $module (glob("${update}_*")) {
60 if (!$nounload && runval_raw('rmmod', $module) != 0) {
61 child_error();
62 $failed = 1;
65 if ($failed == 0) {
66 set_stage($kid, "cleanup");
67 my $count = 0;
68 while (update_loaded($kid) && $count < 5) {
69 usleep(100000);
70 $count++;
73 if ($failed == 0 && -e "/sys/module/$update") {
74 if (!$nounload && runval_raw('rmmod', $update) != 0) {
75 child_error();
76 $failed = 1;
79 unless($failed == 0) {
80 my $debugfile = get_debug_output($kid, $debug);
81 print STDERR "Error undoing Ksplice update $kid:\n";
82 my $abort_cause = get_abort_cause($kid);
83 my $conflicts = get_conflicts($kid);
84 print_error($abort_cause);
85 if ($abort_cause eq 'code_busy') {
86 print $conflicts;
88 if($debugon && defined $debugfile) {
89 print("Debugging output saved to $debugfile\n");
91 die;
93 rmtree("/var/run/ksplice/updates/$kid");
94 exit(0);
96 sub print_error {
97 my ($error) = @_;
98 my %errors = (
99 "code_busy" => <<'END',
100 Ksplice has aborted the undo operation because it appears that the code that
101 you are trying to change is continuously in use by the system. More
102 specifically, Ksplice has been unable to find a moment when one or more of the
103 to-be-changed functions is not on a thread's kernel stack.
105 "module_busy" => <<'END',
106 Ksplice has aborted the undo operation because it appears that the Ksplice
107 update that you are trying to unload is in use by another module. You can find
108 out what module is using the Ksplice update using the lsmod command.
110 "unexpected_running_task" => <<'END',
111 Ksplice has aborted the undo operation because of an unexpected failure during
112 the kernel stack check. Please consider reporting a bug to PACKAGE_BUGREPORT.
114 "out_of_memory" => <<'END',
115 Ksplice has aborted the undo operation because the kernel ran out of memory.
117 "call_failed" => <<'END',
118 Ksplice has aborted the undo operation at the request of a one of the
119 pre-application hooks that were included as part of this Ksplice
120 update. This is likely the result of a bug in the patch used to
121 generate this update.
123 "unexpected" => <<'END',
124 Ksplice has aborted because of an unexpected error.
125 Please consider reporting a bug to PACKAGE_BUGREPORT.
127 "UNKNOWN" => <<'END',
128 The Ksplice kernel component has returned an error code that this version of
129 ksplice-undo does not understand.
131 "ok" => <<'END',
132 Ksplice has aborted the undo operation for unknown reasons.
133 Please consider reporting a bug to PACKAGE_BUGREPORT.
136 $error = "UNKNOWN" if (!exists $errors{$error});
137 print STDERR "\n$errors{$error}\n";
140 =head1 NAME
142 ksplice-undo - Undo a Ksplice update that has been applied to the running kernel
144 =head1 SYNOPSIS
146 B<ksplice-undo> I<KSPLICE_ID>
148 =head1 DESCRIPTION
150 B<ksplice-undo> takes as input a Ksplice identification tag, as reported by
151 L<ksplice-view(8)>, and it reverses that update within the running binary kernel.
153 =head1 OPTIONS
155 =over 8
157 =item B<--debug>
159 Reverses the update with debugging output enabled. Recommended only for
160 debugging.
162 =item B<--debugfile=>I<filename>
164 Sets the location where debugging output should be saved. Implies --debug.
166 =back
168 =head1 SEE ALSO
170 L<ksplice-create(8)>, L<ksplice-apply(8)>, L<ksplice-view(8)>
172 =head1 BUGS
174 Please report bugs to <PACKAGE_BUGREPORT>.
176 =head1 AUTHORS
178 Jeff Arnold, Anders Kaseorg, and Tim Abbott
180 =head1 COPYRIGHT
182 Copyright (C) 2007-2008 Ksplice, Inc.
184 This is free software and documentation. You can redistribute and/or modify it
185 under the terms of the GNU General Public License, version 2.
187 =cut