-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdb-walk
executable file
·194 lines (160 loc) · 4.22 KB
/
db-walk
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
#!/usr/bin/perl -w
#
# Copyright (c) 2000-2001 Silicon Graphics, Inc. All Rights Reserved.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it would be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
#
# use db to try to traverse the entire filesystem starting at the root
#
# dxm 5/10/00
my $device;
my $rootino;
my $agcount;
my $versionnum;
my $dir_version;
my @dir_inodes;
my @bmap_blocks;
my @block_inodes;
my $mode;
sub db($)
{
my ($args)=@_;
my ($ret);
$ret=`xfs_db -r $args $device 2> /dev/null`;
die "ERROR executing xfs_db -r $args $device" if ($?);
return $ret;
}
sub fmt($)
{
my ($text)=@_;
my $c=0;
print " ";
foreach (split("\n",$text)) {
s/^core\.//;
if ($c+length($_) >= 70) {
$c=0;
print ",\n ";
}
if ($c) {
print ", ";
$c+=2;
}
print "$_";
$c+=length($_)+2;
}
print "\n";
}
sub inode($)
{
my ($num)=@_;
my ($t);
@dir_inodes=();
$t=db("-c \"inode $num\" -c \"print\"");
print " *** Inode $num\n";
fmt($t);
($mode)= $t=~ /^core.mode = (\d+)$/m;
if ($t=~ /a\.bmx/m) {
bmap("inode $num","attr");
foreach (@bmap_blocks) {
attr_block($_);
}
}
if (eval "$mode & 040000") {
if ( $t=~ /sfdir/m) {
while ($t=~ /inumber(?:\.i[48])? = (\d+)$/mg) {
push(@dir_inodes,$1);
}
}
if ( $t=~ /u\.bmx/m) {
bmap("inode $num","dir");
foreach (@bmap_blocks) {
dir_block($_);
push(@dir_inodes,@block_inodes);
}
}
} else {
bmap("inode $num","file") if ( $t=~ /u\.bmx/m);
}
}
sub bmap($$)
{
my ($cmd,$type)=@_;
my ($t);
@bmap_blocks=();
$flag=($type eq "attr")?"-a":"";
$t=db("-c \"$cmd\" -c \"bmap $flag\"");
print " *** bmap $type $cmd\n";
fmt($t);
if ($type eq "dir" || $type eq "attr") {
while ($t=~ /startblock (\d+) \(.+\) count (\d+)/mg) {
for ($b=$1;$b<$1+$2;$b++) {
push(@bmap_blocks,$b);
}
}
}
}
sub dir_block($)
{
my ($num)=@_;
my ($t);
@block_inodes=();
$type=($dir_version==2)?"dir2":"dir";
$t=db("-c \"fsblock $num\" -c \"type $type\" -c \"print\"");
print " *** $type block $num\n";
# need to drop . and ..
($self)= $t=~ /\[(\d+)\].name = \"\.\"/m;
($parent)= $t=~ /\[(\d+)\].name = \"\.\.\"/m;
fmt($t);
while ($t=~ /\[(\d+)\].inumber = (\d+)/mg) {
next if (defined $self && $1 == $self);
next if (defined $parent && $1 == $parent);
push(@block_inodes, $2);
}
}
sub attr_block($)
{
my ($num)=@_;
my ($t);
$t=db("-c \"fsblock $num\" -c \"type attr\" -c \"print\"");
print " *** attr block $num\n";
fmt($t);
}
sub sb($)
{
my ($num)=@_;
my ($t);
$t=db("-c \"sb $num\" -c \"print\"");
print " *** SB $num\n";
fmt($t);
($rootino)= $t=~ /^rootino = (\d+)$/m;
($agcount)= $t=~ /^agcount = (\d+)$/m;
($versionnum)= $t=~ /^versionnum = (0x[\da-f]+)$/m;
$dir_version = (eval "$versionnum & 0x2000")?2:1;
}
die "Usage: $0 <XFS device>\n" unless (@ARGV == 1);
$device=shift @ARGV;
die "can't read $device\n" unless (-r $device);
die "$device is not a block device\n" unless (-b _);
chomp($HOST = `hostname -s`);
print "*** db-walk host $HOST device $device\n";
sb(0);
for ($ag=1;$ag<$agcount;$ag++) {
sb($ag);
}
@inodes=($rootino);
while ($_ = shift @inodes) {
inode($_);
push(@inodes,@dir_inodes);
}