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
|
# ex:ts=8 sw=4:
# $OpenBSD: CollisionReport.pm,v 1.10 2007/04/15 10:17:29 espie Exp $
#
# Copyright (c) 2003-2006 Marc Espie <espie@openbsd.org>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
use strict;
use warnings;
package OpenBSD::CollisionReport;
use OpenBSD::PackingList;
use OpenBSD::PackageInfo;
use OpenBSD::Vstat;
sub collision_report($$)
{
my ($list, $state) = @_;
my %todo = map {($_->fullname(), $_->{md5})} @$list;
my $bypkg = {};
my $clueless_bat = 0;
my $clueless_bat2 = 0;
print "Collision: the following files already exist\n";
for my $name (keys %todo) {
my $p = OpenBSD::Vstat::vexists $name;
if (ref $p) {
my $pkg = $$p;
$bypkg->{$pkg} = [] unless defined $bypkg->{$pkg};
push(@{$bypkg->{$pkg}}, $name);
delete $todo{$name};
}
}
if (%todo) {
BIGLOOP: {
for my $pkg (installed_packages()) {
print "Looking for collisions in $pkg\n" if $state->{verbose};
my $plist = OpenBSD::PackingList->from_installation($pkg,
\&OpenBSD::PackingList::FilesOnly);
for my $item (@{$plist->{items}}) {
next unless $item->IsFile();
my $name = $item->fullname();
if (defined $todo{$name}) {
$bypkg->{$pkg} = [] unless defined $bypkg->{$pkg};
push(@{$bypkg->{$pkg}}, $name);
delete $todo{$name};
last BIGLOOP if !%todo;
}
}
}
}
}
for my $pkg (sort keys %$bypkg) {
for my $item (sort @{$bypkg->{$pkg}}) {
print "\t$item ($pkg)\n";
}
if ($pkg =~ m/^(?:partial\-|borked\.\d+$)/) {
$clueless_bat = $pkg;
}
if ($pkg =~ m/^\.libs-*$/) {
$clueless_bat2 = $pkg;
}
}
if (%todo) {
require OpenBSD::md5;
my $destdir = $state->{destdir};
for my $item (sort keys %todo) {
if (defined $todo{$item}) {
my $md5 = OpenBSD::md5::fromfile($destdir.$item);
if ($md5 eq $todo{$item}) {
print "\t$item (same md5)\n";
} else {
print "\t$item (different md5)\n";
}
} else {
print "\t$item\n";
}
}
}
if ($clueless_bat) {
print "The package name $clueless_bat suggests that a former installation\n";
print "of a similar package got interrupted. It is likely that\n";
print "\tpkg_delete $clueless_bat\n";
print "will solve the problem\n";
}
if ($clueless_bat2) {
print "The package name $clueless_bat2 suggests remaining libraries\n";
print "from a former package update. It is likely that\n";
print "\tpkg_delete $clueless_bat2\n";
print "will solve the problem\n";
}
}
1;
|