-
Notifications
You must be signed in to change notification settings - Fork 2
/
dpkg-scanpackages
292 lines (252 loc) · 8.04 KB
/
dpkg-scanpackages
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
#!/usr/bin/perl
use warnings;
use strict;
use IO::Handle;
use IO::File;
my $version="1.13.25"; # This line modified by Makefile
my $dpkglibdir="/usr/lib/dpkg"; # This line modified by Makefile
($0) = $0 =~ m:.*/(.+):;
push(@INC,$dpkglibdir);
require 'dpkg-gettext.pl';
textdomain("dpkg-dev");
my %kmap= (optional => 'suggests',
recommended => 'recommends',
class => 'priority',
package_revision => 'revision',
);
my @fieldpri= ('Package',
'Source',
'Version',
'Priority',
'Section',
'Essential',
'Maintainer',
'Pre-Depends',
'Depends',
'Recommends',
'Suggests',
'Conflicts',
'Provides',
'Replaces',
'Enhances',
'Architecture',
'Filename',
'Size',
'Installed-Size',
'MD5sum',
'Description',
'Origin',
'Bugs',
'Name',
'Author',
'Homepage',
'Website',
'Depiction',
'Icon'
);
# This maps the fields into the proper case
my %field_case;
@field_case{map{lc($_)} @fieldpri} = @fieldpri;
use Getopt::Long qw(:config bundling);
my %options = (help => sub { &usage; exit 0; },
version => \&version,
udeb => 0,
arch => undef,
multiversion => 0,
);
my $result = GetOptions(\%options,'help|h|?','version','udeb|u!','arch|a=s','multiversion|m!');
sub version {
printf _g("Debian %s version %s.\n"), $0, $version;
exit;
}
sub usage {
printf _g(
"Usage: %s [<option> ...] <binarypath> <overridefile> [<pathprefix>] > Packages
Options:
-u, --udeb scan for udebs.
-a, --arch <arch> architecture to scan for.
-m, --multiversion allow multiple versions of a single package.
-h, --help show this help message.
--version show the version.
"), $0;
}
&usage and exit 1 if not $result and (@ARGV < 2);
my $udeb = $options{udeb};
my $arch = $options{arch};
my $ext = $options{udeb} ? 'udeb' : 'deb';
my @find_args;
if ($options{arch}) {
@find_args = ('(','-name',"*_all.$ext",'-o','-name',"*_${arch}.$ext",')',);
}
else {
@find_args = ('-name',"*.$ext");
}
push @find_args, '-follow';
my ($binarydir, $override, $pathprefix) = @ARGV;
-d $binarydir or die sprintf(_g("Binary dir %s not found"),
$binarydir)."\n";
-e $override or die sprintf(_g("Override file %s not found"),
$override)."\n";
$pathprefix = '' if not defined $pathprefix;
our %vercache;
sub vercmp {
my ($a,$b)=@_;
return $vercache{$a}{$b} if exists $vercache{$a}{$b};
system('dpkg','--compare-versions',$a,'le',$b);
$vercache{$a}{$b}=$?;
return $?;
}
my %packages;
my $find_h = new IO::Handle;
open($find_h,'-|','find',"$binarydir/",@find_args,'-print')
or die sprintf(_g("Couldn't open %s for reading: %s"),
$binarydir, $!)."\n";
FILE:
while (<$find_h>) {
chomp;
my $fn = $_;
my $control = `dpkg-deb -I $fn control`;
if ($control eq "") {
warn sprintf(_g("Couldn't call dpkg-deb on %s: %s, skipping package"), $fn, $!)."\n";
next;
}
if ($?) {
warn sprintf(_g("\`dpkg-deb -I %s control' exited with %d, skipping package"), $fn, $?)."\n";
next;
}
my %tv = ();
my $temp = $control;
while ($temp =~ s/^\n*(\S+):[ \t]*(.*(\n[ \t].*)*)\n//) {
my ($key,$value)= (lc $1,$2);
if (defined($kmap{$key})) { $key= $kmap{$key}; }
if (defined($field_case{$key})) { $key= $field_case{$key}; }
$value =~ s/\s+$//;
$tv{$key}= $value;
}
$temp =~ /^\n*$/
or die sprintf(_g("Unprocessed text from %s control file; info:\n%s / %s\n"), $fn, $control, $temp);
defined($tv{'Package'})
or die sprintf(_g("No Package field in control file of %s"), $fn)."\n";
my $p= $tv{'Package'}; delete $tv{'Package'};
if (defined($packages{$p}) and not $options{multiversion}) {
foreach (@{$packages{$p}}) {
if (&vercmp($tv{'Version'}, $_->{'Version'})) {
printf(STDERR _g(
" ! Package %s (filename %s) is repeat but newer version;\n".
" used that one and ignored data from %s !\n"), $p, $fn, $_->{Filename})
|| die $!;
$packages{$p} = [];
} else {
printf(STDERR _g(
" ! Package %s (filename %s) is repeat;\n".
" ignored that one and using data from %s !\n"), $p, $fn, $_->{Filename})
or die $!;
next FILE;
}
}
}
printf(STDERR _g(" ! Package %s (filename %s) has Filename field!\n"), $p, $fn) || die $!
if defined($tv{'Filename'});
$tv{'Filename'}= "$pathprefix$fn";
open(C,"md5 <$fn |") || die "$fn $!";
chop($_=<C>); close(C); $? and die sprintf(_g("\`md5 < %s' exited with %d"), $fn, $?)."\n";
/^([0-9a-f]{32})\s*-?\s*$/ or die sprintf(_g("Strange text from \`md5 < %s': \`%s'"), $fn, $_)."\n";
$tv{'MD5sum'}= $1;
my @stat= stat($fn) or die sprintf(_g("Couldn't stat %s: %s"), $fn, $!)."\n";
$stat[7] or die sprintf(_g("%s is empty"), $fn)."\n";
$tv{'Size'}= $stat[7];
if (defined $tv{Revision} and length($tv{Revision})) {
$tv{Version}.= '-'.$tv{Revision};
delete $tv{Revision};
}
push @{$packages{$p}}, {%tv};
}
close($find_h);
select(STDERR); $= = 1000; select(STDOUT);
sub writelist {
my $title= shift(@_);
return unless @_;
print(STDERR " $title\n") || die $!;
my $packages= join(' ',sort @_);
format STDERR =
^<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
$packages
.
while (length($packages)) { write(STDERR) || die $!; }
print(STDERR "\n") || die $!;
}
my (@samemaint,@changedmaint);
my %overridden;
my $override_fh = new IO::File $override,'r'
or die sprintf(_g("Couldn't open override file %s: %s"), $override, $!)."\n";
while (<$override_fh>) {
s/\#.*//;
s/\s+$//;
next unless $_;
my ($p,$priority,$section,$maintainer)= split(/\s+/,$_,4);
next unless defined($packages{$p});
for my $package (@{$packages{$p}}) {
if ($maintainer) {
if ($maintainer =~ m/(.+?)\s*=\>\s*(.+)/) {
my $oldmaint= $1;
my $newmaint= $2;
my $debmaint= $$package{Maintainer};
if (!grep($debmaint eq $_, split(m:\s*//\s*:, $oldmaint))) {
push(@changedmaint,
" $p (package says $$package{Maintainer}, not $oldmaint)\n");
} else {
$$package{Maintainer}= $newmaint;
}
} elsif ($$package{Maintainer} eq $maintainer) {
push(@samemaint," $p ($maintainer)\n");
} else {
printf(STDERR _g(" * Unconditional maintainer override for %s *")."\n", $p) || die $!;
$$package{Maintainer}= $maintainer;
}
}
$$package{Priority}= $priority;
$$package{Section}= $section;
}
$overridden{$p} = 1;
}
close($override_fh);
my @missingover=();
my $records_written = 0;
for my $p (sort keys %packages) {
if (not defined($overridden{$p})) {
push(@missingover,$p);
}
for my $package (@{$packages{$p}}) {
my $record= "Package: $p\n";
for my $key (@fieldpri) {
next unless defined $$package{$key};
$record .= "$key: $$package{$key}\n";
}
$record .= "\n";
$records_written++;
print(STDOUT $record) or die sprintf(_g("Failed when writing stdout: %s"), $!)."\n";
}
}
close(STDOUT) or die sprintf(_g("Couldn't close stdout: %s"), $!)."\n";
my @spuriousover= grep(!defined($packages{$_}),sort keys %overridden);
&writelist(_g("** Packages in archive but missing from override file: **"),
@missingover);
if (@changedmaint) {
print(STDERR
_g(" ++ Packages in override file with incorrect old maintainer value: ++")."\n",
@changedmaint,
"\n") || die $!;
}
if (@samemaint) {
print(STDERR
_g(" -- Packages specifying same maintainer as override file: --")."\n",
@samemaint,
"\n") || die $!;
}
if (@spuriousover) {
print(STDERR
_g(" -- Packages in override file but not in archive: --")."\n",
@spuriousover,
"\n") || die $!;
}
printf(STDERR _g(" Wrote %s entries to output Packages file.")."\n", $records_written) || die $!;