3 # Copyright (C) 2008 Jeffrey Brian Arnold <jbarnold@mit.edu>
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License, version 2.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
19 use Cwd
'abs_path', 'getcwd';
23 use lib
'KSPLICE_DATA_DIR';
27 my ($help, $wantversion) = (0, 0);
28 GetOptions
("help|?" => \
$help,
29 "version" => \
$wantversion,
30 "verbose|v!" => \
$verbose,
32 "file=s" => \
$file) or pod2usage
(1);
38 pod2usage
(1) if($help || scalar(@ARGV) != 0);
39 my $actions = (defined $kid) + (defined $file);
40 pod2usage
(1) if($actions > 1);
42 view_kid
() if(defined $kid);
43 view_file
() if(defined $file);
44 view_list
() if($actions == 0);
49 $kid =~ s/^ksplice[_-]//;
50 if (-e
"/proc/ksplice_$kid") {
51 print "Ksplice id $kid is present in the kernel\n";
53 print "Ksplice id $kid is not present in the kernel\n";
58 $file = abs_path
($file);
60 my $tmpdir = init_tmpdir
();
63 my $ksplice = unpack_update
($file);
64 print runstr
("cat $ksplice/patch");
65 runval
("rm -rf $tmpdir");
69 foreach(split(/\n/, runstr
("lsmod"))) {
70 next unless my ($kid) = m/^ksplice_(\S*)\s/;
71 next unless (-e
"/proc/ksplice_$kid");
78 ksplice-view - View in-kernel or on-disk Ksplice kernel updates
82 B<ksplice-view> [B<--id=>I<KSPLICE_ID> | B<--file=>I<UPDATE_TARBALL>]
86 When called with no arguments, B<ksplice-view> lists the identification tags of
87 all of the Ksplice updates that are currently present in the running kernel.
89 B<ksplice-view> can report about a specific Ksplice update when given the
90 update's identification tag (if the update is in the kernel) or given the
91 update's tarball filename I<UPDATE_TARBALL> (if the update is on disk).
95 L<ksplice-create(8)>, L<ksplice-apply(8)>, L<ksplice-undo(8)>
99 Copyright (C) 2008 Jeffrey Brian Arnold <jbarnold@mit.edu>.
101 This is free software and documentation. You can redistribute and/or modify it
102 under the terms of the GNU General Public License, version 2.