3 # Copyright (C) 2008 Anders Kaseorg <andersk@mit.edu>,
4 # Jeffrey Brian Arnold <jbarnold@mit.edu>,
5 # Tim Abbott <tabbott@mit.edu>
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License, version 2.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
22 use lib
'KSPLICE_DATA_DIR';
25 $Verbose::level
= $ENV{KSPLICE_VERBOSE
} if (defined $ENV{KSPLICE_VERBOSE
});
29 my ($obj) = $out =~ /^(.*)\.KSPLICE$/ or die;
30 unlink "$obj.KSPLICE_primary" if (-e
"$obj.KSPLICE_primary");
31 unlink "$obj.KSPLICE_helper" if (-e
"$obj.KSPLICE_helper");
32 open OUT
, '>', "$out.tmp";
34 rename "$out.tmp", $out;
39 my ($obj) = $out =~ /^(.*)\.KSPLICE$/ or die;
41 unlink "$obj.KSPLICE_pre" if (-e
"$obj.KSPLICE_pre");
47 my ($obj) = $out =~ /^(.*)\.KSPLICE$/ or die;
48 my $obj_old = "$obj.KSPLICE_pre";
50 die "Patch creates new object $obj" if (!-e
$obj_old);
51 if (system('cmp', '-s', '--', $obj_old, $obj) == 0) {
53 return empty_diff
($out);
56 my $objdiff = runsuc
("objdiff", $obj_old, $obj);
57 return empty_diff
($out) if($objdiff !~ m/\S/);
59 copy
($obj, "$obj.KSPLICE_primary");
60 copy
($obj_old, "$obj.KSPLICE_helper");
62 runsuc_in
($objdiff, "objmanip", "$obj.KSPLICE_primary", "keep-primary", $ENV{KSPLICE_KID
});
63 runsuc_in
($objdiff, "objmanip", "$obj.KSPLICE_helper", "keep-helper", $ENV{KSPLICE_KID
});
65 open OUT
, '>', "$out.tmp";
68 rename "$out.tmp", $out;
74 foreach my $in (@ins) {
76 my ($obj) = $in =~ /^(.*)\.KSPLICE$/ or die;
80 return empty_diff
($out) unless (@objs);
82 my ($obj) = $out =~ /^(.*)\.KSPLICE$/ or die;
84 copy
"$objs[0].KSPLICE_primary", "$obj.KSPLICE_primary";
85 copy
"$objs[0].KSPLICE_helper", "$obj.KSPLICE_helper";
87 system("ld", "-r", "-o",
88 map { "$_.KSPLICE_primary" } ($obj, @objs));
89 system("ld", "-r", "-o",
90 map { "$_.KSPLICE_helper" } ($obj, @objs));
93 open OUT
, '>', "$out.tmp";
96 rename "$out.tmp", $out;
101 runsuc
("objmanip", "$obj", "finalize");
105 my ($obj, @rmsyms) = @_;
106 my $relocs = runsuc
("objmanip", $obj, "rmsyms", @rmsyms);
109 sub do_system_map_lookup
{
111 open(SYMS
, "<", "$ENV{KSPLICE_CONFIG_DIR}/System.map") or die;
113 while (defined($line = <SYMS
>)) {
114 my ($addr, $type, $sym, $mod) = split(/\s+/, $line);
115 if ($sym eq $symarg) { print $addr; last; }
123 'combine' => \
&do_combine
,
124 'finalize' => \
&do_finalize
,
125 'rmsyms' => \
&do_rmsyms
,
126 'system_map_lookup' => \
&do_system_map_lookup
,
129 my ($cmd, @args) = @ARGV;
130 if (exists $handlers{$cmd}) {
131 my $handler = $handlers{$cmd};
134 print "Usage: ksplice-obj.pl ", join('|', keys %handlers), " ...\n";