jffs2: Convert printks to pr_<level>
[deliverable/linux.git] / fs / jffs2 / summary.c
CommitLineData
e631ddba
FH
1/*
2 * JFFS2 -- Journalling Flash File System, Version 2.
3 *
c00c310e 4 * Copyright © 2004 Ferenc Havasi <havasi@inf.u-szeged.hu>,
ef53cb02
DW
5 * Zoltan Sogor <weth@inf.u-szeged.hu>,
6 * Patrik Kluba <pajko@halom.u-szeged.hu>,
7 * University of Szeged, Hungary
8 * 2006 KaiGai Kohei <kaigai@ak.jp.nec.com>
e631ddba
FH
9 *
10 * For licensing information, see the file 'LICENCE' in this directory.
11 *
e631ddba
FH
12 */
13
14#include <linux/kernel.h>
e631ddba
FH
15#include <linux/slab.h>
16#include <linux/mtd/mtd.h>
17#include <linux/pagemap.h>
18#include <linux/crc32.h>
19#include <linux/compiler.h>
20#include <linux/vmalloc.h>
21#include "nodelist.h"
22#include "debug.h"
23
24int jffs2_sum_init(struct jffs2_sb_info *c)
25{
0fed784b 26 uint32_t sum_size = min_t(uint32_t, c->sector_size, MAX_SUMMARY_SIZE);
b7600dba 27
3d375d9e 28 c->summary = kzalloc(sizeof(struct jffs2_summary), GFP_KERNEL);
e631ddba
FH
29
30 if (!c->summary) {
31 JFFS2_WARNING("Can't allocate memory for summary information!\n");
32 return -ENOMEM;
33 }
34
b7600dba 35 c->summary->sum_buf = kmalloc(sum_size, GFP_KERNEL);
e631ddba
FH
36
37 if (!c->summary->sum_buf) {
38 JFFS2_WARNING("Can't allocate buffer for writing out summary information!\n");
733802d9 39 kfree(c->summary);
e631ddba
FH
40 return -ENOMEM;
41 }
42
d6e05edc 43 dbg_summary("returned successfully\n");
e631ddba
FH
44
45 return 0;
46}
47
48void jffs2_sum_exit(struct jffs2_sb_info *c)
49{
733802d9 50 dbg_summary("called\n");
e631ddba
FH
51
52 jffs2_sum_disable_collecting(c->summary);
53
b7600dba 54 kfree(c->summary->sum_buf);
e631ddba
FH
55 c->summary->sum_buf = NULL;
56
57 kfree(c->summary);
58 c->summary = NULL;
59}
60
61static int jffs2_sum_add_mem(struct jffs2_summary *s, union jffs2_sum_mem *item)
62{
63 if (!s->sum_list_head)
64 s->sum_list_head = (union jffs2_sum_mem *) item;
65 if (s->sum_list_tail)
66 s->sum_list_tail->u.next = (union jffs2_sum_mem *) item;
67 s->sum_list_tail = (union jffs2_sum_mem *) item;
68
69 switch (je16_to_cpu(item->u.nodetype)) {
70 case JFFS2_NODETYPE_INODE:
71 s->sum_size += JFFS2_SUMMARY_INODE_SIZE;
72 s->sum_num++;
733802d9 73 dbg_summary("inode (%u) added to summary\n",
e631ddba
FH
74 je32_to_cpu(item->i.inode));
75 break;
76 case JFFS2_NODETYPE_DIRENT:
77 s->sum_size += JFFS2_SUMMARY_DIRENT_SIZE(item->d.nsize);
78 s->sum_num++;
733802d9 79 dbg_summary("dirent (%u) added to summary\n",
e631ddba
FH
80 je32_to_cpu(item->d.ino));
81 break;
aa98d7cf
KK
82#ifdef CONFIG_JFFS2_FS_XATTR
83 case JFFS2_NODETYPE_XATTR:
84 s->sum_size += JFFS2_SUMMARY_XATTR_SIZE;
85 s->sum_num++;
86 dbg_summary("xattr (xid=%u, version=%u) added to summary\n",
87 je32_to_cpu(item->x.xid), je32_to_cpu(item->x.version));
88 break;
89 case JFFS2_NODETYPE_XREF:
90 s->sum_size += JFFS2_SUMMARY_XREF_SIZE;
91 s->sum_num++;
92 dbg_summary("xref added to summary\n");
93 break;
94#endif
e631ddba 95 default:
182ec4ee 96 JFFS2_WARNING("UNKNOWN node type %u\n",
e631ddba
FH
97 je16_to_cpu(item->u.nodetype));
98 return 1;
99 }
100 return 0;
101}
102
103
104/* The following 3 functions are called from scan.c to collect summary info for not closed jeb */
105
106int jffs2_sum_add_padding_mem(struct jffs2_summary *s, uint32_t size)
107{
733802d9 108 dbg_summary("called with %u\n", size);
e631ddba
FH
109 s->sum_padded += size;
110 return 0;
111}
112
113int jffs2_sum_add_inode_mem(struct jffs2_summary *s, struct jffs2_raw_inode *ri,
114 uint32_t ofs)
115{
116 struct jffs2_sum_inode_mem *temp = kmalloc(sizeof(struct jffs2_sum_inode_mem), GFP_KERNEL);
117
118 if (!temp)
119 return -ENOMEM;
120
121 temp->nodetype = ri->nodetype;
122 temp->inode = ri->ino;
123 temp->version = ri->version;
25985edc 124 temp->offset = cpu_to_je32(ofs); /* relative offset from the beginning of the jeb */
e631ddba
FH
125 temp->totlen = ri->totlen;
126 temp->next = NULL;
127
128 return jffs2_sum_add_mem(s, (union jffs2_sum_mem *)temp);
129}
130
131int jffs2_sum_add_dirent_mem(struct jffs2_summary *s, struct jffs2_raw_dirent *rd,
132 uint32_t ofs)
133{
134 struct jffs2_sum_dirent_mem *temp =
135 kmalloc(sizeof(struct jffs2_sum_dirent_mem) + rd->nsize, GFP_KERNEL);
136
137 if (!temp)
138 return -ENOMEM;
139
140 temp->nodetype = rd->nodetype;
141 temp->totlen = rd->totlen;
25985edc 142 temp->offset = cpu_to_je32(ofs); /* relative from the beginning of the jeb */
e631ddba
FH
143 temp->pino = rd->pino;
144 temp->version = rd->version;
145 temp->ino = rd->ino;
146 temp->nsize = rd->nsize;
147 temp->type = rd->type;
148 temp->next = NULL;
149
150 memcpy(temp->name, rd->name, rd->nsize);
151
152 return jffs2_sum_add_mem(s, (union jffs2_sum_mem *)temp);
153}
154
aa98d7cf
KK
155#ifdef CONFIG_JFFS2_FS_XATTR
156int jffs2_sum_add_xattr_mem(struct jffs2_summary *s, struct jffs2_raw_xattr *rx, uint32_t ofs)
157{
158 struct jffs2_sum_xattr_mem *temp;
159
160 temp = kmalloc(sizeof(struct jffs2_sum_xattr_mem), GFP_KERNEL);
161 if (!temp)
162 return -ENOMEM;
163
164 temp->nodetype = rx->nodetype;
165 temp->xid = rx->xid;
166 temp->version = rx->version;
167 temp->offset = cpu_to_je32(ofs);
168 temp->totlen = rx->totlen;
169 temp->next = NULL;
170
171 return jffs2_sum_add_mem(s, (union jffs2_sum_mem *)temp);
172}
173
174int jffs2_sum_add_xref_mem(struct jffs2_summary *s, struct jffs2_raw_xref *rr, uint32_t ofs)
175{
176 struct jffs2_sum_xref_mem *temp;
177
178 temp = kmalloc(sizeof(struct jffs2_sum_xref_mem), GFP_KERNEL);
179 if (!temp)
180 return -ENOMEM;
181
182 temp->nodetype = rr->nodetype;
183 temp->offset = cpu_to_je32(ofs);
184 temp->next = NULL;
185
186 return jffs2_sum_add_mem(s, (union jffs2_sum_mem *)temp);
187}
188#endif
e631ddba
FH
189/* Cleanup every collected summary information */
190
191static void jffs2_sum_clean_collected(struct jffs2_summary *s)
192{
193 union jffs2_sum_mem *temp;
194
195 if (!s->sum_list_head) {
733802d9 196 dbg_summary("already empty\n");
e631ddba
FH
197 }
198 while (s->sum_list_head) {
199 temp = s->sum_list_head;
200 s->sum_list_head = s->sum_list_head->u.next;
201 kfree(temp);
202 }
203 s->sum_list_tail = NULL;
204 s->sum_padded = 0;
205 s->sum_num = 0;
206}
207
208void jffs2_sum_reset_collected(struct jffs2_summary *s)
209{
733802d9 210 dbg_summary("called\n");
e631ddba
FH
211 jffs2_sum_clean_collected(s);
212 s->sum_size = 0;
213}
214
215void jffs2_sum_disable_collecting(struct jffs2_summary *s)
216{
733802d9 217 dbg_summary("called\n");
e631ddba
FH
218 jffs2_sum_clean_collected(s);
219 s->sum_size = JFFS2_SUMMARY_NOSUM_SIZE;
220}
221
182ec4ee 222int jffs2_sum_is_disabled(struct jffs2_summary *s)
e631ddba
FH
223{
224 return (s->sum_size == JFFS2_SUMMARY_NOSUM_SIZE);
225}
226
227/* Move the collected summary information into sb (called from scan.c) */
228
229void jffs2_sum_move_collected(struct jffs2_sb_info *c, struct jffs2_summary *s)
230{
733802d9 231 dbg_summary("oldsize=0x%x oldnum=%u => newsize=0x%x newnum=%u\n",
e631ddba
FH
232 c->summary->sum_size, c->summary->sum_num,
233 s->sum_size, s->sum_num);
234
235 c->summary->sum_size = s->sum_size;
236 c->summary->sum_num = s->sum_num;
237 c->summary->sum_padded = s->sum_padded;
238 c->summary->sum_list_head = s->sum_list_head;
239 c->summary->sum_list_tail = s->sum_list_tail;
240
241 s->sum_list_head = s->sum_list_tail = NULL;
242}
243
244/* Called from wbuf.c to collect writed node info */
245
246int jffs2_sum_add_kvec(struct jffs2_sb_info *c, const struct kvec *invecs,
247 unsigned long count, uint32_t ofs)
248{
249 union jffs2_node_union *node;
250 struct jffs2_eraseblock *jeb;
251
27bea327
ZS
252 if (c->summary->sum_size == JFFS2_SUMMARY_NOSUM_SIZE) {
253 dbg_summary("Summary is disabled for this jeb! Skipping summary info!\n");
254 return 0;
255 }
256
e631ddba
FH
257 node = invecs[0].iov_base;
258 jeb = &c->blocks[ofs / c->sector_size];
259 ofs -= jeb->offset;
260
261 switch (je16_to_cpu(node->u.nodetype)) {
262 case JFFS2_NODETYPE_INODE: {
263 struct jffs2_sum_inode_mem *temp =
264 kmalloc(sizeof(struct jffs2_sum_inode_mem), GFP_KERNEL);
265
266 if (!temp)
267 goto no_mem;
268
269 temp->nodetype = node->i.nodetype;
270 temp->inode = node->i.ino;
271 temp->version = node->i.version;
272 temp->offset = cpu_to_je32(ofs);
273 temp->totlen = node->i.totlen;
274 temp->next = NULL;
275
276 return jffs2_sum_add_mem(c->summary, (union jffs2_sum_mem *)temp);
277 }
278
279 case JFFS2_NODETYPE_DIRENT: {
280 struct jffs2_sum_dirent_mem *temp =
281 kmalloc(sizeof(struct jffs2_sum_dirent_mem) + node->d.nsize, GFP_KERNEL);
282
283 if (!temp)
284 goto no_mem;
285
286 temp->nodetype = node->d.nodetype;
287 temp->totlen = node->d.totlen;
288 temp->offset = cpu_to_je32(ofs);
289 temp->pino = node->d.pino;
290 temp->version = node->d.version;
291 temp->ino = node->d.ino;
292 temp->nsize = node->d.nsize;
293 temp->type = node->d.type;
294 temp->next = NULL;
295
296 switch (count) {
297 case 1:
298 memcpy(temp->name,node->d.name,node->d.nsize);
299 break;
300
301 case 2:
302 memcpy(temp->name,invecs[1].iov_base,node->d.nsize);
303 break;
304
305 default:
306 BUG(); /* impossible count value */
307 break;
308 }
309
310 return jffs2_sum_add_mem(c->summary, (union jffs2_sum_mem *)temp);
311 }
aa98d7cf
KK
312#ifdef CONFIG_JFFS2_FS_XATTR
313 case JFFS2_NODETYPE_XATTR: {
314 struct jffs2_sum_xattr_mem *temp;
aa98d7cf
KK
315 temp = kmalloc(sizeof(struct jffs2_sum_xattr_mem), GFP_KERNEL);
316 if (!temp)
317 goto no_mem;
e631ddba 318
aa98d7cf
KK
319 temp->nodetype = node->x.nodetype;
320 temp->xid = node->x.xid;
321 temp->version = node->x.version;
322 temp->totlen = node->x.totlen;
323 temp->offset = cpu_to_je32(ofs);
324 temp->next = NULL;
325
326 return jffs2_sum_add_mem(c->summary, (union jffs2_sum_mem *)temp);
327 }
328 case JFFS2_NODETYPE_XREF: {
329 struct jffs2_sum_xref_mem *temp;
aa98d7cf
KK
330 temp = kmalloc(sizeof(struct jffs2_sum_xref_mem), GFP_KERNEL);
331 if (!temp)
332 goto no_mem;
333 temp->nodetype = node->r.nodetype;
334 temp->offset = cpu_to_je32(ofs);
335 temp->next = NULL;
336
337 return jffs2_sum_add_mem(c->summary, (union jffs2_sum_mem *)temp);
338 }
339#endif
e631ddba 340 case JFFS2_NODETYPE_PADDING:
733802d9 341 dbg_summary("node PADDING\n");
e631ddba
FH
342 c->summary->sum_padded += je32_to_cpu(node->u.totlen);
343 break;
344
345 case JFFS2_NODETYPE_CLEANMARKER:
733802d9 346 dbg_summary("node CLEANMARKER\n");
e631ddba
FH
347 break;
348
349 case JFFS2_NODETYPE_SUMMARY:
733802d9 350 dbg_summary("node SUMMARY\n");
e631ddba
FH
351 break;
352
353 default:
354 /* If you implement a new node type you should also implement
355 summary support for it or disable summary.
356 */
357 BUG();
358 break;
359 }
360
361 return 0;
362
363no_mem:
364 JFFS2_WARNING("MEMORY ALLOCATION ERROR!");
365 return -ENOMEM;
366}
367
2f785402
DW
368static struct jffs2_raw_node_ref *sum_link_node_ref(struct jffs2_sb_info *c,
369 struct jffs2_eraseblock *jeb,
370 uint32_t ofs, uint32_t len,
371 struct jffs2_inode_cache *ic)
49f11d40 372{
49f11d40 373 /* If there was a gap, mark it dirty */
2f785402
DW
374 if ((ofs & ~3) > c->sector_size - jeb->free_size) {
375 /* Ew. Summary doesn't actually tell us explicitly about dirty space */
376 jffs2_scan_dirty_space(c, jeb, (ofs & ~3) - (c->sector_size - jeb->free_size));
49f11d40 377 }
49f11d40 378
2f785402 379 return jffs2_link_node_ref(c, jeb, jeb->offset + ofs, len, ic);
49f11d40 380}
e631ddba
FH
381
382/* Process the stored summary information - helper function for jffs2_sum_scan_sumnode() */
383
384static int jffs2_sum_process_sum_data(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
2bc9764c 385 struct jffs2_raw_summary *summary, uint32_t *pseudo_random)
e631ddba 386{
e631ddba
FH
387 struct jffs2_inode_cache *ic;
388 struct jffs2_full_dirent *fd;
389 void *sp;
390 int i, ino;
68270995 391 int err;
e631ddba
FH
392
393 sp = summary->sum;
394
395 for (i=0; i<je32_to_cpu(summary->sum_num); i++) {
733802d9 396 dbg_summary("processing summary index %d\n", i);
e631ddba 397
a2166b93
AB
398 cond_resched();
399
2f785402 400 /* Make sure there's a spare ref for dirty space */
046b8b98 401 err = jffs2_prealloc_raw_node_refs(c, jeb, 2);
2f785402
DW
402 if (err)
403 return err;
404
e631ddba
FH
405 switch (je16_to_cpu(((struct jffs2_sum_unknown_flash *)sp)->nodetype)) {
406 case JFFS2_NODETYPE_INODE: {
407 struct jffs2_sum_inode_flash *spi;
408 spi = sp;
409
410 ino = je32_to_cpu(spi->inode);
411
9167e0f8
DW
412 dbg_summary("Inode at 0x%08x-0x%08x\n",
413 jeb->offset + je32_to_cpu(spi->offset),
8b9e9fe8 414 jeb->offset + je32_to_cpu(spi->offset) + je32_to_cpu(spi->totlen));
e631ddba 415
e631ddba
FH
416 ic = jffs2_scan_make_ino_cache(c, ino);
417 if (!ic) {
418 JFFS2_NOTICE("scan_make_ino_cache failed\n");
e631ddba
FH
419 return -ENOMEM;
420 }
421
2f785402
DW
422 sum_link_node_ref(c, jeb, je32_to_cpu(spi->offset) | REF_UNCHECKED,
423 PAD(je32_to_cpu(spi->totlen)), ic);
f1f9671b
DW
424
425 *pseudo_random += je32_to_cpu(spi->version);
e631ddba
FH
426
427 sp += JFFS2_SUMMARY_INODE_SIZE;
428
429 break;
430 }
431
432 case JFFS2_NODETYPE_DIRENT: {
433 struct jffs2_sum_dirent_flash *spd;
b534e70c 434 int checkedlen;
e631ddba
FH
435 spd = sp;
436
8b9e9fe8 437 dbg_summary("Dirent at 0x%08x-0x%08x\n",
9167e0f8
DW
438 jeb->offset + je32_to_cpu(spd->offset),
439 jeb->offset + je32_to_cpu(spd->offset) + je32_to_cpu(spd->totlen));
440
e631ddba 441
b534e70c
DW
442 /* This should never happen, but https://dev.laptop.org/ticket/4184 */
443 checkedlen = strnlen(spd->name, spd->nsize);
444 if (!checkedlen) {
da320f05
JP
445 pr_err("Dirent at %08x has zero at start of name. Aborting mount.\n",
446 jeb->offset +
447 je32_to_cpu(spd->offset));
b534e70c
DW
448 return -EIO;
449 }
450 if (checkedlen < spd->nsize) {
da320f05
JP
451 pr_err("Dirent at %08x has zeroes in name. Truncating to %d chars\n",
452 jeb->offset +
453 je32_to_cpu(spd->offset),
454 checkedlen);
b534e70c
DW
455 }
456
457
458 fd = jffs2_alloc_full_dirent(checkedlen+1);
9641b784 459 if (!fd)
e631ddba 460 return -ENOMEM;
e631ddba 461
b534e70c
DW
462 memcpy(&fd->name, spd->name, checkedlen);
463 fd->name[checkedlen] = 0;
e631ddba 464
e631ddba
FH
465 ic = jffs2_scan_make_ino_cache(c, je32_to_cpu(spd->pino));
466 if (!ic) {
467 jffs2_free_full_dirent(fd);
e631ddba
FH
468 return -ENOMEM;
469 }
470
1046d880 471 fd->raw = sum_link_node_ref(c, jeb, je32_to_cpu(spd->offset) | REF_UNCHECKED,
2f785402 472 PAD(je32_to_cpu(spd->totlen)), ic);
e631ddba 473
e631ddba
FH
474 fd->next = NULL;
475 fd->version = je32_to_cpu(spd->version);
476 fd->ino = je32_to_cpu(spd->ino);
b534e70c 477 fd->nhash = full_name_hash(fd->name, checkedlen);
e631ddba 478 fd->type = spd->type;
f1f9671b 479
e631ddba
FH
480 jffs2_add_fd_to_list(c, fd, &ic->scan_dents);
481
482 *pseudo_random += je32_to_cpu(spd->version);
483
484 sp += JFFS2_SUMMARY_DIRENT_SIZE(spd->nsize);
485
486 break;
487 }
aa98d7cf
KK
488#ifdef CONFIG_JFFS2_FS_XATTR
489 case JFFS2_NODETYPE_XATTR: {
490 struct jffs2_xattr_datum *xd;
491 struct jffs2_sum_xattr_flash *spx;
aa98d7cf
KK
492
493 spx = (struct jffs2_sum_xattr_flash *)sp;
9167e0f8 494 dbg_summary("xattr at %#08x-%#08x (xid=%u, version=%u)\n",
49f11d40 495 jeb->offset + je32_to_cpu(spx->offset),
9167e0f8 496 jeb->offset + je32_to_cpu(spx->offset) + je32_to_cpu(spx->totlen),
aa98d7cf 497 je32_to_cpu(spx->xid), je32_to_cpu(spx->version));
2f785402 498
aa98d7cf
KK
499 xd = jffs2_setup_xattr_datum(c, je32_to_cpu(spx->xid),
500 je32_to_cpu(spx->version));
c9f700f8 501 if (IS_ERR(xd))
aa98d7cf 502 return PTR_ERR(xd);
c9f700f8
KK
503 if (xd->version > je32_to_cpu(spx->version)) {
504 /* node is not the newest one */
505 struct jffs2_raw_node_ref *raw
506 = sum_link_node_ref(c, jeb, je32_to_cpu(spx->offset) | REF_UNCHECKED,
507 PAD(je32_to_cpu(spx->totlen)), NULL);
508 raw->next_in_ino = xd->node->next_in_ino;
509 xd->node->next_in_ino = raw;
510 } else {
511 xd->version = je32_to_cpu(spx->version);
512 sum_link_node_ref(c, jeb, je32_to_cpu(spx->offset) | REF_UNCHECKED,
513 PAD(je32_to_cpu(spx->totlen)), (void *)xd);
aa98d7cf 514 }
aa98d7cf 515 *pseudo_random += je32_to_cpu(spx->xid);
aa98d7cf
KK
516 sp += JFFS2_SUMMARY_XATTR_SIZE;
517
518 break;
519 }
520 case JFFS2_NODETYPE_XREF: {
521 struct jffs2_xattr_ref *ref;
522 struct jffs2_sum_xref_flash *spr;
aa98d7cf
KK
523
524 spr = (struct jffs2_sum_xref_flash *)sp;
9167e0f8 525 dbg_summary("xref at %#08x-%#08x\n",
49f11d40 526 jeb->offset + je32_to_cpu(spr->offset),
9bfeb691
DW
527 jeb->offset + je32_to_cpu(spr->offset) +
528 (uint32_t)PAD(sizeof(struct jffs2_raw_xref)));
9167e0f8 529
aa98d7cf
KK
530 ref = jffs2_alloc_xattr_ref();
531 if (!ref) {
532 JFFS2_NOTICE("allocation of xattr_datum failed\n");
aa98d7cf
KK
533 return -ENOMEM;
534 }
8f2b6f49
KK
535 ref->next = c->xref_temp;
536 c->xref_temp = ref;
aa98d7cf 537
c9f700f8
KK
538 sum_link_node_ref(c, jeb, je32_to_cpu(spr->offset) | REF_UNCHECKED,
539 PAD(sizeof(struct jffs2_raw_xref)), (void *)ref);
aa98d7cf 540
2f785402 541 *pseudo_random += ref->node->flash_offset;
aa98d7cf 542 sp += JFFS2_SUMMARY_XREF_SIZE;
e631ddba 543
aa98d7cf
KK
544 break;
545 }
546#endif
e631ddba 547 default : {
7807ef7b
DW
548 uint16_t nodetype = je16_to_cpu(((struct jffs2_sum_unknown_flash *)sp)->nodetype);
549 JFFS2_WARNING("Unsupported node type %x found in summary! Exiting...\n", nodetype);
550 if ((nodetype & JFFS2_COMPAT_MASK) == JFFS2_FEATURE_INCOMPAT)
551 return -EIO;
552
553 /* For compatible node types, just fall back to the full scan */
554 c->wasted_size -= jeb->wasted_size;
555 c->free_size += c->sector_size - jeb->free_size;
556 c->used_size -= jeb->used_size;
557 c->dirty_size -= jeb->dirty_size;
558 jeb->wasted_size = jeb->used_size = jeb->dirty_size = 0;
559 jeb->free_size = c->sector_size;
560
c38c1b61 561 jffs2_free_jeb_node_refs(c, jeb);
7807ef7b 562 return -ENOTRECOVERABLE;
e631ddba
FH
563 }
564 }
565 }
e631ddba
FH
566 return 0;
567}
568
569/* Process the summary node - called from jffs2_scan_eraseblock() */
e631ddba 570int jffs2_sum_scan_sumnode(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
9641b784
DW
571 struct jffs2_raw_summary *summary, uint32_t sumsize,
572 uint32_t *pseudo_random)
e631ddba
FH
573{
574 struct jffs2_unknown_node crcnode;
9641b784 575 int ret, ofs;
e631ddba
FH
576 uint32_t crc;
577
49f11d40 578 ofs = c->sector_size - sumsize;
e631ddba 579
733802d9 580 dbg_summary("summary found for 0x%08x at 0x%08x (0x%x bytes)\n",
49f11d40 581 jeb->offset, jeb->offset + ofs, sumsize);
e631ddba
FH
582
583 /* OK, now check for node validity and CRC */
584 crcnode.magic = cpu_to_je16(JFFS2_MAGIC_BITMASK);
585 crcnode.nodetype = cpu_to_je16(JFFS2_NODETYPE_SUMMARY);
586 crcnode.totlen = summary->totlen;
587 crc = crc32(0, &crcnode, sizeof(crcnode)-4);
588
589 if (je32_to_cpu(summary->hdr_crc) != crc) {
733802d9 590 dbg_summary("Summary node header is corrupt (bad CRC or "
e631ddba
FH
591 "no summary at all)\n");
592 goto crc_err;
593 }
594
595 if (je32_to_cpu(summary->totlen) != sumsize) {
733802d9 596 dbg_summary("Summary node is corrupt (wrong erasesize?)\n");
e631ddba
FH
597 goto crc_err;
598 }
599
2bc9764c 600 crc = crc32(0, summary, sizeof(struct jffs2_raw_summary)-8);
e631ddba
FH
601
602 if (je32_to_cpu(summary->node_crc) != crc) {
733802d9 603 dbg_summary("Summary node is corrupt (bad CRC)\n");
e631ddba
FH
604 goto crc_err;
605 }
606
2bc9764c 607 crc = crc32(0, summary->sum, sumsize - sizeof(struct jffs2_raw_summary));
e631ddba
FH
608
609 if (je32_to_cpu(summary->sum_crc) != crc) {
733802d9 610 dbg_summary("Summary node data is corrupt (bad CRC)\n");
e631ddba
FH
611 goto crc_err;
612 }
613
614 if ( je32_to_cpu(summary->cln_mkr) ) {
615
733802d9 616 dbg_summary("Summary : CLEANMARKER node \n");
e631ddba 617
098a1981
DW
618 ret = jffs2_prealloc_raw_node_refs(c, jeb, 1);
619 if (ret)
620 return ret;
621
e631ddba 622 if (je32_to_cpu(summary->cln_mkr) != c->cleanmarker_size) {
733802d9 623 dbg_summary("CLEANMARKER node has totlen 0x%x != normal 0x%x\n",
e631ddba 624 je32_to_cpu(summary->cln_mkr), c->cleanmarker_size);
098a1981
DW
625 if ((ret = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(summary->cln_mkr)))))
626 return ret;
e631ddba 627 } else if (jeb->first_node) {
733802d9 628 dbg_summary("CLEANMARKER node not first node in block "
e631ddba 629 "(0x%08x)\n", jeb->offset);
098a1981
DW
630 if ((ret = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(summary->cln_mkr)))))
631 return ret;
e631ddba 632 } else {
2f785402
DW
633 jffs2_link_node_ref(c, jeb, jeb->offset | REF_NORMAL,
634 je32_to_cpu(summary->cln_mkr), NULL);
e631ddba
FH
635 }
636 }
637
e631ddba 638 ret = jffs2_sum_process_sum_data(c, jeb, summary, pseudo_random);
7807ef7b
DW
639 /* -ENOTRECOVERABLE isn't a fatal error -- it means we should do a full
640 scan of this eraseblock. So return zero */
641 if (ret == -ENOTRECOVERABLE)
642 return 0;
e631ddba 643 if (ret)
7807ef7b 644 return ret; /* real error */
e631ddba
FH
645
646 /* for PARANOIA_CHECK */
046b8b98 647 ret = jffs2_prealloc_raw_node_refs(c, jeb, 2);
2f785402
DW
648 if (ret)
649 return ret;
e631ddba 650
f61579c3 651 sum_link_node_ref(c, jeb, ofs | REF_NORMAL, sumsize, NULL);
e631ddba 652
49f11d40
DW
653 if (unlikely(jeb->free_size)) {
654 JFFS2_WARNING("Free size 0x%x bytes in eraseblock @0x%08x with summary?\n",
655 jeb->free_size, jeb->offset);
656 jeb->wasted_size += jeb->free_size;
657 c->wasted_size += jeb->free_size;
658 c->free_size -= jeb->free_size;
659 jeb->free_size = 0;
660 }
e631ddba
FH
661
662 return jffs2_scan_classify_jeb(c, jeb);
663
664crc_err:
665 JFFS2_WARNING("Summary node crc error, skipping summary information.\n");
666
667 return 0;
668}
669
670/* Write summary data to flash - helper function for jffs2_sum_write_sumnode() */
671
672static int jffs2_sum_write_data(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
b7600dba 673 uint32_t infosize, uint32_t datasize, int padsize)
e631ddba 674{
2bc9764c 675 struct jffs2_raw_summary isum;
e631ddba
FH
676 union jffs2_sum_mem *temp;
677 struct jffs2_sum_marker *sm;
678 struct kvec vecs[2];
2f785402 679 uint32_t sum_ofs;
e631ddba
FH
680 void *wpage;
681 int ret;
682 size_t retlen;
683
b7600dba
DW
684 if (padsize + datasize > MAX_SUMMARY_SIZE) {
685 /* It won't fit in the buffer. Abort summary for this jeb */
686 jffs2_sum_disable_collecting(c->summary);
687
688 JFFS2_WARNING("Summary too big (%d data, %d pad) in eraseblock at %08x\n",
689 datasize, padsize, jeb->offset);
690 /* Non-fatal */
691 return 0;
692 }
693 /* Is there enough space for summary? */
694 if (padsize < 0) {
695 /* don't try to write out summary for this jeb */
696 jffs2_sum_disable_collecting(c->summary);
697
698 JFFS2_WARNING("Not enough space for summary, padsize = %d\n",
699 padsize);
700 /* Non-fatal */
701 return 0;
702 }
703
e631ddba
FH
704 memset(c->summary->sum_buf, 0xff, datasize);
705 memset(&isum, 0, sizeof(isum));
706
707 isum.magic = cpu_to_je16(JFFS2_MAGIC_BITMASK);
708 isum.nodetype = cpu_to_je16(JFFS2_NODETYPE_SUMMARY);
709 isum.totlen = cpu_to_je32(infosize);
710 isum.hdr_crc = cpu_to_je32(crc32(0, &isum, sizeof(struct jffs2_unknown_node) - 4));
711 isum.padded = cpu_to_je32(c->summary->sum_padded);
712 isum.cln_mkr = cpu_to_je32(c->cleanmarker_size);
713 isum.sum_num = cpu_to_je32(c->summary->sum_num);
714 wpage = c->summary->sum_buf;
715
716 while (c->summary->sum_num) {
20ffdcb0 717 temp = c->summary->sum_list_head;
e631ddba 718
20ffdcb0 719 switch (je16_to_cpu(temp->u.nodetype)) {
e631ddba
FH
720 case JFFS2_NODETYPE_INODE: {
721 struct jffs2_sum_inode_flash *sino_ptr = wpage;
722
20ffdcb0
JJ
723 sino_ptr->nodetype = temp->i.nodetype;
724 sino_ptr->inode = temp->i.inode;
725 sino_ptr->version = temp->i.version;
726 sino_ptr->offset = temp->i.offset;
727 sino_ptr->totlen = temp->i.totlen;
e631ddba
FH
728
729 wpage += JFFS2_SUMMARY_INODE_SIZE;
730
731 break;
732 }
733
734 case JFFS2_NODETYPE_DIRENT: {
735 struct jffs2_sum_dirent_flash *sdrnt_ptr = wpage;
736
20ffdcb0
JJ
737 sdrnt_ptr->nodetype = temp->d.nodetype;
738 sdrnt_ptr->totlen = temp->d.totlen;
739 sdrnt_ptr->offset = temp->d.offset;
740 sdrnt_ptr->pino = temp->d.pino;
741 sdrnt_ptr->version = temp->d.version;
742 sdrnt_ptr->ino = temp->d.ino;
743 sdrnt_ptr->nsize = temp->d.nsize;
744 sdrnt_ptr->type = temp->d.type;
e631ddba 745
20ffdcb0
JJ
746 memcpy(sdrnt_ptr->name, temp->d.name,
747 temp->d.nsize);
e631ddba 748
20ffdcb0 749 wpage += JFFS2_SUMMARY_DIRENT_SIZE(temp->d.nsize);
e631ddba
FH
750
751 break;
752 }
aa98d7cf
KK
753#ifdef CONFIG_JFFS2_FS_XATTR
754 case JFFS2_NODETYPE_XATTR: {
755 struct jffs2_sum_xattr_flash *sxattr_ptr = wpage;
756
757 temp = c->summary->sum_list_head;
758 sxattr_ptr->nodetype = temp->x.nodetype;
759 sxattr_ptr->xid = temp->x.xid;
760 sxattr_ptr->version = temp->x.version;
761 sxattr_ptr->offset = temp->x.offset;
762 sxattr_ptr->totlen = temp->x.totlen;
763
764 wpage += JFFS2_SUMMARY_XATTR_SIZE;
765 break;
766 }
767 case JFFS2_NODETYPE_XREF: {
768 struct jffs2_sum_xref_flash *sxref_ptr = wpage;
769
770 temp = c->summary->sum_list_head;
771 sxref_ptr->nodetype = temp->r.nodetype;
772 sxref_ptr->offset = temp->r.offset;
e631ddba 773
aa98d7cf
KK
774 wpage += JFFS2_SUMMARY_XREF_SIZE;
775 break;
776 }
777#endif
e631ddba 778 default : {
6171586a
DW
779 if ((je16_to_cpu(temp->u.nodetype) & JFFS2_COMPAT_MASK)
780 == JFFS2_FEATURE_RWCOMPAT_COPY) {
781 dbg_summary("Writing unknown RWCOMPAT_COPY node type %x\n",
782 je16_to_cpu(temp->u.nodetype));
783 jffs2_sum_disable_collecting(c->summary);
784 } else {
785 BUG(); /* unknown node in summary information */
786 }
e631ddba
FH
787 }
788 }
789
20ffdcb0 790 c->summary->sum_list_head = temp->u.next;
e631ddba
FH
791 kfree(temp);
792
793 c->summary->sum_num--;
794 }
795
796 jffs2_sum_reset_collected(c->summary);
797
798 wpage += padsize;
799
800 sm = wpage;
801 sm->offset = cpu_to_je32(c->sector_size - jeb->free_size);
802 sm->magic = cpu_to_je32(JFFS2_SUM_MAGIC);
803
804 isum.sum_crc = cpu_to_je32(crc32(0, c->summary->sum_buf, datasize));
805 isum.node_crc = cpu_to_je32(crc32(0, &isum, sizeof(isum) - 8));
806
807 vecs[0].iov_base = &isum;
808 vecs[0].iov_len = sizeof(isum);
809 vecs[1].iov_base = c->summary->sum_buf;
810 vecs[1].iov_len = datasize;
811
2f785402
DW
812 sum_ofs = jeb->offset + c->sector_size - jeb->free_size;
813
733802d9 814 dbg_summary("JFFS2: writing out data to flash to pos : 0x%08x\n",
2f785402 815 sum_ofs);
e631ddba 816
2f785402 817 ret = jffs2_flash_writev(c, vecs, 2, sum_ofs, &retlen, 0);
e631ddba
FH
818
819 if (ret || (retlen != infosize)) {
010b06d6 820
c41ff6e5 821 JFFS2_WARNING("Write of %u bytes at 0x%08x failed. returned %d, retlen %zd\n",
2f785402 822 infosize, sum_ofs, ret, retlen);
e631ddba 823
9bfeb691
DW
824 if (retlen) {
825 /* Waste remaining space */
826 spin_lock(&c->erase_completion_lock);
827 jffs2_link_node_ref(c, jeb, sum_ofs | REF_OBSOLETE, infosize, NULL);
828 spin_unlock(&c->erase_completion_lock);
829 }
010b06d6 830
e631ddba 831 c->summary->sum_size = JFFS2_SUMMARY_NOSUM_SIZE;
e631ddba 832
2f785402 833 return 0;
e631ddba
FH
834 }
835
010b06d6 836 spin_lock(&c->erase_completion_lock);
2f785402
DW
837 jffs2_link_node_ref(c, jeb, sum_ofs | REF_NORMAL, infosize, NULL);
838 spin_unlock(&c->erase_completion_lock);
010b06d6 839
e631ddba
FH
840 return 0;
841}
842
843/* Write out summary information - called from jffs2_do_reserve_space */
844
845int jffs2_sum_write_sumnode(struct jffs2_sb_info *c)
846{
2f785402 847 int datasize, infosize, padsize;
e631ddba 848 struct jffs2_eraseblock *jeb;
b7600dba 849 int ret = 0;
e631ddba 850
733802d9 851 dbg_summary("called\n");
e631ddba 852
2f785402 853 spin_unlock(&c->erase_completion_lock);
2f785402 854
e631ddba 855 jeb = c->nextblock;
046b8b98 856 jffs2_prealloc_raw_node_refs(c, jeb, 1);
e631ddba
FH
857
858 if (!c->summary->sum_num || !c->summary->sum_list_head) {
859 JFFS2_WARNING("Empty summary info!!!\n");
860 BUG();
861 }
862
863 datasize = c->summary->sum_size + sizeof(struct jffs2_sum_marker);
2bc9764c 864 infosize = sizeof(struct jffs2_raw_summary) + datasize;
e631ddba 865 padsize = jeb->free_size - infosize;
182ec4ee 866 infosize += padsize;
e631ddba
FH
867 datasize += padsize;
868
e631ddba 869 ret = jffs2_sum_write_data(c, jeb, infosize, datasize, padsize);
010b06d6 870 spin_lock(&c->erase_completion_lock);
2f785402 871 return ret;
e631ddba 872}
This page took 0.499247 seconds and 5 git commands to generate.