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
|
# ex:ts=8 sw=4:
# $OpenBSD: SharedItems.pm,v 1.32 2014/11/20 14:10:18 espie Exp $
#
# Copyright (c) 2004-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::SharedItems;
use OpenBSD::Error;
use OpenBSD::PackageInfo;
use OpenBSD::PackingList;
use OpenBSD::Paths;
sub find_items_in_installed_packages
{
my $state = shift;
my $db = OpenBSD::SharedItemsRecorder->new;
$state->status->what("Read")->object("shared items");
$state->progress->for_list("Read shared items", [installed_packages()],
sub {
my $e = shift;
my $plist = OpenBSD::PackingList->from_installation($e,
\&OpenBSD::PackingList::SharedItemsOnly) or return;
return if !defined $plist;
$plist->record_shared($db, $e);
});
return $db;
}
sub check_shared
{
my ($set, $o) = @_;
if (!defined $set->{db}) {
$set->{db} = OpenBSD::SharedItemsRecorder->new;
for my $pkg (installed_packages()) {
next if $set->{older}{$pkg};
my $plist = OpenBSD::PackingList->from_installation($pkg,
\&OpenBSD::PackingList::SharedItemsOnly) or next;
next if !defined $plist;
$plist->record_shared($set->{db}, $pkg);
}
}
if (defined $set->{db}{dirs}{$o->fullname}) {
return 1;
} else {
push(@{$set->{old_shared}{$o->fullname}}, $o);
return 0;
}
}
sub wipe_directory
{
my ($state, $h, $d) = @_;
my $realname = $state->{destdir}.$d;
for my $i (@{$h->{$d}}) {
$i->cleanup($state);
}
if (!rmdir $realname) {
$state->log("Error deleting directory #1: #2",
$realname, $!)
unless $state->{dirs_okay}{$d};
return 0;
}
return 1;
}
sub cleanup
{
my ($recorder, $state) = @_;
my $remaining = find_items_in_installed_packages($state);
$state->progress->clear;
$state->status->what("Clean");
$state->progress->set_header("Clean shared items");
my $h = $recorder->{dirs};
my $u = $recorder->{users};
my $g = $recorder->{groups};
my $total = 0;
$total += keys %$h if defined $h;
$total += keys %$u if defined $u;
$total += keys %$g if defined $g;
my $done = 0;
for my $d (sort {$b cmp $a} keys %$h) {
$state->progress->show($done, $total);
my $realname = $state->{destdir}.$d;
if (defined $remaining->{dirs}{$realname}) {
for my $i (@{$h->{$d}}) {
$state->log->set_context('-'.$i->{pkgname});
$i->reload($state);
}
} else {
wipe_directory($state, $h, $d);
}
$done++;
}
while (my ($user, $pkgname) = each %$u) {
$state->progress->show($done, $total);
next if $remaining->{users}{$user};
if ($state->{extra}) {
$state->system(OpenBSD::Paths->userdel, '--',
$user);
} else {
$state->log->set_context('-'.$pkgname);
$state->log("You should also run /usr/sbin/userdel #1", $user);
}
$done++;
}
while (my ($group, $pkgname) = each %$g) {
$state->progress->show($done, $total);
next if $remaining->{groups}{$group};
if ($state->{extra}) {
$state->system(OpenBSD::Paths->groupdel, '--',
$group);
} else {
$state->log->set_context('-'.$pkgname);
$state->log("You should also run /usr/sbin/groupdel #1", $group);
}
$done++;
}
if ($state->verbose >= 2) {
$state->progress->next;
} else {
$state->progress->clear;
}
}
package OpenBSD::PackingElement;
sub cleanup
{
}
sub reload
{
}
package OpenBSD::PackingElement::Mandir;
sub cleanup
{
my ($self, $state) = @_;
my $fullname = $state->{destdir}.$self->fullname;
$state->log->set_context('-'.$self->{pkgname});
$state->log("You may wish to remove #1 from man.conf", $fullname);
for my $f (OpenBSD::Paths->man_cruft) {
unlink("$fullname/$f");
}
}
package OpenBSD::PackingElement::Fontdir;
sub cleanup
{
my ($self, $state) = @_;
my $fullname = $state->{destdir}.$self->fullname;
$state->log->set_context('-'.$self->{pkgname});
$state->log("You may wish to remove #1 from your font path", $fullname);
for my $f (OpenBSD::Paths->font_cruft) {
unlink("$fullname/$f");
}
}
package OpenBSD::PackingElement::Infodir;
sub cleanup
{
my ($self, $state) = @_;
my $fullname = $state->{destdir}.$self->fullname;
for my $f (OpenBSD::Paths->info_cruft) {
unlink("$fullname/$f");
}
}
1;
|