summaryrefslogtreecommitdiff
path: root/usr.sbin/pkg_add/OpenBSD/Error.pm
blob: 7905d763cf74d4bd761bbbe3e86f0950b246d9af (plain)
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
# ex:ts=8 sw=4:
# $OpenBSD: Error.pm,v 1.40 2019/07/24 18:05:26 espie Exp $
#
# Copyright (c) 2004-2010 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;

# this is a set of common classes related to error handling in pkg land

package OpenBSD::Auto;
sub cache(*&)
{
	my ($sym, $code) = @_;
	my $callpkg = caller;
	my $actual = sub {
		my $self = shift;
		return $self->{$sym} //= &$code($self);
	};
	no strict 'refs';
	*{$callpkg."::$sym"} = $actual;
}

package OpenBSD::SigHandler;

# instead of "local" sighandlers, let's do objects that revert
# to their former state afterwards
sub new
{
	my $class = shift;
	# keep previous state
	bless {}, $class;
}


sub DESTROY
{
	my $self = shift;
	while (my ($s, $v) = each %$self) {
		$SIG{$s} = $v;
	}
}

sub set
{
	my $self = shift;
	my $v = pop;
	for my $s (@_) {
		$self->{$s} = $SIG{$s};
		$SIG{$s} = $v;
	}
	return $self;
}

sub intercept
{
	my $self = shift;
	my $v = pop;
	return $self->set(@_, 
	    sub { 
		my $sig = shift; 
		&$v($sig); 
		$SIG{$sig} = $self->{$sig}; 
		kill -$sig, $$; 
	    });
}

package OpenBSD::Handler;

# a bunch of other modules create persistent state that must be cleaned up
# on exit (temporary files, network connections to abort properly...)
# END blocks would do that (but see below...) but sig handling bypasses that,
# so we MUST install SIG handlers.

# note that END will be run for *each* process, so beware!
# (temp files are registered per pid, for instance, so they only
# get cleaned when the proper pid is used)
# hash of code to run on ANY exit

# hash of code to run on ANY exit
my $atend = {};
# hash of code to run on fatal signals
my $cleanup = {};

sub cleanup
{
	my ($class, $sig) = @_;
	# XXX note that order of cleanup is "unpredictable"
	for my $v (values %$cleanup) {
		&$v($sig);
	}
}

END {
	# XXX localize $? so that cleanup doesn't fuck up our exit code
	local $?;
	for my $v (values %$atend) {
		&$v();
	}
}

# register each code block "by name" so that we can re-register each
# block several times
sub register
{
	my ($class, $code) = @_;
	$cleanup->{$code} = $code;
}

sub atend
{
	my ($class, $code) = @_;
	$cleanup->{$code} = $code;
	$atend->{$code} = $code;
}

my $handler = sub {
	my $sig = shift;
	__PACKAGE__->cleanup($sig);
	# after cleanup, just propagate the signal
	$SIG{$sig} = 'DEFAULT';
	kill $sig, $$;
};

sub reset
{
	for my $sig (qw(INT QUIT HUP KILL TERM)) {
		$SIG{$sig} = $handler;
	}
}

__PACKAGE__->reset;

package OpenBSD::Error;
require Exporter;
our @ISA=qw(Exporter);
our @EXPORT=qw(try throw catch rethrow INTetc);


our ($FileName, $Line, $FullMessage);

our @INTetc = (qw(INT QUIT HUP TERM));

use Carp;
sub dienow
{
	my ($error, $handler) = @_;
	if ($error) {
		if ($error =~ m/^(.*?)(?:\s+at\s+(.*)\s+line\s+(\d+)\.?)?$/o) {
			local $_ = $1;
			$FileName = $2;
			$Line = $3;
			$FullMessage = $error;

			$handler->exec($error, $1, $2, $3);
		} else {
			die "Fatal error: can't parse $error";
		}
	}
}

sub try(&@)
{
	my ($try, $catch) = @_;
	eval { &$try };
	dienow($@, $catch);
}

sub throw
{
	croak @_;

}

sub rethrow
{
	my $e = shift;
	die $e if $e;
}

sub catch(&)
{
		bless $_[0], "OpenBSD::Error::catch";
}

sub rmtree
{
	my $class = shift;
	require File::Path;
	require Cwd;

	# XXX make sure we live somewhere
	Cwd::getcwd() || chdir('/');

	File::Path::rmtree(@_);
}

package OpenBSD::Error::catch;
sub exec
{
	my ($self, $full, $e) = @_;
	&$self;
}

1;