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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
|
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (C) 2024, Huawei Technologies Co, Ltd.
*
* Authors: Zhihao Cheng <chengzhihao1@huawei.com>
*/
#include <stdio.h>
#include <stdlib.h>
#include <getopt.h>
#include <sys/stat.h>
#include "linux_err.h"
#include "bitops.h"
#include "kmem.h"
#include "ubifs.h"
#include "defs.h"
#include "debug.h"
#include "key.h"
#include "misc.h"
#include "fsck.ubifs.h"
/**
* scanned_info - nodes and files information from scanning.
* @valid_inos: the tree of scanned inode nodes with 'nlink > 0'
* @del_inos: the tree of scanned inode nodes with 'nlink = 0'
* @valid_dents: the tree of scanned dentry nodes with 'inum > 0'
* @del_dents: the tree of scanned dentry nodes with 'inum = 0'
*/
struct scanned_info {
struct rb_root valid_inos;
struct rb_root del_inos;
struct rb_root valid_dents;
struct rb_root del_dents;
};
static int init_rebuild_info(struct ubifs_info *c)
{
int err;
c->sbuf = vmalloc(c->leb_size);
if (!c->sbuf) {
log_err(c, errno, "can not allocate sbuf");
return -ENOMEM;
}
FSCK(c)->rebuild = kzalloc(sizeof(struct ubifs_rebuild_info),
GFP_KERNEL);
if (!FSCK(c)->rebuild) {
err = -ENOMEM;
log_err(c, errno, "can not allocate rebuild info");
goto out;
}
FSCK(c)->rebuild->scanned_files = RB_ROOT;
return 0;
out:
vfree(c->sbuf);
return err;
}
static void destroy_rebuild_info(struct ubifs_info *c)
{
kfree(FSCK(c)->rebuild);
vfree(c->sbuf);
}
/**
* insert_or_update_ino_node - insert or update inode node.
* @c: UBIFS file-system description object
* @new_ino: new inode node
* @tree: a tree to record valid/deleted inode node info
*
* This function inserts @new_ino into the @tree, or updates inode node
* if it already exists in the tree. Returns zero in case of success, a
* negative error code in case of failure.
*/
static int insert_or_update_ino_node(struct ubifs_info *c,
struct scanned_ino_node *new_ino,
struct rb_root *tree)
{
int cmp;
struct scanned_ino_node *ino_node, *old_ino_node = NULL;
struct rb_node **p, *parent = NULL;
p = &tree->rb_node;
while (*p) {
parent = *p;
ino_node = rb_entry(parent, struct scanned_ino_node, rb);
cmp = keys_cmp(c, &new_ino->key, &ino_node->key);
if (cmp < 0) {
p = &(*p)->rb_left;
} else if (cmp > 0) {
p = &(*p)->rb_right;
} else {
old_ino_node = ino_node;
break;
}
}
if (old_ino_node) {
if (old_ino_node->header.sqnum < new_ino->header.sqnum) {
size_t len = offsetof(struct scanned_ino_node, rb);
memcpy(old_ino_node, new_ino, len);
}
return 0;
}
ino_node = kmalloc(sizeof(struct scanned_ino_node), GFP_KERNEL);
if (!ino_node)
return -ENOMEM;
*ino_node = *new_ino;
rb_link_node(&ino_node->rb, parent, p);
rb_insert_color(&ino_node->rb, tree);
return 0;
}
/**
* insert_or_update_dent_node - insert or update dentry node.
* @c: UBIFS file-system description object
* @new_dent: new dentry node
* @tree: a tree to record valid/deleted dentry node info
*
* This function inserts @new_dent into the @tree, or updates dent node
* if it already exists in the tree. Returns zero in case of success, a
* negative error code in case of failure.
*/
static int insert_or_update_dent_node(struct ubifs_info *c,
struct scanned_dent_node *new_dent,
struct rb_root *tree)
{
int cmp, nlen;
struct scanned_dent_node *dent_node, *old_dent_node = NULL;
struct rb_node **p, *parent = NULL;
p = &tree->rb_node;
while (*p) {
parent = *p;
dent_node = rb_entry(parent, struct scanned_dent_node, rb);
cmp = keys_cmp(c, &new_dent->key, &dent_node->key);
if (cmp < 0) {
p = &(*p)->rb_left;
} else if (cmp > 0) {
p = &(*p)->rb_right;
} else {
nlen = min(new_dent->nlen, dent_node->nlen);
cmp = strncmp(new_dent->name, dent_node->name, nlen) ? :
new_dent->nlen - dent_node->nlen;
if (cmp < 0) {
p = &(*p)->rb_left;
} else if (cmp > 0) {
p = &(*p)->rb_right;
} else {
old_dent_node = dent_node;
break;
}
}
}
if (old_dent_node) {
if (old_dent_node->header.sqnum < new_dent->header.sqnum) {
size_t len = offsetof(struct scanned_dent_node, rb);
memcpy(old_dent_node, new_dent, len);
}
return 0;
}
dent_node = kmalloc(sizeof(struct scanned_dent_node), GFP_KERNEL);
if (!dent_node)
return -ENOMEM;
*dent_node = *new_dent;
rb_link_node(&dent_node->rb, parent, p);
rb_insert_color(&dent_node->rb, tree);
return 0;
}
/**
* process_scanned_node - process scanned node.
* @c: UBIFS file-system description object
* @lnum: logical eraseblock number
* @snod: scanned node
* @si: records nodes and files information during scanning
*
* This function parses, checks and records scanned node information.
* Returns zero in case of success, 1% if the scanned LEB doesn't hold file
* data and should be ignored(eg. index LEB), a negative error code in case
* of failure.
*/
static int process_scanned_node(struct ubifs_info *c, int lnum,
struct ubifs_scan_node *snod,
struct scanned_info *si)
{
ino_t inum;
int offs = snod->offs;
void *node = snod->node;
union ubifs_key *key = &snod->key;
struct rb_root *tree;
struct scanned_node *sn;
struct scanned_ino_node ino_node;
struct scanned_dent_node dent_node;
struct scanned_data_node data_node;
struct scanned_trun_node trun_node;
switch (snod->type) {
case UBIFS_INO_NODE:
{
if (!parse_ino_node(c, lnum, offs, node, key, &ino_node))
return 0;
tree = &si->del_inos;
if (ino_node.nlink)
tree = &si->valid_inos;
return insert_or_update_ino_node(c, &ino_node, tree);
}
case UBIFS_DENT_NODE:
case UBIFS_XENT_NODE:
{
if (!parse_dent_node(c, lnum, offs, node, key, &dent_node))
return 0;
tree = &si->del_dents;
if (dent_node.inum)
tree = &si->valid_dents;
return insert_or_update_dent_node(c, &dent_node, tree);
}
case UBIFS_DATA_NODE:
{
if (!parse_data_node(c, lnum, offs, node, key, &data_node))
return 0;
inum = key_inum(c, key);
sn = (struct scanned_node *)&data_node;
break;
}
case UBIFS_TRUN_NODE:
{
if (!parse_trun_node(c, lnum, offs, node, key, &trun_node))
return 0;
inum = le32_to_cpu(((struct ubifs_trun_node *)node)->inum);
sn = (struct scanned_node *)&trun_node;
break;
}
default:
dbg_fsck("skip node type %d, at %d:%d, in %s",
snod->type, lnum, offs, c->dev_name);
return 1;
}
tree = &FSCK(c)->rebuild->scanned_files;
return insert_or_update_file(c, tree, sn, key_type(c, key), inum);
}
/**
* destroy_scanned_info - destroy scanned nodes.
* @c: UBIFS file-system description object
* @si: records nodes and files information during scanning
*
* Destroy scanned files and all data/dentry nodes attached to file, destroy
* valid/deleted inode/dentry info.
*/
static void destroy_scanned_info(struct ubifs_info *c, struct scanned_info *si)
{
struct scanned_ino_node *ino_node;
struct scanned_dent_node *dent_node;
struct rb_node *this;
destroy_file_tree(c, &FSCK(c)->rebuild->scanned_files);
this = rb_first(&si->valid_inos);
while (this) {
ino_node = rb_entry(this, struct scanned_ino_node, rb);
this = rb_next(this);
rb_erase(&ino_node->rb, &si->valid_inos);
kfree(ino_node);
}
this = rb_first(&si->del_inos);
while (this) {
ino_node = rb_entry(this, struct scanned_ino_node, rb);
this = rb_next(this);
rb_erase(&ino_node->rb, &si->del_inos);
kfree(ino_node);
}
this = rb_first(&si->valid_dents);
while (this) {
dent_node = rb_entry(this, struct scanned_dent_node, rb);
this = rb_next(this);
rb_erase(&dent_node->rb, &si->valid_dents);
kfree(dent_node);
}
this = rb_first(&si->del_dents);
while (this) {
dent_node = rb_entry(this, struct scanned_dent_node, rb);
this = rb_next(this);
rb_erase(&dent_node->rb, &si->del_dents);
kfree(dent_node);
}
}
/**
* scan_nodes - scan node information from flash.
* @c: UBIFS file-system description object
* @si: records nodes and files information during scanning
*
* This function scans nodes from flash, all ino/dent nodes are split
* into valid tree and deleted tree, all trun/data nodes are collected
* into file, the file is inserted into @FSCK(c)->rebuild->scanned_files.
*/
static int scan_nodes(struct ubifs_info *c, struct scanned_info *si)
{
int lnum, err = 0;
struct ubifs_scan_leb *sleb;
struct ubifs_scan_node *snod;
for (lnum = c->main_first; lnum < c->leb_cnt; ++lnum) {
dbg_fsck("scan nodes at LEB %d, in %s", lnum, c->dev_name);
sleb = ubifs_scan(c, lnum, 0, c->sbuf, 1);
if (IS_ERR(sleb)) {
if (PTR_ERR(sleb) != -EUCLEAN)
return PTR_ERR(sleb);
sleb = ubifs_recover_leb(c, lnum, 0, c->sbuf, -1);
if (IS_ERR(sleb)) {
if (PTR_ERR(sleb) != -EUCLEAN)
return PTR_ERR(sleb);
/* This LEB holds corrupted data, abandon it. */
continue;
}
}
list_for_each_entry(snod, &sleb->nodes, list) {
if (snod->sqnum > c->max_sqnum)
c->max_sqnum = snod->sqnum;
err = process_scanned_node(c, lnum, snod, si);
if (err < 0) {
log_err(c, 0, "process node failed at LEB %d, err %d",
lnum, err);
ubifs_scan_destroy(sleb);
goto out;
} else if (err == 1) {
err = 0;
break;
}
}
ubifs_scan_destroy(sleb);
}
out:
return err;
}
static struct scanned_ino_node *
lookup_valid_ino_node(struct ubifs_info *c, struct scanned_info *si,
struct scanned_ino_node *target)
{
int cmp;
struct scanned_ino_node *ino_node;
struct rb_node *p;
p = si->valid_inos.rb_node;
while (p) {
ino_node = rb_entry(p, struct scanned_ino_node, rb);
cmp = keys_cmp(c, &target->key, &ino_node->key);
if (cmp < 0) {
p = p->rb_left;
} else if (cmp > 0) {
p = p->rb_right;
} else {
if (target->header.sqnum > ino_node->header.sqnum)
return ino_node;
else
return NULL;
}
}
return NULL;
}
static struct scanned_dent_node *
lookup_valid_dent_node(struct ubifs_info *c, struct scanned_info *si,
struct scanned_dent_node *target)
{
int cmp, nlen;
struct scanned_dent_node *dent_node;
struct rb_node *p;
p = si->valid_dents.rb_node;
while (p) {
dent_node = rb_entry(p, struct scanned_dent_node, rb);
cmp = keys_cmp(c, &target->key, &dent_node->key);
if (cmp < 0) {
p = p->rb_left;
} else if (cmp > 0) {
p = p->rb_right;
} else {
nlen = min(target->nlen, dent_node->nlen);
cmp = strncmp(target->name, dent_node->name, nlen) ? :
target->nlen - dent_node->nlen;
if (cmp < 0) {
p = p->rb_left;
} else if (cmp > 0) {
p = p->rb_right;
} else {
if (target->header.sqnum >
dent_node->header.sqnum)
return dent_node;
else
return NULL;
}
}
}
return NULL;
}
/**
* remove_del_nodes - remove deleted nodes from valid node tree.
* @c: UBIFS file-system description object
* @si: records nodes and files information during scanning
*
* This function compares sqnum between deleted node and corresponding valid
* node, removes valid node from tree if the sqnum of deleted node is bigger.
* Deleted ino/dent nodes will be removed from @si->del_inos/@si->del_dents
* after this function finished.
*/
static void remove_del_nodes(struct ubifs_info *c, struct scanned_info *si)
{
struct scanned_ino_node *del_ino_node, *valid_ino_node;
struct scanned_dent_node *del_dent_node, *valid_dent_node;
struct rb_node *this;
this = rb_first(&si->del_inos);
while (this) {
del_ino_node = rb_entry(this, struct scanned_ino_node, rb);
this = rb_next(this);
valid_ino_node = lookup_valid_ino_node(c, si, del_ino_node);
if (valid_ino_node) {
rb_erase(&valid_ino_node->rb, &si->valid_inos);
kfree(valid_ino_node);
}
rb_erase(&del_ino_node->rb, &si->del_inos);
kfree(del_ino_node);
}
this = rb_first(&si->del_dents);
while (this) {
del_dent_node = rb_entry(this, struct scanned_dent_node, rb);
this = rb_next(this);
valid_dent_node = lookup_valid_dent_node(c, si, del_dent_node);
if (valid_dent_node) {
rb_erase(&valid_dent_node->rb, &si->valid_dents);
kfree(valid_dent_node);
}
rb_erase(&del_dent_node->rb, &si->del_dents);
kfree(del_dent_node);
}
}
/**
* add_valid_nodes_into_file - add valid nodes into file.
* @c: UBIFS file-system description object
* @si: records nodes and files information during scanning
*
* This function adds valid nodes into corresponding file, all valid ino/dent
* nodes will be removed from @si->valid_inos/@si->valid_dents if the function
* is executed successfully.
*/
static int add_valid_nodes_into_file(struct ubifs_info *c,
struct scanned_info *si)
{
int err, type;
ino_t inum;
struct scanned_node *sn;
struct scanned_ino_node *ino_node;
struct scanned_dent_node *dent_node;
struct rb_node *this;
struct rb_root *tree = &FSCK(c)->rebuild->scanned_files;
this = rb_first(&si->valid_inos);
while (this) {
ino_node = rb_entry(this, struct scanned_ino_node, rb);
this = rb_next(this);
sn = (struct scanned_node *)ino_node;
type = key_type(c, &ino_node->key);
inum = key_inum(c, &ino_node->key);
err = insert_or_update_file(c, tree, sn, type, inum);
if (err)
return err;
rb_erase(&ino_node->rb, &si->valid_inos);
kfree(ino_node);
}
this = rb_first(&si->valid_dents);
while (this) {
dent_node = rb_entry(this, struct scanned_dent_node, rb);
this = rb_next(this);
sn = (struct scanned_node *)dent_node;
inum = dent_node->inum;
type = key_type(c, &dent_node->key);
err = insert_or_update_file(c, tree, sn, type, inum);
if (err)
return err;
rb_erase(&dent_node->rb, &si->valid_dents);
kfree(dent_node);
}
return 0;
}
/**
* ubifs_rebuild_filesystem - Rebuild filesystem.
* @c: UBIFS file-system description object
*
* Scanning nodes from UBI volume and rebuild filesystem. Any inconsistent
* problems or corrupted data will be fixed.
*/
int ubifs_rebuild_filesystem(struct ubifs_info *c)
{
int err = 0;
struct scanned_info si;
si.valid_inos = si.del_inos = si.valid_dents = si.del_dents = RB_ROOT;
log_out(c, "Start rebuilding filesystem (Notice: dropping data/recovering deleted data can't be awared)");
FSCK(c)->mode = REBUILD_MODE;
err = init_rebuild_info(c);
if (err) {
exit_code |= FSCK_ERROR;
return err;
}
/* Step 1: Scan valid/deleted nodes from volume. */
log_out(c, "Scan nodes");
err = scan_nodes(c, &si);
if (err) {
exit_code |= FSCK_ERROR;
goto out;
}
/* Step 2: Remove deleted nodes from valid node tree. */
log_out(c, "Remove deleted nodes");
remove_del_nodes(c, &si);
/* Step 3: Add valid nodes into file. */
log_out(c, "Add valid nodes into file");
err = add_valid_nodes_into_file(c, &si);
if (err)
exit_code |= FSCK_ERROR;
out:
destroy_scanned_info(c, &si);
destroy_rebuild_info(c);
return err;
}
|