blob: ab91ca6284554d5837795009a7a80167d3d39ba0 [file] [log] [blame]
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001/*
2 * This file is part of UBIFS.
3 *
4 * Copyright (C) 2006-2008 Nokia Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published by
8 * the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * more details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 51
17 * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 *
19 * Authors: Adrian Hunter
20 * Artem Bityutskiy (Битюцкий Артём)
21 */
22
23/*
24 * This file implements the LEB properties tree (LPT) area. The LPT area
25 * contains the LEB properties tree, a table of LPT area eraseblocks (ltab), and
26 * (for the "big" model) a table of saved LEB numbers (lsave). The LPT area sits
27 * between the log and the orphan area.
28 *
29 * The LPT area is like a miniature self-contained file system. It is required
30 * that it never runs out of space, is fast to access and update, and scales
31 * logarithmically. The LEB properties tree is implemented as a wandering tree
32 * much like the TNC, and the LPT area has its own garbage collection.
33 *
34 * The LPT has two slightly different forms called the "small model" and the
35 * "big model". The small model is used when the entire LEB properties table
36 * can be written into a single eraseblock. In that case, garbage collection
37 * consists of just writing the whole table, which therefore makes all other
38 * eraseblocks reusable. In the case of the big model, dirty eraseblocks are
Artem Bityutskiy45e12d92008-10-31 11:42:18 +020039 * selected for garbage collection, which consists of marking the clean nodes in
Artem Bityutskiy1e517642008-07-14 19:08:37 +030040 * that LEB as dirty, and then only the dirty nodes are written out. Also, in
41 * the case of the big model, a table of LEB numbers is saved so that the entire
42 * LPT does not to be scanned looking for empty eraseblocks when UBIFS is first
43 * mounted.
44 */
45
Artem Bityutskiy1e517642008-07-14 19:08:37 +030046#include "ubifs.h"
Artem Bityutskiy4d61db42008-12-18 14:06:51 +020047#include <linux/crc16.h>
48#include <linux/math64.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090049#include <linux/slab.h>
Artem Bityutskiy1e517642008-07-14 19:08:37 +030050
51/**
52 * do_calc_lpt_geom - calculate sizes for the LPT area.
53 * @c: the UBIFS file-system description object
54 *
55 * Calculate the sizes of LPT bit fields, nodes, and tree, based on the
56 * properties of the flash and whether LPT is "big" (c->big_lpt).
57 */
58static void do_calc_lpt_geom(struct ubifs_info *c)
59{
60 int i, n, bits, per_leb_wastage, max_pnode_cnt;
61 long long sz, tot_wastage;
62
63 n = c->main_lebs + c->max_leb_cnt - c->leb_cnt;
64 max_pnode_cnt = DIV_ROUND_UP(n, UBIFS_LPT_FANOUT);
65
66 c->lpt_hght = 1;
67 n = UBIFS_LPT_FANOUT;
68 while (n < max_pnode_cnt) {
69 c->lpt_hght += 1;
70 n <<= UBIFS_LPT_FANOUT_SHIFT;
71 }
72
73 c->pnode_cnt = DIV_ROUND_UP(c->main_lebs, UBIFS_LPT_FANOUT);
74
75 n = DIV_ROUND_UP(c->pnode_cnt, UBIFS_LPT_FANOUT);
76 c->nnode_cnt = n;
77 for (i = 1; i < c->lpt_hght; i++) {
78 n = DIV_ROUND_UP(n, UBIFS_LPT_FANOUT);
79 c->nnode_cnt += n;
80 }
81
82 c->space_bits = fls(c->leb_size) - 3;
83 c->lpt_lnum_bits = fls(c->lpt_lebs);
84 c->lpt_offs_bits = fls(c->leb_size - 1);
85 c->lpt_spc_bits = fls(c->leb_size);
86
87 n = DIV_ROUND_UP(c->max_leb_cnt, UBIFS_LPT_FANOUT);
88 c->pcnt_bits = fls(n - 1);
89
90 c->lnum_bits = fls(c->max_leb_cnt - 1);
91
92 bits = UBIFS_LPT_CRC_BITS + UBIFS_LPT_TYPE_BITS +
93 (c->big_lpt ? c->pcnt_bits : 0) +
94 (c->space_bits * 2 + 1) * UBIFS_LPT_FANOUT;
95 c->pnode_sz = (bits + 7) / 8;
96
97 bits = UBIFS_LPT_CRC_BITS + UBIFS_LPT_TYPE_BITS +
98 (c->big_lpt ? c->pcnt_bits : 0) +
99 (c->lpt_lnum_bits + c->lpt_offs_bits) * UBIFS_LPT_FANOUT;
100 c->nnode_sz = (bits + 7) / 8;
101
102 bits = UBIFS_LPT_CRC_BITS + UBIFS_LPT_TYPE_BITS +
103 c->lpt_lebs * c->lpt_spc_bits * 2;
104 c->ltab_sz = (bits + 7) / 8;
105
106 bits = UBIFS_LPT_CRC_BITS + UBIFS_LPT_TYPE_BITS +
107 c->lnum_bits * c->lsave_cnt;
108 c->lsave_sz = (bits + 7) / 8;
109
110 /* Calculate the minimum LPT size */
111 c->lpt_sz = (long long)c->pnode_cnt * c->pnode_sz;
112 c->lpt_sz += (long long)c->nnode_cnt * c->nnode_sz;
113 c->lpt_sz += c->ltab_sz;
Adrian Hunter73944a62008-09-12 18:13:31 +0300114 if (c->big_lpt)
115 c->lpt_sz += c->lsave_sz;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300116
117 /* Add wastage */
118 sz = c->lpt_sz;
119 per_leb_wastage = max_t(int, c->pnode_sz, c->nnode_sz);
120 sz += per_leb_wastage;
121 tot_wastage = per_leb_wastage;
122 while (sz > c->leb_size) {
123 sz += per_leb_wastage;
124 sz -= c->leb_size;
125 tot_wastage += per_leb_wastage;
126 }
127 tot_wastage += ALIGN(sz, c->min_io_size) - sz;
128 c->lpt_sz += tot_wastage;
129}
130
131/**
132 * ubifs_calc_lpt_geom - calculate and check sizes for the LPT area.
133 * @c: the UBIFS file-system description object
134 *
135 * This function returns %0 on success and a negative error code on failure.
136 */
137int ubifs_calc_lpt_geom(struct ubifs_info *c)
138{
139 int lebs_needed;
Artem Bityutskiy4d61db42008-12-18 14:06:51 +0200140 long long sz;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300141
142 do_calc_lpt_geom(c);
143
144 /* Verify that lpt_lebs is big enough */
145 sz = c->lpt_sz * 2; /* Must have at least 2 times the size */
Artem Bityutskiy4d61db42008-12-18 14:06:51 +0200146 lebs_needed = div_u64(sz + c->leb_size - 1, c->leb_size);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300147 if (lebs_needed > c->lpt_lebs) {
148 ubifs_err("too few LPT LEBs");
149 return -EINVAL;
150 }
151
152 /* Verify that ltab fits in a single LEB (since ltab is a single node */
153 if (c->ltab_sz > c->leb_size) {
154 ubifs_err("LPT ltab too big");
155 return -EINVAL;
156 }
157
158 c->check_lpt_free = c->big_lpt;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300159 return 0;
160}
161
162/**
163 * calc_dflt_lpt_geom - calculate default LPT geometry.
164 * @c: the UBIFS file-system description object
165 * @main_lebs: number of main area LEBs is passed and returned here
166 * @big_lpt: whether the LPT area is "big" is returned here
167 *
168 * The size of the LPT area depends on parameters that themselves are dependent
169 * on the size of the LPT area. This function, successively recalculates the LPT
170 * area geometry until the parameters and resultant geometry are consistent.
171 *
172 * This function returns %0 on success and a negative error code on failure.
173 */
174static int calc_dflt_lpt_geom(struct ubifs_info *c, int *main_lebs,
175 int *big_lpt)
176{
177 int i, lebs_needed;
Artem Bityutskiy4d61db42008-12-18 14:06:51 +0200178 long long sz;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300179
180 /* Start by assuming the minimum number of LPT LEBs */
181 c->lpt_lebs = UBIFS_MIN_LPT_LEBS;
182 c->main_lebs = *main_lebs - c->lpt_lebs;
183 if (c->main_lebs <= 0)
184 return -EINVAL;
185
186 /* And assume we will use the small LPT model */
187 c->big_lpt = 0;
188
189 /*
190 * Calculate the geometry based on assumptions above and then see if it
191 * makes sense
192 */
193 do_calc_lpt_geom(c);
194
195 /* Small LPT model must have lpt_sz < leb_size */
196 if (c->lpt_sz > c->leb_size) {
197 /* Nope, so try again using big LPT model */
198 c->big_lpt = 1;
199 do_calc_lpt_geom(c);
200 }
201
202 /* Now check there are enough LPT LEBs */
203 for (i = 0; i < 64 ; i++) {
204 sz = c->lpt_sz * 4; /* Allow 4 times the size */
Artem Bityutskiy4d61db42008-12-18 14:06:51 +0200205 lebs_needed = div_u64(sz + c->leb_size - 1, c->leb_size);
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300206 if (lebs_needed > c->lpt_lebs) {
207 /* Not enough LPT LEBs so try again with more */
208 c->lpt_lebs = lebs_needed;
209 c->main_lebs = *main_lebs - c->lpt_lebs;
210 if (c->main_lebs <= 0)
211 return -EINVAL;
212 do_calc_lpt_geom(c);
213 continue;
214 }
215 if (c->ltab_sz > c->leb_size) {
216 ubifs_err("LPT ltab too big");
217 return -EINVAL;
218 }
219 *main_lebs = c->main_lebs;
220 *big_lpt = c->big_lpt;
221 return 0;
222 }
223 return -EINVAL;
224}
225
226/**
227 * pack_bits - pack bit fields end-to-end.
228 * @addr: address at which to pack (passed and next address returned)
229 * @pos: bit position at which to pack (passed and next position returned)
230 * @val: value to pack
231 * @nrbits: number of bits of value to pack (1-32)
232 */
233static void pack_bits(uint8_t **addr, int *pos, uint32_t val, int nrbits)
234{
235 uint8_t *p = *addr;
236 int b = *pos;
237
238 ubifs_assert(nrbits > 0);
239 ubifs_assert(nrbits <= 32);
240 ubifs_assert(*pos >= 0);
241 ubifs_assert(*pos < 8);
242 ubifs_assert((val >> nrbits) == 0 || nrbits == 32);
243 if (b) {
244 *p |= ((uint8_t)val) << b;
245 nrbits += b;
246 if (nrbits > 8) {
247 *++p = (uint8_t)(val >>= (8 - b));
248 if (nrbits > 16) {
249 *++p = (uint8_t)(val >>= 8);
250 if (nrbits > 24) {
251 *++p = (uint8_t)(val >>= 8);
252 if (nrbits > 32)
253 *++p = (uint8_t)(val >>= 8);
254 }
255 }
256 }
257 } else {
258 *p = (uint8_t)val;
259 if (nrbits > 8) {
260 *++p = (uint8_t)(val >>= 8);
261 if (nrbits > 16) {
262 *++p = (uint8_t)(val >>= 8);
263 if (nrbits > 24)
264 *++p = (uint8_t)(val >>= 8);
265 }
266 }
267 }
268 b = nrbits & 7;
269 if (b == 0)
270 p++;
271 *addr = p;
272 *pos = b;
273}
274
275/**
276 * ubifs_unpack_bits - unpack bit fields.
277 * @addr: address at which to unpack (passed and next address returned)
278 * @pos: bit position at which to unpack (passed and next position returned)
279 * @nrbits: number of bits of value to unpack (1-32)
280 *
281 * This functions returns the value unpacked.
282 */
283uint32_t ubifs_unpack_bits(uint8_t **addr, int *pos, int nrbits)
284{
285 const int k = 32 - nrbits;
286 uint8_t *p = *addr;
287 int b = *pos;
Adrian Hunter727d2dc2008-10-17 16:52:10 +0300288 uint32_t uninitialized_var(val);
289 const int bytes = (nrbits + b + 7) >> 3;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300290
291 ubifs_assert(nrbits > 0);
292 ubifs_assert(nrbits <= 32);
293 ubifs_assert(*pos >= 0);
294 ubifs_assert(*pos < 8);
295 if (b) {
Adrian Hunter727d2dc2008-10-17 16:52:10 +0300296 switch (bytes) {
297 case 2:
298 val = p[1];
299 break;
300 case 3:
301 val = p[1] | ((uint32_t)p[2] << 8);
302 break;
303 case 4:
304 val = p[1] | ((uint32_t)p[2] << 8) |
305 ((uint32_t)p[3] << 16);
306 break;
307 case 5:
308 val = p[1] | ((uint32_t)p[2] << 8) |
309 ((uint32_t)p[3] << 16) |
310 ((uint32_t)p[4] << 24);
311 }
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300312 val <<= (8 - b);
313 val |= *p >> b;
314 nrbits += b;
Adrian Hunter727d2dc2008-10-17 16:52:10 +0300315 } else {
316 switch (bytes) {
317 case 1:
318 val = p[0];
319 break;
320 case 2:
321 val = p[0] | ((uint32_t)p[1] << 8);
322 break;
323 case 3:
324 val = p[0] | ((uint32_t)p[1] << 8) |
325 ((uint32_t)p[2] << 16);
326 break;
327 case 4:
328 val = p[0] | ((uint32_t)p[1] << 8) |
329 ((uint32_t)p[2] << 16) |
330 ((uint32_t)p[3] << 24);
331 break;
332 }
333 }
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300334 val <<= k;
335 val >>= k;
336 b = nrbits & 7;
Adrian Hunter727d2dc2008-10-17 16:52:10 +0300337 p += nrbits >> 3;
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300338 *addr = p;
339 *pos = b;
340 ubifs_assert((val >> nrbits) == 0 || nrbits - b == 32);
341 return val;
342}
343
344/**
345 * ubifs_pack_pnode - pack all the bit fields of a pnode.
346 * @c: UBIFS file-system description object
347 * @buf: buffer into which to pack
348 * @pnode: pnode to pack
349 */
350void ubifs_pack_pnode(struct ubifs_info *c, void *buf,
351 struct ubifs_pnode *pnode)
352{
353 uint8_t *addr = buf + UBIFS_LPT_CRC_BYTES;
354 int i, pos = 0;
355 uint16_t crc;
356
357 pack_bits(&addr, &pos, UBIFS_LPT_PNODE, UBIFS_LPT_TYPE_BITS);
358 if (c->big_lpt)
359 pack_bits(&addr, &pos, pnode->num, c->pcnt_bits);
360 for (i = 0; i < UBIFS_LPT_FANOUT; i++) {
361 pack_bits(&addr, &pos, pnode->lprops[i].free >> 3,
362 c->space_bits);
363 pack_bits(&addr, &pos, pnode->lprops[i].dirty >> 3,
364 c->space_bits);
365 if (pnode->lprops[i].flags & LPROPS_INDEX)
366 pack_bits(&addr, &pos, 1, 1);
367 else
368 pack_bits(&addr, &pos, 0, 1);
369 }
370 crc = crc16(-1, buf + UBIFS_LPT_CRC_BYTES,
371 c->pnode_sz - UBIFS_LPT_CRC_BYTES);
372 addr = buf;
373 pos = 0;
374 pack_bits(&addr, &pos, crc, UBIFS_LPT_CRC_BITS);
375}
376
377/**
378 * ubifs_pack_nnode - pack all the bit fields of a nnode.
379 * @c: UBIFS file-system description object
380 * @buf: buffer into which to pack
381 * @nnode: nnode to pack
382 */
383void ubifs_pack_nnode(struct ubifs_info *c, void *buf,
384 struct ubifs_nnode *nnode)
385{
386 uint8_t *addr = buf + UBIFS_LPT_CRC_BYTES;
387 int i, pos = 0;
388 uint16_t crc;
389
390 pack_bits(&addr, &pos, UBIFS_LPT_NNODE, UBIFS_LPT_TYPE_BITS);
391 if (c->big_lpt)
392 pack_bits(&addr, &pos, nnode->num, c->pcnt_bits);
393 for (i = 0; i < UBIFS_LPT_FANOUT; i++) {
394 int lnum = nnode->nbranch[i].lnum;
395
396 if (lnum == 0)
397 lnum = c->lpt_last + 1;
398 pack_bits(&addr, &pos, lnum - c->lpt_first, c->lpt_lnum_bits);
399 pack_bits(&addr, &pos, nnode->nbranch[i].offs,
400 c->lpt_offs_bits);
401 }
402 crc = crc16(-1, buf + UBIFS_LPT_CRC_BYTES,
403 c->nnode_sz - UBIFS_LPT_CRC_BYTES);
404 addr = buf;
405 pos = 0;
406 pack_bits(&addr, &pos, crc, UBIFS_LPT_CRC_BITS);
407}
408
409/**
410 * ubifs_pack_ltab - pack the LPT's own lprops table.
411 * @c: UBIFS file-system description object
412 * @buf: buffer into which to pack
413 * @ltab: LPT's own lprops table to pack
414 */
415void ubifs_pack_ltab(struct ubifs_info *c, void *buf,
416 struct ubifs_lpt_lprops *ltab)
417{
418 uint8_t *addr = buf + UBIFS_LPT_CRC_BYTES;
419 int i, pos = 0;
420 uint16_t crc;
421
422 pack_bits(&addr, &pos, UBIFS_LPT_LTAB, UBIFS_LPT_TYPE_BITS);
423 for (i = 0; i < c->lpt_lebs; i++) {
424 pack_bits(&addr, &pos, ltab[i].free, c->lpt_spc_bits);
425 pack_bits(&addr, &pos, ltab[i].dirty, c->lpt_spc_bits);
426 }
427 crc = crc16(-1, buf + UBIFS_LPT_CRC_BYTES,
428 c->ltab_sz - UBIFS_LPT_CRC_BYTES);
429 addr = buf;
430 pos = 0;
431 pack_bits(&addr, &pos, crc, UBIFS_LPT_CRC_BITS);
432}
433
434/**
435 * ubifs_pack_lsave - pack the LPT's save table.
436 * @c: UBIFS file-system description object
437 * @buf: buffer into which to pack
438 * @lsave: LPT's save table to pack
439 */
440void ubifs_pack_lsave(struct ubifs_info *c, void *buf, int *lsave)
441{
442 uint8_t *addr = buf + UBIFS_LPT_CRC_BYTES;
443 int i, pos = 0;
444 uint16_t crc;
445
446 pack_bits(&addr, &pos, UBIFS_LPT_LSAVE, UBIFS_LPT_TYPE_BITS);
447 for (i = 0; i < c->lsave_cnt; i++)
448 pack_bits(&addr, &pos, lsave[i], c->lnum_bits);
449 crc = crc16(-1, buf + UBIFS_LPT_CRC_BYTES,
450 c->lsave_sz - UBIFS_LPT_CRC_BYTES);
451 addr = buf;
452 pos = 0;
453 pack_bits(&addr, &pos, crc, UBIFS_LPT_CRC_BITS);
454}
455
456/**
457 * ubifs_add_lpt_dirt - add dirty space to LPT LEB properties.
458 * @c: UBIFS file-system description object
459 * @lnum: LEB number to which to add dirty space
460 * @dirty: amount of dirty space to add
461 */
462void ubifs_add_lpt_dirt(struct ubifs_info *c, int lnum, int dirty)
463{
464 if (!dirty || !lnum)
465 return;
466 dbg_lp("LEB %d add %d to %d",
467 lnum, dirty, c->ltab[lnum - c->lpt_first].dirty);
468 ubifs_assert(lnum >= c->lpt_first && lnum <= c->lpt_last);
469 c->ltab[lnum - c->lpt_first].dirty += dirty;
470}
471
472/**
473 * set_ltab - set LPT LEB properties.
474 * @c: UBIFS file-system description object
475 * @lnum: LEB number
476 * @free: amount of free space
477 * @dirty: amount of dirty space
478 */
479static void set_ltab(struct ubifs_info *c, int lnum, int free, int dirty)
480{
481 dbg_lp("LEB %d free %d dirty %d to %d %d",
482 lnum, c->ltab[lnum - c->lpt_first].free,
483 c->ltab[lnum - c->lpt_first].dirty, free, dirty);
484 ubifs_assert(lnum >= c->lpt_first && lnum <= c->lpt_last);
485 c->ltab[lnum - c->lpt_first].free = free;
486 c->ltab[lnum - c->lpt_first].dirty = dirty;
487}
488
489/**
490 * ubifs_add_nnode_dirt - add dirty space to LPT LEB properties.
491 * @c: UBIFS file-system description object
492 * @nnode: nnode for which to add dirt
493 */
494void ubifs_add_nnode_dirt(struct ubifs_info *c, struct ubifs_nnode *nnode)
495{
496 struct ubifs_nnode *np = nnode->parent;
497
498 if (np)
499 ubifs_add_lpt_dirt(c, np->nbranch[nnode->iip].lnum,
500 c->nnode_sz);
501 else {
502 ubifs_add_lpt_dirt(c, c->lpt_lnum, c->nnode_sz);
503 if (!(c->lpt_drty_flgs & LTAB_DIRTY)) {
504 c->lpt_drty_flgs |= LTAB_DIRTY;
505 ubifs_add_lpt_dirt(c, c->ltab_lnum, c->ltab_sz);
506 }
507 }
508}
509
510/**
511 * add_pnode_dirt - add dirty space to LPT LEB properties.
512 * @c: UBIFS file-system description object
513 * @pnode: pnode for which to add dirt
514 */
515static void add_pnode_dirt(struct ubifs_info *c, struct ubifs_pnode *pnode)
516{
517 ubifs_add_lpt_dirt(c, pnode->parent->nbranch[pnode->iip].lnum,
518 c->pnode_sz);
519}
520
521/**
522 * calc_nnode_num - calculate nnode number.
523 * @row: the row in the tree (root is zero)
524 * @col: the column in the row (leftmost is zero)
525 *
526 * The nnode number is a number that uniquely identifies a nnode and can be used
527 * easily to traverse the tree from the root to that nnode.
528 *
529 * This function calculates and returns the nnode number for the nnode at @row
530 * and @col.
531 */
532static int calc_nnode_num(int row, int col)
533{
534 int num, bits;
535
536 num = 1;
537 while (row--) {
538 bits = (col & (UBIFS_LPT_FANOUT - 1));
539 col >>= UBIFS_LPT_FANOUT_SHIFT;
540 num <<= UBIFS_LPT_FANOUT_SHIFT;
541 num |= bits;
542 }
543 return num;
544}
545
546/**
547 * calc_nnode_num_from_parent - calculate nnode number.
548 * @c: UBIFS file-system description object
549 * @parent: parent nnode
550 * @iip: index in parent
551 *
552 * The nnode number is a number that uniquely identifies a nnode and can be used
553 * easily to traverse the tree from the root to that nnode.
554 *
555 * This function calculates and returns the nnode number based on the parent's
556 * nnode number and the index in parent.
557 */
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +0200558static int calc_nnode_num_from_parent(const struct ubifs_info *c,
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300559 struct ubifs_nnode *parent, int iip)
560{
561 int num, shft;
562
563 if (!parent)
564 return 1;
565 shft = (c->lpt_hght - parent->level) * UBIFS_LPT_FANOUT_SHIFT;
566 num = parent->num ^ (1 << shft);
567 num |= (UBIFS_LPT_FANOUT + iip) << shft;
568 return num;
569}
570
571/**
572 * calc_pnode_num_from_parent - calculate pnode number.
573 * @c: UBIFS file-system description object
574 * @parent: parent nnode
575 * @iip: index in parent
576 *
577 * The pnode number is a number that uniquely identifies a pnode and can be used
578 * easily to traverse the tree from the root to that pnode.
579 *
580 * This function calculates and returns the pnode number based on the parent's
581 * nnode number and the index in parent.
582 */
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +0200583static int calc_pnode_num_from_parent(const struct ubifs_info *c,
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300584 struct ubifs_nnode *parent, int iip)
585{
586 int i, n = c->lpt_hght - 1, pnum = parent->num, num = 0;
587
588 for (i = 0; i < n; i++) {
589 num <<= UBIFS_LPT_FANOUT_SHIFT;
590 num |= pnum & (UBIFS_LPT_FANOUT - 1);
591 pnum >>= UBIFS_LPT_FANOUT_SHIFT;
592 }
593 num <<= UBIFS_LPT_FANOUT_SHIFT;
594 num |= iip;
595 return num;
596}
597
598/**
599 * ubifs_create_dflt_lpt - create default LPT.
600 * @c: UBIFS file-system description object
601 * @main_lebs: number of main area LEBs is passed and returned here
602 * @lpt_first: LEB number of first LPT LEB
603 * @lpt_lebs: number of LEBs for LPT is passed and returned here
604 * @big_lpt: use big LPT model is passed and returned here
605 *
606 * This function returns %0 on success and a negative error code on failure.
607 */
608int ubifs_create_dflt_lpt(struct ubifs_info *c, int *main_lebs, int lpt_first,
609 int *lpt_lebs, int *big_lpt)
610{
611 int lnum, err = 0, node_sz, iopos, i, j, cnt, len, alen, row;
612 int blnum, boffs, bsz, bcnt;
613 struct ubifs_pnode *pnode = NULL;
614 struct ubifs_nnode *nnode = NULL;
615 void *buf = NULL, *p;
616 struct ubifs_lpt_lprops *ltab = NULL;
617 int *lsave = NULL;
618
619 err = calc_dflt_lpt_geom(c, main_lebs, big_lpt);
620 if (err)
621 return err;
622 *lpt_lebs = c->lpt_lebs;
623
624 /* Needed by 'ubifs_pack_nnode()' and 'set_ltab()' */
625 c->lpt_first = lpt_first;
626 /* Needed by 'set_ltab()' */
627 c->lpt_last = lpt_first + c->lpt_lebs - 1;
628 /* Needed by 'ubifs_pack_lsave()' */
629 c->main_first = c->leb_cnt - *main_lebs;
630
631 lsave = kmalloc(sizeof(int) * c->lsave_cnt, GFP_KERNEL);
632 pnode = kzalloc(sizeof(struct ubifs_pnode), GFP_KERNEL);
633 nnode = kzalloc(sizeof(struct ubifs_nnode), GFP_KERNEL);
634 buf = vmalloc(c->leb_size);
635 ltab = vmalloc(sizeof(struct ubifs_lpt_lprops) * c->lpt_lebs);
636 if (!pnode || !nnode || !buf || !ltab || !lsave) {
637 err = -ENOMEM;
638 goto out;
639 }
640
641 ubifs_assert(!c->ltab);
642 c->ltab = ltab; /* Needed by set_ltab */
643
644 /* Initialize LPT's own lprops */
645 for (i = 0; i < c->lpt_lebs; i++) {
646 ltab[i].free = c->leb_size;
647 ltab[i].dirty = 0;
648 ltab[i].tgc = 0;
649 ltab[i].cmt = 0;
650 }
651
652 lnum = lpt_first;
653 p = buf;
654 /* Number of leaf nodes (pnodes) */
655 cnt = c->pnode_cnt;
656
657 /*
658 * The first pnode contains the LEB properties for the LEBs that contain
659 * the root inode node and the root index node of the index tree.
660 */
661 node_sz = ALIGN(ubifs_idx_node_sz(c, 1), 8);
662 iopos = ALIGN(node_sz, c->min_io_size);
663 pnode->lprops[0].free = c->leb_size - iopos;
664 pnode->lprops[0].dirty = iopos - node_sz;
665 pnode->lprops[0].flags = LPROPS_INDEX;
666
667 node_sz = UBIFS_INO_NODE_SZ;
668 iopos = ALIGN(node_sz, c->min_io_size);
669 pnode->lprops[1].free = c->leb_size - iopos;
670 pnode->lprops[1].dirty = iopos - node_sz;
671
672 for (i = 2; i < UBIFS_LPT_FANOUT; i++)
673 pnode->lprops[i].free = c->leb_size;
674
675 /* Add first pnode */
676 ubifs_pack_pnode(c, p, pnode);
677 p += c->pnode_sz;
678 len = c->pnode_sz;
679 pnode->num += 1;
680
681 /* Reset pnode values for remaining pnodes */
682 pnode->lprops[0].free = c->leb_size;
683 pnode->lprops[0].dirty = 0;
684 pnode->lprops[0].flags = 0;
685
686 pnode->lprops[1].free = c->leb_size;
687 pnode->lprops[1].dirty = 0;
688
689 /*
690 * To calculate the internal node branches, we keep information about
691 * the level below.
692 */
693 blnum = lnum; /* LEB number of level below */
694 boffs = 0; /* Offset of level below */
695 bcnt = cnt; /* Number of nodes in level below */
696 bsz = c->pnode_sz; /* Size of nodes in level below */
697
698 /* Add all remaining pnodes */
699 for (i = 1; i < cnt; i++) {
700 if (len + c->pnode_sz > c->leb_size) {
701 alen = ALIGN(len, c->min_io_size);
702 set_ltab(c, lnum, c->leb_size - alen, alen - len);
703 memset(p, 0xff, alen - len);
704 err = ubi_leb_change(c->ubi, lnum++, buf, alen,
705 UBI_SHORTTERM);
706 if (err)
707 goto out;
708 p = buf;
709 len = 0;
710 }
711 ubifs_pack_pnode(c, p, pnode);
712 p += c->pnode_sz;
713 len += c->pnode_sz;
714 /*
715 * pnodes are simply numbered left to right starting at zero,
716 * which means the pnode number can be used easily to traverse
717 * down the tree to the corresponding pnode.
718 */
719 pnode->num += 1;
720 }
721
722 row = 0;
723 for (i = UBIFS_LPT_FANOUT; cnt > i; i <<= UBIFS_LPT_FANOUT_SHIFT)
724 row += 1;
725 /* Add all nnodes, one level at a time */
726 while (1) {
727 /* Number of internal nodes (nnodes) at next level */
728 cnt = DIV_ROUND_UP(cnt, UBIFS_LPT_FANOUT);
729 for (i = 0; i < cnt; i++) {
730 if (len + c->nnode_sz > c->leb_size) {
731 alen = ALIGN(len, c->min_io_size);
732 set_ltab(c, lnum, c->leb_size - alen,
733 alen - len);
734 memset(p, 0xff, alen - len);
735 err = ubi_leb_change(c->ubi, lnum++, buf, alen,
736 UBI_SHORTTERM);
737 if (err)
738 goto out;
739 p = buf;
740 len = 0;
741 }
742 /* Only 1 nnode at this level, so it is the root */
743 if (cnt == 1) {
744 c->lpt_lnum = lnum;
745 c->lpt_offs = len;
746 }
747 /* Set branches to the level below */
748 for (j = 0; j < UBIFS_LPT_FANOUT; j++) {
749 if (bcnt) {
750 if (boffs + bsz > c->leb_size) {
751 blnum += 1;
752 boffs = 0;
753 }
754 nnode->nbranch[j].lnum = blnum;
755 nnode->nbranch[j].offs = boffs;
756 boffs += bsz;
757 bcnt--;
758 } else {
759 nnode->nbranch[j].lnum = 0;
760 nnode->nbranch[j].offs = 0;
761 }
762 }
763 nnode->num = calc_nnode_num(row, i);
764 ubifs_pack_nnode(c, p, nnode);
765 p += c->nnode_sz;
766 len += c->nnode_sz;
767 }
768 /* Only 1 nnode at this level, so it is the root */
769 if (cnt == 1)
770 break;
771 /* Update the information about the level below */
772 bcnt = cnt;
773 bsz = c->nnode_sz;
774 row -= 1;
775 }
776
777 if (*big_lpt) {
778 /* Need to add LPT's save table */
779 if (len + c->lsave_sz > c->leb_size) {
780 alen = ALIGN(len, c->min_io_size);
781 set_ltab(c, lnum, c->leb_size - alen, alen - len);
782 memset(p, 0xff, alen - len);
783 err = ubi_leb_change(c->ubi, lnum++, buf, alen,
784 UBI_SHORTTERM);
785 if (err)
786 goto out;
787 p = buf;
788 len = 0;
789 }
790
791 c->lsave_lnum = lnum;
792 c->lsave_offs = len;
793
794 for (i = 0; i < c->lsave_cnt && i < *main_lebs; i++)
795 lsave[i] = c->main_first + i;
796 for (; i < c->lsave_cnt; i++)
797 lsave[i] = c->main_first;
798
799 ubifs_pack_lsave(c, p, lsave);
800 p += c->lsave_sz;
801 len += c->lsave_sz;
802 }
803
804 /* Need to add LPT's own LEB properties table */
805 if (len + c->ltab_sz > c->leb_size) {
806 alen = ALIGN(len, c->min_io_size);
807 set_ltab(c, lnum, c->leb_size - alen, alen - len);
808 memset(p, 0xff, alen - len);
809 err = ubi_leb_change(c->ubi, lnum++, buf, alen, UBI_SHORTTERM);
810 if (err)
811 goto out;
812 p = buf;
813 len = 0;
814 }
815
816 c->ltab_lnum = lnum;
817 c->ltab_offs = len;
818
819 /* Update ltab before packing it */
820 len += c->ltab_sz;
821 alen = ALIGN(len, c->min_io_size);
822 set_ltab(c, lnum, c->leb_size - alen, alen - len);
823
824 ubifs_pack_ltab(c, p, ltab);
825 p += c->ltab_sz;
826
827 /* Write remaining buffer */
828 memset(p, 0xff, alen - len);
829 err = ubi_leb_change(c->ubi, lnum, buf, alen, UBI_SHORTTERM);
830 if (err)
831 goto out;
832
833 c->nhead_lnum = lnum;
834 c->nhead_offs = ALIGN(len, c->min_io_size);
835
836 dbg_lp("space_bits %d", c->space_bits);
837 dbg_lp("lpt_lnum_bits %d", c->lpt_lnum_bits);
838 dbg_lp("lpt_offs_bits %d", c->lpt_offs_bits);
839 dbg_lp("lpt_spc_bits %d", c->lpt_spc_bits);
840 dbg_lp("pcnt_bits %d", c->pcnt_bits);
841 dbg_lp("lnum_bits %d", c->lnum_bits);
842 dbg_lp("pnode_sz %d", c->pnode_sz);
843 dbg_lp("nnode_sz %d", c->nnode_sz);
844 dbg_lp("ltab_sz %d", c->ltab_sz);
845 dbg_lp("lsave_sz %d", c->lsave_sz);
846 dbg_lp("lsave_cnt %d", c->lsave_cnt);
847 dbg_lp("lpt_hght %d", c->lpt_hght);
848 dbg_lp("big_lpt %d", c->big_lpt);
849 dbg_lp("LPT root is at %d:%d", c->lpt_lnum, c->lpt_offs);
850 dbg_lp("LPT head is at %d:%d", c->nhead_lnum, c->nhead_offs);
851 dbg_lp("LPT ltab is at %d:%d", c->ltab_lnum, c->ltab_offs);
852 if (c->big_lpt)
853 dbg_lp("LPT lsave is at %d:%d", c->lsave_lnum, c->lsave_offs);
854out:
855 c->ltab = NULL;
856 kfree(lsave);
857 vfree(ltab);
858 vfree(buf);
859 kfree(nnode);
860 kfree(pnode);
861 return err;
862}
863
864/**
865 * update_cats - add LEB properties of a pnode to LEB category lists and heaps.
866 * @c: UBIFS file-system description object
867 * @pnode: pnode
868 *
869 * When a pnode is loaded into memory, the LEB properties it contains are added,
870 * by this function, to the LEB category lists and heaps.
871 */
872static void update_cats(struct ubifs_info *c, struct ubifs_pnode *pnode)
873{
874 int i;
875
876 for (i = 0; i < UBIFS_LPT_FANOUT; i++) {
877 int cat = pnode->lprops[i].flags & LPROPS_CAT_MASK;
878 int lnum = pnode->lprops[i].lnum;
879
880 if (!lnum)
881 return;
882 ubifs_add_to_cat(c, &pnode->lprops[i], cat);
883 }
884}
885
886/**
887 * replace_cats - add LEB properties of a pnode to LEB category lists and heaps.
888 * @c: UBIFS file-system description object
889 * @old_pnode: pnode copied
890 * @new_pnode: pnode copy
891 *
892 * During commit it is sometimes necessary to copy a pnode
893 * (see dirty_cow_pnode). When that happens, references in
894 * category lists and heaps must be replaced. This function does that.
895 */
896static void replace_cats(struct ubifs_info *c, struct ubifs_pnode *old_pnode,
897 struct ubifs_pnode *new_pnode)
898{
899 int i;
900
901 for (i = 0; i < UBIFS_LPT_FANOUT; i++) {
902 if (!new_pnode->lprops[i].lnum)
903 return;
904 ubifs_replace_cat(c, &old_pnode->lprops[i],
905 &new_pnode->lprops[i]);
906 }
907}
908
909/**
910 * check_lpt_crc - check LPT node crc is correct.
911 * @c: UBIFS file-system description object
912 * @buf: buffer containing node
913 * @len: length of node
914 *
915 * This function returns %0 on success and a negative error code on failure.
916 */
917static int check_lpt_crc(void *buf, int len)
918{
919 int pos = 0;
920 uint8_t *addr = buf;
921 uint16_t crc, calc_crc;
922
923 crc = ubifs_unpack_bits(&addr, &pos, UBIFS_LPT_CRC_BITS);
924 calc_crc = crc16(-1, buf + UBIFS_LPT_CRC_BYTES,
925 len - UBIFS_LPT_CRC_BYTES);
926 if (crc != calc_crc) {
927 ubifs_err("invalid crc in LPT node: crc %hx calc %hx", crc,
928 calc_crc);
929 dbg_dump_stack();
930 return -EINVAL;
931 }
932 return 0;
933}
934
935/**
936 * check_lpt_type - check LPT node type is correct.
937 * @c: UBIFS file-system description object
938 * @addr: address of type bit field is passed and returned updated here
939 * @pos: position of type bit field is passed and returned updated here
940 * @type: expected type
941 *
942 * This function returns %0 on success and a negative error code on failure.
943 */
944static int check_lpt_type(uint8_t **addr, int *pos, int type)
945{
946 int node_type;
947
948 node_type = ubifs_unpack_bits(addr, pos, UBIFS_LPT_TYPE_BITS);
949 if (node_type != type) {
950 ubifs_err("invalid type (%d) in LPT node type %d", node_type,
951 type);
952 dbg_dump_stack();
953 return -EINVAL;
954 }
955 return 0;
956}
957
958/**
959 * unpack_pnode - unpack a pnode.
960 * @c: UBIFS file-system description object
961 * @buf: buffer containing packed pnode to unpack
962 * @pnode: pnode structure to fill
963 *
964 * This function returns %0 on success and a negative error code on failure.
965 */
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +0200966static int unpack_pnode(const struct ubifs_info *c, void *buf,
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300967 struct ubifs_pnode *pnode)
968{
969 uint8_t *addr = buf + UBIFS_LPT_CRC_BYTES;
970 int i, pos = 0, err;
971
972 err = check_lpt_type(&addr, &pos, UBIFS_LPT_PNODE);
973 if (err)
974 return err;
975 if (c->big_lpt)
976 pnode->num = ubifs_unpack_bits(&addr, &pos, c->pcnt_bits);
977 for (i = 0; i < UBIFS_LPT_FANOUT; i++) {
978 struct ubifs_lprops * const lprops = &pnode->lprops[i];
979
980 lprops->free = ubifs_unpack_bits(&addr, &pos, c->space_bits);
981 lprops->free <<= 3;
982 lprops->dirty = ubifs_unpack_bits(&addr, &pos, c->space_bits);
983 lprops->dirty <<= 3;
984
985 if (ubifs_unpack_bits(&addr, &pos, 1))
986 lprops->flags = LPROPS_INDEX;
987 else
988 lprops->flags = 0;
989 lprops->flags |= ubifs_categorize_lprops(c, lprops);
990 }
991 err = check_lpt_crc(buf, c->pnode_sz);
992 return err;
993}
994
995/**
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +0200996 * ubifs_unpack_nnode - unpack a nnode.
Artem Bityutskiy1e517642008-07-14 19:08:37 +0300997 * @c: UBIFS file-system description object
998 * @buf: buffer containing packed nnode to unpack
999 * @nnode: nnode structure to fill
1000 *
1001 * This function returns %0 on success and a negative error code on failure.
1002 */
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +02001003int ubifs_unpack_nnode(const struct ubifs_info *c, void *buf,
1004 struct ubifs_nnode *nnode)
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001005{
1006 uint8_t *addr = buf + UBIFS_LPT_CRC_BYTES;
1007 int i, pos = 0, err;
1008
1009 err = check_lpt_type(&addr, &pos, UBIFS_LPT_NNODE);
1010 if (err)
1011 return err;
1012 if (c->big_lpt)
1013 nnode->num = ubifs_unpack_bits(&addr, &pos, c->pcnt_bits);
1014 for (i = 0; i < UBIFS_LPT_FANOUT; i++) {
1015 int lnum;
1016
1017 lnum = ubifs_unpack_bits(&addr, &pos, c->lpt_lnum_bits) +
1018 c->lpt_first;
1019 if (lnum == c->lpt_last + 1)
1020 lnum = 0;
1021 nnode->nbranch[i].lnum = lnum;
1022 nnode->nbranch[i].offs = ubifs_unpack_bits(&addr, &pos,
1023 c->lpt_offs_bits);
1024 }
1025 err = check_lpt_crc(buf, c->nnode_sz);
1026 return err;
1027}
1028
1029/**
1030 * unpack_ltab - unpack the LPT's own lprops table.
1031 * @c: UBIFS file-system description object
1032 * @buf: buffer from which to unpack
1033 *
1034 * This function returns %0 on success and a negative error code on failure.
1035 */
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +02001036static int unpack_ltab(const struct ubifs_info *c, void *buf)
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001037{
1038 uint8_t *addr = buf + UBIFS_LPT_CRC_BYTES;
1039 int i, pos = 0, err;
1040
1041 err = check_lpt_type(&addr, &pos, UBIFS_LPT_LTAB);
1042 if (err)
1043 return err;
1044 for (i = 0; i < c->lpt_lebs; i++) {
1045 int free = ubifs_unpack_bits(&addr, &pos, c->lpt_spc_bits);
1046 int dirty = ubifs_unpack_bits(&addr, &pos, c->lpt_spc_bits);
1047
1048 if (free < 0 || free > c->leb_size || dirty < 0 ||
1049 dirty > c->leb_size || free + dirty > c->leb_size)
1050 return -EINVAL;
1051
1052 c->ltab[i].free = free;
1053 c->ltab[i].dirty = dirty;
1054 c->ltab[i].tgc = 0;
1055 c->ltab[i].cmt = 0;
1056 }
1057 err = check_lpt_crc(buf, c->ltab_sz);
1058 return err;
1059}
1060
1061/**
1062 * unpack_lsave - unpack the LPT's save table.
1063 * @c: UBIFS file-system description object
1064 * @buf: buffer from which to unpack
1065 *
1066 * This function returns %0 on success and a negative error code on failure.
1067 */
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +02001068static int unpack_lsave(const struct ubifs_info *c, void *buf)
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001069{
1070 uint8_t *addr = buf + UBIFS_LPT_CRC_BYTES;
1071 int i, pos = 0, err;
1072
1073 err = check_lpt_type(&addr, &pos, UBIFS_LPT_LSAVE);
1074 if (err)
1075 return err;
1076 for (i = 0; i < c->lsave_cnt; i++) {
1077 int lnum = ubifs_unpack_bits(&addr, &pos, c->lnum_bits);
1078
1079 if (lnum < c->main_first || lnum >= c->leb_cnt)
1080 return -EINVAL;
1081 c->lsave[i] = lnum;
1082 }
1083 err = check_lpt_crc(buf, c->lsave_sz);
1084 return err;
1085}
1086
1087/**
1088 * validate_nnode - validate a nnode.
1089 * @c: UBIFS file-system description object
1090 * @nnode: nnode to validate
1091 * @parent: parent nnode (or NULL for the root nnode)
1092 * @iip: index in parent
1093 *
1094 * This function returns %0 on success and a negative error code on failure.
1095 */
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +02001096static int validate_nnode(const struct ubifs_info *c, struct ubifs_nnode *nnode,
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001097 struct ubifs_nnode *parent, int iip)
1098{
1099 int i, lvl, max_offs;
1100
1101 if (c->big_lpt) {
1102 int num = calc_nnode_num_from_parent(c, parent, iip);
1103
1104 if (nnode->num != num)
1105 return -EINVAL;
1106 }
1107 lvl = parent ? parent->level - 1 : c->lpt_hght;
1108 if (lvl < 1)
1109 return -EINVAL;
1110 if (lvl == 1)
1111 max_offs = c->leb_size - c->pnode_sz;
1112 else
1113 max_offs = c->leb_size - c->nnode_sz;
1114 for (i = 0; i < UBIFS_LPT_FANOUT; i++) {
1115 int lnum = nnode->nbranch[i].lnum;
1116 int offs = nnode->nbranch[i].offs;
1117
1118 if (lnum == 0) {
1119 if (offs != 0)
1120 return -EINVAL;
1121 continue;
1122 }
1123 if (lnum < c->lpt_first || lnum > c->lpt_last)
1124 return -EINVAL;
1125 if (offs < 0 || offs > max_offs)
1126 return -EINVAL;
1127 }
1128 return 0;
1129}
1130
1131/**
1132 * validate_pnode - validate a pnode.
1133 * @c: UBIFS file-system description object
1134 * @pnode: pnode to validate
1135 * @parent: parent nnode
1136 * @iip: index in parent
1137 *
1138 * This function returns %0 on success and a negative error code on failure.
1139 */
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +02001140static int validate_pnode(const struct ubifs_info *c, struct ubifs_pnode *pnode,
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001141 struct ubifs_nnode *parent, int iip)
1142{
1143 int i;
1144
1145 if (c->big_lpt) {
1146 int num = calc_pnode_num_from_parent(c, parent, iip);
1147
1148 if (pnode->num != num)
1149 return -EINVAL;
1150 }
1151 for (i = 0; i < UBIFS_LPT_FANOUT; i++) {
1152 int free = pnode->lprops[i].free;
1153 int dirty = pnode->lprops[i].dirty;
1154
1155 if (free < 0 || free > c->leb_size || free % c->min_io_size ||
1156 (free & 7))
1157 return -EINVAL;
1158 if (dirty < 0 || dirty > c->leb_size || (dirty & 7))
1159 return -EINVAL;
1160 if (dirty + free > c->leb_size)
1161 return -EINVAL;
1162 }
1163 return 0;
1164}
1165
1166/**
1167 * set_pnode_lnum - set LEB numbers on a pnode.
1168 * @c: UBIFS file-system description object
1169 * @pnode: pnode to update
1170 *
1171 * This function calculates the LEB numbers for the LEB properties it contains
1172 * based on the pnode number.
1173 */
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +02001174static void set_pnode_lnum(const struct ubifs_info *c,
1175 struct ubifs_pnode *pnode)
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001176{
1177 int i, lnum;
1178
1179 lnum = (pnode->num << UBIFS_LPT_FANOUT_SHIFT) + c->main_first;
1180 for (i = 0; i < UBIFS_LPT_FANOUT; i++) {
1181 if (lnum >= c->leb_cnt)
1182 return;
1183 pnode->lprops[i].lnum = lnum++;
1184 }
1185}
1186
1187/**
1188 * ubifs_read_nnode - read a nnode from flash and link it to the tree in memory.
1189 * @c: UBIFS file-system description object
1190 * @parent: parent nnode (or NULL for the root)
1191 * @iip: index in parent
1192 *
1193 * This function returns %0 on success and a negative error code on failure.
1194 */
1195int ubifs_read_nnode(struct ubifs_info *c, struct ubifs_nnode *parent, int iip)
1196{
1197 struct ubifs_nbranch *branch = NULL;
1198 struct ubifs_nnode *nnode = NULL;
1199 void *buf = c->lpt_nod_buf;
1200 int err, lnum, offs;
1201
1202 if (parent) {
1203 branch = &parent->nbranch[iip];
1204 lnum = branch->lnum;
1205 offs = branch->offs;
1206 } else {
1207 lnum = c->lpt_lnum;
1208 offs = c->lpt_offs;
1209 }
1210 nnode = kzalloc(sizeof(struct ubifs_nnode), GFP_NOFS);
1211 if (!nnode) {
1212 err = -ENOMEM;
1213 goto out;
1214 }
1215 if (lnum == 0) {
1216 /*
1217 * This nnode was not written which just means that the LEB
1218 * properties in the subtree below it describe empty LEBs. We
1219 * make the nnode as though we had read it, which in fact means
1220 * doing almost nothing.
1221 */
1222 if (c->big_lpt)
1223 nnode->num = calc_nnode_num_from_parent(c, parent, iip);
1224 } else {
1225 err = ubi_read(c->ubi, lnum, buf, offs, c->nnode_sz);
1226 if (err)
1227 goto out;
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +02001228 err = ubifs_unpack_nnode(c, buf, nnode);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001229 if (err)
1230 goto out;
1231 }
1232 err = validate_nnode(c, nnode, parent, iip);
1233 if (err)
1234 goto out;
1235 if (!c->big_lpt)
1236 nnode->num = calc_nnode_num_from_parent(c, parent, iip);
1237 if (parent) {
1238 branch->nnode = nnode;
1239 nnode->level = parent->level - 1;
1240 } else {
1241 c->nroot = nnode;
1242 nnode->level = c->lpt_hght;
1243 }
1244 nnode->parent = parent;
1245 nnode->iip = iip;
1246 return 0;
1247
1248out:
1249 ubifs_err("error %d reading nnode at %d:%d", err, lnum, offs);
Artem Bityutskiybfcf6772011-05-24 14:10:03 +03001250 dbg_dump_stack();
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001251 kfree(nnode);
1252 return err;
1253}
1254
1255/**
1256 * read_pnode - read a pnode from flash and link it to the tree in memory.
1257 * @c: UBIFS file-system description object
1258 * @parent: parent nnode
1259 * @iip: index in parent
1260 *
1261 * This function returns %0 on success and a negative error code on failure.
1262 */
1263static int read_pnode(struct ubifs_info *c, struct ubifs_nnode *parent, int iip)
1264{
1265 struct ubifs_nbranch *branch;
1266 struct ubifs_pnode *pnode = NULL;
1267 void *buf = c->lpt_nod_buf;
1268 int err, lnum, offs;
1269
1270 branch = &parent->nbranch[iip];
1271 lnum = branch->lnum;
1272 offs = branch->offs;
1273 pnode = kzalloc(sizeof(struct ubifs_pnode), GFP_NOFS);
Artem Bityutskiy54acbaa2011-03-25 19:09:54 +02001274 if (!pnode)
1275 return -ENOMEM;
1276
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001277 if (lnum == 0) {
1278 /*
1279 * This pnode was not written which just means that the LEB
1280 * properties in it describe empty LEBs. We make the pnode as
1281 * though we had read it.
1282 */
1283 int i;
1284
1285 if (c->big_lpt)
1286 pnode->num = calc_pnode_num_from_parent(c, parent, iip);
1287 for (i = 0; i < UBIFS_LPT_FANOUT; i++) {
1288 struct ubifs_lprops * const lprops = &pnode->lprops[i];
1289
1290 lprops->free = c->leb_size;
1291 lprops->flags = ubifs_categorize_lprops(c, lprops);
1292 }
1293 } else {
1294 err = ubi_read(c->ubi, lnum, buf, offs, c->pnode_sz);
1295 if (err)
1296 goto out;
1297 err = unpack_pnode(c, buf, pnode);
1298 if (err)
1299 goto out;
1300 }
1301 err = validate_pnode(c, pnode, parent, iip);
1302 if (err)
1303 goto out;
1304 if (!c->big_lpt)
1305 pnode->num = calc_pnode_num_from_parent(c, parent, iip);
1306 branch->pnode = pnode;
1307 pnode->parent = parent;
1308 pnode->iip = iip;
1309 set_pnode_lnum(c, pnode);
1310 c->pnodes_have += 1;
1311 return 0;
1312
1313out:
1314 ubifs_err("error %d reading pnode at %d:%d", err, lnum, offs);
1315 dbg_dump_pnode(c, pnode, parent, iip);
Artem Bityutskiybfcf6772011-05-24 14:10:03 +03001316 dbg_dump_stack();
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001317 dbg_msg("calc num: %d", calc_pnode_num_from_parent(c, parent, iip));
1318 kfree(pnode);
1319 return err;
1320}
1321
1322/**
1323 * read_ltab - read LPT's own lprops table.
1324 * @c: UBIFS file-system description object
1325 *
1326 * This function returns %0 on success and a negative error code on failure.
1327 */
1328static int read_ltab(struct ubifs_info *c)
1329{
1330 int err;
1331 void *buf;
1332
1333 buf = vmalloc(c->ltab_sz);
1334 if (!buf)
1335 return -ENOMEM;
1336 err = ubi_read(c->ubi, c->ltab_lnum, buf, c->ltab_offs, c->ltab_sz);
1337 if (err)
1338 goto out;
1339 err = unpack_ltab(c, buf);
1340out:
1341 vfree(buf);
1342 return err;
1343}
1344
1345/**
1346 * read_lsave - read LPT's save table.
1347 * @c: UBIFS file-system description object
1348 *
1349 * This function returns %0 on success and a negative error code on failure.
1350 */
1351static int read_lsave(struct ubifs_info *c)
1352{
1353 int err, i;
1354 void *buf;
1355
1356 buf = vmalloc(c->lsave_sz);
1357 if (!buf)
1358 return -ENOMEM;
1359 err = ubi_read(c->ubi, c->lsave_lnum, buf, c->lsave_offs, c->lsave_sz);
1360 if (err)
1361 goto out;
1362 err = unpack_lsave(c, buf);
1363 if (err)
1364 goto out;
1365 for (i = 0; i < c->lsave_cnt; i++) {
1366 int lnum = c->lsave[i];
Vasiliy Kulikov0e54c892010-09-05 22:33:00 +04001367 struct ubifs_lprops *lprops;
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001368
1369 /*
1370 * Due to automatic resizing, the values in the lsave table
1371 * could be beyond the volume size - just ignore them.
1372 */
1373 if (lnum >= c->leb_cnt)
1374 continue;
Vasiliy Kulikov0e54c892010-09-05 22:33:00 +04001375 lprops = ubifs_lpt_lookup(c, lnum);
1376 if (IS_ERR(lprops)) {
1377 err = PTR_ERR(lprops);
1378 goto out;
1379 }
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001380 }
1381out:
1382 vfree(buf);
1383 return err;
1384}
1385
1386/**
1387 * ubifs_get_nnode - get a nnode.
1388 * @c: UBIFS file-system description object
1389 * @parent: parent nnode (or NULL for the root)
1390 * @iip: index in parent
1391 *
1392 * This function returns a pointer to the nnode on success or a negative error
1393 * code on failure.
1394 */
1395struct ubifs_nnode *ubifs_get_nnode(struct ubifs_info *c,
1396 struct ubifs_nnode *parent, int iip)
1397{
1398 struct ubifs_nbranch *branch;
1399 struct ubifs_nnode *nnode;
1400 int err;
1401
1402 branch = &parent->nbranch[iip];
1403 nnode = branch->nnode;
1404 if (nnode)
1405 return nnode;
1406 err = ubifs_read_nnode(c, parent, iip);
1407 if (err)
1408 return ERR_PTR(err);
1409 return branch->nnode;
1410}
1411
1412/**
1413 * ubifs_get_pnode - get a pnode.
1414 * @c: UBIFS file-system description object
1415 * @parent: parent nnode
1416 * @iip: index in parent
1417 *
1418 * This function returns a pointer to the pnode on success or a negative error
1419 * code on failure.
1420 */
1421struct ubifs_pnode *ubifs_get_pnode(struct ubifs_info *c,
1422 struct ubifs_nnode *parent, int iip)
1423{
1424 struct ubifs_nbranch *branch;
1425 struct ubifs_pnode *pnode;
1426 int err;
1427
1428 branch = &parent->nbranch[iip];
1429 pnode = branch->pnode;
1430 if (pnode)
1431 return pnode;
1432 err = read_pnode(c, parent, iip);
1433 if (err)
1434 return ERR_PTR(err);
1435 update_cats(c, branch->pnode);
1436 return branch->pnode;
1437}
1438
1439/**
1440 * ubifs_lpt_lookup - lookup LEB properties in the LPT.
1441 * @c: UBIFS file-system description object
1442 * @lnum: LEB number to lookup
1443 *
1444 * This function returns a pointer to the LEB properties on success or a
1445 * negative error code on failure.
1446 */
1447struct ubifs_lprops *ubifs_lpt_lookup(struct ubifs_info *c, int lnum)
1448{
1449 int err, i, h, iip, shft;
1450 struct ubifs_nnode *nnode;
1451 struct ubifs_pnode *pnode;
1452
1453 if (!c->nroot) {
1454 err = ubifs_read_nnode(c, NULL, 0);
1455 if (err)
1456 return ERR_PTR(err);
1457 }
1458 nnode = c->nroot;
1459 i = lnum - c->main_first;
1460 shft = c->lpt_hght * UBIFS_LPT_FANOUT_SHIFT;
1461 for (h = 1; h < c->lpt_hght; h++) {
1462 iip = ((i >> shft) & (UBIFS_LPT_FANOUT - 1));
1463 shft -= UBIFS_LPT_FANOUT_SHIFT;
1464 nnode = ubifs_get_nnode(c, nnode, iip);
1465 if (IS_ERR(nnode))
Julia Lawall6da51562010-05-22 12:00:21 +02001466 return ERR_CAST(nnode);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001467 }
1468 iip = ((i >> shft) & (UBIFS_LPT_FANOUT - 1));
1469 shft -= UBIFS_LPT_FANOUT_SHIFT;
1470 pnode = ubifs_get_pnode(c, nnode, iip);
1471 if (IS_ERR(pnode))
Julia Lawall6da51562010-05-22 12:00:21 +02001472 return ERR_CAST(pnode);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001473 iip = (i & (UBIFS_LPT_FANOUT - 1));
1474 dbg_lp("LEB %d, free %d, dirty %d, flags %d", lnum,
1475 pnode->lprops[iip].free, pnode->lprops[iip].dirty,
1476 pnode->lprops[iip].flags);
1477 return &pnode->lprops[iip];
1478}
1479
1480/**
1481 * dirty_cow_nnode - ensure a nnode is not being committed.
1482 * @c: UBIFS file-system description object
1483 * @nnode: nnode to check
1484 *
1485 * Returns dirtied nnode on success or negative error code on failure.
1486 */
1487static struct ubifs_nnode *dirty_cow_nnode(struct ubifs_info *c,
1488 struct ubifs_nnode *nnode)
1489{
1490 struct ubifs_nnode *n;
1491 int i;
1492
1493 if (!test_bit(COW_CNODE, &nnode->flags)) {
1494 /* nnode is not being committed */
1495 if (!test_and_set_bit(DIRTY_CNODE, &nnode->flags)) {
1496 c->dirty_nn_cnt += 1;
1497 ubifs_add_nnode_dirt(c, nnode);
1498 }
1499 return nnode;
1500 }
1501
1502 /* nnode is being committed, so copy it */
1503 n = kmalloc(sizeof(struct ubifs_nnode), GFP_NOFS);
1504 if (unlikely(!n))
1505 return ERR_PTR(-ENOMEM);
1506
1507 memcpy(n, nnode, sizeof(struct ubifs_nnode));
1508 n->cnext = NULL;
1509 __set_bit(DIRTY_CNODE, &n->flags);
1510 __clear_bit(COW_CNODE, &n->flags);
1511
1512 /* The children now have new parent */
1513 for (i = 0; i < UBIFS_LPT_FANOUT; i++) {
1514 struct ubifs_nbranch *branch = &n->nbranch[i];
1515
1516 if (branch->cnode)
1517 branch->cnode->parent = n;
1518 }
1519
1520 ubifs_assert(!test_bit(OBSOLETE_CNODE, &nnode->flags));
1521 __set_bit(OBSOLETE_CNODE, &nnode->flags);
1522
1523 c->dirty_nn_cnt += 1;
1524 ubifs_add_nnode_dirt(c, nnode);
1525 if (nnode->parent)
1526 nnode->parent->nbranch[n->iip].nnode = n;
1527 else
1528 c->nroot = n;
1529 return n;
1530}
1531
1532/**
1533 * dirty_cow_pnode - ensure a pnode is not being committed.
1534 * @c: UBIFS file-system description object
1535 * @pnode: pnode to check
1536 *
1537 * Returns dirtied pnode on success or negative error code on failure.
1538 */
1539static struct ubifs_pnode *dirty_cow_pnode(struct ubifs_info *c,
1540 struct ubifs_pnode *pnode)
1541{
1542 struct ubifs_pnode *p;
1543
1544 if (!test_bit(COW_CNODE, &pnode->flags)) {
1545 /* pnode is not being committed */
1546 if (!test_and_set_bit(DIRTY_CNODE, &pnode->flags)) {
1547 c->dirty_pn_cnt += 1;
1548 add_pnode_dirt(c, pnode);
1549 }
1550 return pnode;
1551 }
1552
1553 /* pnode is being committed, so copy it */
1554 p = kmalloc(sizeof(struct ubifs_pnode), GFP_NOFS);
1555 if (unlikely(!p))
1556 return ERR_PTR(-ENOMEM);
1557
1558 memcpy(p, pnode, sizeof(struct ubifs_pnode));
1559 p->cnext = NULL;
1560 __set_bit(DIRTY_CNODE, &p->flags);
1561 __clear_bit(COW_CNODE, &p->flags);
1562 replace_cats(c, pnode, p);
1563
1564 ubifs_assert(!test_bit(OBSOLETE_CNODE, &pnode->flags));
1565 __set_bit(OBSOLETE_CNODE, &pnode->flags);
1566
1567 c->dirty_pn_cnt += 1;
1568 add_pnode_dirt(c, pnode);
1569 pnode->parent->nbranch[p->iip].pnode = p;
1570 return p;
1571}
1572
1573/**
1574 * ubifs_lpt_lookup_dirty - lookup LEB properties in the LPT.
1575 * @c: UBIFS file-system description object
1576 * @lnum: LEB number to lookup
1577 *
1578 * This function returns a pointer to the LEB properties on success or a
1579 * negative error code on failure.
1580 */
1581struct ubifs_lprops *ubifs_lpt_lookup_dirty(struct ubifs_info *c, int lnum)
1582{
1583 int err, i, h, iip, shft;
1584 struct ubifs_nnode *nnode;
1585 struct ubifs_pnode *pnode;
1586
1587 if (!c->nroot) {
1588 err = ubifs_read_nnode(c, NULL, 0);
1589 if (err)
1590 return ERR_PTR(err);
1591 }
1592 nnode = c->nroot;
1593 nnode = dirty_cow_nnode(c, nnode);
1594 if (IS_ERR(nnode))
Julia Lawall6da51562010-05-22 12:00:21 +02001595 return ERR_CAST(nnode);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001596 i = lnum - c->main_first;
1597 shft = c->lpt_hght * UBIFS_LPT_FANOUT_SHIFT;
1598 for (h = 1; h < c->lpt_hght; h++) {
1599 iip = ((i >> shft) & (UBIFS_LPT_FANOUT - 1));
1600 shft -= UBIFS_LPT_FANOUT_SHIFT;
1601 nnode = ubifs_get_nnode(c, nnode, iip);
1602 if (IS_ERR(nnode))
Julia Lawall6da51562010-05-22 12:00:21 +02001603 return ERR_CAST(nnode);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001604 nnode = dirty_cow_nnode(c, nnode);
1605 if (IS_ERR(nnode))
Julia Lawall6da51562010-05-22 12:00:21 +02001606 return ERR_CAST(nnode);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001607 }
1608 iip = ((i >> shft) & (UBIFS_LPT_FANOUT - 1));
1609 shft -= UBIFS_LPT_FANOUT_SHIFT;
1610 pnode = ubifs_get_pnode(c, nnode, iip);
1611 if (IS_ERR(pnode))
Julia Lawall6da51562010-05-22 12:00:21 +02001612 return ERR_CAST(pnode);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001613 pnode = dirty_cow_pnode(c, pnode);
1614 if (IS_ERR(pnode))
Julia Lawall6da51562010-05-22 12:00:21 +02001615 return ERR_CAST(pnode);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001616 iip = (i & (UBIFS_LPT_FANOUT - 1));
1617 dbg_lp("LEB %d, free %d, dirty %d, flags %d", lnum,
1618 pnode->lprops[iip].free, pnode->lprops[iip].dirty,
1619 pnode->lprops[iip].flags);
1620 ubifs_assert(test_bit(DIRTY_CNODE, &pnode->flags));
1621 return &pnode->lprops[iip];
1622}
1623
1624/**
1625 * lpt_init_rd - initialize the LPT for reading.
1626 * @c: UBIFS file-system description object
1627 *
1628 * This function returns %0 on success and a negative error code on failure.
1629 */
1630static int lpt_init_rd(struct ubifs_info *c)
1631{
1632 int err, i;
1633
1634 c->ltab = vmalloc(sizeof(struct ubifs_lpt_lprops) * c->lpt_lebs);
1635 if (!c->ltab)
1636 return -ENOMEM;
1637
1638 i = max_t(int, c->nnode_sz, c->pnode_sz);
1639 c->lpt_nod_buf = kmalloc(i, GFP_KERNEL);
1640 if (!c->lpt_nod_buf)
1641 return -ENOMEM;
1642
1643 for (i = 0; i < LPROPS_HEAP_CNT; i++) {
1644 c->lpt_heap[i].arr = kmalloc(sizeof(void *) * LPT_HEAP_SZ,
1645 GFP_KERNEL);
1646 if (!c->lpt_heap[i].arr)
1647 return -ENOMEM;
1648 c->lpt_heap[i].cnt = 0;
1649 c->lpt_heap[i].max_cnt = LPT_HEAP_SZ;
1650 }
1651
1652 c->dirty_idx.arr = kmalloc(sizeof(void *) * LPT_HEAP_SZ, GFP_KERNEL);
1653 if (!c->dirty_idx.arr)
1654 return -ENOMEM;
1655 c->dirty_idx.cnt = 0;
1656 c->dirty_idx.max_cnt = LPT_HEAP_SZ;
1657
1658 err = read_ltab(c);
1659 if (err)
1660 return err;
1661
1662 dbg_lp("space_bits %d", c->space_bits);
1663 dbg_lp("lpt_lnum_bits %d", c->lpt_lnum_bits);
1664 dbg_lp("lpt_offs_bits %d", c->lpt_offs_bits);
1665 dbg_lp("lpt_spc_bits %d", c->lpt_spc_bits);
1666 dbg_lp("pcnt_bits %d", c->pcnt_bits);
1667 dbg_lp("lnum_bits %d", c->lnum_bits);
1668 dbg_lp("pnode_sz %d", c->pnode_sz);
1669 dbg_lp("nnode_sz %d", c->nnode_sz);
1670 dbg_lp("ltab_sz %d", c->ltab_sz);
1671 dbg_lp("lsave_sz %d", c->lsave_sz);
1672 dbg_lp("lsave_cnt %d", c->lsave_cnt);
1673 dbg_lp("lpt_hght %d", c->lpt_hght);
1674 dbg_lp("big_lpt %d", c->big_lpt);
1675 dbg_lp("LPT root is at %d:%d", c->lpt_lnum, c->lpt_offs);
1676 dbg_lp("LPT head is at %d:%d", c->nhead_lnum, c->nhead_offs);
1677 dbg_lp("LPT ltab is at %d:%d", c->ltab_lnum, c->ltab_offs);
1678 if (c->big_lpt)
1679 dbg_lp("LPT lsave is at %d:%d", c->lsave_lnum, c->lsave_offs);
1680
1681 return 0;
1682}
1683
1684/**
1685 * lpt_init_wr - initialize the LPT for writing.
1686 * @c: UBIFS file-system description object
1687 *
1688 * 'lpt_init_rd()' must have been called already.
1689 *
1690 * This function returns %0 on success and a negative error code on failure.
1691 */
1692static int lpt_init_wr(struct ubifs_info *c)
1693{
1694 int err, i;
1695
1696 c->ltab_cmt = vmalloc(sizeof(struct ubifs_lpt_lprops) * c->lpt_lebs);
1697 if (!c->ltab_cmt)
1698 return -ENOMEM;
1699
1700 c->lpt_buf = vmalloc(c->leb_size);
1701 if (!c->lpt_buf)
1702 return -ENOMEM;
1703
1704 if (c->big_lpt) {
1705 c->lsave = kmalloc(sizeof(int) * c->lsave_cnt, GFP_NOFS);
1706 if (!c->lsave)
1707 return -ENOMEM;
1708 err = read_lsave(c);
1709 if (err)
1710 return err;
1711 }
1712
1713 for (i = 0; i < c->lpt_lebs; i++)
1714 if (c->ltab[i].free == c->leb_size) {
1715 err = ubifs_leb_unmap(c, i + c->lpt_first);
1716 if (err)
1717 return err;
1718 }
1719
1720 return 0;
1721}
1722
1723/**
1724 * ubifs_lpt_init - initialize the LPT.
1725 * @c: UBIFS file-system description object
1726 * @rd: whether to initialize lpt for reading
1727 * @wr: whether to initialize lpt for writing
1728 *
1729 * For mounting 'rw', @rd and @wr are both true. For mounting 'ro', @rd is true
1730 * and @wr is false. For mounting from 'ro' to 'rw', @rd is false and @wr is
1731 * true.
1732 *
1733 * This function returns %0 on success and a negative error code on failure.
1734 */
1735int ubifs_lpt_init(struct ubifs_info *c, int rd, int wr)
1736{
1737 int err;
1738
1739 if (rd) {
1740 err = lpt_init_rd(c);
1741 if (err)
1742 return err;
1743 }
1744
1745 if (wr) {
1746 err = lpt_init_wr(c);
1747 if (err)
1748 return err;
1749 }
1750
1751 return 0;
1752}
1753
1754/**
1755 * struct lpt_scan_node - somewhere to put nodes while we scan LPT.
1756 * @nnode: where to keep a nnode
1757 * @pnode: where to keep a pnode
1758 * @cnode: where to keep a cnode
1759 * @in_tree: is the node in the tree in memory
1760 * @ptr.nnode: pointer to the nnode (if it is an nnode) which may be here or in
1761 * the tree
1762 * @ptr.pnode: ditto for pnode
1763 * @ptr.cnode: ditto for cnode
1764 */
1765struct lpt_scan_node {
1766 union {
1767 struct ubifs_nnode nnode;
1768 struct ubifs_pnode pnode;
1769 struct ubifs_cnode cnode;
1770 };
1771 int in_tree;
1772 union {
1773 struct ubifs_nnode *nnode;
1774 struct ubifs_pnode *pnode;
1775 struct ubifs_cnode *cnode;
1776 } ptr;
1777};
1778
1779/**
1780 * scan_get_nnode - for the scan, get a nnode from either the tree or flash.
1781 * @c: the UBIFS file-system description object
1782 * @path: where to put the nnode
1783 * @parent: parent of the nnode
1784 * @iip: index in parent of the nnode
1785 *
1786 * This function returns a pointer to the nnode on success or a negative error
1787 * code on failure.
1788 */
1789static struct ubifs_nnode *scan_get_nnode(struct ubifs_info *c,
1790 struct lpt_scan_node *path,
1791 struct ubifs_nnode *parent, int iip)
1792{
1793 struct ubifs_nbranch *branch;
1794 struct ubifs_nnode *nnode;
1795 void *buf = c->lpt_nod_buf;
1796 int err;
1797
1798 branch = &parent->nbranch[iip];
1799 nnode = branch->nnode;
1800 if (nnode) {
1801 path->in_tree = 1;
1802 path->ptr.nnode = nnode;
1803 return nnode;
1804 }
1805 nnode = &path->nnode;
1806 path->in_tree = 0;
1807 path->ptr.nnode = nnode;
1808 memset(nnode, 0, sizeof(struct ubifs_nnode));
1809 if (branch->lnum == 0) {
1810 /*
1811 * This nnode was not written which just means that the LEB
1812 * properties in the subtree below it describe empty LEBs. We
1813 * make the nnode as though we had read it, which in fact means
1814 * doing almost nothing.
1815 */
1816 if (c->big_lpt)
1817 nnode->num = calc_nnode_num_from_parent(c, parent, iip);
1818 } else {
1819 err = ubi_read(c->ubi, branch->lnum, buf, branch->offs,
1820 c->nnode_sz);
1821 if (err)
1822 return ERR_PTR(err);
Artem Bityutskiy2ba5f7a2008-10-31 17:32:30 +02001823 err = ubifs_unpack_nnode(c, buf, nnode);
Artem Bityutskiy1e517642008-07-14 19:08:37 +03001824 if (err)
1825 return ERR_PTR(err);
1826 }
1827 err = validate_nnode(c, nnode, parent, iip);
1828 if (err)
1829 return ERR_PTR(err);
1830 if (!c->big_lpt)
1831 nnode->num = calc_nnode_num_from_parent(c, parent, iip);
1832 nnode->level = parent->level - 1;
1833 nnode->parent = parent;
1834 nnode->iip = iip;
1835 return nnode;
1836}
1837
1838/**
1839 * scan_get_pnode - for the scan, get a pnode from either the tree or flash.
1840 * @c: the UBIFS file-system description object
1841 * @path: where to put the pnode
1842 * @parent: parent of the pnode
1843 * @iip: index in parent of the pnode
1844 *
1845 * This function returns a pointer to the pnode on success or a negative error
1846 * code on failure.
1847 */
1848static struct ubifs_pnode *scan_get_pnode(struct ubifs_info *c,
1849 struct lpt_scan_node *path,
1850 struct ubifs_nnode *parent, int iip)
1851{
1852 struct ubifs_nbranch *branch;
1853 struct ubifs_pnode *pnode;
1854 void *buf = c->lpt_nod_buf;
1855 int err;
1856
1857 branch = &parent->nbranch[iip];
1858 pnode = branch->pnode;
1859 if (pnode) {
1860 path->in_tree = 1;
1861 path->ptr.pnode = pnode;
1862 return pnode;
1863 }
1864 pnode = &path->pnode;
1865 path->in_tree = 0;
1866 path->ptr.pnode = pnode;
1867 memset(pnode, 0, sizeof(struct ubifs_pnode));
1868 if (branch->lnum == 0) {
1869 /*
1870 * This pnode was not written which just means that the LEB
1871 * properties in it describe empty LEBs. We make the pnode as
1872 * though we had read it.
1873 */
1874 int i;
1875
1876 if (c->big_lpt)
1877 pnode->num = calc_pnode_num_from_parent(c, parent, iip);
1878 for (i = 0; i < UBIFS_LPT_FANOUT; i++) {
1879 struct ubifs_lprops * const lprops = &pnode->lprops[i];
1880
1881 lprops->free = c->leb_size;
1882 lprops->flags = ubifs_categorize_lprops(c, lprops);
1883 }
1884 } else {
1885 ubifs_assert(branch->lnum >= c->lpt_first &&
1886 branch->lnum <= c->lpt_last);
1887 ubifs_assert(branch->offs >= 0 && branch->offs < c->leb_size);
1888 err = ubi_read(c->ubi, branch->lnum, buf, branch->offs,
1889 c->pnode_sz);
1890 if (err)
1891 return ERR_PTR(err);
1892 err = unpack_pnode(c, buf, pnode);
1893 if (err)
1894 return ERR_PTR(err);
1895 }
1896 err = validate_pnode(c, pnode, parent, iip);
1897 if (err)
1898 return ERR_PTR(err);
1899 if (!c->big_lpt)
1900 pnode->num = calc_pnode_num_from_parent(c, parent, iip);
1901 pnode->parent = parent;
1902 pnode->iip = iip;
1903 set_pnode_lnum(c, pnode);
1904 return pnode;
1905}
1906
1907/**
1908 * ubifs_lpt_scan_nolock - scan the LPT.
1909 * @c: the UBIFS file-system description object
1910 * @start_lnum: LEB number from which to start scanning
1911 * @end_lnum: LEB number at which to stop scanning
1912 * @scan_cb: callback function called for each lprops
1913 * @data: data to be passed to the callback function
1914 *
1915 * This function returns %0 on success and a negative error code on failure.
1916 */
1917int ubifs_lpt_scan_nolock(struct ubifs_info *c, int start_lnum, int end_lnum,
1918 ubifs_lpt_scan_callback scan_cb, void *data)
1919{
1920 int err = 0, i, h, iip, shft;
1921 struct ubifs_nnode *nnode;
1922 struct ubifs_pnode *pnode;
1923 struct lpt_scan_node *path;
1924
1925 if (start_lnum == -1) {
1926 start_lnum = end_lnum + 1;
1927 if (start_lnum >= c->leb_cnt)
1928 start_lnum = c->main_first;
1929 }
1930
1931 ubifs_assert(start_lnum >= c->main_first && start_lnum < c->leb_cnt);
1932 ubifs_assert(end_lnum >= c->main_first && end_lnum < c->leb_cnt);
1933
1934 if (!c->nroot) {
1935 err = ubifs_read_nnode(c, NULL, 0);
1936 if (err)
1937 return err;
1938 }
1939
1940 path = kmalloc(sizeof(struct lpt_scan_node) * (c->lpt_hght + 1),
1941 GFP_NOFS);
1942 if (!path)
1943 return -ENOMEM;
1944
1945 path[0].ptr.nnode = c->nroot;
1946 path[0].in_tree = 1;
1947again:
1948 /* Descend to the pnode containing start_lnum */
1949 nnode = c->nroot;
1950 i = start_lnum - c->main_first;
1951 shft = c->lpt_hght * UBIFS_LPT_FANOUT_SHIFT;
1952 for (h = 1; h < c->lpt_hght; h++) {
1953 iip = ((i >> shft) & (UBIFS_LPT_FANOUT - 1));
1954 shft -= UBIFS_LPT_FANOUT_SHIFT;
1955 nnode = scan_get_nnode(c, path + h, nnode, iip);
1956 if (IS_ERR(nnode)) {
1957 err = PTR_ERR(nnode);
1958 goto out;
1959 }
1960 }
1961 iip = ((i >> shft) & (UBIFS_LPT_FANOUT - 1));
1962 shft -= UBIFS_LPT_FANOUT_SHIFT;
1963 pnode = scan_get_pnode(c, path + h, nnode, iip);
1964 if (IS_ERR(pnode)) {
1965 err = PTR_ERR(pnode);
1966 goto out;
1967 }
1968 iip = (i & (UBIFS_LPT_FANOUT - 1));
1969
1970 /* Loop for each lprops */
1971 while (1) {
1972 struct ubifs_lprops *lprops = &pnode->lprops[iip];
1973 int ret, lnum = lprops->lnum;
1974
1975 ret = scan_cb(c, lprops, path[h].in_tree, data);
1976 if (ret < 0) {
1977 err = ret;
1978 goto out;
1979 }
1980 if (ret & LPT_SCAN_ADD) {
1981 /* Add all the nodes in path to the tree in memory */
1982 for (h = 1; h < c->lpt_hght; h++) {
1983 const size_t sz = sizeof(struct ubifs_nnode);
1984 struct ubifs_nnode *parent;
1985
1986 if (path[h].in_tree)
1987 continue;
1988 nnode = kmalloc(sz, GFP_NOFS);
1989 if (!nnode) {
1990 err = -ENOMEM;
1991 goto out;
1992 }
1993 memcpy(nnode, &path[h].nnode, sz);
1994 parent = nnode->parent;
1995 parent->nbranch[nnode->iip].nnode = nnode;
1996 path[h].ptr.nnode = nnode;
1997 path[h].in_tree = 1;
1998 path[h + 1].cnode.parent = nnode;
1999 }
2000 if (path[h].in_tree)
2001 ubifs_ensure_cat(c, lprops);
2002 else {
2003 const size_t sz = sizeof(struct ubifs_pnode);
2004 struct ubifs_nnode *parent;
2005
2006 pnode = kmalloc(sz, GFP_NOFS);
2007 if (!pnode) {
2008 err = -ENOMEM;
2009 goto out;
2010 }
2011 memcpy(pnode, &path[h].pnode, sz);
2012 parent = pnode->parent;
2013 parent->nbranch[pnode->iip].pnode = pnode;
2014 path[h].ptr.pnode = pnode;
2015 path[h].in_tree = 1;
2016 update_cats(c, pnode);
2017 c->pnodes_have += 1;
2018 }
2019 err = dbg_check_lpt_nodes(c, (struct ubifs_cnode *)
2020 c->nroot, 0, 0);
2021 if (err)
2022 goto out;
2023 err = dbg_check_cats(c);
2024 if (err)
2025 goto out;
2026 }
2027 if (ret & LPT_SCAN_STOP) {
2028 err = 0;
2029 break;
2030 }
2031 /* Get the next lprops */
2032 if (lnum == end_lnum) {
2033 /*
2034 * We got to the end without finding what we were
2035 * looking for
2036 */
2037 err = -ENOSPC;
2038 goto out;
2039 }
2040 if (lnum + 1 >= c->leb_cnt) {
2041 /* Wrap-around to the beginning */
2042 start_lnum = c->main_first;
2043 goto again;
2044 }
2045 if (iip + 1 < UBIFS_LPT_FANOUT) {
2046 /* Next lprops is in the same pnode */
2047 iip += 1;
2048 continue;
2049 }
2050 /* We need to get the next pnode. Go up until we can go right */
2051 iip = pnode->iip;
2052 while (1) {
2053 h -= 1;
2054 ubifs_assert(h >= 0);
2055 nnode = path[h].ptr.nnode;
2056 if (iip + 1 < UBIFS_LPT_FANOUT)
2057 break;
2058 iip = nnode->iip;
2059 }
2060 /* Go right */
2061 iip += 1;
2062 /* Descend to the pnode */
2063 h += 1;
2064 for (; h < c->lpt_hght; h++) {
2065 nnode = scan_get_nnode(c, path + h, nnode, iip);
2066 if (IS_ERR(nnode)) {
2067 err = PTR_ERR(nnode);
2068 goto out;
2069 }
2070 iip = 0;
2071 }
2072 pnode = scan_get_pnode(c, path + h, nnode, iip);
2073 if (IS_ERR(pnode)) {
2074 err = PTR_ERR(pnode);
2075 goto out;
2076 }
2077 iip = 0;
2078 }
2079out:
2080 kfree(path);
2081 return err;
2082}
2083
2084#ifdef CONFIG_UBIFS_FS_DEBUG
2085
2086/**
2087 * dbg_chk_pnode - check a pnode.
2088 * @c: the UBIFS file-system description object
2089 * @pnode: pnode to check
2090 * @col: pnode column
2091 *
2092 * This function returns %0 on success and a negative error code on failure.
2093 */
2094static int dbg_chk_pnode(struct ubifs_info *c, struct ubifs_pnode *pnode,
2095 int col)
2096{
2097 int i;
2098
2099 if (pnode->num != col) {
2100 dbg_err("pnode num %d expected %d parent num %d iip %d",
2101 pnode->num, col, pnode->parent->num, pnode->iip);
2102 return -EINVAL;
2103 }
2104 for (i = 0; i < UBIFS_LPT_FANOUT; i++) {
2105 struct ubifs_lprops *lp, *lprops = &pnode->lprops[i];
2106 int lnum = (pnode->num << UBIFS_LPT_FANOUT_SHIFT) + i +
2107 c->main_first;
2108 int found, cat = lprops->flags & LPROPS_CAT_MASK;
2109 struct ubifs_lpt_heap *heap;
2110 struct list_head *list = NULL;
2111
2112 if (lnum >= c->leb_cnt)
2113 continue;
2114 if (lprops->lnum != lnum) {
2115 dbg_err("bad LEB number %d expected %d",
2116 lprops->lnum, lnum);
2117 return -EINVAL;
2118 }
2119 if (lprops->flags & LPROPS_TAKEN) {
2120 if (cat != LPROPS_UNCAT) {
2121 dbg_err("LEB %d taken but not uncat %d",
2122 lprops->lnum, cat);
2123 return -EINVAL;
2124 }
2125 continue;
2126 }
2127 if (lprops->flags & LPROPS_INDEX) {
2128 switch (cat) {
2129 case LPROPS_UNCAT:
2130 case LPROPS_DIRTY_IDX:
2131 case LPROPS_FRDI_IDX:
2132 break;
2133 default:
2134 dbg_err("LEB %d index but cat %d",
2135 lprops->lnum, cat);
2136 return -EINVAL;
2137 }
2138 } else {
2139 switch (cat) {
2140 case LPROPS_UNCAT:
2141 case LPROPS_DIRTY:
2142 case LPROPS_FREE:
2143 case LPROPS_EMPTY:
2144 case LPROPS_FREEABLE:
2145 break;
2146 default:
2147 dbg_err("LEB %d not index but cat %d",
2148 lprops->lnum, cat);
2149 return -EINVAL;
2150 }
2151 }
2152 switch (cat) {
2153 case LPROPS_UNCAT:
2154 list = &c->uncat_list;
2155 break;
2156 case LPROPS_EMPTY:
2157 list = &c->empty_list;
2158 break;
2159 case LPROPS_FREEABLE:
2160 list = &c->freeable_list;
2161 break;
2162 case LPROPS_FRDI_IDX:
2163 list = &c->frdi_idx_list;
2164 break;
2165 }
2166 found = 0;
2167 switch (cat) {
2168 case LPROPS_DIRTY:
2169 case LPROPS_DIRTY_IDX:
2170 case LPROPS_FREE:
2171 heap = &c->lpt_heap[cat - 1];
2172 if (lprops->hpos < heap->cnt &&
2173 heap->arr[lprops->hpos] == lprops)
2174 found = 1;
2175 break;
2176 case LPROPS_UNCAT:
2177 case LPROPS_EMPTY:
2178 case LPROPS_FREEABLE:
2179 case LPROPS_FRDI_IDX:
2180 list_for_each_entry(lp, list, list)
2181 if (lprops == lp) {
2182 found = 1;
2183 break;
2184 }
2185 break;
2186 }
2187 if (!found) {
2188 dbg_err("LEB %d cat %d not found in cat heap/list",
2189 lprops->lnum, cat);
2190 return -EINVAL;
2191 }
2192 switch (cat) {
2193 case LPROPS_EMPTY:
2194 if (lprops->free != c->leb_size) {
2195 dbg_err("LEB %d cat %d free %d dirty %d",
2196 lprops->lnum, cat, lprops->free,
2197 lprops->dirty);
2198 return -EINVAL;
2199 }
2200 case LPROPS_FREEABLE:
2201 case LPROPS_FRDI_IDX:
2202 if (lprops->free + lprops->dirty != c->leb_size) {
2203 dbg_err("LEB %d cat %d free %d dirty %d",
2204 lprops->lnum, cat, lprops->free,
2205 lprops->dirty);
2206 return -EINVAL;
2207 }
2208 }
2209 }
2210 return 0;
2211}
2212
2213/**
2214 * dbg_check_lpt_nodes - check nnodes and pnodes.
2215 * @c: the UBIFS file-system description object
2216 * @cnode: next cnode (nnode or pnode) to check
2217 * @row: row of cnode (root is zero)
2218 * @col: column of cnode (leftmost is zero)
2219 *
2220 * This function returns %0 on success and a negative error code on failure.
2221 */
2222int dbg_check_lpt_nodes(struct ubifs_info *c, struct ubifs_cnode *cnode,
2223 int row, int col)
2224{
2225 struct ubifs_nnode *nnode, *nn;
2226 struct ubifs_cnode *cn;
2227 int num, iip = 0, err;
2228
Artem Bityutskiy2b1844a2011-06-03 08:31:29 +03002229 if (!dbg_is_chk_lprops(c))
Artem Bityutskiy1e517642008-07-14 19:08:37 +03002230 return 0;
2231
2232 while (cnode) {
2233 ubifs_assert(row >= 0);
2234 nnode = cnode->parent;
2235 if (cnode->level) {
2236 /* cnode is a nnode */
2237 num = calc_nnode_num(row, col);
2238 if (cnode->num != num) {
2239 dbg_err("nnode num %d expected %d "
2240 "parent num %d iip %d", cnode->num, num,
2241 (nnode ? nnode->num : 0), cnode->iip);
2242 return -EINVAL;
2243 }
2244 nn = (struct ubifs_nnode *)cnode;
2245 while (iip < UBIFS_LPT_FANOUT) {
2246 cn = nn->nbranch[iip].cnode;
2247 if (cn) {
2248 /* Go down */
2249 row += 1;
2250 col <<= UBIFS_LPT_FANOUT_SHIFT;
2251 col += iip;
2252 iip = 0;
2253 cnode = cn;
2254 break;
2255 }
2256 /* Go right */
2257 iip += 1;
2258 }
2259 if (iip < UBIFS_LPT_FANOUT)
2260 continue;
2261 } else {
2262 struct ubifs_pnode *pnode;
2263
2264 /* cnode is a pnode */
2265 pnode = (struct ubifs_pnode *)cnode;
2266 err = dbg_chk_pnode(c, pnode, col);
2267 if (err)
2268 return err;
2269 }
2270 /* Go up and to the right */
2271 row -= 1;
2272 col >>= UBIFS_LPT_FANOUT_SHIFT;
2273 iip = cnode->iip + 1;
2274 cnode = (struct ubifs_cnode *)nnode;
2275 }
2276 return 0;
2277}
2278
2279#endif /* CONFIG_UBIFS_FS_DEBUG */