forked from openSUSE/obs-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
computeblocklists
executable file
·167 lines (156 loc) · 4.01 KB
/
computeblocklists
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
#!/usr/bin/perl -w
# compute the blocks used by a file
# usage:
# computeblocklists [options] <files...>
# options:
# --padstart NUM, --padend NUM, --verbose
#
# output:
# <file base name> <size> <blocksize> <block numbers...>
#
# a block is either a number or a range (start-end)
#
use strict;
my ($opt_padstart, $opt_padend, $opt_verbose, $opt_manifest, $opt_mani0);
$opt_verbose = 0;
while (@ARGV) {
if ($ARGV[0] eq '--padstart') {
shift @ARGV;
$opt_padstart = shift @ARGV;
next;
}
if ($ARGV[0] eq '--padend') {
shift @ARGV;
$opt_padend = shift @ARGV;
next;
}
if ($ARGV[0] eq '--verbose' || $ARGV[0] eq '-v') {
shift @ARGV;
$opt_verbose++;
next;
}
if ($ARGV[0] eq '-0') {
shift @ARGV;
$opt_mani0 = 1;
next;
}
if ($ARGV[0] eq '--manifest') {
shift @ARGV;
$opt_manifest = shift @ARGV;
next;
}
last;
}
print "\n"x$opt_padstart if $opt_padstart;
if ($opt_manifest) {
if ($opt_manifest eq '-') {
open(MANIFEST, '<&STDIN') || die("STDIN dup: $!\n");
} else {
open(MANIFEST, '<', $opt_manifest) || die("$opt_manifest: $!\n");
}
}
while (1) {
my $file;
if (@ARGV) {
$file = shift @ARGV;
} elsif ($opt_manifest) {
if ($opt_mani0) {
local $/ = "\0";
$file = <MANIFEST>;
last unless defined $file;
$file =~ s/\0$//s;
} else {
$file = <MANIFEST>;
last unless defined $file;
chomp $file;
}
} else {
last;
}
my $n = $file;
$n =~ s/([\000-\037 %])/sprintf("%%%02X", ord($1))/ges;
if (-l $file) {
print STDERR "$file\n" if $opt_verbose && !($opt_verbose == 1 && $file =~ /^KIWI\/.*\//);
my $c = readlink($file);
die("$file: readlink: $!\n") unless defined $c;
if ("/$c/" =~ /\/\.?\//s) {
print STDERR "$file: bad symlink ($c) ignored\n";
next;
}
if ("/$c/" =~ /^(\/\.\.)+\/(.*?)$/s) {
my ($head, $tail) = ($1, $2);
if (("/$tail/" =~ /\/\.\.\//s) || (($head =~ y!/!!) > ($file =~ y!/!!))) {
print STDERR "$file: bad symlink ($c) ignored\n";
next;
}
} else {
if ("/$c/" =~ /\/\.\.\//s) {
print STDERR "$file: bad symlink ($c) ignored\n";
next;
}
}
$c =~ s/([\000-\037 %])/sprintf("%%%02X", ord($1))/ges;
print "l $n $c\n";
next;
} elsif (-d _) {
print STDERR "$file\n" if $opt_verbose && $opt_verbose > 1;
my @stat = stat(_);
print "d $n\n";
next;
} elsif (!-f _) {
next;
}
print STDERR "$file\n" if $opt_verbose && !($opt_verbose == 1 && $file =~ /^KIWI\/.*\//);
if (!open(F, '<', $file)) {
print STDERR "$file: $!";
next;
}
my @stat = stat(F);
die unless @stat;
my $st_size = $stat[7];
if ($st_size == 0) {
print "f $n 0\n";
close F;
next;
}
my $bsize = 'xxxx';
ioctl(F, 2, $bsize) || ioctl(F, 536870914, $bsize) || die("FIGETBSZ: $!\n");
$bsize = unpack("L", $bsize);
die("$file: empty blocksize\n") unless $bsize != 0;
print "f $n $st_size $bsize";
my $blocks = int(($st_size+$bsize-1)/$bsize);
my ($firstblock, $lastblock);
for ($b = 0; $b < $blocks; ++$b) {
my $block = pack('I', $b);
if (not defined ioctl(F, 1, $block)) {
if (not defined ioctl(F, 536870913, $block)) {
die "$file: $!\n";
}
}
$block = unpack('I', $block);
if (!$firstblock && defined($firstblock)) {
# last block was hole
if (!$block) {
$lastblock++; # count holes, 0-2 means three hole blocks
} else {
# switch back from 'hole mode' into normal mode
printf "-$lastblock" if defined($firstblock) && $firstblock != $lastblock;
print " $block";
$firstblock = $lastblock = $block;
}
next;
}
if (!$firstblock || $lastblock + 1 != $block) {
# start of a new run
printf "-$lastblock" if defined($firstblock) && $firstblock != $lastblock;
print " $block";
$firstblock = $block;
}
$lastblock = $block;
}
# finish last run
printf "-$lastblock" if defined($firstblock) && $firstblock != $lastblock;
close F;
print "\n";
}
print "\n"x$opt_padend if $opt_padend;