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
|
# ex:ts=8 sw=4:
# $OpenBSD: Ustar.pm,v 1.12 2004/11/01 15:44:11 espie Exp $
#
# Copyright (c) 2002-2004 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.
# Handle utar archives
use strict;
use warnings;
package OpenBSD::Ustar;
use constant FILE => "\0";
use constant FILE1 => '0';
use constant HARDLINK => '1';
use constant SOFTLINK => '2';
use constant CHARDEVICE => '3';
use constant BLOCKDEVICE => '4';
use constant DIR => '5';
use constant FIFO => '6';
use constant CONTFILE => '7';
use constant USTAR_HEADER => 'a100a8a8a8a12a12a8aa100a6a2a32a32a8a8a155';
use File::Path ();
use File::Basename ();
use OpenBSD::IdCache;
my $uidcache = new OpenBSD::UidCache;
my $gidcache = new OpenBSD::GidCache;
my $buffsize = 2 * 1024 * 1024;
sub new
{
my ($class, $fh, $destdir) = @_;
$destdir = '' unless defined $destdir;
return bless { fh => $fh, swallow => 0, destdir => $destdir} , $class;
}
sub skip
{
my $self = shift;
return if $self->{swallow} == 0;
my $temp;
while ($self->{swallow} > $buffsize) {
read($self->{fh}, $temp, $buffsize);
$self->{swallow} -= $buffsize;
}
read($self->{fh}, $temp, $self->{swallow});
$self->{swallow} = 0;
}
sub next
{
my $self = shift;
# get rid of the current object
$self->skip();
my $header;
my $n = read $self->{fh}, $header, 512;
return undef if $n == 0;
die "Error while reading header"
unless defined $n and $n == 512;
if ($header eq "\0"x512) {
return $self->next();
}
# decode header
my ($name, $mode, $uid, $gid, $size, $mtime, $chksum, $type,
$linkname, $magic, $version, $uname, $gname, $major, $minor,
$prefix) = unpack(USTAR_HEADER, $header);
if ($magic ne "ustar\0" || $version ne '00') {
die "Not an ustar archive header";
}
# verify checksum
my $value = $header;
substr($value, 148, 8) = " "x8;
my $ck2 = unpack("%C*", $value);
if ($ck2 != oct($chksum)) {
die "Bad archive checksum";
}
$name =~ s/\0*$//;
$mode = oct($mode) & 0xfff;
$uname =~ s/\0*$//;
$gname =~ s/\0*$//;
$linkname =~ s/\0*$//;
$uid = oct($uid);
$gid = oct($gid);
$uid = $uidcache->lookup($uname, $uid);
$gid = $gidcache->lookup($gname, $gid);
$mtime = oct($mtime);
unless ($prefix =~ m/^\0/) {
$prefix =~ s/\0*$//;
$name = "$prefix/$name";
}
$size = oct($size);
my $result= {
name => $name,
mode => $mode,
mtime=> $mtime,
linkname=> $linkname,
uname => $uname,
uid => $uid,
gname => $gname,
gid => $gid,
size => $size,
archive => $self,
destdir => $self->{destdir}
};
# adjust swallow
$self->{swallow} = $size;
if ($size % 512) {
$self->{swallow} += 512 - $size % 512;
}
if ($type eq DIR) {
bless $result, 'OpenBSD::Ustar::Dir';
} elsif ($type eq HARDLINK) {
bless $result, 'OpenBSD::Ustar::HardLink';
} elsif ($type eq SOFTLINK) {
bless $result, 'OpenBSD::Ustar::SoftLink';
} elsif ($type eq FILE || $type eq FILE1) {
bless $result, 'OpenBSD::Ustar::File';
} else {
die "Unsupported type";
}
return $result;
}
package OpenBSD::Ustar::Object;
sub set_modes
{
my $self = shift;
chown $self->{uid}, $self->{gid}, $self->{destdir}.$self->{name};
chmod $self->{mode}, $self->{destdir}.$self->{name};
utime $self->{mtime}, $self->{mtime}, $self->{destdir}.$self->{name};
}
sub make_basedir
{
my $self = shift;
my $dir = $self->{destdir}.File::Basename::dirname($self->{name});
File::Path::mkpath($dir) unless -d $dir;
}
sub isDir() { 0 }
sub isFile() { 0 }
sub isLink() { 0 }
sub isSymLink() { 0 }
sub isHardLink() { 0 }
package OpenBSD::Ustar::Dir;
our @ISA=qw(OpenBSD::Ustar::Object);
sub create
{
my $self = shift;
File::Path::mkpath($self->{destdir}.$self->{name});
$self->SUPER::set_modes();
}
sub isDir() { 1 }
package OpenBSD::Ustar::HardLink;
our @ISA=qw(OpenBSD::Ustar::Object);
sub create
{
my $self = shift;
$self->make_basedir($self->{name});
my $linkname = $self->{linkname};
if (defined $self->{cwd}) {
$linkname=$self->{cwd}.'/'.$linkname;
}
link $self->{destdir}.$linkname, $self->{destdir}.$self->{name} or
die "Can't link $self->{destdir}$linkname to $self->{destdir}$self->{name}: $!";
}
sub isLink() { 1 }
sub isHardLink() { 1 }
package OpenBSD::Ustar::SoftLink;
our @ISA=qw(OpenBSD::Ustar::Object);
sub create
{
my $self = shift;
$self->make_basedir($self->{name});
symlink $self->{linkname}, $self->{destdir}.$self->{name} or
die "Can't symlink $self->{linkname} to $self->{destdir}$self->{name}: $!";
}
sub isLink() { 1 }
sub isSymLink() { 1 }
package OpenBSD::Ustar::File;
our @ISA=qw(OpenBSD::Ustar::Object);
sub create
{
my $self = shift;
$self->make_basedir($self->{name});
open (my $out, '>', $self->{destdir}.$self->{name});
if (!defined $out) {
die "Can't write to $self->{destdir}$self->{name}: $!";
}
my $buffer;
my $toread = $self->{size};
while ($toread > 0) {
my $maxread = $buffsize;
$maxread = $toread if $maxread > $toread;
if (!defined read($self->{archive}->{fh}, $buffer, $maxread)) {
die "Error reading from archive: $!";
}
$self->{archive}->{swallow} -= $maxread;
unless (print $out $buffer) {
die "Error writing to $self->{destdir}$self->{name}: $!";
}
$toread -= $maxread;
}
$out->close() or die "Error closing $self->{destdir}$self->{name}: $!";
$self->SUPER::set_modes();
}
sub isFile() { 1 }
1;
|