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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
|
# ex:ts=8 sw=4:
# $OpenBSD: Replace.pm,v 1.67 2009/12/29 20:34:10 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
use strict;
use warnings;
use OpenBSD::Delete;
package OpenBSD::PackingElement;
sub can_update
{
my ($self, $installing, $state) = @_;
my $issue = $self->update_issue($installing);
if (defined $issue) {
push(@{$state->{journal}}, $issue);
}
}
sub update_issue { undef }
sub extract
{
my ($self, $state) = @_;
$state->{partial}->{$self} = 1;
}
sub mark_lib
{
}
sub unmark_lib
{
}
sub separate_element
{
my ($self, $libs, $c1, $c2) = @_;
$c2->{$self} = 1;
}
sub extract_and_progress
{
my ($self, $state, $donesize, $totsize) = @_;
$self->extract($state);
if ($state->{interrupted}) {
die "Interrupted";
}
$self->mark_progress($state->progress, $donesize, $totsize);
}
package OpenBSD::PackingElement::Meta;
sub separate_element
{
my ($self, $libs, $c1, $c2) = @_;
$c1->{$self} = 1;
$c2->{$self} = 1;
}
package OpenBSD::PackingElement::DigitalSignature;
sub separate_element
{
my ($self, $libs, $c1, $c2) = @_;
$c2->{$self} = 1;
}
package OpenBSD::PackingElement::State;
sub separate_element
{
&OpenBSD::PackingElement::Meta::separate_element;
}
package OpenBSD::PackingElement::FileBase;
use OpenBSD::Temp;
sub extract
{
my ($self, $state) = @_;
my $file = $self->prepare_to_extract($state);
if (defined $self->{link} || defined $self->{symlink}) {
$state->{archive}->skip;
return;
}
$self->SUPER::extract($state);
# figure out a safe directory where to put the temp file
my $d = dirname($file->{destdir}.$file->name);
# we go back up until we find an existing directory.
# hopefully this will be on the same file system.
while (!-d $d && -e _ || defined $state->{noshadow}->{$d}) {
$d = dirname($d);
}
if ($state->{not}) {
$state->say("extracting tempfile under $d")
if $state->verbose >= 3;
$state->{archive}->skip;
} else {
if (!-e _) {
File::Path::mkpath($d);
}
my ($fh, $tempname) = OpenBSD::Temp::permanent_file($d, "pkg");
$state->say("extracting $tempname") if $state->verbose >= 3;
$self->{tempname} = $tempname;
# XXX don't apply destdir twice
$file->{destdir} = '';
$file->set_name($tempname);
$file->create;
$self->may_check_digest($file, $state);
}
}
package OpenBSD::PackingElement::Dir;
sub extract
{
my ($self, $state) = @_;
my $fullname = $self->fullname;
my $destdir = $state->{destdir};
return if -e $destdir.$fullname;
$self->SUPER::extract($state);
$state->say("new directory ", $destdir, $fullname)
if $state->verbose >= 3;
return if $state->{not};
File::Path::mkpath($destdir.$fullname);
}
package OpenBSD::PackingElement::Sample;
sub extract
{
}
package OpenBSD::PackingElement::Sampledir;
sub extract
{
}
package OpenBSD::PackingElement::ScriptFile;
sub update_issue
{
my ($self, $installing) = @_;
return $self->name." script";
}
package OpenBSD::PackingElement::FINSTALL;
sub update_issue
{
my ($self, $installing) = @_;
return if !$installing;
return $self->SUPER::update_issue($installing);
}
package OpenBSD::PackingElement::FDEINSTALL;
sub update_issue
{
my ($self, $installing) = @_;
return if $installing;
return $self->SUPER::update_issue($installing);
}
package OpenBSD::PackingElement::Exec;
sub update_issue
{
my ($self, $installing) = @_;
return if !$installing;
return '@'.$self->keyword.' '.$self->{expanded};
}
package OpenBSD::PackingElement::ExecAdd;
sub update_issue { undef }
package OpenBSD::PackingElement::Unexec;
sub update_issue
{
my ($self, $installing) = @_;
return if $installing;
return '@'.$self->keyword.' '.$self->{expanded};
}
package OpenBSD::PackingElement::UnexecDelete;
sub update_issue { undef }
package OpenBSD::PackingElement::Depend;
sub separate_element
{
&OpenBSD::PackingElement::separate_element;
}
package OpenBSD::PackingElement::SpecialFile;
sub separate_element
{
&OpenBSD::PackingElement::separate_element;
}
package OpenBSD::PackingElement::Dependency;
use OpenBSD::Error;
package OpenBSD::PackingElement::Lib;
sub mark_lib
{
my ($self, $libs, $libpatterns) = @_;
my $libname = $self->fullname;
my ($stem, $major, $minor, $dir) = $self->parse($libname);
if (defined $stem) {
$libpatterns->{$stem}->{$dir} = [$major, $minor, $libname];
}
$libs->{$libname} = 1;
}
sub separate_element
{
my ($self, $libs, $c1, $c2) = @_;
if ($libs->{$self->fullname}) {
$c1->{$self} = 1;
} else {
$c2->{$self} = 1;
}
}
sub unmark_lib
{
my ($self, $libs, $libpatterns) = @_;
my $libname = $self->fullname;
my ($stem, $major, $minor, $dir) = $self->parse($libname);
if (defined $stem) {
my $p = $libpatterns->{$stem}->{$dir};
if (defined $p && $p->[0] == $major && $p->[1] <= $minor) {
my $n = $p->[2];
delete $libs->{$n};
}
}
delete $libs->{$libname};
}
package OpenBSD::Replace;
use OpenBSD::RequiredBy;
use OpenBSD::PackingList;
use OpenBSD::PackageInfo;
use OpenBSD::Error;
sub perform_extraction
{
my ($handle, $state) = @_;
$handle->{partial} = {};
$state->{partial} = $handle->{partial};
my $totsize = $handle->{totsize};
$state->{archive} = $handle->{location};
my $donesize = 0;
$state->{donesize} = 0;
$handle->{plist}->extract_and_progress($state, \$donesize, $totsize);
}
sub check_plist_exec
{
my ($plist, $state, $new) = @_;
$state->{journal} = [];
$plist->can_update($new, $state);
return 1 if @{$state->{journal}} == 0;
$state->errsay($new ? "New": "Old", " package ", $plist->pkgname,
" contains potentially unsafe operations");
for my $i (@{$state->{journal}}) {
$state->errsay("| ", $i);
}
return 0;
}
sub can_old_package_be_replaced
{
my ($plist, $state) = @_;
return check_plist_exec($plist, $state, 0);
}
sub is_new_package_safe
{
my ($plist, $state) = @_;
return check_plist_exec($plist, $state, 1);
}
sub is_set_safe
{
my ($set, $state) = @_;
my $ok = 1;
for my $pkg ($set->older) {
$ok = 0 unless can_old_package_be_replaced($pkg->plist, $state);
}
for my $pkg ($set->newer) {
$ok = 0 unless is_new_package_safe($pkg->plist, $state);
}
return 1 if $ok;
if ($state->{defines}->{update}) {
$state->errsay("Forcing update");
return 1;
} elsif ($state->{interactive}) {
if ($state->confirm("proceed with update anyways", 0)) {
return 1;
} else {
return 0;
}
} else {
$state->errsay("Cannot install ", $set->print,
" (use -F update)");
return 0;
}
}
sub split_some_libs
{
my ($plist, $libs) = @_;
my $c1 = {};
my $c2 = {};
$plist->separate_element($libs, $c1, $c2);
my $p1 = $plist->make_deep_copy($c1);
my $p2 = $plist->make_shallow_copy($c2);
return ($p1, $p2);
}
# create a packing-list with only the libraries we want to keep around.
sub split_libs
{
my ($plist, $to_split) = @_;
(my $splitted, $plist) = split_some_libs($plist, $to_split);
require OpenBSD::PackageInfo;
$splitted->set_pkgname(OpenBSD::PackageInfo::libs_package($plist->pkgname));
if (defined $plist->{'no-default-conflict'}) {
# we conflict with the package we just removed...
OpenBSD::PackingElement::Conflict->add($splitted, $plist->pkgname);
} else {
require OpenBSD::PackageName;
my $stem = OpenBSD::PackageName::splitstem($plist->pkgname);
OpenBSD::PackingElement::Conflict->add($splitted, $stem."-*");
}
return ($plist, $splitted);
}
sub adjust_depends_closure
{
my ($oldname, $plist, $state) = @_;
$state->say("Packages that depend on those shared libraries:")
if $state->verbose >= 3;
my $write = OpenBSD::RequiredBy->new($plist->pkgname);
for my $pkg (OpenBSD::RequiredBy->compute_closure($oldname)) {
$state->say("\t", $pkg) if $state->verbose >= 3;
$write->add($pkg);
my $r = OpenBSD::Requiring->new($pkg)->add($plist->pkgname);
if ($oldname =~ m/^\.libs\d*\-/o) {
$r->delete($oldname);
}
}
}
sub do_save_libs
{
my ($o, $libs, $state) = @_;
my $oldname = $o->pkgname;
($o->{plist}, my $stub_list) = split_libs($o->plist, $libs);
my $stub_name = $stub_list->pkgname;
my $dest = installed_info($stub_name);
$state->say("Keeping them in $stub_name")
if $state->verbose >= 2;
if ($state->{not}) {
require OpenBSD::SharedLibs;
OpenBSD::SharedLibs::add_libs_from_plist($stub_list);
$stub_list->to_cache;
$o->plist->to_cache;
} else {
mkdir($dest);
open my $descr, '>', $dest.DESC;
print $descr "Stub libraries for $oldname\n";
close $descr;
my $f = OpenBSD::PackingElement::FDESC->add($stub_list, DESC);
$f->{ignore} = 1;
$f->add_digest($f->compute_digest($dest.DESC));
$stub_list->to_installation;
$o->plist->to_installation;
}
add_installed($stub_name);
require OpenBSD::PkgCfl;
OpenBSD::PkgCfl::register($stub_list, $state);
adjust_depends_closure($oldname, $stub_list, $state);
}
sub save_libs_from_handle
{
my ($o, $set, $state) = @_;
my $libs = {};
my $p = {};
$state->say("Looking for changes in shared libraries")
if $state->verbose >= 2;
$o->plist->mark_lib($libs, $p);
for my $n ($set->newer) {
$n->plist->unmark_lib($libs, $p);
}
for my $n ($set->kept) {
$n->plist->unmark_lib($libs, $p);
}
if (%$libs) {
$state->say("Libraries to keep: ",
join(",", sort(keys %$libs))) if $state->verbose >= 2;
do_save_libs($o, $libs, $state);
} else {
$state->say("No libraries to keep") if $state->verbose >= 2;
}
}
sub save_old_libraries
{
my ($set, $state) = @_;
for my $o ($set->older) {
save_libs_from_handle($o, $set, $state);
}
}
1;
|