Branch data Line data Source code
1 : : /* chert_check.cc: Btree checking
2 : : *
3 : : * Copyright 1999,2000,2001 BrightStation PLC
4 : : * Copyright 2002 Ananova Ltd
5 : : * Copyright 2002,2004,2005,2008 Olly Betts
6 : : * Copyright 2008 Lemur Consulting Ltd
7 : : *
8 : : * This program is free software; you can redistribute it and/or
9 : : * modify it under the terms of the GNU General Public License as
10 : : * published by the Free Software Foundation; either version 2 of the
11 : : * License, or (at your option) any later version.
12 : : *
13 : : * This program is distributed in the hope that it will be useful,
14 : : * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 : : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 : : * GNU General Public License for more details.
17 : : *
18 : : * You should have received a copy of the GNU General Public License
19 : : * along with this program; if not, write to the Free Software
20 : : * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
21 : : * USA
22 : : */
23 : :
24 : : #include <config.h>
25 : :
26 : : #include "chert_check.h"
27 : :
28 : : #include <climits>
29 : :
30 : : using namespace std;
31 : :
32 : 0 : void ChertTableCheck::print_spaces(int n) const
33 : : {
34 [ # # ]: 0 : while (n--) out.put(' ');
35 : 0 : }
36 : :
37 : 0 : void ChertTableCheck::print_bytes(int n, const byte * p) const
38 : : {
39 : 0 : out.write(reinterpret_cast<const char *>(p), n);
40 : 0 : }
41 : :
42 : 0 : void ChertTableCheck::print_key(const byte * p, int c, int j) const
43 : : {
44 : 0 : Item item(p, c);
45 : 0 : string key;
46 [ # # ]: 0 : if (item.key().length() >= 0)
47 : 0 : item.key().read(&key);
48 [ # # ]: 0 : if (j == 0) {
49 : 0 : out << key << '/' << item.component_of();
50 : : } else {
51 [ # # ]: 0 : for (string::const_iterator i = key.begin(); i != key.end(); ++i) {
52 : : // out << (*i < 32 ? '.' : *i);
53 : 0 : char ch = *i;
54 [ # # ]: 0 : if (ch < 32) out << '/' << unsigned(ch); else out << ch;
55 : : }
56 : 0 : }
57 : 0 : }
58 : :
59 : 0 : void ChertTableCheck::print_tag(const byte * p, int c, int j) const
60 : : {
61 : 0 : Item item(p, c);
62 : 0 : string tag;
63 : 0 : item.append_chunk(&tag);
64 [ # # ]: 0 : if (j == 0) {
65 : 0 : out << "/" << item.components_of() << tag;
66 : : } else {
67 : : out << "--> [" << getint4(reinterpret_cast<const byte*>(tag.data()), 0)
68 : 0 : << ']';
69 : 0 : }
70 : 0 : }
71 : :
72 : 0 : void ChertTableCheck::report_block_full(int m, int n, const byte * p) const
73 : : {
74 : 0 : int j = GET_LEVEL(p);
75 : 0 : int dir_end = DIR_END(p);
76 : 0 : out << '\n';
77 : 0 : print_spaces(m);
78 : : out << "Block [" << n << "] level " << j << ", revision *" << REVISION(p)
79 : : << " items (" << (dir_end - DIR_START)/D2 << ") usage "
80 : 0 : << block_usage(p) << "%:\n";
81 [ # # ]: 0 : for (int c = DIR_START; c < dir_end; c += D2) {
82 : 0 : print_spaces(m);
83 : 0 : print_key(p, c, j);
84 : 0 : out << ' ';
85 : 0 : print_tag(p, c, j);
86 : 0 : out << '\n';
87 : : }
88 : 0 : }
89 : :
90 : 0 : int ChertTableCheck::block_usage(const byte * p) const
91 : : {
92 : 0 : int space = block_size - DIR_END(p);
93 : 0 : int free = TOTAL_FREE(p);
94 : 0 : return (space - free) * 100 / space; /* a percentage */
95 : : }
96 : :
97 : : /** ChertTableCheck::report_block(m, n, p) prints the block at p, block number n,
98 : : * indented by m spaces.
99 : : */
100 : 0 : void ChertTableCheck::report_block(int m, int n, const byte * p) const
101 : : {
102 : 0 : int j = GET_LEVEL(p);
103 : 0 : int dir_end = DIR_END(p);
104 : : int c;
105 : 0 : print_spaces(m);
106 : : out << "[" << n << "] *" << REVISION(p) << " ("
107 : 0 : << (dir_end - DIR_START)/D2 << ") " << block_usage(p) << "% ";
108 : :
109 [ # # ]: 0 : for (c = DIR_START; c < dir_end; c += D2) {
110 [ # # ]: 0 : if (c == DIR_START + 6) out << "... ";
111 [ # # ][ # # ]: 0 : if (c >= DIR_START + 6 && c < dir_end - 6) continue;
112 : :
113 : 0 : print_key(p, c, j);
114 : 0 : out << ' ';
115 : : }
116 : 0 : out << endl;
117 : 0 : }
118 : :
119 : 0 : void ChertTableCheck::failure(int n) const
120 : : {
121 : 0 : out << "B-tree error " << n << endl;
122 : 0 : throw "btree error";
123 : : }
124 : :
125 : : void
126 : 3 : ChertTableCheck::block_check(Cursor * C_, int j, int opts)
127 : : {
128 : 3 : byte * p = C_[j].p;
129 : 3 : uint4 n = C_[j].n;
130 : : size_t c;
131 [ + - ]: 3 : size_t significant_c = j == 0 ? DIR_START : DIR_START + D2;
132 : : /* the first key in an index block is dummy, remember */
133 : :
134 : 3 : size_t max_free = MAX_FREE(p);
135 : 3 : size_t dir_end = DIR_END(p);
136 : 3 : int total_free = block_size - dir_end;
137 : :
138 [ - + ]: 3 : if (base.block_free_at_start(n)) failure(0);
139 [ - + ]: 3 : if (base.block_free_now(n)) failure(1);
140 : 3 : base.free_block(n);
141 : :
142 [ - + ]: 3 : if (j != GET_LEVEL(p)) failure(10);
143 [ + - ][ - + ]: 3 : if (dir_end <= DIR_START || dir_end > block_size) failure(20);
144 : :
145 [ - + ]: 3 : if (opts & OPT_SHORT_TREE) report_block(3*(level - j), n, p);
146 : :
147 [ - + ]: 3 : if (opts & OPT_FULL_TREE) report_block_full(3*(level - j), n, p);
148 : :
149 [ + + ]: 7 : for (c = DIR_START; c < dir_end; c += D2) {
150 : 4 : Item item(p, c);
151 : 4 : int o = item.get_address() - p;
152 [ - + ]: 4 : if (o > int(block_size)) failure(21);
153 [ - + ]: 4 : if (o - dir_end < max_free) failure(30);
154 : :
155 : 4 : int kt_len = item.size();
156 [ - + ]: 4 : if (o + kt_len > int(block_size)) failure(40);
157 : 4 : total_free -= kt_len;
158 : :
159 [ + + ][ - + ]: 4 : if (c > significant_c && Item(p, c - D2).key() >= item.key())
[ - + ]
160 : 0 : failure(50);
161 : : }
162 [ - + ]: 3 : if (total_free != TOTAL_FREE(p))
163 : 0 : failure(60);
164 : :
165 [ + - ]: 3 : if (j == 0) return;
166 [ # # ]: 3 : for (c = DIR_START; c < dir_end; c += D2) {
167 : 0 : C_[j].c = c;
168 : 0 : block_to_cursor(C_, j - 1, Item(p, c).block_given_by());
169 : :
170 : 0 : block_check(C_, j - 1, opts);
171 : :
172 : 0 : byte * q = C_[j - 1].p;
173 : : /* if j == 1, and c > DIR_START, the first key of level j - 1 must be
174 : : * >= the key of p, c: */
175 : :
176 [ # # # # ]: 0 : if (j == 1 && c > DIR_START)
177 [ # # ]: 0 : if (Item(q, DIR_START).key() < Item(p, c).key())
178 : 0 : failure(70);
179 : :
180 : : /* if j > 1, and c > DIR_START, the second key of level j - 1 must be
181 : : * >= the key of p, c: */
182 : :
183 [ # # ][ # # ]: 0 : if (j > 1 && c > DIR_START && DIR_END(q) > DIR_START + D2 &&
[ # # ][ # # ]
[ # # ]
184 : : Item(q, DIR_START + D2).key() < Item(p, c).key())
185 : 0 : failure(80);
186 : :
187 : : /* the last key of level j - 1 must be < the key of p, c + D2, if c +
188 : : * D2 < dir_end: */
189 : :
190 [ # # ][ # # ]: 0 : if (c + D2 < dir_end &&
[ # # ][ # # ]
[ # # ]
191 : : (j == 1 || DIR_START + D2 < DIR_END(q)) &&
192 : : Item(q, DIR_END(q) - D2).key() >= Item(p, c + D2).key())
193 : 0 : failure(90);
194 : :
195 [ # # ]: 0 : if (REVISION(q) > REVISION(p)) failure(91);
196 : : }
197 : : }
198 : :
199 : : void
200 : 3 : ChertTableCheck::check(const char * tablename, const string & path, int opts,
201 : : ostream &out)
202 : : {
203 : 3 : ChertTableCheck B(tablename, path, false, out);
204 : 3 : B.open(); // throws exception if open fails
205 : 3 : Cursor * C = B.C;
206 : :
207 [ + - ]: 3 : if (opts & OPT_SHOW_STATS) {
208 : : out << "base" << (char)B.base_letter
209 : : << " blocksize=" << B.block_size / 1024 << "K"
210 : : " items=" << B.item_count
211 : : << " lastblock=" << B.base.get_last_block()
212 : : << " revision=" << B.revision_number
213 : : << " levels=" << B.level
214 : 3 : << " root=";
215 [ - + ]: 3 : if (B.faked_root_block)
216 : 0 : out << "(faked)";
217 : : else
218 : 3 : out << C[B.level].n;
219 : 3 : out << endl;
220 : : }
221 : :
222 : 3 : int limit = B.base.get_bit_map_size() - 1;
223 : :
224 : 3 : limit = limit * CHAR_BIT + CHAR_BIT - 1;
225 : :
226 [ - + ]: 3 : if (opts & OPT_SHOW_BITMAP) {
227 [ # # ]: 0 : for (int j = 0; j <= limit; j++) {
228 [ # # ]: 0 : out << (B.base.block_free_at_start(j) ? '.' : '*');
229 [ # # ]: 0 : if (j > 0) {
230 [ # # ]: 0 : if ((j + 1) % 100 == 0) {
231 : 0 : out << '\n';
232 [ # # ]: 0 : } else if ((j + 1) % 10 == 0) {
233 : 0 : out << ' ';
234 : : }
235 : : }
236 : : }
237 : 0 : out << '\n' << endl;
238 : : }
239 : :
240 [ - + ]: 3 : if (B.faked_root_block) {
241 [ # # ]: 0 : if (opts) out << "void ";
242 : : } else {
243 : 3 : B.block_check(C, B.level, opts);
244 : :
245 : : /* the bit map should now be entirely clear: */
246 : :
247 [ - + ]: 3 : if (!B.base.is_empty()) {
248 : 0 : B.failure(100);
249 : : }
250 : : }
251 [ + - ]: 3 : if (opts) out << "B-tree checked okay" << endl;
252 : 3 : }
253 : :
254 : 0 : void ChertTableCheck::report_cursor(int N, const Cursor * C_) const
255 : : {
256 : 0 : out << N << ")\n";
257 [ # # ]: 0 : for (int i = 0; i <= level; i++)
258 : 0 : out << "p=" << C_[i].p << ", c=" << C_[i].c << ", n=[" << C_[i].n
259 : 0 : << "], rewrite=" << C_[i].rewrite << endl;
260 [ + - ][ + - ]: 15 : }
|