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