2 * JFFS2 -- Journalling Flash File System, Version 2.
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
8 * 2006 KaiGai Kohei <kaigai@ak.jp.nec.com>
10 * For licensing information, see the file 'LICENCE' in this directory.
12 * $Id: summary.c,v 1.4 2005/09/26 11:37:21 havasi Exp $
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>
27 int jffs2_sum_init(struct jffs2_sb_info
*c
)
29 c
->summary
= kzalloc(sizeof(struct jffs2_summary
), GFP_KERNEL
);
32 JFFS2_WARNING("Can't allocate memory for summary information!\n");
36 c
->summary
->sum_buf
= vmalloc(c
->sector_size
);
38 if (!c
->summary
->sum_buf
) {
39 JFFS2_WARNING("Can't allocate buffer for writing out summary information!\n");
44 dbg_summary("returned successfully\n");
49 void jffs2_sum_exit(struct jffs2_sb_info
*c
)
51 dbg_summary("called\n");
53 jffs2_sum_disable_collecting(c
->summary
);
55 vfree(c
->summary
->sum_buf
);
56 c
->summary
->sum_buf
= NULL
;
62 static int jffs2_sum_add_mem(struct jffs2_summary
*s
, union jffs2_sum_mem
*item
)
64 if (!s
->sum_list_head
)
65 s
->sum_list_head
= (union jffs2_sum_mem
*) item
;
67 s
->sum_list_tail
->u
.next
= (union jffs2_sum_mem
*) item
;
68 s
->sum_list_tail
= (union jffs2_sum_mem
*) item
;
70 switch (je16_to_cpu(item
->u
.nodetype
)) {
71 case JFFS2_NODETYPE_INODE
:
72 s
->sum_size
+= JFFS2_SUMMARY_INODE_SIZE
;
74 dbg_summary("inode (%u) added to summary\n",
75 je32_to_cpu(item
->i
.inode
));
77 case JFFS2_NODETYPE_DIRENT
:
78 s
->sum_size
+= JFFS2_SUMMARY_DIRENT_SIZE(item
->d
.nsize
);
80 dbg_summary("dirent (%u) added to summary\n",
81 je32_to_cpu(item
->d
.ino
));
83 #ifdef CONFIG_JFFS2_FS_XATTR
84 case JFFS2_NODETYPE_XATTR
:
85 s
->sum_size
+= JFFS2_SUMMARY_XATTR_SIZE
;
87 dbg_summary("xattr (xid=%u, version=%u) added to summary\n",
88 je32_to_cpu(item
->x
.xid
), je32_to_cpu(item
->x
.version
));
90 case JFFS2_NODETYPE_XREF
:
91 s
->sum_size
+= JFFS2_SUMMARY_XREF_SIZE
;
93 dbg_summary("xref added to summary\n");
97 JFFS2_WARNING("UNKNOWN node type %u\n",
98 je16_to_cpu(item
->u
.nodetype
));
105 /* The following 3 functions are called from scan.c to collect summary info for not closed jeb */
107 int jffs2_sum_add_padding_mem(struct jffs2_summary
*s
, uint32_t size
)
109 dbg_summary("called with %u\n", size
);
110 s
->sum_padded
+= size
;
114 int jffs2_sum_add_inode_mem(struct jffs2_summary
*s
, struct jffs2_raw_inode
*ri
,
117 struct jffs2_sum_inode_mem
*temp
= kmalloc(sizeof(struct jffs2_sum_inode_mem
), GFP_KERNEL
);
122 temp
->nodetype
= ri
->nodetype
;
123 temp
->inode
= ri
->ino
;
124 temp
->version
= ri
->version
;
125 temp
->offset
= cpu_to_je32(ofs
); /* relative offset from the begining of the jeb */
126 temp
->totlen
= ri
->totlen
;
129 return jffs2_sum_add_mem(s
, (union jffs2_sum_mem
*)temp
);
132 int jffs2_sum_add_dirent_mem(struct jffs2_summary
*s
, struct jffs2_raw_dirent
*rd
,
135 struct jffs2_sum_dirent_mem
*temp
=
136 kmalloc(sizeof(struct jffs2_sum_dirent_mem
) + rd
->nsize
, GFP_KERNEL
);
141 temp
->nodetype
= rd
->nodetype
;
142 temp
->totlen
= rd
->totlen
;
143 temp
->offset
= cpu_to_je32(ofs
); /* relative from the begining of the jeb */
144 temp
->pino
= rd
->pino
;
145 temp
->version
= rd
->version
;
147 temp
->nsize
= rd
->nsize
;
148 temp
->type
= rd
->type
;
151 memcpy(temp
->name
, rd
->name
, rd
->nsize
);
153 return jffs2_sum_add_mem(s
, (union jffs2_sum_mem
*)temp
);
156 #ifdef CONFIG_JFFS2_FS_XATTR
157 int jffs2_sum_add_xattr_mem(struct jffs2_summary
*s
, struct jffs2_raw_xattr
*rx
, uint32_t ofs
)
159 struct jffs2_sum_xattr_mem
*temp
;
161 temp
= kmalloc(sizeof(struct jffs2_sum_xattr_mem
), GFP_KERNEL
);
165 temp
->nodetype
= rx
->nodetype
;
167 temp
->version
= rx
->version
;
168 temp
->offset
= cpu_to_je32(ofs
);
169 temp
->totlen
= rx
->totlen
;
172 return jffs2_sum_add_mem(s
, (union jffs2_sum_mem
*)temp
);
175 int jffs2_sum_add_xref_mem(struct jffs2_summary
*s
, struct jffs2_raw_xref
*rr
, uint32_t ofs
)
177 struct jffs2_sum_xref_mem
*temp
;
179 temp
= kmalloc(sizeof(struct jffs2_sum_xref_mem
), GFP_KERNEL
);
183 temp
->nodetype
= rr
->nodetype
;
184 temp
->offset
= cpu_to_je32(ofs
);
187 return jffs2_sum_add_mem(s
, (union jffs2_sum_mem
*)temp
);
190 /* Cleanup every collected summary information */
192 static void jffs2_sum_clean_collected(struct jffs2_summary
*s
)
194 union jffs2_sum_mem
*temp
;
196 if (!s
->sum_list_head
) {
197 dbg_summary("already empty\n");
199 while (s
->sum_list_head
) {
200 temp
= s
->sum_list_head
;
201 s
->sum_list_head
= s
->sum_list_head
->u
.next
;
204 s
->sum_list_tail
= NULL
;
209 void jffs2_sum_reset_collected(struct jffs2_summary
*s
)
211 dbg_summary("called\n");
212 jffs2_sum_clean_collected(s
);
216 void jffs2_sum_disable_collecting(struct jffs2_summary
*s
)
218 dbg_summary("called\n");
219 jffs2_sum_clean_collected(s
);
220 s
->sum_size
= JFFS2_SUMMARY_NOSUM_SIZE
;
223 int jffs2_sum_is_disabled(struct jffs2_summary
*s
)
225 return (s
->sum_size
== JFFS2_SUMMARY_NOSUM_SIZE
);
228 /* Move the collected summary information into sb (called from scan.c) */
230 void jffs2_sum_move_collected(struct jffs2_sb_info
*c
, struct jffs2_summary
*s
)
232 dbg_summary("oldsize=0x%x oldnum=%u => newsize=0x%x newnum=%u\n",
233 c
->summary
->sum_size
, c
->summary
->sum_num
,
234 s
->sum_size
, s
->sum_num
);
236 c
->summary
->sum_size
= s
->sum_size
;
237 c
->summary
->sum_num
= s
->sum_num
;
238 c
->summary
->sum_padded
= s
->sum_padded
;
239 c
->summary
->sum_list_head
= s
->sum_list_head
;
240 c
->summary
->sum_list_tail
= s
->sum_list_tail
;
242 s
->sum_list_head
= s
->sum_list_tail
= NULL
;
245 /* Called from wbuf.c to collect writed node info */
247 int jffs2_sum_add_kvec(struct jffs2_sb_info
*c
, const struct kvec
*invecs
,
248 unsigned long count
, uint32_t ofs
)
250 union jffs2_node_union
*node
;
251 struct jffs2_eraseblock
*jeb
;
253 if (c
->summary
->sum_size
== JFFS2_SUMMARY_NOSUM_SIZE
) {
254 dbg_summary("Summary is disabled for this jeb! Skipping summary info!\n");
258 node
= invecs
[0].iov_base
;
259 jeb
= &c
->blocks
[ofs
/ c
->sector_size
];
262 switch (je16_to_cpu(node
->u
.nodetype
)) {
263 case JFFS2_NODETYPE_INODE
: {
264 struct jffs2_sum_inode_mem
*temp
=
265 kmalloc(sizeof(struct jffs2_sum_inode_mem
), GFP_KERNEL
);
270 temp
->nodetype
= node
->i
.nodetype
;
271 temp
->inode
= node
->i
.ino
;
272 temp
->version
= node
->i
.version
;
273 temp
->offset
= cpu_to_je32(ofs
);
274 temp
->totlen
= node
->i
.totlen
;
277 return jffs2_sum_add_mem(c
->summary
, (union jffs2_sum_mem
*)temp
);
280 case JFFS2_NODETYPE_DIRENT
: {
281 struct jffs2_sum_dirent_mem
*temp
=
282 kmalloc(sizeof(struct jffs2_sum_dirent_mem
) + node
->d
.nsize
, GFP_KERNEL
);
287 temp
->nodetype
= node
->d
.nodetype
;
288 temp
->totlen
= node
->d
.totlen
;
289 temp
->offset
= cpu_to_je32(ofs
);
290 temp
->pino
= node
->d
.pino
;
291 temp
->version
= node
->d
.version
;
292 temp
->ino
= node
->d
.ino
;
293 temp
->nsize
= node
->d
.nsize
;
294 temp
->type
= node
->d
.type
;
299 memcpy(temp
->name
,node
->d
.name
,node
->d
.nsize
);
303 memcpy(temp
->name
,invecs
[1].iov_base
,node
->d
.nsize
);
307 BUG(); /* impossible count value */
311 return jffs2_sum_add_mem(c
->summary
, (union jffs2_sum_mem
*)temp
);
313 #ifdef CONFIG_JFFS2_FS_XATTR
314 case JFFS2_NODETYPE_XATTR
: {
315 struct jffs2_sum_xattr_mem
*temp
;
316 temp
= kmalloc(sizeof(struct jffs2_sum_xattr_mem
), GFP_KERNEL
);
320 temp
->nodetype
= node
->x
.nodetype
;
321 temp
->xid
= node
->x
.xid
;
322 temp
->version
= node
->x
.version
;
323 temp
->totlen
= node
->x
.totlen
;
324 temp
->offset
= cpu_to_je32(ofs
);
327 return jffs2_sum_add_mem(c
->summary
, (union jffs2_sum_mem
*)temp
);
329 case JFFS2_NODETYPE_XREF
: {
330 struct jffs2_sum_xref_mem
*temp
;
331 temp
= kmalloc(sizeof(struct jffs2_sum_xref_mem
), GFP_KERNEL
);
334 temp
->nodetype
= node
->r
.nodetype
;
335 temp
->offset
= cpu_to_je32(ofs
);
338 return jffs2_sum_add_mem(c
->summary
, (union jffs2_sum_mem
*)temp
);
341 case JFFS2_NODETYPE_PADDING
:
342 dbg_summary("node PADDING\n");
343 c
->summary
->sum_padded
+= je32_to_cpu(node
->u
.totlen
);
346 case JFFS2_NODETYPE_CLEANMARKER
:
347 dbg_summary("node CLEANMARKER\n");
350 case JFFS2_NODETYPE_SUMMARY
:
351 dbg_summary("node SUMMARY\n");
355 /* If you implement a new node type you should also implement
356 summary support for it or disable summary.
365 JFFS2_WARNING("MEMORY ALLOCATION ERROR!");
369 static struct jffs2_raw_node_ref
*sum_link_node_ref(struct jffs2_sb_info
*c
,
370 struct jffs2_eraseblock
*jeb
,
371 uint32_t ofs
, uint32_t len
,
372 struct jffs2_inode_cache
*ic
)
374 /* If there was a gap, mark it dirty */
375 if ((ofs
& ~3) > c
->sector_size
- jeb
->free_size
) {
376 /* Ew. Summary doesn't actually tell us explicitly about dirty space */
377 jffs2_scan_dirty_space(c
, jeb
, (ofs
& ~3) - (c
->sector_size
- jeb
->free_size
));
380 return jffs2_link_node_ref(c
, jeb
, jeb
->offset
+ ofs
, len
, ic
);
383 /* Process the stored summary information - helper function for jffs2_sum_scan_sumnode() */
385 static int jffs2_sum_process_sum_data(struct jffs2_sb_info
*c
, struct jffs2_eraseblock
*jeb
,
386 struct jffs2_raw_summary
*summary
, uint32_t *pseudo_random
)
388 struct jffs2_inode_cache
*ic
;
389 struct jffs2_full_dirent
*fd
;
396 for (i
=0; i
<je32_to_cpu(summary
->sum_num
); i
++) {
397 dbg_summary("processing summary index %d\n", i
);
401 /* Make sure there's a spare ref for dirty space */
402 err
= jffs2_prealloc_raw_node_refs(c
, jeb
, 2);
406 switch (je16_to_cpu(((struct jffs2_sum_unknown_flash
*)sp
)->nodetype
)) {
407 case JFFS2_NODETYPE_INODE
: {
408 struct jffs2_sum_inode_flash
*spi
;
411 ino
= je32_to_cpu(spi
->inode
);
413 dbg_summary("Inode at 0x%08x-0x%08x\n",
414 jeb
->offset
+ je32_to_cpu(spi
->offset
),
415 jeb
->offset
+ je32_to_cpu(spi
->offset
) + je32_to_cpu(spi
->totlen
));
417 ic
= jffs2_scan_make_ino_cache(c
, ino
);
419 JFFS2_NOTICE("scan_make_ino_cache failed\n");
423 sum_link_node_ref(c
, jeb
, je32_to_cpu(spi
->offset
) | REF_UNCHECKED
,
424 PAD(je32_to_cpu(spi
->totlen
)), ic
);
426 *pseudo_random
+= je32_to_cpu(spi
->version
);
428 sp
+= JFFS2_SUMMARY_INODE_SIZE
;
433 case JFFS2_NODETYPE_DIRENT
: {
434 struct jffs2_sum_dirent_flash
*spd
;
437 dbg_summary("Dirent at 0x%08x-0x%08x\n",
438 jeb
->offset
+ je32_to_cpu(spd
->offset
),
439 jeb
->offset
+ je32_to_cpu(spd
->offset
) + je32_to_cpu(spd
->totlen
));
442 fd
= jffs2_alloc_full_dirent(spd
->nsize
+1);
446 memcpy(&fd
->name
, spd
->name
, spd
->nsize
);
447 fd
->name
[spd
->nsize
] = 0;
449 ic
= jffs2_scan_make_ino_cache(c
, je32_to_cpu(spd
->pino
));
451 jffs2_free_full_dirent(fd
);
455 fd
->raw
= sum_link_node_ref(c
, jeb
, je32_to_cpu(spd
->offset
) | REF_UNCHECKED
,
456 PAD(je32_to_cpu(spd
->totlen
)), ic
);
459 fd
->version
= je32_to_cpu(spd
->version
);
460 fd
->ino
= je32_to_cpu(spd
->ino
);
461 fd
->nhash
= full_name_hash(fd
->name
, spd
->nsize
);
462 fd
->type
= spd
->type
;
464 jffs2_add_fd_to_list(c
, fd
, &ic
->scan_dents
);
466 *pseudo_random
+= je32_to_cpu(spd
->version
);
468 sp
+= JFFS2_SUMMARY_DIRENT_SIZE(spd
->nsize
);
472 #ifdef CONFIG_JFFS2_FS_XATTR
473 case JFFS2_NODETYPE_XATTR
: {
474 struct jffs2_xattr_datum
*xd
;
475 struct jffs2_sum_xattr_flash
*spx
;
477 spx
= (struct jffs2_sum_xattr_flash
*)sp
;
478 dbg_summary("xattr at %#08x-%#08x (xid=%u, version=%u)\n",
479 jeb
->offset
+ je32_to_cpu(spx
->offset
),
480 jeb
->offset
+ je32_to_cpu(spx
->offset
) + je32_to_cpu(spx
->totlen
),
481 je32_to_cpu(spx
->xid
), je32_to_cpu(spx
->version
));
483 xd
= jffs2_setup_xattr_datum(c
, je32_to_cpu(spx
->xid
),
484 je32_to_cpu(spx
->version
));
487 if (xd
->version
> je32_to_cpu(spx
->version
)) {
488 /* node is not the newest one */
489 struct jffs2_raw_node_ref
*raw
490 = sum_link_node_ref(c
, jeb
, je32_to_cpu(spx
->offset
) | REF_UNCHECKED
,
491 PAD(je32_to_cpu(spx
->totlen
)), NULL
);
492 raw
->next_in_ino
= xd
->node
->next_in_ino
;
493 xd
->node
->next_in_ino
= raw
;
495 xd
->version
= je32_to_cpu(spx
->version
);
496 sum_link_node_ref(c
, jeb
, je32_to_cpu(spx
->offset
) | REF_UNCHECKED
,
497 PAD(je32_to_cpu(spx
->totlen
)), (void *)xd
);
499 *pseudo_random
+= je32_to_cpu(spx
->xid
);
500 sp
+= JFFS2_SUMMARY_XATTR_SIZE
;
504 case JFFS2_NODETYPE_XREF
: {
505 struct jffs2_xattr_ref
*ref
;
506 struct jffs2_sum_xref_flash
*spr
;
508 spr
= (struct jffs2_sum_xref_flash
*)sp
;
509 dbg_summary("xref at %#08x-%#08x\n",
510 jeb
->offset
+ je32_to_cpu(spr
->offset
),
511 jeb
->offset
+ je32_to_cpu(spr
->offset
) +
512 (uint32_t)PAD(sizeof(struct jffs2_raw_xref
)));
514 ref
= jffs2_alloc_xattr_ref();
516 JFFS2_NOTICE("allocation of xattr_datum failed\n");
519 ref
->next
= c
->xref_temp
;
522 sum_link_node_ref(c
, jeb
, je32_to_cpu(spr
->offset
) | REF_UNCHECKED
,
523 PAD(sizeof(struct jffs2_raw_xref
)), (void *)ref
);
525 *pseudo_random
+= ref
->node
->flash_offset
;
526 sp
+= JFFS2_SUMMARY_XREF_SIZE
;
532 uint16_t nodetype
= je16_to_cpu(((struct jffs2_sum_unknown_flash
*)sp
)->nodetype
);
533 JFFS2_WARNING("Unsupported node type %x found in summary! Exiting...\n", nodetype
);
534 if ((nodetype
& JFFS2_COMPAT_MASK
) == JFFS2_FEATURE_INCOMPAT
)
537 /* For compatible node types, just fall back to the full scan */
538 c
->wasted_size
-= jeb
->wasted_size
;
539 c
->free_size
+= c
->sector_size
- jeb
->free_size
;
540 c
->used_size
-= jeb
->used_size
;
541 c
->dirty_size
-= jeb
->dirty_size
;
542 jeb
->wasted_size
= jeb
->used_size
= jeb
->dirty_size
= 0;
543 jeb
->free_size
= c
->sector_size
;
545 jffs2_free_jeb_node_refs(c
, jeb
);
546 return -ENOTRECOVERABLE
;
553 /* Process the summary node - called from jffs2_scan_eraseblock() */
554 int jffs2_sum_scan_sumnode(struct jffs2_sb_info
*c
, struct jffs2_eraseblock
*jeb
,
555 struct jffs2_raw_summary
*summary
, uint32_t sumsize
,
556 uint32_t *pseudo_random
)
558 struct jffs2_unknown_node crcnode
;
562 ofs
= c
->sector_size
- sumsize
;
564 dbg_summary("summary found for 0x%08x at 0x%08x (0x%x bytes)\n",
565 jeb
->offset
, jeb
->offset
+ ofs
, sumsize
);
567 /* OK, now check for node validity and CRC */
568 crcnode
.magic
= cpu_to_je16(JFFS2_MAGIC_BITMASK
);
569 crcnode
.nodetype
= cpu_to_je16(JFFS2_NODETYPE_SUMMARY
);
570 crcnode
.totlen
= summary
->totlen
;
571 crc
= crc32(0, &crcnode
, sizeof(crcnode
)-4);
573 if (je32_to_cpu(summary
->hdr_crc
) != crc
) {
574 dbg_summary("Summary node header is corrupt (bad CRC or "
575 "no summary at all)\n");
579 if (je32_to_cpu(summary
->totlen
) != sumsize
) {
580 dbg_summary("Summary node is corrupt (wrong erasesize?)\n");
584 crc
= crc32(0, summary
, sizeof(struct jffs2_raw_summary
)-8);
586 if (je32_to_cpu(summary
->node_crc
) != crc
) {
587 dbg_summary("Summary node is corrupt (bad CRC)\n");
591 crc
= crc32(0, summary
->sum
, sumsize
- sizeof(struct jffs2_raw_summary
));
593 if (je32_to_cpu(summary
->sum_crc
) != crc
) {
594 dbg_summary("Summary node data is corrupt (bad CRC)\n");
598 if ( je32_to_cpu(summary
->cln_mkr
) ) {
600 dbg_summary("Summary : CLEANMARKER node \n");
602 ret
= jffs2_prealloc_raw_node_refs(c
, jeb
, 1);
606 if (je32_to_cpu(summary
->cln_mkr
) != c
->cleanmarker_size
) {
607 dbg_summary("CLEANMARKER node has totlen 0x%x != normal 0x%x\n",
608 je32_to_cpu(summary
->cln_mkr
), c
->cleanmarker_size
);
609 if ((ret
= jffs2_scan_dirty_space(c
, jeb
, PAD(je32_to_cpu(summary
->cln_mkr
)))))
611 } else if (jeb
->first_node
) {
612 dbg_summary("CLEANMARKER node not first node in block "
613 "(0x%08x)\n", jeb
->offset
);
614 if ((ret
= jffs2_scan_dirty_space(c
, jeb
, PAD(je32_to_cpu(summary
->cln_mkr
)))))
617 jffs2_link_node_ref(c
, jeb
, jeb
->offset
| REF_NORMAL
,
618 je32_to_cpu(summary
->cln_mkr
), NULL
);
622 ret
= jffs2_sum_process_sum_data(c
, jeb
, summary
, pseudo_random
);
623 /* -ENOTRECOVERABLE isn't a fatal error -- it means we should do a full
624 scan of this eraseblock. So return zero */
625 if (ret
== -ENOTRECOVERABLE
)
628 return ret
; /* real error */
630 /* for PARANOIA_CHECK */
631 ret
= jffs2_prealloc_raw_node_refs(c
, jeb
, 2);
635 sum_link_node_ref(c
, jeb
, ofs
| REF_NORMAL
, sumsize
, NULL
);
637 if (unlikely(jeb
->free_size
)) {
638 JFFS2_WARNING("Free size 0x%x bytes in eraseblock @0x%08x with summary?\n",
639 jeb
->free_size
, jeb
->offset
);
640 jeb
->wasted_size
+= jeb
->free_size
;
641 c
->wasted_size
+= jeb
->free_size
;
642 c
->free_size
-= jeb
->free_size
;
646 return jffs2_scan_classify_jeb(c
, jeb
);
649 JFFS2_WARNING("Summary node crc error, skipping summary information.\n");
654 /* Write summary data to flash - helper function for jffs2_sum_write_sumnode() */
656 static int jffs2_sum_write_data(struct jffs2_sb_info
*c
, struct jffs2_eraseblock
*jeb
,
657 uint32_t infosize
, uint32_t datasize
, int padsize
)
659 struct jffs2_raw_summary isum
;
660 union jffs2_sum_mem
*temp
;
661 struct jffs2_sum_marker
*sm
;
668 memset(c
->summary
->sum_buf
, 0xff, datasize
);
669 memset(&isum
, 0, sizeof(isum
));
671 isum
.magic
= cpu_to_je16(JFFS2_MAGIC_BITMASK
);
672 isum
.nodetype
= cpu_to_je16(JFFS2_NODETYPE_SUMMARY
);
673 isum
.totlen
= cpu_to_je32(infosize
);
674 isum
.hdr_crc
= cpu_to_je32(crc32(0, &isum
, sizeof(struct jffs2_unknown_node
) - 4));
675 isum
.padded
= cpu_to_je32(c
->summary
->sum_padded
);
676 isum
.cln_mkr
= cpu_to_je32(c
->cleanmarker_size
);
677 isum
.sum_num
= cpu_to_je32(c
->summary
->sum_num
);
678 wpage
= c
->summary
->sum_buf
;
680 while (c
->summary
->sum_num
) {
681 temp
= c
->summary
->sum_list_head
;
683 switch (je16_to_cpu(temp
->u
.nodetype
)) {
684 case JFFS2_NODETYPE_INODE
: {
685 struct jffs2_sum_inode_flash
*sino_ptr
= wpage
;
687 sino_ptr
->nodetype
= temp
->i
.nodetype
;
688 sino_ptr
->inode
= temp
->i
.inode
;
689 sino_ptr
->version
= temp
->i
.version
;
690 sino_ptr
->offset
= temp
->i
.offset
;
691 sino_ptr
->totlen
= temp
->i
.totlen
;
693 wpage
+= JFFS2_SUMMARY_INODE_SIZE
;
698 case JFFS2_NODETYPE_DIRENT
: {
699 struct jffs2_sum_dirent_flash
*sdrnt_ptr
= wpage
;
701 sdrnt_ptr
->nodetype
= temp
->d
.nodetype
;
702 sdrnt_ptr
->totlen
= temp
->d
.totlen
;
703 sdrnt_ptr
->offset
= temp
->d
.offset
;
704 sdrnt_ptr
->pino
= temp
->d
.pino
;
705 sdrnt_ptr
->version
= temp
->d
.version
;
706 sdrnt_ptr
->ino
= temp
->d
.ino
;
707 sdrnt_ptr
->nsize
= temp
->d
.nsize
;
708 sdrnt_ptr
->type
= temp
->d
.type
;
710 memcpy(sdrnt_ptr
->name
, temp
->d
.name
,
713 wpage
+= JFFS2_SUMMARY_DIRENT_SIZE(temp
->d
.nsize
);
717 #ifdef CONFIG_JFFS2_FS_XATTR
718 case JFFS2_NODETYPE_XATTR
: {
719 struct jffs2_sum_xattr_flash
*sxattr_ptr
= wpage
;
721 temp
= c
->summary
->sum_list_head
;
722 sxattr_ptr
->nodetype
= temp
->x
.nodetype
;
723 sxattr_ptr
->xid
= temp
->x
.xid
;
724 sxattr_ptr
->version
= temp
->x
.version
;
725 sxattr_ptr
->offset
= temp
->x
.offset
;
726 sxattr_ptr
->totlen
= temp
->x
.totlen
;
728 wpage
+= JFFS2_SUMMARY_XATTR_SIZE
;
731 case JFFS2_NODETYPE_XREF
: {
732 struct jffs2_sum_xref_flash
*sxref_ptr
= wpage
;
734 temp
= c
->summary
->sum_list_head
;
735 sxref_ptr
->nodetype
= temp
->r
.nodetype
;
736 sxref_ptr
->offset
= temp
->r
.offset
;
738 wpage
+= JFFS2_SUMMARY_XREF_SIZE
;
743 if ((je16_to_cpu(temp
->u
.nodetype
) & JFFS2_COMPAT_MASK
)
744 == JFFS2_FEATURE_RWCOMPAT_COPY
) {
745 dbg_summary("Writing unknown RWCOMPAT_COPY node type %x\n",
746 je16_to_cpu(temp
->u
.nodetype
));
747 jffs2_sum_disable_collecting(c
->summary
);
749 BUG(); /* unknown node in summary information */
754 c
->summary
->sum_list_head
= temp
->u
.next
;
757 c
->summary
->sum_num
--;
760 jffs2_sum_reset_collected(c
->summary
);
765 sm
->offset
= cpu_to_je32(c
->sector_size
- jeb
->free_size
);
766 sm
->magic
= cpu_to_je32(JFFS2_SUM_MAGIC
);
768 isum
.sum_crc
= cpu_to_je32(crc32(0, c
->summary
->sum_buf
, datasize
));
769 isum
.node_crc
= cpu_to_je32(crc32(0, &isum
, sizeof(isum
) - 8));
771 vecs
[0].iov_base
= &isum
;
772 vecs
[0].iov_len
= sizeof(isum
);
773 vecs
[1].iov_base
= c
->summary
->sum_buf
;
774 vecs
[1].iov_len
= datasize
;
776 sum_ofs
= jeb
->offset
+ c
->sector_size
- jeb
->free_size
;
778 dbg_summary("JFFS2: writing out data to flash to pos : 0x%08x\n",
781 ret
= jffs2_flash_writev(c
, vecs
, 2, sum_ofs
, &retlen
, 0);
783 if (ret
|| (retlen
!= infosize
)) {
785 JFFS2_WARNING("Write of %u bytes at 0x%08x failed. returned %d, retlen %zd\n",
786 infosize
, sum_ofs
, ret
, retlen
);
789 /* Waste remaining space */
790 spin_lock(&c
->erase_completion_lock
);
791 jffs2_link_node_ref(c
, jeb
, sum_ofs
| REF_OBSOLETE
, infosize
, NULL
);
792 spin_unlock(&c
->erase_completion_lock
);
795 c
->summary
->sum_size
= JFFS2_SUMMARY_NOSUM_SIZE
;
800 spin_lock(&c
->erase_completion_lock
);
801 jffs2_link_node_ref(c
, jeb
, sum_ofs
| REF_NORMAL
, infosize
, NULL
);
802 spin_unlock(&c
->erase_completion_lock
);
807 /* Write out summary information - called from jffs2_do_reserve_space */
809 int jffs2_sum_write_sumnode(struct jffs2_sb_info
*c
)
811 int datasize
, infosize
, padsize
;
812 struct jffs2_eraseblock
*jeb
;
815 dbg_summary("called\n");
817 spin_unlock(&c
->erase_completion_lock
);
820 jffs2_prealloc_raw_node_refs(c
, jeb
, 1);
822 if (!c
->summary
->sum_num
|| !c
->summary
->sum_list_head
) {
823 JFFS2_WARNING("Empty summary info!!!\n");
827 datasize
= c
->summary
->sum_size
+ sizeof(struct jffs2_sum_marker
);
828 infosize
= sizeof(struct jffs2_raw_summary
) + datasize
;
829 padsize
= jeb
->free_size
- infosize
;
833 /* Is there enough space for summary? */
835 /* don't try to write out summary for this jeb */
836 jffs2_sum_disable_collecting(c
->summary
);
838 JFFS2_WARNING("Not enough space for summary, padsize = %d\n", padsize
);
839 spin_lock(&c
->erase_completion_lock
);
843 ret
= jffs2_sum_write_data(c
, jeb
, infosize
, datasize
, padsize
);
844 spin_lock(&c
->erase_completion_lock
);